

/* Start:/bitrix/templates/konakovo.com-frogstudios/css/lib/air-datepicker.css?174315206622602*/
.air-datepicker-cell.-year-.-other-decade-,
.air-datepicker-cell.-day-.-other-month- {
  color: var(--adp-color-other-month);
}
.air-datepicker-cell.-year-.-other-decade-:hover,
.air-datepicker-cell.-day-.-other-month-:hover {
  color: #039191;
}
.-disabled-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-disabled-.-focus-.air-datepicker-cell.-day-.-other-month- {
  color: var(--adp-color-other-month);
}
.-selected-.air-datepicker-cell.-year-.-other-decade-,
.-selected-.air-datepicker-cell.-day-.-other-month- {
  color: #fff;
  background: var(--adp-background-color-selected-other-month);
}
.-selected-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-selected-.-focus-.air-datepicker-cell.-day-.-other-month- {
    
  background: var(--adp-background-color-selected-other-month-focused);
}
.-in-range-.air-datepicker-cell.-year-.-other-decade-,
.-in-range-.air-datepicker-cell.-day-.-other-month- {
  background-color: var(--adp-background-color-in-range);
  color: var(--adp-color);
  
}
.-in-range-.-focus-.air-datepicker-cell.-year-.-other-decade-,
.-in-range-.-focus-.air-datepicker-cell.-day-.-other-month- {
  background-color: var(--adp-background-color-in-range-focused);
}
.air-datepicker-cell.-year-.-other-decade-:empty,
.air-datepicker-cell.-day-.-other-month-:empty {
  background: none;
  border: none;
}
.air-datepicker-cell {
  border-radius: var(--adp-cell-border-radius);
  box-sizing: border-box;
  cursor: pointer;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.air-datepicker-cell.-focus- {
  background: var(--adp-cell-background-color-hover);
}
.air-datepicker-cell.-current- {
  color: var(--adp-color-current-date);
}
.air-datepicker-cell.-current-.-focus- {
  color: var(--adp-color);
}
.air-datepicker-cell.-current-.-in-range- {
  color: var(--adp-color-current-date);
}
.air-datepicker-cell.-disabled- {
  cursor: default;
  color: var(--adp-color-disabled);
}
.air-datepicker-cell.-disabled-.-focus- {
  color: var(--adp-color-disabled);
}
.air-datepicker-cell.-disabled-.-in-range- {
  color: var(--adp-color-disabled-in-range);
}
.air-datepicker-cell.-disabled-.-current-.-focus- {
  color: var(--adp-color-disabled);
}
.air-datepicker-cell.-in-range- {
  background: var(--adp-cell-background-color-in-range);
  border-radius: 0;
}
.air-datepicker-cell.-in-range-:hover,
.air-datepicker-cell.-in-range-.-focus- {
  background: #039191;
}
.air-datepicker-cell.-range-from- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius);
}
.air-datepicker-cell.-range-to- {
  border: 1px solid var(--adp-cell-border-color-in-range);
  background-color: var(--adp-cell-background-color-in-range);
  border-radius: 0 var(--adp-cell-border-radius) var(--adp-cell-border-radius) 0;
}
.air-datepicker-cell.-range-to-.-range-from- {
  border-radius: var(--adp-cell-border-radius);
}
.air-datepicker-cell.-selected- {
  color: #fff;
  border: none;
  background: var(--adp-cell-background-color-selected);
}
.air-datepicker-cell.-selected-.-current- {
  color: #fff;
  background: var(--adp-cell-background-color-selected);
}
.air-datepicker-cell.-selected-.-focus- {
  background: var(--adp-cell-background-color-selected-hover);
}
.air-datepicker-body {
  transition: all var(--adp-transition-duration) var(--adp-transition-ease);
}
.air-datepicker-body.-hidden- {
  display: none;
}
.air-datepicker-body--day-names {
  display: grid;
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  margin: 8px 0 3px;
}
.air-datepicker-body--day-name {
  color: var(--adp-day-name-color);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  text-transform: uppercase;
  font-size: 0.8em;
}
.air-datepicker-body--day-name.-clickable- {
  cursor: pointer;
}
.air-datepicker-body--day-name.-clickable-:hover {
  color: #039191;
}
.air-datepicker-body--cells {
  display: grid;
}
.air-datepicker-body--cells.-days- {
  grid-template-columns: repeat(7, var(--adp-day-cell-width));
  grid-auto-rows: var(--adp-day-cell-height);
}
.air-datepicker-body--cells.-months- {
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: var(--adp-month-cell-height);
}
.air-datepicker-body--cells.-years- {
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: var(--adp-year-cell-height);
}
.air-datepicker-nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--adp-border-color-inner);
  min-height: var(--adp-nav-height);
  padding: var(--adp-padding);
  box-sizing: content-box;
}
.-only-timepicker- .air-datepicker-nav {
  display: none;
}
.air-datepicker-nav--title,
.air-datepicker-nav--action {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.air-datepicker-nav--action {
  width: var(--adp-nav-action-size);
  border-radius: var(--adp-border-radius);
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.air-datepicker-nav--action:hover {
    color: #fff;
  background: #039191;
}
.air-datepicker-nav--action:active {
  background: var(--adp-background-color-active);
}
.air-datepicker-nav--action.-disabled- {
  visibility: hidden;
}
.air-datepicker-nav--action svg {
  width: 32px;
  height: 32px;
  
  path {
    stroke: #4C4C4C;
  }
}
.air-datepicker-nav--action:hover path{
    stroke: #fff;
}
.air-datepicker-nav--action path {
  fill: none;
  stroke: var(--adp-nav-arrow-color);
  stroke-width: 2px;
}
.air-datepicker-nav--title {
  border-radius: var(--adp-border-radius);
  padding: 0 8px;
}
.air-datepicker-nav--title i {
  font-style: normal;
  color: var(--adp-nav-color-secondary);
  margin-left: 0.3em;
}
.air-datepicker-nav--title:hover {
    color: #fff;
  background: #039191;
}
.air-datepicker-nav--title:active {
  background: var(--adp-background-color-active);
}
.air-datepicker-nav--title.-disabled- {
  cursor: default;
  background: none;
}
.air-datepicker-buttons {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.air-datepicker-button {
  display: inline-flex;
  color: var(--adp-btn-color);
  border-radius: var(--adp-btn-border-radius);
  cursor: pointer;
  height: var(--adp-btn-height);
  border: none;
  background: rgba(255, 255, 255, 0);
}
.air-datepicker-button:hover {
    color: #fff;
  background: #039191;
}
.air-datepicker-button:focus {
  color: var(--adp-btn-color-hover);
  background: var(--adp-btn-background-color-hover);
  outline: none;
}
.air-datepicker-button:active {
  background: var(--adp-btn-background-color-active);
}
.air-datepicker-button span {
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.air-datepicker-time {
  display: grid;
  grid-template-columns: max-content 1fr;
  grid-column-gap: 12px;
  align-items: center;
  position: relative;
  padding: 0 var(--adp-time-padding-inner);
}
.-only-timepicker- .air-datepicker-time {
  border-top: none;
}
.air-datepicker-time--current {
  display: flex;
  align-items: center;
  flex: 1;
  font-size: 14px;
  text-align: center;
}
.air-datepicker-time--current-colon {
  margin: 0 2px 3px;
  line-height: 1;
}
.air-datepicker-time--current-hours,
.air-datepicker-time--current-minutes {
  line-height: 1;
  font-size: 19px;
  font-family: "Century Gothic", CenturyGothic, AppleGothic, sans-serif;
  position: relative;
  z-index: 1;
}
.air-datepicker-time--current-hours:after,
.air-datepicker-time--current-minutes:after {
  content: "";
  background: var(--adp-background-color-hover);
  border-radius: var(--adp-border-radius);
  position: absolute;
  left: -2px;
  top: -3px;
  right: -2px;
  bottom: -2px;
  z-index: -1;
  opacity: 0;
}
.air-datepicker-time--current-hours.-focus-:after,
.air-datepicker-time--current-minutes.-focus-:after {
  opacity: 1;
}
.air-datepicker-time--current-ampm {
  text-transform: uppercase;
  align-self: flex-end;
  color: var(--adp-time-day-period-color);
  margin-left: 6px;
  font-size: 11px;
  margin-bottom: 1px;
}
.air-datepicker-time--row {
  display: flex;
  align-items: center;
  font-size: 11px;
  height: 17px;
  background: linear-gradient(
      to right,
      var(--adp-time-track-color),
      var(--adp-time-track-color)
    )
    left 50%/100% var(--adp-time-track-height) no-repeat;
}
.air-datepicker-time--row:first-child {
  margin-bottom: 4px;
}
.air-datepicker-time--row input[type="range"] {
  background: none;
  cursor: pointer;
  flex: 1;
  height: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
}
.air-datepicker-time--row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.air-datepicker-time--row input[type="range"]::-ms-tooltip {
  display: none;
}
.air-datepicker-time--row input[type="range"]:hover::-webkit-slider-thumb {
  border-color: #039191;
}
.air-datepicker-time--row input[type="range"]:hover::-moz-range-thumb {
  border-color: #039191;
}
.air-datepicker-time--row input[type="range"]:hover::-ms-thumb {
  border-color: #039191;
}
.air-datepicker-time--row input[type="range"]:focus {
  outline: none;
}
.air-datepicker-time--row input[type="range"]:focus::-webkit-slider-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}
.air-datepicker-time--row input[type="range"]:focus::-moz-range-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}
.air-datepicker-time--row input[type="range"]:focus::-ms-thumb {
  background: var(--adp-cell-background-color-selected);
  border-color: var(--adp-cell-background-color-selected);
}
.air-datepicker-time--row input[type="range"]::-webkit-slider-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -webkit-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}
.air-datepicker-time--row input[type="range"]::-moz-range-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -moz-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}
.air-datepicker-time--row input[type="range"]::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid var(--adp-time-track-color);
  background: #fff;
  cursor: pointer;
  -ms-transition: background var(--adp-transition-duration);
  transition: background var(--adp-transition-duration);
}
.air-datepicker-time--row input[type="range"]::-webkit-slider-thumb {
  margin-top: calc(var(--adp-time-thumb-size) / 2 * -1);
}
.air-datepicker-time--row input[type="range"]::-webkit-slider-runnable-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}
.air-datepicker-time--row input[type="range"]::-moz-range-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}
.air-datepicker-time--row input[type="range"]::-ms-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: rgba(0, 0, 0, 0);
  background: rgba(0, 0, 0, 0);
}
.air-datepicker-time--row input[type="range"]::-ms-fill-lower {
  background: rgba(0, 0, 0, 0);
}
.air-datepicker-time--row input[type="range"]::-ms-fill-upper {
  background: rgba(0, 0, 0, 0);
}
.air-datepicker {
  --adp-font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
    "Segoe UI Symbol";
  --adp-font-size: 14px;
  --adp-width: 246px;
  --adp-z-index: 100;
  --adp-padding: 4px;
  --adp-grid-areas: "nav" "body" "timepicker" "buttons";
  --adp-transition-duration: 0.3s;
  --adp-transition-ease: ease-out;
  --adp-transition-offset: 8px;
  --adp-background-color: #fff;
  --adp-background-color-hover: #f0f0f0;
  --adp-background-color-active: #eaeaea;
  --adp-background-color-in-range: rgba(240, 0, 0, 0.1);
  --adp-background-color-in-range-focused: rgba(92, 196, 239, 0.2);
  --adp-background-color-selected-other-month-focused: #8ad5f4;
  --adp-background-color-selected-other-month: #a2ddf6;
  --adp-color: #4a4a4a;
  --adp-color-secondary: #9c9c9c;
  --adp-accent-color: #039191;
  --adp-color-current-date: #039191;
  --adp-color-other-month: #dedede;
  --adp-color-disabled: #aeaeae;
  --adp-color-disabled-in-range: #039191;
  --adp-color-other-month-hover: #039191;
  --adp-border-color: #dbdbdb;
  --adp-border-color-inner: #efefef;
  --adp-border-radius: 4px;
  --adp-border-color-inline: #d7d7d7;
  --adp-nav-height: 32px;
  --adp-nav-arrow-color: #039191;
  --adp-nav-action-size: 32px;
  --adp-nav-color-secondary: var(--adp-color-secondary);
  --adp-day-name-color: #4C4C4C66;
  --adp-day-name-color-hover: #8ad5f4;
  --adp-day-cell-width: 1fr;
  --adp-day-cell-height: 32px;
  --adp-month-cell-height: 42px;
  --adp-year-cell-height: 56px;
  --adp-pointer-size: 10px;
  --adp-poiner-border-radius: 2px;
  --adp-pointer-offset: 14px;
  --adp-cell-border-radius: 4px;
  --adp-cell-background-color-hover: var(--adp-background-color-hover);
  --adp-cell-background-color-selected: #039191;
  --adp-cell-background-color-selected-hover: #039191;
  --adp-cell-background-color-in-range: rgba(92, 196, 239, 0.1);
  --adp-cell-background-color-in-range-hover: rgba(92, 196, 239, 0.2);
  --adp-cell-border-color-in-range: var(--adp-cell-background-color-selected);
  --adp-btn-height: 32px;
  --adp-btn-color: var(--adp-accent-color);
  --adp-btn-color-hover: var(--adp-color);
  --adp-btn-border-radius: var(--adp-border-radius);
  --adp-btn-background-color-hover: var(--adp-background-color-hover);
  --adp-btn-background-color-active: var(--adp-background-color-active);
  --adp-time-track-height: 1px;
  --adp-time-track-color: #dedede;
  --adp-time-track-color-hover: #b1b1b1;
  --adp-time-thumb-size: 12px;
  --adp-time-padding-inner: 10px;
  --adp-time-day-period-color: var(--adp-color-secondary);
  --adp-mobile-font-size: 16px;
  --adp-mobile-nav-height: 40px;
  --adp-mobile-width: 320px;
  --adp-mobile-day-cell-height: 38px;
  --adp-mobile-month-cell-height: 48px;
  --adp-mobile-year-cell-height: 64px;
}
.air-datepicker-cell.-weekend- {
    color:#C82A20;
}
.air-datepicker-cell.-weekend-.-selected- {
    color: #ffffff; 
    /* background-color: #ff5555;  */
  }
