.title-h2 {
  font-family: var(--bold-font);
  font-size: 32px;
  line-height: 30px;
  margin-bottom: 35px;
}
.cart__removed-item {
  background-color: #EDF2F5;
  width: 100%;
  padding: 15px 30px 15px 0;
  display: flex;
  align-items: center;
  position: absolute;
  left: -100%;
  transition: opacity .3s ease-out, left .3s ease-out;
  height: 100%;
  opacity: 0;
  z-index: 2;
}
.cart__removed-item--active {
  background-color: #EDF2F5;
  width: 100%;
  position: absolute;
  left: 0;
  padding: 15px 30px 15px 0;
  opacity: 1;
  transition: left .2s ease-in, opacity .3s ease-in-out;
}
.cart__removed-item .cart__item-restore {
  margin: 0 -30px;
}
@media (max-width: 424px) {
  .title-h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }
  .cart__removed-item,
  .cart__removed-item--active {
    margin-left: -80px;
  }
  .cart__removed-item--active .cart__item-price {
    margin: -25px;
  }
  .cart__removed-item .cart__item-price {
    width: unset;
  }
  .cart__removed-item .cart__item-restore {
    margin: 0;
  }
}
/* Универсальный toggle */
.toggle-buttons {
  width: 100%;
  display: flex;
  user-select: none;
}
.toggle-button {
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10px 20px;
  background-color: #FFF;
  font-size: 14px;
  cursor: pointer;
  transition: background-color .2s, font-family .2s, color .2s;
}
.toggle-buttons--size-l .toggle-button {
  padding: 10px 0;
  font-size: 16px;
  line-height: 20px;
}
.toggle-button:first-child {
  border-radius: 4px 0 0 4px;
}
.toggle-button:last-child {
  border-radius: 0 4px 4px 0;
}
.toggle-buttons--size-l .toggle-button:first-child {
  border-radius: 6px 0 0 6px;
}
.toggle-buttons--size-l .toggle-button:last-child {
  border-radius: 0 6px 6px 0;
}
.toggle-button:not(.toggle-button--active):hover {
  color: var(--dark-color);
}
.toggle-button--active {
  background: var(--main-color);
  color: #FFF;
  pointer-events: none;
}
.toggle-button input[type="radio"] {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  opacity: 0;
  margin: 0;
}
.toggle-button__second-row {
  font-size: 12px;
}
.toggle-tab {
  display: none;
}
.toggle-tab--active {
  display: block;
}
/* end Универсальный toggle */
/* Универсальный switcher */
.switcher {
  user-select: none;
}
.switcher label {
  cursor: pointer;
  line-height: 2em;
  font-size: 18px;
}
.switcher label input[type=checkbox] {
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}
.switcher label .lever {
  display: inline-block;
  position: relative;
  width: 50px;
  height: 28px;
  background-color: #95A6B3;
  border-radius: 53px;
  margin-right: 10px;
  transition: background .3s ease;
  vertical-align: middle;
}
.switcher label input[type=checkbox]:checked + .lever {
  background: var(--main-color);
}
.switcher label .lever::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 23px;
  height: 23px;
  border-radius: 50%;
  left: 2px;
  top: 2px;
  transition: left .3s ease, background .3s ease, transform .1s ease;
  background: #FFF;
  border: .5px solid #E5E5E5;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .1), 0 3px 8px rgba(0, 0, 0, .1);
}
.switcher label input[type=checkbox]:checked + .lever::after {
  left: 24px;
}
.switcher--m label,
.switcher--s label {
  font-size: 16px;
}
.switcher--m label .lever {
  width: 43px;
  height: 24px;
}
.switcher--m label .lever::after {
  width: 19px;
  height: 19px;
}
.switcher--m label input[type=checkbox]:checked + .lever::after {
  left: 21px;
}
.switcher--s label .lever {
  width: 36px;
  height: 20px;
}
.switcher--s label .lever::after {
  width: 15px;
  height: 15px;
}
.switcher--s label input[type=checkbox]:checked + .lever::after {
  left: 18px;
}
/* end Универсальный switcher */
/* Native select */
.native-select__label {
  color: #778998;
  margin-bottom: 10px;
}
.native-select__select {
  display: block;
  font-size: 16px;
  font-family: var(--regular-font), sans-serif;
  color: #232427;
  padding: 13px 40px 13px 20px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 0;
  border: 1px solid #CBD9E2;
  box-shadow: none;
  border-radius: 4px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: #FFF var(--scroll-top) calc(100% - 20px) 50% no-repeat;
  background-size: 10px;
}
.native-select__select::-ms-expand {
  display: none;
}
.native-select__select:hover {
  border-color: #CBD9E2;
}
.native-select__select:focus {
  border-color: #CBD9E2;
  box-shadow: none;
  outline: none;
}
.native-select__select option {
  font-weight: normal;
}
.native-select__select::-moz-placeholder {
  color: #CBD9E2;
  /* Цвет подсказывающего текста */
}
.native-select__select::-webkit-input-placeholder {
  color: #CBD9E2;
}
.native-select__select:-ms-input-placeholder {
  color: #CBD9E2;
}
.native-select__select::-ms-input-placeholder {
  color: #CBD9E2;
}
.native-select__select::placeholder {
  color: #CBD9E2;
}
/* end native select */
/* Buttons */
/* Default size  - M */
/* Default color - primary (orange) */
.base-btn {
  display: inline-block;
  height: 48px;
  padding: 0 25px;
  line-height: 48px;
  background: var(--main-color);
  border: 1px solid var(--main-color);
  border-radius: 6px;
  text-align: center;
  font-family: var(--medium-font), sans-serif;
  font-size: 14px;
  color: #FFF;
  cursor: pointer;
  transition: color .3s, background .3s, border .3s;
  user-select: none;
  position: relative;
}
.base-btn:not(.base-btn--buy):active {
  transform: translateY(1px);
}
.base-btn:hover {
  background-color: var(--dark-color);
  border-color: var(--dark-color);
}
.base-btn:disabled,
.base-btn.disabled {
  background-color: #E2E7EC;
  color: #909EAA;
  border-color: #E2E7EC;
  box-shadow: none;
  cursor: default;
  pointer-events: none;
}
/* Size */
.base-btn--wide {
  width: 100%;
}
.base-btn--size-xl {
  height: 64px;
  line-height: 64px;
  font-size: 18px;
  padding: 0 40px;
  border-radius: 8px;
}
.base-btn--size-l {
  height: 56px;
  line-height: 56px;
  font-size: 16px;
  padding: 0 30px;
  border-radius: 6px;
}
.base-btn--size-l.base-btn--tertiary {
  line-height: 54px;
  padding-right: 65px;
}
.base-btn--size-l.base-btn--tertiary-revers {
  line-height: 54px;
  padding-left: 65px;
}
.base-btn--size-l.base-btn--tertiary::after,
.base-btn--size-l.base-btn--tertiary-revers::before {
  height: 100%;
  width: 65px;
}
.base-btn--size-s {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  padding: 0 25px;
}
.base-btn--size-s.base-btn--tertiary {
  line-height: 38px;
  padding-right: 55px;
}
.base-btn--size-s.base-btn--tertiary-revers {
  line-height: 38px;
  padding-left: 55px;
}
.base-btn--size-s.base-btn--tertiary::after,
.base-btn--size-s.base-btn--tertiary-revers::before {
  height: 36px;
}
.base-btn--size-s.base-btn--buy:last-child {
  padding: 0 13px;
}
.base-btn--size-s.base-btn--buy:last-child > i {
  line-height: 40px;
}
@media (max-width: 424px) {
  .base-btn {
    padding: 0 15px;
  }
  .base-btn--mobile-wide {
    width: 100%;
  }
  .base-btn--mobile-wide + .base-btn--mobile-wide {
    margin-top: 10px;
  }
  .base-btn--size-s {
    padding: 0 15px;
  }
}
.btns-union {
  display: flex;
}
.btns-union > .base-btn + .base-btn {
  border-left: none;
}
.btns-union > .base-btn {
  border-radius: 0;
}
.btns-union > .base-btn:first-child {
  border-radius: 3px 0 0 3px;
  margin-right: 0 !important;
}
.btns-union > .base-btn:last-child {
  border-radius: 0 3px 3px 0;
}
.btns-union > .base-btn:only-child {
  border-radius: 3px;
}
.total__block .btns-union > .base-btn:first-child {
  border-right: 1px solid var(--dark-color);
}
@media (max-width: 767px) {
  .header-search__item-actions .base-btn--buy {
    display: none;
  }
  .header-search__item-actions .base-btn .base-btn--size-s .base-btn--secondary {
    border: none;
  }
}
.base-btn a {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
/* Themes */
.base-btn--secondary {
  border-color: var(--dark-color);
  background-color: transparent;
  color: var(--dark-color);
  box-shadow: unset;
}
.base-btn--secondary:hover {
  background-color: var(--main-color);
  color: white;
}
.base-btn--secondary:disabled,
.base-btn--secondary.disabled {
  background-color: transparent;
  border-color: rgba(144, 158, 170, .3);
}
.base-btn--secondary-white {
  border: 1px solid rgba(144, 158, 170, .3);
  background-color: #FFF;
  color: #232427;
}
.base-btn--secondary-white:hover,
.base-btn--secondary-white.active {
  border-color: var(--main-color);
  color: var(--main-color);
  background-color: #FFF;
}
.base-btn--secondary-white:disabled,
.base-btn--secondary-white.disabled {
  background-color: transparent;
  border-color: rgba(144, 158, 170, .3);
}
.base-btn--tertiary {
  padding-right: 55px;
  line-height: 46px;
  position: relative;
  color: rgba(101, 124, 143, .85);
  line-height: 46px;
  border: 2px solid #BFD2E2;
  background: transparent;
}
.base-btn--tertiary::after {
  content: '';
  display: block;
  width: 55px;
  background: url(../assets/images/default/tertiaryRightArrow.png) center no-repeat;
  position: absolute;
  right: 0;
  top: 0;
}
.base-btn--tertiary-revers {
  padding-left: 55px;
  border: 2px solid #BFD2E2;
  background: transparent;
  color: rgba(101, 124, 143, .85);
  line-height: 46px;
  position: relative;
}
.base-btn--tertiary-revers::before {
  position: absolute;
  left: 20px;
  transform: rotate(180deg);
  font-family: 'icomoon';
  content: '\e906';
}
.base-btn--tertiary:hover,
.base-btn--tertiary-revers:hover {
  background-color: #E2E7EC;
}
.base-btn--with-img {
  border: 1px solid rgba(144, 158, 170, .3);
  height: 72px;
  background: transparent;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  color: #232427;
  line-height: 20px;
  font-size: 16px;
  text-align: left;
  font-family: var(--regular-font);
}
.base-btn--with-img img {
  min-width: 35px;
  max-width: 35px;
  display: block;
  margin-right: 15px;
}
.base-btn--with-img:hover {
  border-color: rgba(244, 102, 42, .3);
  background: transparent;
  color: var(--main-color);
}
.base-btn--buy {
  width: 54px;
}
.base-btn--buy:last-child {
  line-height: 0;
  padding: 0 15px;
}
.base-btn--buy:last-child > i {
  font-size: 18px;
  line-height: 48px;
}
.base-btn--buy-clicked {
  pointer-events: none;
}
.base-btn--secondary.base-btn--buy-clicked {
  background-color: rgba(244, 102, 42, .3);
}
.base-btn--cancel {
  border-color: transparent;
  background-color: transparent;
  color: #7C90A0;
}
.base-btn--cancel:hover {
  border-color: transparent;
  background-color: transparent;
  color: var(--main-color);
}
/* end Buttons */
/* Slider buttons */
.slider-btns {
  display: inline-block;
}
.slider-btn {
  display: inline-block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  font-size: 12px;
  text-align: center;
  border: 1px solid #E1E4E7;
  background: #FFF;
  border-radius: 50%;
  cursor: pointer;
  position: relative;
  transition: background-color .3s;
}
.slider-btn::before {
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  font-family: "icomoon";
  content: "\e900";
}
.slider-btn + .slider-btn {
  margin-left: 10px;
}
.slider-btn_left {
  transform: rotate(90deg);
}
.slider-btn_right {
  transform: rotate(-90deg);
}
.slider-btn:not(.disabled):hover {
  background-color: #E2E7EC;
}
.slider-btn--small {
  width: 28px;
  height: 28px;
  font-size: 10px;
  line-height: 28px;
  font-size: 10px;
}
.slider-btn--small + .slider-btn--small {
  margin-left: 5px;
}
.slider-btns.disabled {
  display: none;
}
.slider-btn.disabled {
  opacity: .4;
  border-color: #909EAA;
  cursor: default;
}
/* end Slider buttons */
/* Slider dots */
.slider-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 1px solid #CBD9E2;
  background: #FFF;
  border-radius: 50%;
}
.slider-dot + .slider-dot {
  margin-left: 10px;
}
.slider-dot:hover {
  background-color: #E2E7EC;
}
.slider-dot.active {
  border-color: var(--main-color);
  background-color: var(--main-color);
}
/* end Slider dots */
/* Base dropdown */
.base-dropdown,
.base-dropdown--sm {
  position: relative;
  cursor: pointer;
}
.base-dropdown--sm {
  font-size: 14px;
}
.base-dropdown__text {
  transition: color .2s;
}
.base-dropdown__text .icon-dropdown {
  margin-left: 5px;
  vertical-align: middle;
  font-size: 10px;
}
.base-dropdown:hover .base-dropdown__text,
.base-dropdown.active .base-dropdown__text,
.base-dropdown--sm:hover .base-dropdown__text,
.base-dropdown--sm.active .base-dropdown__text {
  color: var(--main-color);
}
.base-dropdown__list {
  display: none;
  position: absolute;
  left: -20px;
  background: #FFF;
  box-shadow: 0 5px 30px 3px rgba(155, 178, 190, .33);
  border-radius: 2px;
  z-index: 103;
  margin-top: 5px;
}
.base-dropdown.active .base-dropdown__list,
.base-dropdown--sm.active .base-dropdown__list {
  display: inline-block;
}
.base-dropdown__item {
  padding: 10px 20px;
  display: block;
  transition: color .2s;
  position: relative;
}
.base-dropdown__item:first-of-type {
  padding-top: 20px;
}
.base-dropdown__item:last-of-type {
  padding-bottom: 20px;
}
.base-dropdown__item:hover {
  color: var(--main-color);
}
.base-dropdown__item--line::after {
  content: '';
  display: block;
  position: absolute;
  left: 30px;
  right: 30px;
  height: 1px;
  bottom: 0;
  background: #CBD9E2;
}
.base-dropdown__item--line {
  padding-bottom: 20px;
}
.base-dropdown__item--line + .base-dropdown__item {
  padding-top: 20px;
}
/* end base dropdown */
/* Radiobuttons */
.base-radiobtn {
  cursor: pointer;
}
.base-radiobtn input[type="radio"] {
  display: none;
}
.base-radiobtn__text {
  font-family: var(--medium-font);
  font-size: 14px;
  line-height: 22px;
  display: inline-block;
  position: relative;
  padding-left: 45px;
}
.base-radiobtn__text::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 0;
  background: #FFF;
  border: 1px solid #CBD9E2;
  border-radius: 50%;
  transition: color .3s, border-color .3s;
}
.base-radiobtn:hover .base-radiobtn__text::before {
  color: var(--main-color);
  border-color: var(--main-color);
}
.base-radiobtn input[type="radio"]:checked + .base-radiobtn__text::before {
  background: var(--main-color);
  border-color: var(--main-color);
}
.base-radiobtn input[type="radio"]:checked + .base-radiobtn__text::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #FFF;
  border-radius: 50%;
  position: absolute;
  top: 8px;
  left: 8px;
}
/* end radiobuttons */
/* Checkbox */
.base-checkbox {
  cursor: pointer;
}
.base-checkbox input[type="checkbox"] {
  display: none;
}
.base-checkbox__text {
  font-family: var(--regular-font);
  font-size: 14px;
  display: inline-block;
  position: relative;
  padding-left: 35px;
  user-select: none;
}
.base-checkbox__text::before {
  content: '';
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #FFF;
  border: 1px solid #CBD9E2;
  border-radius: 4px;
  transition: border-color .3s, background .3s;
}
.base-checkbox:hover .base-checkbox__text::before {
  border-color: var(--main-color);
}
.base-checkbox input[type="checkbox"][checked="true"] ~ .base-checkbox__text::before,
.base-checkbox input[type="checkbox"]:checked ~ .base-checkbox__text::before {
  background-color: var(--main-color);
  border-color: var(--main-color);
  font-family: 'icomoon';
  content: '\e901';
  font-size: 12px;
  color: #FFF;
}
/* end checkbox */
/* Base input */
.base-label {
  display: block;
  color: #95A6B3;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 20px;
  cursor: default;
}
.base-label--with-link {
  display: flex;
  justify-content: space-between;
}
.base-input {
  height: 56px;
  width: 100%;
  border: 1px solid #E1E4E7;
  border-radius: 6px;
  background: #FFF;
  padding: 0 20px;
  font-size: 16px;
  font-family: var(--regular-font), sans-serif;
  outline: none;
}
.base-textarea {
  width: 100%;
  min-height: 130px;
  resize: vertical;
  border: 1px solid #E1E4E7;
  border-radius: 4px;
  background: #FFF;
  padding: 10px 20px;
  font-size: 16px;
  font-family: var(--regular-font), sans-serif;
  outline: none;
}
.base-input::placeholder,
.base-input::-moz-placeholder,
.base-input::-webkit-input-placeholder,
.base-input::-ms-input-placeholder,
.base-textarea::placeholder,
.base-textarea::-moz-placeholder,
.base-textarea::-webkit-input-placeholder,
.base-textarea::-ms-input-placeholder {
  color: #BEC8D0;
}
.base-input:focus,
.base-textarea:focus {
  border-color: var(--second-main-color);
  box-shadow: 0 0 0 1px var(--second-main-color);
}
.base-input.validation-error,
.base-textarea.validation-error {
  border-color: #F42A2A;
}
.base-input:disabled,
.base-textarea:disabled {
  background: #F4F5F7 url(../assets/images/icons/disabled-input.svg) right 25px center no-repeat;
  border: 1px solid #E1E4E7;
  color: #95A6B3;
  pointer-events: none;
}


