/* stylelint-disable */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");
:root {
  --font-family-primary: "Montserrat", sans-serif;
  --font-family-secondary: "Montserrat", sans-serif;
  --font-size-primary:16px;
  --font-size-secondary:12px;
  --section-padding:40px;
  --color-primary:#E02F30;
  --color-white:#fff;
  --color-black:#222;
  --color-grey:#666;
  --color-grey-light:#999;
  --background-color-primary:var(--color-primary);
  --background-color-secondary:#EBEBEB;
  --background-color-accent:#333333;
  --border-color-primary:#F0EEEB;
  --border-radius-primary:0px;
  --border-radius-secondary:0px;
  /* form */
  --input-height:51px;
  --input-padding:20px;
  --input-placeholder-color:var(--color-grey-light);
  --input-border-color:var(--border-color-primary);
  --input-border-color-filled:var(--color-primary);
  --input-border-color-focus:var(--color-primary);
  --input-border-color-error:#E63434;
  --input-background-color-error:#fff7f4;
  --input-background-color-disabled:var(--background-color-primary);
  --input-border-radius:0;
  --input-font-size:16px;
  --checkbox-size:20px;
  --checkbox-border-radius:0;
  --checkbox-border-color:#DDDDDD;
  --checkbox-border-color-checked:var(--color-primary);
  --checkbox-border-color-disabled:var(--border-color-primary);
  --checkbox-background-color-disabled:var(--background-color-primary);
  --radio-size:20px;
  --radio-border-color:#E3DED6;
  --radio-border-color-checked:var(--color-primary);
  --radio-checked-size:8px;
  --radio-border-color-disabled:var(--border-color-primary);
  --radio-background-color-disabled:var(--background-color-primary);
  --select-phone-background-color:#FAF8F7;
  /* btn */
  --btn-border-radius:0;
  --btn-background-color:#E02F30;
  --btn-background-color-hover:#C31F1F;
  --btn-color:#fff;
  --btn-padding:60px;
  --btn-font-size:16px;
  --btn-height:51px;
}

@media (max-width: 767.98px) {
  :root {
    --section-padding:20px;
  }
}
.row-container {
  overflow: hidden;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

b {
  font-weight: bold;
}

::-webkit-input-placeholder {
  color: var(--input-placeholder-color);
  opacity: 1;
}

::-moz-placeholder {
  color: var(--input-placeholder-color);
  opacity: 1;
}

:-ms-input-placeholder {
  color: var(--input-placeholder-color);
  opacity: 1;
}

::-ms-input-placeholder {
  color: var(--input-placeholder-color);
  opacity: 1;
}

::placeholder {
  color: var(--input-placeholder-color);
  opacity: 1;
}

body {
  font-family: var(--font-family-primary, sans-serif);
  font-variant-numeric: lining-nums;
  font-size: var(--font-size-primary);
  font-weight: 300;
  color: var(--color-black);
  -webkit-text-size-adjust: 100%;
  background-color: #F6F6F6;
}

.page {
  height: 100%;
}

.page__body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.page__content {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.page__section {
  padding: 60px 0;
  overflow: hidden;
}
.page__section:first-child {
  border-top: 0;
}

.main + .page__section {
  padding-top: 90px;
}

.page__section--static {
  padding-top: 10px;
}

.icon-dolyami {
  display: inline-block;
  vertical-align: middle;
  width: 62px;
  height: 13px;
  background: url(/img/dolyami-black.svg) 50% 50%/auto 100%;
}

.page__section--dark {
  background: var(--background-color-accent);
}
.page__section--dark .title {
  color: var(--color-white);
}

.page__section--light {
  background: #fff;
}

.page__section--grey {
  background: #FCFCF7;
}

.page__section--red {
  background: #E02F30;
}

p {
  line-height: 1.5;
}

.circle-count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 12px;
  height: 20px;
  min-width: 20px;
  border-radius: 10px;
  background: #13991C;
  text-align: center;
  font-weight: bold;
  color: #fff;
  padding: 0 6px;
}

@media screen and (min-width: 1400px) {
  .container {
    min-width: 1370px;
  }
}
.page__content--main {
  padding-top: 0px;
}

.page__footer {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.scrollable {
  overflow: auto;
}
.scrollable::-webkit-scrollbar {
  display: none;
}

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

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

.as-link {
  color: inherit;
  cursor: pointer;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  text-decoration: underline;
}
.as-link:hover {
  text-decoration: none;
}

/* title */
.title {
  font-family: var(--font-family-secondary);
  margin-top: 0;
  font-size: 30px;
  line-height: 1.5;
  margin-bottom: 30px;
  font-weight: bold;
}
.title span {
  color: var(--color-primary);
}

.title-container {
  overflow: hidden;
  margin-bottom: 30px;
}
.title-container:last-child {
  margin-bottom: 0;
}
.title-container .title {
  margin-bottom: 0;
}

.title:first-child {
  margin-top: 0;
}

.title--center {
  text-align: center;
}

@media (max-width: 991.98px) {
  .title {
    font-size: 30px;
  }
}
@media (max-width: 767.98px) {
  .title {
    font-size: 24px;
  }
}
.box {
  margin-bottom: 60px;
  line-height: 1.5;
}
.box:last-child {
  margin-bottom: 0;
}
.box__title {
  font-family: var(--font-family-secondary);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 30px;
}
.box .title-container {
  margin-bottom: 30px;
}
.box .title-container .box__title {
  margin: 0;
}
.box .title-container .btn--action {
  font-size: 14px;
}
.box--grey {
  border-radius: 20px;
  background: #f7f9f8;
  padding: 30px;
}
.box p {
  line-height: 1.5;
  margin-bottom: 22px;
  color: var(--color-grey);
}
.box p:last-child {
  margin-bottom: 0;
}

.file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.file__icon {
  height: 60px;
  margin-right: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.file__icon--pdf {
  width: 53px;
  background: url(/img/file-pdf.svg) no-repeat 50% 50%/auto 100%;
}
.file__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.file__name {
  line-height: 1.5;
  font-weight: 500;
}
.file__info {
  font-size: 14px;
  margin-top: 5px;
  color: var(--color-grey-light);
}

.grid {
  line-height: 1.375;
}
.grid__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.grid__row:last-child {
  margin-bottom: 0;
}
.grid__label {
  color: #666;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-right: 30px;
}
.grid__value {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 30px;
}

.company-grid .grid__label {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 190px;
  flex: 0 0 190px;
}

@media (max-width: 767.98px) {
  .company-grid .grid__label {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding: 0;
  }
  .company-grid .grid__value {
    padding: 0;
  }
}
.row-padding-2_5 {
  margin: -2.5px;
}
.row-padding-2_5 > .col, .row-padding-2_5 > [class*=col-] {
  padding: 2.5px;
}

.row-padding-5 {
  margin: -5px;
}
.row-padding-5 > .col, .row-padding-5 > [class*=col-] {
  padding: 5px;
}

.row-padding-7_5 {
  margin: -7.5px;
}
.row-padding-7_5 > .col, .row-padding-7_5 > [class*=col-] {
  padding: 7.5px;
}

.row-padding-5-10 {
  margin: -5px -10px;
}
.row-padding-5-10 > .col, .row-padding-5-10 > [class*=col-] {
  padding: 5px 10px;
}

.row-padding-5-15 {
  margin: -5px -15px;
}
.row-padding-5-15 > .col, .row-padding-5-15 > [class*=col-] {
  padding: 5px 15px;
}

.row-padding-7_5-15 {
  margin: -7.5px -15px;
}
.row-padding-7_5-15 > .col, .row-padding-7_5-15 > [class*=col-] {
  padding: 7.5px 15px;
}

.row-padding-10-15 {
  margin: -10px -15px;
}
.row-padding-10-15 > .col, .row-padding-10-15 > [class*=col-] {
  padding: 10px 15px;
}

.row-padding-10 {
  margin: -10px;
}
.row-padding-10 > .col, .row-padding-10 > [class*=col-] {
  padding: 10px;
}

.row-padding-10-20 {
  margin: -10px -20px;
}
.row-padding-10-20 > .col, .row-padding-10-20 > [class*=col-] {
  padding: 10px 20px;
}

.row-padding-15 {
  margin: -15px;
}
.row-padding-15 > .col, .row-padding-15 > [class*=col-] {
  padding: 15px;
}

.row-padding-20 {
  margin: -20px;
}
.row-padding-20 > .col, .row-padding-20 > [class*=col-] {
  padding: 20px;
}

.row-padding-20-30 {
  margin: -20px -30px;
}
.row-padding-20-30 > .col, .row-padding-20-30 > [class*=col-] {
  padding: 20px 30px;
}

.row-padding-30 {
  margin: -30px;
}
.row-padding-30 > .col, .row-padding-30 > [class*=col-] {
  padding: 30px;
}

.row-padding-10-30 {
  margin: -10px -30px;
}
.row-padding-10-30 > .col, .row-padding-10-30 > [class*=col-] {
  padding: 10px 30px;
}

.row-padding-15-30 {
  margin: -15px -30px;
}
.row-padding-15-30 > .col, .row-padding-15-30 > [class*=col-] {
  padding: 15px 30px;
}

.row-padding-20-15 {
  margin: -20px -15px;
}
.row-padding-20-15 > .col, .row-padding-20-15 > [class*=col-] {
  padding: 20px 15px;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.tippy-dropdown-theme {
  -webkit-box-shadow: 0px -10px 30px -5px rgba(0, 0, 0, 0.1), 0px -3px 10px -5px rgba(0, 0, 0, 0.02);
  box-shadow: 0px -10px 30px -5px rgba(0, 0, 0, 0.1), 0px -3px 10px -5px rgba(0, 0, 0, 0.02);
}
.tippy-popper[x-placement^=bottom] .tippy-tooltip.tippy-dropdown-theme {
  -webkit-box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.1), 0px 3px 10px -5px rgba(0, 0, 0, 0.02);
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.1), 0px 3px 10px -5px rgba(0, 0, 0, 0.02);
}

.tippy-tooltip {
  color: inherit !important;
  font-size: inherit !important;
}
.tippy-tooltip.tippy-dropdown-theme {
  background: #fff;
  border-radius: 20px;
  padding: 15px;
}
.tippy-tooltip.tippy-dropdown-theme .tippy-content {
  padding: 0;
  border-radius: 0;
}

.tippy-popper[x-placement^=top] .tippy-tooltip.booking-theme {
  -webkit-box-shadow: 0px -10px 30px -5px rgba(0, 0, 0, 0.1), 0px -3px 10px -5px rgba(0, 0, 0, 0.02);
  box-shadow: 0px -10px 30px -5px rgba(0, 0, 0, 0.1), 0px -3px 10px -5px rgba(0, 0, 0, 0.02);
}

.tippy-popper[x-placement^=bottom] .tippy-tooltip.booking-theme {
  -webkit-box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.1), 0px 3px 10px -5px rgba(0, 0, 0, 0.02);
  box-shadow: 0px 10px 30px -5px rgba(0, 0, 0, 0.1), 0px 3px 10px -5px rgba(0, 0, 0, 0.02);
}

.tippy-tooltip.booking-theme {
  background: #fff;
  border-radius: 20px;
  font-size: 14px !important;
  line-height: 1.5;
  padding: 20px;
}

.tippy-tooltip.booking-theme .tippy-content {
  padding: 0;
  border-radius: 0;
}

.tippy-select {
  overflow: auto;
}
.tippy-select::-webkit-scrollbar {
  width: 3px;
}
.tippy-select::-webkit-scrollbar-track {
  background: #eeeeee;
  border-radius: 2px;
}
.tippy-select::-webkit-scrollbar-thumb {
  background: #d8d8d8;
  border-radius: 2px;
}
.tippy-select::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.tippy-select.--scrollable .item, .tippy-select.--scrollable .menu__item {
  margin-right: 15px;
}
.tippy-select.--scrollable > .checkbox-list, .tippy-select.--scrollable > .radio-list {
  margin-right: 15px;
}
.tippy-select .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
  border-radius: 13px;
  padding: 13px 15px;
}
.tippy-select .item input {
  display: none;
}
.tippy-select .item:hover {
  background: #f6f6f6;
}
.tippy-select .item:last-child {
  margin-bottom: 0;
}
.tippy-select .item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.tippy-select .item__content input {
  display: none;
}
.tippy-select .item__name {
  font-size: 14px;
}
.tippy-select .item__code {
  color: #999;
  font-size: 14px;
}
.tippy-select .item .select-phone__flag {
  margin-right: 10px;
}
.tippy-select .item__description {
  margin-top: 5px;
  color: #999;
  font-size: 12px;
  width: 100%;
}
.tippy-select .checkbox-item {
  padding: 0;
  min-height: unset;
}
.tippy-select .checkbox-item .checkbox {
  margin-right: 10px;
}
.tippy-select .radio-item .radio {
  margin-right: 10px;
}
.tippy-select .airdatepicker {
  width: 100%;
  border-radius: 13px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.tippy-select .airdatepicker--cell.-selected- {
  background: #518e2b;
}
.tippy-select .airdatepicker--cell.-in-range- {
  background: #f5f8f3;
}
.tippy-select .airdatepicker--cell.-range-to- {
  border-color: #518e2b;
  background: #f5f8f3;
}
.tippy-select .airdatepicker--cell.-range-from- {
  border-color: #518e2b;
  background: #f5f8f3;
}
.tippy-select .airdatepicker--cell.-range-to-.-selected-,
.tippy-select .airdatepicker--cell.-range-from-.-selected- {
  background: #518e2b;
}
.tippy-select .nothing, .tippy-select .tippy-select-empty {
  font-size: 14px;
}

.tip-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 30px;
  border-radius: 20px;
  background: #f2f7ef;
}
.tip-box__icon {
  width: 40px;
  height: 40px;
  background: url(/img/alert.svg) no-repeat 50% 50%/100% auto;
  margin-right: 30px;
}
.tip-box__content {
  padding-top: 8px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.tip-box p:first-child {
  margin-top: 0;
}

@media (max-width: 575.98px) {
  .tip-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .tip-box__content {
    padding-top: 16px;
  }
}
.tippy-content .dropdown {
  display: block;
  position: static;
  visibility: visible;
  opacity: 1;
  margin-top: 0;
}

.tippy-tooltip.dropdown-theme {
  padding: 0;
  background: none;
  top: 0 !important;
}
.tippy-tooltip.dropdown-theme .tippy-content {
  padding: 0 !important;
}

.tippy-tooltip[data-animation=shift-toward-subtle][data-placement^=top][data-state=hidden] {
  -webkit-transform: translateY(-15px);
  -ms-transform: translateY(-15px);
  transform: translateY(-15px);
}

.tippy-tooltip[data-animation=shift-toward-subtle][data-placement^=bottom][data-state=hidden] {
  -webkit-transform: translateY(15px);
  -ms-transform: translateY(15px);
  transform: translateY(15px);
}

.tippy-tooltip[data-animation=shift-toward-subtle][data-placement^=left][data-state=hidden] {
  -webkit-transform: translateX(-15px);
  -ms-transform: translateX(-15px);
  transform: translateX(-15px);
}

.tippy-tooltip[data-animation=shift-toward-subtle][data-placement^=right][data-state=hidden] {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
}

.tippy-tooltip[data-animation=shift-toward-subtle][data-state=hidden] {
  opacity: 0;
}

/*.tippy-tooltip .dropdown {
  transform:translate3d(0,0,0);
}*/
.dropdown-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.dropdown-container::after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  background: url(/img/head-dark-arrow.svg);
  margin-left: 7px;
}
.dropdown-container--no-arrow::after {
  display: none;
}

