/************* FONT START *************/
@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 400;
  src: local("Nunito-Regular"),
    url("../fonts/Nunito-Regular.woff2") format("woff2"),
    url("../fonts/Nunito-Regular.woff") format("woff");
}

@font-face {
  font-family: "GolosText";
  font-style: normal;
  font-weight: 500;
  src: local("GolosText-Medium"),
    url("../fonts/GolosText-Medium.woff2") format("woff2"),
    url("../fonts/GolosText-Medium.woff") format("woff");
}
/************* FONT END *************/

/************* COLOR START *************/
:root {
  --black: #292727;

  --white: #ffffff;

  --beige: #F6F2E8;

  --grey: #8F8F89;
  --grey-100: #8F8F8933;

  --orange: #CD5D28;
  --orange-100: #CD5D281A;
  --orange-200: #AB4D21;
  --orange--300: #cd5c2810;
  --orange--400: #cd5c2820;
}
/************* COLOR END *************/

/************* COMMON START *************/
html {
  box-sizing: border-box;
}

*,
*::after,
*::before {
  box-sizing: inherit;
}

ul,
ol {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dt {
  margin: 0;
}

ul {
  list-style: none;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

address {
  font-style: normal;
}

input,
textarea {
  outline: transparent;
  border: none;
}

button {
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}

img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

body {
  font-family: "Nutino", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.56px;
  color: var(--black);
  background-color: var(--beige);
}

.main {
  flex-grow: 1;
  min-height: 100vh;
}

.container {
  max-width: 375px;
  width: 100%;
  padding: 0 12px;
  margin: 0 auto;
}

.flex-column {
  display: flex;
  flex-direction: column;
}

.h1,
.subtitle {
  font-family: "GolosText";
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.48px;
  color: var(--black);
}

.home-subtitle {
  color: var(--black);
}

.h1 {
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.28px;
}

.h2 {
  font-family: "GolosText";
  /*font-weight: 500;*/
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.36px;
  color: var(--black);
}

.home__h2 {
  color: var(--grey);
}

.h-3 {
  font-family: "GolosText";
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.28px;
  color: var(--black);
}

.h3 {
  color: var(--orange);
  font-family: "GolosText";
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.28px;
}

.button {
  font-family: "Nunito";
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.56px;
  color: var(--black);
}

.btn-black {
  background-color: var(--black);
  color: var(--white);
  height: 48px;
  width: 128px;
  display: flex;
  gap: 4px;
  align-items: center;
  text-align: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--black);
  padding: 16px 12px;
}

.btn-home {
  width: 100%;
  padding-left: 8px;
}

.text {
  font-family: "Nunito";
}
/************* COMMON END *************/

/************* HEADER START *************/
.header {
padding: 12px 0 8px;
}

.header__wrap {
  height: 118px;
  overflow: hidden;
  padding: 24px 14px;
  border-radius: 14px;
  align-items: end;
  background: bottom center / 100% 118px no-repeat;
}

.header__inner {
  text-align: left;
  gap: 12px;
}

.title-wrap {
  max-width: 200px;
  width: 100%;
}

.wrap-h3 {
  max-width: 212px;
  width: 100%;
}
/************* HEADER END *************/

/************* CHOICE START *************/
.choice__wrap {
  display: flex;
  background-color: var(--orange--300);
  border-radius: 40px;
  padding: 4px;
  margin-bottom: 16px;
}

.choice__link {
  display: inline-flex;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border-radius: 48px;
  padding: 7px 20px;
  width: 171px;
  height: 32px;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -2%;
  font-family: "GolosText";
}

.choice__link.link-active {
  background-color: var(--beige);
}
/************* CHOICE END *************/

/************* SEARCH START *************/
.search {
  padding-bottom: 12px;
}

.search__wrap,
.search__top {
  gap: 16px;
}

.search__form {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.form-search {
  max-width: 225px;
  width: 100%;
  display: flex;
  align-items: center;
}

.search-container {
  position: relative;
  display: inline-block;
}

.form-search__input {
  width: 100%;
  border-radius: 8px 0 0 8px;
  background-color: var(--white);
  height: 48px;
  padding-left: 12px;
  font-family: "Nunito";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.56px;
  color: var(--black);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  appearance: none;
}

.form-search__input::placeholder {
  font-family: "Nunito";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.56px;
  color: var(--grey);
}

.form-search__input:focus {
  border: 1px solid var(--orange);
}

.form-search__input::-webkit-search-cancel-button {
  display: none;
}

#clear-search {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  display: none;
}

#search:not(:placeholder-shown)+#clear-search {
  display: block;
}

.form-search__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--orange);
  padding: 16px 14px;
  border-radius: 0px 8px 8px 0px;
  transition: all 0.3s ease;
}