.online_record .base-input:disabled{
  background-image: none;
}

/* end Base-input */
/* Base-links */
.base-link {
  display: inline;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--medium-font), sans-serif;
  font-size: 14px;
  transition: color .2s;
  cursor: pointer;
}
.base-link:hover {
  color: var(--main-color);
}
.base-link--orange {
  color: var(--main-color);
}
.base-link--grey {
  color: #7C90A0;
}
.base-link--orange:hover,
.base-link--grey:hover {
  color: var(--dark-color);
}
/* Base-filedrop */
.base-filedrop2 {
  width: 100%;
  min-height: 130px;
  resize: vertical;
  border: 2px dotted #E1E4E7;
  border-radius: 4px;
  background: #FFF;
  padding: 10px 20px;
  font-size: 16px;
  font-family: var(--regular-font), sans-serif;
  outline: none;
}
/* Base-filedrop END */
.password-eye {
  position: absolute;
  right: 60px;
  top: 22px;
  z-index: 2;
  display: block;
  width: 20px;
  height: 13px;
  background: url('../assets/images/icons/password_eye.svg') center / cover no-repeat;
  cursor: pointer;
}
.password-eye:focus,
.password-eye:active {
  top: 23px;
}
.base-label ~ .password-eye {
  top: 57px;
}
.base-label ~ .password-eye:focus,
.base-label ~ .password-eye:active {
  top: 58px;
}
@media (max-width: 424px) {
  .password-eye {
    right: 30px;
  }
}
/* List with - */
.hyphen-list {
  line-height: 24px;
  color: #909EAA;
  list-style: none;
}
.hyphen-list > li {
  padding-left: 20px;
  margin-bottom: 10px;
  position: relative;
}
.hyphen-list > li::before {
  content: '';
  display: block;
  width: 6px;
  height: 1px;
  background: rgba(144, 158, 170, .6);
  position: absolute;
  left: 0;
  top: 11px;
}
/* List with checkmark */
.checklist {
  list-style: url("../assets/images/icons/check.svg");
}
.blue-checklist {
  list-style: url("../assets/images/icons/blue_check.svg");
}
@media (max-width: 991px) {
  .checklist {
    padding-left: 25px;
  }
}
/* List with dots */
.dot-list {
  margin-left: 24px;
}
.dot-list li {
  padding-left: 28px;
  position: relative;
}
.dot-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  background-color: var(--second-main-color);
  border-radius: 50%;
}
.dot-list--grey li::before {
  background-color: #BEC8D0;
}
.dot-list li + li {
  margin-top: 15px;
}
/* Tooltip */
.base-tooltip {
  padding: 3px 7px;
  border-radius: 17px;
  font-family: var(--bold-font), sans-serif;
  font-size: 10px;
}
.base-tooltip__gray {
  background: #EDF2F5;
  color: #909EAA;
}
/* tooltip end */
/* New Loader */
.loader {
  display: flex;
  justify-content: space-between;
  width: 56px;
  height: 14px;
  align-items: center;
  padding: 0 3px;
}
.loader-wrapper {
  height: 48px;
  padding-top: 17px;
  margin: auto;
}
.loader-wrapper--size-l {
  height: 56px;
  padding-top: 21px;
}
.loader-wrapper--card {
  height: 20px;
  padding-top: 3px;
}
.loader-wrapper--page {
  display: flex;
  justify-content: space-around;
  margin: 45px 0;
}
.loader__item {
  display: inline-block;
  background-color: var(--main-color);
  opacity: .2;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  animation: loading 1s ease-in-out infinite;
}
.loader__item:nth-child(1) {
  animation-delay: 0s;
}
.loader__item:nth-child(2) {
  animation-delay: .2s;
}
.loader__item:nth-child(3) {
  animation-delay: .3s;
}
.loader__item:nth-child(4) {
  animation-delay: .4s;
}
@media (max-width: 991px){
  .loader.mobile{
    width: 112px;
  }
  .loader-wrapper--page.mobile {
    justify-content: center;
    align-items: center;
    height: 90vh;
    margin: 0;
    padding: 0;
  }
  .loader__item.mobile {
    width: 16px !important;
    height: 16px !important;
  }
}
@keyframes loading {
  0% {
    transform: scale(1);
    opacity: .5;
  }
  20% {
    transform: scale(1.75);
    opacity: 1;
  }
  40% {
    transform: scale(1);
    opacity: .5;
  }
}
/* end loader */
.base-filedrop input[type=file] {
  outline: 0;
  opacity: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
}
.base-filedrop {
  width: 100%;
  height: 130px;
  border: 2px dashed #E1E4E7;
  border-radius: 4px;
  resize: vertical;
  background: #FFF;
  display: flex;
  flex-direction: column;
  transition: border 300ms ease;
  cursor: pointer;
  justify-content: center;
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-family: var(--regular-font), sans-serif;
  outline: none;
  position: relative;
}
.base-filedrop.highlight {
  transition: 200ms color;
  border: 2px dashed var(--main-color);
}
.base-filedrop .base-filedrop__empty,
.base-filedrop .base-filedrop__file {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.base-filedrop .base-filedrop__file {
  display: none;
}
.base-filedrop .base-filedrop__title {
  color: var(--main-color);
  transition: 200ms color;
}
.base-filedrop .base-filedrop__sub-title {
  color: #909EAA;
  transition: 200ms color;
}
.base-filedrop .base-filedrop__file {
  display: none;
}
.base-filedrop:hover {
  border: 2px dashed var(--main-color);
}
.base-filedrop:hover .base-filedrop__title {
  color: var(--main-color);
}
.base-filedrop__files .base-filedrop__file {
  font-family: var(--regular-font), sans-serif;
  font-size: 14px;
  line-height: 20px;
  display: flex;
  align-items: center;
  margin: 5px 0;
}
.base-filedrop__files .base-filedrop__file .base-filedrop__file-name {
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.base-filedrop__file i {
  font-size: 12px;
  color: #909EAA;
  margin-left: 8px;
  cursor: pointer;
  transition: color .3s;
}
.base-filedrop__file i:hover {
  color: var(--main-color);
}
.base-filedrop input[type=file] {
  cursor: pointer;
}
.base-selector {
  display: inline-flex;
  margin-right: 15px;
  cursor: pointer;
}
.base-selector input[type="checkbox"] {
  display: none;
}
.base-selector span {
  background-color: #FFF;
  border: 1px solid #E1E4E7;
  border-radius: 3px;
  padding: 10px 20px;
  transition: background-color .3s, border .3s;
  text-align: center;
  font-family: var(--medium-font);
  font-size: 14px;
  line-height: 20px;
}
.base-selector:hover span {
  background-color: rgba(244, 102, 42, .3);
}
.base-selector input:checked + span {
  background-color: var(--main-color);
  border-color: var(--main-color);
  color: #FFF;
}
.scroll-top {
  display: none;
  width: 17px;
  height: 12px;
  padding: 20px;
  position: fixed;
  bottom: 60px;
  left: 30px;
  z-index: 180;
  border: 1px solid #E1E4E7;
  border-radius: 6px;
  background: #FFF var(--scroll-top) center no-repeat;
  transform: rotate(180deg);
  transition: border .3s, top .4s ease;
  cursor: pointer;
}
body.cecutient .scroll-top{
  background: #FFF url(../assets/images/icons/scroll_top_cecutient.svg) center no-repeat;
  border: 1px solid #000;
  font-size: 18px;
}
body.up .scroll-top {
  bottom: 60px;
}
.scroll-top:hover {
  border-color: var(--main-color);
}
@media (max-width: 424px) {
  .scroll-top {
    display: none;
  }
}
.push {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 101;
  transform: translateY(200%);
  transition: transform .5s cubic-bezier(.175, .885, .32, 1.275);
}
.push.show {
  transform: translateY(0);
}
.push__card {
  background: #FFF;
  border: 1px solid #E1E4E7;
  box-shadow: 0 10px 25px rgba(184, 202, 212, .33);
  border-radius: 6px;
  padding: 25px 60px 25px 35px;
  margin: 0 -10px;
  position: relative;
}
.push__close {
  position: absolute;
  top: 9px;
  right: 12px;
  width: 20px;
  height: 20px;
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  cursor: pointer;
  transition: color .2s;
}
.push__close:hover {
  color: var(--main-color);
}
.push__inner {
  max-width: 600px;
  font-size: 18px;
}
.push__title {
  font-family: var(--bold-font);
}
.push__text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.push__action {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1200px) {
  .push__card {
    margin: 0;
  }
}
@media (max-width: 991px) {
  .push__card {
    padding: 25px 25px 90px;
  }
  .push__inner {
    max-width: initial;
    font-size: 16px;
  }
  .push__action {
    bottom: 20px;
    left: 25px;
    transform: initial;
    top: initial;
  }
}
.IE-alert .push__inner {
  max-width: 100%;
}
.IE-alert .push__text {
  white-space: normal;
}
.privacy-text {
  margin: 40px 0 20px;
  font-family: var(--regular-font);
  font-size: 14px;
  line-height: 20px;
}
.online_record .base-label{
  margin-bottom: 8px;
}
.custom-dropdown {
  position: relative;
  cursor: pointer;
}

.custom-dropdown__selected {
  min-height: 56px;
  padding: 0 40px 0 20px;
  border: 1px solid #E1E4E7;
  border-radius: 6px;
  background: #fff;
  display: flex;
  align-items: center;
  transition: border-color 0.2s;
  position: relative;
}

.custom-dropdown__selected .custom-dropdown__name {
  font-size: 16px;
  font-family: var(--regular-font);
  color: #232427;
}

.is-open .custom-dropdown__selected {
  border: 2px solid var(--main-color)
}


.custom-dropdown__info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.custom-dropdown__name {
  font-size: 16px;
  font-family: var(--medium-font);
  color: #232427;
}

.custom-dropdown__item--selected .custom-dropdown__name {
  color: var(--main-color);
}

.custom-dropdown__badge {
  font-size: 12px;
  font-family: var(--regular-font);
  color: white;
  background: #7C90A0;
  padding: 2px 8px;
  border-radius: 16px;
  margin-right: 8px;
}

.custom-dropdown__age {
  font-size: 14px;
  font-family: var(--regular-font);
  color: #95A6B3;
}

.custom-dropdown__placeholder {
  font-size: 14px;
  font-family: var(--regular-font);
  color: #BEC8D0;
}

.custom-dropdown__arrow {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2395A6B3' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.2s;
}

.is-open .custom-dropdown__arrow {
  transform: translateY(-50%) rotate(180deg);
}

.custom-dropdown__list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 5px;
  background: #fff;
  border: 1px solid #E1E4E7;
  max-height: 270px;
  border-radius: 6px;
  overflow-y: auto;
  z-index: 100;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.custom-dropdown__list::-webkit-scrollbar {
  display: none;
}

.custom-dropdown__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  transition: background-color 0.2s;
}

.custom-dropdown__item:hover {
  background-color: #F8F9FA;
}

.custom-dropdown__add {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: #7C90A0;
  font-size: 14px;
  font-family: var(--medium-font);
  transition: background-color 0.2s;
}

.custom-dropdown__add:hover {
  background-color: #F8F9FA;
}

.custom-dropdown__add-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}
.accordion {
  list-style: none;
  margin-bottom: 30px;
}
.accordion#faq-accordion {
  margin-bottom: 130px;
}
.accordion > li {
  border-bottom: 1px solid #EDF2F5;
  cursor: pointer;
}
.accordion-header {
  position: relative;
  padding: 30px 50px 30px 0;
  font-size: 20px;
  cursor: pointer;
  font-family: var(--medium-font);
}
.accordion-header--with-image {
  display: flex;
  align-items: center;
}
.accordion-header--with-image img {
  max-width: 80px;
  max-height: 80px;
  margin-right: 30px;
  width: 100%;
}
.accordion .plus-minus-toggle {
  position: absolute;
  top: 50%;
  transform: translateY(-20%);
  right: 10px;
}
.accordion li.active > .accordion-header .plus-minus-toggle::before,
.accordion li.active > .accordion-header .plus-minus-toggle::after {
  transform: none;
}
.accordion-body {
  position: relative;
  display: none;
}
.accordion-body tr {
  cursor: initial;
}
.accordion-body tr:hover {
  border-radius: unset;
}
.accordion-body__text {
  padding-bottom: 2.5em;
  color: #3F4D5A;
}
.accordion-body__text a {
  color: var(--main-color);
}
.accordion-body__text a:hover {
  text-decoration: underline;
}
@media (max-width: 424px) {
  .accordion-header--with-image img {
    display: none;
  }
}
/* Tooltip */
.tooltip-wrap {
  position: relative;
  display: inline-block;
}
.tooltip-link {
  color: var(--main-color);
  text-decoration: underline dashed;
  text-underline-position: under;
  transition: border .2s;
  cursor: pointer;
  margin-bottom: 15px;
  display: block;
}
.tooltip-wrap:hover .tooltip-link {
  border-bottom-color: transparent;
}
.tooltip-bottom {
  position: absolute;
  padding: 40px;
  background: #FFF;
  z-index: 1;
  box-shadow: 0 20px 20px rgba(132, 158, 173, .35);
  border-radius: 6px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-15px);
  animation: tooltip-bottom--out .3s ease-out forwards;
  display: none;
}
@keyframes tooltip-bottom--in {
  from {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
}
.tooltip-wrap:hover .tooltip-bottom {
  animation: tooltip-bottom--in .3s ease-out forwards;
  display: flex;
}
@keyframes tooltip-bottom--out {
  from {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }
  to {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-15px);
  }
}
.tooltip__title {
  font-family: var(--bold-font);
  font-size: 22px;
  line-height: 26px;
  margin-bottom: 20px;
}
.tooltip__text:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .tooltip__title {
    font-size: 18px;
  }
  .tooltip-link {
    display: inline;
  }
}
.phone-number {
  white-space: nowrap;
  hyphens: none;
}
