@charset "UTF-8";
:root {
  /* Color's =====> */
  --color-white: #FFFFFF;
  --color-black: #000000;
  --color-background: #FFFFFF;
  --color-primary: #000000;
  --color-border-primary: #edf0f8;
  --color-gray-100: #f8f8f8;
  --color-gray-400: #edf0f8;
  --color-gray-500: #e8eaee;
  --color-gray-600: #d1d5dd;
  --color-gray-700: #adb4c8;
  --color-gray-800: #8f8e8f;
  --color-gray-900: #7f7e7e;
  --color-green-100: #ECFAE2;
  --color-green-300: #A2C595;
  --color-green-400: #008489;
  --color-green-500: #015D52;
  --color-green-600: #015D52;
  --color-green-700: #629A4E;
  --color-orange-100: #ffd8bd;
  --color-orange-900: #FF4500;
  --color-orange-1000: #FF4500;
  --color-red-1000: #FF4500;
  /* Box Shadow =====> */
  --shadow-primary: 0 15px 30px rgba(127,126,126,.4);
  /* Font-family =====> */
  --font-Steppe: "Steppe", Arial, sans-serif;
  /* Font-size =====> */
  --text-3xs: 0.5rem; /* 8px */
  --text-2xs: 0.625rem; /* 10px */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-lg: 1.125rem; /* 18px */
  --text-xl: 1.25rem; /* 20px */
  --text-2xl: 1.5rem; /* 24px */
  --text-2-5xl: 1.75rem; /* 28px */
  --text-3xl: 2rem; /* 32px */
  --text-3-5xl: 2.5rem; /* 40px */
  --text-4xl: 3rem; /* 48px */
  --text-5xl: 3.75rem; /* 60px */
  --text-title: 4.5rem; /* 72px */
  /* Border-radius =====> */
  --rounded: 0.25rem; /* 4px */
  --rounded-base: 1rem; /* 16px */
  --rounded-2xl: 1.5rem; /* 24px */
  --rounded-3xl: 2rem; /* 32px */
  --rounded-4xl: 2.5rem; /* 40px */
  --rounded-5xl: 3.75rem; /* 60px */
  --rounded-full: 100%;
  /* Transition's =====> */
  --transition-low: all 0.15s ease-in-out;
  --transition-normal: all 0.3s ease-in-out;
  --transition-high: all 0.6s ease-in-out;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.pagination__arrow-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid #EDF0F8;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  color: #000000;
  transition: background 350ms ease-in-out;
  cursor: pointer;
}
.pagination__arrow-link svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.pagination__arrow-link_previous {
  margin-right: 20px;
}
.pagination__arrow-link_previous svg {
  transform: scaleX(-1);
}
.pagination__arrow-link_next {
  margin-left: 20px;
}
@media (hover: hover) {
  .pagination__arrow-link:hover {
    background: #EDF0F8;
  }
}
.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-align: center;
  background: transparent;
  color: #000000;
  cursor: pointer;
  transition: background 350ms ease-in-out;
}
.pagination__link_active {
  background: #EDF0F8;
}
@media (hover: hover) {
  .pagination__link:hover {
    background: #EDF0F8;
  }
}
.page-title {
  font-weight: 700;
  font-size: 50px;
  line-height: 1;
  color: #000000;
}
@media (max-width: 1024px) {
  .page-title {
    font-size: 36px;
  }
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  z-index: 3;
  position: relative;
  overflow: auto;
  max-width: 100%;
  width: 100%;
  scrollbar-width: none;
  scrollbar-color: transparent transparent;
}
.breadcrumbs::-webkit-scrollbar {
  width: 0;
  -webkit-appearance: none;
  background: transparent;
}
.breadcrumbs::-webkit-scrollbar-track {
  background: transparent;
}
.breadcrumbs::-webkit-scrollbar-thumb {
  background: transparent;
}
.breadcrumbs li:last-child .breadcrumbs__item {
  color: #6b6b6b;
}
.breadcrumbs li:last-child .breadcrumbs__item::after {
  display: none;
}
.breadcrumbs__item {
  color: #C7C7C7;
  display: block;
  position: relative;
  white-space: nowrap;
  padding-right: 16px;
  font-size: 12px;
  line-height: 1.33;
  transition: color 0.35s ease-in-out, opacity 350ms ease-in-out;
}
.breadcrumbs__item::after {
  content: "—";
  position: absolute;
  right: 0;
  bottom: 0;
  color: #C7C7C7;
}
@media (min-width: 1280px) {
  .breadcrumbs__item:not(span):hover {
    color: #FF4500;
  }
}
@media (max-width: 767px) {
  .breadcrumbs__item {
    max-width: 90px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    white-space: normal;
  }
}
@media (max-width: 1024px) {
  .breadcrumbs {
    margin-bottom: 24px;
  }
}