.form-search__btn:focus {
  background-color: var(--orange-200);
}

.search__error {
  padding: 12px;
  border-radius: 12px;
  height: 60px;
  background-color: var(--white);
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
}

.search__error.active-error {
  display: block;
  opacity: 1;
}

.search__h3 {
  margin-bottom: 4px;
}

.search__filters {
  gap: 6px;
}

.search__text {
  font-family: "Nunito";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: var(--black);
  margin-bottom: 2px;
}

.btn-box-bottom,
.btn-box-top {
  display: flex;
  gap: 4px;
  position: relative;
}

.btn-box-top {
  width: 85%;
}

.search__btn-box-top {
  width: 100%;
}

.btn-box-bottom {
  width: 70%;
}

.dropdown,
.special-window__dropdown {
  gap: 4px;
  width: 100%;
  transition: all 0.3s ease;
}

.btn-drop {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px;
  height: 40px;
  border-radius: 8px;
  background-color: var(--orange-100);
  font-family: "Nunito";
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.56px;
  color: var(--black);
  text-wrap: nowrap;
}

.btn-drop.active {
  background-color: var(--orange-200);
  color: var(--white);
}

.search-btn {
  display: flex;
  gap: 4px;
  align-items: center;
  padding: 12px;
  height: 42px;
  width: 100%;
  border-radius: 12px;
  background-color: var(--white);
  font-family: "Nunito";
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.4px;
  color: var(--black);
  text-wrap: nowrap;
}

.search-btn.active {
  background-color: var(--white);
  color: var(--black);
}

.svg-icon {
  margin-left: auto;
}

.dropdown-menu,
.special-window__menu {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-10px); 
  /*transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s 0.2s;*/
  z-index: 5;
  width: 100%;
  min-height: 78px;
  padding: 16px;
  border-radius: 8px;
  background-color: var(--white);
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.25);
}

.dropdown-menu.open,
.special-window__menu.open {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  min-width: 351px;
  width: 100%;
  min-height: 78px;
  top: 44px;
}

.special-window__menu.open {
  min-width: 327px;
}

.dropdown .active svg {
  transform: rotate(-180deg) translateY(-1px);
  fill: currentColor;
}

.dropdown-menu__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4px 12px 4px 8px;
  border-radius: 6px;
  background-color: var(--beige);
  height: 24px;
}

.dropdown-menu__button {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6px 12px;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid var(--orange--400);
  height: 24px;
  font-size: 12px;
  font-family: "Nunito";
  letter-spacing: -0.6px;
}

.dropdown-menu__button.active-profession {
  background-color: var(--orange);
  color: var(--white);
}

.dropdown-menu .checked {
  background-color: var(--black);
  color: var(--white);
}

.dropdown-menu .btn-search.checked {
  background-color: var(--orange);
  color: var(--white);
}

.dropdown-menu-width.open {
  min-width: 327px !important;
  margin: 0 auto;
}