.page__header--transparent .dropdown-container::after {
  background: url(/img/head-white-arrow.svg);
}

.dropdown {
  cursor: auto;
  position: absolute;
  right: 0;
  z-index: 1;
  top: 100%;
  margin-top: 10px;
  background: #fff;
  border-radius: 0;
  padding: 20px;
  white-space: nowrap;
  -webkit-box-shadow: 0px 10px 30px 5px rgba(0, 0, 0, 0.1), 0px 3px 10px 5px rgba(0, 0, 0, 0.02);
  box-shadow: 0px 10px 30px 5px rgba(0, 0, 0, 0.1), 0px 3px 10px 5px rgba(0, 0, 0, 0.02);
  visibility: hidden;
  opacity: 0;
  -webkit-transform: translate3d(0, 15px, 0);
  transform: translate3d(0, 15px, 0);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.menu__item .dropdown {
  margin-top: 15px;
}

.dropdown--open {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  opacity: 1;
  visibility: visible;
}

.breadcrumbs {
  --font-size:12px;
  --color-active:var(--color-primary);
  --color-inactive:var(--color-grey-light);
  --color-sep:var(--color-grey-light);
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: var(--font-size);
  padding-left: 0.75rem;
  margin-left: -0.75rem;
  padding-right: 0.75rem;
  margin-right: -0.75rem;
}
.breadcrumbs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.breadcrumbs__item {
  line-height: 1.5;
  color: var(--color-inactive);
  white-space: nowrap;
}
.breadcrumbs__item a {
  color: var(--color-active);
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  text-decoration: none;
}
.breadcrumbs__item a:hover {
  text-decoration: underline;
}
.breadcrumbs__sep {
  margin: 0 15px;
  color: var(--color-sep);
  font-weight: bold;
}
.breadcrumbs__sep:after {
  content: "";
  display: block;
  width: 8px;
  height: 7px;
  background: url(/img/breadcrumbs.svg) no-repeat 50% 50%/100% 100%;
}

.breadcrumbs--scroll::-webkit-scrollbar {
  display: none;
}

.breadcrumbs--scroll {
  overflow: auto;
}
.breadcrumbs--scroll .breadcrumbs__item:last-child {
  padding-right: 0.75rem;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.social__item:last-child {
  margin-right: 0 !important;
}

.social__item {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  overflow: hidden;
  margin-right: 10px;
  background: no-repeat 50% 50%/100% auto;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  cursor: pointer;
}
.social__item:hover {
  -ms-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
.social__item--vk {
  background-image: url(/img/footer-vk.svg);
}
.social__item--viber {
  background-image: url(/img/footer-viber.svg);
}
.social__item--ok {
  background-image: url(/img/odnoklassniki.svg);
}
.social__item--google {
  background-image: url(/img/color-google.svg);
}
.social__item--mailru {
  background-image: url(/img/color-mailru.svg);
}
.social__item--yandex {
  background-image: url(/img/color-yandex.svg);
}
.social__item--telegram {
  background-image: url(/img/telegram.svg);
}
.social__item--whatsapp {
  background-image: url(/img/whatsapp.svg);
}
.social__item--youtube {
  background-image: url(/img/footer-youtube.svg);
}

.contact-social .social__item {
  width: 24px;
  height: 24px;
  margin-right: 15px;
}

.input-social .social__item {
  width: 24px;
  height: 24px;
}

.alert-message {
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 30px;
}
.alert-message--success {
  background: #cceab0;
  color: #2f530f;
}

.form__container {
  max-width: 655px;
  margin: 0 auto;
  padding: 30px 0;
}

.form__container:first-child {
  padding-top: 0;
}

.form__container:last-child {
  padding-bottom: 0;
}

.form__info {
  background: #F7F9F8;
  padding: 20px;
  border-radius: 5px;
  font-size: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 30px;
}
.form__info .icon {
  margin-right: 10px;
  width: 13px;
  height: 13px;
}

.form-group--short {
  max-width: 430px;
}
.form-group .control-label {
  display: block;
  color: var(--color-grey-light);
  font-size: 12px;
  line-height: 15px;
  margin-bottom: 10px;
  margin-left: 10px;
  position: relative;
}
.form-group .hint-block {
  margin-top: 5px;
  font-size: 12px;
  line-height: 1.5;
  color: #999;
  padding: 15px;
  background: #FAF8F7;
  border-radius: 9px;
}
.form-group.required {
  /*> .control-label, .form-box__label {
    &::after {
      content:'';
      display:inline-block;
      width: 4px;
      height: 4px;
      background:url(/img/required-field.svg) no-repeat 50% 50% / auto 100%;
      margin-left:3px;
      margin-bottom:9px;
    }
  }*/
}
.form-group input[type=text],
.form-group input[type=password],
.form-group input[type=phone],
.form-group input[type=email],
.form-group select,
.form-group textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid var(--input-border-color);
  padding: 0 var(--input-padding);
  border-radius: var(--input-border-radius);
  outline: 0;
  font-family: var(--font-family-primary);
  font-size: var(--input-font-size);
  width: 100%;
}
.form-group textarea {
  height: auto;
  padding-top: 15px;
  padding-bottom: 15px;
  vertical-align: top;
  width: 100%;
  font-size: var(--input-font-size);
  line-height: 1.5;
  max-width: 100%;
  min-width: 100%;
}
.form-group select {
  font-size: var(--input-font-size);
}

button[type=submit] {
  cursor: pointer;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: var(--input-placeholder-color);
}

input::placeholder,
input::-moz-placeholder,
input::-webkit-input-placeholder,
textarea::placeholder,
textarea::-moz-placeholder,
textarea::-webkit-input-placeholder {
  color: var(--input-placeholder-color);
}

input,
textarea {
  font-variant-numeric: lining-nums;
}

input:autofill,
input:-webkit-autofill {
  background: none;
}

.form-group.has-error .help-block {
  margin-top: 10px;
  color: var(--input-border-color-error);
  font-size: 12px;
}

.form-group.has-error input[type=text],
.form-group.has-error > input[type=password],
.form-group.has-error > input[type=phone],
.form-group.has-error > input[type=email],
.form-group.has-error > textarea,
.form-group.has-error > .select select,
.form-group.has-error > .input-affix,
.form-group.has-error > .item-dynamic > .input-affix,
.form-group.has-error > .input-counter {
  border: 1px solid var(--input-border-color-error);
  background: var(--input-background-color-error);
}

input[type=text]:disabled,
input[type=password]:disabled,
input[type=phone]:disabled,
input[type=email]:disabled,
textarea:disabled,
.input-affix.disabled {
  background: #F7F9F8;
  cursor: default;
}

.select {
  --width-arrow:var(--input-height);
  --height-arrow:5.64px;
  position: relative;
  z-index: 2;
}
.select:after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  z-index: -1;
  height: 100%;
  width: var(--width-arrow);
  background: url(/img/select-arrow.svg) no-repeat 50% 50%/auto var(--height-arrow);
}
.select select {
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  width: 100%;
  background: transparent;
  z-index: 2;
  height: var(--input-height);
  border: 1px solid #eee;
  padding: 0 var(--width-arrow) 0 20px;
  border-radius: 13px;
}
.select select:disabled {
  background: rgba(0, 0, 0, 0.05);
  color: #222;
  opacity: 1;
}
.select--time select {
  overflow: visible;
  padding: 0 15px 0 15px;
}

.input-affix {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 var(--input-padding);
  border-radius: var(--input-border-radius);
  border: 1px solid var(--input-border-color);
  height: var(--input-height);
  background: #fff;
  font-size: var(--input-font-size);
}
.input-affix__label {
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 100%;
}
.input-affix__input {
  border: none;
  padding: 0;
  width: 100%;
  height: 100%;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 0;
  line-height: 1.5;
}
.input-affix__input input {
  padding: 0 !important;
  outline: 0;
  border: none !important;
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background: inherit;
}
.input-affix__prefix {
  margin-right: 9px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  white-space: nowrap;
  color: var(--color-secondary);
}
.input-affix__postfix {
  margin-left: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  white-space: nowrap;
  color: var(--color-secondary);
}
.input-affix__counter {
  height: 20px;
  border-radius: 10px;
  background: #13991C;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 7px;
  text-align: center;
  margin-left: 20px;
  display: none;
  margin-right: -10px;
}
.input-affix .icon {
  background: no-repeat 50% 50%/100% auto;
  margin: 0;
}
.input-affix .icon-location {
  width: 13px;
  height: 16px;
  background-image: url(/img/input-location.svg);
}
.input-affix .icon-paid {
  width: 15px;
  height: 15px;
  background-image: url(/img/paid-date.svg);
}
.input-affix .icon-calendar {
  width: 15px;
  height: 15px;
  background-image: url(/img/input-calendar.svg);
}
.input-affix .icon-arrow {
  width: 10px;
  height: 6px;
  background-image: url(/img/select-arrow.svg);
}
.input-affix .icon-search {
  width: 18px;
  height: 18px;
  background-image: url(/img/input-search.svg);
}
.input-affix .icon-profile {
  width: 12px;
  height: 16px;
  background-image: url(/img/input-name.svg);
}
.input-affix .icon-phone {
  width: 15px;
  height: 15px;
  background-image: url(/img/input-phone.svg);
}

.input-affix.--placeholder .input-affix__label,
.input-affix.--placeholder .select-phone__code {
  color: var(--input-placeholder-color);
}

.input-affix--disabled {
  background: #F7F9F8;
}

.select-phone {
  margin-right: 10px;
}
.select-phone .input-affix {
  border: none;
  padding: 0 10px;
  background: var(--select-phone-background-color);
  border-radius: 9px;
  height: 41px;
  cursor: pointer;
}
.select-phone .input-affix__postfix {
  margin-left: 10px;
}
.select-phone__flag {
  width: 38px;
  height: 28px;
  border-radius: 3px;
  overflow: hidden;
  background-image: url(/img/flags5.png);
  zoom: 0.6;
  border: 1px solid #E3E3E3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.select-phone__code {
  margin-right: 3px;
}

.input-affix--phone {
  padding-left: 5px;
}

.input-password__icon {
  width: 21px;
  height: 21px;
  background: url(/img/input-password-hide.svg) no-repeat 50% 50%/100% auto;
  cursor: pointer;
}
.input-password--show .input-password__icon {
  background-image: url(/img/input-password-show.svg);
}

.input-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: var(--input-border-radius);
  border: 1px solid var(--input-border-color);
  height: var(--input-height);
  background: #fff;
}
.input-counter__minus, .input-counter__plus {
  cursor: pointer;
  width: 52px;
  height: 12px;
  background: no-repeat 50% 50%/12px auto;
  height: 100%;
}
.input-counter__minus {
  background-image: url(/img/counter-minus.svg);
}
.input-counter__plus {
  background-image: url(/img/counter-plus.svg);
}
.input-counter__input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.input-counter__input input {
  height: 100%;
  padding: 0;
  outline: 0;
  border: none !important;
  width: 100%;
  text-align: center;
}