.air-datepicker-overlay {
  --adp-overlay-background-color: rgba(0, 0, 0, 0.3);
  --adp-overlay-transition-duration: 0.3s;
  --adp-overlay-transition-ease: ease-out;
  --adp-overlay-z-index: 99;
}
.air-datepicker {
    
  background: var(--adp-background-color);
  border: 1px solid var(--adp-border-color);
  box-shadow: 0px 0px 14px 0px #091E6526;
  border-radius: var(--adp-border-radius);
  box-sizing: content-box;
  display: grid;
  z-index: 60;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, max-content);
  grid-template-areas: var(--adp-grid-areas);
  font-family: var(--adp-font-family), sans-serif;
  font-size: var(--adp-font-size);
  color: var(--adp-color);
  width: var(--adp-width);
  position: absolute;
  transition: opacity var(--adp-transition-duration) var(--adp-transition-ease),
    transform var(--adp-transition-duration) var(--adp-transition-ease);
  z-index: var(--adp-z-index);
}
.air-datepicker:not(.-custom-position-) {
  opacity: 0;
}
.air-datepicker.-from-top- {
  transform: translateY(calc(var(--adp-transition-offset) * -1));
}
.air-datepicker.-from-right- {
  transform: translateX(var(--adp-transition-offset));
}
.air-datepicker.-from-bottom- {
  transform: translateY(var(--adp-transition-offset));
}
.air-datepicker.-from-left- {
  transform: translateX(calc(var(--adp-transition-offset) * -1));
}
.air-datepicker.-active-:not(.-custom-position-) {
  transform: translate(0, 0);
  opacity: 1;
}
.air-datepicker.-active-.-custom-position- {
  transition: none;
}
.air-datepicker.-inline- {
  border-color: var(--adp-border-color-inline);
  box-shadow: none;
  position: static;
  left: auto;
  right: auto;
  opacity: 1;
  transform: none;
}
.air-datepicker.-inline- .air-datepicker--pointer {
  display: none;
}
.air-datepicker.-is-mobile- {
  --adp-font-size: var(--adp-mobile-font-size);
  --adp-day-cell-height: var(--adp-mobile-day-cell-height);
  --adp-month-cell-height: var(--adp-mobile-month-cell-height);
  --adp-year-cell-height: var(--adp-mobile-year-cell-height);
  --adp-nav-height: var(--adp-mobile-nav-height);
  --adp-nav-action-size: var(--adp-mobile-nav-height);
  position: fixed;
  width: var(--adp-mobile-width);
  border: none;
}
.air-datepicker.-is-mobile- * {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.air-datepicker.-is-mobile- .air-datepicker--pointer {
  display: none;
}
.air-datepicker.-is-mobile-:not(.-custom-position-) {
  transform: translate(-50%, calc(-50% + var(--adp-transition-offset)));
}
.air-datepicker.-is-mobile-.-active-:not(.-custom-position-) {
  transform: translate(-50%, -50%);
}
.air-datepicker.-custom-position- {
  transition: none;
}
.air-datepicker-global-container {
  position: absolute;
  left: 0;
  top: 0;
}
.air-datepicker--pointer {
  --pointer-half-size: calc(var(--adp-pointer-size) / 2);
  position: absolute;
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  z-index: -1;
}
.air-datepicker--pointer:after {
  content: "";
  position: absolute;
  background: #fff;
  border-top: 1px solid var(--adp-border-color-inline);
  border-right: 1px solid var(--adp-border-color-inline);
  border-top-right-radius: var(--adp-poiner-border-radius);
  width: var(--adp-pointer-size);
  height: var(--adp-pointer-size);
  box-sizing: border-box;
}
.-top-left- .air-datepicker--pointer,
.-top-center- .air-datepicker--pointer,
.-top-right- .air-datepicker--pointer,
[data-popper-placement^="top"] .air-datepicker--pointer {
  top: calc(100% - var(--pointer-half-size) + 1px);
}
.-top-left- .air-datepicker--pointer:after,
.-top-center- .air-datepicker--pointer:after,
.-top-right- .air-datepicker--pointer:after,
[data-popper-placement^="top"] .air-datepicker--pointer:after {
  transform: rotate(135deg);
}
.-right-top- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer,
.-right-bottom- .air-datepicker--pointer,
[data-popper-placement^="right"] .air-datepicker--pointer {
  right: calc(100% - var(--pointer-half-size) + 1px);
}
.-right-top- .air-datepicker--pointer:after,
.-right-center- .air-datepicker--pointer:after,
.-right-bottom- .air-datepicker--pointer:after,
[data-popper-placement^="right"] .air-datepicker--pointer:after {
  transform: rotate(225deg);
}
.-bottom-left- .air-datepicker--pointer,
.-bottom-center- .air-datepicker--pointer,
.-bottom-right- .air-datepicker--pointer,
[data-popper-placement^="bottom"] .air-datepicker--pointer {
  bottom: calc(100% - var(--pointer-half-size) + 1px);
}
.-bottom-left- .air-datepicker--pointer:after,
.-bottom-center- .air-datepicker--pointer:after,
.-bottom-right- .air-datepicker--pointer:after,
[data-popper-placement^="bottom"] .air-datepicker--pointer:after {
  transform: rotate(315deg);
}
.-left-top- .air-datepicker--pointer,
.-left-center- .air-datepicker--pointer,
.-left-bottom- .air-datepicker--pointer,
[data-popper-placement^="left"] .air-datepicker--pointer {
  left: calc(100% - var(--pointer-half-size) + 1px);
}
.-left-top- .air-datepicker--pointer:after,
.-left-center- .air-datepicker--pointer:after,
.-left-bottom- .air-datepicker--pointer:after,
[data-popper-placement^="left"] .air-datepicker--pointer:after {
  transform: rotate(45deg);
}
.-top-left- .air-datepicker--pointer,
.-bottom-left- .air-datepicker--pointer {
  left: var(--adp-pointer-offset);
}
.-top-right- .air-datepicker--pointer,
.-bottom-right- .air-datepicker--pointer {
  right: var(--adp-pointer-offset);
}
.-top-center- .air-datepicker--pointer,
.-bottom-center- .air-datepicker--pointer {
  left: calc(50% - var(--adp-pointer-size) / 2);
}
.-left-top- .air-datepicker--pointer,
.-right-top- .air-datepicker--pointer {
  top: var(--adp-pointer-offset);
}
.-left-bottom- .air-datepicker--pointer,
.-right-bottom- .air-datepicker--pointer {
  bottom: var(--adp-pointer-offset);
}
.-left-center- .air-datepicker--pointer,
.-right-center- .air-datepicker--pointer {
  top: calc(50% - var(--adp-pointer-size) / 2);
}
.air-datepicker--navigation {
  grid-area: nav;
}
.air-datepicker--content {
  box-sizing: content-box;
  padding: var(--adp-padding);
  grid-area: body;
}
.-only-timepicker- .air-datepicker--content {
  display: none;
}
.air-datepicker--time {
  grid-area: timepicker;
}
.air-datepicker--buttons {
  grid-area: buttons;
}
.air-datepicker--buttons,
.air-datepicker--time {
  padding: var(--adp-padding);
  border-top: 1px solid var(--adp-border-color-inner);
}
.air-datepicker-overlay {
  position: fixed;
  background: var(--adp-overlay-background-color);
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  transition: opacity var(--adp-overlay-transition-duration)
      var(--adp-overlay-transition-ease),
    left 0s, height 0s, width 0s;
  transition-delay: 0s, var(--adp-overlay-transition-duration),
    var(--adp-overlay-transition-duration),
    var(--adp-overlay-transition-duration);
  z-index: var(--adp-overlay-z-index);
}
.air-datepicker-overlay.-active- {
  opacity: 1;
  width: 100%;
  height: 100%;
  transition: opacity var(--adp-overlay-transition-duration)
      var(--adp-overlay-transition-ease),
    height 0s, width 0s;
}

/* End */


/* Start:/bitrix/templates/konakovo.com-frogstudios/css/guests.css?17477837514919*/
.guests {
  position: relative;
}
.guests .custom-select .options-list {
   display:none;
}
.guests .custom-select.active .options-list {
    display:unset;
}
.guests.open .guests__form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.guests__form {
  cursor: default;
  position: absolute;
  max-height: 600px;
    overflow-x: hidden;
    overflow-y: auto;
  z-index: 999;
  right: 0;
  background-color: #ffffff;
  padding: 16px;
  border: 1px solid rgba(76, 76, 76, 0.2);
  -webkit-box-shadow: 0px 0px 14px 0px rgba(9, 30, 101, 0.1490196078);
          box-shadow: 0px 0px 14px 0px rgba(9, 30, 101, 0.1490196078);
  bottom: -5px;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  width: 344px;
  border-radius: 10px;
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}
.guests__form.cust {
    height: 325px;
    transform: translateY(-100%);
    top: -5px;
}
@media (max-width: 460px) {
  .guests__form {
    width: calc(100%);
    left: -8px;
    right: auto;
  }
}
.guests__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  width: 100%;
}
.guests__btns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.guests__add {
  border: 1px solid rgba(76, 76, 76, 0.2);
}
.guests__add.disabled {
  opacity: 0.6;
}
@media (max-width: 460px) {
  .guests__add {
    padding-inline: 8px;
  }
}

.guests-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  width: 100%;
  text-align: left;
}
.guests-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(76, 76, 76, 0.2);
  width: 100%;
}
.guests-item__title {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2;
}
.guests-item__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.guests-item__close {
  background-color: transparent;
}
.guests-item__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
.guests-item__person {
  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;
  gap: 20px;
}
.guests-item__person-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
}
.guests-item__person-head {
  font-weight: 500;
}
.guests-item__person-text {
  font-weight: 400;
  font-size: 14px;
  color: rgba(76, 76, 76, 0.6980392157);
}
.guests-item__child-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.guests-item__child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
}
.guests-item__child p {
  font-weight: 500;
  font-size: 16px;
}
.guests-item__child .custom-select {
  width: 124px;
  font-weight: 500;
}
.guests-item__child .custom-select input {
  font-weight: 500;
  font-size: 16px;
}
.guests-item__child .custom-select input::-webkit-input-placeholder {
  font-size: 16px;
  font-weight: 500;
}
.guests-item__child .custom-select input::-moz-placeholder {
  font-size: 16px;
  font-weight: 500;
}
.guests-item__child .custom-select input:-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
}
.guests-item__child .custom-select input::-ms-input-placeholder {
  font-size: 16px;
  font-weight: 500;
}
.guests-item__child .custom-select input::placeholder {
  font-size: 16px;
  font-weight: 500;
}
.guests-item__child .custom-select input {
  width: 100%;
}/*# sourceMappingURL=guests.css.map */
/* End */


/* Start:/bitrix/templates/konakovo.com-frogstudios/css/lib/swiper.min.css?17428963126714*/
/**
 * Swiper 11.2.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 19, 2025
 */

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}:host{position:relative;display:block;margin-left:auto;margin-right:auto;z-index:1}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1;display:block}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;transition-timing-function:var(--swiper-wrapper-transition-timing-function,initial);box-sizing:content-box}.swiper-android .swiper-slide,.swiper-ios .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-horizontal{touch-action:pan-y}.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform;display:block}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-backface-hidden .swiper-slide{transform:translateZ(0);-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide{transform-style:preserve-3d}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-css-mode.swiper-horizontal>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-css-mode.swiper-vertical>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-css-mode.swiper-free-mode>.swiper-wrapper{scroll-snap-type:none}.swiper-css-mode.swiper-free-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:none}.swiper-css-mode.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-css-mode.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center;scroll-snap-stop:always}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-css-mode.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader,.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader{animation:swiper-preloader-spin 1s infinite linear}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}
/* End */


/* Start:/bitrix/templates/konakovo.com-frogstudios/css/main.css?175077570034707*/
.bg-none .top.animationText:after {
  background-color: transparent;
}
.bg-none .top .top__video {
  opacity: 0;
}