.page-content {
  font-family: "Steppe", Arial, sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
@media (min-width: 1280px) {
  .page-content--analyzes {
    padding-left: 30px;
  }
}
.page-content > h3:first-child, .page-content > h2:first-child, .page-content > h4:first-child {
  margin-top: 0;
}
.page-content p {
  margin-bottom: 24px;
}
.page-content h2,
.page-content .h2 {
  line-height: 1.2;
  margin-bottom: 24px;
  margin-top: 32px;
}
.page-content h3,
.page-content .h3 {
  margin-top: 32px;
}
.page-content h4,
.page-content .h4 {
  margin-top: 24px;
}
.page-content a {
  border-bottom: 1px solid #FF4500;
  color: #000000;
  transition: all 0.3s;
}
@media (min-width: 1280px) {
  .page-content a:hover {
    color: #EC3814;
    border-bottom: 1px solid transparent;
  }
}
.page-content ul {
  margin: 0 0 24px 0;
  padding: 0;
  list-style: none;
  font-family: "Steppe", Arial, sans-serif;
}
@media (min-width: 768px) {
  .page-content ul {
    margin: 0 0 38px 0;
  }
}
@media (min-width: 1280px) {
  .page-content ul {
    margin-bottom: 24px;
  }
}
.page-content ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
}
.page-content ul li::before, .page-content ul li::before {
  content: "";
  background-image: url("images/svg/leaf.svg");
  display: block;
  position: absolute;
  left: 5px;
  top: 5px;
  width: 15px;
  height: 15px;
  z-index: 1;
}
.page-content ul li .sub-info {
  margin-top: 8px;
  margin-left: -30px;
  line-height: 22px;
  font-size: 14px;
  color: #6b6b6b;
}
.page-content span.red {
  display: block;
  margin-top: 24px;
  font-size: 14px;
  line-height: 22px;
  color: #EC3814;
  font-weight: 400;
}
.page-content span.red a {
  color: inherit;
  border-bottom: none;
}
.page-content img {
  display: block;
  max-width: 100%;
  height: auto;
  margin-top: 24px;
  margin-bottom: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-content .spoiler-box__header-btn {
  margin-bottom: 16px;
}
.page-content .spoiler-box__btn-show {
  margin-top: 0;
}
.split-container .page-content h4, .split-container .page-content .h4 {
  margin-top: 2rem;
}
.split-container .page-content p {
  margin-bottom: 1rem;
}
.page-content ol {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: item;
}
.page-content ol li {
  margin-bottom: 16px;
}
.page-content ol li.h4 {
  margin-bottom: 24px;
}
.page-content ol li:last-child {
  margin-bottom: 0;
}
.page-content ol li::before {
  counter-increment: item;
  content: counters(item, ".") ". ";
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
}
.page-content ol li ol {
  margin-top: 12px;
}
.page-content ol li ol li {
  display: block;
  margin-bottom: 8px;
}
.page-content ol li ol li::before {
  content: counters(item, ".") ". ";
  font-weight: 300;
  font-family: "Steppe", Arial, sans-serif;
}
.page-content ol li ol li p {
  display: inline;
  margin-bottom: 0;
}
.page-content ol li ol li ol {
  margin-left: 12px;
}
.page-content ol li ol li ol li::before {
  content: counters(item, ".", ". ") ". ";
}
.page-content ol li ol li ul {
  margin: 8px 0 0 12px;
}
.page-content ol li ol li ul li {
  display: block;
}
.page-content ol li ol li ul li::before {
  content: "- ";
  counter-increment: none;
}
.page-content ol ul {
  margin: 12px 0 24px 16px;
}
.page-content ol ul li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 8px;
  counter-increment: none;
}
.page-content ol ul li::before, .page-content ol ul li::after {
  content: "";
  display: block;
  position: absolute;
  counter-increment: none;
}
.page-content ol ul li::after {
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #FF4500;
  border-radius: 50%;
}
.page-content ol ul li::before {
  z-index: 1;
  left: 5px;
  top: 8px;
  width: 9px;
  height: 5px;
  border-left: 1px solid #ffffff;
  border-bottom: 1px solid #ffffff;
  transform: rotate(-45deg);
}
.page-content .table-wrap {
  width: 100%;
  overflow: auto;
  overflow-y: hidden;
}
.page-content .table-wrap + p, .page-content .table-wrap + ul, .page-content .table-wrap + ol, .page-content .table-wrap + .table-wrap, .page-content .table-wrap + div, .page-content .table-wrap + span {
  margin-top: 24px;
}
.page-content table {
  width: 100%;
  border-collapse: collapse;
}
.page-content table th, .page-content table td {
  padding: 7px;
  border: 1px solid black;
  min-width: 200px;
}
.page-content table th {
  text-align: center;
  font-weight: bold;
}