.dropdown-menu__list {
  display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dropdown-menu__item--width {
  width: 100%;
}

.dropdown-menu__item--text {
  display: block;
}

.dropdown-menu__wrap.margin-bottom {
  margin-bottom: 24px;
}

.btn-search {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6px 12px;
  border-radius: 4px;
  background-color: transparent;
  border: 1px solid var(--orange--400);
  height: 24px;
  font-size: 12px;
}

.results {
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
}

.results.toggle{
  display: flex;
  padding: 16px 0 15px;
  border-top: 1px solid var(--grey-100);
  border-bottom: 1px solid var(--grey-100);
  gap: 16px;
  opacity: 1;
}

.results__top {
  overflow: hidden;
  display: flex;
  gap: 4px;
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
  scroll-behavior: smooth;
}

.results__top::-webkit-scrollbar {
  display: none;
}

.results__btn {
  display: none;
  opacity: 0;
  transition: all 0.3s ease;
}

.results__btn.check{
  display: inline-flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  padding: 10px 8px 10px 12px;
  border-radius: 8px;
  background-color: var(--orange);
  height: 36px;
  opacity: 1;
}

.results__btn.check svg {
  margin-left: 4px;
  min-width: 8px;
  min-height: 9px;
}

.text-small {
  font-size: 12px;
  font-family: "Nunito";
  letter-spacing: -0.48px;
  color: var(--white);
}

.results__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.results-btn {
  display: flex;
  gap: 4px;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.56px;
  color: var(--orange);
}

.icon-box {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: var(--orange);
  width: 16px;
  height: 16px;
  transform: translateY(-1px);
}

.results__num {
  color: var(--orange);
}

.price {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.price-text {
  font-family: "Nunito";
}

.specialization {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.specialization__box-title {
  display: flex;
  justify-content: space-between;
}

.specialization__title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--black);
  font-family: "GolosText";
}

.specialization__wrap {
  width: 100%;
  background-color: var(--white);
  padding: 14px;
  border-radius: 14px;
}

.specialization-list {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.specialization-list .specialization-list__item:not(:first-child) {
  padding-top: 16px;
}

.specialization-list .specialization-list__item:not(:last-child) {
  border-bottom: 1px solid var(--grey-100);
}

.filter-text {
  font-size: 0;
  line-height: 0;
  opacity: 0;
}

.specialization-list__box {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8px;

}
.specialization-list__text-bottom {
  font-size: 14px;
  font-family: "Nunito";
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: var(--grey);
}

.specialization-list__text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.4px;
  color: var(--black);
  font-family: "GolosText";
  width: 97px;
  text-align: left;
}

.specialization-list__text.width-text {
  width: 120px;
}

.specialization-list__text.text-center {
  text-align: center;
}

.specialization-list__text.text-right {
  text-align: right;
}

.text-auto {
  margin: 0 auto;
}

.specialization__bottom {
  max-width: 323px;
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  background-color: var(--beige);
  margin-top: 8px;
}

.specialization__text-bold {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.3px;
  color: var(--black);
  font-family: "GolosText";
  margin-bottom: 8px;
}

.specialization__text-bottom {
  font-size: 12px;
  font-weight: 400;
  font-family: "Nunito";
  line-height: 1;
  letter-spacing: -0.5px;
  color: var(--black);
}

.special-btn {
  font-family: "Nunito";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: var(--white);
  width: 100%;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 8px;
  background-color: var(--black);
}

.special-window {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: auto;
  z-index: 999;
}

.special-window.active {
  display: flex;
  justify-content: center;
}

.special-window__content {
  max-width: 375px;
  width: 100%;
  height: auto;
  padding: 16px 12px 12px;
  background-color: var(--beige);
  position: relative;
}

.special-window__close {
  position: absolute;
  right: 12px;
  top: 12px;
  width: 24px;
  height: 44px;
  font-size: 44px;
  color: black;
}

.special-window__top {
  margin-bottom: 24px;
}

.special-window__title {
  font-family: "GolosText";
  font-weight: 24px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.5px;
  color: var(--black);
  margin-bottom: 8px;
}

.special-window__text,
.special-window-text {
  font-family: "GolosText";
  font-weight: 14px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.3px;
  color: var(--black);
}

.special-window__form {
  padding-bottom: 16px;
}

.special-window__form-inner {
  background-color: var(--white);
  padding: 12px;
  margin-bottom: 16px;
}

.special-window-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px;
  height: 41px;
  background-color: var(--orange--400);
  position: relative;
  border-radius: 8px;
}

.special-window-btn.active {
  background-color: var(--orange);
  color: var(--white);
}
.special-window-btn.active svg {
  transform: rotateX(180deg);
  color: var(--white);
}

.text-margin {
  margin-bottom: 8px;
}


.special-window__dropdown {
  margin-bottom: 16px;
  position: relative;
}

.dropdown-menu .btn-special-window.checked {
  background-color: var(--orange);
  color: var(--white);
}

.dropdown-menu__text {
  font-family: "Nunito";
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: var(--grey);
  margin-bottom: 8px;
}

.special-window__btn {
  background-color: var(--black);
  color: var(--white);
  width: 100%;
  height: 48px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.6px;
  font-family: "Nunito";
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.special-window__label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.special-window__input {
  font-family: "Nunito";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  border-radius: 8px;
  color: var(--black);
  background-color: var(--orange--200);
  height: 48px;
  padding: 15px 12px;
  border: 1px solid var(--orange--400);
}

.special-window__input::placeholder {
  font-family: "Nunito";
  font-weight: 400;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.6px;
  color: var(--grey);
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.margin-none {
  margin-bottom: 0;
}

.special-window__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.special-window__lab {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  border-radius: 8px;
  border: 1px solid var(--orange--400);
}

.special-window__checkbox {
  display: none;
}

.special-window__lab span {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.6px;
  font-family: "Nunito";
  min-width: 53px;
  height: 40px;
  padding: 0 12px;
  border-radius: 8px;
}

.special-window__checkbox:checked + .special-window__box {
  background-color: #FF865D;
  color: #fff;
}

.special-window__radio-box,
.special-window__radio-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.special-window__radio-block {
  margin-bottom: 16px;
}

.special-window__radio {
  color: var(--black);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  
}

.custom-radio {
  display: flex;
  align-items: center;
  gap: 8px;
}

.custom-radio .special-window__radio {
  display: none;
}

.custom-radio__check {
  min-width: 16px;
  min-height: 16px;
  border: 1px solid var(--black);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.2s ease;
  display: inline-flex;
}

.custom-radio__check::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--black);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease;
}

