.header-category {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  max-width: 1290px;
  margin: 0 auto 64px auto !important;
}

@media screen and (max-width: 1024px) {
  .header-category {
    flex-direction: column;
    padding: 16px;
  }

  .header-category h1 {
    text-align: center;
  }
}


.header-category>div {
  flex: 1;
}

.header-category .ctn {
  background-color: var(--light-gray);
  padding: 16px 16px 16px 32px;
  border-radius: 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: var(--dark-blue);
}

.header-category .ctn p {
  flex-grow: 1;
  margin: 0;
}

.header-category .ctn .arrow {
  width: fit-content;
}

.header-category .hidden {
  display: none;
}

.header-category button>svg {
  width: 20px;
  stroke: var(--dark-blue);
}

.header-category button {
  background: none;
  border: none;
  cursor: pointer;
}