.tab-select {
  --header-height: 5.6rem;
  --padding: 0.8rem;
  color: #58595B;
}
.tab-select__wrapper {
  position: relative;
  min-height: var(--header-height);
}
.tab-select__header {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: center;
  border-radius: 99.9rem;
  box-shadow: inset 0 0 0 0.1rem #58595B;
  padding: 1.6rem 2rem;
  width: 100%;
  height: var(--header-height);
  background-color: #FFFFFF;
  transition: box-shadow 0.3s ease-in-out;
}
.tab-select__header[aria-expanded="true"] {
  box-shadow: inset 0 0 0 0.2rem #C6A1CF;
}
.tab-select__header[aria-expanded="true"] .tab-select__icon--up {
  opacity: 0;
}
.tab-select__header[aria-expanded="true"] .tab-select__icon--down {
  opacity: 1;
}
.tab-select__value {
  flex-grow: 1;
  display: inline-flex;
  width: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 2.2rem;
}
.tab-select__icons {
  position: relative;
  display: inline-block;
  width: 2.4rem;
  height: 2.4rem;
}
.tab-select__icon {
  display: inline-block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: #000000;
  transition: opacity 0.3s ease-in-out;
}
.tab-select__icon--down {
  opacity: 0;
  transform: scaleY(-100%);
}
.tab-select__body {
  position: relative;
  z-index: 1;
  margin-top: calc(-1 * var(--header-height));
  padding: var(--padding) var(--padding) 0;
}
.tab-select__list-wrapper {
  overflow: hidden;
  box-shadow: 0 0.4rem 1.1rem 0 #0000001A;
  border-radius: 1.2rem;
  background-color: #FFFFFF;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
}
.tab-select__list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: calc(var(--header-height) + var(--padding));
  font-weight: 700;
  font-size: 1.7rem;
  line-height: 2.1rem;
}
.tab-select__item {
  display: flex;
  transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}
.tab-select__item[aria-selected="true"] {
  background-color: #F4ECF5;
  color: #470A68;
}
.tab-select__item a {
  flex-grow: 1;
  padding: var(--padding);
  transition: background-color 0.3s ease-in-out;
}
/*# sourceMappingURL=tab-select.css.map */