.agreement-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 30px;
  line-height: 1.5;
}
.agreement-box:last-child {
  margin-bottom: 0;
}
.agreement-box .checkbox-item {
  margin-top: -1px;
  padding-top: 0;
  margin-right: 10px;
}
.agreement-box .checkbox-item .checkbox {
  margin-right: 0;
}
.agreement-box .as-link {
  text-decoration: underline;
}
.agreement-box .as-link:hover {
  text-decoration: none;
}

.input-tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid #F0EEEB;
  border-radius: 13px;
}
.input-tab__item {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  margin-left: -1px;
}
.input-tab__item input {
  display: none;
}
.input-tab__item input:checked + .input-tab__label {
  background: #FDF6EE;
  border: 1px solid #E63434;
  color: var(--text-blue);
  border-radius: 13px;
  z-index: 1;
}
.input-tab__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  min-height: 51px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  padding: 0 20px;
  border: 1px solid transparent;
  margin-top: -1px;
  margin-bottom: -1px;
}
.input-tab__item:first-child {
  margin: 0;
  margin-left: -1px;
}
.input-tab__item:first-child .input-tab__label {
  border-radius: 13px 0 0 13px;
}
.input-tab__item:last-child {
  margin-right: -1px;
}
.input-tab__item:last-child .input-tab__label {
  border-radius: 0 13px 13px 0;
}

@media (max-width: 575.98px) {
  .input-tab {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
input[type=text]:focus,
input[type=password]:focus,
input[type=phone]:focus,
input[type=email]:focus,
textarea:focus,
.header-search:focus-within:has(input:focus),
.mobile-search:focus-within:has(input:focus),
.input-promo:focus-within:has(input:focus),
.input-postfix:focus-within,
.input-affix:focus-within,
.input-counter:focus-within {
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  border: 1px solid var(--input-border-color-focus);
}

.input-affix input:focus,
.input-counter input:focus,
.header-search input:focus,
.mobile-search input:focus,
.input-promo input:focus {
  border: none;
}

.show-password__btn {
  cursor: pointer;
}

/* item */
.item__name .highlight {
  font-weight: bold;
}

/*.checkbox-list,.radio-list {
  padding:12px 0;
  min-height:51px;
}
.checkbox-list_inline {display:flex;align-items:center;min-height:37px;}
.checkbox-list_inline .checkbox-item,.radio-list_inline .radio-item {padding-top:0;min-height:unset}
.checkbox-list_inline,.radio-list_inline {padding-top:12px;}
.checkbox-list .checkbox-item {padding-top:0;min-height:unset}*/
.checkbox {
  width: var(--checkbox-size);
  height: var(--checkbox-size);
  border-radius: var(--checkbox-border-radius);
  border: 1px solid var(--checkbox-border-color);
  background-color: #fff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
}
.checkbox-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.checkbox-item .checkbox {
  --margin-top: calc((1.5em - 20px) / 2);
  margin-top: max(var(--margin-top), var(--margin-top) * -1);
}
.checkbox-item input {
  display: none;
}
.checkbox-item input:checked + .checkbox {
  background: #E02F30;
  border: none;
}
.checkbox-item input:checked + .checkbox:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: url(/img/checkbox.svg) no-repeat 50% 50%/auto 50%;
}

.radio {
  width: var(--radio-size);
  height: var(--radio-size);
  border-radius: 50%;
  border: 1px solid var(--checkbox-border-color);
  position: relative;
  background-color: #fff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

.radio-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.radio-item input {
  display: none;
}
.radio-item input:checked + .radio {
  border-color: var(--radio-border-color-checked);
  background: var(--radio-border-color-checked);
}
.radio-item input:checked + .radio::after {
  content: "";
  background: #fff;
  border-radius: 50%;
  position: absolute;
  width: var(--radio-checked-size);
  height: var(--radio-checked-size);
  left: 50%;
  top: 50%;
  margin-left: calc(var(--radio-checked-size) / 2 * -1);
  margin-top: calc(var(--radio-checked-size) / 2 * -1);
}

.checkbox-name,
.radio-name {
  margin-left: 10px;
  font-size: 16px;
  line-height: 20px;
}

.radio-content {
  margin-left: 10px;
}
.radio-content .radio-name {
  margin-left: 0;
}

.radio-description {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-grey-light);
}

.radio-wrapper input {
  display: none;
}

.radio-wrapper input:checked + .tab {
  border: 1px solid #13991C;
  background: #F7FCF7;
  z-index: 1;
  cursor: default;
}
.radio-wrapper input:checked + .tab:hover {
  opacity: 1;
}

.checkbox-item.disabled :not(:checked) + .checkbox,
.checkbox-item input:disabled + .checkbox {
  background: #F7F9F8;
}

.input-value {
  min-height: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

/*.field-attach-remove {display:none;}*/
.field-attach-progress {
  display: none;
}

.field-attach-progress {
  margin-left: 10px;
}

.field-attach-file.error {
  border-color: #f6652c;
}

.short-file__errors {
  font-size: 12px;
}

.short-file__errors p, .short-file__errors p:not(:last-child) {
  margin-top: 10px;
  margin-bottom: 10px;
  color: #f6652c;
}

/* attach */
.attach__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: -5px;
}
.attach__container .attach__item {
  padding: 5px;
  width: 133px;
}

.attach__item-inner {
  position: relative;
  padding-bottom: 75%;
  border-radius: 5px;
  overflow: hidden;
}
.attach__item-inner img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.attach__select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  background: #f4f8ff;
  cursor: pointer;
}

.attach__select-icon {
  width: 20px;
  height: 20px;
  background: url(/img/image-action.svg) no-repeat 50% 50%/100% auto;
  margin-bottom: 15px;
}

.attach__select-content {
  color: var(--text-blue);
  font-size: 12px;
}

.input-range {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.input-range input:first-child {
  border-radius: 13px 0 0 13px;
}
.input-range input:last-child {
  border-radius: 0 13px 13px 0;
  margin-left: -1px;
}
.input-range input:focus {
  z-index: 1;
}

.slider-range .slider.ui-widget.ui-widget-content {
  border: none;
  margin-top: 28.5px;
  margin-bottom: 33.5px;
}
.slider-range .slider.ui-slider-horizontal {
  height: 5px;
}
.slider-range .slider.ui-widget-content {
  background: #D3DCE9;
  border-radius: 2.5px;
}
.slider-range .slider .ui-widget-header {
  background: #36A9E1;
}
.slider-range .slider .ui-slider-handle {
  width: 21px;
  height: 21px;
  background: #2B9BD1;
  border-radius: 10.5px;
  border: none;
  outline: 0;
}
.slider-range .slider .ui-slider-handle {
  top: 50%;
  margin-top: -10.5px;
}
.slider-range .slider-wrapper {
  padding: 0 10.5px;
  margin-top: 28.5px;
  margin-bottom: 33.5px;
  background: #D3DCE9;
  border-radius: 2.5px;
}

.tippy-select .checkbox-list {
  padding: 0;
}

.checkbox-list {
  list-style: none;
  /*&--opened > .checkbox-list {
     display:block;
  }*/
}
.checkbox-list .checkbox-list {
  display: none;
  padding: 0;
}
.checkbox-list .checkbox-list .checkbox-list__item {
  padding-left: 10px;
}
.checkbox-list .checkbox-list .checkbox-list__item:not(.checkbox-list--listed) {
  padding-left: 30px;
}
.checkbox-list__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
  border-radius: 13px;
  padding: 13px 15px;
}
.checkbox-list__inner:hover {
  background: #F7F9F8;
}
.checkbox-list--listed > .checkbox-list__inner::before {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  background: url(/img/select-arrow.svg) no-repeat 50% 50%/auto 100%;
  margin-right: 10px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
}
.checkbox-list--listed:not(.checkbox-list--opened) > .checkbox-list__inner::before {
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.checkbox-list--half > .checkbox-list__inner input:not(:checked) + .checkbox {
  border-color: #13991C;
  background: none;
}
.checkbox-list--half > .checkbox-list__inner input:not(:checked) + .checkbox::before {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  top: 5px;
  bottom: 5px;
  background: #13991C;
  border-radius: 2px;
}
.checkbox-list .highlight {
  font-weight: bold;
}
.checkbox-list--found .checkbox-list__item {
  display: block !important;
}

.radio-list {
  list-style: none;
}
.radio-list .radio-list {
  padding-top: 0;
  padding-bottom: 0;
}
.radio-list .radio-list .radio-list__item {
  padding-left: 20px;
}
.radio-list .radio-list .radio-list__item:not(.radio-list--listed) {
  padding-left: 20px;
}
.radio-list__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4px;
  border-radius: 13px;
  padding: 13px 15px;
}
.radio-list__inner:hover {
  background: #F7F9F8;
}
.radio-list .highlight {
  font-weight: bold;
}
.radio-list--found .radio-list__item {
  display: block !important;
}

.has-error .tox-tinymce {
  border: 1px solid #f6652c !important;
}

.has-error .tox .tox-edit-area__iframe {
  background: #fff7f4;
}

.tag-radio {
  cursor: pointer;
}
.tag-radio input {
  display: none;
}
.tag-radio input:checked + .tag {
  background: #F7FCF7;
}

/* switch */
.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 20px;
  vertical-align: top;
}
.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: inherit;
  background: var(--color-grey-light);
  border-radius: 18px;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.switch-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  border-radius: 50%;
  left: 2px;
  bottom: 2px;
  background-color: white;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}
.switch input {
  display: none;
}
.switch input:checked + .switch-slider {
  background-color: #74AB37;
}
.switch input:focus + .switch-slider {
  -webkit-box-shadow: 0 0 1px #74AB37;
  box-shadow: 0 0 1px #74AB37;
}
.switch input:checked + .switch-slider:before {
  -webkit-transform: translateX(16px);
  -ms-transform: translateX(16px);
  transform: translateX(16px);
}

/* switch slider */
/*.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;

  &:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
}*/
/* promo */
.input-promo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 14px;
  border: 1px solid #eee;
  min-height: 51px;
  padding-right: 4px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.input-promo__input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 100%;
}
.input-promo__input input {
  font-size: 14px !important;
  height: 100%;
  width: 100%;
  padding: 0 20px;
  outline: 0;
  border: none;
}
.input-promo__input input:disabled {
  background: none !important;
}
.input-promo__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: unset !important;
  color: #666666 !important;
  background: #F7F9F8 !important;
  padding: 0 40px;
  height: 41px;
  border-radius: 11px !important;
  font-weight: normal !important;
}
.input-promo__btn .loader {
  border-radius: inherit;
}
.input-promo__btn .loader .spinner > div {
  background: #666 !important;
}

@media (max-width: 575.98px) {
  .input-promo {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 4px;
    padding-bottom: 4px;
  }
  .input-promo__btn, .input-promo__input {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
  .input-promo__input {
    height: 45px;
  }
}
#cart-sidebar {
  width: 390px;
}
#cart-sidebar .sidebar__inner {
  width: 100%;
}

.cart {
  padding: 20px;
  border-radius: 20px;
  border: 1px solid var(--border-color-primary);
}
.cart__total {
  padding: 15px;
  background: #FAF8F7;
  border-radius: 9px;
  margin-bottom: 20px;
}

.cart-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 20px;
}
.cart-item__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 20px;
}
.cart-item__counter .input-counter {
  width: 125px;
  height: 35px;
}
.cart-item__counter .input-counter__minus, .cart-item__counter .input-counter__plus {
  width: 42px;
}
.cart-item__counter .input-counter__input {
  font-weight: bold;
  font-size: 12px;
  text-align: center;
}

.cart-position {
  --bg-color:#FAF8F7;
  font-size: 12px;
  line-height: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 13px;
  background-image: -o-radial-gradient(#DADADA 15%, var(--bg-color) 25%);
  background-image: radial-gradient(#DADADA 15%, var(--bg-color) 25%);
  background-size: 8px 8px;
  background-repeat: repeat-x;
  background-position: 4px center;
}
.cart-position:last-child {
  margin-bottom: 0;
}
.cart-position__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-grey);
  display: flex;
  background: var(--bg-color);
  padding-right: 4px;
}
.cart-position__price {
  font-weight: bold;
  background: var(--bg-color);
  padding-left: 4px;
}
.cart-position--delivery .cart-position__content::before {
  content: "";
  width: 17px;
  height: 17px;
  background: url(/img/cart-delivery.svg) no-repeat 50% 50%/100% auto;
  margin-right: 7px;
}
.cart-position--urgently .cart-position__content::before {
  content: "";
  width: 17px;
  height: 17px;
  background: url(/img/cart-urgently.svg) no-repeat 50% 50%/100% auto;
  margin-right: 7px;
}
.cart-position--total {
  font-weight: bold;
}

.cart-agreement {
  font-size: 12px;
  color: var(--color-grey-light);
  line-height: 1.5;
  margin-top: 15px;
  text-align: center;
  padding: 0 20px;
}
.cart-agreement .as-link {
  color: inherit;
}

@media (max-width: 991.98px) {
  #cart-sidebar {
    width: 100%;
  }
}
/* loading */
.loader {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: 0;
  right: 0;
  background: inherit;
  width: 100%;
  height: 100%;
}