.faq__title {
  margin-bottom: 48px;
  color: #015D52;
}
.faq__card {
  padding: 20px 24px 20px 24px;
  border-radius: 32px;
  border: 1px solid #edf0f8;
  background: #ffffff;
  transition: all 250ms ease-in-out;
  cursor: pointer;
}
.faq__card:not(:last-child) {
  margin-bottom: 16px;
}
.faq__card_open {
  background: #F8F8F8;
}
.faq__card:not(.faq__card_open):hover {
  border-color: #CFCFD1;
}
.faq__card-toggler {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq__card-name {
  font-family: "Steppe", Arial, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  margin-right: 10px;
  color: #000000;
}
.faq__card-text {
  font-family: "Steppe", Arial, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 22px;
  color: #000000;
  height: 0;
  overflow: hidden;
  transition: all 350ms linear;
  will-change: max-height, margin-top;
}
.faq__card-text_open {
  margin-top: 20px;
  height: auto;
  padding-bottom: 10px;
}
.faq__card-button {
  display: flex;
  align-items: center;
  justify-content: center;
  outline: none;
  border: none;
  width: 40px;
  min-width: 40px;
  height: 40px;
  padding: 0;
  position: relative;
  cursor: pointer;
  background: #F8F8F8;
  transition: background 350ms;
}
.faq__card-button span {
  background-color: #FF4500;
  position: absolute;
  left: 50%;
  top: 50%;
  transition: all 350ms;
}
.faq__card-button span:nth-child(1) {
  width: 40%;
  height: 5%;
  transform: translate(-50%, -50%);
}
.faq__card-button span:nth-child(2) {
  width: 5%;
  height: 40%;
  transform: translate(-50%, -50%);
}
.faq__card-button_open {
  background: #ffffff;
}
.faq__card-button_open span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.disease .faq,
.symptom .faq {
  padding-bottom: 100px;
}

.consultation-form {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: 56px 32px 24px 32px;
  background: #fff;
  border-radius: 16px;
}
.consultation-form .f-button.is-close-btn {
  top: 24px !important;
  right: 32px !important;
  width: 24px;
  height: 24px;
  color: #FF4500;
  opacity: 1;
  background: transparent !important;
}
.consultation-form__area {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
.consultation-form__title {
  font-weight: 700;
  line-height: 1;
  font-size: 36px;
  color: #015D52;
}
.consultation-form__text {
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: #000000;
}
.consultation-form__footer {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.consultation-form__footer .custom-checkbox__input + label::before {
  border: 1px solid #CFCFD1;
}
.consultation-form__footer .custom-checkbox__input:checked + label::before {
  border-color: #FF4500;
}
.consultation-form__footer .custom-checkbox__input + label a {
  transition: color 350ms ease-in-out;
}
.consultation-form__submit-button {
  width: 100%;
  min-height: 44px;
}
.consultation-form__submit-button[disabled] {
  background: #000;
  border-color: #000;
  opacity: 0.2;
  cursor: default;
  pointer-events: none;
}
.consultation-form__contacts {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.consultation-form__contacts-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 26px;
  color: #000000;
}
.consultation-form__contacts-tel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #015D52;
  transition: color 350ms ease-in-out;
}
.consultation-form__contacts-tel svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.consultation-form__contacts-tel span {
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  color: #015D52;
  transition: color 350ms ease-in-out;
}
.consultation-form__thanks {
  font-weight: 700;
  line-height: 1;
  font-size: 24px;
  color: #015D52;
  padding: 0 0 32px 0;
}
.consultation-form__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  border-radius: 16px;
  background: hsla(0, 0%, 100%, 0.7);
}
.consultation-form__overlay .preloader {
  position: static;
  display: block;
  transform: unset;
  left: unset;
  top: unset;
}
@media (hover: hover) {
  .consultation-form__contacts-tel:hover, .consultation-form__contacts-tel:hover span {
    color: #FF4500;
  }
}
@media (max-width: 480px) {
  .consultation-form {
    max-width: 100%;
    padding: 56px 24px 24px 24px;
  }
  .consultation-form .f-button.is-close-btn {
    right: 24px !important;
  }
  .consultation-form__title {
    font-size: 24px;
  }
  .consultation-form__contacts {
    flex-direction: column;
    align-items: flex-start;
  }
}

.fancybox__form-overlay {
  --fancybox-bg: rgba(0, 0, 0, 0.5);
}
@media (max-width: 480px) {
  .fancybox__form-overlay .fancybox__slide {
    padding: 0;
  }
}

.coupons-recording {
  padding: 40px;
  border-radius: 16px;
  background: #F8F8F8;
  max-width: 472px;
}
.coupons-recording__title {
  font-weight: 700;
  font-size: 26px;
  line-height: 100%;
  color: #000000;
  text-align: center;
  margin-bottom: 10px;
}
.coupons-recording__text {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  text-align: center;
  margin-bottom: 24px;
}
.coupons-recording__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.coupons-recording__button {
  min-height: 44px;
  width: 100%;
}
.coupons-recording__contacts {
  display: inline-flex;
  flex-direction: column;
  margin: 0 auto;
}
.coupons-recording__contacts-text, .coupons-recording__contacts-tel, .coupons-recording__contacts-feedback {
  font-weight: 400;
  font-size: 16px;
  line-height: 20px;
  text-align: center;
  color: #000000;
  margin-bottom: 8px;
  transition: color 350ms ease-in-out;
}
.coupons-recording__contacts-tel {
  font-weight: 700;
}
.coupons-recording__contacts-feedback {
  text-decoration: underline;
  color: #FF4500;
  margin: 0;
}
.coupons-recording .f-button.is-close-btn {
  width: 32px !important;
  height: 32px !important;
  border-radius: 50%;
  background: #F8F8F8 !important;
  opacity: 1 !important;
  top: -24px !important;
  right: -32px !important;
  --f-button-color: #808080 !important;
  --f-button-svg-width: 14px !important;
  --f-button-svg-height: 14px !important;
  transition: color 350ms ease-in-out, background 350ms ease-in-out;
}
.coupons-recording .f-button.is-close-btn svg {
  stroke-width: 4px;
}
@media (hover: hover) {
  .coupons-recording__contacts-tel:hover, .coupons-recording__contacts-feedback:hover {
    color: #015D52;
  }
  .coupons-recording .f-button.is-close-btn:hover {
    background: #FF4500 !important;
    color: #fff;
  }
  .coupons-recording__button:not(.primary-button_bg_transparent, .primary-button_bg_green):hover {
    background-color: #015D52;
    border-color: #015D52;
    color: #fff;
  }
}
@media (max-width: 576px) {
  .coupons-recording {
    padding: 40px 24px 40px 24px;
  }
  .coupons-recording .f-button.is-close-btn {
    top: 8px !important;
    right: 8px !important;
  }
}

.promotions-card {
  display: flex;
  flex-direction: column;
  padding: 16px 16px 24px 16px;
  border-radius: 16px;
  background: #F8FAFF;
}
.promotions-card__image {
  display: block;
  position: relative;
  height: 0;
  width: 100%;
  padding-bottom: 53.57%;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 20px;
}
.promotions-card__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  transition: transform 0.35s ease-in-out;
}
@media (hover: hover) {
  .promotions-card__image img:hover {
    transform: scale(1.05);
  }
}
.promotions-card__tags {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: 280px;
  margin-bottom: 10px;
}
.promotions-card__tags svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  color: #FF4500;
}
.promotions-card__tags span {
  font-weight: 400;
  font-size: 12px;
  line-height: 18px;
  color: #000000;
}
.promotions-card__tags span:nth-child(1) {
  max-width: 315px;
}
.promotions-card__tags .promotions-card__tags-tooltip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 8px;
  border-radius: 32px;
  background: #EDF0F8;
  transition: background 350ms ease-in-out, color 350ms ease-in-out;
}
.promotions-card__tags .promotions-card__tags-tooltip:hover {
  background: #FF4500;
  color: #fff;
}
.promotions-card__tags .promotions-card__tags-tooltip:hover ul {
  opacity: 1;
  pointer-events: all;
}
.promotions-card__tags ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  top: 100%;
  right: 0;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 16px 0 rgba(62, 58, 56, 0.1019607843);
  z-index: 3;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease-in-out;
  cursor: default;
  max-height: 115px;
  width: 100%;
  max-width: 270px;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #cfcfd1 transparent;
}
.promotions-card__tags ul li {
  font-size: 12px;
  line-height: 18px;
  word-wrap: break-word;
  white-space: break-spaces;
  color: #000000;
}
.promotions-card__title {
  margin-bottom: 20px;
}
.promotions-card__title a {
  display: block;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  transition: color 350ms ease-in-out;
}
@media (hover: hover) {
  .promotions-card__title a:hover {
    color: #FF4500;
  }
}
.promotions-card__button {
  width: 100%;
  min-height: 44px;
  background: transparent;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  text-align: center;
  margin-top: auto;
  color: #000000;
}
@media (hover: hover) {
  .promotions-card__button:hover {
    background: #FF4500;
    color: #fff;
  }
}