.top {
  height: 100vh;
  overflow: hidden;
  position: relative;
  top: calc(-1 * (clamp(5.125rem, 4.6998rem + 1.6393vw, 6.0625rem) + 40px));
}
.top__video {
  position: fixed;
  inset: 0;
  content: "";
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.top__video video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.top:after {
  content: "";
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  position: fixed;
  inset: 0;
  background-color: rgba(217, 217, 217, 0.1019607843);
  z-index: 2;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.top__inner {
  height: 90vh;
  position: relative;
  -ms-flex-line-pack: center;
  align-content: center;
}
.top__content {
  max-width: clamp(88.125rem, 83.1389rem + 10.4012vw, 92.5rem);
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(2rem, 1.7732rem + 0.8743vw, 2.5rem);
  padding: calc(
      clamp(0rem, -2.7497rem + 10.6011vw, 6.0625rem) +
        clamp(0rem, -1.1339rem + 4.3716vw, 2.5rem)
    )
    16px 40px;
}
.main {
  padding-top: calc(clamp(5.125rem, 4.6998rem + 1.6393vw, 6.0625rem) + 40px);
}
.top__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.top__text {
  text-align: center;
  font-size: 14px;
  position: relative;
  z-index: 2;
  z-index: 40;
  position: relative;
}
.top__title {
  text-align: center;
  font-size: clamp(3.75rem, 1.7657rem + 7.6503vw, 8.125rem);
  background-color: #fff;
  color: #000000;
  mix-blend-mode: screen;
  z-index: 30;
}
.top__title:before {
  content: "";
  position: absolute;
  width: 100vw;
  height: 90vh;
  background-color: rgb(255, 255, 255);
  border-radius: 0px 0px 24px 24px;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
}
.top .reservation-form {
  position: relative;
  z-index: 30;
  max-width: 888px;
  width: 100%;
  margin: 0 auto;
}
.top__bottom {
  position: fixed;
  height: 100vh;
  -ms-flex-line-pack: center;
  align-content: center;
  z-index: 20;
  inset: 0;
  color: #fff;
  max-width: clamp(88.125rem, 83.1389rem + 10.4012vw, 92.5rem);
  margin: 0 auto;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 24px 0;
  gap: 30px;
}
.top.animationText .top__bottom-title {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}
.top.animationText:after {
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  background-color: rgba(0, 15, 1, 0.5019607843);
}
.top__bottom-title {
  color: #fff;
  margin: auto;
  font-size: clamp(3.75rem, 1.7657rem + 7.6503vw, 8.125rem);
  opacity: 0;
  -webkit-transform: translateY(40px);
  transform: translateY(40px);
  -webkit-transition: all 1s;
  transition: all 1s;
}
.top__bottom-details {
  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: end;
  -ms-flex-pack: end;
  justify-content: end;
  gap: 16px;
}
.top__bottom-details-text {
  color: #fff;
}
@media (max-height: 850px) {
  .top__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .top__content {
    margin-top: auto;
  }
  .top__title {
    margin-bottom: 33px;
  }
}
@media (max-height: 750px) {
  .top__inner {
    height: 100vh;
  }
  .top__title:before {
    height: 100vh;
  }
}
@media (max-width: 1279px) {
  .top__title:before {
    top: 0px;
  }
}
@media (max-width: 900px) {
  .top__inner {
    height: 100vh;
  }
  .top__title {
    margin-bottom: 33px;
  }
  .top__title:before {
    height: auto;
    border-radius: 0;
  }
}

.rooms__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.rooms__items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: clamp(0.75rem, 0.5232rem + 0.8743vw, 1.25rem);
}
@media (max-width: 1023px) {
  .rooms__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 650px) {
  .rooms__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .rooms__items {
    grid-template-columns: repeat(1, 1fr);
  }
}

.room-item {
  position: relative;
  width: 100%;
  height: clamp(7.6875rem, -1.5253rem + 35.5191vw, 28rem);
  padding: 32px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.room-item:hover .room-item__img img {
  scale: 1.1;
}
.room-item__content {
  position: relative;
  z-index: 1;
}
.room-item__content p {
  color: rgb(255, 255, 255);
  font-size: clamp(1.25rem, 0.9098rem + 1.3115vw, 2rem);
  font-weight: 500;
  line-height: 0.75;
}
.room-item__img {
  overflow: hidden;
  width: 100%;
  position: absolute;
  inset: 0;
}
.room-item__img img {
  height: 100%;
  max-height: clamp(7.6875rem, -1.5253rem + 35.5191vw, 28rem);
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
@media (max-width: 500px) {
  .room-item {
    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;
  }
  .room-item__content p {
    line-height: 1.2;
  }
}

.services .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.services .swiper-pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.services .services__inner .swiper.swiper-pagination-bullet {
  background: #efefef;
}
.services .swiper-pagination-bullet-active {
  background: #05adad;
}
.services .swiper-slide--big {
  grid-column: span 2;
}
.services .swiper-pagination {
  height: 0;
  overflow: hidden;
}
@media (max-width: 1222px) {
  .services .swiper-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0;
  }
  .services .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 8px;
  }
  .services .swiper .swiper-wrapper {
    padding-bottom: 35px;
  }
}

.services-item {
  position: relative;
  min-height: 388px;
  background-color: #eaecee;
  padding: 30px 30px 0 30px;
}
.services-item:hover img {
  scale: 1.1;
}
.services-item--orange {
  background-color: #fdf9dc;
}
.services-item--yellow {
  background-color: #f1ebd6;
}
.services-item--green {
  background-color: #eaf1ec;
}
.services-item__img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
}
.services-item__img img {
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  object-fit: cover;
}
.services-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.services-item__title {
  font-size: 24px;
  line-height: 1.2;
}
.services-item__textbox p {
  font-size: 14px;
}
@media (max-width: 650px) {
  .services-item__img img {
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.about {
  width: 100vw;
  position: relative;
  overflow-y: hidden;
  max-height: 700px;
}
.about__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0;
}
.about__images,
.about__info {
  width: 50vw;
}
.about__img {
  position: relative;
  display: none;
  overflow: hidden;
}
.about__img.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
}
.about__img-big {
  width: 50vw;
  height: 100%;
  -webkit-filter: blur(6px);
  filter: blur(6px);
}
.about__img-small {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 24vw;
  aspect-ratio: 1/1;
  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;
  border: 2px solid rgba(255, 255, 255, 0.6);
  -o-object-fit: cover;
  object-fit: cover;
}
.about__info {
  background-color: #e2dcd5;
  padding: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 80px;
}
.about__info-textbox p {
  font-weight: 500;
}
.about__info-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 60px;
}
.about__info-link {
  font-size: 48px;
  font-weight: 400;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.about__info-link.active {
  color: #039191;
}
.about__swiper-box {
  display: none;
}
@media (max-width: 1223px) {
  .about {
    height: auto;
  }
  .about__img-big {
    height: 100%;
  }
  .about__img-small {
    width: 35vw;
  }
  .about__info-list {
    gap: clamp(0.9375rem, -3.7932rem + 9.8684vw, 3.75rem);
  }
}
@media (max-width: 767px) {
  .about {
    height: 561px;
  }
  .about__swiper-box {
    display: block;
    width: 100%;
    padding: 112px 0px 112px 16px;
  }
  .about__images {
    position: absolute;
    inset: 0;
    width: 100vw;
    height: 561px;
  }
  .about__img {
    height: 100%;
    height: 561px;
  }
  .about__img-big {
    width: 100vw;
    height: 561px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .about__content {
    display: none;
  }
  .about__slide {
    background-color: #e2dcd5;
    gap: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 112px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 20px;
    width: 100%;
  }
  .about__slide-number {
    font-size: 40px;
    font-family: "LibelSuit";
  }
  .about__slide-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  .about__slide-content > *:not(:last-child) {
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(76, 76, 76, 0.4);
  }
  .about__slide-text {
    font-size: 14px;
  }
  .about__slide-title {
    font-size: 40px;
    line-height: 1.2;
  }
}
@media (max-width: 350px) {
  .about__slide {
    padding-inline: 15px;
  }
  .about__slide-title {
    font-size: 36px;
  }
  .about__slide-text {
    font-size: 12px;
  }
}

.house {
  background-color: #eaecee;
  padding: clamp(1rem, -0.7893rem + 3.7325vw, 2.5rem) 0;
}
.house__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(1.5rem, -4.9115rem + 13.3748vw, 6.875rem);
}
.house__images {
  max-width: 697px;
}
.house__content {
  max-width: 410px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1.5rem, 0.7545rem + 1.5552vw, 2.125rem);
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.house__images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.house__images-box {
  max-width: 333px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.house__images-box img {
  max-width: 333px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.house__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 1279px) {
  .house__images-box.none-media {
    display: none;
  }
  .house__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
  }
  .house__images-box {
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
@media (max-width: 550px) {
  .house__images {
    max-width: 100%;
    width: 100%;
  }
  .house__images-box {
    width: 100%;
    display: block;
  }
  .house__images-box img {
    max-width: 100%;
    width: 100%;
  }
  .house__images-box img.none-media {
    display: none;
  }
  .house__info {
    gap: 16px;
  }
}

.banner-callout {
  --padding-section: 167px;
}
.banner-callout__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  padding-bottom: var(--padding-section);
}
.banner-callout__content {
  padding-top: var(--padding-section);
  max-width: 588px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
}
.banner-callout__content .link,
.banner-callout__content .button {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.banner-callout__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.banner-callout__images {
  max-width: 333px;
  width: 100%;
}
.banner-callout__images img {
  max-width: 333px;
  max-height: 370px;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
}
.banner-callout__images picture:not(:first-of-type) {
  display: none;
}
.banner-callout__images--bottom {
  position: absolute;
  bottom: 0;
  left: 9%;
}
.banner-callout__images--right img {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media (max-width: 1279px) {
  .banner-callout {
    --padding-section: 0;
  }
  .banner-callout .media-none {
    display: none;
  }
  .banner-callout__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .banner-callout__images {
    max-width: 100%;
    text-align: center;
  }
  .banner-callout__content {
    max-width: 100%;
  }
}
@media (max-width: 767px) {
  .banner-callout__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .banner-callout__content {
    display: contents;
  }
  .banner-callout__details {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .banner-callout__details .link,
  .banner-callout__details .button {
    width: 100%;
  }
}

.events {
  background-color: #e2dcd5;
  min-height: calc(100vh - clamp(5.125rem, 4.6998rem + 1.6393vw, 6.0625rem));
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  overflow: hidden;
}
.events .container {
  width: 100%;
  -ms-flex-line-pack: center;
  align-content: center;
}
.events__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.events__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: 550px;
}
.events__info-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2px;
}
.events__info-top .textbox {
  max-width: 367px;
}
.events__title {
  font-size: clamp(2.5rem, 0.206rem + 8.8442vw, 8rem);
}
.events__items {
  position: relative;
  max-width: 803px;
  width: 100%;
  min-height: calc(
    clamp(19.375rem, -0.9765rem + 31.8302vw, 26.875rem) +
      clamp(5.4375rem, 2.2152rem + 5.0398vw, 6.625rem) * 2
  );
}
.events__items .events-item:hover .events-item__img img {
  scale: 1.1;
}
.events__slider-box {
  display: none;
}
.events__slider-box .events-item {
  background-color: #e2dcd5;
  padding: clamp(1rem, 0.5787rem + 1.6244vw, 2rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.events__slider-box .events-item__img {
  max-width: 100%;
}
@media (max-width: 1280px) {
  .events {
    padding: 0;
    background-color: transparent;
    min-height: auto;
  }
  .events__slider-box {
    display: block;
  }
  .events__slider-box .events-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
  }
  .events .events-item {
    -webkit-transform: translate(0);
    transform: translate(0);
    position: static;
    opacity: 1;
  }
  .events__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: normal;
    -ms-flex-align: normal;
    align-items: normal;
  }
  .events__info {
    display: contents;
  }
  .events__info .link {
    -webkit-box-ordinal-group: 21;
    -ms-flex-order: 20;
    order: 20;
  }
  .events__items {
    display: none;
  }
  .events__info-top {
    gap: 16px;
  }
  .events__info-top .textbox p {
    font-weight: 400;
  }
  .events__slide {
    height: 100%;
  }
  .events .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 35px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .events .events__inner .swiper .swiper-pagination-bullet,
  .services .services__inner .swiper .swiper-pagination-bullet {
    background-color: #efefef;
  }
  .events .events__inner .swiper .swiper-pagination-bullet-active,
  .services .services__inner .swiper .swiper-pagination-bullet-active {
    background-color: #039191;
  }
  .events .swiper-slide {
    height: auto;
  }
}

.events-item {
  width: 100%;
  padding: 32px 24px 27px 27px;
  border: 1px solid rgb(255, 255, 255);
  background-color: rgb(204, 231, 228);
  counter-reset: count;
  counter-increment: count 1;
  opacity: 0;
  -webkit-transform: translateY(100vh);
  transform: translateY(100vh);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: clamp(1.5rem, -2.0615rem + 5.5703vw, 2.8125rem);
  position: absolute;
}
.events-item:first-of-type {
  opacity: 1;
  -webkit-transform: translate(0);
  transform: translate(0);
}
.events-item--gray {
  background-color: #eaecee;
}
.events-item--white {
  background-color: #fff;
}
.events-item__img {
  max-width: clamp(15rem, -6.0298rem + 32.8912vw, 22.75rem);
  width: 100%;
}
.events-item__img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}
.events-item__content {
  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: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 20px;
}
.events-item__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(0.5rem, -0.8568rem + 2.122vw, 1rem);
}
.events-item__name {
  font-size: clamp(2rem, 1.8947rem + 0.4061vw, 2.25rem);
  line-height: 1;
}
.events-item__date {
  font-family: "Onest";
  color: rgb(76, 76, 76);
  font-size: 16px;
  font-weight: 500;
}
.events-item__link {
  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;
  border: 1px solid rgba(20, 20, 20, 0.3);
  border-radius: 8px;
  padding: 10px 14px;
  line-height: 1.18;
  min-height: 40px;
  text-transform: uppercase;
  font-size: 16px;
  color: rgb(58, 58, 58);
}
.events-item__img {
  overflow: hidden;
}
.events-item__img img {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.events-item[data-index="0"] {
  --i: 0;
}

.events-item[data-index="1"] {
  --i: 1;
}

.events-item[data-index="2"] {
  --i: 2;
}

.offers .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.offers__swiper-box .link {
  display: none;
}
@media (max-width: 1023px) {
  .offers .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .offers .swiper-slide--big {
    grid-column: span 2;
  }
}
@media (max-width: 767px) {
  .main {
    .offers .swiper-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      gap: 0;
      padding-bottom: 35px;
    }
  }
  .offers .swiper {
    padding-bottom: 24px;
  }
  .offers .swiper-slide--big {
    display: none;
  }
  .offers .swiper-pagination {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .offers .offers__inner .swiper-pagination-bullet {
    background-color: #efefef;
  }
  .offers .offers__inner .swiper-pagination-bullet-active {
    background-color: #05adad;
  }
  .offers__swiper-box .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.offers-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: clamp(25rem, 21.6633rem + 12.8643vw, 33rem);
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(1rem, 0.9479rem + 0.201vw, 1.125rem) 0 0 0;
  position: relative;
}
.offers-item.modal-open {
  cursor: pointer;
}
.offers-item.modal-open:hover .offers-item__img img {
  scale: 1.1;
}
.offers-item__img {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.offers-item__img img {
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  object-fit: cover;
}
.offers-item--all {
  padding: 36px 30px 30px 44px;
  background-color: #039191;
}
.offers-item--all .offers-item__textbox p {
  line-height: 1;
  font-family: "Involve";
  font-weight: 500;
}
.offers-item__babge {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  background-color: rgba(255, 255, 255, 0.6);
  padding: 8px 14px;
  margin: 0 clamp(1rem, 0.6872rem + 1.206vw, 1.75rem) 0 auto;
}
.offers-item__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.offers-item__babge-icon {
  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;
}
.offers-item__babge-text {
  font-family: "Onest";
  font-size: 14px;
  font-weight: 500;
}
.offers-item__bottom {
  background-color: rgba(76, 76, 76, 0.2);
  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);
  padding: 16px 0 clamp(1rem, 0.6611rem + 1.3065vw, 1.8125rem) 16px;
}
.offers-item__textbox p {
  font-family: "Onest";
  font-size: clamp(1.25rem, 1.1457rem + 0.402vw, 1.5rem);
  font-weight: 500;
  color: #fff;
  line-height: 1.38;
}
.offers-item__link {
  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;
  padding: 10px 14px;
  min-height: 40px;
  border: 1px solid rgba(237, 237, 237, 0.3);
  border-radius: 8px;
  color: rgb(255, 255, 255);
  font-size: 16px;
  line-height: 1.18;
  text-transform: uppercase;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.discount__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1rem, 0.7732rem + 0.8743vw, 1.5rem);
}
.discount__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
}
.discount__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: clamp(0.875rem, 0.7049rem + 0.6557vw, 1.25rem);
  font-family: "Involve";
  line-height: 1.2;
}
.discount__date-icon {
  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;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.discount__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  font-family: "Involve";
}
.discount__link {
  font-size: clamp(0.875rem, 0.8183rem + 0.2186vw, 1rem);
}
.discount__link-proccent {
  color: #039191;
  font-weight: 600;
  text-transform: uppercase;
}
.discount__textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 930px) {
  .discount__date {
    font-weight: 600;
  }
  .discount__list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.territory {
  position: relative;
  padding: clamp(5.625rem, -7.0964rem + 19.8966vw, 10.4375rem) 40px;
  max-width: clamp(88.125rem, 83.1389rem + 10.4012vw, 92.5rem);
  background-color: #e2dcd5;
  margin: 0 auto;
  width: 100%;
}
.territory__content {
  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: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.territory__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.territory__title {
  font-size: clamp(2.5rem, -4.0607rem + 13.6858vw, 8rem);
  line-height: 1;
}
.territory__map {
  position: absolute;
  inset: 0;
}
.territory__map .link,
.territory__map button {
  display: none;
}
.territory__map img {
  width: 100%;
  height: 100%;
}
.territory .textbox {
  max-width: 403px;
}
@media (max-width: 550px) {
  .territory .textbox p {
    line-height: 1.37;
  }
}
@media (max-width: 1023px) {
  .territory {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 7px;
    background-color: transparent;
    padding: 0;
  }
  .territory .container {
    width: 100%;
    padding-inline: 16px;
  }
  .territory .link,
  .territory .button {
    display: none;
  }
  .territory__map {
    position: relative;
    min-height: 350px;
  }
  .territory__map .link,
  .territory__map .button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: absolute;
    top: 17px;
    right: 16px;
    left: 16px;
  }
  .territory__info {
    gap: 16px;
  }
  .territory .textbox p {
    font-weight: 400;
    font-family: "Involve";
  }
  .territory img {
    /* height: 100%; */
    height: 350px;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
@media (max-width: 550px) {
  .territory img {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: 80%;
    object-position: 80%;
  }
}

.gallery__swiper-box {
  position: relative;
}
@media (max-width: 767px) {
  .gallery .topBox__header {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
}
.gallery .arrows-swiper {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
  left: 18px;
  right: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.gallery .swiper-slide {
  height: auto;
}
.gallery__slide {
  height: 100%;
}
.gallery__slide img {
  width: 100%;
  height: 100%;
  max-height: 330px;
  -o-object-fit: cover;
  object-fit: cover;
}
.gallery__content {
  display: none;
}
.gallery .link--media,
.gallery .button--media {
  display: none;
}
@media (max-width: 550px) {
  .gallery .arrows-swiper {
    display: none;
  }
  .gallery .swiper-wrapper {
    display: block;
  }
  .gallery .swiper-slide {
    width: 25%;
    display: block;
  }
  .gallery__swiper-box {
    display: none;
  }
  .gallery__content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .gallery__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
  }
  .gallery__item:nth-child(odd) picture:nth-child(odd) img {
    height: 250px;
  }
  .gallery__item:nth-child(odd) picture:nth-child(even) img {
    height: 250px;
  }
  .gallery__item:nth-child(even) picture:nth-child(even) img {
    height: 250px;
  }
  .gallery__item:nth-child(even) picture:nth-child(odd) img {
    height: 250px;
  }
  .gallery__item img {
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .gallery .link,
  .gallery .button {
    display: none;
  }
  .gallery .link--media,
  .gallery .button--media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.contacts__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.contacts__lists {
  max-width: 735px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  font-family: "Involve";
  letter-spacing: -0.02em;
  font-size: clamp(0.875rem, 0.8229rem + 0.201vw, 1rem);
}
.contacts__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  max-width: 291px;
}
.contacts__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 4px;
}
.contacts__link-tel {
  font-size: clamp(1.25rem, 0.9372rem + 1.206vw, 2rem);
  font-weight: 600;
  line-height: 1.8;
  font-family: "Onest";
}
.contacts a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.contacts a:hover {
  color: #039191;
}
.contacts__details {
  max-width: 336px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  font-family: "Involve";
  font-size: clamp(0.875rem, 0.8229rem + 0.201vw, 1rem);
}
.contacts__details .social__link {
  border: none;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
}
.contacts__details .social__link svg {
  height: 27px;
  width: 35px;
}
@media (max-width: 767px) {
  .contacts__details {
    display: none;
  }
  .contacts__lists {
    max-width: 100%;
    gap: 28px;
  }
  .contacts__list {
    gap: 28px;
  }
  .contacts__link {
    gap: 12px;
  }
}
@media (max-width: 550px) {
  .contacts__lists {
    grid-template-columns: repeat(1, 1fr);
  }
  .contacts__list {
    max-width: 100%;
  }
  .top__title:before {
    height: 100vh;
  }
  .top__content {
    padding-bottom: 0px;
    margin-bottom: auto;
  }
} /*# sourceMappingURL=main.css.map */

/* End */


/* Start:/bitrix/templates/konakovo.com-frogstudios/css/page.css?175077761552982*/
* {
  padding: 0;
  margin: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.tablebodytext {
  display: none;
}
:focus,
:active {
  outline: none;
}

a:focus,
a:active {
  outline: none;
}

nav,
footer,
header,
aside {
  display: block;
}

input,
button,
textarea {
  font-family: inherit;
}

input::-ms-clear {
  display: none;
}

button {
  cursor: pointer;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

a,
a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: 400;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

a {
  color: inherit;
}

input[type='number'] {
  -moz-appearance: textfield;
}

@font-face {
  font-family: 'Involve';
  src: url('/bitrix/templates/konakovo.com-frogstudios/css/../fonts/Involve-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Involve';
  src: url('/bitrix/templates/konakovo.com-frogstudios/css/../fonts/Involve-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Involve';
  src: url('/bitrix/templates/konakovo.com-frogstudios/css/../fonts/Involve-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
@font-face {
  font-family: 'LibelSuit';
  src: url('/bitrix/templates/konakovo.com-frogstudios/css/../fonts/LibelSuit-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Onest';
  src: url('/bitrix/templates/konakovo.com-frogstudios/css/../fonts/Onest-Regular.woff2') format('woff2');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'Onest';
  src: url('/bitrix/templates/konakovo.com-frogstudios/css/../fonts/Onest-Medium.woff2') format('woff2');
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: 'Onest';
  src: url('/bitrix/templates/konakovo.com-frogstudios/css/../fonts/Onest-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-display: swap;
}
html,
body {
  height: 100%;
}

body {
  font-size: 16px;
  line-height: 1.5;
  background-color: #ffffff;
  color: #4c4c4c;
  font-weight: 400;
  font-family: 'LibelSuit';
  overflow: hidden;
}
body.ready {
  overflow-x: hidden;
  overflow-y: auto;
}
body.ready .preloader {
  opacity: 0;
  visibility: hidden;
}
body.open-modal {
  overflow: hidden;
}
body.open-modal:before {
  content: '';
}
body:before {
  position: fixed;
  inset: 0;
  z-index: 88;
  background-color: rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(25px);
  backdrop-filter: blur(25px);
}

option[value=''] {
  display: none;
}

.wrapper {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.wrapper--animation .main section {
  margin-bottom: clamp(5rem, 3.9573rem + 4.0201vw, 7.5rem);
}
.wrapper--animation .main section:not(.events) {
  overflow-x: hidden;
}
.wrapper--animation .main section.top {
  overflow: visible;
}
.wrapper--animation .block-main {
  display: block;
}

.main {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(5rem, 3.9573rem + 4.0201vw, 7.5rem);
}
.main.cust {
  padding-top: calc(clamp(5.125rem, 4.6998rem + 1.6393vw, 6.0625rem) + 40px);
}
.main--room {
  padding-top: calc(
    clamp(5.125rem, 4.6998rem + 1.6393vw, 6.0625rem) +
      clamp(1.875rem, -33.5rem + 40vw, 2.5rem)
  );
}
@media (max-width: 550px) {
  .main.cust.main-calendar {
    padding-top: 75px;
  }
}

.main section:last-of-type {
  margin-bottom: clamp(5rem, 3.9573rem + 4.0201vw, 7.5rem);
}

.block-main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(5rem, 3.9573rem + 4.0201vw, 7.5rem);
}

.container {
  max-width: clamp(88.125rem, 83.1389rem + 10.4012vw, 92.5rem);
  margin: 0 auto;
  padding: 0px 45px;
}

@media (max-width: 1223px) {
  .container {
    padding: 0 clamp(1rem, 0.2285rem + 2.9744vw, 2.8125rem);
  }
}
p {
  font-size: 16px;
  line-height: 1.5;
  color: #4c4c4c;
  letter-spacing: -0.02em;
  font-family: 'Involve';
  font-weight: 400;
}

h1,
.h1 {
  font-size: clamp(2.5rem, 1.4573rem + 4.0201vw, 5rem);
  line-height: 1.25;
  color: #4c4c4c;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  h1,
  .h1 {
    letter-spacing: -0.0303030303em;
  }
}

h2,
.h2 {
  font-size: clamp(2.5rem, 1.718rem + 3.0151vw, 4.375rem);
  line-height: 1.2;
  letter-spacing: -0.04em;
  color: #4c4c4c;
  text-transform: uppercase;
}
@media (max-width: 767px) {
  h2,
  .h2 {
    letter-spacing: -0.0303030303em;
  }
}

h3,
.h3 {
  font-size: clamp(2.5rem, 1.8744rem + 2.4121vw, 4rem);
  letter-spacing: -0.04em;
  line-height: 1;
  text-transform: uppercase;
  color: #4c4c4c;
}

.button,
.link {
  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;
  padding: 10px 14px;
  min-height: 44px;
  text-transform: uppercase;
  line-height: 1.17;
  font-size: 16px;
  line-height: 1;
  border-radius: 8px;
  letter-spacing: -0.0033333333em;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  cursor: pointer;
}
.button--green,
.link--green {
  background-color: #039191;
  color: #fff;
}
.button--green:hover,
.link--green:hover {
  background-color: #05adad;
}
.button--green.disabled,
.link--green.disabled {
  background-color: rgba(3, 145, 145, 0.6);
  pointer-events: none;
}
.button--gray,
.link--gray {
  background-color: #e2dcd5;
  color: #4c4c4c;
}
.button--gray:hover,
.link--gray:hover {
  background-color: #d4cabf;
}
.button--gray.disabled,
.link--gray.disabled {
  background-color: rgba(226, 220, 213, 0.7);
  pointer-events: none;
}
.button--white,
.link--white {
  background-color: #fff;
  color: #4c4c4c;
}
.button--white:hover,
.link--white:hover {
  background-color: rgb(239, 239, 239);
}
.button--white.disabled,
.link--white.disabled {
  background-color: rgba(76, 76, 76, 0.2);
  pointer-events: none;
  color: rgba(76, 76, 76, 0.2);
}

.arrow-swiper {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  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;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(76, 76, 76, 0.7);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.arrow-swiper:hover {
  background-color: #039191;
}
.arrow-swiper.disabled {
  background-color: rgba(76, 76, 76, 0.2);
  pointer-events: none;
}
.arrow-swiper.prev {
  rotate: -180deg;
}

.swiper {
  position: relative;
  overflow-x: hidden;
}
.swiper .swiper-wrapper {
  padding-bottom: 0;
}
.swiper .swiper-pagination-bullet {
  background: rgba(255, 255, 255, 0.6);
  opacity: 1;
  margin: 0 4px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
}
.swiper .swiper-pagination-bullet-active {
  background: #05adad;
  width: 28px;
  border-radius: 17px;
}

.burger-menu {
  display: none;
  position: relative;
  width: 20px;
  height: 20px;
  overflow: hidden;
  background-color: transparent;
  z-index: 999;
}
.burger-menu:after,
.burger-menu:before {
  content: '';
  position: absolute;
  background-color: #4c4c4c;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 30px;
}
.burger-menu:after {
  top: 0;
  -webkit-transition: top 0.1s 0.5s, rotate 0.5s;
  transition: top 0.1s 0.5s, rotate 0.5s;
}
.burger-menu:before {
  bottom: 0;
  -webkit-transition: bottom 0.1s 0.5s, rotate 0.5s;
  transition: bottom 0.1s 0.5s, rotate 0.5s;
}
.burger-menu span {
  position: absolute;
  background-color: #4c4c4c;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 30px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.arrows-swiper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}

.main.bg-none .top:before {
  display: none;
}
.main.bg-none .top__bottom {
  opacity: 0;
}

.block-main {
  position: relative;
  top: 100vh;
  z-index: 30;
  background-color: #ffffff;
}

.modalBlock .form .custom-select input {
  background-color: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  color: #4c4c4c;
  height: auto;
  cursor: pointer;
}
.modalBlock .form .custom-select input::-webkit-input-placeholder {
  color: #4c4c4c;
}
.modalBlock .form .custom-select input::-moz-placeholder {
  color: #4c4c4c;
}
.modalBlock .form .custom-select input:-ms-input-placeholder {
  color: #4c4c4c;
}
.modalBlock .form .custom-select input::-ms-input-placeholder {
  color: #4c4c4c;
}
.modalBlock .form .custom-select input::placeholder {
  color: #4c4c4c;
}
.modalBlock .form__item.error input {
  border-color: #c82a20;
}

.custom-select {
  position: relative;
}
.custom-select.active .options-list {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0);
  transform: translate(0);
}
.custom-select.active .custom-select__active-arrow {
  rotate: 180deg;
}
.custom-select .options-list {
  position: absolute;
  z-index: 4;
  top: 110%;
  left: 0;
  right: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10%);
  transform: translateY(10%);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  border: 1px solid rgba(76, 76, 76, 0.2);
  -webkit-box-shadow: 0px 0px 14px 0px rgba(9, 30, 101, 0.1490196078);
  box-shadow: 0px 0px 14px 0px rgba(9, 30, 101, 0.1490196078);
  background-color: #fff;
  padding: 16px 12px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  font-family: 'Involve';
  max-height: 212px;
  overflow-y: auto;
}
.custom-select .options-list li {
  padding: 4px 8px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 10px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.custom-select .options-list li:hover {
  color: #039191;
}
.custom-select .options-list li.active .options-list__arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.custom-select .options-list__arrow {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.custom-select__active {
  height: 56px;
  background-color: #fff;
  border: 1px solid rgba(76, 76, 76, 0.2);
  border-radius: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.custom-select__active-arrow {
  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;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.custom-select .real-select {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
}

.input-default {
  background-color: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  color: #4c4c4c;
  height: auto;
  cursor: pointer;
}
.input-default::-webkit-input-placeholder {
  color: #4c4c4c;
}
.input-default::-moz-placeholder {
  color: #4c4c4c;
}
.input-default:-ms-input-placeholder {
  color: #4c4c4c;
}
.input-default::-ms-input-placeholder {
  color: #4c4c4c;
}
.input-default::placeholder {
  color: #4c4c4c;
}
.input-default:focus + span {
  rotate: -180deg;
}

.label-box {
  height: 56px;
  background-color: #fff;
  border: 1px solid rgba(76, 76, 76, 0.2);
  border-radius: 10px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.label-box__arrow {
  pointer-events: none;
  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;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

.help-text {
  font-size: 14px;
  color: rgba(76, 76, 76, 0.6980392157);
}

.btnTab {
  font-size: 16px;
  background-color: transparent;
  font-weight: 600;
  font-family: 'Involve';
  text-transform: uppercase;
  cursor: pointer;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
}
.btnTab:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 2px;
  background-color: #039191;
  bottom: 0;
  -webkit-transform-origin: right;
  transform-origin: right;
  scale: 0;
  -webkit-transition: scale 0.5s;
  transition: scale 0.5s;
}
.btnTab.active,
.btnTab:hover {
  color: #039191;
}
.btnTab.active:before {
  scale: 1;
  -webkit-transform-origin: left;
  transform-origin: left;
}

.fancybox__content {
  width: 50vw !important;
  height: auto !important;
}

.open--menu {
  overflow: hidden !important;
}

.header {
  padding: clamp(1.1875rem, 0.9607rem + 0.8743vw, 1.6875rem) 0;
  position: fixed;
  z-index: 103;
  left: 0;
  right: 0;
  overflow: hidden;
  background-color: #fff;
  border-bottom: 1px solid #efefef;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.header.scrollBottom {
  top: -300px;
}
.header.scrollTop {
  top: 0;
  /*z-index: 1000;*/
}
/*#bx-panel.bx-panel-folded #bx-panel-userinfo{*/
/*  z-index:10000;*/
/*}*/
.header__inner {
  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;
  gap: 20px;
}
.header__logo {
  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;
}
.header__logo img {
  -o-object-fit: contain;
  object-fit: contain;
}
.header__logo-small {
  display: none;
}
.header__address {
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  letter-spacing: -0.14px;
  font-style: normal;
  line-height: 1.7;
  font-family: 'Involve';
}
.header__address-icon {
  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;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.header__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(0.75rem, -4.125rem + 6vw, 1.5rem);
}
.header__details-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1279px) {
  .header {
    border-bottom: 0;
  }
  .header__logo-small {
    display: inline;
  }
  .header__logo-big {
    display: none;
  }
  .header__details {
    display: none;
  }
  .header__address {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .header__details-btns {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: auto;
  }
}

.menu__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}
.menu__link {
  font-family: 'Involve';
  text-align: center;
  /*width: 16%;*/
}
.menu__item {
  color: #4c4c4c;
  text-align: center;
  display: block;
}
.menu__translation {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  font-family: 'Involve';
}
.menu__translation-title {
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  line-height: 1.33;
}
.menu__translation-checks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 8px;
}
.menu__details {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.menu__details-item {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.menu__details-item:hover {
  color: #039191;
}
.menu__details-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  color: rgb(255, 255, 255);
  font-family: 'Involve';
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
}
.menu__content .button,
.menu__content .link {
  display: none;
}
.menu__item {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.menu__item:hover {
  color: #039191;
}
@media (max-width: 1279px) {
  .menu__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 30px;
    position: fixed;
    inset: 0;
    max-height: 100vh;
    overflow-y: scroll;
    overflow-x: hidden;
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    background-color: rgba(0, 0, 0, 0.8);
    padding: 86px 16px 30px;
    color: #fff;
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .menu__content > *:not(:last-child) {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .menu__content .menu__details {
    padding: 0;
    border: none;
  }
  .menu__content .button,
  .menu__content .link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: auto;
  }
  .menu__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 16px;
  }
  .menu__item {
    color: #fff;
    text-align: left;
  }
  .menu__item:before {
    display: none;
  }
  .menu__item br {
    display: none;
  }
  .menu__translation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu__details {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu .burger-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .menu.open .menu__content {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
  .menu.open .burger-menu:after {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    rotate: 45deg;
    -webkit-transition: top 0.5s, rotate 0.1s 0.5s;
    transition: top 0.5s, rotate 0.1s 0.5s;
  }
  .menu.open .burger-menu:before {
    bottom: 50%;
    -webkit-transform: translateY(50%);
    transform: translateY(50%);
    rotate: -45deg;
    -webkit-transition: bottom 0.5s, rotate 0.1s 0.5s;
    transition: bottom 0.5s, rotate 0.1s 0.5s;
  }
  .menu.open .burger-menu span {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    opacity: 0;
  }
}

.preloader {
  position: fixed;
  z-index: 99999;
  background-color: #039191;
  inset: 0;
  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;
  color: #fff;
  padding: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.preloader__proccent {
  color: #fff;
  position: absolute;
  right: 40px;
  bottom: 40px;
}
.preloader__img {
  max-width: 404px;
  width: 100%;
  height: 106px;
}
.preloader__img svg {
  width: 100%;
  height: 100%;
}
.preloader__img svg path {
  fill: #fff;
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.social__link {
  width: 44px;
  height: 44px;
  border: 1px solid rgb(239, 239, 239);
  border-radius: 12px;
  background-color: rgb(255, 255, 255);
  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;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.social__link:hover {
  background-color: #efefef;
}
.social__item {
  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: 100%;
  height: 100%;
}

.form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.form__inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px 12px;
}
.form__item {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-transition: all 0.2 0.5s;
  transition: all 0.2 0.5s;
  position: relative;
}
.form__item input,
.form__item textarea {
  border: 1px solid rgba(76, 76, 76, 0.2);
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  height: 56px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 16px;
  background-color: transparent;
  width: 100%;
  font-weight: 400;
  font-family: 'Involve';
  color: rgba(76, 76, 76, 0.6980392157);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.form__item input:hover,
.form__item textarea:hover {
  background-color: rgba(255, 255, 255, 0.1019607843);
}
.form__item input::-webkit-input-placeholder,
.form__item textarea::-webkit-input-placeholder {
  color: rgba(76, 76, 76, 0.6980392157);
  font-size: 16px;
}
.form__item input::-moz-placeholder,
.form__item textarea::-moz-placeholder {
  color: rgba(76, 76, 76, 0.6980392157);
  font-size: 16px;
}
.form__item input:-ms-input-placeholder,
.form__item textarea:-ms-input-placeholder {
  color: rgba(76, 76, 76, 0.6980392157);
  font-size: 16px;
}
.form__item input::-ms-input-placeholder,
.form__item textarea::-ms-input-placeholder {
  color: rgba(76, 76, 76, 0.6980392157);
  font-size: 16px;
}
.form__item input::placeholder,
.form__item textarea::placeholder {
  color: rgba(76, 76, 76, 0.6980392157);
  font-size: 16px;
}
.form__item textarea {
  resize: none;
  width: 100%;
}
.form__item--big {
  grid-column: span 2;
}
.form__item.error .form__errors {
  padding: 10px 0 0;
  max-height: 300px;
}
.form__item.error input,
.form__item.error textarea {
  -webkit-animation: error 1s linear;
  animation: error 1s linear;
  border-color: #c82a20;
}
.form__errors {
  z-index: 10;
  width: 100%;
  -webkit-transition: padding 1s, max-height 1s;
  transition: padding 1s, max-height 1s;
  max-height: 0;
  overflow: hidden;
  color: #c82a20;
  font-family: 'Involve';
}
.form__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.form__bottom-textbox {
  max-width: 273px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.form__bottom-textbox p {
  color: #fff;
  font-size: 14px;
}

@-webkit-keyframes error {
  0% {
    rotate: -3deg;
  }
  25% {
    rotate: 3deg;
  }
  50% {
    rotate: -3deg;
  }
  75% {
    rotate: 3deg;
  }
  100% {
    rotate: 0deg;
  }
}

@keyframes error {
  0% {
    rotate: -3deg;
  }
  25% {
    rotate: 3deg;
  }
  50% {
    rotate: -3deg;
  }
  75% {
    rotate: 3deg;
  }
  100% {
    rotate: 0deg;
  }
}
.breadcrumbs {
  color: rgba(76, 76, 76, 0.6980392157);
  font-size: 14px;
  letter-spacing: -0.01em;
  font-family: 'Involve';
}
.breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.breadcrumbs__link {
  padding-right: 16px;
  position: relative;
  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;
}
.breadcrumbs__link:before {
  position: absolute;
  content: '/';
  font-size: 14px;
  right: 0;
}

.navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1.5rem, 1.0951rem + 1.561vw, 2.5rem);
}
@media (max-width: 767px) {
  .navigation__top {
    display: none;
  }
}

.modalBlock {
  position: fixed;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 101;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  top: 0;
}
.modalBlock.modalBlockTwo {
  padding: clamp(4.5rem, 3.6208rem + 3.3898vw, 6.375rem) 16px 16px;
}
.modalBlock.modalBlockTwo .modal-close {
  width: 44px;
  height: 44px;
  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;
  background-color: rgba(76, 76, 76, 0.6980392157);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  border-radius: 50%;
  position: absolute;
  z-index: 3;
  top: clamp(1rem, 0.5464rem + 1.7486vw, 2rem);
  right: clamp(1rem, 0.5464rem + 1.7486vw, 2rem);
}
.modalBlock.modalBlockTwo .modalBlockTwo__inner {
  max-width: 1040px;
  width: 100%;
  background-color: #ffffff;
  padding: 12px 12px 12px 40px;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  gap: 32px;
  position: relative;
}
.mobile_but {
  display: none;
}
.modalBlock.modalBlockTwo .modalBlockTwo__content {
  max-width: 487px;
}
.modalBlock.modalBlockTwo .modalBlockTwo__img {
  max-width: 440px;
  width: 100%;
}
.modalBlock.modalBlockTwo .modalBlockTwo__img img {
  width: 100%;
  height: clamp(12.5rem, 0.7768rem + 45.1977vw, 37.5rem);
  object-fit: cover;
}
@media (max-width: 930px) {
  .modalBlock.modalBlockTwo .modalBlockTwo__inner {
    padding: 0 0 32px;
    max-width: 500px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
  .modalBlock.modalBlockTwo .modalBlockTwo__content {
    padding: 0 16px;
  }
  .modalBlock.modalBlockTwo .modalBlockTwo__img {
    max-width: 100%;
  }
}
.modalBlock.videoModal .modalBlock__inner {
  width: 90vw;
  height: 80vh;
  max-width: 100%;
  padding: 20px;
}
.modalBlock.videoModal .modalBlock__content,
.modalBlock.videoModal .videoModal__video {
  height: 100%;
}
.modalBlock.videoModal .videoModal__video iframe {
  width: 100%;
  height: 100%;
}
.modalBlock.succesModal {
  text-align: center;
}
.modalBlock.succesModal .modalBlock__textbox {
  max-width: 100%;
}
.modalBlock.cardModal .modalBlock__inner {
  padding: clamp(1rem, 0.6031rem + 1.5301vw, 1.875rem);
  max-width: 90vw;
}
.modalBlock.cardModal .cardModal__img {
  width: 100%;
}
.modalBlock.cardModal .cardModal__img img {
  width: 100%;
  max-height: 80vh;
  height: auto;
}
.modalBlock.cardModal .modal-close {
  width: 44px;
  height: 44px;
  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;
  background-color: rgba(76, 76, 76, 0.6980392157);
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1019607843);
  border-radius: 50%;
  position: absolute;
  z-index: 3;
  top: clamp(1rem, 0.5464rem + 1.7486vw, 2rem);
  right: clamp(1rem, 0.5464rem + 1.7486vw, 2rem);
}
.modalBlock.certificateModal .form .form__input input {
  border: 1px solid rgba(76, 76, 76, 0.2);
  color: #4c4c4c;
}
.modalBlock.certificateModal
  .form
  .form__input
  input::-webkit-input-placeholder {
  color: #4c4c4c;
}
.modalBlock.certificateModal .form .form__input input::-moz-placeholder {
  color: #4c4c4c;
}
.modalBlock.certificateModal .form .form__input input:-ms-input-placeholder {
  color: #4c4c4c;
}
.modalBlock.certificateModal .form .form__input input::-ms-input-placeholder {
  color: #4c4c4c;
}
.modalBlock.certificateModal .form .form__input input::placeholder {
  color: #4c4c4c;
}
.modalBlock.certificateModal .form .form__input input.input-default {
  background-color: transparent;
  border: none;
  padding: 0;
  border-radius: 0;
  color: #4c4c4c;
  height: auto;
  cursor: pointer;
}
.modalBlock.certificateModal
  .form
  .form__input
  input.input-default::-webkit-input-placeholder {
  color: #4c4c4c;
}
.modalBlock.certificateModal
  .form
  .form__input
  input.input-default::-moz-placeholder {
  color: #4c4c4c;
}
.modalBlock.certificateModal
  .form
  .form__input
  input.input-default:-ms-input-placeholder {
  color: #4c4c4c;
}
.modalBlock.certificateModal
  .form
  .form__input
  input.input-default::-ms-input-placeholder {
  color: #4c4c4c;
}
.modalBlock.certificateModal
  .form
  .form__input
  input.input-default::placeholder {
  color: #4c4c4c;
}
@media (max-width: 930px) {
  .modalBlock.certificateModal.modalBlockTwo .modalBlockTwo__inner {
    padding: 16px;
  }
  .modalBlock.certificateModal.modalBlockTwo
    .modalBlockTwo__inner
    .modal-close {
    background-color: transparent;
    position: static;
  }
  .modalBlock.certificateModal.modalBlockTwo
    .modalBlockTwo__inner
    .certificateModal__top {
    align-items: flex-start;
  }
  .modalBlock.certificateModal.modalBlockTwo .modalBlockTwo__img {
    display: none;
  }
}
.modalBlock.open {
  opacity: 1;
  visibility: visible;
}
.modalBlock.open .modalBlock__inner {
  -webkit-transform: translate(0);
  transform: translate(0);
}
.modalBlock__inner {
  max-width: 644px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin: auto;
  background-color: #039191;
  padding: 30px 30px 50px 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
  -webkit-transform: translateY(-200%);
  transform: translateY(-200%);
}
.modalBlock__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.modalBlock__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.modalBlock__title {
  color: #fff;
}
.modalBlock__textbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
  max-width: 415px;
}
.modalBlock__textbox p {
  color: #fff;
}
.modalBlock .form {
  background-color: transparent;
}
.modalBlock .form__inputs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.modalBlock .form input {
  border-color: #fff;
  color: #fff;
}
.modalBlock .form input::-webkit-input-placeholder {
  color: #fff;
}
.modalBlock .form input::-moz-placeholder {
  color: #fff;
}
.modalBlock .form input:-ms-input-placeholder {
  color: #fff;
}
.modalBlock .form input::-ms-input-placeholder {
  color: #fff;
}
.modalBlock .form input::placeholder {
  color: #fff;
}

.modal-close {
  background-color: transparent;
  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-left: auto;
}
.modal-close svg path {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.modal-close:hover svg path {
  fill: #000;
}

body.showForm .reservation-form--scroll {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(0, -30px);
  transform: translate(0, -30px);
}
body .wrapper--animation .link--fixed {
  -webkit-transform: translate(0, 100px);
  transform: translate(0, 100px);
  opacity: 0;
}

body.showForm .wrapper--animation .link--fixed {
  -webkit-transform: translate(0, 0px);
  transform: translate(0, 0px);
  opacity: 1;
}

.wrapper--animation .reservation-form--scroll {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(100px);
  transform: translateY(100px);
}

@media (max-width: 992px) {
  .wrapper--animation .reservation-form--scroll {
    -webkit-transform: translateY(100%);
    transform: translateY(100%);
  }
}

.reservation-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1.5rem, 1.3299rem + 0.6557vw, 1.875rem);
}
.reservation-form--scroll {
  position: fixed;
  z-index: 80;
  background-color: #fff;
  -webkit-backdrop-filter: blur(81px);
  backdrop-filter: blur(81px);
  left: 30px;
  right: 30px;
  bottom: 0px;
  padding: 16px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  border-radius: 16px;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-30px);
  transform: translateY(-30px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.reservation-form--scroll .button {
  margin: 0;
}
@media (max-width: 767px) {
  .reservation-form--scroll {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: auto;
  }
  .reservation-form--scroll .reservation-form__inputs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
  }
  .reservation-form--scroll .reservation-form__box-content {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 550px) {
  .reservation-form--scroll .reservation-form__inputs {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (max-width: 767px) {
  .reservation-form--scroll {
    display: none;
  }
}
.reservation-form__inputs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.75rem, 0.6366rem + 0.4372vw, 1rem);
}
.reservation-form__box {
  cursor: pointer;
}
.reservation-form__box-content {
  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;
  gap: 20px;
  padding: 13px 16px;
  border: 1px solid rgba(186, 186, 186, 0.3019607843);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  min-height: 50px;
  border-radius: 12px;
  position: relative;
}
.reservation-form__input {
  width: 0;
  height: 0;
  position: absolute;
  top: 50px;
}
.reservation-form__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  color: #707070;
  font-size: 16px;
  font-family: 'Onest';
  font-weight: 400;
}
.reservation-form__icon {
  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;
  -webkit-transform: translateY(-1px);
  transform: translateY(-1px);
}
.reservation-form__arrow {
  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;
}
.reservation-form__btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .reservation-form__inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .reservation-form__btn {
    width: 100%;
  }
}

.topBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1.5rem, 1.0829rem + 1.608vw, 2.5rem);
}
.topBox__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 16px;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
.topBox__header.center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.topBox__textbox {
  text-align: right;
}
@media (max-width: 767px) {
  .topBox__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .topBox__header.center {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .topBox .textbox {
    display: inline-block;
  }
  .topBox .textbox__text {
    display: inline;
  }
  .topBox__textbox {
    text-align: left;
  }
}

.footer {
  position: relative;
  z-index: 50;
  background-color: #fff;
  padding: clamp(1.25rem, 0.9372rem + 1.206vw, 2rem) 0
    clamp(1.125rem, 0.2908rem + 3.2161vw, 3.125rem);
  border-top: 1px solid #efefef;
}
.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1.75rem, -8.4932rem + 16.0207vw, 5.625rem);
}
.footer__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 28px;
}
.footer__top-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 28px;
  max-width: 430px;
}
.footer__top-content .footer__copy-logo {
  display: none;
}
.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: clamp(1.75rem, -10.4758rem + 19.1214vw, 6.375rem);
  letter-spacing: -0.02em;
}
.footer a {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.footer a:hover {
  color: #039191;
}
.footer__details {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 47px;
  max-width: 265px;
  width: 100%;
  font-weight: 500;
  font-family: 'Involve';
}
.footer__details--mobile {
  display: none;
}
.counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
}
.counter__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;
  background-color: #039191;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}
.counter__btn.disabled {
  pointer-events: none;
  background-color: rgba(76, 76, 76, 0.2);
}
.counter__number {
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
}
.footer__details-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.footer__details-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
}
.footer__details-icon {
  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;
}
.footer__lists {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.footer__list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 14px;
  max-width: 250px;
}
.footer__list-title {
  font-family: 'Onest';
  font-size: 16px;
  font-weight: 500;
  line-height: 1.25;
  text-transform: uppercase;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.footer__item {
  font-family: 'Involve';
}
.footer__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.footer__copy-content-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.footer__copy-content-info p {
  font-size: clamp(0.75rem, 0.6933rem + 0.2186vw, 0.875rem);
  letter-spacing: -0.01em;
}
.footer__copy-content-dev {
  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;
  max-width: 152px;
}
.footer__copy-content-dev img {
  width: 100%;
}
.footer__copy-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: clamp(0.75rem, 0.1831rem + 2.1858vw, 2rem);
}
@media (max-width: 1023px) {
  .footer__copy-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%;
  }
  .footer__top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer__top .footer__copy-logo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .footer__lists {
    gap: 12px;
  }
  .footer__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer__content > * {
    border-bottom: 1px solid #efefef;
    padding-bottom: 28px;
  }
  .footer__copy .footer__copy-logo {
    display: none;
  }
  .footer__details {
    display: none;
  }
  .footer__details--mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 12px;
    max-width: 100%;
  }
  .footer__details-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 20px;
  }
  .footer__details-item-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 16px;
  }
  .footer__details-item-text {
    color: rgba(76, 76, 76, 0.4);
    font-weight: 600;
  }
}
.link--fixed {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 99;
}
.link--fixed.link--fixed-mobile {
  display: none;
}
@media (max-width: 767px) {
  .link--fixed.link--fixed-mobile {
    display: flex;
  }
}
@media (max-width: 511px) {
  .mobile_but {
    display: flex;
    z-index: 100;
  }
}
.circle-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: 44px;
  height: 44px;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  border-radius: 50%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.circle-btn--green {
  background-color: #039191;
}
.circle-btn--green svg path {
  fill: #fff;
}
.circle-btn img,
.circle-btn svg {
  width: 16px;
  height: 16px;
}
.circle-btn img path,
.circle-btn svg path {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.circle-btn:hover {
  background-color: #05adad;
}

#booking-widget-container > div,
#booking-widget-container2 > div {
  --accent-color: #039191;
  --accent-hover-color: #039191;
  --field-color: #707070;
  --field-y-padding: 12px;
  --button-border-color: #039191;
  --main-color: #4c4c4c;
  --calendar-weekend-color: #4c4c4c66;
  --calendar-inrange-bg: #039191;
  --counter-btn-color: #039191;
  --counter-btn-bg: transparent;
  --dropdown-bg: #ffffff;
  --border-radius: 12px;
  --dropdown-shadow: 0px 0px 14px 0px #091e6526;
  --field-border-color: #bababa4d;
}
#booking-widget-863941
  .booking-widget-863941__calendar-day[rangeend]:not([is-disabled]):after,
#booking-widget-863941
  .booking-widget-863941__calendar-day[rangestart]:not([is-disabled]):before {
  display: none;
}
#booking-widget-container
  #booking-widget-863941
  .booking-widget-863941__cell:nth-child(2)
  .booking-widget-863941__field-input {
  border-radius: var(--border-radius);
}
#booking-widget-container #booking-widget-863941 {
  text-align: left;
}
#booking-widget-container2
  #booking-widget-863941
  .booking-widget-863941__cell:nth-child(2)
  .booking-widget-863941__field-input {
  border-radius: var(--border-radius);
}
#booking-widget-863941
  .booking-widget-863941__field
  .booking-widget-863941__field-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='8' viewBox='0 0 14 8' fill='none'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M13.74 1.44238L13.569 1.5329C10.9997 2.8931 8.89866 4.99419 7.53846 7.56345L7.44794 7.73443L6.56415 7.73443L6.47363 7.56345C5.11343 4.99419 3.01235 2.8931 0.443082 1.5329L0.272102 1.44238L0.73999 0.558593L0.91097 0.649112C3.44505 1.99068 5.55307 4.00649 7.00604 6.46755C8.45902 4.00649 10.567 1.99069 13.1011 0.649112L13.2721 0.558594L13.74 1.44238Z' fill='%23039191'/%3E%3C/svg%3E");
  background-size: 13px 13px;
}
.top
  #booking-widget-863941
  .booking-widget-863941__form
  .booking-widget-863941__row,
.goodTop
  #booking-widget-863941
  .booking-widget-863941__form
  .booking-widget-863941__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.room-item__description-inner,
.js-room-desc {
  line-height: 1.5;
}
#booking-widget-863941
  .booking-widget-863941__row
  .booking-widget-863941__cell:last-of-type {
  margin: 0 auto;
  grid-column: span 3;
  width: 100% !important;
}
#booking-widget-863941
  .booking-widget-863941__row
  .booking-widget-863941__cell:last-of-type
  .booking-widget-863941__btn {
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 16px;
  font-family: 'LibelSuit';
  min-width: 105px;
  min-height: 44px;
}
.top
  #booking-widget-863941
  .booking-widget-863941__row
  .booking-widget-863941__cell:last-of-type
  .booking-widget-863941__btn,
.goodTop
  #booking-widget-863941
  .booking-widget-863941__row
  .booking-widget-863941__cell:last-of-type
  .booking-widget-863941__btn {
  margin: 0 auto;
  width: fit-content;
}
body .top #booking-widget-863941,
body .goodTop #booking-widget-863941 {
  position: relative;
  z-index: 102;
  padding-top: 50px;
}
body #booking-widget-863941 {
  font-family: 'Onest';
}
body #booking-widget-863941 .booking-widget-863941__btn {
  height: fit-content;
}
@media (max-width: 991.98px) {
  body.scrollTop
    #booking-widget-863941
    .booking-widget-863941__dropdown-content {
    padding-top: 80px;
  }

  body.scrollTop #booking-widget-863941 .booking-widget-863941__dropdown-close {
    top: 70px;
  }
}
@media (max-width: 767px) {
  #booking-widget-863941
    .booking-widget-863941__row
    .booking-widget-863941__cell:last-of-type {
    grid-column: span 1;
  }
  #booking-widget-863941
    .booking-widget-863941__row
    .booking-widget-863941__cell {
    margin: 0;
  }
  .top
    #booking-widget-863941
    .booking-widget-863941__form
    .booking-widget-863941__row {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }
  .goodTop
    #booking-widget-863941
    .booking-widget-863941__form
    .booking-widget-863941__row {
    grid-template-columns: repeat(1, 1fr);
    gap: 24px;
  }

  #booking-widget-863941
    .booking-widget-863941__row
    .booking-widget-863941__cell:last-of-type
    .booking-widget-863941__btn {
    width: 100%;
  }

  body .top #booking-widget-863941 {
    padding-top: 0px;
  }
}