.spinner {
  margin: 0 auto;
  /*width: 145px;*/
  text-align: center;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.spinner > div {
  width: 6px;
  height: 6px;
  background-color: #000;
  margin-right: 7px;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner > div:last-child {
  margin-right: 0;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
/* end loading */
.text-style .title {
  font-size: 24px;
}
.text-style p {
  line-height: 1.5;
  margin: 25px 0;
}
.text-style p:last-child {
  margin-bottom: 0;
}
.text-style ul {
  padding-left: 30px;
}
.text-style ul li {
  line-height: 1.5;
}

/* modal overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  background-blend-mode: normal;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  width: 100%;
  height: 100%;
  z-index: 100;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  -o-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
.modal-overlay--open {
  opacity: 1;
}

[data-modalform] {
  cursor: pointer;
}

.modal-loading {
  position: absolute;
  top: 50%;
  margin-top: -5px;
  display: none;
  left: 50%;
  margin-left: -23px;
}
.modal-loading .spinner > div {
  background-color: #fff;
  opacity: 0.9;
}

.modal-overlay--loading .modal-loading {
  display: block;
}

.modal-close {
  cursor: pointer;
  width: 18px;
  height: 18px;
  background: url(/img/modal-close.svg) no-repeat 50% 50%/100% auto;
  position: absolute;
  right: 15px;
  top: -33px;
}

.modal-form {
  --modal-padding:30px;
  --modal-radius:0px;
  max-width: 900px;
  position: relative;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--modal-radius);
}

.modal-form-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  padding: 80px 0px 90px 0;
  opacity: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: translate3d(0, 40px, 0);
  transform: translate3d(0, 40px, 0);
  visibility: hidden;
}

.modal-form-container--open {
  z-index: 1;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@media (max-width: 575.98px) {
  .modal-form-container {
    padding-top: 60px;
    padding-bottom: 0;
  }
  .modal-form-container::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 80px;
    background: #fff;
    -webkit-transform: translate3d(0, 40px, 0);
    transform: translate3d(0, 40px, 0);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
  }
  .modal-form-container--has-footer::before {
    background: var(--background-color-primary);
  }
  .modal-form-container--open::before {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .modal-form {
    max-width: 100% !important;
  }
}
.modal-header,
.modal-content,
.modal-footer {
  padding: 0 var(--modal-padding);
}

.modal-content {
  padding-bottom: var(--modal-padding);
}

.modal-header {
  overflow: hidden;
  padding-top: var(--modal-padding);
}
.modal-header .modal-name {
  font-size: 20px;
  font-weight: 600;
}
.modal-header > .modal-name,
.modal-header .modal-name-wrapper {
  margin-bottom: 20px;
}

.modal-footer {
  padding-bottom: var(--modal-padding);
  padding-top: var(--modal-padding);
  border-radius: 0 0 var(--modal-radius) var(--modal-radius);
}

.modal-name-error {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #BB2E29;
}
.modal-name-error::before {
  content: "";
  display: block;
  width: 29px;
  height: 29px;
  margin-right: 15px;
  background: url(/img/modal-head-fail.svg) no-repeat 50% 50%/auto 100%;
}

.modal-name-success {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #13991C;
}
.modal-name-success::before {
  content: "";
  display: block;
  width: 29px;
  height: 29px;
  margin-right: 15px;
  background: url(/img/modal-head-success.svg) no-repeat 50% 50%/auto 100%;
}

.modal-form .scrollable {
  margin: 0 -30px;
}

.modal-form .scrollable .tabs {
  padding: 0 30px;
}

.tabs-container .scrollable {
  border-bottom: 1px solid #D3DCE9;
}

.tabs-container .tabs .tab__inner {
  padding-top: 0;
}

/* end modal overlay */
.modal-form .location {
  font-size: 14px;
  color: #999;
  font-weight: normal;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: unset;
  line-height: 1.5;
}
.modal-form .location .icon {
  width: 14px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 7px;
  height: 16px;
}

.region__item {
  padding: 10px;
  border-radius: 8px;
  color: #007808;
  cursor: pointer;
}
.region__item--bold {
  font-weight: bold;
}
.region__item--active {
  color: #022800;
  font-weight: bold;
  background: #EBF7EC;
}

.region-search .icon {
  width: 17px;
  height: 17px;
}

/* modal-loading */
.modal-loading {
  position: absolute;
  top: 50%;
  margin-top: -5px;
  display: none;
  left: 50%;
  margin-left: -23px;
}

.overlay_loading .modal-loading {
  display: block;
}

.modal-loading .spinner > div {
  background-color: #fff;
  opacity: 0.9;
}

/* end modal loading */
.modal-request .modal-footer {
  margin-top: 30px;
}
.modal-request p {
  line-height: 1.5;
  margin-bottom: 10px;
}

/* new classes */
.modal-form .offer-text {
  color: var(--color-grey);
  margin-bottom: 20px;
  font-weight: 600;
}

.modal-form .location-current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-grey);
  font-size: 12px;
}
.modal-form .location-current::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-right: 6px;
  background: url(/img/header-location-grey.svg) no-repeat 50% 50%/100% auto;
}

.modal-social {
  margin-bottom: 40px;
}
.modal-social .social__item {
  position: relative;
  width: auto;
  padding-top: 17.2413793103%;
  height: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-radius: 12px;
  border: 1px solid var(--border-color-primary);
}
.modal-social .social__item--vk {
  background: url(/img/login-vk.svg) no-repeat 50% 50%/auto 32%;
}
.modal-social .social__item--yandex {
  background: url(/img/login-yandex.svg) no-repeat 50% 50%/auto 36%;
}
.modal-social .social__item--ok {
  background: url(/img/login-ok.svg) no-repeat 50% 50%/auto 40%;
}

/* btn */
.btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 30px;
  cursor: pointer;
  border: none;
  outline: 0;
  border-radius: var(--btn-border-radius);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: var(--btn-font-size);
  line-height: 1.25;
  background: var(--btn-background-color);
  color: var(--btn-color);
  font-weight: 600;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  width: 100%;
  min-height: var(--btn-height);
}
.btn:hover {
  background: var(--btn-background-color-hover);
}
.btn__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
}
.btn__icon--cart {
  width: 18px;
  height: 18px;
  background: url(/img/cart.svg) no-repeat 50% 50%/100% auto;
}
.btn__icon--cart-add {
  width: 18px;
  height: 18px;
  background: url(/img/cart-add.svg) no-repeat 50% 50%/100% auto;
}
.btn__icon--login::after {
  content: "";
  width: 12px;
  height: 15px;
  background: url(/img/button-lock.svg) no-repeat 50% 50%/100% auto;
}
.btn__icon--phone::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url(/img/button-phone.svg) no-repeat 50% 50%/auto 100%;
}
.btn__icon--plus::after {
  content: "";
  width: 12px;
  height: 12px;
  background: url(/img/button-plus.svg) no-repeat 50% 50%/auto 100%;
}
.btn__icon--more {
  width: 16px;
  height: 16px;
  background: url(/img/icon-showmore.svg) no-repeat 50% 50%/auto 100%;
}
.btn__icon--add {
  width: 16px;
  height: 16px;
  background: url(/img/icon-add.svg) no-repeat 50% 50%/auto 100%;
}
.btn__icon--favorite {
  width: 13px;
  height: 16px;
  background: url(/img/icon-favorites-blank.svg) no-repeat 50% 50%/auto 100%;
}
.btn__icon--share {
  width: 14px;
  height: 16px;
  background: url(/img/icon-share.svg) no-repeat 50% 50%/auto 100%;
}
.btn__content {
  min-width: 0;
}
.btn__content span {
  color: #F2C38A;
}
.btn--catalog {
  color: var(--color-primary);
  border-radius: 0;
  background: #fff;
}
.btn--catalog:hover {
  background-color: #e7e7e7;
}
.btn--catalog .btn__icon--filter {
  width: 20px;
  height: 18px;
  background: url(/img/filter.svg) no-repeat 50% 50%/auto 100%;
}
.btn--catalog .btn__icon--more {
  width: 18px;
  height: 18px;
  background: url(/img/load-more.svg) no-repeat 50% 50%/auto 100%;
}
.btn--inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  padding: 0 var(--btn-padding);
  width: auto;
}
.btn--grey {
  --btn-background-color:#F3F7F7;
  --btn-color:var(--color-primary);
  /*.loader {
    border-radius:inherit;
    .spinner > div {
      background:#666 !important;
    }
  }*/
}
.btn--grey:hover {
  background: #9ea4a4;
}
.btn--accent {
  --btn-background-color:#FFA523;
}
.btn--accent:hover {
  background: #bc7b21;
}
.btn--clear {
  --btn-background-color:none;
  --btn-color:var(--color-primary);
  border: 2px solid var(--color-primary);
}
.btn .loader {
  border-radius: inherit;
}
.btn .loader .spinner > div {
  background: #fff;
}

.btn--center .btn__icon {
  border-radius: 0;
}
.btn--center .btn__icon::before {
  display: none;
}
.btn--center .btn__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

.btn--action {
  padding: 0;
  background: none;
  border-radius: 0;
  color: var(--color-primary);
  font-weight: 500;
  min-height: unset;
}
.btn--action .btn__icon {
  border-radius: 0;
  margin-left: 0;
}
.btn--action .btn__icon::before {
  display: none;
}
.btn--action .btn__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

/* end btn */
@media (max-width: 575.98px) {
  .btn {
    --btn-padding:30px;
    width: 100%;
  }
}
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--text-grey);
}
.nav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.nav__notif {
  position: relative;
  top: -8px;
  right: -8px;
}

.circle {
  min-width: 16px;
  height: 16px;
  background: #fff;
  color: #fff;
  font-size: 9px;
  text-align: center;
  line-height: 16px;
  vertical-align: middle;
  position: relative;
  z-index: 2;
  border-radius: 8px;
}
.circle:before {
  z-index: -1;
  content: "";
  position: absolute;
  right: 1px;
  top: 1px;
  left: 1px;
  bottom: 1px;
  background: #f6652c;
  border-radius: 7px;
}

.profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.profile__icon {
  width: 50px;
  height: 50px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 15px;
  position: relative;
}
.profile__icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 13px;
}
.profile__content {
  overflow: hidden;
}
.profile__name {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  margin-bottom: 2px;
}
.profile__date {
  color: var(--color-grey-light);
}
.profile__social {
  display: inline-block;
  vertical-align: text-top;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: url(/img/footer-vk.svg) 50% 50%/cover;
}

.icon {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  display: block;
  margin-right: 10px;
}

.icon-share-whatsapp {
  background-image: url(/img/share-whatsapp.svg);
  width: 40px;
  height: 40px;
}

.icon-share-telegram {
  background-image: url(/img/share-telegram.svg);
  width: 40px;
  height: 40px;
}

.icon-share-vk {
  background-image: url(/img/share-vk.svg);
  width: 40px;
  height: 40px;
}

.icon-share-ok {
  background-image: url(/img/share-ok.svg);
  width: 40px;
  height: 40px;
}

.icon-share-viber {
  background-image: url(/img/share-viber.svg);
  width: 40px;
  height: 40px;
}

.icon-share-message {
  background-image: url(/img/share-message.svg);
  width: 40px;
  height: 40px;
}

.icon-calendar {
  background-image: url(/img/input-date.svg);
}

.icon-location {
  background-image: url(/img/location-grey.svg);
}

.icon-favorite {
  background-image: url(/img/favorite-blank.svg);
}

.icon-favorite.icon--blue {
  background-image: url(/img/favorite-blue-blank.svg);
}

.icon-favorite.icon--yellow.icon--filled {
  background-image: url(/img/rating-yellow.svg);
}

.icon-clock {
  background-image: url(/img/date.svg);
}

.icon-refresh {
  background-image: url(/img/show-more.svg);
}

.icon-filter {
  background-image: url(/img/filter.svg);
}

.icon-item {
  background-image: url(/img/lk-items.svg);
}

.icon-item.icon--blue {
  background-image: url(/img/lk-blue-items.svg);
}

.icon-settings {
  background-image: url(/img/lk-settings.svg);
}

.icon-settings.icon--blue {
  background-image: url(/img/lk-blue-settings.svg);
}

.icon-logout {
  background-image: url(/img/lk-logout.svg);
}

.icon-logout.icon--blue {
  background-image: url(/img/lk-blue-logout.svg);
}

.icon-review {
  background-image: url(/img/lk-reviews.svg);
}

.icon-review.icon--blue {
  background-image: url(/img/lk-blue-reviews.svg);
}

.icon-message {
  background-image: url(/img/lk-messages.svg);
}

.icon-message.icon--blue {
  background-image: url(/img/lk-blue-messages.svg);
}

.icon-search {
  background-image: url(/img/search-grey.svg);
}

.icon-search.icon--blue {
  background-image: url(/img/search-blue.svg);
}

.icon-passwd-show {
  background-image: url(/img/password-hide.svg);
}

.icon-passwd-hide {
  background-image: url(/img/password-show.svg);
}

.icon-info.icon--blue {
  background-image: url(/img/info-blue.svg);
}

.icon-info.icon--orange {
  background-image: url(/img/info-orange.svg);
}

.icon-list.icon--blue {
  background-image: url(/img/sort.svg);
}

.icon-map.icon--blue {
  background-image: url(/img/map.svg);
}

.icon-view {
  background-image: url(/img/views.svg);
}

.icon-edit.icon--blue {
  background-image: url(/img/review-write.svg);
}

.icon-trash.icon--blue {
  background-image: url(/img/review-delete.svg);
}