.promotions {
  padding-top: 16px;
}
.promotions__title {
  margin-bottom: 24px;
  margin-top: 0;
}
.promotions__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.promotions__content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.promotions__list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.promotions__filters {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 16px;
  background: #EDF0F8;
  backdrop-filter: blur(10px);
  z-index: 1;
}
.promotions__filters .input {
  min-width: 200px;
}
.promotions__filters .input .select2-container--default .select2-selection--single,
.promotions__filters .input .select2-container--default .select2-selection--multiple {
  border: unset !important;
  border-radius: 8px !important;
}
.promotions__filters-tabs {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 4px;
  border-radius: 8px;
  background: #fff;
}
.promotions__filters-tab-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  color: #6B6B6B;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
  transition: background 350ms ease-in-out, color 350ms ease-in-out;
}
.promotions__filters-tab input:checked ~ .promotions__filters-tab-text {
  color: #FFF;
  background: #FF4500;
}
.promotions__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 5;
  background: hsla(0, 0%, 100%, 0.7);
}
.promotions__overlay .preloader {
  position: static;
  display: block;
  transform: unset;
  left: unset;
  top: unset;
}
@media (hover: hover) {
  .promotions .promotions__filters-tab:hover .promotions__filters-tab-text {
    color: #FFF;
    background: #FF4500;
  }
}
@media (max-width: 1024px) {
  .promotions__filters {
    padding: 8px 16px;
  }
  .promotions__title {
    margin-bottom: 16px;
  }
  .promotions {
    padding-bottom: 40px;
  }
}
@media (max-width: 767px) {
  .promotions__filters {
    flex-direction: column-reverse;
    align-items: flex-start;
  }
  .promotions__filters-select {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .promotions__filters-tabs {
    width: 100%;
  }
}
@media (max-width: 390px) {
  .promotions__filters-tabs {
    overflow: hidden;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    overscroll-behavior: contain;
    scrollbar-color: transparent transparent;
    scrollbar-width: thin;
    scrollbar-gutter: stable;
  }
  .promotions__filters-tabs::-webkit-scrollbar {
    width: 3px;
  }
  .promotions__filters-tabs::-webkit-scrollbar-track {
    background: transparent;
  }
  .promotions__filters-tabs::-webkit-scrollbar-thumb {
    background-color: transparent;
  }
  .promotions__filters-tab {
    flex-shrink: 0;
  }
  .promotions__list {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

html {
  scroll-padding-top: 200px;
  scroll-behavior: smooth;
}

.promotions-detail {
  padding-top: 16px;
}
.promotions-detail__similar {
  padding-top: 60px;
}
.promotions-detail__similar-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.promotions-detail__similar-title {
  margin-bottom: 24px;
}
.promotions-detail__preview-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-height: 320px;
  padding: 32px 128px 32px 128px;
}
.promotions-detail__preview-container .breadcrumbs {
  z-index: 1;
}
.promotions-detail__preview-image {
  display: flex;
  align-items: flex-end;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  width: calc(100% - 160px);
  height: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 16px;
}
.promotions-detail__preview-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom right;
     object-position: bottom right;
}
.promotions-detail__preview-content, .promotions-detail__preview-info {
  z-index: 1;
}
.promotions-detail__preview-content {
  width: 100%;
  margin-bottom: 32px;
}
.promotions-detail__preview-info {
  display: inline-flex;
  align-items: center;
  gap: 32px;
  margin-top: auto;
}
.promotions-detail__preview-date {
  display: inline-flex;
  align-items: center;
}
.promotions-detail__preview-date span {
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  color: #000000;
}
.promotions-detail__preview-date svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-right: 8px;
}
.promotions-detail__preview-clinics {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.promotions-detail__preview-clinics svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #FF4500;
  transition: color 350ms ease-in-out;
}
.promotions-detail__preview-clinics-tooltip {
  position: relative;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  text-decoration: underline;
  color: #000000;
  transition: color 350ms ease-in-out;
}
.promotions-detail__preview-clinics-tooltip ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: absolute;
  top: 100%;
  left: 0;
  padding: 8px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 6px 6px 16px 0 rgba(62, 58, 56, 0.1019607843);
  z-index: 3;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease-in-out;
  cursor: default;
  max-height: 115px;
  max-width: 270px;
  width: 100vw;
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #cfcfd1 transparent;
}
.promotions-detail__preview-clinics-tooltip ul li {
  font-size: 12px;
  line-height: 18px;
  word-wrap: break-word;
  white-space: break-spaces;
  color: #000000;
}
@media (hover: hover) {
  .promotions-detail__preview-clinics:hover .promotions-detail__preview-clinics-tooltip {
    color: #015D52;
  }
  .promotions-detail__preview-clinics:hover svg {
    color: #015D52;
  }
}
.promotions-detail__main-title {
  width: 59%;
  max-width: 600px;
  margin-bottom: 24px;
  margin-top: 0;
}
.promotions-detail__feedback {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}
.promotions-detail__feedback-button {
  position: relative;
  z-index: 1;
  padding: 9px 20px;
  min-height: 44px;
  min-width: 137px;
  margin-top: auto;
}
.promotions-detail__feedback-button_bg_transparent {
  background: transparent;
  color: #000000;
}
.promotions-detail__content {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.promotions-detail__content .page-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
  width: 100%;
}
.promotions-detail__content .page-content a {
  display: inline-block;
  color: #000000;
  text-decoration: underline;
  border: none;
  transition: color 0.35s ease-in-out;
}
@media (hover: hover) {
  .promotions-detail__content .page-content a:hover {
    color: #FF4500;
  }
}
.promotions-detail__content .page-content h2,
.promotions-detail__content .page-content h3,
.promotions-detail__content .page-content h4,
.promotions-detail__content .page-content h5,
.promotions-detail__content .page-content h6 {
  font-weight: 700;
  line-height: 1;
  color: #000000;
  margin: 0 0 24px 0;
}
.promotions-detail__content .page-content h2 {
  font-size: 24px;
}
.promotions-detail__content .page-content h3 {
  font-size: 20px;
}
.promotions-detail__content .page-content h4 {
  font-size: 18px;
}
.promotions-detail__content .page-content h5 {
  font-size: 16px;
}
.promotions-detail__content .page-content h6 {
  font-size: 14px;
}
.promotions-detail__content .page-content div:not(:last-child), .promotions-detail__content .page-content p:not(:last-child), .promotions-detail__content .page-content span:not(:last-child) {
  margin-bottom: 32px;
}
.promotions-detail__content .page-content ul:not(:last-child) {
  margin-bottom: 32px;
}
.promotions-detail__content .page-content ul:not(:last-child) li {
  margin: 0;
}
.promotions-detail__content .page-content ul:not(:last-child) li:not(:last-child) {
  margin-bottom: 8px;
}
.promotions-detail__content .page-content ol:not(:last-child) {
  margin-bottom: 32px;
  list-style-type: none;
}
.promotions-detail__content .page-content ol:not(:last-child) li {
  position: relative;
  margin: 0;
  padding-left: 30px;
}
.promotions-detail__content .page-content ol:not(:last-child) li::before {
  display: flex;
  position: absolute;
  left: 5px;
  top: 0;
  z-index: 1;
  align-items: center;
  justify-content: center;
}
.promotions-detail__content .page-content ol:not(:last-child) li:not(:last-child) {
  margin-bottom: 8px;
}
.promotions-detail__content-description {
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  color: #000000;
  padding-bottom: 32px;
  border-bottom: 1px solid #CDCDE0;
}
.page-content .promotions-detail__content-reference {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 12px;
  background: #eef1f9;
  padding: 24px;
  border-radius: 16px;
}
.page-content .promotions-detail__content-reference h2, .page-content .promotions-detail__content-reference h3, .page-content .promotions-detail__content-reference h4, .page-content .promotions-detail__content-reference h5, .page-content .promotions-detail__content-reference h6 {
  font-weight: 700;
  line-height: 1;
  color: #FF4500;
  margin: 0;
}
.page-content .promotions-detail__content-reference h2 {
  font-size: 24px;
}
.page-content .promotions-detail__content-reference h3 {
  font-size: 20px;
}
.page-content .promotions-detail__content-reference h4 {
  font-size: 18px;
}
.page-content .promotions-detail__content-reference h5 {
  font-size: 16px;
}
.page-content .promotions-detail__content-reference h6 {
  font-size: 14px;
}
.page-content .promotions-detail__content-reference span {
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #000000;
}
.promotions-detail__body {
  padding: 40px 0 0 0;
}
.promotions-detail__body .container {
  display: grid;
  grid-template-columns: 1fr 369px;
  align-items: flex-start;
  gap: 48px;
}
.promotions-detail__aside {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: sticky;
  top: 170px;
  max-width: 369px;
  width: 100%;
}
.promotions-detail__aside-block {
  width: 100%;
  border-radius: 16px;
  padding: 40px 24px 24px 24px;
}
.promotions-detail__aside-block_top {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: linear-gradient(109.5deg, #BEE639 -2.44%, #7EB332 101.96%);
}
.promotions-detail__aside-block_top .promotions-detail__aside-title {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 14px;
}
.promotions-detail__aside-block_top .promotions-detail__aside-title .promotions-detail__aside-img {
  position: absolute;
  height: 144px;
  width: 137px;
  padding-bottom: unset;
  border-radius: unset;
  margin-bottom: unset;
  left: 24px;
  top: -28px;
}
.promotions-detail__aside-block_top .promotions-detail__aside-title .promotions-detail__aside-img img {
  position: static;
}
.promotions-detail__aside-block_top .promotions-detail__aside-title span {
  max-width: 159px;
  color: #fff;
}
.promotions-detail__aside-block_bottom {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  padding: 16px 24px;
  border-radius: 16px;
  min-height: 140px;
  overflow: hidden;
  transition: background 0.35s ease-in-out;
  background: #EEF1F9;
}
.promotions-detail__aside-block_bottom h3 {
  max-width: 132px;
}
.promotions-detail__aside-block_bottom .circle-btn {
  width: 34px;
  height: 34px;
}
@media (hover: hover) {
  .promotions-detail__aside-block_bottom:hover {
    background: #e6eaf4;
  }
  .promotions-detail__aside-block_bottom:hover .circle-btn {
    background: transparent;
    border-color: #FF4500;
    color: #FF4500;
  }
  .promotions-detail__aside-block_bottom:hover .circle-btn::after {
    background: url("/images/svg/circle-btn-arrow-right.svg") center center/cover no-repeat;
  }
}
.promotions-detail__aside-block_bottom img {
  display: block;
  position: absolute;
  right: 20px;
  bottom: 0;
  z-index: 0;
  width: 100%;
  max-width: 144px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  -o-object-position: right bottom;
  object-position: right bottom;
}
.promotions-detail__aside-title {
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 26px;
  color: #000000;
  margin-bottom: 10px;
}
.promotions-detail__aside-button {
  min-height: 44px;
  font-weight: 500;
  width: 100%;
  background: #fff;
  border-color: #fff;
  color: #000000;
}
.promotions-detail__aside-button.primary-button_bg_transparent {
  border-color: #fff;
  background: transparent;
  color: #fff;
}
.promotions-detail__clinics {
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 16px;
}
.promotions-detail__clinics-list {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  gap: 4px;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
.promotions-detail__clinics-list a {
  position: relative;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  padding-left: 30px;
  color: #FF4500;
  transition: opacity 350ms ease-in-out;
}
.promotions-detail__clinics-list a:before {
  content: "";
  background-image: url(/images/leaf.svg);
  display: block;
  position: absolute;
  left: 5px;
  top: 5px;
  width: 15px;
  height: 15px;
  z-index: 1;
}
.promotions-detail__clinics-more-btn {
  display: none;
  color: #FF4500;
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  background: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  text-align: center;
}
.promotions-detail__faq-title {
  margin-bottom: 16px;
}
.promotions-detail__faq .faq {
  padding: 0;
}
.promotions-detail__faq .faq__card {
  border-color: #FF4500;
}
.promotions-detail__faq .faq__card:not(.faq__card_open):hover {
  border-color: #FF4500;
}
.promotions-detail__services {
  border-radius: 16px;
  padding: 24px;
  background: #F8F8F8;
}
.promotions-detail__services-table {
  margin-bottom: 16px;
}
.promotions-detail__services-table-header {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  align-items: center;
  gap: 48px;
  padding-bottom: 8px;
}
.promotions-detail__services-table-header .promotions-detail__services-table-cell {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  color: #6B6B6B;
  text-align: end;
}
.promotions-detail__services-table-row {
  display: grid;
  grid-template-columns: 1fr minmax(115px, auto) minmax(100px, auto);
  gap: 48px;
  align-items: center;
  padding: 16px 0 16px 0;
  border-top: 1px solid #CFCFD1;
}
.promotions-detail__services-table-row:last-child {
  border-bottom: 1px solid #CFCFD1;
}
.promotions-detail__services-primary-btn {
  min-height: 44px;
  min-width: 246px;
}
.promotions-detail__services-descr {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  color: #6B6B6B;
}
.promotions-detail__services-cost {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
}
.promotions-detail__services-cost_with_discount .promotions-detail__services-price-num {
  color: #015D52;
}
.promotions-detail__services-price-num {
  font-size: 16px;
  font-weight: 700;
  line-height: 22px;
  color: #000000;
}
.promotions-detail__services-price-num_crossed {
  text-decoration: line-through;
}
.promotions-detail__services-discount-percent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #FF4500;
  color: #FFF;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 12px;
  padding: 4px;
}
.promotions-detail__services-price-title {
  display: none;
}
.promotions-detail__documents-title {
  margin-bottom: 16px;
}
.promotions-detail__documents-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  list-style-type: none;
  counter-reset: item;
  padding: 0;
  margin: 0;
}
.promotions-detail__documents-link {
  margin: 0;
}
.promotions-detail__documents-link a {
  position: relative;
  display: inline-block;
  transition: color 350ms ease-in-out;
  padding-left: 30px;
  color: #FF4500;
}
.promotions-detail__documents-link a::before {
  display: flex;
  position: absolute;
  left: 5px;
  top: 0;
  z-index: 1;
  align-items: center;
  justify-content: center;
  counter-increment: item;
  content: counters(item, ".") ". ";
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  color: #FF4500;
  transition: color 350ms ease-in-out;
}
.promotions-detail__mob-feedback {
  display: none;
}
.promotions-detail__scroll-container {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}
@media (hover: hover) {
  .promotions-detail__clinics-list a:hover {
    opacity: 0.7;
  }
  .promotions-detail__feedback-button:hover {
    background: transparent !important;
  }
  .promotions-detail__services-primary-btn:hover {
    background: #015D52;
    border-color: #015D52;
    color: #fff;
  }
  .promotions-detail__aside-button:not(.primary-button_bg_transparent):hover {
    background-color: #FF4500;
    border-color: #FF4500;
    color: #fff;
  }
  .promotions-detail__aside-button.primary-button_bg_transparent:hover {
    border-color: #FF4500;
  }
  .promotions-detail__documents-link:hover a {
    color: #015D52;
  }
  .promotions-detail__documents-link:hover a::before {
    color: #015D52;
  }
}
@media (max-width: 1279px) {
  .promotions-detail__preview-image {
    width: calc(100% - 48px);
  }
  .promotions-detail__preview-container {
    padding: 32px 48px;
  }
  .promotions-detail__body .container {
    gap: 24px;
  }
  .promotions-detail__clinics-list {
    -moz-column-gap: 48px;
         column-gap: 48px;
  }
}
@media (max-width: 1024px) {
  .promotions-detail__mob-feedback {
    display: block;
  }
  .promotions-detail__mob-feedback .title {
    margin-bottom: 16px;
  }
  .promotions-detail__mob-feedback-wrapper {
    display: flex;
    gap: 16px;
  }
  .promotions-detail__mob-feedback-wrapper a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 22px;
    border-radius: 16px;
    padding: 24px;
    width: calc(50% - 8px);
    flex-grow: 1;
    background: #EEF1F9;
  }
  .promotions-detail__mob-feedback-wrapper a .circle-btn {
    width: 34px;
    height: 34px;
  }
  .promotions-detail__mob-feedback-wrapper a h3 {
    font-weight: 500;
    font-size: 14px;
    line-height: 18px;
    max-width: 80px;
    color: #000000;
  }
  .promotions-detail__clinics {
    gap: 16px;
  }
  .promotions-detail__services-title, .promotions-detail__clinics-title, .promotions-detail__faq-title, .promotions-detail__similar-title, .promotions-detail__documents-title,
  .promotions-detail .promotions-detail__mob-feedback .title {
    font-size: 20px;
  }
  .promotions-detail__body .container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .promotions-detail__faq .faq__card {
    padding: 20px 16px 20px 16px;
  }
  .promotions-detail__aside {
    position: static;
    max-width: 100%;
    gap: 40px;
  }
  .promotions-detail__aside-img {
    padding-bottom: 32.31%;
  }
  .promotions-detail__aside-block {
    width: 100%;
  }
  .promotions-detail__aside-block_top {
    display: none;
  }
  .promotions-detail__aside-block_bottom img {
    right: 12px;
  }
  .promotions-detail__feedback {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 48px;
  }
  .promotions-detail__preview-info {
    gap: 16px;
    flex-wrap: wrap;
  }
  .promotions-detail__preview-container {
    padding-bottom: 24px;
    padding-top: 24px;
  }
  .promotions-detail__main-title {
    width: 100%;
    font-size: 26px;
    line-height: 1.231;
    margin-bottom: 16px;
  }
  .promotions-detail__content {
    gap: 40px;
    overflow: hidden;
  }
  .promotions-detail__content .page-content h2,
  .promotions-detail__content .page-content h3,
  .promotions-detail__content .page-content h4,
  .promotions-detail__content .page-content h5,
  .promotions-detail__content .page-content h6 {
    margin: 0 0 16px 0;
  }
  .promotions-detail__content .page-content div:not(:last-child), .promotions-detail__content .page-content p:not(:last-child), .promotions-detail__content .page-content span:not(:last-child) {
    margin-bottom: 24px;
  }
  .promotions-detail__content .page-content ul:not(:last-child) {
    margin-bottom: 24px;
  }
  .promotions-detail__content-description {
    padding-bottom: 24px;
  }
  .page-content .promotions-detail__content-reference {
    padding: 16px;
  }
  .page-content .promotions-detail__content-reference h2,
  .page-content .promotions-detail__content-reference h3,
  .page-content .promotions-detail__content-reference h4,
  .page-content .promotions-detail__content-reference h5,
  .page-content .promotions-detail__content-reference h6 {
    margin: 0;
  }
  .promotions-detail__services-primary {
    width: 100%;
  }
  .promotions-detail__similar {
    padding-top: 40px;
  }
  .promotions-detail__similar-title {
    margin-bottom: 16px;
  }
}
@media (max-width: 767px) {
  .promotions-detail__clinics {
    background: transparent;
    padding: 0;
    align-items: flex-start;
  }
  .promotions-detail__clinics-list {
    grid-template-columns: 1fr;
  }
  .promotions-detail__clinics-list a {
    display: none;
  }
  .promotions-detail__clinics-list a:nth-child(-n+6) {
    display: block;
  }
  .promotions-detail__clinics-more-btn {
    display: block;
  }
  .promotions-detail__services {
    padding: 16px;
  }
  .promotions-detail__services-title {
    margin-bottom: 16px;
  }
  .promotions-detail__services-price-title {
    display: block;
    grid-column: span 2;
    color: #CFCFD1;
    font-size: 12px;
    line-height: 18px;
  }
  .promotions-detail__services-table-header {
    display: none;
  }
  .promotions-detail__services-table-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    -moz-column-gap: 48px;
         column-gap: 48px;
    justify-content: flex-start;
  }
  .promotions-detail__services-cost {
    justify-content: flex-start;
    display: grid;
    grid-template-columns: auto auto;
    width: -moz-max-content;
    width: max-content;
  }
  .promotions-detail__services-descr {
    width: 100%;
  }
  .promotions-detail__preview-container {
    padding: 24px 32px;
  }
  .promotions-detail__preview-image {
    width: calc(100% - 32px);
  }
}
@media (max-width: 600px) {
  .promotions-detail__preview-container {
    min-height: 520px;
  }
  .promotions-detail__preview-image img {
    -o-object-position: bottom center;
       object-position: bottom center;
  }
}
@media (max-width: 480px) {
  .promotions-detail__services-primary-btn {
    width: 100%;
    min-width: 100%;
  }
}
@media (max-width: 390px) {
  .promotions-detail__feedback-button {
    min-width: 100%;
    width: 100%;
  }
}