.custom-radio .special-window__radio:checked+.custom-radio__check::after {
  transform: translate(-50%, -50%) scale(1);
}

.special-window__policy {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.special-window__policy-span {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.6px;
  font-family: "Nunito";
}







.accordion {
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
  background-color: var(--beige);
  gap: 12px;
}

.accordion .accordion__item {
  overflow: hidden;
  border-radius: 14px;
}

.accordion .link {
  cursor: pointer;
  padding: 10px 14px;
  -webkit-transition: all 0.9s ease;
  -o-transition: all 0.9s ease;
  transition: all 0.9s ease;
}

.accordion .accordion__item.open {
  border: 0.5px solid var(--orange);
  border-radius: 14px;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.03);
  background-color: var(--white);
}

.cards {
  background-color: var(--white);
  max-width: 375px;
  width: 100%;
  height: auto;
  padding: 12px 14px;
  margin: 0 auto;
  gap: 10px;
}

.cards__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--grey-100);
}

.cards__title {
  gap: 4px;
}

.cards-h2 {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  /*max-width: 276px;*/
  max-width: 230px;
  padding-bottom: 2px;
}

.cards__subtitle {
  color: var(--grey);
  font-family: "Nunito";
}

.cards__icon {
  width: 36px;
  height: 24px;
  border-radius: 20px;
  background-color: var(--orange);
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  transform: translate(-2px, 6px);
}

.accordion .accordion__item.open .cards__icon {
  background-color: var(--orange-200);
}

.cards__line {
  background-color: var(--white);
  height: 1px;
  width: 16px;
}

.line-height {
  width: 16px;
  transform: rotate(-90deg) translateY(0px) translateX(1px);
  transition: all 0.4s ease;
}

.accordion .accordion__item.open .line-height {
  transform: rotate(0deg) translateY(-1px);
}

.cards__middle {
  gap: 8px;
}

.cards__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2px;
}

.cards-list {
  display: flex;
  gap: 4px;
}

.cards-list__item {
  background-color: var(--beige);
  text-align: center;
  display: flex;
  justify-content: center;
  padding: 11px 12px;
  border-radius: 8px;
  height: 36px;
}

.date {
  display: flex;
  align-items: center;
  gap: 2px;
}

.date__text {
  color: var(--grey);
  font-family: "Nunito";
}

.submenu {
  display: none;
  background-color: var(--white);
  padding: 0 14px 12px;
  -webkit-border-bottom-right-radius: 14px;
  -webkit-border-bottom-left-radius: 14px;
  -moz-border-radius-bottomright: 14px;
  -moz-border-radius-bottomleft: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
}

.submenu .submenu__block {
  gap: 16px;
}

.margin-top {
  margin-top: 24px;
}

.submenu__content,
.submenu__item {
  gap: 16px;
}

.submenu__item {
  padding-top: 16px;
  border-top: 1px solid var(--grey-100);
}

.noUi-target{
  background-color: transparent;
  height: 20px;
  border: none;
  box-shadow: inset 0 0 0 0, 0 0 0 0;
}

.noUi-target .noUi-base {
  background-color: var(--beige);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  height: 6px;
  max-width: 306px;
  width: 100%;
}

.noUi-target .noUi-base .noUi-connect {
  background-color: var(--orange);
}

.noUi-target .noUi-base .noUi-tooltip {
  bottom: 0;
  color: var(--orange);
  border: none;
  outline: none;
}

.noUi-handle.noUi-handle-lower {
  background: var(--white);
  border-radius: 20px;
  width: 18px;
  height: 18px;
  outline: none;
  right: 0;
  left: 30px;
  top: -6px;
  cursor: pointer;
  box-shadow: none;
  border: 4px solid var(--orange);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.noUi-handle.noUi-handle-lower.noUi-active {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.noUi-handle.noUi-handle-lower::before,
.noUi-handle.noUi-handle-lower::after {
  display: none;
}

.noUi-target.moving .noUi-connect {
  background-color: var(--orange) !important;
}
/************* SEARCH END *************/

/************* HOME START *************/
.header-home {
  padding-bottom: 12px;
  min-height: 100vh;
}
.header-home__wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  background-color: var(--beige);
  margin-bottom: 32px;
}

.home-wrap {
  gap: 32px;
  height: 61vh;
}

.home-content {
  gap: 33px;
}

.home-top {
  gap: 8px;
  justify-content: center;
  align-items: center;
}

.home-list {
  gap: 16px;
}

.home-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  width: 100%;
}

.home-list__num {
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  border-radius: 50%;
  background-color: var(--white);
}

.home-list__num span {
  line-height: 1.2;
  font-family: "GolosText";
  letter-spacing: -0.28px;
}

.home-bottom {
  margin-top: auto;
}
/************* HOME END *************/