@media (max-width: 767.98px) {
  .title--catalog {
    font-size: 24px;
  }
}
.catalog-map {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 600;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.catalog-map::before {
  content: "";
  width: 21px;
  height: 20px;
  background: url(/img/action-map.svg) no-repeat 50% 50%/auto 100%;
  margin-right: 10px;
}

@media (max-width: 1199.98px) {
  .catalog-map:not(.catalog-map--product) {
    background: #fff;
    padding: 4px 30px;
    height: 51px;
  }
  .catalog-map:not(.catalog-map--product):hover {
    background: #e7e7e7;
  }
}
.ballon {
  font-family: var(--font-family-primary);
}
.ballon__header {
  font-size: 16px;
  font-weight: bold;
  padding: 10px 0px 0px 10px;
  margin-bottom: 15px;
  color: #333;
}
.ballon__body {
  padding: 0 0 10px 10px;
}
.ballon__body .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.ballon__body .item:not(:last-child) {
  margin-bottom: 20px;
}
.ballon__body .item a {
  color: #333;
}
.ballon__body .item__img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
  width: 80px;
}
.ballon__body .item__content {
  font-size: 12px;
  margin-top: -4px;
}

.metro {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.metro__mark {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 10px;
}
.metro__mark div {
  position: relative;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid #fff;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-left: -4px;
}
.metro__mark div:first-child {
  margin-left: 0;
}
.metro-line-1 {
  background: #D60A3B;
}
.metro-line-2 {
  background: #0078C9;
}
.metro-line-3 {
  background: #019A49;
}
.metro-line-4 {
  background: #EA7124;
}
.metro-line-5 {
  background: #702784;
}
.metro__name span {
  color: var(--color-grey-light);
}

.card-product {
  border-radius: var(--border-radius-primary);
  border: 1px solid #DDDDDD;
}
.card-product .btn {
  margin: 0 5px 5px;
  width: auto;
}
.card-product .card__img {
  position: relative;
  display: block;
  overflow: hidden;
  padding-top: 66.5%;
  border-radius: var(--border-radius-primary);
}
.card-product .card__img img {
  height: 100%;
  width: 100%;
  position: absolute;
  border-radius: inherit;
  -o-object-fit: cover;
  object-fit: cover;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.card-product .card__top {
  border-radius: inherit;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
  padding: 10px;
}
.card-product .card__top .card__rate {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #fff;
  font-weight: 500;
}
.card-product .card__top .card__rate span {
  font-weight: 400;
}
.card-product .card__top .card__rate::before {
  content: "";
  width: 13px;
  height: 12px;
  margin-right: 7px;
  background: url(/img/card-rating-white.svg) no-repeat 50% 50%/auto 100%;
}
.card-product .card__content {
  padding: 30px;
  background: #fff;
}
.card-product .card__name {
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 18px;
  /*overflow:hidden;
  text-overflow: ellipsis;
  height:3em;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  display:-webkit-box;*/
  text-transform: uppercase;
}
.card-product .card__tag {
  position: absolute;
  top: 0;
  left: 0;
  padding: 8px 12px;
  font-size: 10px;
  line-height: 12px;
  color: var(--color-white);
  z-index: 1;
}
.card-product .card__tag--red {
  background: var(--color-primary);
}
.card-product .card__tag--orange {
  background: #F49100;
}
.card-product .card__address {
  margin-bottom: 10px;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.card-product .card__metro {
  margin-bottom: 14px;
}
.card-product .card__people {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--color-grey-light);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
}
.card-product .card__people::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 19px;
  height: 16px;
  margin-right: 10px;
  background: url(/img/people.svg) no-repeat 50% 50%/auto 100%;
}
.card-product .card__price {
  font-size: 18px;
}
.card-product .card__code {
  font-size: 12px;
  color: var(--color-grey-light);
}
.card-product .card__slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
.card-product .card__slider > div {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: 5px;
  /*&:hover {
    &::before {
      opacity:.85;
      background:#FFFFFF;
    }
  }*/
}
.card-product .card__slider > div:last-child {
  margin-right: 0;
}
.card-product .card__slider > div::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.35);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}

@media (max-width: 575.98px) {
  .card-product .btn {
    padding-left: 0;
    padding-right: 0;
    font-size: 14px;
    min-height: 38px;
  }
  .card-product .btn__icon--cart--add {
    width: 13px;
    height: 13px;
  }
  .card-product:not(.product-img) .card__size {
    font-size: 10px;
  }
  .card-product:not(.product-img) .card__size::before {
    width: 9px;
    height: 9px;
  }
  .card-product:not(.product-img) .card__discount {
    left: 10px;
    top: 10px;
    font-size: 12px;
  }
  .card-product .card__top {
    padding: 10px;
  }
  .card-product .card__name {
    font-size: 14px;
  }
  .card-product .card__name-prefix {
    font-size: 12px;
    line-height: 15px;
  }
  .card-product .card__price {
    font-size: 16px;
  }
  .card-product .card__price-old {
    font-size: 12px;
  }
  .card-product .card__content {
    padding: 10px 10px 15px 10px;
  }
}
.filter {
  overflow: hidden;
  background: #fff;
  padding: 30px;
}
.filter .form-control.--filled:not(:focus) {
  background: #ECF9FA;
  z-index: 1;
  border-color: var(--color-primary);
}
.filter .input-affix.--filled {
  background: #ECF9FA;
  border-color: var(--color-primary);
}
.filter .input-affix.--focused.--search {
  background-color: #fff;
}

.btn-filter__indicator {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid #fff;
  background: #13991C;
  position: absolute;
  right: -4px;
  top: -4px;
}

.filter-overlay {
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  background-blend-mode: normal;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  width: 100%;
  height: 100%;
  z-index: 99;
  display: none;
  cursor: pointer;
}

@media (max-width: 1199.98px) {
  .filter-wrapper {
    position: fixed;
    padding: 0 !important;
    top: 0;
    left: 0;
    width: 300px;
    height: 100%;
    overflow: auto;
    z-index: 100;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    opacity: 0;
    background: #fff;
  }
  .filter-wrapper--open {
    -webkit-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
    opacity: 1;
  }
  .filter {
    border-radius: 0;
    min-height: 100%;
    padding: 20px 15px;
  }
}
.filter-section {
  margin-bottom: 40px;
}
.filter-section:last-child {
  margin-bottom: 0;
}
.filter-section__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.filter-section__selected {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #13991C;
  margin-right: 10px;
}
.filter-section__name {
  font-weight: bold;
  font-size: 18px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.filter-section__inner {
  padding-top: 10px;
}
.filter-section__toggle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  line-height: 1.5;
  color: #13991C;
}
.filter-section__toggle::before {
  content: "";
  width: 12px;
  height: 6px;
  background: url(/img/arrow-green.svg) no-repeat 50% 50%/auto 100%;
  margin-right: 9px;
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.filter-section__toggle--open::before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.filter-section .js-toggle-handler {
  cursor: pointer;
}
.filter-item {
  margin-bottom: 20px;
}
.filter-item:last-child {
  margin-bottom: 0;
}

.tag-input input {
  display: none;
}
.tag-input input:checked + .tag {
  background: var(--background-color-secondary);
}

.btn-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 600;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
}
.btn-more::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(/img/action-load.svg) no-repeat 50% 50%/auto 100%;
  margin-right: 10px;
}

@media (max-width: 1199.98px) {
  .btn-more {
    background: #fff;
    padding: 4px 30px;
    height: 51px;
  }
  .btn-more:hover {
    background: #e7e7e7;
  }
}
.catalog-grid {
  display: -ms-grid;
  display: grid;
  gap: 30px;
  -ms-grid-columns: 1fr 2fr;
  grid-template-columns: 1fr 2fr;
}
.catalog-grid .catalog-container {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-auto-flow: row;
  gap: 30px;
}
.catalog-grid .btn-more {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
}

@media (max-width: 1199.98px) {
  .catalog-grid {
    -ms-grid-columns: 0 2fr;
    grid-template-columns: 0 2fr;
    gap: 30px 0;
  }
}
@media (max-width: 767.98px) {
  .catalog-grid .catalog-container {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}
.title-grid {
  margin-bottom: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: ;
  grid-template: "A B";
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-grid-columns: 1fr auto;
  grid-template-columns: 1fr auto;
}
.title-grid__A {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: A;
}
.gallery-grid > .title-grid__A {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
}
.title-grid__B {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: B;
}
.gallery-grid > .title-grid__B {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
  -ms-grid-column-span: 3;
}
.title-grid .title {
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .title-grid {
    gap: 30px;
    -ms-grid-rows: auto;
    grid-template: "A" "B";
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
  .title-grid__A {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .title-grid__B {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}
.product-section {
  margin-bottom: 30px;
}
.product-section__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}
.product-section p {
  line-height: 1.5;
  margin-bottom: 1.5em;
}
.product-section p:last-child {
  margin-bottom: 0;
}
.product-section__map {
  height: 350px;
  margin-top: 15px;
}
.product-section__map img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  vertical-align: top;
}
.product-section--bordered {
  padding: 30px;
  border: 1px solid #ddd;
}
.product-section:last-child {
  margin-bottom: 0;
}

.product-param {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
}
.product-param::before {
  content: "";
  height: 20px;
  margin-right: 10px;
  background: no-repeat 50% 50%/auto 100%;
}
.product-param--people::before {
  background-image: url(/img/apt-guest.svg);
  width: 24px;
}
.product-param--bad::before {
  background-image: url(/img/apt-places.svg);
  width: 26px;
}
.product-param--room::before {
  background-image: url(/img/apt-rooms.svg);
  width: 20px;
}
.product-param--square::before {
  background-image: url(/img/apt-square.svg);
  width: 20px;
}

.product-equip {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 14px;
}
.product-equip__img {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  margin-right: 10px;
}
.product-equip__img img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
  -o-object-position: center;
  object-position: center;
}

.gallery {
  margin-bottom: 30px;
  position: relative;
  padding-top: 30.757575%;
}
.gallery__item {
  position: relative;
  height: 100%;
}
.gallery__item img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  vertical-align: top;
}

.gallery-grid {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: -ms-grid;
  display: grid;
  grid-template-areas: "A A A A B B D D D" "A A A A C C D D D";
  -ms-grid-rows: 1fr 5px 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 5px;
}
.gallery-grid__A {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: A;
}
.gallery-grid > .gallery-grid__A {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 7;
}
.gallery-grid__B {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: B;
}
.gallery-grid > .gallery-grid__B {
  -ms-grid-row: 1;
  -ms-grid-column: 9;
  -ms-grid-column-span: 3;
}
.gallery-grid__C {
  -ms-grid-row: 3;
  -ms-grid-column: 9;
  -ms-grid-column-span: 3;
  grid-area: C;
}
.gallery-grid__D {
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  -ms-grid-column: 13;
  -ms-grid-column-span: 5;
  grid-area: D;
}
@media (max-width: 1199.98px){
  .gallery-grid__A {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
  }
  .gallery-grid__B {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
  }
}

@media (max-width: 767.98px) {
  .gallery-grid {
    position: static;
    grid-template-areas: "A A" "B C";
    -ms-grid-rows: 1fr auto;
    grid-template-rows: 1fr auto;
  }
  .gallery-grid__D {
    display: none;
  }
  .gallery {
    margin-bottom: 30px;
    position: relative;
    padding-top: 0;
  }
  .gallery__item {
    padding-top: 66.7%;
    height: auto;
  }
  .gallery-grid > .title-grid__A {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .gallery-grid > .title-grid__B {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .gallery-grid > .gallery-grid__A {
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
  }
  .gallery-grid > .gallery-grid__B {
    -ms-grid-row: 2;
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
  }
  .gallery-grid__C {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
    -ms-grid-column-span: 1;
  }
}
.product-img-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  bottom: 10px;
  right: 10px;
  padding: 8px 15px;
  background: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--color-white);
}
.product-img-more:before {
  content: "";
  margin-right: 5px;
  width: 13px;
  height: 13px;
  background: url(/img/more-photo.svg) no-repeat 50% 50%/100% auto;
}

@media (max-width: 575.98px) {
  .product-img-more {
    font-size: 14px;
  }
}
.product-grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 400px;
  grid-template-columns: auto 400px;
  gap: 30px;
}

@media (max-width: 1199.98px) {
  .product-grid {
    -ms-grid-columns: auto;
    grid-template-columns: auto;
  }
}
.sidebar-section {
  padding: 30px;
  margin-bottom: 15px;
  background: #F6F6F6;
}
.sidebar-section__title {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 5px;
}
.sidebar-section__title + div {
  font-size: 14px;
  color: var(--color-grey-light);
  margin-bottom: 30px;
}
.sidebar-section:last-child {
  margin-bottom: 0;
}

.product-wrapper {
  background: #fff;
}

.product-price {
  font-size: 20px;
  font-weight: bold;
}

.product-people {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--color-grey-light);
}
.product-people::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 19px;
  height: 16px;
  background: url(/img/people.svg) no-repeat 50% 50%/auto 100%;
  margin-right: 10px;
}

.product-location {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.product-location::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 15px;
  height: 20px;
  background: url(/img/location.svg) no-repeat 50% 50%/auto 100%;
  margin-right: 10px;
}

.slider-swiper-wrapper {
  padding: 0 30px 1px;
  margin: 0 -29px;
  overflow: hidden;
}

.slider-header {
  margin-bottom: 60px;
}