.input {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 8px;
}
.input__label {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.2px;
  color: #000000;
}
.input__area {
  border-radius: 12px;
  border: 1px solid #CFCFD1;
  outline: none;
  width: 100%;
  padding: 12px 18px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1px;
  color: #000000;
  transition: border 350ms ease-in-out;
}
.input__area:focus-visible {
  border-color: #FF4500;
}
.input__area::-moz-placeholder {
  color: #CFCFD1;
}
.input__area::placeholder {
  color: #CFCFD1;
}
.input.error .input__area {
  border-color: #f50016;
}
.input__error {
  font-size: 10px;
  line-height: 1;
  color: #f50016;
}
.input .select2-dropdown {
  top: 4px;
  border: none !important;
  border-bottom-right-radius: 12px !important;
  border-bottom-left-radius: 12px !important;
  box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.1);
}
.input .select2-dropdown .select2-results__option--highlighted[aria-selected] {
  background-color: #FF4500 !important;
}
.input .select2-dropdown .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #e8eaee !important;
}
.input .select2-results__options {
  scrollbar-width: thin;
  scrollbar-color: #FF4500 #FFF;
}
.input .select2-results__options::-webkit-scrollbar {
  width: 1px;
}
.input .select2-results__options::-webkit-scrollbar-track {
  background: #FFF;
}
.input .select2-results__options::-webkit-scrollbar-thumb {
  background-color: #FF4500;
}
.input .c-select-options {
  overflow: hidden !important;
  overflow-y: auto !important;
  box-shadow: unset !important;
  scrollbar-width: thin;
  scrollbar-color: #FF4500 #FFF;
}
.input .c-select-options::-webkit-scrollbar {
  width: 3px;
}
.input .c-select-options::-webkit-scrollbar-track {
  background: #FFF;
}
.input .c-select-options::-webkit-scrollbar-thumb {
  background-color: #FF4500;
}
.input .c-select-option {
  transition: color 350ms ease-in-out;
}
.input .c-select-option:hover {
  color: #FF4500 !important;
}
.input .ps__scrollbar-x-rail,
.input .ps__scrollbar-y-rail {
  display: none !important;
}
.input .select2-container--default .select2-selection--single,
.input .select2-container--default .select2-selection--multiple {
  border: 1px solid #CFCFD1 !important;
  outline: none !important;
  border-radius: 12px !important;
  transition: border 350ms ease-in-out;
}
.input .select2-container--default .select2-selection--single:focus-visible, .input .select2-container--default .select2-selection--single[aria-expanded=true],
.input .select2-container--default .select2-selection--multiple:focus-visible,
.input .select2-container--default .select2-selection--multiple[aria-expanded=true] {
  border-color: #FF4500 !important;
}
.input .select2-container {
  width: 100% !important;
  height: 100% !important;
}
.input .select2-container .select2-selection--single {
  height: 100% !important;
}
.input .select2-container .select2-selection--single .select2-selection__rendered,
.input .select2-selection.select2-selection--multiple {
  padding-top: 12px;
  padding-bottom: 12px;
  padding-left: 18px !important;
  padding-right: 32px !important;
  height: 100% !important;
}
.input .select2-container--default .select2-search--inline .select2-search__field {
  pointer-events: none;
  height: 100%;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1px;
  color: #CFCFD1;
}
.input .select2-container--default .select2-search--inline .select2-search__field::-moz-placeholder {
  color: #CFCFD1;
}
.input .select2-container--default .select2-search--inline .select2-search__field::placeholder {
  color: #CFCFD1;
}
.input .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #000000 !important;
  line-height: 24px !important;
}
.input .select2-container--default .select2-selection--multiple .select2-selection__rendered {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: -6px;
  padding: 0 !important;
}
.input .select2-container--default .select2-selection--multiple {
  cursor: pointer !important;
}
.input .select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: rgb(0, 0, 0) !important;
  opacity: 0.2;
}
.input .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 0 !important;
  transform: translateY(-25%) rotate(135deg) !important;
  transform-origin: 50% 50% !important;
  right: 14px;
  width: 8px !important;
  height: 8px !important;
  bottom: 0;
  margin: auto;
}
.input .select2-container .select2-search--inline {
  float: unset !important;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  padding-left: 6px !important;
}
.input .select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #CFCFD1 !important;
}
.input .select2-container--default .select2-selection--single .select2-selection__arrow b {
  border-color: unset !important;
  border-width: unset !important;
  border-style: unset !important;
  left: unset !important;
  display: block;
  width: 100% !important;
  height: 100% !important;
  border-top: 2px solid currentColor !important;
  border-right: 2px solid currentColor !important;
  border-radius: 2px !important;
  transform-origin: 50% 50% !important;
  margin: auto !important;
  color: #6b6b6b !important;
  position: static !important;
  top: unset !important;
}
.input .select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow {
  transform: translateY(-25%) rotate(-45deg) !important;
}
.input .c-select--filter.opened {
  outline: 1px solid #FF4500;
}
.input .c-select-wrapper,
.input .c-select--filter {
  width: 100% !important;
  height: auto !important;
  padding: 0;
  border-radius: 12px;
  line-height: 0;
}
.input .c-select--filter .c-select-trigger {
  border-radius: 12px;
  width: 100% !important;
  padding: 12px 32px 12px 18px;
  background: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
  letter-spacing: 0.1000000015px;
  border: 1px solid transparent;
  color: #000000;
}
.input .c-select--filter .c-select-trigger::after {
  right: 14px;
}
.input__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.input__tag {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px;
  gap: 10px;
  background: #EDF0F8;
  border-radius: 40px;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid transparent;
  transition: border 350ms ease-in-out;
}
.input__tag-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.2px;
  color: #000000;
}
.input__tag-btn {
  border: none;
  outline: none;
  background: transparent;
  margin: 0;
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.input__tag-btn::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("/images/svg/close-cross.svg") center center/contain no-repeat;
}
.input .select2-container--default .select2-selection--multiple .select2-selection__choice {
  float: unset !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 16px !important;
  gap: 10px;
  background: #EDF0F8;
  border-radius: 40px !important;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid transparent !important;
  line-height: 1;
  transition: border 350ms ease-in-out;
}
.input .select2-selection__choice__remove {
  position: relative;
  color: transparent !important;
  background: transparent;
  margin: 0 !important;
  padding: 0;
  flex-shrink: 0;
  order: 2;
}
.input .select2-selection__choice__remove::after {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background: url("/images/svg/close-cross.svg") center center/contain no-repeat;
}

.custom-checkbox {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.custom-checkbox__input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.custom-checkbox__input + label {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  letter-spacing: 0.200000003px;
  color: #000000;
  cursor: pointer;
}
.custom-checkbox__input + label a {
  border: none;
  text-decoration: underline;
  color: #000000;
  transition: color 350ms ease-in-out;
}
.custom-checkbox__input + label a:hover {
  color: #FF4500 !important;
  border: none;
}
.custom-checkbox__input + label::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  flex-grow: 0;
  border-radius: 4px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 90% 90%;
  background-color: #FFFFFF;
}
.custom-checkbox__input:checked + label::before {
  background-color: #FF4500;
  background-image: url("/images/svg/checked.svg");
}
.custom-checkbox__error {
  font-size: 12px;
  line-height: 1;
  color: #f50016;
}