.reservation-form--scroll
  #booking-widget-863941
  .booking-widget-863941__dropdown {
  top: 0;
  transform: translateY(-100%);
  bottom: auto;
}

.reservation-form--scroll #booking-widget-863941 .booking-widget-863941__row {
  gap: 16px;
}
.swiper-pagination.swiper-pagination-fraction.swiper-pagination-horizontal.swiper-pagination-horizontal-site {
  background-color: rgba(76, 76, 76, 0.6980392157);
  min-height: 28px;
  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;
  gap: 3px;
  font-weight: 500;
  font-size: 16px;
  border-radius: 50px;
  color: #fff;
  position: absolute;
  z-index: 2;
  bottom: 20px;
  right: 20px;
  padding: 5px;
  min-width: 57px;
  left: auto;
  top: auto;
}
/*# sourceMappingURL=page.css.map */

/* End */


/* Start:/bitrix/templates/konakovo.com-frogstudios/css/rooms.css?175069626015962*/
.goods.open .goods__inner {
  gap: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.goods.open .goods-content {
  left: 20px;
}
.goods.open .goods-sidebar {
  max-width: 333px;
}
.goods.open .goods-sidebar__btns-box {
  -webkit-transition: all 0.1s 0.5s;
  transition: all 0.1s 0.5s;
  width: 100%;
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.goods.open .goods-sidebar__btn-top {
  rotate: -180deg;
}
.goods.open .goods__items {
  grid-template-columns: repeat(2, 1fr);
}
.goods.open .goods__items-box {
  max-width: 450px;
  width: 100%;
}
.goods .goods-content {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.goods__inner {
  gap: 94px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}
.goods__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: 100%;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.goods__items-box {
  max-width: 686px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.goods__items {
  display: grid;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  overflow: hidden;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.goods__detail {
  max-width: clamp(24.375rem, -71.3rem + 118.6667vw, 35.5rem);
}
.goods .more-buuton {
  display: none;
}
.goods__items-box .more-buuton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1279px) {
  .goods__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
  }
  .goods.open .goods-sidebar {
    max-width: 100%;
  }
  .goods.open__inner {
    gap: 32px;
  }
  .goods.open .goods__items-box {
    max-width: 80%;
  }
  .goods .good-item__img {
    max-height: 210px;
  }
  .goods__items-box {
    max-width: 80%;
  }
  .goods__items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1100px) {
  .goods__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 900px) {
  .goods__items {
    display: none;
  }
  .goods__detail {
    padding-top: 0;
  }
  .goods .goods__items-box .more-buuton {
    display: none;
  }
  .goods__content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .goods__detail {
    max-width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 24px;
  }
  .goods .more-buuton {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .goods .good-big {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.goods-sidebar {
  -ms-flex-negative: 0;
  flex-shrink: 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-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 12px;
  max-width: 0px;
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  position: sticky;
  top: 0;
}
.goods-sidebar__btn-top {
  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;
  background-color: transparent;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  margin-left: auto;
}
.goods-sidebar__btn-top svg {
  pointer-events: none;
}
.goods-sidebar__btns-box {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.goods-sidebar__btns .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.goods-sidebar__btns .swiper-slide {
  text-align: left;
}
.goods-sidebar__btn-arrow {
  display: none;
}
.goods-sidebar__btn {
  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;
  gap: 20px;
  width: 100%;
  padding: 20px 0;
  border-bottom: 1px solid #efefef;
  cursor: pointer;
  font-size: 20px;
  color: rgba(76, 76, 76, 0.6980392157);
  font-family: "Involve";
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}
.goods-sidebar__btn.active {
  color: #039191;
}
.goods-sidebar__btn.active .goods-sidebar__btn-arrow {
  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;
}
.goods-sidebar__btn:hover {
  color: #039191;
}
@media (max-width: 1279px) {
  .goods-sidebar {
    max-width: 100%;
  }
  .goods-sidebar__btn-top {
    display: none;
  }
  .goods-sidebar__btns-box {
    -webkit-transform: translate(0);
    transform: translate(0);
    opacity: 1;
    visibility: visible;
  }
  .goods-sidebar__btn {
    border: none;
  }
  .goods-sidebar .swiper-slide {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
  .goods-sidebar .swiper-wrapper {
    padding-bottom: 10px;
    max-width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .goods-sidebar__btn {
    padding: 0;
    font-size: 16px;
    color: #4c4c4c;
    font-weight: 600;
    text-transform: uppercase;
  }
  .goods-sidebar__btn.active {
    position: relative;
  }
  .goods-sidebar__btn.active .goods-sidebar__btn-arrow {
    display: none;
  }
  .goods-sidebar__btn.active:before {
    content: "";
    position: absolute;
    bottom: -3px;
    height: 2px;
    left: 0;
    right: 0;
    width: 100%;
    background-color: #039191;
  }
  .goods-sidebar__btn-arrow {
    display: none;
  }
}

.good-item {
  background-color: #faf7f4;
  padding: 16px 16px 24px;
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  -ms-flex-preferred-size: 200px;
  flex-basis: 200px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 12px;
  transition: all 0.5s;
  min-width: 215px;
}
.good-item:hover {
  background-color: #cce7e4;
}
.good-item:hover .good-item__img img {
  scale: 1.1;
}
.good-item.active {
  background-color: #b1e2de;
}
.good-item__img {
  overflow: hidden;
  height: 130px;
}
.good-item__img img {
  height: 100%;
  width: 100%;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  object-fit: cover;
}
.good-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 6px;
  font-family: "Involve";
}
.good-item__name {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}
.good-item__price {
  font-size: 14px;
}

.good-big {
  padding: clamp(0.5rem, 0.0538rem + 1.7204vw, 1.5rem);
  background-color: rgba(248, 245, 241, 0.8);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
  position: sticky;
  top: 0;
}
.good-big__img-box {
  position: relative;
  height: clamp(15rem, 11.8251rem + 12.2404vw, 22rem);
}

.good-big__img-box img {
  object-fit: cover;
}

.good-big__img-box .arrows-swiper {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 8px;
  right: 8px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 2;
}
.good-big__img-box img {
  width: 100%;
  max-height: 347px;
  height: 100%;
}
.good-big__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 24px;
}
.good-big__top {
  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;
  gap: 20px;
}
.good-big__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-family: "Involve";
  font-weight: 500;
}
.good-big__info .good-big__text {
  display: none;
}
.good-big__name {
  font-size: clamp(1.25rem, 0.9153rem + 1.2903vw, 2rem);
  font-weight: 500;
}
@media (max-width: 900px) {
  .good-big__name {
    font-weight: 600px;
  }
}
.good-big__textbox {
  min-height: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 20px;
}
.good-big__textbox p {
  font-size: clamp(0.875rem, 0.8192rem + 0.2151vw, 1rem);
}
.good-big__tags .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 12px;
}
.good-big .swiper-pagination {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  left: 0;
  right: 0;
  bottom: 10px;
}
.good-big .swiper-pagination-bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 8px;
  height: 8px;
}
.good-big .swiper .swiper-pagination-bullet-active {
  width: 28px;
}
.good-big__textbox p {
  display: inline;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -moz-box;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  line-clamp: 4;
  box-orient: vertical;
}
@media (max-width: 1279px) {
  .goods-sidebar {
    position: static;
    z-index: 0;
  }
}
@media (max-width: 900px) {
  .good-big {
    position: static;
  }
  .good-big__img-box img {
    -o-object-fit: cover;
    object-fit: cover;
  }
  .good-big .arrows-swiper {
    display: none;
  }
}
@media (max-width: 550px) {
  .good-big__textbox {
    min-height: 0;
  }
  .good-big__tags {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1;
  }
  .good-big__top {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10;
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
  }
  .good-big__name,
  .good-big__text {
    grid-column: span 2;
  }
  .good-big__text {
    margin-bottom: 8px;
    font-size: clamp(0.875rem, 0.8192rem + 0.2151vw, 1rem);
  }
  .good-big__textbox {
    display: none;
  }
  .good-big__info {
    display: contents;
  }
  .good-big__info .good-big__text {
    display: inline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -moz-box;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-clamp: 3;
    box-orient: vertical;
  }
}

.tags__content {
  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;
  min-height: 40px;
  border: 1px solid #d7d2cf;
  border-radius: 8px;
  padding: 10px 12px;
  line-height: 1;
  text-transform: uppercase;
  font-size: clamp(0.875rem, 0.8192rem + 0.2151vw, 1rem);
}
.tags .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 550px) {
  .tags {
    font-weight: 400;
    text-transform: none;
    font-family: "Involve";
  }
}

.rooms-banner__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 20px;
}
.rooms-banner__swiper-box {
  position: relative;
  max-width: 803px;
  width: 100%;
}
.rooms-banner__swiper-box .swiper {
  height: 100%;
  max-height: 800px;
}
@media (max-width: 1400px) {
  .rooms-banner__swiper-box .swiper {
    max-height: clamp(21.5rem, 16.7287rem + 16.5957vw, 31.25rem);
  }
}
.rooms-banner__swiper-box img {
  width: 100%;
  height: 100%;
}
.rooms-banner__swiper-box .swiper-pagination {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  z-index: 3;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rooms-banner__swiper-box .swiper-pagination-bullet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.rooms-banner__slide {
  height: 100%;
  width: 100%;
}
.rooms-banner__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1.75rem, 1.434rem + 1.2183vw, 2.5rem);
  padding: clamp(2.5rem, 2.2367rem + 1.0152vw, 3.125rem)
    clamp(1rem, 0.1047rem + 3.4518vw, 3.125rem);
  background-color: #e2dcd5;
  max-width: 568px;
}
.rooms-banner__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 16px;
}
.rooms-banner__top .textbox {
  max-width: 409px;
}
.rooms-banner__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: clamp(1.25rem, 1.0393rem + 0.8122vw, 1.75rem);
  font-family: "Involve";
}
.rooms-banner__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 10px;
  max-width: 421px;
}
.rooms-banner__link-head {
  font-weight: 500;
  color: rgba(76, 76, 76, 0.4);
  text-transform: uppercase;
  font-size: clamp(0.875rem, 0.8223rem + 0.203vw, 1rem);
}
.rooms-banner__link-text {
  font-weight: 500;
  font-size: clamp(1rem, 0.8947rem + 0.4061vw, 1.25rem);
  line-height: 1.25;
}
@media (max-width: 1400px) {
  .rooms-banner__swiper-box {
    max-width: 100%;
  }
  .rooms-banner__swiper-box .swiper {
    height: auto;
  }
  .rooms-banner__content {
    max-width: 100%;
  }
  .rooms-banner__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media (max-width: 500px) {
  .rooms-banner .container {
    padding: 0;
  }
} /*# sourceMappingURL=rooms.css.map */

/* End */


/* Start:/bitrix/templates/konakovo.com-frogstudios/css/lib/fancybox.css?174412314425343*/
:root{--f-spinner-width: 36px;--f-spinner-height: 36px;--f-spinner-color-1: rgba(0, 0, 0, 0.1);--f-spinner-color-2: rgba(17, 24, 28, 0.8);--f-spinner-stroke: 2.75}.f-spinner{margin:auto;padding:0;width:var(--f-spinner-width);height:var(--f-spinner-height)}.f-spinner svg{width:100%;height:100%;vertical-align:top;animation:f-spinner-rotate 2s linear infinite}.f-spinner svg *{stroke-width:var(--f-spinner-stroke);fill:none}.f-spinner svg *:first-child{stroke:var(--f-spinner-color-1)}.f-spinner svg *:last-child{stroke:var(--f-spinner-color-2);animation:f-spinner-dash 2s ease-in-out infinite}@keyframes f-spinner-rotate{100%{transform:rotate(360deg)}}@keyframes f-spinner-dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}.f-throwOutUp{animation:var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp}.f-throwOutDown{animation:var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown}@keyframes f-throwOutUp{to{transform:translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);opacity:0}}@keyframes f-throwOutDown{to{transform:translate3d(0, var(--f-throw-out-distance, 150px), 0);opacity:0}}.f-zoomInUp{animation:var(--f-transition-duration, 0.2s) ease .1s both f-zoomInUp}.f-zoomOutDown{animation:var(--f-transition-duration, 0.2s) ease both f-zoomOutDown}@keyframes f-zoomInUp{from{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}to{transform:scale(1) translate3d(0, 0, 0);opacity:1}}@keyframes f-zoomOutDown{to{transform:scale(0.975) translate3d(0, 16px, 0);opacity:0}}.f-fadeIn{animation:var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;z-index:2}.f-fadeOut{animation:var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;z-index:1}@keyframes f-fadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeOut{100%{opacity:0}}.f-fadeFastIn{animation:var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;z-index:2}.f-fadeFastOut{animation:var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;z-index:2}@keyframes f-fadeFastIn{0%{opacity:.75}100%{opacity:1}}@keyframes f-fadeFastOut{100%{opacity:0}}.f-fadeSlowIn{animation:var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;z-index:2}.f-fadeSlowOut{animation:var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;z-index:1}@keyframes f-fadeSlowIn{0%{opacity:0}100%{opacity:1}}@keyframes f-fadeSlowOut{100%{opacity:0}}.f-crossfadeIn{animation:var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;z-index:2}.f-crossfadeOut{animation:calc(var(--f-transition-duration, 0.2s)*.5) linear .1s both f-crossfadeOut;z-index:1}@keyframes f-crossfadeIn{0%{opacity:0}100%{opacity:1}}@keyframes f-crossfadeOut{100%{opacity:0}}.f-slideIn.from-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext}.f-slideIn.from-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev}.f-slideOut.to-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext}.f-slideOut.to-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev}@keyframes f-slideInPrev{0%{transform:translateX(100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideInNext{0%{transform:translateX(-100%)}100%{transform:translate3d(0, 0, 0)}}@keyframes f-slideOutNext{100%{transform:translateX(-100%)}}@keyframes f-slideOutPrev{100%{transform:translateX(100%)}}.f-classicIn.from-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;z-index:2}.f-classicIn.from-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;z-index:2}.f-classicOut.to-next{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;z-index:1}.f-classicOut.to-prev{animation:var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;z-index:1}@keyframes f-classicInNext{0%{transform:translateX(-75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicInPrev{0%{transform:translateX(75px);opacity:0}100%{transform:translate3d(0, 0, 0);opacity:1}}@keyframes f-classicOutNext{100%{transform:translateX(-75px);opacity:0}}@keyframes f-classicOutPrev{100%{transform:translateX(75px);opacity:0}}:root{--f-button-width: 40px;--f-button-height: 40px;--f-button-border: 0;--f-button-border-radius: 0;--f-button-color: #374151;--f-button-bg: #f8f8f8;--f-button-hover-bg: #e0e0e0;--f-button-active-bg: #d0d0d0;--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 20px;--f-button-svg-height: 20px;--f-button-svg-stroke-width: 1.5;--f-button-svg-fill: none;--f-button-svg-filter: none;--f-button-svg-disabled-opacity: 0.65}.f-button{display:flex;justify-content:center;align-items:center;box-sizing:content-box;position:relative;margin:0;padding:0;width:var(--f-button-width);height:var(--f-button-height);border:var(--f-button-border);border-radius:var(--f-button-border-radius);color:var(--f-button-color);background:var(--f-button-bg);box-shadow:var(--f-button-shadow);pointer-events:all;cursor:pointer;transition:var(--f-button-transition)}@media(hover: hover){.f-button:hover:not([disabled]){color:var(--f-button-hover-color);background-color:var(--f-button-hover-bg)}}.f-button:active:not([disabled]){background-color:var(--f-button-active-bg)}.f-button:focus:not(:focus-visible){outline:none}.f-button:focus-visible{outline:none;box-shadow:inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color))}.f-button svg{width:var(--f-button-svg-width);height:var(--f-button-svg-height);fill:var(--f-button-svg-fill);stroke:currentColor;stroke-width:var(--f-button-svg-stroke-width);stroke-linecap:round;stroke-linejoin:round;transition:opacity .15s ease;transform:var(--f-button-transform);filter:var(--f-button-svg-filter);pointer-events:none}.f-button[disabled]{cursor:default}.f-button[disabled] svg{opacity:var(--f-button-svg-disabled-opacity)}.f-carousel__nav .f-button.is-prev,.f-carousel__nav .f-button.is-next,.fancybox__nav .f-button.is-prev,.fancybox__nav .f-button.is-next{position:absolute;z-index:1}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-next{top:50%;transform:translateY(-50%)}.is-horizontal .f-carousel__nav .f-button.is-prev,.is-horizontal .fancybox__nav .f-button.is-prev{left:var(--f-button-prev-pos)}.is-horizontal .f-carousel__nav .f-button.is-next,.is-horizontal .fancybox__nav .f-button.is-next{right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev,.is-horizontal.is-rtl .fancybox__nav .f-button.is-prev{left:auto;right:var(--f-button-next-pos)}.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next,.is-horizontal.is-rtl .fancybox__nav .f-button.is-next{right:auto;left:var(--f-button-prev-pos)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-next{top:auto;left:50%;transform:translateX(-50%)}.is-vertical .f-carousel__nav .f-button.is-prev,.is-vertical .fancybox__nav .f-button.is-prev{top:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-next,.is-vertical .fancybox__nav .f-button.is-next{bottom:var(--f-button-next-pos)}.is-vertical .f-carousel__nav .f-button.is-prev svg,.is-vertical .f-carousel__nav .f-button.is-next svg,.is-vertical .fancybox__nav .f-button.is-prev svg,.is-vertical .fancybox__nav .f-button.is-next svg{transform:rotate(90deg)}.f-carousel__nav .f-button:disabled,.fancybox__nav .f-button:disabled{pointer-events:none}html.with-fancybox{width:auto;overflow:visible;scroll-behavior:auto}html.with-fancybox body{touch-action:none}html.with-fancybox body.hide-scrollbar{width:auto;margin-right:calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));overflow:hidden !important;overscroll-behavior-y:none}.fancybox__container{--fancybox-color: #dbdbdb;--fancybox-hover-color: #fff;--fancybox-bg: rgba(24, 24, 27, 0.98);--fancybox-slide-gap: 10px;--f-spinner-width: 50px;--f-spinner-height: 50px;--f-spinner-color-1: rgba(255, 255, 255, 0.1);--f-spinner-color-2: #bbb;--f-spinner-stroke: 3.65;position:fixed;top:0;left:0;bottom:0;right:0;direction:ltr;display:flex;flex-direction:column;box-sizing:border-box;margin:0;padding:0;color:#f8f8f8;-webkit-tap-highlight-color:rgba(0,0,0,0);overflow:visible;z-index:var(--fancybox-zIndex, 1050);outline:none;transform-origin:top left;-webkit-text-size-adjust:100%;-moz-text-size-adjust:none;-ms-text-size-adjust:100%;text-size-adjust:100%;overscroll-behavior-y:contain}.fancybox__container *,.fancybox__container *::before,.fancybox__container *::after{box-sizing:inherit}.fancybox__container::backdrop{background-color:rgba(0,0,0,0)}.fancybox__backdrop{position:fixed;top:0;left:0;bottom:0;right:0;z-index:-1;background:var(--fancybox-bg);opacity:var(--fancybox-opacity, 1);will-change:opacity}.fancybox__carousel{position:relative;box-sizing:border-box;flex:1;min-height:0;z-index:10;overflow-y:visible;overflow-x:clip}.fancybox__viewport{width:100%;height:100%}.fancybox__viewport.is-draggable{cursor:move;cursor:grab}.fancybox__viewport.is-dragging{cursor:move;cursor:grabbing}.fancybox__track{display:flex;margin:0 auto;height:100%}.fancybox__slide{flex:0 0 auto;position:relative;display:flex;flex-direction:column;align-items:center;width:100%;height:100%;margin:0 var(--fancybox-slide-gap) 0 0;padding:4px;overflow:auto;overscroll-behavior:contain;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn{padding-top:40px}.fancybox__slide.has-iframe,.fancybox__slide.has-video,.fancybox__slide.has-html5video{overflow:hidden}.fancybox__slide.has-image{overflow:hidden}.fancybox__slide.has-image.is-animating,.fancybox__slide.has-image.is-selected{overflow:visible}.fancybox__slide::before,.fancybox__slide::after{content:"";flex:0 0 0;margin:auto}.fancybox__backdrop:empty,.fancybox__viewport:empty,.fancybox__track:empty,.fancybox__slide:empty{display:block}.fancybox__content{align-self:center;display:flex;flex-direction:column;position:relative;margin:0;padding:2rem;max-width:100%;color:var(--fancybox-content-color, #374151);background:var(--fancybox-content-bg, #fff);cursor:default;border-radius:0;z-index:20}.is-loading .fancybox__content{opacity:0}.is-draggable .fancybox__content{cursor:move;cursor:grab}.can-zoom_in .fancybox__content{cursor:zoom-in}.can-zoom_out .fancybox__content{cursor:zoom-out}.is-dragging .fancybox__content{cursor:move;cursor:grabbing}.fancybox__content [data-selectable],.fancybox__content [contenteditable]{cursor:auto}.fancybox__slide.has-image>.fancybox__content{padding:0;background:rgba(0,0,0,0);min-height:1px;background-repeat:no-repeat;background-size:contain;background-position:center center;transition:none;transform:translate3d(0, 0, 0);backface-visibility:hidden}.fancybox__slide.has-image>.fancybox__content>picture>img{width:100%;height:auto;max-height:100%}.is-animating .fancybox__content,.is-dragging .fancybox__content{will-change:transform,width,height}.fancybox-image{margin:auto;display:block;width:100%;height:100%;min-height:0;object-fit:contain;user-select:none;filter:blur(0px)}.fancybox__caption{align-self:center;max-width:100%;flex-shrink:0;margin:0;padding:14px 0 4px 0;overflow-wrap:anywhere;line-height:1.375;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);cursor:auto;visibility:visible}.is-loading .fancybox__caption,.is-closing .fancybox__caption{opacity:0;visibility:hidden}.is-compact .fancybox__caption{padding-bottom:0}.f-button.is-close-btn{--f-button-svg-stroke-width: 2;position:absolute;top:0;right:8px;z-index:40}.fancybox__content>.f-button.is-close-btn{--f-button-width: 34px;--f-button-height: 34px;--f-button-border-radius: 4px;--f-button-color: var(--fancybox-color, #fff);--f-button-hover-color: var(--fancybox-color, #fff);--f-button-bg: transparent;--f-button-hover-bg: transparent;--f-button-active-bg: transparent;--f-button-svg-width: 22px;--f-button-svg-height: 22px;position:absolute;top:-38px;right:0;opacity:.75}.is-loading .fancybox__content>.f-button.is-close-btn{visibility:hidden}.is-zooming-out .fancybox__content>.f-button.is-close-btn{visibility:hidden}.fancybox__content>.f-button.is-close-btn:hover{opacity:1}.fancybox__footer{padding:0;margin:0;position:relative}.fancybox__footer .fancybox__caption{width:100%;padding:24px;opacity:var(--fancybox-opacity, 1);transition:all .25s ease}.is-compact .fancybox__footer{position:absolute;bottom:0;left:0;right:0;z-index:20;background:rgba(24,24,27,.5)}.is-compact .fancybox__footer .fancybox__caption{padding:12px}.is-compact .fancybox__content>.f-button.is-close-btn{--f-button-border-radius: 50%;--f-button-color: #fff;--f-button-hover-color: #fff;--f-button-outline-color: #000;--f-button-bg: rgba(0, 0, 0, 0.6);--f-button-active-bg: rgba(0, 0, 0, 0.6);--f-button-hover-bg: rgba(0, 0, 0, 0.6);--f-button-svg-width: 18px;--f-button-svg-height: 18px;--f-button-svg-filter: none;top:5px;right:5px}.fancybox__nav{--f-button-width: 50px;--f-button-height: 50px;--f-button-border: 0;--f-button-border-radius: 50%;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: transparent;--f-button-hover-bg: rgba(24, 24, 27, 0.3);--f-button-active-bg: rgba(24, 24, 27, 0.5);--f-button-shadow: none;--f-button-transition: all 0.15s ease;--f-button-transform: none;--f-button-svg-width: 26px;--f-button-svg-height: 26px;--f-button-svg-stroke-width: 2.5;--f-button-svg-fill: none;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));--f-button-svg-disabled-opacity: 0.65;--f-button-next-pos: 1rem;--f-button-prev-pos: 1rem;opacity:var(--fancybox-opacity, 1)}.fancybox__nav .f-button:before{position:absolute;content:"";top:-30px;right:-20px;left:-20px;bottom:-30px;z-index:1}.is-idle .fancybox__nav{animation:.15s ease-out both f-fadeOut}.is-idle.is-compact .fancybox__footer{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__slide>.f-spinner{position:absolute;top:50%;left:50%;margin:var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));z-index:30;cursor:pointer}.fancybox-protected{position:absolute;top:0;left:0;right:0;bottom:0;z-index:40;user-select:none}.fancybox-ghost{position:absolute;top:0;left:0;width:100%;height:100%;min-height:0;object-fit:contain;z-index:40;user-select:none;pointer-events:none}.fancybox-focus-guard{outline:none;opacity:0;position:fixed;pointer-events:none}.fancybox__container:not([aria-hidden]){opacity:0}.fancybox__container.is-animated[aria-hidden=false]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=false] .fancybox__slide>*:not(.fancybox__content){animation:var(--f-interface-enter-duration, 0.25s) ease .1s backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop{animation:var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn}.fancybox__container.is-animated[aria-hidden=true]>*:not(.fancybox__backdrop,.fancybox__carousel),.fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel>*:not(.fancybox__viewport),.fancybox__container.is-animated[aria-hidden=true] .fancybox__slide>*:not(.fancybox__content){animation:var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut}.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop{animation:var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{max-width:100%;flex-shrink:1;min-height:1px;overflow:visible}.has-iframe .fancybox__content,.has-map .fancybox__content,.has-pdf .fancybox__content{width:calc(100% - 120px);height:90%}.fancybox__container.is-compact .has-iframe .fancybox__content,.fancybox__container.is-compact .has-map .fancybox__content,.fancybox__container.is-compact .has-pdf .fancybox__content{width:100%;height:100%}.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{width:960px;height:540px;max-width:100%;max-height:100%}.has-map .fancybox__content,.has-pdf .fancybox__content,.has-youtube .fancybox__content,.has-vimeo .fancybox__content,.has-html5video .fancybox__content{padding:0;background:rgba(24,24,27,.9);color:#fff}.has-map .fancybox__content{background:#e5e3df}.fancybox__html5video,.fancybox__iframe{border:0;display:block;height:100%;width:100%;background:rgba(0,0,0,0)}.fancybox-placeholder{border:0 !important;clip:rect(1px, 1px, 1px, 1px) !important;-webkit-clip-path:inset(50%) !important;clip-path:inset(50%) !important;height:1px !important;margin:-1px !important;overflow:hidden !important;padding:0 !important;position:absolute !important;width:1px !important;white-space:nowrap !important}.f-carousel__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-outline: 0;--f-thumb-outline-color: #5eb0ef;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1;--f-thumb-border-radius: 2px;--f-thumb-offset: 0px;--f-button-next-pos: 0;--f-button-prev-pos: 0}.f-carousel__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1;--f-thumb-selected-opacity: 1}.f-carousel__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 16px;--f-thumb-clip-width: 46px}.f-thumbs{position:relative;flex:0 0 auto;margin:0;overflow:hidden;-webkit-tap-highlight-color:rgba(0,0,0,0);user-select:none;perspective:1000px;transform:translateZ(0)}.f-thumbs .f-spinner{position:absolute;top:0;left:0;width:100%;height:100%;border-radius:2px;background-image:linear-gradient(#ebeff2, #e2e8f0);z-index:-1}.f-thumbs .f-spinner svg{display:none}.f-thumbs.is-vertical{height:100%}.f-thumbs__viewport{width:100%;height:auto;overflow:hidden;transform:translate3d(0, 0, 0)}.f-thumbs__track{display:flex}.f-thumbs__slide{position:relative;flex:0 0 auto;box-sizing:content-box;display:flex;align-items:center;justify-content:center;padding:0;margin:0;width:var(--f-thumb-width);height:var(--f-thumb-height);overflow:visible;cursor:pointer}.f-thumbs__slide.is-loading img{opacity:0}.is-classic .f-thumbs__viewport{height:100%}.is-modern .f-thumbs__track{width:max-content}.is-modern .f-thumbs__track::before{content:"";position:absolute;top:0;bottom:0;left:calc((var(--f-thumb-clip-width, 0))*-0.5);width:calc(var(--width, 0)*1px + var(--f-thumb-clip-width, 0));cursor:pointer}.is-modern .f-thumbs__slide{width:var(--f-thumb-clip-width);transform:translate3d(calc(var(--shift, 0) * -1px), 0, 0);transition:none;pointer-events:none}.is-modern.is-resting .f-thumbs__slide{transition:transform .33s ease}.is-modern.is-resting .f-thumbs__slide__button{transition:clip-path .33s ease}.is-using-tab .is-modern .f-thumbs__slide:focus-within{filter:drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color))}.f-thumbs__slide__button{appearance:none;width:var(--f-thumb-width);height:100%;margin:0 -100% 0 -100%;padding:0;border:0;position:relative;border-radius:var(--f-thumb-border-radius);overflow:hidden;background:rgba(0,0,0,0);outline:none;cursor:pointer;pointer-events:auto;touch-action:manipulation;opacity:var(--f-thumb-opacity);transition:opacity .2s ease}.f-thumbs__slide__button:hover{opacity:var(--f-thumb-hover-opacity)}.f-thumbs__slide__button:focus:not(:focus-visible){outline:none}.f-thumbs__slide__button:focus-visible{outline:none;opacity:var(--f-thumb-selected-opacity)}.is-modern .f-thumbs__slide__button{--clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );clip-path:var(--clip-path)}.is-classic .is-nav-selected .f-thumbs__slide__button{opacity:var(--f-thumb-selected-opacity)}.is-classic .is-nav-selected .f-thumbs__slide__button::after{content:"";position:absolute;top:0;left:0;right:0;height:auto;bottom:0;border:var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);border-radius:var(--f-thumb-border-radius);animation:f-fadeIn .2s ease-out;z-index:10}.f-thumbs__slide__img{overflow:hidden;position:absolute;top:0;right:0;bottom:0;left:0;width:100%;height:100%;margin:0;padding:var(--f-thumb-offset);box-sizing:border-box;pointer-events:none;object-fit:cover;border-radius:var(--f-thumb-border-radius)}.f-thumbs.is-horizontal .f-thumbs__track{padding:8px 0 12px 0}.f-thumbs.is-horizontal .f-thumbs__slide{margin:0 var(--f-thumb-gap) 0 0}.f-thumbs.is-vertical .f-thumbs__track{flex-wrap:wrap;padding:0 8px}.f-thumbs.is-vertical .f-thumbs__slide{margin:0 0 var(--f-thumb-gap) 0}.fancybox__thumbs{--f-thumb-width: 96px;--f-thumb-height: 72px;--f-thumb-border-radius: 2px;--f-thumb-outline: 2px;--f-thumb-outline-color: #ededed;position:relative;opacity:var(--fancybox-opacity, 1);transition:max-height .35s cubic-bezier(0.23, 1, 0.32, 1)}.fancybox__thumbs.is-classic{--f-thumb-gap: 8px;--f-thumb-opacity: 0.5;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-classic .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-modern{--f-thumb-gap: 4px;--f-thumb-extra-gap: 16px;--f-thumb-clip-width: 46px;--f-thumb-opacity: 1;--f-thumb-hover-opacity: 1}.fancybox__thumbs.is-modern .f-spinner{background-image:linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05))}.fancybox__thumbs.is-horizontal{padding:0 var(--f-thumb-gap)}.fancybox__thumbs.is-vertical{padding:var(--f-thumb-gap) 0}.is-compact .fancybox__thumbs{--f-thumb-width: 64px;--f-thumb-clip-width: 32px;--f-thumb-height: 48px;--f-thumb-extra-gap: 10px}.fancybox__thumbs.is-masked{max-height:0px !important}.is-closing .fancybox__thumbs{transition:none !important}.fancybox__toolbar{--f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));--f-button-width: 46px;--f-button-height: 46px;--f-button-color: var(--fancybox-color);--f-button-hover-color: var(--fancybox-hover-color);--f-button-bg: rgba(24, 24, 27, 0.65);--f-button-hover-bg: rgba(70, 70, 73, 0.65);--f-button-active-bg: rgba(90, 90, 93, 0.65);--f-button-border-radius: 0;--f-button-svg-width: 24px;--f-button-svg-height: 24px;--f-button-svg-stroke-width: 1.5;--f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));--f-button-svg-fill: none;--f-button-svg-disabled-opacity: 0.65;display:flex;flex-direction:row;justify-content:space-between;margin:0;padding:0;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI Adjusted","Segoe UI","Liberation Sans",sans-serif;color:var(--fancybox-color, currentColor);opacity:var(--fancybox-opacity, 1);text-shadow:var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));pointer-events:none;z-index:20}.fancybox__toolbar :focus-visible{z-index:1}.fancybox__toolbar.is-absolute,.is-compact .fancybox__toolbar{position:absolute;top:0;left:0;right:0}.is-idle .fancybox__toolbar{pointer-events:none;animation:.15s ease-out both f-fadeOut}.fancybox__toolbar__column{display:flex;flex-direction:row;flex-wrap:wrap;align-content:flex-start}.fancybox__toolbar__column.is-left,.fancybox__toolbar__column.is-right{flex-grow:1;flex-basis:0}.fancybox__toolbar__column.is-right{display:flex;justify-content:flex-end;flex-wrap:nowrap}.fancybox__infobar{padding:0 5px;line-height:var(--f-button-height);text-align:center;font-size:17px;font-variant-numeric:tabular-nums;-webkit-font-smoothing:subpixel-antialiased;cursor:default;user-select:none}.fancybox__infobar span{padding:0 5px}.fancybox__infobar:not(:first-child):not(:last-child){background:var(--f-button-bg)}[data-fancybox-toggle-slideshow]{position:relative}[data-fancybox-toggle-slideshow] .f-progress{height:100%;opacity:.3}[data-fancybox-toggle-slideshow] svg g:first-child{display:flex}[data-fancybox-toggle-slideshow] svg g:last-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child{display:none}.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:first-child{display:flex}[data-fancybox-toggle-fullscreen] svg g:last-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child{display:none}:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child{display:flex}.f-progress{position:absolute;top:0;left:0;right:0;height:3px;transform:scaleX(0);transform-origin:0;transition-property:transform;transition-timing-function:linear;background:var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));z-index:30;user-select:none;pointer-events:none}
/* End */


/* Start:/bitrix/templates/konakovo.com-frogstudios/components/bitrix/menu/top/style.css?1748501725475*/
/* Left menu*/
ul.left-menu
{
	list-style:none;
	margin:0; padding:0;
	margin-bottom:8px;
	position: relative; /*IE bug*/
}

ul.left-menu li
{
	padding: 10px 16px;
	background:#F5F5F5 url(/bitrix/templates/konakovo.com-frogstudios/components/bitrix/menu/top/images/left_menu_bg.gif) top repeat-x;
}

ul.left-menu li a
{
	font-size:100%;
	color:#BC262C;
	font-weight:bold;
	text-decoration:none;
}

ul.left-menu li a:visited
{
	color:#BC262C;
}

ul.left-menu li a:hover
{
	color:#BC262C;
}


.menu__link.active .menu__item{
	color: #039191;
}




/* End */


/* Start:/bitrix/templates/konakovo.com-frogstudios/components/bitrix/menu/bottom/style.min.css?1745271235490*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/bitrix/templates/konakovo.com-frogstudios/components/bitrix/menu/bottom/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}
/* End */


/* Start:/bitrix/templates/konakovo.com-frogstudios/components/bitrix/menu/info/style.min.css?1745271584490*/
ul.left-menu{list-style:none;margin:0;padding:0;margin-bottom:8px;position:relative}ul.left-menu li{padding:10px 16px;background:#f5f5f5 url(/bitrix/templates/konakovo.com-frogstudios/components/bitrix/menu/info/images/left_menu_bg.gif) top repeat-x}ul.left-menu li a{font-size:100%;color:#bc262c;font-weight:bold;text-decoration:none}ul.left-menu li a:visited{color:#bc262c}ul.left-menu li a:hover{color:#bc262c}ul.left-menu li a.selected:link,ul.left-menu li a.selected:visited,ul.left-menu li a.selected:active,ul.left-menu li a.selected:hover{color:#fc8d3d}
/* End */
/* /bitrix/templates/konakovo.com-frogstudios/css/lib/air-datepicker.css?174315206622602 */
/* /bitrix/templates/konakovo.com-frogstudios/css/guests.css?17477837514919 */
/* /bitrix/templates/konakovo.com-frogstudios/css/lib/swiper.min.css?17428963126714 */
/* /bitrix/templates/konakovo.com-frogstudios/css/main.css?175077570034707 */
/* /bitrix/templates/konakovo.com-frogstudios/css/page.css?175077761552982 */
/* /bitrix/templates/konakovo.com-frogstudios/css/rooms.css?175069626015962 */
/* /bitrix/templates/konakovo.com-frogstudios/css/lib/fancybox.css?174412314425343 */
/* /bitrix/templates/konakovo.com-frogstudios/components/bitrix/menu/top/style.css?1748501725475 */
/* /bitrix/templates/konakovo.com-frogstudios/components/bitrix/menu/bottom/style.min.css?1745271235490 */
/* /bitrix/templates/konakovo.com-frogstudios/components/bitrix/menu/info/style.min.css?1745271584490 */