.slider-container {
  position: relative;
}
.slider-container .swiper-button-prev,
.slider-container .swiper-button-next {
  position: absolute;
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #fff no-repeat 50% 50%/auto 33.333333%;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  -webkit-box-shadow: 1px 1px 2px rgba(0, 18, 20, 0.02), 5px 5px 10px rgba(0, 18, 20, 0.1);
  box-shadow: 1px 1px 2px rgba(0, 18, 20, 0.02), 5px 5px 10px rgba(0, 18, 20, 0.1);
}
.slider-container .swiper-button-prev::after, .slider-container .swiper-button-next::after {
  display: none;
}
.slider-container .swiper-button-prev {
  background-image: url(/img/slider-prev.svg);
  left: -30px;
}
.slider-container .swiper-button-next {
  background-image: url(/img/slider-next.svg);
  right: -30px;
}
.slider-container .swiper-button-prev.swiper-button-disabled {
  display: none !important;
  /*opacity:1;
  background-image:url(/img/slider-disabled-left.svg);*/
}
.slider-container .swiper-button-next.swiper-button-disabled {
  display: none !important;
  /*opacity:1;
  background-image:url(/img/slider-disabled-right.svg);*/
}
.slider-container .swiper-slide {
  opacity: 0;
  -webkit-transition: opacity 0.3s;
  -o-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.slider-container .swiper-slide-visible {
  opacity: 1;
}
.slider-container .swiper-pagination {
  margin-top: 30px;
  position: relative;
  display: none;
  font-size: 0;
}
.slider-container .swiper-pagination-horizontal {
  display: block;
}
.slider-container .swiper-pagination-bullet-active {
  background: #F09C1B;
}
.slider-container .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
}

.slider-arrow-position {
  --arrow-position:109px;
}
.slider-arrow-position .swiper-button-prev,
.slider-arrow-position .swiper-button-next {
  top: var(--arrow-position);
}

@media (max-width: 1399.98px) {
  .slider-arrow-position {
    --arrow-position:86px;
  }
}
@media (max-width: 1199.98px) {
  .slider-arrow-position {
    --arrow-position:97px;
  }
}
@media (max-width: 991.98px) {
  .slider-container .swiper-slide {
    opacity: 1;
  }
  .slider .swiper-slide {
    width: 50%;
  }
  .slider-big .swiper-slide {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .slider .swiper-slide {
    width: 75%;
  }
  .slider-big .swiper-slide {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .slider-big .swiper-slide {
    width: 75%;
  }
}
@media screen and (max-width: 425px) {
  .slider .swiper-slide {
    width: 90%;
  }
}
#sidebar {
  width: 100%;
}

.sidebar__inner {
  width: 100%;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  will-change: position, transform;
}

/* tabs */
.tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 14px 40px;
  border-radius: inherit;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  line-height: 1.275;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid transparent;
}
.tab--active {
  border: 1px solid #13991C;
  background: #F7FCF7;
  z-index: 1;
}
.tab__count {
  color: #999;
  margin-left: 6px;
}
.tab__new {
  margin-left: 10px;
  min-width: 20px;
  height: 20px;
  padding: 1px 4px 3px 4px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  font-size: 12px;
  line-height: 1.333;
  background: #13991C;
  border-radius: 10px;
}
.tab:not(.tab--active) {
  cursor: pointer;
  -o-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  -webkit-transition: opacity 0.2s ease;
}
.tab:not(.tab--active):hover {
  opacity: 0.7;
}

