
/* tabs-beauty-choice */
.beauty-choice{
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid #cae3ec;
  border: 1px solid var(--tabs-border);
  background-color: #fff;
  background-color: var(--tabs-background);
  border-radius: 35px!important;
}
.beauty-choice .beauty-choice-wrap {
  -webkit-transition: 0.2s;
  transition: 0.2s;
  content: '';
  position: absolute;
  top: 0;
  max-height: 68px;
  height: 100%;
  min-width: 0px;
  background-color: var(--tabs-tab-background-active-color);
  border-radius: 35px;
  border: solid 1px var(--tabs-tab-border-active);
  z-index: 0;
}
.beauty-choice .beauty-choice__text-wrap{
  z-index: 0;
  max-height: 68px;
}
.beauty-choice .beauty-choice__text{
  border-radius: 50rem!important;
  font-size: 12px;
  letter-spacing: 2.4px;
  color: #6e909d;
  color: var(--tabs-tab-color);
  border-color: var(--tabs-tab-border);
  display: inherit;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  min-width: 180px;
  z-index: 2;
  text-align: center;
  white-space: nowrap;
  vertical-align: top;
}
.beauty-choice .beauty-choice__text.active{
  /* border-color: #cae3ec; */
  border-color: var(--tabs-tab-background-color)!important;
  background-color: transparent;
  background-color: var(--tabs-tab-background-color);
  -webkit-transition: 0s border-color 1s;
  transition: 0s border-color 1s;
}
.beauty-choice .beauty-choice__text:not(.active):hover{
  border-color: transparent;
}


@media (max-width: 667px) {
  .beauty-choice{
      border: none!important;
      border-radius: unset!important;
  }
  /* .beauty-choice .beauty-choice__text.active{
      border: solid 1px #cae3ec;
      border: solid 1px var(--tabs-tab-border);
      border-radius: 50rem!important;
      border-color: #cae3ec;
      border-color: var(--tabs-tab-border-active);
      background-color: #cae3ec;
  } */
}