.tab-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  z-index: 2;
  border-radius: 14px;
}
.tab-container::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border: 1px solid #EEEEEE;
  border-radius: inherit;
  z-index: -1;
}
.tab-container--big {
  border-radius: 20px;
}
.tab-container--big .tab {
  padding: 0;
  text-align: left;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
.tab-container--big .item-content {
  padding: 30px;
}
.tab-container--vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.tab-container--company {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.tab-container--company .tab {
  padding-left: 27px;
  padding-right: 27px;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
}

.tab-container--product .tab-container__inner {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0 30px;
  width: -webkit-fill-available;
}
.tab-container--product .tab-container__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tab-container--product .tab-container__right {
  margin-right: -15px;
  margin-left: 40px;
}
.tab-container--product .tab-container__right .btn {
  white-space: nowrap;
}
.tab-container--product .tab {
  position: relative;
  padding: 27px 0;
  margin-right: 40px;
}
.tab-container--product .tab:last-child {
  margin-right: 0;
}
.tab-container--product .tab--active {
  background: none;
  border: none;
  border-radius: none;
}
.tab-container--product .tab--active:after {
  content: "";
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: var(--color-primary);
}

@media (max-width: 1199.98px) {
  .tab-container--product .tab-container__left {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .tab-container--product .tab-container__left .tab {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 auto;
    flex: 1 0 auto;
  }
}
.item-content {
  line-height: 1.5;
}
.item-content__name {
  margin-bottom: 6px;
}
.item-content__name:last-child {
  margin-bottom: 0;
}
.item-content__description {
  color: #999;
  font-size: 0.875em;
}

/* end tabs */
.tab-container-fake {
  height: 76px;
  display: none;
}

.tab-container-wrapper::-webkit-scrollbar {
  display: none;
}
.tab-container-wrapper .container {
  padding: 0;
}
.tab-container-wrapper .tab-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tab-container-wrapper .tab-container::before {
  display: none;
}
.tab-container-wrapper .tab-container__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  border-radius: 14px;
  z-index: 2;
}
.tab-container-wrapper .tab-container__inner::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  border: 1px solid var(--border-color-primary);
  border-radius: inherit;
  z-index: -1;
}

@media (max-width: 991.98px) {
  .tab-container-fake {
    display: block;
  }
  .tab-container-wrapper {
    position: absolute;
    width: 100%;
    left: 0;
    overflow: auto;
  }
  .tab-container-wrapper .container {
    padding: 0 0.75rem;
  }
  .tab-container-wrapper .tab-container {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .tab-container-wrapper .tab-container__inner {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 2;
    border-radius: 14px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
  .tab-container-wrapper .tab-container::after {
    content: "";
    display: block;
    width: 0.75rem;
  }
}
.type-container .tab {
  height: 100%;
  border-radius: 20px;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  padding: 20px;
  text-align: left;
  border: 1px solid #EEEEEE;
}
.type-container .tab--grey {
  background: #F7F9F8;
  border: none;
  cursor: default;
}
.type-container .tab--grey:hover {
  opacity: 1;
}
.type-container .tab--active {
  border: 1px solid #13991C;
}
.type-container .tab--active:hover {
  opacity: 1;
}
.type-container .tab a {
  text-decoration: underline;
  color: #007808;
}
.type-container .tab a:hover {
  text-decoration: none;
}
.type-container .tab .item-content {
  font-size: 14px;
}
.type-container .tab .item-content__name {
  line-height: 1.5;
}

@media (max-width: 575.98px) {
  .tab-container--radio {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.tag {
  border-radius: var(--border-radius-secondary);
  padding: 8px 12px;
  -webkit-transition: 0.2s ease;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  cursor: pointer;
}
.tag:hover {
  border-color: #F95E5E;
}
.tag--filled {
  background: var(--background-color-secondary);
  border: none;
}

.card-review {
  padding: 20px;
  border-radius: 20px;
  background: #fff;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.04), 0 8px 20px 0 rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.04), 0 8px 20px 0 rgba(0, 0, 0, 0.08);
}
.card-review .card__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 13px;
}
.card-review .card__profile {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.card-review .card__content {
  font-size: 16px;
  padding: 0;
}
.card-review .profile__icon .profile__social {
  display: none;
  position: absolute;
  bottom: -6px;
  right: -6px;
  border: 2px solid #fff;
  width: 22px;
  height: 22px;
}
.card-review > .card__rate {
  display: none;
  margin-top: 15px;
}

@media (max-width: 575.98px) {
  .card-review .card__head .card__rate {
    display: none;
  }
  .card-review .profile__content .profile__social {
    display: none;
  }
  .card-review .profile__icon .profile__social {
    display: block;
  }
  .card-review > .card__rate {
    display: block;
  }
}
.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.rating__item {
  width: 17px;
  height: 16px;
  background: url(/img/review-star-grey.svg) no-repeat 50% 50%/auto 100%;
  margin-right: 7px;
}

.rating__item:last-child {
  margin-right: 0;
}

.rating__item--filled {
  background-image: url(/img/review-star-orange.svg);
}

.input-rating .rating__item {
  width: 33px;
  height: 30px;
  margin-right: 7px;
}

.rate {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.rate::before {
  content: "";
  display: block;
  width: 11px;
  height: 10px;
  background: url(/img/rating-yellow.svg) no-repeat 50% 50%/auto 100%;
  margin-right: 6px;
}

.chat {
  border-radius: 10px;
  border: 1px solid #D3DCE9;
  overflow: hidden;
  height: 70vh;
  position: relative;
}
.chat__header {
  font-size: 12px;
  padding: 15px;
  background: #f4f8ff;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.chat__back {
  width: 15px;
  height: 20px;
  background: url(/img/dialog-back.svg) no-repeat 50% 50%/auto 100%;
  margin-right: 20px;
  cursor: pointer;
}
.chat__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.chat__dialogs {
  width: 290px;
  border-right: 1px solid #D3DCE9;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.chat__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  max-width: 100%;
  margin-left: -1px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
}
.chat__full {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto;
  position: relative;
}
.chat__full-inner {
  position: absolute;
  max-height: 100%;
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 15px;
  overflow: auto;
}
.chat__bottom {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  background: #f4f8ff;
  border-top: 1px solid #D3DCE9;
  border-left: 1px solid #D3DCE9;
  padding: 15px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.chat__attach {
  width: 20px;
  height: 20px;
  background: url(/img/dialog-attach.svg) no-repeat 50% 50%/auto 100%;
  margin-right: 20px;
  cursor: pointer;
}
.chat__input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #d3dce9;
  padding: 0 15px;
}
.chat__input-inner {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.chat__input-inner input {
  border: none;
  padding: 0;
  width: 100%;
  font-size: 14px;
}
.chat__send {
  margin-left: 15px;
  cursor: pointer;
  width: 18px;
  height: 18px;
  background: url(/img/dialog-send.svg) no-repeat 50% 50%/auto 100%;
}
.chat-user__img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 15px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.chat-user__img img {
  max-width: 100%;
}
.chat-user__name {
  font-weight: 600;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.chat-message:last-child {
  margin-bottom: 0;
}
.chat-message {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.chat-message__inner {
  font-size: 12px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
}
.chat-message__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  margin-bottom: 7px;
}
.chat-message__date {
  color: #8ba1bd;
  margin-left: 10px;
}
.chat-message__content {
  line-height: 1.5;
}
.chat-message__read {
  margin-left: 10px;
  width: 12px;
  height: 6px;
  background: url(/img/dialog-read.svg) no-repeat 50% 50%/auto 100%;
}
.chat-message__attach {
  cursor: pointer;
  margin-top: 7px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  color: #2175f2;
}
.chat-message__attach:before {
  content: "";
  display: block;
  width: 11px;
  height: 13px;
  background: url(/img/dialog-file.svg) no-repeat 50% 50%/auto 100%;
  margin-right: 7px;
}
.chat-dialog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px 15px 0 15px;
  font-size: 12px;
  cursor: pointer;
}
.chat-dialog--open {
  background: #f4f8ff;
}
.chat-dialog--open .chat-dialog__content {
  border: none;
}
.chat-dialog__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  padding-bottom: 15px;
  border-bottom: 1px solid #d3dce9;
}
.chat-dialog__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 10px;
}
.chat-dialog__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.chat-dialog__message {
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  overflow: hidden;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.chat-dialog__new {
  min-width: 15px;
  height: 15px;
  border-radius: 8px;
  background: #f6652c;
  color: #fff;
  font-size: 9px;
  line-height: 15px;
  padding: 0 3px;
  text-align: center;
  margin-left: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.chat-dialog__unread {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #8ba1bd;
  margin-left: 10px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .chat__dialogs {
    width: 100%;
    border: none;
  }
  .chat__content {
    margin-left: 0;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    transition: 0.3s;
    background: #fff;
  }
  .chat__content.open {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .chat__bottom {
    border-left: none;
    border-radius: 0 0 10px 10px;
  }
  .chat__header {
    border-radius: 10px 10px 0 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.field-attach-file {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 100%;
  background: #f6f6f6;
  border-radius: 13px;
}

.field-attach-name {
  width: 100%;
}

.field-attach-service {
  display: none;
  max-width: 100%;
  color: #999;
}

.field-attach-select {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.field-attach-inner {
  display: none;
  width: 100%;
  border-radius: 13px;
  overflow: hidden;
  position: relative;
}
.field-attach-inner img {
  cursor: pointer;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 0;
  vertical-align: top;
  -o-object-fit: cover;
  object-fit: cover;
}

.field-attach-remove {
  cursor: pointer;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 24px;
  height: 24px;
  background: url(/img/uploader-delete.svg) no-repeat 50% 50%/100% auto;
}

.field-attach-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.4);
  background-blend-mode: normal;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  color: #fff;
  font-size: 12px;
  padding: 5px 9px;
  z-index: 1;
}

.field-attach-errors p {
  margin: 5px 0;
}

.field-attach--variant .field-attach-file {
  background: #FFFFFF;
  border: 1px solid #eee;
}

.upload-item {
  border-radius: 14px;
  position: relative;
  width: 100%;
  padding-top: 100%;
  overflow: hidden;
}
.upload-item__inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.upload-item img {
  position: absolute;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.upload-item--select {
  background: #F7F9F8;
}
.upload-item__remove {
  position: absolute;
  width: 24px;
  height: 24px;
  background: url(/img/img-delete.svg) no-repeat 50% 50%/100% auto;
  right: 15px;
  top: 15px;
}

.page__header {
  padding: 30px 0;
  background: #fff;
  font-size: 18px;
}

@media (max-width: 575.98px) {
  .page__header {
    padding: 20px 0;
  }
}
.logo {
  display: block;
  width: 178px;
  height: 28px;
  background: url(/img/logo.svg) no-repeat 50% 50%/100% auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media (max-width: 991.98px) {
  .logo {
    width: 180px;
    height: 28px;
  }
}
.header-contact {
  text-align: right;
}

.header-phone {
  font-weight: bold;
  font-size: 20px;
}

.header-timetable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 12px;
  color: var(--color-grey);
  margin-bottom: 5px;
}
.header-timetable::before {
  content: "";
  width: 14px;
  height: 14px;
  background: url(/img/timetable.svg) no-repeat 50% 50%/100% auto;
  margin-right: 7px;
}

.icon-burger {
  position: relative;
  width: 24px;
  height: 16px;
  z-index: 6;
}

.icon-burger span {
  position: absolute;
  background-color: #022800;
  left: 0;
  top: 45%;
  width: 100%;
  height: 1.75px;
  border-radius: 50px;
}

.icon-burger:after, .icon-burger:before {
  content: "";
  background-color: #022800;
  position: absolute;
  width: 100%;
  height: 1.75px;
  border-radius: 50px;
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.icon-burger:before {
  top: 0;
}

.icon-burger:after {
  bottom: 0;
}

.icon-burger.active span {
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: all 0.2s ease 0s;
  -o-transition: all 0.2s ease 0s;
  transition: all 0.2s ease 0s;
}

.icon-burger.active:before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 6px;
}

.icon-burger.active:after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  bottom: 6px;
}

.btn-wrapper {
  padding: 13px 11px;
  background: #E02F30;
  border-radius: 0px;
}
.btn-wrapper .icon-burger {
  width: 18px;
  height: 14px;
}
.btn-wrapper .icon-burger span {
  background-color: #fff;
}
.btn-wrapper .icon-burger::before, .btn-wrapper .icon-burger::after {
  background-color: #fff;
}

.header-mobile-menu {
  display: none;
  background: #fff;
}

.menu-mobile {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  text-align: center;
}
.menu-mobile__section {
  padding: 30px 0;
  border-bottom: 1px solid #ddd;
}
.menu-mobile__section:last-child {
  border-bottom: 0;
}
.menu-mobile ul {
  list-style: none;
  font-size: 16px;
  font-weight: 500;
}
.menu-mobile ul li {
  margin-bottom: 20px;
}
.menu-mobile ul li:last-child {
  margin-bottom: 0;
}
.menu-mobile .header-contact {
  text-align: center;
  margin-bottom: 20px;
}
.menu-mobile .social {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.header-menu-item {
  cursor: pointer;
}

@media (max-width: 1399.98px) {
  .header-menu__item {
    margin-right: 20px;
  }
  .lk-btn-name {
    max-width: 135px !important;
  }
}
@media (max-width: 1199.98px) {
  .header-menu__item {
    display: none;
  }
  .btn-header-login {
    height: 47px;
    margin-left: 10px !important;
    min-width: 47px;
    padding: 0;
  }
  .btn-header-login::before {
    margin: 0;
  }
  .btn-header-cabinet {
    height: 47px;
    min-width: 47px;
    padding: 0;
    margin-left: 10px !important;
  }
  .btn-header-cabinet .profile__img {
    margin-right: 0px;
  }
  .btn-header-cabinet::after {
    display: none;
  }
  .btn-header-green {
    margin-left: 10px !important;
  }
}
.ui-autocomplete.ui-widget.ui-widget-content {
  border: none;
  border-radius: 10px;
  overflow: hidden;
  width: 100% !important;
  left: 0 !important;
  -webkit-box-shadow: 0px 10px 30px 5px rgba(0, 0, 0, 0.1), 0px 3px 10px 5px rgba(0, 0, 0, 0.02);
  box-shadow: 0px 10px 30px 5px rgba(0, 0, 0, 0.1), 0px 3px 10px 5px rgba(0, 0, 0, 0.02);
  padding: 15px;
  margin-top: 10px;
}

.ui-autocomplete .ui-menu-item-wrapper {
  padding: 10px;
  border-radius: 8px;
  border: none;
  color: #022800;
}

.ui-autocomplete .ui-menu-item .ui-state-active {
  background: #F7FCF7;
  font-weight: inherit;
  margin: 0;
}

.menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.menu__item {
  margin-right: 50px;
  position: relative;
  font-weight: 600;
  /*&--active::before {
    content:'';
    background:#36A9E1;
    height:1px;
    position:absolute;
    top:-1px;
    left:0;
    width: 100%;

  }*/
}
.menu__item:last-child {
  margin-right: 0;
}
.menu__item__inner {
  cursor: pointer;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
}
.menu__item__inner:hover {
  opacity: 0.7;
}

.menu--header {
  margin-left: 50px;
}

.menu--dropdown {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.menu--dropdown > .menu__item {
  margin-bottom: 20px;
  margin-right: 0;
  background: none;
  color: var(--color-grey);
  font-weight: 600;
  cursor: pointer;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  position: relative;
}
.menu--dropdown > .menu__item:last-child {
  margin-bottom: 0;
}
.menu--dropdown button.menu__item:hover, .menu--dropdown a.menu__item:hover, .menu--dropdown span.menu__item:hover {
  color: #FF4444;
}

button.menu__item {
  margin-bottom: 15px;
  margin-right: 0;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background: none;
  color: #022800;
  font-weight: normal;
  cursor: pointer;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
  position: relative;
}

.toggle-handler {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -o-transition: 0.2s ease;
  transition: 0.2s ease;
  -webkit-transition: 0.2s ease;
}
.toggle-handler:hover {
  color: #FF4444;
}
.toggle-handler::after {
  content: "";
  margin-left: 7px;
  width: 8px;
  height: 4px;
  background: url(/img/select-arrow.svg) no-repeat 50% 50%/auto 100%;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.toggle-handler--open::after {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.toggle-container {
  display: none;
}
.toggle-container__inner {
  padding-top: 15px;
  padding-left: 20px;
}
.toggle-container__inner .menu__item {
  display: block;
  font-weight: normal;
  margin-bottom: 10px;
  margin-right: 0px;
}
.toggle-container__inner .menu__item:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 992px) {
  .header-mobile-menu {
    display: none !important;
  }
}
.toggle-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
}
.toggle-header::after {
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  background: url(/img/head-white-arrow.svg);
  margin-left: 7px;
}

.toggle-box {
  display: none;
  margin-top: 15px;
}

.menu--toggle {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.menu--toggle .menu__item {
  margin-right: 0;
  margin-bottom: 15px;
  font-weight: normal;
}

.page__footer {
  background: var(--color-black);
  color: var(--color-white);
}

.footer__row {
  margin-bottom: 60px;
}
.footer__row:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}
.footer .toggle-handler::after {
  display: none;
}
.footer .social__item {
  width: 30px;
  height: 30px;
}

.footer-logo {
  background-image: url(/img/logo_light.svg);
  width: 153px;
  height: 23px;
}

.footer-phone {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: bold;
  font-size: 24px;
}
.footer-phone::before {
  content: "";
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 22px;
  height: 20px;
  background: url(/img/footer-phone.svg) no-repeat 50% 50%/auto 100%;
  margin-right: 10px;
}

.footer-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer-left {
  position: relative;
  z-index: 2;
  background: #000;
  padding: 60px 60px 90px 0;
  color: #BCBCBC;
}
.footer-left::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50vw;
  right: 0;
  background: inherit;
  z-index: -1;
}

.footer-right {
  padding: 60px 0 90px 60px;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.footer-text {
  line-height: 1.5;
}
.footer-text--grey {
  color: #7A7A7A;
}

.footer-form {
  width: 400px;
  line-height: 1.5;
}
.footer-form__name {
  font-weight: bold;
  color: #fff;
  font-size: 20px;
  margin-bottom: 4px;
}

@media (max-width: 1199.98px) {
  .footer-form {
    margin: 0 auto;
    max-width: 400px;
    width: 100%;
  }
  .footer-form__name {
    text-align: center;
  }
  .footer-form__name + div {
    text-align: center;
  }
  .footer-right {
    width: 100%;
    padding-left: 0;
  }
  .footer-left {
    padding-right: 0;
    width: 100%;
    padding-bottom: 60px;
  }
  .footer-left::before {
    left: auto;
    right: 100%;
  }
  .footer-left::after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    z-index: -1;
    background: #000;
    width: 50vw;
  }
}
@media (max-width: 767.98px) {
  .footer-text {
    text-align: center;
  }
  .footer-logo {
    margin: 0 auto;
  }
}
.scroll-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--color-white);
  cursor: pointer;
}
.scroll-top::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: url(/img/select-arrow-white.svg) no-repeat 50% 50%/50% auto;
  margin-right: 10px;
  vertical-align: middle;
  border: 1px solid rgba(255, 255, 255, 0.3);
  -webkit-transform: rotateX(180deg);
  transform: rotateX(180deg);
}

.main {
  position: relative;
  padding: 60px 0;
}
.main .title {
  font-size: 40px;
  line-height: 1.3;
  font-weight: bold;
}

.main-slogan {
  color: #E02F30;
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
}

.main-list {
  margin-top: 30px;
}
.main-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 22px;
  line-height: 1.5;
  margin-bottom: 25px;
}
.main-list__item:last-child {
  margin-bottom: 0;
}
.main-list__item span {
  width: 100%;
}
.main-list__item::before {
  content: "";
  width: 21px;
  height: 14px;
  background: url(/img/list-mark.svg) no-repeat 50% 50%/auto 100%;
  margin-right: 12px;
  margin-top: 9px;
}

.widget {
  min-height: 100px;
  background: #E02F30;
}

@media (max-width: 991.98px) {
  .main {
    padding-bottom: 0;
  }
  .main-slider {
    margin-bottom: 60px;
  }
}
@media (max-width: 575.98px) {
  .main .title {
    font-size: 7vw;
  }
  .main::before {
    background: url(/img/main-bg.jpg) no-repeat 80% 50%/cover;
  }
  .main--partner::before {
    background: url(/img/partner-bg.jpg) no-repeat 55% 50%/cover;
  }
}
.usp {
  color: #fff;
}
.usp__name {
  font-weight: bold;
  margin-bottom: 10px;
}
.usp__content {
  line-height: 1.5;
}
.usp__icon {
  height: 50px;
  margin-bottom: 30px;
}
.usp__icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.percent-icon {
  width: 335px;
  height: 335px;
  background: url(/img/percent-bg.svg) 50% 50%/100% auto;
  position: absolute;
  z-index: -1;
  top: -190px;
  left: 40px;
}
.percent-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}
.percent-description {
  color: var(--color-grey-light);
  line-height: 30px;
  font-size: 20px;
}
.percent-name {
  font-weight: bold;
}
.percent-bottom {
  background: var(--color-primary);
  padding: 40px;
}
.percent-item {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  border-right: 1px solid #EEEEEE;
  text-align: center;
  background: #fff;
}
.percent-item:last-child {
  border-right: none;
}
.percent-item--small {
  padding: 27px 0;
}
.percent-item--small .percent-name {
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 10px;
}
.percent-item--small .percent-description {
  font-size: 18px;
}
.percent-item--medium {
  padding: 35px 0;
}
.percent-item--medium .percent-name {
  font-size: 45px;
  line-height: 54px;
  margin-bottom: 11px;
}
.percent-item--large {
  padding: 40px 0;
}
.percent-item--large .percent-name {
  font-size: 65px;
  line-height: 79px;
  margin-bottom: 12px;
}
.percent-item--big {
  color: var(--color-white);
  background: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}
.percent-item--big .percent-name {
  font-size: 100px;
  line-height: 121px;
}
.percent-item--big .percent-description {
  color: inherit;
  opacity: 0.6;
}
.percent-item--big .percent-slogan {
  font-size: 30px;
  line-height: 1.5;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  text-align: left;
  margin-left: 60px;
}

.percent-title {
  margin-bottom: 20px;
}

@media (max-width: 991.98px) {
  .percent-icon {
    width: 300px;
    height: 300px;
    top: -154px;
    left: 16px;
  }
}
@media (max-width: 767.98px) {
  .percent-icon {
    width: 280px;
    height: 280px;
    top: -177px;
    left: unset;
    right: 0;
  }
  .percent-title {
    margin-bottom: 60px;
  }
}
@media (max-width: 575.98px) {
  .percent-item--big .percent-name {
    font-size: 80px;
    line-height: 95px;
  }
  .percent-item--big .percent-slogan {
    font-size: 24px;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
  }
}
.key-icon {
  width: 272px;
  height: 310px;
  background: url(/img/keys-bg.svg) 50% 50%/100% auto;
  position: absolute;
  z-index: 1;
  top: -170px;
  left: 40px;
}

@media (max-width: 991.98px) {
  .key-icon {
    top: -138px;
  }
}
@media (max-width: 767.98px) {
  .percent-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .percent-item {
    border-right: none;
    border-bottom: 1px solid #eee;
    padding-left: 40px;
    padding-right: 40px;
  }
  .percent-item:last-child {
    border-bottom: none;
  }
  .percent-item--small {
    width: 64%;
  }
  .percent-item--medium {
    width: 76%;
  }
  .percent-item--large {
    width: 88%;
  }
  .percent-item--big {
    padding: 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .percent-item--big .percent-slogan {
    margin-top: 30px;
    width: 100%;
    margin-left: 0;
    text-align: center;
  }
}
.map {
  height: 460px;
}
.map img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.way {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  font-size: 20px;
}
.way--last::before {
  display: none;
}
.way::before {
  --bg-size:8px;
  --bg-color:#fff;
  content: "";
  background-image: -o-radial-gradient(#DADADA 15%, var(--bg-color) 25%);
  background-image: radial-gradient(#DADADA 15%, var(--bg-color) 25%);
  background-size: var(--bg-size);
  background-repeat: repeat-x;
  background-position: calc(var(--bg-size) / 2) center;
  position: absolute;
  left: 50%;
  width: 100%;
  height: var(--bg-size);
  margin-left: calc((var(--dimension) + var(--border-width) * 2 - var(--bg-size)) / 2);
  top: calc((var(--dimension) + var(--border-width) * 2 - var(--bg-size)) / 2);
  z-index: -1;
}
.way-container {
  --border-width:6px;
  --dimension:30px;
  margin: calc(40px - var(--border-width)) 0 40px 0;
  position: relative;
  z-index: 2;
}
.way__number {
  color: var(--color-white);
  background: var(--color-primary);
  font-weight: bold;
  width: calc(var(--dimension) + var(--border-width) * 2);
  height: calc(var(--dimension) + var(--border-width) * 2);
  line-height: var(--dimension);
  margin-bottom: 20px;
  border: var(--border-width) solid #fff;
}
.way__name {
  line-height: 1.5;
}

@media (max-width: 991.98px) {
  .way--row-last::before {
    display: none;
  }
}
@media (max-width: 575.98px) {
  .way::before {
    display: none;
  }
}
.product-slider-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.product-slider-prev,
.product-slider-next {
  width: 40px;
  height: 40px;
  background: no-repeat 50% 50%/100% auto;
  cursor: pointer;
}

.product-slider-prev {
  margin-right: 10px;
}

.product-slider-prev {
  background-image: url(/img/slider-left.svg);
}

.product-slider-prev.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}

.product-slider-next {
  background-image: url(/img/slider-right.svg);
}

.product-slider-next.swiper-button-disabled {
  opacity: 0.5;
  cursor: default;
}

.page__section--dark .product-slider-prev {
  background-image: url(/img/slider-left-light.svg);
}
.page__section--dark .product-slider-next {
  background-image: url(/img/slider-right-light.svg);
}

.key-slider-bg {
  position: relative;
}
.key-slider-bg::before {
  content: "";
  position: absolute;
  height: 140px;
  left: 0;
  top: 0;
  width: 100%;
  background: #EBEBEB;
}

@media (max-width: 991.98px) {
  .product-slider .swiper-slide {
    width: 370px;
  }
}
@media (max-width: 575.98px) {
  .product-slider .swiper-slide {
    width: 275px;
  }
}
.quote-box {
  position: relative;
  z-index: 2;
  padding: 20px 50px;
  text-align: center;
  line-height: 1.5;
  font-size: 24px;
  color: #fff;
  margin-top: 70px;
}
.quote-box::before {
  content: "";
  width: 100px;
  height: 80px;
  background: url(/img/quote-bg.svg) no-repeat 50% 50%/100% auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.quote-box::after {
  content: "";
  width: 100px;
  height: 80px;
  background: url(/img/quote-bg.svg) no-repeat 50% 50%/100% auto;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}

@media (max-width: 575.98px) {
  .quote-box {
    font-size: 18px;
  }
}
.form-container--request {
  background: url(/img/experience-bg.jpg) no-repeat 50% 50%/cover;
  padding: 120px 0;
  color: var(--color-white);
}
.form-container--question {
  background: url(/img/footer-bg-1.jpg) no-repeat 50% 50%/cover;
  padding: 90px 0;
  color: var(--color-white);
}

.form-bg {
  padding: 40px;
  background: rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
}
.form-bg__bottom {
  margin: 40px -40px -40px;
  background: rgba(255, 255, 255, 0.07);
  padding: 20px;
  text-align: center;
  color: #bbb;
  line-height: 1.5;
}
.form-bg__bottom .header-phone {
  font-size: 20px;
  color: var(--color-white);
}

@media (max-width: 575.98px) {
  .form-bg {
    padding: 20px;
  }
  .form-bg__bottom {
    margin: 40px -20px -20px;
  }
}
@media (max-width: 1199.98px) {
  .form-container--request .title {
    text-align: center;
    margin-bottom: 0;
  }
}
.advantage {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.advantage__img {
  width: 100px;
  height: 100px;
  margin-right: 30px;
  position: relative;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.advantage__img::before {
  content: "";
  width: 20px;
  height: 20px;
  border-left: 7px solid var(--color-primary);
  border-top: 7px solid var(--color-primary);
  position: absolute;
  left: 0;
  top: 0;
}
.advantage__img img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  right: 0;
  bottom: 0;
}
.advantage--stage {
  position: relative;
}
.advantage--stage .advantage__img {
  margin-right: 50px;
}
.advantage--stage .advantage__img::before {
  display: none;
}
.advantage--stage::before {
  --bg-color:#fff;
  content: "";
  position: absolute;
  top: 120px;
  bottom: -20px;
  width: 10px;
  left: 60px;
  background-image: -o-radial-gradient(#D8D8D8 15%, var(--bg-color) 25%);
  background-image: radial-gradient(#D8D8D8 15%, var(--bg-color) 25%);
  background-size: 8px 8px;
  background-repeat: repeat-y;
  background-position: 4px center;
}
.advantage--stage:last-child::before {
  display: none;
}
.advantage__number {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background: var(--color-primary);
  text-align: center;
  line-height: 20px;
  font-weight: bold;
  color: var(--color-white);
}
.advantage__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-top: 45px;
}
.advantage__name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 14px;
}
.advantage__description {
  line-height: 1.5;
}

.advantage-container {
  max-width: 660px;
  margin: 0 auto;
}
.advantage-container .advantage--stage {
  padding-bottom: 40px;
}
.advantage-container .advantage--stage:last-child {
  padding-bottom: 0;
}

@media (max-width: 575.98px) {
  .advantage {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .advantage__img {
    width: 80px;
    height: 80px;
    margin-right: 0;
  }
  .advantage__img img {
    max-width: 70%;
    max-height: 70%;
  }
  .advantage__content {
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
    padding-top: 20px;
  }
  .advantage--stage::before {
    display: none;
  }
}
.page__section--experience {
  background: url(/img/experience-bg.jpg) no-repeat 50% 50%/cover;
  padding: 90px 0;
  color: var(--color-white);
}

.experience {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.experience__value {
  font-size: 47px;
  font-weight: Bold;
}
.experience__star {
  margin: 12px 0 20px 0;
  width: 21px;
  height: 20px;
  background: url(/img/experience-delimeter.svg) no-repeat 50% 50%/auto 100%;
}
.experience__content {
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.textpage__content {
  font-size: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.textpage__content h2 {
  font-size: 24px;
  margin: 20px 0 !important;
  line-height: 1.5;
}
.textpage__content h3 {
  font-size: 20px;
  margin: 20px 0 !important;
  line-height: 1.5;
}
.textpage__content p {
  margin: 20px 0 !important;
  line-height: 1.5;
}
.textpage__content ul, .textpage__content ol {
  margin: 20px 0 !important;
  line-height: 1.5;
  padding-left: 30px;
}
.textpage__content a {
  text-decoration: underline;
  color: var(--color-active);
  cursor: pointer;
}
.textpage__content a :hover {
  text-decoration: none;
}
.textpage__content img {
  width: 100%;
}
.textpage__content strong {
  font-weight: 700;
}

.cookie-notice {
  position: fixed;
  left: 30px;
  bottom: 30px;
  border-radius: 15px;
  border: 1px solid #eee;
  padding: 20px 30px;
  max-width: 980px;
  opacity: 0;
  font-size: 14px;
  line-height: 1.7;
  z-index: 1000;
  -webkit-backdrop-filter: saturate(150%) blur(15px);
  backdrop-filter: saturate(150%) blur(15px);
  background-color: hsla(0, 0%, 100%, 0.7);
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  -webkit-transform: translate3d(0, 15px, 0);
  transform: translate3d(0, 15px, 0);
}
.cookie-notice--show {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

@media (max-width: 991.98px) {
  .cookie-notice {
    bottom: 0;
    left: 0;
    padding: 15px;
    font-size: 12px;
    max-width: 100%;
    border-radius: 15px 15px 0 0;
  }
}
@media (max-width: 767.98px) {
  .cookie-notice {
    font-size: 10px;
  }
  .cookie-notice .btn {
    font-size: 12px;
  }
}
.why-container {
  position: relative;
}
.why-container .title {
  margin-bottom: 20px;
}
.why-container p {
  font-size: 16px;
  margin: 0 auto;
  line-height: 1.5;
  text-align: center;
  max-width: 639px;
}
.why-container::before {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -500px;
  top: 0;
  width: 163px;
  height: 132px;
  background: url(/img/blurred-bouquet-berry.png) 50% 50%/cover;
}
.why-container::after {
  content: "";
  position: absolute;
  right: 50%;
  margin-right: -590px;
  top: 18px;
  width: 208px;
  height: 193px;
  background: url(/img/blurred-bouquet-vegetables.png) 50% 50%/cover;
}

@media (max-width: 767.98px) {
  .why-container {
    padding-bottom: 150px;
  }
  .why-container::before {
    left: 50%;
    margin-left: -165px;
    width: 143px;
    height: 115px;
    bottom: -6px;
    top: unset;
  }
  .why-container::after {
    right: 50%;
    margin-right: -125px;
    width: 182px;
    height: 169px;
    bottom: -50px;
    top: unset;
  }
}
.title-text {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.review-container {
  background: var(--background-color-secondary);
  padding-top: var(--section-padding);
  padding-bottom: 0.1px;
  border-radius: 20px 20px 0 0;
}

.review-slider {
  padding: 0 40px;
  position: relative;
}
.review-slider::before {
  content: "";
  position: absolute;
  background: var(--background-color-secondary);
  height: 50%;
  top: 0;
  left: 0;
  width: 100%;
  border-radius: 0 0 20px 20px;
}

@media (max-width: 991.98px) {
  .section-review-title {
    background: var(--background-color-secondary);
    border-radius: 20px 20px 0 0;
  }
  .section-review-slider {
    position: relative;
  }
  .section-review-slider::before {
    content: "";
    position: absolute;
    height: 50%;
    width: 100%;
    left: 0;
    top: 0;
    background: var(--background-color-secondary);
    border-radius: 0 0 20px 20px;
  }
  .review-slider {
    padding: 0;
  }
}
@media (max-width: 767.98px) {
  .review-slider .swiper-slide {
    width: 450px;
  }
}
@media (max-width: 575.98px) {
  .review-slider .swiper-slide {
    width: 280px;
  }
}
label {
  font-weight: 400;
  max-width: unset;
  margin-bottom: 0;
}

.rc-search_form label {
  display: inline-block;
  max-width: 100%;
  margin-bottom: 5px;
  font-weight: 700;
}

.location-box__address {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 30px;
}
.location-box__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-partner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page-partner__content {
  padding: 60px;
  width: 50%;
}
.page-partner__bg {
  background: url(/img/partners-bg.jpg) no-repeat 50% 50%/cover;
  width: 50%;
}

.page-partner-title {
  display: none;
}
.page-partner-title .bg-header::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}

@media (max-width: 991.98px) {
  .page-partner-title {
    display: block;
  }
  .page-partner__content {
    max-width: 720px;
    margin: 0 auto;
    padding: 60px 0.75rem;
    width: 100%;
  }
  .page-partner__bg {
    display: none;
  }
  .page-partner__content {
    padding-top: 30px;
  }
}
@media (max-width: 767.98px) {
  .page-partner__content {
    max-width: 540px;
  }
}
@media (max-width: 575.98px) {
  .page-partner__content {
    max-width: 100%;
  }
}
.contact-box {
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px;
  height: 100%;
}
.contact-box__content {
  font-size: 14px;
  line-height: 1.5;
}
.contact-box__bold {
  font-weight: bold;
  font-size: 18px;
}
.contact-box__icon {
  margin-bottom: 30px;
}
.contact-box__icon img {
  height: 40px;
  -o-object-fit: cover;
  object-fit: cover;
}

.form-box {
  margin-bottom: 40px;
}
.form-box:last-child {
  margin-bottom: 0;
}
.form-box__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
}
.form-box .as-link {
  color: #007808;
  text-decoration: none;
}
.form-box .as-link:hover {
  text-decoration: underline;
}
.form-box .as-link--underline {
  text-decoration: underline !important;
}
.form-box .as-link--underline:hover {
  text-decoration: none !important;
}
/*# sourceMappingURL=main.css.map */