.air-datepicker {
  --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-nav-height: 32px;
  --adp-nav-action-size: 32px;
  --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-btn-height: 32px;
  --adp-time-track-height: 1px;
  --adp-time-thumb-size: 12px;
  --adp-time-padding-inner: 10px;
  --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-overlay {
  --adp-overlay-background-color: hsl(0, 0%, 66%);
  --adp-overlay-transition-duration: 0.3s;
  --adp-overlay-transition-ease: ease-out;
  --adp-overlay-z-index: 99;
}
.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: hsl(var(--ah), var(--as), var(--al));
  border-radius: var(--border-radius-small);
  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: hsl(0, 0%, 66%);
  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, hsl(var(--ah), var(--as), var(--al)), hsl(var(--ah), var(--as), var(--al))) left 0.5% 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']:focus {
  outline: none;
}
.air-datepicker-time--row input[type='range']::-webkit-slider-runnable-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: transparent;
  background: hsl(0, 0%, 66%);
}
.air-datepicker-time--row input[type='range']::-moz-range-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: transparent;
  background: hsl(0, 0%, 66%);
}
.air-datepicker-time--row input[type='range']::-ms-track {
  border: none;
  height: var(--adp-time-track-height);
  cursor: pointer;
  color: transparent;
  background: hsl(0, 0%, 66%);
}
.air-datepicker-time--row input[type='range']::-ms-fill-lower,
.air-datepicker-time--row input[type='range']::-ms-fill-upper {
  background: transparent;
}
.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']::-ms-tooltip {
  display: none;
}
.air-datepicker-time--row input[type='range']::-webkit-slider-thumb {
  -webkit-appearance: none;
}
.air-datepicker-time--row input[type='range']:hover::-ms-thumb {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-time--row input[type='range']:hover::-moz-range-thumb {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-time--row input[type='range']:hover::-webkit-slider-thumb {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-time--row input[type='range']:focus::-ms-thumb {
  background: hsl(var(--ph), var(--ps), var(--pl));
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-time--row input[type='range']:focus::-moz-range-thumb {
  background: hsl(var(--ph), var(--ps), var(--pl));
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-time--row input[type='range']:focus::-webkit-slider-thumb {
  background: hsl(var(--ph), var(--ps), var(--pl));
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-time--row input[type='range']::-ms-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid hsl(0, 0%, 66%);
  background: hsl(var(--bh), var(--bs), var(--bl));
  cursor: pointer;
  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 hsl(0, 0%, 66%);
  background: hsl(var(--bh), var(--bs), var(--bl));
  cursor: pointer;
  transition: background var(--adp-transition-duration);
}
.air-datepicker-time--row input[type='range']::-webkit-slider-thumb {
  box-sizing: border-box;
  height: 12px;
  width: 12px;
  border-radius: 3px;
  border: 1px solid hsl(0, 0%, 66%);
  background: hsl(var(--bh), var(--bs), var(--bl));
  cursor: pointer;
  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-nav {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  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(--border-radius-small);
  user-select: none;
}
.air-datepicker-nav--action:hover {
  background: hsl(var(--ah), var(--as), var(--al));
}
.air-datepicker-nav--action:active {
  background: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.air-datepicker-nav--action.-disabled- {
  visibility: hidden;
}
.air-datepicker-nav--action svg {
  width: 32px;
  height: 32px;
}
.air-datepicker-nav--action path {
  fill: none;
  stroke: hsl(0, 0%, 66%);
  stroke-width: 2px;
}
.air-datepicker-nav--title {
  border-radius: var(--border-radius-small);
  padding: 0 8px;
}
.air-datepicker-nav--title i {
  font-style: normal;
  color: hsl(0, 0%, 66%);
  margin-left: 0.3em;
}
.air-datepicker-nav--title:hover {
  background: hsl(var(--ah), var(--as), var(--al));
}
.air-datepicker-nav--title:active {
  background: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.air-datepicker-nav--title.-disabled- {
  cursor: default;
  background: 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: hsl(var(--ah), var(--as), var(--al));
}
.air-datepicker-cell.-current- {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-current-.-focus- {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.air-datepicker-cell.-current-.-in-range- {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-disabled- {
  cursor: default;
  color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.air-datepicker-cell.-disabled-.-focus- {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.air-datepicker-cell.-disabled-.-in-range- {
  color: hsl(0, 0%, 66%);
}
.air-datepicker-cell.-disabled-.-current-.-focus- {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.air-datepicker-cell.-in-range- {
  background: hsla(var(--ph), var(--ps), var(--pl), 0.1);
  border-radius: 0;
}
.air-datepicker-cell.-in-range-:hover,
.air-datepicker-cell.-in-range-.-focus- {
  background: hsla(var(--ph), var(--ps), var(--pl), 0.15);
}
.air-datepicker-cell.-range-from- {
  border: 1px solid hsl(var(--ph), var(--ps), var(--pl));
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
  border-radius: var(--adp-cell-border-radius) 0 0 var(--adp-cell-border-radius);
}
.air-datepicker-cell.-range-to- {
  border: 1px solid hsl(var(--ph), var(--ps), var(--pl));
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.15);
  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: hsl(var(--bh), var(--bs), var(--bl));
  border: none;
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-selected-.-current- {
  color: hsl(var(--bh), var(--bs), var(--bl));
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-selected-.-focus- {
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-day-.-other-month- {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 16%));
}
.air-datepicker-cell.-day-.-other-month-:hover {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.air-datepicker-cell.-day-.-other-month-.-disabled-.-focus- {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 16%));
}
.air-datepicker-cell.-day-.-other-month-.-selected- {
  color: hsl(var(--bh), var(--bs), var(--bl));
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-day-.-other-month-.-selected-.-focus- {
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-day-.-other-month-.-in-range- {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
  color: hsl(var(--th), var(--ts), var(--tl));
}
.air-datepicker-cell.-day-.-other-month-.-in-range-.-focus- {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.15);
}
.air-datepicker-cell.-day-.-other-month-:empty {
  background: none;
  border: none;
}
.air-datepicker-cell.-day-.-other-month-:hover {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.air-datepicker-cell.-day-.-other-month-.-disabled-.-focus- {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 16%));
}
.air-datepicker-cell.-day-.-other-month-.-selected- {
  color: hsl(var(--bh), var(--bs), var(--bl));
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-day-.-other-month-.-selected-.-focus- {
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-day-.-other-month-.-in-range- {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
  color: hsl(var(--th), var(--ts), var(--tl));
}
.air-datepicker-cell.-day-.-other-month-.-in-range-.-focus- {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.15);
}
.air-datepicker-cell.-day-.-other-month-:empty {
  background: none;
  border: none;
}
.air-datepicker-cell.-year-.-other-decade- {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 16%));
}
.air-datepicker-cell.-year-.-other-decade-:hover {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.air-datepicker-cell.-year-.-other-decade-.-disabled-.-focus- {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 16%));
}
.air-datepicker-cell.-year-.-other-decade-.-selected- {
  color: hsl(var(--bh), var(--bs), var(--bl));
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-year-.-other-decade-.-selected-.-focus- {
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-year-.-other-decade-.-in-range- {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
  color: hsl(var(--th), var(--ts), var(--tl));
}
.air-datepicker-cell.-year-.-other-decade-.-in-range-.-focus- {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.15);
}
.air-datepicker-cell.-year-.-other-decade-:empty {
  background: none;
  border: none;
}
.air-datepicker-cell.-year-.-other-decade-:hover {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.air-datepicker-cell.-year-.-other-decade-.-disabled-.-focus- {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 16%));
}
.air-datepicker-cell.-year-.-other-decade-.-selected- {
  color: hsl(var(--bh), var(--bs), var(--bl));
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-year-.-other-decade-.-selected-.-focus- {
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-year-.-other-decade-.-in-range- {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
  color: hsl(var(--th), var(--ts), var(--tl));
}
.air-datepicker-cell.-year-.-other-decade-.-in-range-.-focus- {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.15);
}
.air-datepicker-cell.-year-.-other-decade-:empty {
  background: none;
  border: none;
}
.air-datepicker-buttons {
  display: grid;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
}
.air-datepicker-button {
  display: inline-flex;
  color: hsl(var(--ph), var(--ps), var(--pl));
  border-radius: var(--border-radius-small);
  cursor: pointer;
  height: var(--adp-btn-height);
  border: none;
  background: rgba(255, 255, 255, 0);
}
.air-datepicker-button:hover {
  color: hsl(var(--th), var(--ts), var(--tl));
  background: hsl(var(--ah), var(--as), var(--al));
}
.air-datepicker-button:focus {
  color: hsl(var(--th), var(--ts), var(--tl));
  background: hsl(var(--ah), var(--as), var(--al));
  outline: none;
}
.air-datepicker-button:active {
  background: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.air-datepicker-button span {
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.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: hsl(40, 100%, 50%);
  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: hsl(var(--ph), var(--ps), var(--pl));
}
.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 {
  background: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(0, 0%, 66%);
  border-radius: var(--border-radius-small);
  box-sizing: content-box;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(4, max-content);
  grid-template-areas: var(--adp-grid-areas);
  font-size: var(--adp-font-size);
  color: hsl(var(--th), var(--ts), var(--tl));
  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: hsl(var(--ah), var(--as), var(--al));
  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: transparent;
}
.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;
  z-index: 250;
}
.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: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 0%, 66%);
  border-right: 1px solid hsl(0, 0%, 66%);
  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 hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.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;
}
.air-datepicker-cell.-day-.-other-month- {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 16%));
}
.air-datepicker-cell.-day-.-other-month-:hover {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.air-datepicker-cell.-day-.-other-month-.-disabled-.-focus- {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 16%));
}
.air-datepicker-cell.-day-.-other-month-.-selected- {
  color: hsl(var(--bh), var(--bs), var(--bl));
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-day-.-other-month-.-selected-.-focus- {
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-day-.-other-month-.-in-range- {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
  color: hsl(var(--th), var(--ts), var(--tl));
}
.air-datepicker-cell.-day-.-other-month-.-in-range-.-focus- {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.15);
}
.air-datepicker-cell.-day-.-other-month-:empty {
  background: none;
  border: none;
}
.air-datepicker-cell.-day-.-other-month-:hover {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.air-datepicker-cell.-day-.-other-month-.-disabled-.-focus- {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 16%));
}
.air-datepicker-cell.-day-.-other-month-.-selected- {
  color: hsl(var(--bh), var(--bs), var(--bl));
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-day-.-other-month-.-selected-.-focus- {
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-day-.-other-month-.-in-range- {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
  color: hsl(var(--th), var(--ts), var(--tl));
}
.air-datepicker-cell.-day-.-other-month-.-in-range-.-focus- {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.15);
}
.air-datepicker-cell.-day-.-other-month-:empty {
  background: none;
  border: none;
}
.air-datepicker-cell.-year-.-other-decade- {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 16%));
}
.air-datepicker-cell.-year-.-other-decade-:hover {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.air-datepicker-cell.-year-.-other-decade-.-disabled-.-focus- {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 16%));
}
.air-datepicker-cell.-year-.-other-decade-.-selected- {
  color: hsl(var(--bh), var(--bs), var(--bl));
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-year-.-other-decade-.-selected-.-focus- {
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-year-.-other-decade-.-in-range- {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
  color: hsl(var(--th), var(--ts), var(--tl));
}
.air-datepicker-cell.-year-.-other-decade-.-in-range-.-focus- {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.15);
}
.air-datepicker-cell.-year-.-other-decade-:empty {
  background: none;
  border: none;
}
.air-datepicker-cell.-year-.-other-decade-:hover {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.air-datepicker-cell.-year-.-other-decade-.-disabled-.-focus- {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 16%));
}
.air-datepicker-cell.-year-.-other-decade-.-selected- {
  color: hsl(var(--bh), var(--bs), var(--bl));
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-year-.-other-decade-.-selected-.-focus- {
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.air-datepicker-cell.-year-.-other-decade-.-in-range- {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
  color: hsl(var(--th), var(--ts), var(--tl));
}
.air-datepicker-cell.-year-.-other-decade-.-in-range-.-focus- {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.15);
}
.air-datepicker-cell.-year-.-other-decade-:empty {
  background: none;
  border: none;
}
[data-animate='typing-chars']::after {
  content: '';
  display: inline-block;
  width: 0.4em;
  height: 0.1em;
  margin-left: 0.1em;
  border-radius: 2px;
  background-color: currentColor;
  animation: blink 1.2s ease-in-out infinite;
}
@keyframes blink {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
}
@keyframes jelly {
  from {
    transform: scale(1, 1);
  }
  30% {
    transform: scale(1.25, 0.75);
  }
  40% {
    transform: scale(0.75, 1.25);
  }
  50% {
    transform: scale(1.15, 0.85);
  }
  65% {
    transform: scale(0.95, 1.05);
  }
  75% {
    transform: scale(1.05, 0.95);
  }
  to {
    transform: scale(1, 1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  30% {
    transform: scale(1.2);
    opacity: 0.5;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}
@keyframes move-forever {
  0% {
    transform: translate3d(-90px, 0, 0);
  }
  100% {
    transform: translate3d(85px, 0, 0);
  }
}
@keyframes spinner-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes 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;
  }
}
@keyframes highlight {
  0% {
    transform: scale3d(0, 0, 0);
  }
  20% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  40% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  60%,
  to {
    transform: scaleX(1);
  }
  80% {
    transform: scale3d(0.99, 0.99, 0.99);
  }
}
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
@keyframes ink {
  100% {
    opacity: 0;
    transform: scale(4);
  }
}
@keyframes animateHeartOut {
  0% {
    transform: scale(1.4);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes animateHeart {
  0% {
    transform: scale(0.2);
  }
  40% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes animateCircle {
  40% {
    transform: scale(10);
    opacity: 1;
    fill: hsl(40, 100%, 50%);
  }
  55% {
    transform: scale(11);
    opacity: 1;
    fill: hsl(40, 100%, 50%);
  }
  65% {
    transform: scale(12);
    opacity: 1;
    fill: hsl(40, 100%, 50%);
  }
  75% {
    transform: scale(13);
    opacity: 1;
    fill: transparent;
    stroke: hsl(40, 100%, 50%);
    stroke-width: 0.5;
  }
  85% {
    transform: scale(17);
    opacity: 1;
    fill: transparent;
    stroke: hsl(40, 100%, 50%);
    stroke-width: 0.2;
  }
  95% {
    transform: scale(18);
    opacity: 1;
    fill: transparent;
    stroke: hsl(40, 100%, 50%);
    stroke-width: 0.1;
  }
  100% {
    transform: scale(19);
    opacity: 1;
    fill: transparent;
    stroke: hsl(40, 100%, 50%);
    stroke-width: 0;
  }
}
@keyframes ripple {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}
@keyframes shine {
  100% {
    left: 200%;
  }
}
@keyframes scale-in {
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes slide-in-right {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes feedback-fade-in-out {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
@keyframes feedback-pulse {
  50% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
  100% {
    transform: scale(2, 2);
    opacity: 0;
  }
}
@keyframes feedback-grow {
  0% {
    opacity: 0;
    transform: scale(0) rotate(-120deg);
  }
  70% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
  100% {
    opacity: 1;
    transform: scale(0.85) rotate(0);
  }
}
@keyframes feedback-bottom-open {
  0% {
    opacity: 0;
    transform: translate(0, 20px);
  }
  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}
[style*='--aspect-ratio'] {
  overflow: hidden;
}
[style*='--aspect-ratio'] > img {
  height: auto;
}
@supports (--custom: property) {
  [style*='--aspect-ratio'] {
    position: relative;
  }
  [style*='--aspect-ratio']::before {
    content: '';
    display: block;
    padding-bottom: calc(100% / (var(--aspect-ratio)));
  }
  [style*='--aspect-ratio'] > img {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.font--sfpro {
  font-family: 'sfpro', sans-serif;
}
.font--open-sans {
  font-family: 'open-sans', sans-serif;
}
.font--gilroy {
  font-family: 'gilroy', sans-serif;
}
.font--raleway {
  font-family: 'raleway', sans-serif;
  font-variant-numeric: lining-nums;
}
.font--mulish {
  font-family: 'mulish', sans-serif;
}
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
}
body::-webkit-scrollbar {
  width: 8px;
  height: 8px;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: 5px 5px 5px -5px rgba(34, 60, 80, 0.2) inset;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
body::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
body.locked {
  overflow: hidden;
}
header {
  position: relative;
  z-index: 10;
}
header.is-line {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
header.is-shadow {
  box-shadow: var(--shadow-moderate);
}
@media (min-width: 992px) {
  header.is-overlay {
    position: absolute;
    width: 100%;
    border-bottom: 1px solid hsla(var(--bh), var(--bs), var(--bl), 0.3) !important;
    box-shadow: unset !important;
  }
}
ol,
ul,
li {
  list-style: none;
}
.overlay-modal {
  box-sizing: border-box;
}
.ink {
  display: block;
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  transform: scale(0);
  background: hsl(var(--bh), var(--bs), var(--bl));
  opacity: 0.25;
}
.ink.is-animated {
  animation: ink 1.2s linear;
}
.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border-width: 0;
  outline-width: 0;
}
.is-marked {
  display: inline-block;
  padding: 0 0.4em;
  border-radius: var(--border-radius-small);
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
}
.horizontal-marquee {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  gap: var(--_gap);
  max-width: 100%;
}
.horizontal-marquee.smooth {
  mask: linear-gradient(90deg, transparent, #fff 20%, #fff 80%, transparent);
}
.horizontal-marquee.paused .horizontal-marquee-inner {
  animation-play-state: paused;
}
.horizontal-marquee.full .horizontal-marquee-inner {
  min-width: 100%;
}
.horizontal-marquee-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;
  gap: var(--_gap);
  white-space: nowrap;
}
[data-animate='true'] .horizontal-marquee-inner {
  animation: horizontal-marquee var(--_speed) linear infinite var(--_direction);
}
@keyframes horizontal-marquee {
  0% {
    transform: translate(calc(var(--_gap) * -1));
  }
  100% {
    transform: translate(calc(-100% - var(--_gap) * 2));
  }
}
.vertical-marquee {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  margin-bottom: var(--_gap);
  max-height: 100%;
  flex-direction: column;
  height: calc(calc(var(--_containerSize) - var(--_vGap)) / 1.2);
}
.vertical-marquee.smooth {
  mask: linear-gradient(180deg, transparent, #fff 20%, #fff 80%, transparent);
}
.vertical-marquee.paused .vertical-marquee-inner {
  animation-play-state: paused;
}
.vertical-marquee-inner {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;
  margin-bottom: var(--_vGap);
}
[data-animate='true'] .vertical-marquee-inner {
  animation: vertical-marquee var(--_speed) linear infinite var(--_direction);
}
.vertical-marquee-inner > :not(:last-child) {
  margin-right: var(--_hGap);
}
@keyframes vertical-marquee {
  0% {
    transform: translateY(calc(var(--_vGap) * -1));
  }
  100% {
    transform: translateY(calc(-100% - var(--_vGap) * 2));
  }
}
.pswp {
  --pswp-bg: var(--dim-muted);
}
:root {
  --vh: 100vh;
  --top-bar-height: 0px;
  --headline-font-size: 42px;
  --title-font-size: 28px;
  --subtitle-font-size: 19px;
  --name-font-size: 17px;
  --border-radius-small: 6px;
  --border-radius-large: 14px;
  --gap-small: 10px;
  --gap: 20px;
  --gap-extended: 30px;
  --frame-padding-mobile: 40px;
  --header-height-mobile: 60px;
  --dim: hsla(0, 0%, 6%, 0.3);
  --dim-intense: hsla(0, 0%, 6%, 0.15);
  --dim-muted: hsla(0, 0%, 6%, 0.7);
  --dim-gradient: linear-gradient(180deg, hsla(0, 0%, 6%, 0) 0, hsla(0, 0%, 6%, 0.4) 100%);
  --shadow-light: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  --shadow-moderate: 0 6px 24px rgba(0, 0, 0, 0.04), 0 2px 2px rgba(0, 0, 0, 0.08);
  --shadow-high: 0 8px 24px rgba(0, 0, 0, 0.08), 0 4px 8px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 25px 34px hsla(0, 0%, 0%, 0.08);
  --shadow-header: 0 4px 10px rgba(0, 0, 0, 0.1);
  --shadow-modal: 0 8px 16px 0 rgba(0, 0, 0, 0.1), 0 0 3px 0 rgba(0, 0, 0, 0.08);
  --shadow-spread: 0 0 20px rgba(0, 0, 0, 0.07);
}
@media (min-width: 992px) {
  :root {
    --headline-font-size: 48px;
    --title-font-size: 36px;
    --subtitle-font-size: 20px;
    --name-font-size: 18px;
  }
}
.advantages__list {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
}
@media (min-width: 768px) {
  .advantages__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .advantages__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.banner__mobile-wrapper {
  position: relative;
  display: block;
  overflow: hidden;
  isolation: isolate;
}
.banner__image-wrapper {
  position: relative;
  display: none;
  overflow: hidden;
  isolation: isolate;
}
.banner__image-wrapper.is-link .banner__image {
  transform: scale(1.02);
}
.banner__image-wrapper.is-link:hover .banner__image {
  transform: scale(1);
}
.banner__image-wrapper.is-link:hover .banner__image-container::after {
  opacity: 1;
}
.banner__image-wrapper:hover .banner__pop {
  transform: translateY(0);
}
.banner__image-wrapper.is-primary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.banner__image-wrapper.is-primary .banner__pop {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.banner__image-wrapper.is-primary .banner__pop .icon-corner {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.banner__image-wrapper.is-secondary {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.banner__image-wrapper.is-secondary .banner__pop {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.banner__image-wrapper.is-secondary .banner__pop .icon-corner {
  fill: hsl(var(--ah), var(--as), var(--al));
}
.banner__image-wrapper.is-semitone {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.banner__image-wrapper.is-semitone .banner__pop {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.banner__image-wrapper.is-semitone .banner__pop .icon-corner {
  fill: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.banner__image-container {
  display: flex;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  isolation: isolate;
}
.banner__image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dim);
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.banner__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-normal);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  object-fit: cover;
}
.banner__pop {
  position: absolute;
  bottom: -1px;
  right: -1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: var(--border-radius-normal) 0 0 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  transform: translateY(100%);
  z-index: 1;
}
.banner__pop .icon-arrow-top-right {
  width: 32px;
  height: 32px;
}
.banner__pop .icon-corner {
  position: absolute;
  display: flex;
  width: 48px;
  height: 48px;
  transform: rotate(270deg);
}
.banner__pop .icon-corner:nth-of-type(1) {
  top: -39px;
  right: -8px;
}
.banner__pop .icon-corner:nth-of-type(2) {
  bottom: -8px;
  left: -39px;
}
.banner__sticker {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
}
@media (min-width: 768px) {
  .banner__image-wrapper {
    display: block;
  }
  .banner__mobile-wrapper {
    display: none;
  }
}
.benefits__list {
  display: grid;
  grid-gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .benefits__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: unset;
  }
}
.blog {
  position: relative;
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.blog__list {
  position: relative;
  margin: 0 auto;
}
.blog__list:not(:first-child) {
  margin-top: var(--gap-extended);
}
.blog__inner {
  display: grid;
  grid-gap: var(--gap);
}
.blog__card {
  --hsl: var(--ph), var(--ps), var(--pl);
  border-width: 1px;
  border-style: solid;
  border-radius: var(--border-radius-normal);
}
.blog__overlay {
  position: absolute;
  inset: 0;
  opacity: var(--opacity, 0);
  -webkit-mask: radial-gradient(25rem 25rem at var(--x) var(--y), #000 1%, transparent 50%);
  mask: radial-gradient(25rem 25rem at var(--x) var(--y), #000 1%, transparent 50%);
  transition: 400ms mask ease;
  pointer-events: none;
  user-select: none;
  will-change: mask;
}
.blog__overlay .blog__card {
  background-color: hsla(var(--hsl), 0.15);
  border-color: hsla(var(--hsl), 1);
  box-shadow: 0 0 0 1px inset hsl(var(--hsl));
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .blog__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .blog__inner {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cards__header {
  display: grid;
  align-items: flex-start;
}
.cards__link {
  margin-right: auto;
}
.cards__list {
  display: grid;
  grid-gap: 1.5rem;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
}
.cards__list:not(:first-of-type) {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .cards__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}
@media (min-width: 992px) {
  .cards__header {
    grid-template-columns: 1fr 250px;
  }
  .cards__link {
    margin-right: unset;
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .cards__list {
    grid-template-columns: repeat(3, 1fr);
    max-width: unset;
  }
}
@media (min-width: 1400px) {
  .cards__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.carousel .swiper-wrapper {
  transition-timing-function: linear;
}
.carousel__swiper:not(:first-child) {
  margin-top: 2rem;
}
.carousel__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-small);
  overflow: hidden;
}
.carousel__error {
  text-align: center;
}
.contacts__grid {
  display: grid;
  grid-gap: 1rem;
}
.contacts__map-wrapper {
  position: relative;
  margin-top: var(--gap-extended);
}
.contacts__map-wrapper.is-fullscreen {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin-top: unset;
  height: 100vh;
  width: 100vw;
  z-index: 160;
}
.contacts__map-wrapper.is-fullscreen .contacts__map {
  height: 100% !important;
  border-radius: unset;
}
.contacts__map {
  border-radius: var(--border-radius-normal);
  filter: grayscale(0.5);
}
.contacts__expand {
  position: absolute;
  top: 0;
  right: 0;
}
@media (min-width: 768px) {
  .contacts__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .contacts__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.cta__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 2rem;
  align-items: center;
  padding: 1.6rem;
  border-radius: var(--border-radius-normal);
}
.cta__wrapper.is-primary {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.cta__wrapper.is-secondary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.cta__wrapper.is-semitone {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.cta__column > :not(:last-child) {
  margin-bottom: var(--gap);
}
.cta__image-wrapper {
  position: relative;
  width: 170px;
  border-radius: var(--border-radius-small);
  overflow: hidden;
  isolation: isolate;
  border: 7px solid hsl(0, 0%, calc(96% + 2%));
  box-shadow: 0 1px 5px hsla(var(--th), var(--ts), var(--tl), 0.1);
}
.cta__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-small);
  object-fit: cover;
}
.cta__grid {
  display: grid;
  grid-gap: 1rem;
  align-items: center;
}
.cta__data {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cta__data > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.cta__name {
  display: block;
  font-size: var(--name-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.cta__description {
  font-size: 0.95em;
  line-height: 1.45em;
}
.cta__phone {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.cta__phone > svg {
  display: block;
  margin-right: 1rem;
  fill: hsl(var(--sh), var(--ss), var(--sl));
}
@media (min-width: 580px) {
  .cta__grid {
    grid-template-columns: auto 1fr;
  }
}
@media (min-width: 768px) {
  .cta__description {
    font-size: 1em;
  }
}
@media (min-width: 992px) {
  .cta__wrapper {
    padding: 2rem 3rem;
  }
}
@media (min-width: 1200px) {
  .cta__wrapper {
    grid-template-columns: 1fr 1fr;
  }
}
.description__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: var(--gap);
  align-items: center;
}
.description__wrapper.is-reverse > div:nth-of-type(1) {
  order: 2;
}
.description__wrapper.is-reverse > div:nth-of-type(2) {
  order: 1;
}
.description__image-wrapper {
  max-width: 500px;
}
.description__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-normal);
  object-fit: cover;
}
@media (min-width: 1200px) {
  .description__wrapper {
    grid-template-columns: 500px 1fr;
    grid-gap: 4rem;
  }
  .description__wrapper.is-reverse {
    grid-template-columns: 1fr 500px;
  }
}
.details__list {
  display: grid;
  grid-gap: var(--gap);
}
@media (min-width: 768px) {
  .details__list {
    grid-gap: 2rem;
  }
  .details__list--2,
  .details__list--3,
  .details__list--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .details__list--2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .details__list--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .details__list--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.faq__list:not(:first-child) {
  margin-top: var(--gap-extended);
}
.faq__list > :not(:last-child) {
  margin-bottom: var(--gap);
}
.gallery__wrapper {
  display: grid;
  grid-gap: 3rem;
  width: 100%;
  padding: 1.6rem;
  box-sizing: border-box;
  align-items: center;
  background-color: hsl(var(--ih), var(--is), calc(var(--il) + 8%));
  border: 1px solid hsla(var(--bh), var(--bs), var(--bl), 0.15);
  border-radius: var(--border-radius-normal);
  color: hsl(var(--bh), var(--bs), var(--bl));
  overflow: hidden;
}
.gallery__swiper {
  width: 240px;
  height: 300px;
}
.gallery__slide {
  position: relative;
  box-shadow: 0 15px 50px hsla(0, 0%, 0%, 0.2);
  border-radius: 10px;
  background-color: hsl(var(--ah), var(--as), var(--al));
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 480px) {
  .gallery__swiper {
    width: 280px;
    height: 350px;
    padding: 0 50px;
  }
}
@media (min-width: 480px) {
  .gallery__wrapper {
    padding: 2rem;
  }
}
@media (min-width: 1200px) {
  .gallery__wrapper {
    grid-template-columns: 1fr auto;
    grid-gap: 2rem;
    padding: 4rem;
  }
}
.grid__list {
  display: grid;
  grid-template-areas: 'first' 'second' 'third' 'fourth';
  grid-gap: 1rem;
}
.grid__item {
  border-radius: var(--border-radius-normal);
  overflow: hidden;
}
.grid__item.is-primary {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.grid__item.is-secondary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.grid__item.is-semitone {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.grid__item:nth-of-type(1) {
  grid-area: first;
  display: grid;
  grid-template-rows: 1fr 220px;
}
.grid__item:nth-of-type(2) {
  grid-area: second;
  display: grid;
  grid-template-rows: 1fr 220px;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.grid__item:nth-of-type(2) .grid__text {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.grid__item:nth-of-type(3) {
  grid-area: third;
}
.grid__item:nth-of-type(4) {
  grid-area: fourth;
}
.grid__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.6rem;
  box-sizing: border-box;
}
.grid__image-wrapper {
  display: block;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.grid__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left top;
}
.grid__name {
  margin-bottom: var(--gap-small);
  font-size: var(--subtitle-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.grid__text {
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.grid__link {
  padding-top: var(--gap);
  margin-top: auto;
}
@media (min-width: 480px) {
  .grid__item:nth-of-type(1) {
    grid-template-rows: 1fr 310px;
  }
  .grid__item:nth-of-type(2) {
    grid-template-rows: 1fr 310px;
  }
  .grid__content {
    min-height: 200px;
  }
}
@media (min-width: 630px) {
  .grid__item:nth-of-type(1) {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
  }
  .grid__item:nth-of-type(2) {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
  }
  .grid__content {
    min-height: 240px;
  }
}
@media (min-width: 768px) {
  .grid__list {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 'first second' 'third fourth';
  }
  .grid__item:nth-of-type(1) {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 210px;
  }
  .grid__item:nth-of-type(2) {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 210px;
  }
  .grid__text {
    font-size: 1em;
  }
  .grid__content {
    min-height: 260px;
  }
}
@media (min-width: 992px) {
  .grid__item:nth-of-type(1) {
    grid-template-rows: 1fr 300px;
  }
  .grid__item:nth-of-type(2) {
    grid-template-rows: 1fr 300px;
  }
  .grid__content {
    padding: 2rem;
  }
}
@media (min-width: 1200px) {
  .grid__list {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-areas: 'first first second' 'third fourth second';
  }
  .grid__item:nth-of-type(1) {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: unset;
  }
  .grid__item:nth-of-type(2) {
    grid-template-rows: 1fr 300px;
  }
  .grid__content {
    min-height: 300px;
  }
}
.links__list {
  display: grid;
  grid-gap: 1rem;
  max-width: 650px;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .links__list {
    grid-template-columns: 1fr 1fr;
    max-width: unset;
  }
}
.mainscreen {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.mainscreen__wrapper {
  max-width: var(--frame-width);
  margin: 0 auto;
  box-sizing: border-box;
}
.mainscreen__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 650px;
  padding-top: var(--frame-padding-mobile);
  padding-bottom: var(--frame-padding-mobile);
  box-sizing: border-box;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.mainscreen__content.is-inversion {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.mainscreen__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
}
.mainscreen__video {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.mainscreen__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dim);
}
.mainscreen__badge {
  display: flex;
}
.mainscreen__badge.is-left {
  justify-content: flex-start;
}
.mainscreen__badge.is-center {
  justify-content: center;
}
.mainscreen__badge.is-right {
  justify-content: flex-end;
}
.mainscreen__image {
  position: relative;
  display: none;
}
.mainscreen__image.is-bottom {
  align-self: flex-end;
}
.mainscreen__image.is-center {
  align-self: center;
}
.mainscreen__image img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .mainscreen__content {
    min-height: 700px;
    padding-top: var(--frame-padding);
    padding-bottom: var(--frame-padding);
  }
}
@media (min-width: 992px) {
  .mainscreen__content.is-overlay {
    min-height: calc(700px + var(--header-height) + var(--top-bar-height));
  }
}
@media (min-width: 1200px) {
  .mainscreen__wrapper.is-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    grid-gap: 2rem;
  }
  .mainscreen__image {
    display: block;
  }
}
.portfolio__header {
  display: grid;
  align-items: flex-start;
}
.portfolio__link {
  margin-right: auto;
}
.portfolio__wrapper {
  position: relative;
}
.portfolio__wrapper:not(:first-child) {
  margin-top: 2rem;
}
.portfolio__button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: calc(0px - 40px / 2);
  border-radius: 50%;
  transition: opacity 0.3s ease-in-out, border-radius 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-modal);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
}
.portfolio__button:hover {
  border-radius: var(--border-radius-large);
}
.portfolio__button.is-next {
  right: 1.4rem;
}
.portfolio__button.is-next .icon-arrow {
  transform: rotate(-90deg);
}
.portfolio__button.is-prev {
  left: 1.4rem;
}
.portfolio__button.is-prev .icon-arrow {
  transform: rotate(90deg);
}
.portfolio__button .icon-arrow {
  display: block;
  width: 12px;
  height: 12px;
  fill: hsl(var(--th), var(--ts), var(--tl));
}
.portfolio__button.is-next {
  right: 1rem;
}
.portfolio__button.is-prev {
  left: 1rem;
}
.portfolio__error {
  text-align: center;
}
@media (min-width: 992px) {
  .portfolio__header {
    grid-template-columns: 1fr 250px;
  }
  .portfolio__link {
    margin-right: unset;
    margin-left: auto;
  }
  .portfolio__button.is-next {
    right: -20px;
  }
  .portfolio__button.is-prev {
    left: -20px;
  }
}
.posts__error {
  text-align: center;
}
.posts__header {
  display: grid;
  align-items: flex-start;
  grid-gap: var(--gap-small);
}
.posts__link {
  margin-right: auto;
}
.posts__wrapper {
  position: relative;
}
.posts__wrapper:not(:first-child) {
  margin-top: 2rem;
}
.posts__wrapper:hover .posts__button.is-hover {
  opacity: 1;
}
.posts__button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: calc(0px - 40px / 2);
  border-radius: 50%;
  transition: opacity 0.3s ease-in-out, border-radius 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-modal);
  user-select: none;
  cursor: pointer;
  z-index: 10;
}
.posts__button:hover {
  border-radius: var(--border-radius-large);
}
.posts__button.is-next {
  right: 1.4rem;
}
.posts__button.is-next .icon-arrow {
  transform: rotate(-90deg);
}
.posts__button.is-prev {
  left: 1.4rem;
}
.posts__button.is-prev .icon-arrow {
  transform: rotate(90deg);
}
.posts__button .icon-arrow {
  display: block;
  width: 12px;
  height: 12px;
  fill: hsl(var(--th), var(--ts), var(--tl));
}
.posts__button.is-hover {
  opacity: 0;
}
@media (min-width: 992px) {
  .posts__button {
    display: flex;
  }
  .posts__header {
    grid-template-columns: 1fr 250px;
  }
  .posts__link {
    margin-right: unset;
    margin-left: auto;
  }
}
.pricing {
  position: relative;
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.pricing__cards {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}
.pricing__cards:not(:first-child) {
  margin-top: var(--gap-extended);
}
.pricing__cards.is-rounded .pricing__cta {
  border-radius: 25px;
}
.pricing__cards.is-uppercase .pricing__cta {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.pricing__inner {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: var(--gap);
}
.pricing__card {
  --hsl: var(--ph), var(--ps), var(--pl);
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 1.6rem;
  background-color: hsl(var(--ih), var(--is), calc(var(--il) + 8%));
  border: 1px solid hsla(var(--bh), var(--bs), var(--bl), 0.15);
  border-radius: var(--border-radius-normal);
}
.pricing__card > :not(:last-child) {
  margin-bottom: var(--gap-extended);
}
.pricing__bullets {
  font-size: 0.95em;
  line-height: 1.45em;
}
.pricing__bullets > * + * {
  margin-top: 0.5rem;
}
.pricing__bullets li::before {
  display: inline-block;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512' width='16' title='check' fill='%23dddddd'%3E%3Cpath d='M173.898 439.404l-166.4-166.4c-9.997-9.997-9.997-26.206 0-36.204l36.203-36.204c9.997-9.998 26.207-9.998 36.204 0L192 312.69 432.095 72.596c9.997-9.997 26.207-9.997 36.204 0l36.203 36.204c9.997 9.997 9.997 26.206 0 36.204l-294.4 294.401c-9.998 9.997-26.207 9.997-36.204-.001z' /%3E%3C/svg%3E");
  transform: translateY(2px);
  margin-right: 10px;
}
.pricing__heading {
  font-size: var(--name-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.pricing__price {
  font-size: 1.75em;
  font-weight: 700;
}
.pricing__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: end;
  width: 100%;
  min-height: 36px;
  box-sizing: border-box;
  margin: auto 0 0.5rem 0;
  text-align: center;
  text-decoration: none;
  color: hsl(var(--bh), var(--bs), var(--bl));
  background-color: hsl(var(--ih), var(--is), var(--il));
  padding: 0.7em;
  border-radius: var(--border-radius-small);
  font-size: 0.95em;
  font-weight: 500;
}
.pricing__overlay {
  position: absolute;
  inset: 0;
  opacity: var(--opacity, 0);
  -webkit-mask: radial-gradient(25rem 25rem at var(--x) var(--y), #000 1%, transparent 50%);
  mask: radial-gradient(25rem 25rem at var(--x) var(--y), #000 1%, transparent 50%);
  transition: 400ms mask ease;
  pointer-events: none;
  user-select: none;
  will-change: mask;
}
.pricing__overlay .pricing__card {
  background-color: hsla(var(--hsl), 0.15);
  border-color: hsla(var(--hsl), 1);
  box-shadow: 0 0 0 1px inset hsl(var(--hsl));
  box-sizing: border-box;
}
.pricing__overlay .pricing__cta {
  display: flex;
  grid-row: -1;
  width: 100%;
  box-sizing: border-box;
  background-color: hsl(var(--hsl));
  box-shadow: 0 0 0 1px hsl(var(--hsl));
}
:not(.pricing__overlay) > .pricing__card {
  transition: 400ms background ease;
  will-change: background;
}
:not(.pricing__overlay) > .pricing__card:hover {
  background: hsla(var(--ph), var(--ps), 95%, 0.1);
}
@media (min-width: 768px) {
  .pricing__bullets {
    font-size: 1em;
  }
  .pricing__cta {
    font-size: 1em;
  }
}
@media (min-width: 992px) {
  .pricing__card {
    padding: 1.5rem 2rem;
  }
}
@media (min-width: 1100px) {
  .pricing__cards--1 {
    max-width: 800px;
  }
  .pricing__cards--2,
  .pricing__cards--3 {
    max-width: 1000px;
  }
  .pricing__cards--2 .pricing__inner,
  .pricing__cards--3 .pricing__inner {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2.5rem;
  }
}
@media (min-width: 1400px) {
  .pricing__cards--3 {
    max-width: unset;
  }
  .pricing__cards--3 .pricing__inner {
    grid-template-columns: repeat(3, 1fr);
  }
}
.products__list {
  display: grid;
  justify-content: center;
}
.products__list:not(:first-child) {
  margin-top: 2rem;
}
.products__list:not(.is-mobile-grid) {
  grid-template-columns: minmax(260px, 350px);
  grid-gap: 15px;
}
.products__list.is-mobile-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--gap-small);
}
.products__error {
  text-align: center;
}
@media (min-width: 580px) {
  .products__list.is-mobile-grid,
  .products__list:not(.is-mobile-grid) {
    grid-template-columns: repeat(2, minmax(260px, 350px));
    grid-gap: var(--gap-small);
  }
}
@media (min-width: 768px) {
  .products__list.is-mobile-grid,
  .products__list:not(.is-mobile-grid) {
    grid-gap: 15px;
  }
}
@media (min-width: 1000px) {
  .products__list.is-mobile-grid,
  .products__list:not(.is-mobile-grid) {
    grid-template-columns: repeat(3, minmax(260px, 350px));
    grid-gap: var(--gap-small);
  }
}
@media (min-width: 1200px) {
  .products__list.is-mobile-grid,
  .products__list:not(.is-mobile-grid) {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 15px;
  }
}
@media (min-width: 1400px) {
  .products__list.is-mobile-grid,
  .products__list:not(.is-mobile-grid) {
    grid-template-columns: repeat(5, 1fr);
    grid-gap: var(--gap-small);
  }
}
@media (min-width: 1550px) {
  .products__list.is-mobile-grid,
  .products__list:not(.is-mobile-grid) {
    grid-gap: 15px;
  }
}
.projects__list {
  display: grid;
  grid-template-columns: repeat(1, minmax(300px, 700px));
  grid-gap: 2rem;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}
.projects__list:not(:first-child) {
  margin-top: 2rem;
}
@media (min-width: 992px) {
  .projects__list {
    grid-template-columns: repeat(2, minmax(300px, 700px));
    grid-gap: 1rem;
    max-width: unset;
  }
}
@media (min-width: 1200px) {
  .projects__list {
    grid-gap: 2rem;
  }
}
.reviews {
  position: relative;
}
.reviews__swiper {
  padding-bottom: 48px;
}
.reviews__progress {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  font-weight: bold;
  color: hsl(var(--ph), var(--ps), var(--pl));
  z-index: 10;
}
.reviews__progress svg {
  --progress: 0;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  stroke-width: 4px;
  stroke: hsl(var(--ph), var(--ps), var(--pl));
  fill: none;
  stroke-dashoffset: calc(125.6 * (1 - var(--progress)));
  stroke-dasharray: 125.6;
  transform: rotate(-90deg);
  z-index: 10;
}
.reviews__pagination .is-active {
  transform: scale(1.3);
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  opacity: 1;
}
.showcase__header {
  display: grid;
  align-items: flex-start;
}
.showcase__link {
  margin-right: auto;
}
.showcase__list {
  display: none;
}
@media (min-width: 768px) {
  .showcase__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
    max-width: 800px;
    margin-right: auto;
    margin-left: auto;
  }
  .showcase__list:not(:first-of-type) {
    margin-top: 2rem;
  }
  .showcase__swiper {
    display: none;
  }
}
@media (min-width: 992px) {
  .showcase__header {
    grid-template-columns: 1fr 250px;
  }
  .showcase__link {
    margin-right: unset;
    margin-left: auto;
  }
}
@media (min-width: 1200px) {
  .showcase__list {
    grid-template-columns: repeat(3, 1fr);
    max-width: unset;
  }
}
@media (min-width: 1400px) {
  .showcase__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.slider__swiper:hover .slider__button.is-hover {
  opacity: 1;
}
.slider__button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: calc(0px - 40px / 2);
  border-radius: 50%;
  transition: opacity 0.3s ease-in-out, border-radius 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-modal);
  user-select: none;
  cursor: pointer;
  z-index: 10;
}
.slider__button:hover {
  border-radius: var(--border-radius-large);
}
.slider__button.is-next {
  right: 1.4rem;
}
.slider__button.is-next .icon-arrow {
  transform: rotate(-90deg);
}
.slider__button.is-prev {
  left: 1.4rem;
}
.slider__button.is-prev .icon-arrow {
  transform: rotate(90deg);
}
.slider__button .icon-arrow {
  display: block;
  width: 12px;
  height: 12px;
  fill: hsl(var(--th), var(--ts), var(--tl));
}
.slider__button.is-hover {
  opacity: 0;
}
.slider__pagination {
  bottom: 1rem !important;
}
.slider__pagination > .swiper-pagination-bullet {
  position: relative;
  width: 12px;
  height: 12px;
  background: hsla(0, 0%, 0%, 0.1);
  opacity: 1;
}
.slider__pagination > .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
  width: 8px;
  height: 8px;
  background: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 50%;
  transition: 0.3s ease;
}
.slider__pagination > .swiper-pagination-bullet.is-active::before {
  transform: scale(1.5);
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
@media (max-width: 767px) {
  .slider__slide {
    border-radius: unset !important;
  }
}
@media (min-width: 992px) {
  .slider__button {
    display: flex;
  }
}
.steps__list {
  display: grid;
  grid-gap: 2rem;
}
.steps__list:not(:first-child) {
  margin-top: var(--gap-extended);
}
@media (min-width: 768px) {
  .steps__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .steps__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.table {
  font-size: 0.95em;
}
.table__container {
  overflow: auto;
  position: relative;
  padding-bottom: 10px;
}
.table__container::-webkit-scrollbar {
  height: 8px;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.table__container::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.table table {
  border-collapse: collapse;
  vertical-align: top;
  max-width: 100%;
  width: 100%;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}
.table table.is-primary thead th {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.table table.is-primary tr:nth-of-type(even) > td {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.table table.is-secondary thead th {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.table table.is-secondary tr:nth-of-type(even) > td {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.table table.is-semitone thead th {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 2%));
}
.table table.is-semitone tr:nth-of-type(even) > td {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 2%));
}
.table thead th {
  padding: 0.8rem calc(1.6rem + 8px) 0.8rem 1.6rem;
  text-align: left;
  font-weight: 600;
}
.table thead th:first-of-type {
  border-top-left-radius: var(--border-radius-small);
  border-bottom-left-radius: var(--border-radius-small);
}
.table thead th:last-of-type {
  border-top-right-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
}
.table thead th.desc a::before,
.table thead th.asc a::after {
  opacity: 1;
}
.table thead a {
  position: relative;
  display: block;
  min-height: 1em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
  line-height: 1.45em;
}
.table thead a::after,
.table thead a::before {
  content: '';
  height: 0;
  width: 0;
  position: absolute;
  right: -12px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  opacity: 0.6;
}
.table thead a::after {
  border-bottom: 4px solid hsl(var(--th), var(--ts), var(--tl));
  border-top: 4px solid transparent;
  top: 4px;
}
.table thead a::before {
  border-top: 4px solid hsl(var(--th), var(--ts), var(--tl));
  top: 18px;
}
.table tr:nth-of-type(even) > td:first-of-type {
  border-top-left-radius: var(--border-radius-small);
  border-bottom-left-radius: var(--border-radius-small);
}
.table tr:nth-of-type(even) > td:last-of-type {
  border-top-right-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
}
.table td {
  position: relative;
  min-height: 1em;
  padding: 0.8rem 1.6rem;
  line-height: 1.45em;
}
.table td:empty::before {
  content: '\00a0';
  display: block;
  height: 1em;
  visibility: hidden;
}
.table .dataTable-table {
  width: 100%;
}
.table .dataTable-wrapper {
  display: grid;
  grid-gap: var(--gap-extended);
}
.table .dataTable-top {
  display: flex;
  justify-self: flex-start;
}
.table .dataTable-search {
  margin: 1px;
}
.table .dataTable-input {
  position: relative;
  display: flex;
  width: 320px;
  background: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: var(--border-radius-small);
  padding: 0.8rem 1.6rem;
  transition: border-color 0.25s ease, background-color 0.25s ease;
  font-size: 0.95em;
  font-family: inherit;
}
.table .dataTable-input:hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.table .dataTable-input:focus {
  outline: none;
  border: 1px solid hsl(var(--ph), var(--ps), var(--pl));
  box-shadow: 0 0 1px 1px hsl(var(--ph), var(--ps), var(--pl));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.table .dataTable-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.table .dataTable-info {
  order: 2;
}
.table .dataTable-pagination {
  display: flex;
  padding: 0 1px;
  margin-right: 1rem;
  order: 1;
}
.table .dataTable-pagination li:not(:last-of-type) {
  margin-right: 10px;
}
.table .dataTable-pagination li.active a {
  box-shadow: 0 0 1px 1px hsl(var(--ph), var(--ps), var(--pl));
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.table .dataTable-pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  border-radius: var(--border-radius-small);
  user-select: none;
}
@media (min-width: 768px) {
  .table {
    font-size: 1em;
  }
  .table .dataTable-input {
    font-size: 1em;
  }
}
.tiles__swiper {
  padding-bottom: 1.5rem;
}
.tiles__grid {
  display: grid;
  grid-gap: 1rem;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .tiles__grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .tiles__grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: unset;
  }
}
@media (min-width: 1400px) {
  .tiles__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.videos__list {
  display: grid;
  grid-gap: 1rem;
  max-width: 550px;
  margin: 0 auto;
}
.videos__list:not(:first-child) {
  margin-top: var(--gap-extended);
}
@media (min-width: 768px) {
  .videos__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: unset;
  }
}
@media (min-width: 1200px) {
  .videos__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.welcome__frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  perspective: 400px;
  transform-style: preserve-3d;
}
.welcome__highlight {
  cursor: pointer;
  text-decoration: underline;
}
.welcome__image {
  width: 100%;
  margin-bottom: var(--gap-extended);
}
.icon-welcome {
  display: block;
  width: 100%;
  max-width: 280px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
.icon-welcome__text {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.icon-welcome__shadow {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
@media (min-width: 480px) {
  .icon-welcome {
    max-width: 400px;
  }
}
@media (min-width: 768px) {
  .icon-welcome {
    max-width: 500px;
  }
}
.address-one {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.address-one--gap {
  margin-bottom: var(--gap);
}
.address-one .icon-direction {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  fill: currentColor;
  opacity: 0.5;
}
.address-one__map-wrapper {
  position: relative;
}
.address-one__map {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border: 1px solid hsl(var(--ah), var(--as), var(--al));
  filter: grayscale(0.5);
}
.address-one__map.is-active {
  height: 100vh;
}
.address-one__container {
  position: relative;
  display: grid;
  grid-gap: var(--gap-small);
}
.address-one__city {
  line-height: 1.45em;
  font-size: 0.95em;
}
.address-one__text {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 10px;
  padding: 3px 10px;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-light);
  line-height: 1.45em;
  font-size: 15px;
}
.address-one__expand {
  position: absolute;
  top: 0;
  right: 0;
}
.address-one__button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: calc(0px - 40px / 2);
  border-radius: 50%;
  transition: opacity 0.3s ease-in-out, border-radius 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-modal);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
}
.address-one__button:hover {
  border-radius: var(--border-radius-large);
}
.address-one__button.is-next {
  right: 1.4rem;
}
.address-one__button.is-next .icon-arrow {
  transform: rotate(-90deg);
}
.address-one__button.is-prev {
  left: 1.4rem;
}
.address-one__button.is-prev .icon-arrow {
  transform: rotate(90deg);
}
.address-one__button .icon-arrow {
  display: block;
  width: 12px;
  height: 12px;
  fill: hsl(var(--th), var(--ts), var(--tl));
}
.address-one__button.is-active {
  display: none;
}
.address-one__button.is-next {
  right: var(--gap-small);
}
.address-one__button.is-prev {
  left: var(--gap-small);
}
.album-one {
  display: block;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.album-one--gap {
  margin-bottom: var(--gap);
}
.album-one__cover {
  position: relative;
  width: 218px;
  min-height: 218px;
}
.album-one__sublayer {
  position: absolute;
  left: 2px;
  right: -2px;
  bottom: 5px;
  top: -2px;
  width: 202px;
  height: 202px;
  background: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: 0 1px 5px hsla(var(--th), var(--ts), var(--tl), 0.1);
  border-radius: var(--border-radius-normal);
}
.album-one__sublayer:first-of-type {
  transform: rotate(-4deg);
  z-index: 2;
}
.album-one__sublayer:last-of-type {
  transform: rotate(4deg);
  z-index: 1;
}
.album-one__image {
  position: relative;
  width: 202px;
  height: 202px;
  margin-bottom: 7px;
  object-fit: cover;
  border: 7px solid hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: 0 1px 5px hsla(var(--th), var(--ts), var(--tl), 0.1);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 2%));
  border-radius: var(--border-radius-normal);
  z-index: 3;
}
.album-one__name {
  line-height: 1.45em;
  font-weight: 600;
}
.album-one__description {
  display: block;
  margin-top: 3px;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  font-size: 0.9em;
  line-height: 1.45em;
}
.badge-five {
  display: inline-block;
}
.badge-five--gap {
  margin-bottom: var(--gap);
}
.badge-five .badge {
  color: hsl(var(--th), var(--ts), var(--tl));
  line-height: 1.2em;
  border-radius: var(--border-radius-small);
}
.badge-five .badge--bestseller,
.badge-five .badge--lowprice,
.badge-five .badge--new,
.badge-five .badge--custom {
  white-space: nowrap;
}
.badge-five .badge--custom {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-five .badge--bestseller {
  background-color: hsl(0, 97%, 69%);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-five .badge--lowprice {
  background-color: hsl(40, 100%, 50%);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-five .badge--new {
  background-color: hsl(118, 53%, 43%);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-five .badge--discount {
  background-color: hsl(40, 100%, 50%);
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-weight: 500;
}
.badge-five.is-tiny .badge {
  padding: 3px 8px;
  font-size: 0.8em;
}
.badge-five.is-small .badge {
  padding: 3px 14px;
  font-size: 0.9em;
}
.badge-five.is-medium .badge {
  padding: 6px 16px;
  font-size: 0.95em;
}
.badge-five.is-large .badge {
  padding: 8px 20px;
}
.badge-four {
  display: inline-block;
}
.badge-four--gap {
  margin-bottom: var(--gap);
}
.badge-four .badge {
  line-height: 1.2em;
  border-radius: var(--border-radius-small);
}
.badge-four .badge--bestseller,
.badge-four .badge--lowprice,
.badge-four .badge--new,
.badge-four .badge--discount,
.badge-four .badge--custom {
  white-space: nowrap;
  background-color: hsla(var(--th), var(--ts), var(--tl), 0.5);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-four .badge > svg {
  fill: currentColor;
}
.badge-four.is-tiny .badge {
  padding: 3px 8px;
  font-size: 13px;
}
.badge-four.is-tiny .badge > svg {
  width: 12px;
  height: 12px;
  margin-right: 3px;
}
.badge-four.is-small .badge {
  padding: 4px 12px;
  font-size: 14px;
}
.badge-four.is-small .badge > svg {
  width: 13px;
  height: 13px;
  margin-right: 3px;
}
.badge-four.is-medium .badge {
  padding: 6px 14px;
  font-size: 16px;
}
.badge-four.is-medium .badge > svg {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
.badge-four.is-large .badge {
  padding: 8px 20px;
}
.badge-four.is-large .badge > svg {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.badge-one {
  display: inline-block;
}
.badge-one--gap {
  margin-bottom: var(--gap);
}
.badge-one .badge {
  color: hsl(var(--th), var(--ts), var(--tl));
  line-height: 1.2em;
}
.badge-one .badge--bestseller,
.badge-one .badge--lowprice,
.badge-one .badge--new,
.badge-one .badge--custom {
  white-space: nowrap;
}
.badge-one .badge--custom {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.badge-one .badge--bestseller {
  background-color: hsl(0, 97%, 69%);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-one .badge--lowprice {
  background-color: hsl(40, 100%, 50%);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-one .badge--new {
  background-color: hsl(118, 53%, 43%);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-one .badge--discount {
  background-color: hsl(40, 100%, 50%);
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-weight: 500;
}
.badge-one.is-tiny .badge {
  padding: 3px 8px;
  border-radius: 30px;
  font-size: 0.8em;
}
.badge-one.is-small .badge {
  padding: 3px 14px;
  border-radius: 30px;
  font-size: 0.9em;
}
.badge-one.is-medium .badge {
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.95em;
}
.badge-one.is-large .badge {
  padding: 8px 20px;
  border-radius: 30px;
}
.badge-three {
  display: inline-block;
}
.badge-three--gap {
  margin-bottom: var(--gap);
}
.badge-three .badge {
  color: hsl(var(--th), var(--ts), var(--tl));
  line-height: 1.2em;
  border-radius: var(--border-radius-small);
}
.badge-three .badge--bestseller,
.badge-three .badge--lowprice,
.badge-three .badge--new,
.badge-three .badge--custom {
  white-space: nowrap;
}
.badge-three .badge--custom {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.badge-three .badge--bestseller {
  background-color: hsl(0, 97%, 69%);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-three .badge--bestseller > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-three .badge--lowprice {
  background-color: hsl(40, 100%, 50%);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-three .badge--lowprice > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-three .badge--new {
  background-color: hsl(118, 53%, 43%);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-three .badge--new > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-three .badge--discount {
  background-color: hsl(40, 100%, 50%);
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-weight: 500;
}
.badge-three.is-tiny .badge {
  padding: 3px 8px;
  font-size: 13px;
}
.badge-three.is-tiny .badge > svg {
  width: 12px;
  height: 12px;
  margin-right: 3px;
}
.badge-three.is-small .badge {
  padding: 4px 12px;
  font-size: 14px;
}
.badge-three.is-small .badge > svg {
  width: 13px;
  height: 13px;
  margin-right: 3px;
}
.badge-three.is-medium .badge {
  padding: 6px 14px;
  font-size: 16px;
}
.badge-three.is-medium .badge > svg {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
.badge-three.is-large .badge {
  padding: 8px 20px;
}
.badge-three.is-large .badge > svg {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.badge-two {
  display: inline-block;
}
.badge-two--gap {
  margin-bottom: var(--gap);
}
.badge-two .badge {
  line-height: 1.2em;
}
.badge-two .badge--bestseller,
.badge-two .badge--lowprice,
.badge-two .badge--new,
.badge-two .badge--discount,
.badge-two .badge--custom {
  white-space: nowrap;
  background-color: hsla(var(--ah), var(--as), var(--al), 0.2);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-two.is-tiny .badge {
  padding: 3px 8px;
  border-radius: var(--border-radius-small);
  font-size: 0.8em;
}
.badge-two.is-small .badge {
  padding: 3px 14px;
  border-radius: var(--border-radius-small);
  font-size: 0.9em;
}
.badge-two.is-medium .badge {
  padding: 4px 16px;
  border-radius: var(--border-radius-small);
  font-size: 0.95em;
}
.badge-two.is-large .badge {
  padding: 6px 18px;
  border-radius: var(--border-radius-small);
}
.breadcrumbs-one {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.95em;
  line-height: 0.95em;
}
.breadcrumbs-one > :not(:last-child) {
  margin-right: 10px;
}
.breadcrumbs-one__wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.breadcrumbs-one__wrapper--gap {
  margin-bottom: var(--gap-extended);
}
.breadcrumbs-one__item {
  flex-shrink: 0;
}
.breadcrumbs-one__item:hover .breadcrumbs-one__dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.breadcrumbs-one__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: 0.3s ease;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
}
.breadcrumbs-one__link.is-disabled {
  cursor: default;
}
.breadcrumbs-one__link:focus {
  outline: none;
}
.breadcrumbs-one__link .icon-home {
  width: 20px;
  height: 20px;
  margin-right: var(--gap-small);
  transition: background-color 0.3s ease;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.breadcrumbs-one__link .icon-arrow {
  display: block;
  width: 10px;
  height: 10px;
  margin-left: var(--gap-small);
  transform: rotate(-90deg);
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.breadcrumbs-one__dropdown-wrapper {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  padding-top: var(--gap);
}
.breadcrumbs-one__dropdown {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  max-width: 400px;
  min-width: 160px;
  padding: 0.5rem;
  border-radius: var(--border-radius-normal);
}
.breadcrumbs-one__dropdown::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.breadcrumbs-one__dropdown::before {
  top: -5px;
  left: 1.5rem;
}
.breadcrumbs-one__sub-link {
  display: block;
  padding: 0.4rem 1rem 0.4rem 0.9rem;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  line-height: 1.45em;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.1s ease;
  border-radius: var(--border-radius-small);
}
.breadcrumbs-one__sub-link:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
@media (max-width: 767px) {
  .breadcrumbs-one__dropdown-wrapper {
    display: none;
  }
  .breadcrumbs-one__wrapper {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }
  .breadcrumbs-one__wrapper::-webkit-scrollbar {
    display: none;
    background-color: transparent;
  }
  .breadcrumbs-one__wrapper::-webkit-scrollbar-thumb {
    background: 0 0;
  }
}
@media (min-width: 768px) {
  .breadcrumbs-one {
    flex-wrap: wrap;
    margin-top: -1rem;
  }
  .breadcrumbs-one__item {
    margin-top: 1rem;
  }
  .breadcrumbs-one__link > span {
    max-width: 350px;
    line-height: 1.2em;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
  }
}
.bungle {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.bungle--gap {
  margin-bottom: var(--gap);
}
.bungle.is-small {
  max-width: 500px;
}
.bungle.is-small .icon-maintain {
  width: 150px;
  height: 150px;
}
.bungle.is-small .bungle__text {
  font-size: 0.95em;
  line-height: 1.45em;
}
.bungle.is-medium {
  max-width: 700px;
}
.bungle.is-medium .icon-maintain {
  width: 200px;
  height: 200px;
}
.bungle.is-medium .bungle__text {
  line-height: 1.45em;
}
.bungle__text {
  opacity: 0.7;
  text-align: center;
}
.bungle__text > a {
  color: inherit;
}
.bungle .icon-maintain {
  margin-bottom: var(--gap);
}
.bungle .icon-maintain__tile-0 {
  fill: hsla(var(--ah), var(--as), calc(var(--al) - 15%), 0.15);
}
.bungle .icon-maintain__tile-1,
.bungle .icon-maintain__tile-3 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.bungle .icon-maintain__tile-2,
.bungle .icon-maintain__tile-4 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 2%));
}
.button-bare {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: unset;
  background-color: transparent;
  font-size: 16px;
  line-height: 1.45em;
  text-align: center;
  text-decoration: none;
  user-select: none;
  border-radius: var(--border-radius-small);
  transition: background-color 0.2s ease-in-out;
  overflow: hidden;
  cursor: pointer;
}
.button-bare.is-hidden {
  pointer-events: none;
  cursor: auto;
  visibility: hidden;
  opacity: 0;
}
.button-bare:focus,
.button-bare:active,
.button-bare:hover {
  outline: none;
}
.button-bare__container {
  display: inline-block;
}
.button-bare.is-primary {
  color: hsl(var(--th), var(--ts), var(--tl));
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.button-bare.is-primary:hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.button-bare.is-secondary {
  color: hsl(var(--bh), var(--bs), var(--bl));
  background-color: hsla(var(--bh), var(--bs), var(--bl), 0.2);
}
.button-bare.is-secondary:hover {
  background-color: hsla(var(--bh), var(--bs), var(--bl), 0.3);
}
.button-bare.is-small {
  padding: 2px 6px;
}
.button-bare.is-small.is-wide {
  width: 150px;
}
.button-bare.is-medium {
  padding: 3px 8px;
}
.button-bare.is-medium.is-wide {
  width: 180px;
}
.button-bare.is-large {
  padding: 5px 10px;
}
.button-bare.is-large.is-wide {
  width: 220px;
}
.button-bare.is-gap {
  margin-bottom: var(--gap);
}
.button-decorative {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 230px;
  box-sizing: border-box;
  border: unset;
  background-color: transparent;
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  text-decoration: none;
  user-select: none;
  border-radius: var(--border-radius-small);
  overflow: hidden;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
.button-decorative.is-hidden {
  pointer-events: none;
  cursor: auto;
  visibility: hidden;
  opacity: 0;
}
.button-decorative:focus,
.button-decorative:active,
.button-decorative:hover {
  outline: none;
}
.button-decorative__mask {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
}
.button-decorative__container {
  display: inline-block;
}
.button-decorative.is-primary {
  color: hsl(var(--bh), var(--bs), var(--bl));
  background-color: hsl(var(--ih), var(--is), var(--il));
}
.button-decorative.is-primary:hover {
  background-color: hsl(var(--ih), var(--is), calc(var(--il) + 10%));
}
.button-decorative.is-primary .button-decorative__mask {
  background-color: hsl(var(--bh), var(--bs), 100%);
}
.button-decorative.is-secondary {
  color: hsl(var(--bh), var(--bs), var(--bl));
  background-color: hsl(var(--sh), var(--ss), var(--sl));
}
.button-decorative.is-secondary:hover {
  background-color: hsl(var(--sh), var(--ss), calc(var(--sl) - 10%));
}
.button-decorative.is-secondary .button-decorative__mask {
  background-color: hsl(var(--sh), var(--ss), 12%);
}
.button-decorative.is-small {
  padding: 5px 12px;
}
.button-decorative.is-small.is-wide {
  width: 150px;
}
.button-decorative.is-medium {
  padding: 7px 16px;
}
.button-decorative.is-medium.is-wide {
  width: 170px;
}
.button-decorative.is-large {
  padding: 10px 20px;
}
.button-decorative.is-large.is-wide {
  width: 200px;
}
.button-decorative__text {
  position: relative;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
  z-index: 1;
}
.button-decorative.is-gap {
  margin-bottom: var(--gap);
}
.button-one {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  box-sizing: border-box;
  border: unset;
  line-height: 1.45em;
  font-size: 0.95em;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  user-select: none;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--border-radius-small);
  transition: background-color 0.1s ease;
}
.button-one:focus,
.button-one:active,
.button-one:hover {
  outline: none;
}
.button-one.is-rounded {
  border-radius: 25px;
}
.button-one.is-hidden {
  pointer-events: none;
  cursor: auto;
  visibility: hidden;
  opacity: 0;
}
.button-one.is-gap {
  margin-bottom: var(--gap);
}
.button-one.is-small {
  min-height: 32px;
  padding: 6px 16px;
}
.button-one.is-medium {
  min-height: 36px;
  padding: 8px 20px;
}
.button-one.is-large {
  min-height: 42px;
  padding: 8px 30px;
}
.button-one.is-wide.is-small {
  width: 150px;
}
.button-one.is-wide.is-medium {
  width: 180px;
}
.button-one.is-wide.is-large {
  width: 220px;
}
.button-one.is-free {
  width: 100%;
  max-width: unset;
}
.button-one.is-uppercase {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.button-one.is-small:not(.is-uppercase) {
  font-size: 0.85em;
}
.button-one.is-medium:not(.is-uppercase) {
  font-size: 0.9em;
}
.button-one.is-large:not(.is-uppercase) {
  font-size: 0.95em;
}
.button-one.is-uppercase.is-small {
  font-size: 12px;
}
.button-one.is-uppercase.is-medium {
  font-size: 13px;
}
.button-one.is-uppercase.is-large {
  font-size: 14px;
}
.button-one__container {
  display: inline-block;
}
.button-one.is-primary:not(.is-outlined) {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.button-one.is-primary:not(.is-outlined):hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 6%));
}
.button-one.is-primary.is-outlined {
  background-color: transparent;
  border: 2px solid hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.button-one.is-secondary:not(.is-outlined) {
  background-color: hsl(var(--ih), var(--is), var(--il));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.button-one.is-secondary:not(.is-outlined):hover {
  background-color: hsl(var(--ih), var(--is), calc(var(--il) + 6%));
}
.button-one.is-secondary.is-outlined {
  background-color: transparent;
  border: 2px solid hsl(var(--th), var(--ts), var(--tl));
  color: hsl(var(--th), var(--ts), var(--tl));
}
@media (min-width: 768px) {
  .button-one.is-medium {
    min-height: 40px;
  }
  .button-one.is-large {
    min-height: 46px;
  }
  .button-one.is-small:not(.is-uppercase) {
    font-size: 0.9em;
  }
  .button-one.is-medium:not(.is-uppercase) {
    font-size: 0.95em;
  }
  .button-one.is-large:not(.is-uppercase) {
    font-size: 1em;
  }
}
.button-three {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  box-sizing: border-box;
  border: unset;
  line-height: 1.45em;
  font-size: 0.95em;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  user-select: none;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--border-radius-small);
}
.button-three:focus,
.button-three:active,
.button-three:hover {
  outline: none;
}
.button-three.is-rounded {
  border-radius: 25px;
}
.button-three.is-hidden {
  pointer-events: none;
  cursor: auto;
  visibility: hidden;
  opacity: 0;
}
.button-three.is-gap {
  margin-bottom: var(--gap);
}
.button-three.is-small {
  min-height: 32px;
  padding: 6px 16px;
}
.button-three.is-medium {
  min-height: 36px;
  padding: 8px 20px;
}
.button-three.is-large {
  min-height: 42px;
  padding: 8px 30px;
}
.button-three.is-wide.is-small {
  width: 150px;
}
.button-three.is-wide.is-medium {
  width: 180px;
}
.button-three.is-wide.is-large {
  width: 220px;
}
.button-three.is-free {
  width: 100%;
  max-width: unset;
}
.button-three.is-uppercase {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.button-three.is-small:not(.is-uppercase) {
  font-size: 0.85em;
}
.button-three.is-medium:not(.is-uppercase) {
  font-size: 0.9em;
}
.button-three.is-large:not(.is-uppercase) {
  font-size: 0.95em;
}
.button-three.is-uppercase.is-small {
  font-size: 12px;
}
.button-three.is-uppercase.is-medium {
  font-size: 13px;
}
.button-three.is-uppercase.is-large {
  font-size: 14px;
}
.button-three__container {
  display: inline-block;
}
.button-three.is-secondary:not(.is-outlined) {
  background-color: hsl(var(--ih), var(--is), var(--il));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.button-three.is-secondary.is-outlined {
  background-color: transparent;
  border: 2px solid hsl(var(--th), var(--ts), var(--tl));
  color: hsl(var(--th), var(--ts), var(--tl));
}
.button-three.is-primary:not(.is-outlined) {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.button-three.is-primary.is-outlined {
  background-color: transparent;
  border: 2px solid hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.button-three::after {
  content: '';
  position: absolute;
  top: 0;
  left: -200%;
  width: 200%;
  height: 100%;
  transform: skewX(-20deg);
  background-image: linear-gradient(to right, transparent, hsla(var(--bh), var(--bs), var(--bl), 0.4), transparent);
}
.button-three:hover::after {
  animation: shine 1.6s ease;
}
@media (min-width: 768px) {
  .button-three.is-medium {
    min-height: 40px;
  }
  .button-three.is-large {
    min-height: 46px;
  }
  .button-three.is-small:not(.is-uppercase) {
    font-size: 0.9em;
  }
  .button-three.is-medium:not(.is-uppercase) {
    font-size: 0.95em;
  }
  .button-three.is-large:not(.is-uppercase) {
    font-size: 1em;
  }
}
.button-two {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  box-sizing: border-box;
  border: unset;
  line-height: 1.45em;
  font-size: 0.95em;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  user-select: none;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--border-radius-small);
  transition: background-color 0.2s ease;
}
.button-two:focus,
.button-two:active,
.button-two:hover {
  outline: none;
}
.button-two.is-rounded {
  border-radius: 25px;
}
.button-two.is-hidden {
  pointer-events: none;
  cursor: auto;
  visibility: hidden;
  opacity: 0;
}
.button-two.is-gap {
  margin-bottom: var(--gap);
}
.button-two.is-small {
  min-height: 32px;
  padding: 6px 16px;
}
.button-two.is-medium {
  min-height: 36px;
  padding: 8px 20px;
}
.button-two.is-large {
  min-height: 42px;
  padding: 8px 30px;
}
.button-two.is-wide.is-small {
  width: 150px;
}
.button-two.is-wide.is-medium {
  width: 180px;
}
.button-two.is-wide.is-large {
  width: 220px;
}
.button-two.is-free {
  width: 100%;
  max-width: unset;
}
.button-two.is-uppercase {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.button-two.is-small:not(.is-uppercase) {
  font-size: 0.85em;
}
.button-two.is-medium:not(.is-uppercase) {
  font-size: 0.9em;
}
.button-two.is-large:not(.is-uppercase) {
  font-size: 0.95em;
}
.button-two.is-uppercase.is-small {
  font-size: 12px;
}
.button-two.is-uppercase.is-medium {
  font-size: 13px;
}
.button-two.is-uppercase.is-large {
  font-size: 14px;
}
.button-two__container {
  display: inline-block;
}
.button-two.is-primary:not(.is-outlined) {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.button-two.is-primary:not(.is-outlined):hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 6%));
}
.button-two.is-primary.is-outlined {
  background-color: transparent;
  border: 2px solid hsl(var(--th), var(--ts), var(--tl));
  color: hsl(var(--th), var(--ts), var(--tl));
}
.button-two.is-secondary:not(.is-outlined) {
  background-color: hsl(var(--ih), var(--is), var(--il));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.button-two.is-secondary:not(.is-outlined):hover {
  background-color: hsl(var(--ih), var(--is), calc(var(--il) + 6%));
}
.button-two.is-secondary.is-outlined {
  background-color: transparent;
  border: 2px solid hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.button-two__ripple {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: hidden;
}
.button-two__ripple.is-active .button-two__circle {
  animation: ripple 0.4s ease-in;
}
.button-two__circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: hsla(var(--bh), var(--bs), var(--bl), 0.25);
  opacity: 0;
}
@media (min-width: 768px) {
  .button-two.is-medium {
    min-height: 40px;
  }
  .button-two.is-large {
    min-height: 46px;
  }
  .button-two.is-small:not(.is-uppercase) {
    font-size: 0.9em;
  }
  .button-two.is-medium:not(.is-uppercase) {
    font-size: 0.95em;
  }
  .button-two.is-large:not(.is-uppercase) {
    font-size: 1em;
  }
}
.buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: -10px;
}
.buttons--gap {
  margin-bottom: var(--gap);
}
.buttons > * {
  margin-top: 10px;
}
.buttons--left > *:not(:last-of-type) {
  margin-right: var(--gap-small);
}
.buttons--center {
  justify-content: center;
}
.buttons--center > *:not(:last-of-type) {
  margin-right: var(--gap-small);
}
.buttons--right {
  justify-content: flex-end;
}
.buttons--right > *:not(:first-of-type) {
  margin-left: var(--gap-small);
}
.card-four {
  display: block;
  max-width: 400px;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  text-decoration: none;
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.card-four--gap {
  margin-bottom: var(--gap-extended);
}
.card-four:hover .card-four__image {
  transform: scale(1);
}
.card-four:hover .card-four__image-container::after {
  opacity: 1;
}
.card-four__image-wrapper {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-small);
  overflow: hidden;
  isolation: isolate;
}
.card-four__image-wrapper::after {
  content: '';
  position: absolute;
  top: 3rem;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--dim-gradient);
  z-index: 0;
}
.card-four__image-container {
  display: flex;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  isolation: isolate;
}
.card-four__image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dim);
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.card-four__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-small);
  transform: scale(1.02);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  object-fit: cover;
}
.card-four__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  z-index: 1;
}
.card-four__title {
  font-size: var(--name-font-size);
  font-weight: 600;
  line-height: 1.45em;
}
.card-four__label {
  display: inline-block;
  margin-top: 5px;
  letter-spacing: 0.03em;
  font-size: 0.95em;
  line-height: 1.45em;
  opacity: 0.7;
}
@media (min-width: 768px) {
  .card-four__content {
    padding: 1.5rem;
  }
}
.card-one {
  display: grid;
  grid-template-rows: auto 1fr;
  max-width: 400px;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.card-one--gap {
  margin-bottom: var(--gap-extended);
}
.card-one.is-primary {
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.card-one.is-secondary {
  border: 1px solid hsl(var(--ah), var(--as), var(--al));
}
.card-one.is-semitone {
  border: 1px solid hsl(var(--ah), var(--as), var(--al));
}
.card-one__image-wrapper {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top-left-radius: var(--border-radius-normal);
  border-top-right-radius: var(--border-radius-normal);
  overflow: hidden;
  isolation: isolate;
}
.card-one__image-wrapper:hover .card-one__image {
  transform: scale(1);
}
.card-one__image-wrapper:hover .card-one__image-container::after {
  opacity: 1;
}
.card-one__image-container {
  display: flex;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  isolation: isolate;
}
.card-one__image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dim);
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.card-one__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-normal);
  transform: scale(1.02);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  object-fit: cover;
}
.card-one__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
}
.card-one__label {
  display: inline-block;
  margin-bottom: var(--gap-small);
  letter-spacing: 0.03em;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 50%));
}
.card-one__title {
  margin-bottom: var(--gap-small);
  font-size: var(--name-font-size);
  font-weight: 600;
  line-height: 1.45em;
  transition: 0.2s ease;
}
.card-one__title:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.card-one__text {
  font-size: 0.95em;
  line-height: 1.45em;
}
.card-one__badges {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  margin-top: -8px;
}
.card-one__badges > div {
  margin-left: 8px;
  margin-top: 8px;
}
.card-one__button-wrapper {
  margin-top: auto;
}
.card-one__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 36px;
  min-width: 36px;
  margin-top: var(--gap);
  box-sizing: border-box;
  background-color: hsl(var(--ah), var(--as), var(--al));
  color: hsl(var(--th), var(--ts), var(--tl));
  border: unset;
  border-radius: var(--border-radius-small);
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1.45em;
  user-select: none;
  cursor: pointer;
}
.card-one__button:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  transition: background-color 0.25s ease;
}
.card-one__button.is-rounded {
  border-radius: 25px;
}
@media (min-width: 768px) {
  .card-one__content {
    padding: 1.5rem;
  }
}
.card-seven {
  display: grid;
  grid-template-rows: auto 1fr;
  max-width: 400px;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.card-seven--gap {
  margin-bottom: var(--gap-extended);
}
.card-seven.is-primary {
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.card-seven.is-secondary {
  border: 1px solid hsl(var(--ah), var(--as), var(--al));
}
.card-seven.is-semitone {
  border: 1px solid hsl(var(--ah), var(--as), var(--al));
}
.card-seven__image-wrapper {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top-left-radius: var(--border-radius-normal);
  border-top-right-radius: var(--border-radius-normal);
  overflow: hidden;
  isolation: isolate;
}
.card-seven__image-wrapper:hover .card-seven__image {
  transform: scale(1);
}
.card-seven__image-wrapper:hover .card-seven__image-container::after {
  opacity: 1;
}
.card-seven__image-container {
  display: flex;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  isolation: isolate;
}
.card-seven__image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dim);
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.card-seven__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-normal);
  transform: scale(1.02);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  object-fit: cover;
}
.card-seven__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
}
.card-seven__label {
  display: inline-block;
  margin-bottom: var(--gap-small);
  letter-spacing: 0.03em;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 50%));
}
.card-seven__title {
  margin-bottom: var(--gap-small);
  font-size: var(--name-font-size);
  font-weight: 600;
  line-height: 1.45em;
  transition: 0.2s ease;
}
.card-seven__title:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.card-seven__text {
  font-size: 0.95em;
  line-height: 1.45em;
}
.card-seven__badges {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
  margin-top: -8px;
}
.card-seven__badges > div {
  margin-right: 8px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .card-seven__content {
    padding: 1.5rem;
  }
}
.card-three {
  position: relative;
  display: block;
  max-width: 400px;
  text-decoration: none;
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-normal);
  overflow: hidden;
}
.card-three.is-primary {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.card-three.is-secondary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.card-three.is-semitone {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.card-three--gap {
  margin-bottom: var(--gap-extended);
}
.card-three__image-container {
  position: relative;
  border-radius: var(--border-radius-normal);
  overflow: hidden;
  isolation: isolate;
}
.card-three__image-container.is-primary {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.card-three__image-container.is-secondary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.card-three__image-container.is-semitone {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.card-three__image-container::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background-color: var(--dim);
}
.card-three__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-normal);
  object-fit: cover;
}
.card-three__wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  box-sizing: border-box;
}
.card-three__content {
  margin-top: auto;
}
.card-three__content > *:not(:last-child) {
  margin-bottom: var(--gap-small);
}
.card-three__label {
  display: inline-block;
  font-size: 0.95em;
  line-height: 1.45em;
}
.card-three__title {
  font-size: var(--name-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.card-three__text {
  font-size: 0.95em;
  line-height: 1.45em;
}
.card-three__text > p:not(:last-of-type) {
  margin-bottom: var(--gap-small);
}
.card-three__button {
  display: block;
  margin-top: auto;
  padding: 8px 16px;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  border-radius: var(--border-radius-small);
  background: hsla(0, 0%, 100%, 0.4);
  background-blend-mode: normal;
  backdrop-filter: blur(2px);
  text-align: center;
  text-decoration: none;
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-size: 0.95em;
  font-weight: 500;
}
.card-three__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  box-sizing: border-box;
  margin-top: -8px;
}
.card-three__badges > div {
  margin-left: 8px;
  margin-top: 8px;
}
@media (min-width: 768px) {
  .card-three__button {
    font-size: 1em;
  }
}
.catalog-button-one {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  padding-top: 8px;
  padding-bottom: 8px;
  box-sizing: border-box;
  border-width: 2px;
  border-style: solid;
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 6%));
  text-align: center;
  font-size: 1em;
  line-height: 1em;
  font-weight: 500;
  white-space: nowrap;
  text-decoration: none;
  user-select: none;
  border-radius: var(--border-radius-small);
  background-color: transparent;
  overflow: hidden;
  cursor: pointer;
}
.catalog-button-one:focus,
.catalog-button-one:active,
.catalog-button-one:hover {
  outline: none;
}
.catalog-button-one.is-rounded {
  border-radius: 25px;
}
.catalog-button-one.is-primary {
  border-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.catalog-button-one.is-primary .catalog-button-one__icon {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.catalog-button-one.is-secondary {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.catalog-button-one.is-secondary .catalog-button-one__icon {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.catalog-button-one.is-medium {
  min-height: 42px;
  padding-left: 20px;
  padding-right: 20px;
}
.catalog-button-one.is-medium.is-wide {
  width: 180px;
}
.catalog-button-one.is-large {
  min-height: 46px;
  max-width: 250px;
  padding-left: 24px;
  padding-right: 24px;
}
.catalog-button-one.is-large.is-wide {
  width: 220px;
}
.catalog-button-one__icon {
  display: block;
  height: 14px;
  width: 20px;
  margin-right: var(--gap-small);
  border-radius: 1px;
  cursor: pointer;
  flex-shrink: 0;
  user-select: none;
}
.catalog-button-one__icon:before,
.catalog-button-one__icon:after {
  content: '';
  display: block;
  height: 2px;
  border-radius: inherit;
  background: currentColor;
  transition: filter 0.5s, transform 0.5s;
}
.catalog-button-one__icon:after {
  filter: drop-shadow(0 -6px currentColor);
  transform: translateY(10px);
}
.catalog-button-one.is-active .catalog-button-one__icon::before,
.catalog-button-one.is-triggered .catalog-button-one__icon::before {
  transform: translateY(6px) rotateZ(45deg);
}
.catalog-button-one.is-active .catalog-button-one__icon::after,
.catalog-button-one.is-triggered .catalog-button-one__icon::after {
  filter: initial;
  transform: translateY(4px) rotateZ(-45deg);
}
.catalog-button-one__text {
  display: block;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}
.catalog-button-two {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  max-width: 250px;
  padding-top: 8px;
  padding-bottom: 8px;
  box-sizing: border-box;
  border: unset;
  text-align: center;
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1.45em;
  color: hsl(var(--bh), var(--bs), var(--bl));
  white-space: nowrap;
  text-decoration: none;
  user-select: none;
  border-radius: var(--border-radius-small);
  background-color: transparent;
  overflow: hidden;
  cursor: pointer;
}
.catalog-button-two:focus,
.catalog-button-two:active,
.catalog-button-two:hover {
  outline: none;
}
.catalog-button-two.is-rounded {
  border-radius: 25px;
}
.catalog-button-two.is-primary {
  background-color: hsl(var(--ih), var(--is), var(--il));
}
.catalog-button-two.is-secondary {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.catalog-button-two.is-medium {
  min-height: 42px;
  padding-left: 20px;
  padding-right: 20px;
}
.catalog-button-two.is-medium.is-wide {
  width: 180px;
}
.catalog-button-two.is-medium.is-rounded {
  padding-left: 30px;
  padding-right: 30px;
}
.catalog-button-two.is-large {
  min-height: 46px;
  max-width: 250px;
  padding-left: 30px;
  padding-right: 30px;
}
.catalog-button-two.is-large.is-wide {
  width: 220px;
}
.catalog-button-two.is-large.is-rounded {
  padding-left: 35px;
  padding-right: 35px;
}
.catalog-button-two__icon {
  display: block;
  height: 14px;
  width: 18px;
  margin-right: var(--gap-small);
  border-radius: 1px;
  cursor: pointer;
  flex-shrink: 0;
  user-select: none;
}
.catalog-button-two__icon:before,
.catalog-button-two__icon:after {
  content: '';
  display: block;
  height: 2px;
  border-radius: inherit;
  background: currentColor;
  transition: filter 0.5s, transform 0.5s;
}
.catalog-button-two__icon:after {
  filter: drop-shadow(0 -6px currentColor);
  transform: translateY(10px);
}
.catalog-button-two.is-active .catalog-button-two__icon::before,
.catalog-button-two.is-triggered .catalog-button-two__icon::before {
  transform: translateY(6px) rotateZ(45deg);
}
.catalog-button-two.is-active .catalog-button-two__icon::after,
.catalog-button-two.is-triggered .catalog-button-two__icon::after {
  filter: initial;
  transform: translateY(4px) rotateZ(-45deg);
}
.catalog-button-two__text {
  display: block;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}
.catalog-four {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  width: 0;
}
.catalog-four.is-primary .catalog-four__item > a {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.catalog-four.is-primary .catalog-four__item > a > svg {
  fill: hsl(0, 0%, 66%);
}
.catalog-four.is-secondary .catalog-four__item > a {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.catalog-four.is-secondary .catalog-four__item > a > svg {
  fill: hsla(var(--bh), var(--bs), var(--bl), 0.5);
}
.catalog-four.is-center {
  justify-content: center;
}
.catalog-four.is-right {
  justify-content: flex-end;
}
.catalog-four.is-right > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.catalog-four:not(.is-right) > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.catalog-four.is-initial {
  visibility: hidden;
  overflow: hidden;
}
.catalog-four__item {
  display: inline-flex;
}
.catalog-four__item.is-floating {
  position: relative;
}
.catalog-four__item.is-hidden {
  display: none;
}
.catalog-four__item > a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.catalog-four__item > a > svg {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  margin-top: 3px;
}
.catalog-four__item:hover > .catalog-four__dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-duration: 0.2s;
  transition-delay: 0.1s;
}
.catalog-four__image {
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.catalog-four__image > img,
.catalog-four__image > svg {
  display: block;
  max-width: 24px;
  max-height: 24px;
  height: auto;
  border-radius: var(--border-radius-small);
}
.catalog-four__image > svg {
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.catalog-four__dropdown-item > a {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.8rem 0.4rem 0.7rem;
  color: hsl(var(--th), var(--ts), var(--tl));
  line-height: 1.45em;
  text-decoration: none;
  transition: background-color 0.1s ease;
  border-radius: var(--border-radius-small);
}
.catalog-four__dropdown-item > a:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.catalog-four__dropdown-item > a > svg {
  display: none;
}
.catalog-four__overlay {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--dim-intense);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: 0s ease-in-out;
}
.catalog-four__overlay.is-active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition-duration: 0.2s;
}
.catalog-four__dropdown-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding-top: calc(15px + var(--gap-small));
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  z-index: 155;
}
.catalog-four__dropdown {
  padding: 2rem 2rem 2rem 3rem;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-normal);
  box-shadow: var(--shadow-modal);
  overflow: hidden;
}
.catalog-four__content {
  max-height: 500px;
  height: 100%;
  padding-right: 1rem;
  box-sizing: border-box;
  overflow-y: scroll;
}
.catalog-four__content::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
}
.catalog-four__content::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: 4px;
  margin-left: 5px;
}
.catalog-four__item-header {
  margin-bottom: var(--gap);
}
.catalog-four__item-name {
  margin-right: 5px;
  font-size: var(--subtitle-font-size);
  font-weight: 600;
}
.catalog-four__item-counter {
  font-size: 15px;
  opacity: 0.5;
}
.catalog-four__sub-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--gap);
}
.catalog-four__column {
  display: flex;
  flex-direction: column;
}
.catalog-four__column > * {
  margin-bottom: var(--gap);
}
.catalog-four__floating-wrapper {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  padding-top: var(--gap);
}
.catalog-four__item:hover > .catalog-four__floating-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.catalog-four__floating {
  max-width: 400px;
  min-width: 160px;
  padding: 0.5rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
}
.catalog-four__floating-item > a {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.8rem 0.4rem 0.7rem;
  color: hsl(var(--th), var(--ts), var(--tl));
  line-height: 1.45em;
  text-decoration: none;
  transition: background-color 0.1s ease;
  border-radius: var(--border-radius-small);
}
.catalog-four__floating-item > a:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.catalog-four__name {
  margin-right: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (min-width: 1100px) {
  .catalog-four__sub-list {
    grid-template-columns: repeat(3, 1fr);
    margin-left: 1rem;
  }
}
.catalog-mobile-one {
  display: block;
}
.catalog-mobile-one__top {
  padding: 0.8rem 1rem;
}
.catalog-mobile-one__top > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.catalog-mobile-one__switch {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.catalog-mobile-one__switch-button {
  padding: 0 var(--gap-small) var(--gap-small);
  text-align: center;
  font-weight: 600;
  cursor: pointer;
}
.catalog-mobile-one__switch-button:nth-of-type(1).is-active ~ .catalog-mobile-one__indicator {
  transform: translateX(0);
}
.catalog-mobile-one__switch-button:nth-of-type(2).is-active ~ .catalog-mobile-one__indicator {
  transform: translateX(100%);
}
.catalog-mobile-one__indicator {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 50%;
  height: 2px;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  transition: 0.25s ease-out;
}
.catalog-mobile-one__navigation {
  width: 100%;
}
.catalog-mobile-one__slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  box-sizing: border-box;
}
.catalog-mobile-one__page {
  width: 100%;
}
.catalog-mobile-one__items {
  display: flex;
  flex-direction: column;
}
.catalog-mobile-one__items > :not(:last-child) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.catalog-mobile-one__item {
  display: grid;
  align-items: center;
}
.catalog-mobile-one__item.has-children {
  grid-template-columns: 1fr auto;
}
.catalog-mobile-one__link {
  display: grid;
  grid-gap: var(--gap-small);
  align-items: center;
  min-height: 32px;
  padding: 0.5rem 0;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  line-height: 1.45em;
}
.catalog-mobile-one__link.has-image {
  grid-template-columns: auto 1fr;
}
.catalog-mobile-one__back {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: unset;
  background-color: transparent;
  border: unset;
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  outline: unset;
  font-family: inherit;
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: pointer;
}
.catalog-mobile-one__back .icon-arrow {
  display: block;
  width: 11px;
  height: 11px;
  margin-right: 1rem;
  transform: rotate(90deg);
  fill: hsl(var(--th), var(--ts), var(--tl));
}
.catalog-mobile-one__image {
  display: flex;
  align-items: center;
}
.catalog-mobile-one__image > img,
.catalog-mobile-one__image > svg {
  display: block;
  max-width: 32px;
  max-height: 32px;
  height: auto;
  border-radius: var(--border-radius-small);
}
.catalog-mobile-one__image > svg {
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.catalog-mobile-one__item-name {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}
.catalog-mobile-one__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.5rem 1rem;
  cursor: pointer;
}
.catalog-mobile-one__arrow .icon-arrow {
  display: block;
  width: 11px;
  height: 11px;
  transform: rotate(-90deg);
  fill: hsl(var(--th), var(--ts), var(--tl));
}
.catalog-mobile-one__profile {
  display: flex;
  flex-direction: column;
}
.catalog-mobile-one__profile .catalog-mobile-one__button.is-wide {
  width: 100%;
  max-width: unset;
}
.catalog-mobile-one__bottom {
  padding: 1rem;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.catalog-mobile-one__wrapper {
  padding: 0.6rem 1rem;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-large);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.catalog-mobile-one__wrapper:not(:last-of-type) {
  margin-bottom: var(--gap);
}
.catalog-mobile-one__wrapper > li {
  display: flex;
  align-items: center;
  min-height: 50px;
  box-sizing: border-box;
}
.catalog-mobile-one__wrapper > li:not(:first-of-type) {
  border-top: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.catalog-mobile-one__entry {
  display: block;
  width: 100%;
  padding: 5px 0;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.catalog-mobile-one__entry.is-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 10px;
  align-items: center;
}
.catalog-mobile-one__entry > svg {
  display: block;
  width: 25px;
  height: 25px;
}
.catalog-mobile-one__counter {
  display: none;
  align-items: center;
  justify-content: center;
  height: 23px;
  min-width: 23px;
  padding: 0 5px;
  box-sizing: border-box;
  background-color: hsl(var(--sh), var(--ss), var(--sl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 12px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  word-break: keep-all;
}
.catalog-mobile-one__counter.is-active {
  display: flex;
}
.catalog-mobile-one__name {
  display: block;
  font-weight: 600;
}
.catalog-mobile-one__desc {
  display: block;
  font-size: 15px;
  line-height: 1.45em;
  opacity: 0.7;
}
.catalog-mobile-one__value {
  display: block;
  font-size: 0.95em;
  line-height: 1.45em;
}
.catalog-mobile-two {
  display: block;
}
.catalog-mobile-two__title {
  position: relative;
  display: block;
  padding: 10px 1rem 0;
  margin-bottom: var(--gap);
  font-weight: 600;
  font-size: 18px;
}
.catalog-mobile-two__navigation {
  margin-bottom: var(--gap);
}
.catalog-mobile-two__navigation > li {
  margin-right: 1rem;
  margin-left: 1rem;
  border-top: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 2%));
}
.catalog-mobile-two__list {
  display: none;
}
.catalog-mobile-two__list:not(:last-of-type) {
  margin-bottom: 5px;
}
.catalog-mobile-two__list.is-opened {
  display: block;
}
.catalog-mobile-two__list li {
  margin-left: 1rem;
}
.catalog-mobile-two__item.is-parent {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 10px;
  align-items: start;
}
.catalog-mobile-two__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-top: 10px;
}
.catalog-mobile-two__icon::after {
  content: '';
  display: block;
  border-style: solid;
  border-color: transparent;
  border-left-width: 5px;
  border-top-width: 5px;
  border-right-width: 5px;
  border-top-color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  transform: rotate(-90deg);
  transition: 0.3s ease;
  cursor: pointer;
}
.catalog-mobile-two__icon.is-opened {
  transform: rotate(90deg);
}
.catalog-mobile-two__link {
  display: block;
  padding: 10px 0;
  color: hsl(var(--th), var(--ts), var(--tl));
  line-height: 1.45em;
  text-decoration: none;
  transition: 0.3s ease;
}
.catalog-mobile-two__bottom {
  padding: 1rem;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.catalog-mobile-two__wrapper {
  padding: 0.6rem 1rem;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-large);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}
.catalog-mobile-two__wrapper:not(:last-of-type) {
  margin-bottom: var(--gap);
}
.catalog-mobile-two__wrapper > li {
  display: flex;
  align-items: center;
  min-height: 50px;
  box-sizing: border-box;
}
.catalog-mobile-two__wrapper > li:not(:first-of-type) {
  border-top: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.catalog-mobile-two__entry {
  display: block;
  width: 100%;
  padding: 5px 0;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.catalog-mobile-two__entry.is-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 10px;
  align-items: center;
}
.catalog-mobile-two__entry > svg {
  display: block;
  width: 25px;
  height: 25px;
}
.catalog-mobile-two__counter {
  display: none;
  align-items: center;
  justify-content: center;
  height: 23px;
  min-width: 23px;
  padding: 0 5px;
  box-sizing: border-box;
  background-color: hsl(var(--sh), var(--ss), var(--sl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 12px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  word-break: keep-all;
}
.catalog-mobile-two__counter.is-active {
  display: flex;
}
.catalog-mobile-two__name {
  display: block;
  font-weight: 600;
}
.catalog-mobile-two__desc {
  display: block;
  font-size: 15px;
  line-height: 1.45em;
  opacity: 0.7;
}
.catalog-mobile-two__value {
  display: block;
  font-size: 0.95em;
  line-height: 1.45em;
}
.catalog-one {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  height: calc(100vh - 100%);
  z-index: 150;
}
.catalog-one__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dim);
}
.catalog-one__center {
  position: relative;
  display: grid;
  grid-template-columns: 370px 1fr;
  max-width: var(--frame-width);
  min-height: 500px;
  margin: var(--gap-small) auto 0;
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-normal);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  box-shadow: var(--shadow-modal);
  overflow: hidden;
}
.catalog-one__tabs-wrapper {
  padding: 0.5rem calc(0.5rem - 3px) 0.5rem 0.5rem;
}
.catalog-one__tabs {
  padding: 0.5rem calc(0.5rem - 3px) 0.5rem 0.5rem;
  max-height: 515px;
  overflow-y: scroll;
}
.catalog-one__tabs::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: transparent;
}
.catalog-one__tabs::-webkit-scrollbar-thumb {
  margin-left: 5px;
  border-radius: 4px;
  background-color: transparent;
}
.catalog-one__tabs:hover::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.catalog-one__tab.is-active .catalog-one__tab-link {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.catalog-one__tab:not(:last-child) {
  margin-bottom: 2px;
}
.catalog-one__tab-link {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: var(--gap-small);
  align-items: center;
  min-height: 32px;
  padding: 0.4rem 0.8rem;
  border-radius: var(--border-radius-small);
  transition: background-color 0.2s ease;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  line-height: 1.45em;
}
.catalog-one__tab-link:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.catalog-one__tab-link.has-image {
  grid-template-columns: 32px 1fr auto;
}
.catalog-one__tab-name {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.catalog-one__image {
  display: flex;
  align-items: center;
}
.catalog-one__image > img,
.catalog-one__image > svg {
  display: block;
  max-width: 32px;
  max-height: 32px;
  height: auto;
  border-radius: var(--border-radius-small);
}
.catalog-one__image > svg {
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.catalog-one__tab-arrow {
  display: inline-flex;
  align-items: center;
  color: hsl(var(--th), var(--ts), var(--tl));
  cursor: pointer;
}
.catalog-one__tab-arrow .icon-more {
  display: block;
  width: 8px;
  height: 8px;
  transform: rotate(-90deg);
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 30%));
}
.catalog-one__content-wrapper {
  padding: 2rem 1.5rem 2rem 3rem;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  box-shadow: 8px 0 6px -5px rgba(0, 0, 0, 0.08) inset;
}
.catalog-one__content {
  max-height: 515px;
  height: 100%;
  padding-right: 1.5rem;
  box-sizing: border-box;
  overflow-y: scroll;
}
.catalog-one__content::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: transparent;
}
.catalog-one__content::-webkit-scrollbar-thumb {
  margin-left: 5px;
  border-radius: 4px;
  background-color: transparent;
}
.catalog-one__content:hover::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.catalog-one__item {
  display: none;
}
.catalog-one__item.is-active {
  display: block;
}
.catalog-one__item-header {
  margin-bottom: var(--gap);
}
.catalog-one__item-name {
  margin-right: 5px;
  font-size: var(--subtitle-font-size);
  font-weight: 600;
}
.catalog-one__item-counter {
  font-size: 15px;
  opacity: 0.5;
}
.catalog-one__brand-list {
  display: grid;
  grid-gap: var(--gap-small);
  padding: 1px;
}
.catalog-one__brand-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 2%));
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
  text-align: center;
  transition: 0.2s ease;
}
.catalog-one__brand-link:hover {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  box-shadow: 0 0 1px 1px hsl(var(--ph), var(--ps), var(--pl));
}
.catalog-one__brand-image img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}
.catalog-one__brand-name {
  display: block;
  margin-top: var(--gap-small);
  line-height: 1.45em;
}
.catalog-one__sub-list {
  display: grid;
  grid-gap: var(--gap);
}
.catalog-one__column {
  display: flex;
  flex-direction: column;
}
.catalog-one__column > * {
  margin-bottom: var(--gap);
}
.catalog-one__sub-item.has-image {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-gap: 1rem;
  align-items: center;
}
.catalog-one__sub-item.has-image .catalog-one__child-list {
  margin-left: unset;
}
.catalog-one__sub-item.has-image.has-children {
  align-items: flex-start;
}
.catalog-one__sub-item img {
  border-radius: var(--border-radius-small);
  overflow: hidden;
}
.catalog-one__sub-item img,
.catalog-one__sub-item svg {
  display: block;
  width: 100%;
  height: auto;
}
.catalog-one__sub-item svg {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 20%));
}
.catalog-one__sub-link {
  color: hsl(var(--th), var(--ts), var(--tl));
  line-height: 1.45em;
  white-space: normal;
  text-decoration: none;
  font-weight: 600;
}
.catalog-one__child-list {
  margin-top: 8px;
  margin-left: var(--gap);
}
.catalog-one__child-item:not(:last-of-type) {
  margin-bottom: 8px;
}
.catalog-one__child-link {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  text-decoration: none;
  font-size: 0.95em;
  line-height: 1.45em;
  white-space: normal;
}
.catalog-one__error {
  position: relative;
  max-width: var(--frame-width);
  padding: 2rem;
  margin: 1rem auto 0;
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-normal);
  text-align: center;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
@media (min-width: 992px) {
  .catalog-one {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0s ease-in-out;
  }
  .catalog-one.is-active {
    opacity: 1;
    visibility: visible;
    transition-duration: 0.2s;
  }
  .catalog-one.is-active .catalog-one__center {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition-duration: 0.2s;
    transition-delay: 0.1s;
  }
  .catalog-one__brand-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog-one__overlay.is-overlay {
    position: fixed;
  }
  .is-fixed .catalog-one__overlay.is-overlay {
    position: absolute;
  }
}
@media (min-width: 1100px) {
  .catalog-one__sub-list {
    grid-template-columns: 1fr 1fr;
    margin-left: 1rem;
  }
}
@media (min-width: 1200px) {
  .catalog-one__brand-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1400px) {
  .catalog-one__brand-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1500px) {
  .catalog-one__brand-list {
    grid-template-columns: repeat(5, 1fr);
  }
}
.catalog-two {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  height: calc(100vh - 100%);
  z-index: 150;
}
.catalog-two__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dim);
}
.catalog-two__center {
  position: relative;
  max-width: var(--frame-width);
  margin: var(--gap-small) auto 0;
  box-sizing: border-box;
  pointer-events: none;
}
.catalog-two__content {
  width: 350px;
  padding: 0.5rem calc(0.5rem - 3px) 0.5rem 0.5rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  pointer-events: auto;
}
.catalog-two__list {
  max-height: 500px;
  padding: 0.5rem calc(0.5rem - 3px) 0.5rem 0.5rem;
  box-sizing: border-box;
  overflow-y: scroll;
}
.catalog-two__list::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
}
.catalog-two__list::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: 4px;
  margin-left: 5px;
}
.catalog-two__item-link {
  display: block;
  padding: 0.4rem 1rem 0.4rem 0.9rem;
  border-radius: var(--border-radius-small);
  color: hsl(var(--th), var(--ts), var(--tl));
  line-height: 1.45em;
  text-decoration: none;
  transition: background-color 0.1s ease;
}
.catalog-two__item-link:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.catalog-two__item-link.has-image {
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-gap: var(--gap-small);
  align-items: center;
}
.catalog-two__item-name {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.catalog-two__image {
  display: flex;
  align-items: center;
}
.catalog-two__image > img,
.catalog-two__image > svg {
  display: block;
  width: 100%;
  height: auto;
}
.catalog-two__image > svg {
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.catalog-two__error {
  padding: 0 0.5rem;
  text-align: center;
  opacity: 0.7;
}
@media (min-width: 992px) {
  .catalog-two {
    display: block;
    opacity: 0;
    visibility: hidden;
    transition: 0s ease-in-out;
  }
  .catalog-two.is-active {
    opacity: 1;
    visibility: visible;
    transition-duration: 0.2s;
  }
}
.cbx {
  position: relative;
  display: inline-block;
  top: 0;
  width: 17px;
  height: 17px;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: 3px;
  vertical-align: middle;
  transition: background 0.1s ease;
  cursor: pointer;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.cbx::after {
  content: '';
  position: absolute;
  top: 1px;
  left: 5px;
  width: 5px;
  height: 11px;
  opacity: 0;
  transform: rotate(45deg) scale(0);
  border-right: 2px solid;
  border-bottom: 2px solid;
  border-color: hsl(var(--bh), var(--bs), var(--bl));
  transition: 0.3s ease;
  transition-delay: 0.15s;
}
.cbx__container.is-gap {
  margin-bottom: var(--gap);
}
.cbx__hidden {
  display: none;
}
.cbx__hidden:checked ~ .cbx {
  border-color: transparent;
  animation: jelly 0.6s ease;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.cbx__hidden:checked ~ .cbx:after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
.cbx__label {
  margin-left: 5px;
  vertical-align: middle;
  font-size: 0.95em;
  line-height: 1.45em;
  cursor: pointer;
}
.collapsed {
  position: relative;
  max-height: 200px;
  overflow: hidden;
}
.collapsed::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 130px;
  z-index: 1;
}
.collapsed.is-primary::after {
  background: linear-gradient(180deg, transparent 0, hsl(var(--bh), var(--bs), var(--bl)));
}
.collapsed.is-secondary::after {
  background: linear-gradient(180deg, transparent 0, hsl(var(--ah), var(--as), var(--al)));
}
.collapsed.is-semitone::after {
  background: linear-gradient(180deg, transparent 0, hsl(var(--ah), var(--as), calc(var(--al) + 2%)));
}
.collapsed.is-triggered.is-primary::after,
.collapsed.is-triggered.is-secondary::after,
.collapsed.is-triggered.is-semitone::after {
  display: none;
}
.collapsed__content {
  font-size: 0.95em;
  line-height: 1.45em;
}
.collapsed__more {
  display: inline-flex;
  align-items: baseline;
  margin-top: 1rem;
  padding: 8px 16px 5px;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: var(--border-radius-small);
  text-decoration: none;
  font-size: 15px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  transition: 0.2s ease;
  cursor: pointer;
}
.collapsed__more .icon-arrow {
  display: block;
  width: 10px;
  height: 10px;
  margin-left: 8px;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.collapsed__more.is-active .icon-arrow {
  transform: rotate(180deg);
}
.collapsed__more:hover {
  box-shadow: 0 0 0 3px hsl(var(--ah), var(--as), var(--al));
}
@media (min-width: 768px) {
  .collapsed__content {
    font-size: 1em;
  }
}
.column-one > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.column-one--gap {
  margin-bottom: var(--gap);
}
.column-one__name {
  display: block;
  font-size: var(--name-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.column-one__text {
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.column-one__text > p:not(:last-of-type) {
  margin-bottom: var(--gap);
}
.column-one__link {
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  display: inline;
  text-decoration: none;
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 100%;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  background-image: linear-gradient(to right, hsl(var(--ph), var(--ps), var(--pl)) 0%, hsl(var(--ph), var(--ps), var(--pl)) 100%);
}
.column-one__link:hover {
  background-size: 100% 2px;
}
@media (min-width: 768px) {
  .column-one__link,
  .column-one__text {
    font-size: 1em;
  }
}
.compare-button {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  user-select: none;
  cursor: pointer;
  white-space: nowrap;
}
.compare-button .icon-compare {
  display: block;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 30%));
}
.compare-button .icon-compare__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.compare-button .core-check {
  display: none;
  fill: hsl(118, 53%, 43%);
}
.compare-button[data-text]:not([data-text=''])::after {
  display: inline-block;
  content: attr(data-text);
}
.compare-button.is-small {
  font-size: 15px;
}
.compare-button.is-small[data-text]:not([data-text=''])::after {
  margin-left: 6px;
}
.compare-button.is-small .core-check {
  width: 14px;
  height: 14px;
}
.compare-button.is-small .icon-compare {
  width: 18px;
  height: 18px;
}
.compare-button.is-medium[data-text]:not([data-text=''])::after {
  margin-left: 8px;
}
.compare-button.is-medium .core-check {
  width: 18px;
  height: 18px;
}
.compare-button.is-medium .icon-compare {
  width: 22px;
  height: 22px;
}
.compare-button.is-active .icon-compare {
  display: none;
}
.compare-button.is-active .core-check {
  display: block;
  animation: scale-in 0.2s linear forwards;
}
.compare-button.is-active[data-text]:not([data-text=''])::after {
  content: attr(data-active-text);
}
.contact-info {
  max-width: 400px;
}
.contact-info > :not(:first-child) {
  margin-top: 1rem;
}
.contact-info__info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 1.5rem;
  grid-row-gap: var(--gap-small);
}
.contact-info__contact.is-flex {
  display: flex;
}
.contact-info__contact.is-flex > svg {
  margin-left: var(--gap-small);
}
.contact-info__contact.is-email {
  grid-column: span 2;
}
.contact-info__contact-name {
  display: block;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.contact-info__contact-name.is-highlighted {
  font-weight: 600;
}
.contact-info__contact-description {
  font-size: 0.95em;
  line-height: 1.45em;
  opacity: 0.5;
}
.cookies-one {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  display: none;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  padding: 18px 20px;
  border-radius: var(--border-radius-small);
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-moderate);
  z-index: 150;
}
.cookies-one.is-active {
  display: flex;
}
.cookies-one > svg {
  display: none;
  margin-right: 1.5rem;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
  flex-shrink: 0;
}
.cookies-one > svg > a {
  text-decoration: none;
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.cookies-one__text {
  display: block;
  margin-bottom: var(--gap-small);
  font-size: 0.9em;
  line-height: 1.45em;
}
.cookies-one__text > a {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.cookies-one__button {
  margin-left: auto;
}
@media (max-width: 767px) {
  .cookies-one__button .is-narrow {
    width: 260px;
    max-width: unset;
  }
}
@media (min-width: 768px) {
  .cookies-one {
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
    max-width: 600px;
    padding: 0.6rem 1.2rem;
  }
  .cookies-one > svg {
    display: block;
  }
  .cookies-one__text {
    margin-bottom: unset;
    margin-right: 1.5rem;
  }
}
.cookies-two {
  position: fixed;
  bottom: 1rem;
  left: 1rem;
  display: none;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: 300px;
  padding: 10px 15px 15px;
  border-radius: var(--border-radius-normal);
  box-sizing: border-box;
  background-color: hsl(var(--ih), var(--is), var(--il));
  box-shadow: 0 6px 24px hsla(var(--bh), var(--bs), var(--bl), 0.08);
  z-index: 150;
}
.cookies-two.is-active {
  display: flex;
}
.cookies-two__text {
  display: block;
  margin-bottom: var(--gap-small);
  font-size: 0.9em;
  line-height: 1.45em;
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.cookies-two__text > a {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.cookies-two__button .is-narrow {
  width: 270px;
  max-width: unset;
}
@media (min-width: 768px) {
  .cookies-two {
    bottom: 2rem;
    left: 2rem;
  }
}
.expand-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 10px;
  border-radius: var(--border-radius-small);
  box-shadow: var(--shadow-modal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  cursor: pointer;
}
.expand-button > svg {
  width: 16px;
  height: 16px;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.expand-button > svg:last-of-type {
  display: block;
}
.expand-button > svg:first-of-type {
  display: none;
}
.expand-button.is-active > svg:last-of-type {
  display: none;
}
.expand-button.is-active > svg:first-of-type {
  display: block;
}
.expand-button--gap {
  margin-bottom: var(--gap);
}
.faq-one {
  border-width: 1px;
  border-radius: var(--border-radius-small);
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-style: solid;
  background-color: hsl(var(--ah), var(--as), var(--al));
  transition: box-shadow 0.2s ease-in-out, border-color 0.2s ease-in-out;
}
.faq-one--gap {
  margin-bottom: var(--gap);
}
.faq-one.is-active {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.faq-one.is-active .faq-one__icon {
  transform: rotate(-45deg);
}
.faq-one.is-active .faq-one__icon::before,
.faq-one.is-active .faq-one__icon::after {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.faq-one.is-active,
.faq-one:hover {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  box-shadow: 0 0 1px 1px hsl(var(--ph), var(--ps), var(--pl));
}
.faq-one__question-wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 2rem;
  padding: 1rem 1.6rem;
  box-sizing: border-box;
  cursor: pointer;
}
.faq-one__question {
  font-size: var(--name-font-size);
  font-weight: 600;
  line-height: 1.45em;
  user-select: none;
}
.faq-one__icon-wrapper {
  display: flex;
  align-items: center;
  height: 1.45em;
}
.faq-one__icon {
  position: relative;
  width: 18px;
  height: 18px;
  transition: transform 0.2s ease-in-out;
}
.faq-one__icon::before,
.faq-one__icon::after {
  content: '';
  position: absolute;
  background-color: black;
}
.faq-one__icon::before {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.faq-one__icon::after {
  height: 2px;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.faq-one__answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-one__answer {
  padding: 0 1.6rem 1rem;
  box-sizing: border-box;
  font-size: 0.95em;
  line-height: 1.45em;
}
@media (min-width: 768px) {
  .faq-one__answer {
    font-size: 1em;
  }
}
.favorite-button {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  user-select: none;
  cursor: pointer;
  white-space: nowrap;
}
.favorite-button[data-text]:not([data-text=''])::after {
  display: inline-block;
  content: attr(data-text);
}
.favorite-button.is-small {
  font-size: 15px;
}
.favorite-button.is-small[data-text]:not([data-text=''])::after {
  margin-left: 6px;
}
.favorite-button.is-small .favorite-button__svg {
  width: 18px;
  height: 18px;
}
.favorite-button.is-medium[data-text]:not([data-text=''])::after {
  margin-left: 8px;
}
.favorite-button.is-medium .favorite-button__svg {
  width: 22px;
  height: 22px;
}
.favorite-button__svg {
  display: block;
  cursor: pointer;
  overflow: visible;
}
.favorite-button__wrapper {
  transform-origin: center;
}
.favorite-button__heart {
  fill: hsl(var(--bh), var(--bs), var(--bl));
  stroke: hsl(var(--ah), var(--as), calc(var(--al) - 30%));
  stroke-width: 2px;
  transform-origin: center;
  animation: animateHeartOut 0.3s linear forwards;
}
.favorite-button__circle {
  fill: hsl(0, 97%, 69%);
  opacity: 0;
  transform-origin: 29.5px 29.5px;
}
.favorite-button.is-active[data-text]:not([data-text=''])::after {
  content: attr(data-active-text);
}
.favorite-button.is-active .favorite-button__heart {
  fill: hsl(0, 97%, 69%);
  stroke: hsl(0, 97%, 69%);
  transform: scale(0.2);
  animation: animateHeart 0.3s linear forwards 0.25s;
}
.favorite-button.is-active .favorite-button__circle {
  opacity: 1;
  transition: all 2s;
  animation: animateCircle 0.3s linear forwards;
}
.favorite-button.is-active .favorite-button__group {
  opacity: 1;
  transition: 0.1s all 0.3s;
}
.favorite-button.is-active .favorite-button__group circle:nth-of-type(1) {
  transform-origin: 0 0 0;
  transition: 0.5s transform 0.3s;
}
.favorite-button.is-active .favorite-button__group circle:nth-of-type(2) {
  transform-origin: 0 0 0;
  transition: 1.5s transform 0.3s;
}
.favorite-button.is-active .favorite-button__group--1 circle:nth-of-type(1) {
  transform: scale(0) translate(0, -20px);
}
.favorite-button.is-active .favorite-button__group--1 circle:nth-of-type(2) {
  transform: scale(0) translate(10px, -33px);
}
.favorite-button.is-active .favorite-button__group--2 circle:nth-of-type(1) {
  transform: scale(0) translate(20px, -10px);
}
.favorite-button.is-active .favorite-button__group--2 circle:nth-of-type(2) {
  transform: scale(0) translate(40px, -10px);
}
.favorite-button.is-active .favorite-button__group--3 circle:nth-of-type(1) {
  transform: scale(0) translate(20px, 0px);
}
.favorite-button.is-active .favorite-button__group--3 circle:nth-of-type(2) {
  transform: scale(0) translate(40px, 7px);
}
.favorite-button.is-active .favorite-button__group--4 circle:nth-of-type(1) {
  transform: scale(0) translate(20px, 10px);
}
.favorite-button.is-active .favorite-button__group--4 circle:nth-of-type(2) {
  transform: scale(0) translate(27px, 33px);
}
.favorite-button.is-active .favorite-button__group--5 circle:nth-of-type(1) {
  transform: scale(0) translate(-7px, 13px);
}
.favorite-button.is-active .favorite-button__group--5 circle:nth-of-type(2) {
  transform: scale(0) translate(-40px, 20px);
}
.favorite-button.is-active .favorite-button__group--6 circle:nth-of-type(1) {
  transform: scale(0) translate(-20px, 0px);
}
.favorite-button.is-active .favorite-button__group--6 circle:nth-of-type(2) {
  transform: scale(0) translate(-40px, -3px);
}
.favorite-button.is-active .favorite-button__group--7 circle:nth-of-type(1) {
  transform: scale(0) translate(-20px, -10px);
}
.favorite-button.is-active .favorite-button__group--7 circle:nth-of-type(2) {
  transform: scale(0) translate(-37px, -20px);
}
.favorite-button__group {
  opacity: 0;
}
.favorite-button__group circle {
  fill: hsl(0, 97%, 69%);
}
.favorite-button__group--1 {
  transform: translate(24px);
}
.favorite-button__group--2 {
  transform: translate(44px, 6px);
}
.favorite-button__group--3 {
  transform: translate(52px, 28px);
}
.favorite-button__group--4 {
  transform: translate(35px, 50px);
}
.favorite-button__group--5 {
  transform: translate(14px, 50px);
}
.favorite-button__group--6 {
  transform: translate(0, 28px);
}
.favorite-button__group--7 {
  transform: translate(7px, 6px);
}
.featured {
  display: inline-flex;
  align-items: center;
  max-width: 350px;
  color: currentColor;
  text-decoration: none;
}
.featured--gap {
  margin-bottom: var(--gap);
}
.featured > svg {
  flex-shrink: 0;
  display: block;
  margin-right: var(--gap-small);
  fill: currentColor;
  opacity: 0.7;
}
.featured__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1.45em;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}
.feedback-widget {
  display: none;
}
.feedback-widget__overlay {
  display: none;
}
@media (min-width: 992px) {
  .feedback-widget {
    position: fixed;
    right: 2rem;
    bottom: 2rem;
    display: block;
    pointer-events: none;
    z-index: 140;
  }
  .feedback-widget__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    opacity: 0;
    pointer-events: none;
    background-color: var(--dim-intense);
    transition: 0.2s ease-in-out;
    transition-delay: 0.1s;
  }
  .feedback-widget.is-active {
    pointer-events: auto;
  }
  .feedback-widget.is-active .feedback-widget__overlay {
    opacity: 1;
    pointer-events: auto;
  }
  .feedback-widget__button {
    opacity: 0;
    transform: scale(0) rotate(-180deg);
    animation: feedback-grow 0.4s linear forwards;
    animation-delay: 2.5s;
    pointer-events: auto;
    cursor: pointer;
  }
  .feedback-widget__button.is-triggered .feedback-widget__pulse {
    display: none;
  }
  .feedback-widget__button.is-triggered .feedback-widget__circle {
    background-color: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
    transform: scale(0.75);
  }
  .feedback-widget__button.is-triggered .feedback-widget__circle > svg.icon-call,
  .feedback-widget__button.is-triggered .feedback-widget__circle > svg.icon-dialog-alter {
    visibility: hidden;
  }
  .feedback-widget__button.is-triggered .feedback-widget__circle > svg.core-cross {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 1;
  }
  .feedback-widget__button.is-triggered .feedback-widget__inner {
    background-color: hsl(var(--bh), var(--bs), var(--bl));
    opacity: 0.6;
    transform: scale(0.75);
  }
  .feedback-widget__inner {
    position: absolute;
    top: -8px;
    left: -8px;
    height: 82px;
    min-width: 66px;
    width: calc(100% + 16px);
    border-radius: 50%;
    background: hsl(var(--sh), var(--ss), var(--sl));
    opacity: 0.2;
    transition: transform 0.2s ease;
  }
  .feedback-widget__pulse {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border: 1px solid hsl(var(--sh), var(--ss), var(--sl));
    animation: feedback-pulse infinite 1.5s;
    border-radius: 50%;
    transition: transform 0.2s ease;
  }
  .feedback-widget__circle {
    position: relative;
    background-color: hsl(var(--sh), var(--ss), var(--sl));
    width: 66px;
    height: 66px;
    border-radius: 50%;
  }
  .feedback-widget__circle > svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 28px;
    height: 28px;
    fill: hsl(var(--bh), var(--bs), var(--bl));
  }
  .feedback-widget__circle > svg.icon-call,
  .feedback-widget__circle > svg.icon-dialog-alter {
    animation: feedback-fade-in-out 3s infinite;
  }
  .feedback-widget__circle > svg.icon-call {
    animation-delay: 0s;
    opacity: 1;
  }
  .feedback-widget__circle > svg.icon-dialog-alter {
    animation-delay: 1.5s;
    opacity: 0;
  }
  .feedback-widget__circle > svg.core-cross {
    transition: transform 0.4s ease;
    opacity: 0;
  }
  .feedback-widget__list {
    position: relative;
    display: grid;
    grid-gap: var(--gap-small);
    justify-content: center;
    width: 100%;
    margin-bottom: 5px;
    pointer-events: none;
    opacity: 0;
  }
  .feedback-widget.is-active .feedback-widget__list {
    animation: feedback-bottom-open 0.3s ease forwards;
    pointer-events: auto;
  }
  .feedback-widget__item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: var(--shadow-light);
    color: hsl(var(--th), var(--ts), var(--tl));
    text-decoration: none;
  }
  .feedback-widget__item.is-phone,
  .feedback-widget__item.is-telegram {
    background-color: hsl(197, 100%, 47%);
  }
  .feedback-widget__item.is-whatsapp {
    background-color: hsl(141, 60%, 45%);
  }
  .feedback-widget__item.is-max {
    background-color: hsl(263, 89%, 65%);
  }
  .feedback-widget__item > svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: hsl(var(--bh), var(--bs), var(--bl));
  }
  .feedback-widget__item:hover .feedback-widget__tooltip {
    opacity: 1;
    z-index: 1;
  }
  .feedback-widget__tooltip {
    position: absolute;
    top: 50%;
    right: calc(100% + 8px);
    transform: translateY(-50%);
    display: inline-block;
    padding: 5px 10px;
    max-width: 350px;
    border-radius: var(--border-radius-small);
    background: hsl(var(--bh), var(--bs), var(--bl));
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 0.95em;
    transition: opacity 0.4s linear;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
  }
}
.feedback {
  padding: 0 0.5rem;
}
.feedback__title {
  display: block;
  margin-bottom: var(--gap-small);
  text-align: center;
  font-size: var(--subtitle-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.feedback__datetime,
.feedback__subtitle {
  display: block;
  text-align: center;
  opacity: 0.5;
  font-size: 0.95em;
  line-height: 1.45em;
}
.feedback__subtitle {
  margin-bottom: var(--gap-small);
}
.feedback__block {
  margin-bottom: 15px;
}
.feedback__block.is-hidden {
  display: none;
}
.feedback__label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
}
.feedback__label.is-required::after {
  content: ' *';
  color: hsl(0, 97%, 69%);
}
.feedback__input {
  display: inline-block;
  min-height: 42px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.6rem 1rem;
  box-sizing: border-box;
  appearance: none;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: var(--border-radius-small);
  font-size: 0.95em;
  font-family: inherit;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.feedback__input:hover:not(:disabled):not(:focus) {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.feedback__input:hover:focus {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.feedback__input:focus {
  outline: none;
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  box-shadow: 0 0 1px 1px hsl(var(--ph), var(--ps), var(--pl));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.feedback__input:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.feedback__input.is-error,
.feedback__input.error:hover,
.feedback__input.error:focus,
.feedback__input.error,
.feedback__input.wa-error {
  border-color: hsl(0, 97%, 69%);
  box-shadow: 0 0 1px 1px hsl(0, 97%, 69%);
}
.feedback__input::-webkit-input-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.feedback__input:-moz-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.feedback__error {
  display: block;
  margin-top: 5px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.45em;
  color: hsl(0, 97%, 69%);
}
.feedback__agree {
  font-size: 0.95em;
  line-height: 1.45em;
}
.feedback__link {
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: 0.15s ease-out;
}
.feedback__link:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
@media (min-width: 768px) {
  .feedback__input {
    min-height: 46px;
  }
}
.footer-one.is-secondary {
  border-top: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 2%));
  color: hsl(var(--th), var(--ts), var(--tl));
}
.footer-one.is-secondary .footer-one__row {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 10%));
}
.footer-one.is-secondary .footer-one__text,
.footer-one.is-secondary .footer-one__email,
.footer-one.is-secondary .footer-one__address {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.footer-one.is-secondary .footer-one__link,
.footer-one.is-secondary .footer-one__phone,
.footer-one.is-secondary .footer-one__policy {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.footer-one.is-secondary .footer-one__link:hover,
.footer-one.is-secondary .footer-one__phone:hover,
.footer-one.is-secondary .footer-one__policy:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.footer-one.is-secondary .footer-one__icon {
  border-top-color: hsl(var(--th), var(--ts), var(--tl));
}
.footer-one.is-secondary .footer-one__scroll:hover {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.footer-one.is-secondary .footer-one__scroll-icon {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 10%));
}
.footer-one.is-secondary .footer-one__select {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 2%));
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
  color: hsl(var(--th), var(--ts), var(--tl));
}
.footer-one.is-secondary .footer-one__select:focus,
.footer-one.is-secondary .footer-one__select:hover {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.footer-one.is-secondary .footer-one__dev {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.footer-one.is-secondary .footer-one__dev > svg {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.footer-one.is-primary {
  background-color: hsl(var(--ih), var(--is), var(--il));
  color: hsl(var(--bh), var(--bs), calc(var(--bl) - 20%));
}
.footer-one.is-primary .footer-one__row {
  border-color: hsl(var(--ih), var(--is), calc(var(--il) + 10%));
}
.footer-one.is-primary .footer-one__text,
.footer-one.is-primary .footer-one__email,
.footer-one.is-primary .footer-one__address {
  color: hsl(var(--bh), var(--bs), calc(var(--bl) - 15%));
  opacity: 0.5;
}
.footer-one.is-primary .footer-one__link,
.footer-one.is-primary .footer-one__phone,
.footer-one.is-primary .footer-one__policy {
  color: hsl(var(--bh), var(--bs), calc(var(--bl) - 20%));
}
.footer-one.is-primary .footer-one__link:hover,
.footer-one.is-primary .footer-one__phone:hover,
.footer-one.is-primary .footer-one__policy:hover {
  color: hsl(var(--bh), var(--bs), calc(var(--bl) - 40%));
}
.footer-one.is-primary .footer-one__icon {
  border-top-color: hsl(var(--bh), var(--bs), calc(var(--bl) - 20%));
}
.footer-one.is-primary .footer-one__scroll:hover {
  color: hsl(var(--bh), var(--bs), calc(var(--bl) - 40%));
}
.footer-one.is-primary .footer-one__scroll-icon {
  border-color: hsl(var(--ih), var(--is), calc(var(--il) + 10%));
}
.footer-one.is-primary .footer-one__select {
  background-color: hsl(var(--ih), var(--is), var(--il));
  border-color: hsl(var(--ih), var(--is), calc(var(--il) + 10%));
  color: hsl(var(--bh), var(--bs), calc(var(--bl) - 20%));
}
.footer-one.is-primary .footer-one__select:focus,
.footer-one.is-primary .footer-one__select:hover {
  color: hsl(var(--bh), var(--bs), calc(var(--bl) - 40%));
}
.footer-one.is-primary .footer-one__dev {
  color: hsl(var(--bh), var(--bs), calc(var(--bl) - 20%));
}
.footer-one.is-primary .footer-one__dev > svg {
  fill: hsl(var(--bh), var(--bs), calc(var(--bl) - 20%));
}
.footer-one__columns {
  display: grid;
  grid-gap: 2rem;
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.footer-one__column > :not(:last-child) {
  margin-bottom: 1rem;
}
.footer-one__title {
  display: block;
  font-size: var(--subtitle-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.footer-one__email,
.footer-one__address,
.footer-one__text {
  font-size: 0.95em;
  line-height: 1.45em;
}
.footer-one__phone {
  display: inline-block;
  text-decoration: none;
  font-size: 1.45em;
  transition: 0.3s ease;
}
.footer-one__email {
  display: inline-block;
  text-decoration: none;
}
.footer-one__list {
  display: none;
  margin-left: var(--gap);
}
.footer-one__list:not(:last-of-type) {
  margin-bottom: 5px;
}
.footer-one__list.is-opened {
  display: block;
}
.footer-one__item-wrapper {
  break-inside: avoid-column;
}
.footer-one__item-wrapper:not(:last-of-type) {
  margin-bottom: 5px;
}
.footer-one__item.is-parent {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  grid-gap: 10px;
  align-items: start;
  margin-bottom: 5px;
}
.footer-one__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-style: solid;
  border-color: transparent;
  border-left-width: 5px;
  border-top-width: 5px;
  border-right-width: 5px;
  margin-top: 9px;
  transition: 0.3s ease;
  cursor: pointer;
}
.footer-one__icon.is-opened {
  transform: rotate(-90deg);
}
.footer-one__link {
  font-size: 0.95em;
  line-height: 1.45em;
  text-decoration: none;
  transition: 0.3s ease;
}
.footer-one__navigation-title {
  display: block;
  margin-bottom: 1rem;
  font-size: var(--subtitle-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.footer-one__row {
  display: grid;
  grid-gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  padding-bottom: 2rem;
  border-top-width: 1px;
  border-style: solid;
  font-size: 16px;
  line-height: 1.45em;
}
.footer-one__select {
  display: block;
  width: 100%;
  min-width: 180px;
  padding: 0.3rem 3rem 0.3rem 0.8rem;
  margin: 0;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  appearance: none;
  border-radius: var(--border-radius-small);
  font-size: 15px;
  line-height: 1.45em;
  cursor: pointer;
  transition: 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 399 399' xmlns='http://www.w3.org/2000/svg' xml:space='preserve'%3E%3Cstyle type='text/css'%3E.st0%7Bfill:%23D1CDC6;%7D%3C/style%3E%3Cpath class='st0' d='M199,251.9c-4.7,0-9.4-1.8-13-5.3l-68.8-67.7c-7.3-7.2-7.4-18.9-0.2-26.2c7.2-7.3,18.9-7.4,26.2-0.2l55.8,54.9 l55.8-54.9c7.3-7.2,19-7.1,26.2,0.2c7.2,7.3,7.1,19-0.2,26.2L212,246.5C208.4,250.1,203.7,251.9,199,251.9z'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat, repeat;
  background-position: right 0.6em top 50%;
  background-size: 1.45em auto, 100%;
}
.footer-one__select::-ms-expand {
  display: none;
}
.footer-one__select:focus {
  outline: none;
}
.footer-one__select:not(:last-of-type) {
  margin-bottom: var(--gap);
}
.footer-one__scroll {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  grid-gap: var(--gap-small);
  cursor: pointer;
  transition: 0.3s ease;
}
.footer-one__scroll-icon {
  display: block;
  padding: 10px;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
}
.footer-one__scroll-icon > svg {
  display: block;
  width: 20px;
  height: 20px;
  transform: rotate(-45deg);
  fill: currentColor;
}
.footer-one__dev {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: 0.3s ease;
}
.footer-one__dev > svg {
  display: block;
  width: 30px;
  height: 15px;
  margin-left: var(--gap-small);
}
.footer-one__dots > img {
  display: block;
}
.footer-one__policy {
  text-decoration: none;
  transition: 0.3s ease;
}
@media (min-width: 768px) {
  .footer-one__row {
    grid-template-columns: 1fr 1fr;
  }
  .footer-one__select-wrapper {
    display: flex;
    align-items: center;
  }
  .footer-one__select:not(:last-of-type) {
    margin-bottom: unset;
    margin-right: var(--gap);
  }
  .footer-one__email,
  .footer-one__address,
  .footer-one__text,
  .footer-one__link {
    font-size: 1em;
  }
}
@media (min-width: 992px) {
  .footer-one__columns {
    grid-template-columns: 1fr 1fr;
  }
  .footer-one__navigation.is-two {
    column-fill: balance;
    columns: 2;
  }
}
@media (min-width: 1200px) {
  .footer-one__columns.is-one {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-one__columns.is-two {
    grid-template-columns: 1fr 2fr 1fr;
  }
  .footer-one__rating {
    display: flex;
    justify-content: flex-end;
  }
  .footer-one__text {
    text-align: right;
  }
  .footer-one__row {
    display: flex;
    grid-gap: unset;
  }
  .footer-one__row > :not(:first-of-type) {
    margin-left: 2rem;
  }
  .footer-one__row > * {
    max-width: 40%;
  }
  .footer-one__select-wrapper {
    margin-right: auto;
  }
}
.frame--primary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.frame--secondary {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.frame--semitone {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.frame--inverse {
  background-color: hsl(var(--ih), var(--is), var(--il));
}
.frame--border {
  border-top: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.frame__container {
  box-sizing: border-box;
  width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
.frame__center {
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-top: var(--frame-padding-mobile);
  box-sizing: border-box;
  padding-bottom: var(--frame-padding-mobile);
}
.frame__center.is-top-10 {
  padding-top: 10px;
}
.frame__center.is-top-20 {
  padding-top: 20px;
}
.frame__center.is-top-30 {
  padding-top: 30px;
}
.frame__center.is-top-40,
.frame__center.is-top-50,
.frame__center.is-top-60,
.frame__center.is-top-70,
.frame__center.is-top-80,
.frame__center.is-top-90 {
  padding-top: 40px;
}
.frame__center.is-bottom-10 {
  padding-bottom: 10px;
}
.frame__center.is-bottom-20 {
  padding-bottom: 20px;
}
.frame__center.is-bottom-30 {
  padding-bottom: 30px;
}
.frame__center.is-bottom-40,
.frame__center.is-bottom-50,
.frame__center.is-bottom-60,
.frame__center.is-bottom-70,
.frame__center.is-bottom-80,
.frame__center.is-bottom-90 {
  padding-bottom: 40px;
}
.frame__center.is-full-height {
  min-height: calc(100vh - var(--header-height-mobile) - var(--top-bar-height));
}
.frame__center--two,
.frame__center--three,
.frame__center--four {
  display: grid;
  grid-gap: 1rem;
}
.frame__column {
  min-width: 0;
}
@media (max-width: 767px) {
  .frame--compact .frame__center,
  .frame--compact .frame__container {
    padding: unset;
  }
}
@media (min-width: 768px) {
  .frame__container {
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .frame__center {
    padding-top: var(--frame-padding);
    padding-bottom: var(--frame-padding);
  }
  .frame__center.is-top-10 {
    padding-top: 10px;
  }
  .frame__center.is-top-20 {
    padding-top: 20px;
  }
  .frame__center.is-top-30 {
    padding-top: 30px;
  }
  .frame__center.is-top-40 {
    padding-top: 40px;
  }
  .frame__center.is-top-50 {
    padding-top: 50px;
  }
  .frame__center.is-top-60 {
    padding-top: 60px;
  }
  .frame__center.is-top-70 {
    padding-top: 70px;
  }
  .frame__center.is-top-80 {
    padding-top: 80px;
  }
  .frame__center.is-top-90 {
    padding-top: 90px;
  }
  .frame__center.is-bottom-10 {
    padding-bottom: 10px;
  }
  .frame__center.is-bottom-20 {
    padding-bottom: 20px;
  }
  .frame__center.is-bottom-30 {
    padding-bottom: 30px;
  }
  .frame__center.is-bottom-40 {
    padding-bottom: 40px;
  }
  .frame__center.is-bottom-50 {
    padding-bottom: 50px;
  }
  .frame__center.is-bottom-60 {
    padding-bottom: 60px;
  }
  .frame__center.is-bottom-70 {
    padding-bottom: 70px;
  }
  .frame__center.is-bottom-80 {
    padding-bottom: 80px;
  }
  .frame__center.is-bottom-90 {
    padding-bottom: 90px;
  }
  .frame__center--two,
  .frame__center--three,
  .frame__center--four {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 2rem;
  }
}
@media (min-width: 992px) {
  .frame__center.is-full-height {
    min-height: calc(100vh - var(--header-height) - var(--top-bar-height));
  }
}
@media (min-width: 1300px) {
  .frame__container {
    padding-left: 6rem;
    padding-right: 6rem;
  }
  .frame__center--two {
    grid-template-columns: repeat(2, 1fr);
  }
  .frame__center--three {
    grid-template-columns: repeat(3, 1fr);
  }
  .frame__center--four {
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 1rem;
  }
}
.header-eight {
  display: none;
}
.header-eight .is-desktop {
  display: none;
}
.header-eight .is-mobile {
  display: block;
}
.header-eight__top {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  padding-top: var(--gap-small);
  padding-bottom: var(--gap-small);
  margin: 0 auto;
  box-sizing: border-box;
}
.header-eight__top > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-eight__phone-link {
  display: flex;
  flex-direction: column;
  max-width: 350px;
  padding-left: var(--gap-extended);
  box-sizing: border-box;
  border-left: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  font-size: 0.9em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.header-eight__phone-link.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-color: hsla(var(--bh), var(--bs), var(--bl), 0.3);
}
.header-eight__phone-text {
  font-size: 14px;
  line-height: 1.2em;
  opacity: 0.7;
}
.header-eight__phone-number {
  font-size: 15px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .header-eight {
    display: block;
  }
}
@media (min-width: 1100px) {
  .header-eight .is-desktop {
    display: block;
  }
  .header-eight .is-mobile {
    display: none;
  }
}
.header-eleven {
  display: none;
}
.header-eleven .is-desktop {
  display: none;
}
.header-eleven .is-mobile {
  display: block;
}
.header-eleven__top {
  display: flex;
  align-items: center;
  max-width: var(--frame-width);
  padding-top: 8px;
  padding-bottom: 8px;
  margin: 0 auto;
  box-sizing: border-box;
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-eleven__top > :not(:first-child) {
  margin-left: var(--gap);
}
.header-eleven__featured {
  font-size: 0.95em;
}
.header-eleven__links {
  margin-right: auto;
}
.header-eleven__links > li > a {
  font-size: 0.95em;
}
.header-eleven__phone {
  display: block;
  text-decoration: none;
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-size: 0.95em;
  white-space: nowrap;
}
.header-eleven__info {
  position: relative;
  display: flex;
  align-items: center;
}
.header-eleven__info .icon-info {
  display: block;
  fill: hsl(var(--bh), var(--bs), var(--bl));
  opacity: 0.7;
}
.header-eleven__info:hover .header-eleven__info-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-eleven__info-text {
  display: block;
  margin-left: 5px;
  font-size: 0.95em;
  user-select: none;
}
.header-eleven__info-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap);
}
.header-eleven__info-content {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  width: 400px;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.header-eleven__info-content::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.header-eleven__info-content::before {
  top: -5px;
  right: 2rem;
}
.header-eleven__profile {
  font-size: 0.95em;
  text-decoration: none;
  color: currentColor;
  cursor: pointer;
}
.header-eleven__bottom {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  padding-top: var(--gap-small);
  padding-bottom: var(--gap-small);
  margin: 0 auto;
  box-sizing: border-box;
}
.header-eleven__bottom > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-eleven__bottom > :first-child {
  margin-right: calc(var(--gap) * 2);
}
.header-eleven__search {
  flex-grow: 1;
}
.header-eleven__phone-wrapper {
  display: flex;
  align-items: center;
  max-width: 350px;
  padding-left: 15px;
  box-sizing: border-box;
  border-radius: 30px;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.header-eleven__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.header-eleven__phone-icon svg {
  width: 18px;
  height: 18px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 30%));
}
.header-eleven__phone-link {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  font-size: 0.9em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.header-eleven__phone-link.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-eleven__phone-text {
  font-size: 14px;
  line-height: 1.2em;
  opacity: 0.75;
}
.header-eleven__phone-number {
  font-size: 15px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .header-eleven {
    display: block;
  }
}
@media (min-width: 1200px) {
  .header-eleven .is-desktop {
    display: flex;
  }
  .header-eleven .is-mobile {
    display: none;
  }
}
.header-five {
  display: none;
}
.header-five.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-five .is-desktop {
  display: none;
}
.header-five .is-mobile {
  display: block;
}
.header-five__top {
  display: flex;
  align-items: center;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-top: 20px;
  box-sizing: border-box;
}
.header-five__top > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-five__top-wrapper {
  display: flex;
  align-items: center;
}
.header-five__top-wrapper > :not(:last-child) {
  margin-right: var(--gap);
}
.header-five__bottom {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  padding-top: 10px;
  padding-bottom: 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header-five__bottom > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-five__bottom > :first-child {
  margin-right: calc(var(--gap) * 2);
}
.header-five__bottom-wrapper {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.header-five__bottom-wrapper > :not(:last-child) {
  margin-right: var(--gap);
}
.header-five__phone-link {
  flex-shrink: 0;
  display: none;
  flex-direction: column;
  max-width: 350px;
  padding-left: var(--gap-extended);
  box-sizing: border-box;
  border-left: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  font-size: 0.9em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.header-five__phone-link.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-color: hsla(var(--bh), var(--bs), var(--bl), 0.3);
}
.header-five__phone-text {
  font-size: 14px;
  line-height: 1.2em;
  opacity: 0.7;
}
.header-five__phone-number {
  font-size: 15px;
  font-weight: 600;
}
.header-five__buttons {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: auto;
}
.header-five__buttons > :not(:last-child) {
  margin-right: var(--gap);
}
.header-five__button {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.header-five__button > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: pointer;
}
.header-five__button .icon-compare__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.header-five__button.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-five__button.is-overlay > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.header-five__counter {
  position: absolute;
  right: -8px;
  top: -8px;
  display: none;
  align-items: center;
  justify-content: center;
  height: 17px;
  min-width: 17px;
  padding: 0 5px;
  box-sizing: border-box;
  background-color: hsl(var(--sh), var(--ss), var(--sl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 12px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  word-break: keep-all;
}
.header-five__counter.is-active {
  display: flex;
}
.header-five__cart {
  position: relative;
}
.header-five__cart:hover .header-five__cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-five__cart-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  white-space: nowrap;
}
.header-five__cart-link.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-five__cart-link.is-overlay .header-five__cart-icon > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.header-five__cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--gap-small);
}
.header-five__cart-icon > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-five__cart-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap);
}
.header-five__cart-content {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  width: 400px;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.header-five__cart-content::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.header-five__cart-content::before {
  top: -5px;
  right: 2rem;
}
.header-five__search {
  width: 100%;
}
@media (min-width: 992px) {
  .header-five {
    display: block;
  }
}
@media (min-width: 1100px) {
  .header-five .is-desktop {
    display: block;
  }
  .header-five .is-mobile {
    display: none;
  }
}
@media (min-width: 1300px) {
  .header-five__phone-link {
    display: flex;
  }
}
.header-fixed-one {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  box-shadow: var(--shadow-header);
  opacity: 0;
  background: linear-gradient(180deg, hsla(var(--ah), var(--as), calc(var(--al) - 8%), 0.3) 0, hsla(var(--bh), var(--bs), var(--bl), 0) 100%);
  background-color: hsla(var(--ah), var(--as), calc(var(--al) + 2%), 0.8);
  backdrop-filter: blur(10px);
  transform: translateY(-50px);
  transition: transform 0.15s ease, opacity 0.25s ease;
  pointer-events: none;
  z-index: 150;
}
.header-fixed-one.is-fixed {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header-fixed-one__top {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  padding-top: var(--gap-small);
  padding-bottom: var(--gap-small);
  margin: 0 auto;
  box-sizing: border-box;
}
.header-fixed-one__top > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-fixed-one__top > :first-child {
  margin-right: calc(var(--gap) * 2);
}
.header-fixed-one__phone {
  display: none;
  margin-left: auto;
  border-radius: var(--border-radius-small);
  text-decoration: none;
  text-align: right;
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), var(--tl));
  white-space: nowrap;
}
.header-fixed-one__phone > .icon-phone-alter {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: var(--gap-small);
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-fixed-one__phone > .icon-more {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  margin-top: 2px;
  fill: hsl(0, 0%, 66%);
}
.header-fixed-one__info {
  position: relative;
}
.header-fixed-one__info .icon-info {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
  cursor: pointer;
}
.header-fixed-one__info:hover .header-fixed-one__info-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-fixed-one__info-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap);
}
.header-fixed-one__info-content {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  width: 400px;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.header-fixed-one__info-content::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.header-fixed-one__info-content::before {
  top: -5px;
  right: 2rem;
}
@media (min-width: 992px) {
  .header-fixed-one {
    display: block;
  }
}
@media (min-width: 1200px) {
  .header-fixed-one__phone {
    display: flex;
    align-items: center;
  }
}
.header-fixed-three {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  box-shadow: var(--shadow-header);
  opacity: 0;
  background: linear-gradient(180deg, hsla(var(--ah), var(--as), calc(var(--al) - 8%), 0.3) 0, hsla(var(--bh), var(--bs), var(--bl), 0) 100%);
  background-color: hsla(var(--ah), var(--as), calc(var(--al) + 2%), 0.8);
  backdrop-filter: blur(10px);
  transform: translateY(-50px);
  transition: transform 0.15s ease, opacity 0.25s ease;
  pointer-events: none;
  z-index: 150;
}
.header-fixed-three.is-fixed {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header-fixed-three__top {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  padding-top: var(--gap-small);
  padding-bottom: var(--gap-small);
  margin: 0 auto;
  box-sizing: border-box;
}
.header-fixed-three__top > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-fixed-three__top > :first-child {
  margin-right: calc(var(--gap) * 2);
}
.header-fixed-three__phone {
  display: none;
  margin-left: auto;
  border-radius: var(--border-radius-small);
  text-decoration: none;
  text-align: right;
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), var(--tl));
  white-space: nowrap;
}
.header-fixed-three__phone > .icon-phone-alter {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: var(--gap-small);
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-fixed-three__phone > .icon-more {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  margin-top: 2px;
  fill: hsl(0, 0%, 66%);
}
.header-fixed-three__info {
  position: relative;
}
.header-fixed-three__info .icon-info {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
  cursor: pointer;
}
.header-fixed-three__info:hover .header-fixed-three__info-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-fixed-three__info-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap);
}
.header-fixed-three__info-content {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  width: 400px;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.header-fixed-three__info-content::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.header-fixed-three__info-content::before {
  top: -5px;
  right: 2rem;
}
@media (min-width: 992px) {
  .header-fixed-three {
    display: block;
  }
}
@media (min-width: 1200px) {
  .header-fixed-three__phone {
    display: flex;
    align-items: center;
  }
}
.header-fixed-two {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  box-shadow: var(--shadow-header);
  opacity: 0;
  background: linear-gradient(180deg, hsla(var(--ah), var(--as), calc(var(--al) - 8%), 0.3) 0, hsla(var(--bh), var(--bs), var(--bl), 0) 100%);
  background-color: hsla(var(--ah), var(--as), calc(var(--al) + 2%), 0.8);
  backdrop-filter: blur(10px);
  transform: translateY(-50px);
  transition: transform 0.15s ease, opacity 0.25s ease;
  pointer-events: none;
  z-index: 150;
}
.header-fixed-two.is-fixed {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.header-fixed-two__top {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  padding-top: var(--gap-small);
  padding-bottom: var(--gap-small);
  margin: 0 auto;
  box-sizing: border-box;
}
.header-fixed-two__top > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-fixed-two__top > :first-child {
  margin-right: calc(var(--gap) * 2);
}
.header-fixed-two__buttons {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: auto;
}
.header-fixed-two__buttons > :not(:last-child) {
  margin-right: var(--gap);
}
.header-fixed-two__button {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.header-fixed-two__button > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: pointer;
}
.header-fixed-two__button .icon-compare__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.header-fixed-two__counter {
  position: absolute;
  right: -8px;
  top: -8px;
  display: none;
  align-items: center;
  justify-content: center;
  height: 17px;
  min-width: 17px;
  padding: 0 5px;
  box-sizing: border-box;
  background-color: hsl(var(--sh), var(--ss), var(--sl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 12px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  word-break: keep-all;
}
.header-fixed-two__counter.is-active {
  display: flex;
}
.header-fixed-two__cart {
  position: relative;
}
.header-fixed-two__cart-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  white-space: nowrap;
}
.header-fixed-two__cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--gap-small);
}
.header-fixed-two__cart-icon > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-fixed-two__phone-wrapper {
  display: flex;
  align-items: center;
  max-width: 350px;
  padding-left: 15px;
  box-sizing: border-box;
  border-radius: 30px;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.header-fixed-two__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-fixed-two__phone-icon svg {
  width: 18px;
  height: 18px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 30%));
}
.header-fixed-two__phone-link {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  font-size: 0.9em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.header-fixed-two__phone-text {
  font-size: 14px;
  line-height: 1.2em;
  opacity: 0.7;
}
.header-fixed-two__phone-number {
  font-size: 15px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .header-fixed-two {
    display: block;
  }
}
@media (min-width: 1100px) {
  .header-fixed-two .is-desktop {
    display: block;
  }
  .header-fixed-two .is-mobile {
    display: none;
  }
}
.header-four {
  display: none;
}
.header-four .is-desktop {
  display: none;
}
.header-four .is-mobile {
  display: block;
}
.header-four__top {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  padding-top: var(--gap-small);
  padding-bottom: var(--gap-small);
  margin: 0 auto;
  box-sizing: border-box;
}
.header-four__top > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-four__slogan {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-width: 220px;
  padding-left: var(--gap-extended);
  border-left: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  font-size: 14px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), var(--tl));
  opacity: 0.75;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.header-four__slogan.is-overlay {
  border-color: hsla(var(--bh), var(--bs), var(--bl), 0.3);
  color: hsl(var(--bh), var(--bs), var(--bl));
  opacity: 1;
}
.header-four__info {
  position: relative;
  display: flex;
  align-items: center;
}
.header-four__info:hover .header-four__info-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-four__info-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.header-four__info-icon svg {
  width: 18px;
  height: 18px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 30%));
}
.header-four__info-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap);
}
.header-four__info-content {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  width: 400px;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.header-four__info-content::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.header-four__info-content::before {
  top: -5px;
  right: 2.5rem;
}
@media (min-width: 992px) {
  .header-four {
    display: block;
  }
}
@media (min-width: 1100px) {
  .header-four .is-desktop {
    display: block;
  }
  .header-four .is-mobile {
    display: none;
  }
}
.header-mobile-one {
  position: relative;
  padding: 5px 0;
  z-index: 15;
}
.header-mobile-one__top {
  display: flex;
  align-items: center;
}
.header-mobile-one__top > :not(:last-child) {
  margin-right: 1rem;
}
.header-mobile-one__logo {
  flex-grow: 1;
  display: flex;
  height: 50px;
}
.header-mobile-one__search-center {
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  box-sizing: border-box;
}
.header-mobile-one__search-title {
  font-size: var(--name-font-size);
  font-weight: 600;
}
.header-mobile-one__burger,
.header-mobile-one__phone-button,
.header-mobile-one__search-button {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  padding: 5px;
}
.header-mobile-one__burger {
  display: block;
  height: 14px;
  width: 20px;
  margin-right: var(--gap-small);
  border-radius: 1px;
  cursor: pointer;
  flex-shrink: 0;
  user-select: none;
  margin-right: unset;
  color: hsl(var(--ah), var(--as), calc(var(--al) - 40%));
}
.header-mobile-one__burger:before,
.header-mobile-one__burger:after {
  content: '';
  display: block;
  height: 2px;
  border-radius: inherit;
  background: currentColor;
  transition: filter 0.5s, transform 0.5s;
}
.header-mobile-one__burger:after {
  filter: drop-shadow(0 -6px currentColor);
  transform: translateY(10px);
}
.header-mobile-one__phone-button {
  display: block;
  text-decoration: none;
}
.header-mobile-one__phone-button .icon-phone-alter {
  display: block;
  width: 21px;
  height: 21px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 40%));
}
.header-mobile-one__search-button .icon-search {
  display: block;
  width: 17px;
  height: 17px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 40%));
}
.header-mobile-one__search {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0s ease-in-out;
  z-index: 160;
}
.header-mobile-one__search.is-active {
  opacity: 1;
  visibility: visible;
  transition-duration: 0.2s;
}
.header-mobile-one__search.is-active .header-mobile-one__search-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-mobile-one__search-content {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
  transition: 0.3s ease;
  transition-delay: 0.2s;
  z-index: 2;
}
.header-mobile-one__search-header {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 1rem;
  align-items: center;
  margin-bottom: 15px;
}
.header-mobile-one__search-close {
  position: relative;
  border: unset;
  border-radius: 50%;
  background-color: hsl(var(--ah), var(--as), var(--al));
  cursor: pointer;
  width: 26px;
  height: 26px;
}
.header-mobile-one__search-close:before,
.header-mobile-one__search-close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  background-color: hsl(var(--th), var(--ts), var(--tl));
  opacity: 0.3;
  transition: opacity 0.3s ease;
  appearance: none;
}
.header-mobile-one__search-close:before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.header-mobile-one__search-close:after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.header-mobile-one__search-close:focus::before,
.header-mobile-one__search-close:hover::before,
.header-mobile-one__search-close:focus::after,
.header-mobile-one__search-close:hover::after {
  opacity: 1;
}
.header-mobile-one__search-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dim);
  z-index: 1;
}
@media (min-width: 992px) {
  .header-mobile-one {
    display: none;
  }
}
.header-mobile-two {
  position: relative;
  padding: 5px 0;
  z-index: 15;
}
.header-mobile-two__top {
  display: flex;
  align-items: center;
}
.header-mobile-two__top > :not(:last-child) {
  margin-right: var(--gap-small);
}
.header-mobile-two__logo {
  flex-grow: 1;
  display: flex;
  height: 50px;
}
.header-mobile-two__burger,
.header-mobile-two__phone-button {
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  padding: 5px;
}
.header-mobile-two__burger {
  display: block;
  height: 14px;
  width: 20px;
  margin-right: var(--gap-small);
  border-radius: 1px;
  cursor: pointer;
  flex-shrink: 0;
  user-select: none;
  margin-right: unset;
  color: hsl(var(--ah), var(--as), calc(var(--al) - 40%));
}
.header-mobile-two__burger:before,
.header-mobile-two__burger:after {
  content: '';
  display: block;
  height: 2px;
  border-radius: inherit;
  background: currentColor;
  transition: filter 0.5s, transform 0.5s;
}
.header-mobile-two__burger:after {
  filter: drop-shadow(0 -6px currentColor);
  transform: translateY(10px);
}
.header-mobile-two__phone-button {
  display: block;
  text-decoration: none;
}
.header-mobile-two__phone-button .icon-telegram-alter,
.header-mobile-two__phone-button .icon-whatsapp-alter,
.header-mobile-two__phone-button .icon-phone-alter {
  display: block;
  width: 21px;
  height: 21px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 40%));
}
@media (min-width: 992px) {
  .header-mobile-two {
    display: none;
  }
}
.header-nine {
  display: none;
}
.header-nine .is-desktop {
  display: none;
}
.header-nine .is-mobile {
  display: block;
}
.header-nine__top {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  padding-top: var(--gap-small);
  padding-bottom: var(--gap-small);
  margin: 0 auto;
  box-sizing: border-box;
}
.header-nine__top > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-nine__slogan {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-width: 220px;
  padding-left: var(--gap-extended);
  border-left: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  font-size: 14px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), var(--tl));
  opacity: 0.75;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.header-nine__slogan.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-color: hsla(var(--bh), var(--bs), var(--bl), 0.3);
  opacity: 1;
}
.header-nine__phone-wrapper {
  display: flex;
  align-items: center;
  max-width: 350px;
  padding-left: 15px;
  box-sizing: border-box;
  border-radius: 30px;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.header-nine__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.header-nine__phone-icon svg {
  width: 18px;
  height: 18px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 30%));
}
.header-nine__phone-link {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  font-size: 0.9em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.header-nine__phone-link.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-nine__phone-text {
  font-size: 14px;
  line-height: 1.2em;
  opacity: 0.7;
}
.header-nine__phone-number {
  font-size: 15px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .header-nine {
    display: block;
  }
}
@media (min-width: 1100px) {
  .header-nine .is-desktop {
    display: block;
  }
  .header-nine .is-mobile {
    display: none;
  }
}
.header-one {
  display: none;
}
.header-one .is-desktop {
  display: none;
}
.header-one .is-mobile {
  display: block;
}
.header-one__top {
  display: flex;
  align-items: center;
  max-width: var(--frame-width);
  padding-top: 8px;
  padding-bottom: 8px;
  margin: 0 auto;
  box-sizing: border-box;
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-one__top > :not(:first-child) {
  margin-left: var(--gap);
}
.header-one__featured {
  font-size: 0.95em;
}
.header-one__links {
  margin-right: auto;
}
.header-one__links > li > a {
  font-size: 0.95em;
}
.header-one__phone {
  display: block;
  text-decoration: none;
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-size: 0.95em;
  white-space: nowrap;
}
.header-one__info {
  position: relative;
  display: flex;
  align-items: center;
}
.header-one__info .icon-info {
  display: block;
  fill: hsl(var(--bh), var(--bs), var(--bl));
  opacity: 0.7;
}
.header-one__info:hover .header-one__info-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-one__info-text {
  display: none;
  margin-left: 5px;
  font-size: 0.95em;
  user-select: none;
}
.header-one__info-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap);
}
.header-one__info-content {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  width: 400px;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.header-one__info-content::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.header-one__info-content::before {
  top: -5px;
  right: 2rem;
}
.header-one__bottom {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  padding-top: var(--gap-small);
  padding-bottom: var(--gap-small);
  margin: 0 auto;
  box-sizing: border-box;
}
.header-one__bottom > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-one__bottom > :first-child {
  margin-right: calc(var(--gap) * 2);
}
.header-one__buttons {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: auto;
}
.header-one__buttons > :not(:last-child) {
  margin-right: var(--gap);
}
.header-one__button {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.header-one__button > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: pointer;
}
.header-one__button .icon-compare__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.header-one__button.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-one__button.is-overlay > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.header-one__counter {
  position: absolute;
  right: -8px;
  top: -8px;
  display: none;
  align-items: center;
  justify-content: center;
  height: 17px;
  min-width: 17px;
  padding: 0 5px;
  box-sizing: border-box;
  background-color: hsl(var(--sh), var(--ss), var(--sl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 12px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  word-break: keep-all;
}
.header-one__counter.is-active {
  display: flex;
}
.header-one__cart {
  position: relative;
}
.header-one__cart:hover .header-one__cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-one__cart-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  white-space: nowrap;
}
.header-one__cart-link.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-one__cart-link.is-overlay .header-one__cart-icon > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.header-one__cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--gap-small);
}
.header-one__cart-icon > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-one__cart-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap);
}
.header-one__cart-content {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  width: 400px;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.header-one__cart-content::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.header-one__cart-content::before {
  top: -5px;
  right: 2rem;
}
.header-one__search {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0s ease-in-out;
  z-index: 160;
}
.header-one__search.is-active {
  opacity: 1;
  visibility: visible;
  transition-duration: 0.2s;
}
.header-one__search.is-active .header-one__search-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-one__search-content {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
  transition: 0.3s ease;
  transition-delay: 0.2s;
  z-index: 2;
}
.header-one__search-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 2rem;
  align-items: center;
  padding-left: calc(36px + 2rem);
}
.header-one__search-close {
  position: relative;
  border: unset;
  border-radius: 50%;
  background-color: hsl(var(--ah), var(--as), var(--al));
  cursor: pointer;
  width: 36px;
  height: 36px;
}
.header-one__search-close:before,
.header-one__search-close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: hsl(var(--th), var(--ts), var(--tl));
  opacity: 0.3;
  transition: opacity 0.3s ease;
  appearance: none;
}
.header-one__search-close:before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.header-one__search-close:after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.header-one__search-close:focus::before,
.header-one__search-close:hover::before,
.header-one__search-close:focus::after,
.header-one__search-close:hover::after {
  opacity: 1;
}
.header-one__search-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dim);
  z-index: 1;
}
.header-one__phone-wrapper {
  display: flex;
  align-items: center;
  max-width: 350px;
  padding-left: 15px;
  box-sizing: border-box;
  border-radius: 30px;
  text-decoration: none;
}
.header-one__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.header-one__phone-icon svg {
  width: 18px;
  height: 18px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 30%));
}
.header-one__phone-link {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  font-size: 0.9em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.header-one__phone-link.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-one__phone-text {
  font-size: 14px;
  line-height: 1.2em;
  opacity: 0.75;
}
.header-one__phone-number {
  font-size: 15px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .header-one {
    display: block;
  }
}
@media (min-width: 1100px) {
  .header-one .is-desktop {
    display: block;
  }
  .header-one .is-mobile {
    display: none;
  }
  .header-one__info-text {
    display: block;
  }
}
.header-seven {
  display: none;
}
.header-seven__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  padding-top: var(--gap-small);
  padding-bottom: var(--gap-small);
  margin: 0 auto;
  box-sizing: border-box;
}
.header-seven__wrapper > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-seven__wrapper > :first-child {
  margin-right: calc(var(--gap) * 2);
}
.header-seven__buttons {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: auto;
}
.header-seven__buttons > :not(:last-child) {
  margin-right: var(--gap);
}
.header-seven__button {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.header-seven__button > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: pointer;
}
.header-seven__button .icon-compare__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.header-seven__button.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-seven__button.is-overlay > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.header-seven__counter {
  position: absolute;
  right: -8px;
  top: -8px;
  display: none;
  align-items: center;
  justify-content: center;
  height: 17px;
  min-width: 17px;
  padding: 0 5px;
  box-sizing: border-box;
  background-color: hsl(var(--sh), var(--ss), var(--sl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 12px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  word-break: keep-all;
}
.header-seven__counter.is-active {
  display: flex;
}
.header-seven__cart {
  position: relative;
}
.header-seven__cart:hover .header-seven__cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-seven__cart-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  white-space: nowrap;
}
.header-seven__cart-link.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-seven__cart-link.is-overlay .header-seven__cart-icon > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.header-seven__cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--gap-small);
}
.header-seven__cart-icon > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-seven__cart-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap);
}
.header-seven__cart-content {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  width: 400px;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.header-seven__cart-content::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.header-seven__cart-content::before {
  top: -5px;
  right: 2rem;
}
.header-seven__search {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: 0s ease-in-out;
  z-index: 160;
}
.header-seven__search.is-active {
  opacity: 1;
  visibility: visible;
  transition-duration: 0.2s;
}
.header-seven__search.is-active .header-seven__search-content {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-seven__search-content {
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-30px);
  transition: 0.3s ease;
  transition-delay: 0.2s;
  z-index: 2;
}
.header-seven__search-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 2rem;
  align-items: center;
  padding-left: calc(36px + 2rem);
}
.header-seven__search-close {
  position: relative;
  border: unset;
  border-radius: 50%;
  background-color: hsl(var(--ah), var(--as), var(--al));
  cursor: pointer;
  width: 36px;
  height: 36px;
}
.header-seven__search-close:before,
.header-seven__search-close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  background-color: hsl(var(--th), var(--ts), var(--tl));
  opacity: 0.3;
  transition: opacity 0.3s ease;
  appearance: none;
}
.header-seven__search-close:before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.header-seven__search-close:after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.header-seven__search-close:focus::before,
.header-seven__search-close:hover::before,
.header-seven__search-close:focus::after,
.header-seven__search-close:hover::after {
  opacity: 1;
}
.header-seven__search-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dim);
  z-index: 1;
}
.header-seven__phone-wrapper {
  display: flex;
  align-items: center;
  max-width: 350px;
  padding-left: 15px;
  box-sizing: border-box;
  border-radius: 30px;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.header-seven__phone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.header-seven__phone-icon svg {
  width: 18px;
  height: 18px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 30%));
}
.header-seven__phone-link {
  display: flex;
  flex-direction: column;
  padding-left: 10px;
  font-size: 0.9em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.header-seven__phone-link.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-seven__phone-text {
  font-size: 14px;
  line-height: 1.2em;
  opacity: 0.7;
}
.header-seven__phone-number {
  font-size: 15px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .header-seven {
    display: block;
  }
}
@media (min-width: 1100px) {
  .header-seven .is-desktop {
    display: block;
  }
  .header-seven .is-mobile {
    display: none;
  }
  .header-seven__info-text {
    display: block;
  }
}
.header-six {
  display: none;
}
.header-six.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-six .is-desktop {
  display: none;
}
.header-six .is-mobile {
  display: block;
}
.header-six__top {
  display: flex;
  align-items: center;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-top: 15px;
  box-sizing: border-box;
}
.header-six__top > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-six__phone-link {
  flex-shrink: 0;
  display: none;
  flex-direction: column;
  max-width: 350px;
  padding-left: var(--gap-extended);
  box-sizing: border-box;
  border-left: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  font-size: 0.9em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.header-six__phone-link.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-color: hsla(var(--bh), var(--bs), var(--bl), 0.3);
}
.header-six__phone-text {
  font-size: 14px;
  line-height: 1.2em;
  opacity: 0.7;
}
.header-six__phone-number {
  font-size: 15px;
  font-weight: 600;
}
.header-six__middle-wrapper {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.header-six__middle-wrapper > :not(:last-child) {
  margin-right: 1rem;
}
.header-six__search {
  flex-grow: 1;
}
.header-six__buttons {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: auto;
}
.header-six__buttons > :not(:last-child) {
  margin-right: var(--gap);
}
.header-six__mobile-button {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.header-six__mobile-button > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: pointer;
}
.header-six__mobile-button .icon-compare__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.header-six__mobile-button.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-six__mobile-button.is-overlay > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.header-six__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-six__button.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-six__button.is-overlay .header-six__button-icon > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.header-six__button-icon {
  position: relative;
}
.header-six__button-icon > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-six__button-icon .icon-compare__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.header-six__counter {
  position: absolute;
  right: -8px;
  top: -8px;
  display: none;
  align-items: center;
  justify-content: center;
  height: 17px;
  min-width: 17px;
  padding: 0 5px;
  box-sizing: border-box;
  background-color: hsl(var(--sh), var(--ss), var(--sl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 12px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  word-break: keep-all;
}
.header-six__counter.is-active {
  display: flex;
}
.header-six__button-text {
  display: block;
  margin-top: 2px;
  font-size: 0.95em;
  text-align: center;
}
.header-six__cart {
  position: relative;
}
.header-six__cart:hover .header-six__cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-six__cart-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap);
}
.header-six__cart-content {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  width: 400px;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.header-six__cart-content::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.header-six__cart-content::before {
  top: -5px;
  right: 2rem;
}
.header-six__bottom {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  padding-top: 15px;
  padding-bottom: 20px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header-six__bottom > :not(:last-child) {
  margin-right: var(--gap-extended);
}
@media (min-width: 992px) {
  .header-six {
    display: block;
  }
}
@media (min-width: 1200px) {
  .header-six__phone-link {
    display: flex;
  }
}
@media (min-width: 1400px) {
  .header-six .is-desktop {
    display: flex;
  }
  .header-six .is-mobile {
    display: none;
  }
}
.header-ten {
  display: none;
}
.header-ten .is-desktop {
  display: none;
}
.header-ten .is-mobile {
  display: block;
}
.header-ten__top {
  display: flex;
  align-items: center;
  max-width: var(--frame-width);
  padding-top: 8px;
  padding-bottom: 8px;
  margin: 0 auto;
  box-sizing: border-box;
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-ten__top > :not(:first-child) {
  margin-left: var(--gap);
}
.header-ten__featured {
  font-size: 0.95em;
}
.header-ten__links {
  margin-right: auto;
}
.header-ten__links > li > a {
  font-size: 0.95em;
}
.header-ten__phone {
  display: block;
  text-decoration: none;
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-size: 0.95em;
  white-space: nowrap;
}
.header-ten__info {
  position: relative;
  display: flex;
  align-items: center;
}
.header-ten__info .icon-info {
  display: block;
  fill: hsl(var(--bh), var(--bs), var(--bl));
  opacity: 0.7;
}
.header-ten__info:hover .header-ten__info-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-ten__info-text {
  display: none;
  margin-left: 5px;
  font-size: 0.95em;
  user-select: none;
}
.header-ten__info-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap);
}
.header-ten__info-content {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  width: 400px;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.header-ten__info-content::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.header-ten__info-content::before {
  top: -5px;
  right: 2rem;
}
.header-ten__bottom {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  padding-top: var(--gap-small);
  padding-bottom: var(--gap-small);
  margin: 0 auto;
  box-sizing: border-box;
}
.header-ten__bottom > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-ten__bottom > :first-child {
  margin-right: calc(var(--gap) * 2);
}
.header-ten__slogan {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-width: 220px;
  padding-left: var(--gap-extended);
  border-left: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  font-size: 14px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), var(--tl));
  opacity: 0.75;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.header-ten__slogan.is-overlay {
  border-color: hsla(var(--bh), var(--bs), var(--bl), 0.3);
  color: hsl(var(--bh), var(--bs), var(--bl));
  opacity: 1;
}
@media (min-width: 992px) {
  .header-ten {
    display: block;
  }
}
@media (min-width: 1100px) {
  .header-ten .is-desktop {
    display: block;
  }
  .header-ten .is-mobile {
    display: none;
  }
  .header-ten__info-text {
    display: block;
  }
}
.header-three {
  display: none;
}
.header-three .is-desktop {
  display: none;
}
.header-three .is-mobile {
  display: block;
}
.header-three__top {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  padding-top: var(--gap-small);
  padding-bottom: var(--gap-small);
  margin: 0 auto;
  box-sizing: border-box;
}
.header-three__top > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-three__top > :first-child {
  margin-right: calc(var(--gap) * 2);
}
.header-three__phone {
  display: none;
  margin-left: auto;
  border-radius: var(--border-radius-small);
  text-decoration: none;
  text-align: right;
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), var(--tl));
  white-space: nowrap;
}
.header-three__phone > .icon-phone-alter {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: var(--gap-small);
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-three__phone > .icon-more {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  margin-top: 2px;
  fill: hsl(0, 0%, 66%);
}
.header-three__phone.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-three__phone.is-overlay > .icon-phone-alter {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.header-three__phone.is-overlay > .icon-more {
  fill: hsla(var(--bh), var(--bs), var(--bl), 0.5);
}
.header-three__info {
  position: relative;
}
.header-three__info .icon-info {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
  cursor: pointer;
}
.header-three__info:hover .header-three__info-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-three__info-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap);
}
.header-three__info-content {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  width: 400px;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.header-three__info-content::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.header-three__info-content::before {
  top: -5px;
  right: 2rem;
}
.header-three__buttons {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: auto;
}
.header-three__buttons > :not(:last-child) {
  margin-right: var(--gap);
}
.header-three__button {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.header-three__button > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: pointer;
}
.header-three__button .icon-compare__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.header-three__button.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-three__button.is-overlay > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.header-three__counter {
  position: absolute;
  right: -8px;
  top: -8px;
  display: none;
  align-items: center;
  justify-content: center;
  height: 17px;
  min-width: 17px;
  padding: 0 5px;
  box-sizing: border-box;
  background-color: hsl(var(--sh), var(--ss), var(--sl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 12px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  word-break: keep-all;
}
.header-three__counter.is-active {
  display: flex;
}
.header-three__cart {
  position: relative;
}
.header-three__cart:hover .header-three__cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-three__cart-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  white-space: nowrap;
}
.header-three__cart-link.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-three__cart-link.is-overlay .header-three__cart-icon > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.header-three__cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: var(--gap-small);
}
.header-three__cart-icon > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-three__cart-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap);
}
.header-three__cart-content {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  width: 400px;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.header-three__cart-content::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.header-three__cart-content::before {
  top: -5px;
  right: 2rem;
}
@media (min-width: 992px) {
  .header-three {
    display: block;
  }
}
@media (min-width: 1100px) {
  .header-three .is-desktop {
    display: block;
  }
  .header-three .is-mobile {
    display: none;
  }
}
@media (min-width: 1200px) {
  .header-three__phone {
    display: flex;
    align-items: center;
  }
}
.header-twelve {
  display: none;
}
.header-twelve.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-twelve .is-desktop {
  display: none;
}
.header-twelve .is-mobile {
  display: block;
}
.header-twelve__top {
  display: flex;
  align-items: center;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-top: 15px;
  box-sizing: border-box;
}
.header-twelve__top > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-twelve__middle {
  display: flex;
  align-items: center;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
  box-sizing: border-box;
}
.header-twelve__middle > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-twelve__phone-link {
  flex-shrink: 0;
  display: none;
  flex-direction: column;
  max-width: 350px;
  padding-left: var(--gap-extended);
  box-sizing: border-box;
  border-left: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  font-size: 0.9em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.header-twelve__phone-link.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-color: hsla(var(--bh), var(--bs), var(--bl), 0.3);
}
.header-twelve__phone-text {
  font-size: 14px;
  line-height: 1.2em;
  opacity: 0.7;
}
.header-twelve__phone-number {
  font-size: 15px;
  font-weight: 600;
}
.header-twelve__middle-wrapper {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.header-twelve__middle-wrapper > :not(:last-child) {
  margin-right: 1rem;
}
.header-twelve__search {
  flex-grow: 1;
}
.header-twelve__buttons {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: auto;
}
.header-twelve__buttons > :not(:last-child) {
  margin-right: var(--gap);
}
.header-twelve__mobile-button {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.header-twelve__mobile-button > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: pointer;
}
.header-twelve__mobile-button .icon-compare__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.header-twelve__mobile-button.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-twelve__mobile-button.is-overlay > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.header-twelve__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-twelve__button.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-twelve__button.is-overlay .header-twelve__button-icon > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.header-twelve__button-icon {
  position: relative;
}
.header-twelve__button-icon > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-twelve__button-icon .icon-compare__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.header-twelve__counter {
  position: absolute;
  right: -8px;
  top: -8px;
  display: none;
  align-items: center;
  justify-content: center;
  height: 17px;
  min-width: 17px;
  padding: 0 5px;
  box-sizing: border-box;
  background-color: hsl(var(--sh), var(--ss), var(--sl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 12px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  word-break: keep-all;
}
.header-twelve__counter.is-active {
  display: flex;
}
.header-twelve__button-text {
  display: block;
  margin-top: 2px;
  font-size: 0.95em;
  text-align: center;
}
.header-twelve__cart {
  position: relative;
}
.header-twelve__cart:hover .header-twelve__cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-twelve__cart-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap);
}
.header-twelve__cart-content {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  width: 400px;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.header-twelve__cart-content::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.header-twelve__cart-content::before {
  top: -5px;
  right: 2rem;
}
.header-twelve__info {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header-twelve__info .icon-more {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  margin-top: 2px;
  fill: hsl(0, 0%, 66%);
}
.header-twelve__info:hover .header-twelve__info-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-twelve__info.is-overlay .icon-more {
  fill: hsla(var(--bh), var(--bs), var(--bl), 0.5);
}
.header-twelve__info-text {
  font-size: 0.95em;
  user-select: none;
}
.header-twelve__info-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap);
}
.header-twelve__info-content {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  width: 400px;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.header-twelve__info-content::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.header-twelve__info-content::before {
  top: -5px;
  right: 1.5rem;
}
.header-twelve__frame {
  border-top: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.header-twelve__frame.is-overlay {
  border-color: hsla(var(--bh), var(--bs), var(--bl), 0.3);
}
.header-twelve__bottom {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header-twelve__bottom > :not(:last-child) {
  margin-right: var(--gap-extended);
}
@media (min-width: 992px) {
  .header-twelve {
    display: block;
  }
}
@media (min-width: 1100px) {
  .header-twelve .is-desktop {
    display: flex;
  }
  .header-twelve .is-mobile {
    display: none;
  }
}
@media (min-width: 1200px) {
  .header-twelve__phone-link {
    display: flex;
  }
}
.header-two {
  display: none;
}
.header-two.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-two .is-desktop {
  display: none;
}
.header-two .is-mobile {
  display: block;
}
.header-two__top {
  display: flex;
  align-items: center;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-top: 15px;
  box-sizing: border-box;
}
.header-two__top > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-two__top-wrapper {
  display: flex;
  align-items: center;
}
.header-two__top-wrapper > :not(:last-child) {
  margin-right: var(--gap);
}
.header-two__featured {
  font-size: 0.95em;
}
.header-two__links {
  margin-right: auto;
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-two__links.is-overlay {
  color: hsla(var(--bh), var(--bs), var(--bl), 0.75);
}
.header-two__info {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.header-two__info .icon-more {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  margin-top: 2px;
  fill: hsl(0, 0%, 66%);
}
.header-two__info:hover .header-two__info-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-two__info.is-overlay .icon-more {
  fill: hsla(var(--bh), var(--bs), var(--bl), 0.5);
}
.header-two__info-text {
  font-size: 0.95em;
  user-select: none;
}
.header-two__info-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap);
}
.header-two__info-content {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  width: 400px;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.header-two__info-content::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.header-two__info-content::before {
  top: -5px;
  right: 1.5rem;
}
.header-two__phone-link {
  text-decoration: none;
  color: currentColor;
  font-size: 15px;
  font-weight: 600;
}
.header-two__profile {
  font-size: 0.95em;
  color: currentColor;
  text-decoration: none;
}
.header-two__middle {
  display: flex;
  align-items: center;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-top: 15px;
  padding-bottom: 15px;
  box-sizing: border-box;
}
.header-two__middle > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-two__slogan {
  display: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-width: 180px;
  padding-left: var(--gap-extended);
  border-left: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  font-size: 14px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), var(--tl));
  opacity: 0.75;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.header-two__slogan.is-overlay {
  border-color: hsla(var(--bh), var(--bs), var(--bl), 0.3);
  color: hsl(var(--bh), var(--bs), var(--bl));
  opacity: 1;
}
.header-two__middle-wrapper {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.header-two__middle-wrapper > :not(:last-child) {
  margin-right: 1rem;
}
.header-two__search {
  flex-grow: 1;
}
.header-two__buttons {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: auto;
}
.header-two__buttons > :not(:last-child) {
  margin-right: var(--gap);
}
.header-two__mobile-button {
  position: relative;
  text-decoration: none;
  white-space: nowrap;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.header-two__mobile-button > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: pointer;
}
.header-two__mobile-button .icon-compare__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.header-two__mobile-button.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-two__mobile-button.is-overlay > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.header-two__button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-two__button.is-overlay {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.header-two__button.is-overlay .header-two__button-icon > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.header-two__button-icon {
  position: relative;
}
.header-two__button-icon > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-two__button-icon .icon-compare__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.header-two__counter {
  position: absolute;
  right: -8px;
  top: -8px;
  display: none;
  align-items: center;
  justify-content: center;
  height: 17px;
  min-width: 17px;
  padding: 0 5px;
  box-sizing: border-box;
  background-color: hsl(var(--sh), var(--ss), var(--sl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 12px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  word-break: keep-all;
}
.header-two__counter.is-active {
  display: flex;
}
.header-two__button-text {
  display: block;
  margin-top: 2px;
  font-size: 0.95em;
  text-align: center;
}
.header-two__cart {
  position: relative;
}
.header-two__cart:hover .header-two__cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.header-two__cart-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap);
}
.header-two__cart-content {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  width: 400px;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.header-two__cart-content::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.header-two__cart-content::before {
  top: -5px;
  right: 2rem;
}
.header-two__bottom {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  padding-bottom: 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header-two__bottom > :not(:last-child) {
  margin-right: var(--gap-extended);
}
@media (min-width: 992px) {
  .header-two {
    display: block;
  }
}
@media (min-width: 1100px) {
  .header-two .is-desktop {
    display: flex;
  }
  .header-two .is-mobile {
    display: none;
  }
}
@media (min-width: 1400px) {
  .header-two__slogan {
    display: block;
    display: -webkit-box;
  }
}
.item-one {
  display: block;
  max-width: 800px;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
  transform: translateY(0);
  box-shadow: var(--shadow-moderate);
  transition: 0.15s ease-out;
}
.item-one:hover {
  box-shadow: var(--shadow-high);
  transform: translateY(-2px);
}
.item-one--gap {
  margin-bottom: var(--gap);
}
.item-one__header {
  display: flex;
  justify-content: space-between;
}
.item-one__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: var(--gap-small);
  flex-shrink: 0;
}
.item-one__icon .icon-set {
  width: 44px;
  height: 44px;
  fill: hsl(var(--sh), var(--ss), var(--sl));
}
.item-one__icon > img {
  display: block;
  max-width: 60px;
  height: auto;
}
.item-one__name {
  display: block;
  margin-top: auto;
  font-weight: 600;
  font-size: var(--name-font-size);
  line-height: 1.45em;
}
.item-one__text {
  display: block;
  margin-top: 5px;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  line-height: 1.45em;
  font-size: 0.95em;
}
@media (min-width: 768px) {
  .item-one {
    padding: 1.5rem;
  }
}
.item-two {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 1rem;
  align-items: flex-start;
  max-width: 800px;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
  transform: translateY(0);
  box-shadow: var(--shadow-moderate);
  transition: 0.15s ease-out;
}
.item-two:hover {
  box-shadow: var(--shadow-high);
  transform: translateY(-2px);
}
.item-two--gap {
  margin-bottom: var(--gap);
}
.item-two__name {
  display: block;
  font-size: var(--name-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.item-two__text {
  display: block;
  margin-top: 2px;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  line-height: 1.45em;
  font-size: 0.95em;
}
.item-two__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.item-two__icon .icon-set {
  width: 44px;
  height: 44px;
  fill: hsl(var(--sh), var(--ss), var(--sl));
}
.item-two__icon > img {
  display: block;
  max-width: 60px;
  height: auto;
}
@media (min-width: 768px) {
  .item-two {
    grid-gap: 1.5rem;
    padding: 1.5rem;
  }
}
.link-five {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.3s ease;
  cursor: pointer;
}
.link-five.is-primary {
  color: inherit;
}
.link-five.is-primary:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.link-five.is-secondary {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.link-five.is-secondary:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.link-five--gap {
  margin-bottom: var(--gap);
}
.link-five__text {
  position: relative;
  line-height: 1.45em;
}
.link-five__text::before {
  content: '';
  position: absolute;
  top: 105%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  box-sizing: border-box;
  background-color: hsl(var(--th), var(--ts), var(--tl));
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: right center;
}
.link-five:hover .link-one__text::before {
  transform: scaleX(1);
  transform-origin: left center;
}
.link-five__icon {
  display: inline-block;
  padding-left: 10px;
}
.link-five .icon-link-out {
  position: relative;
  display: block;
  width: 16px;
  height: 16px;
  fill: currentColor;
}
.link-four {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 800px;
  padding: 1.6rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  text-decoration: none;
}
.link-four.is-primary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  color: hsl(var(--th), var(--ts), var(--tl));
}
.link-four.is-primary .link-four__desc {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.link-four.is-primary .icon-arrow-top-right {
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.link-four.is-secondary {
  background-color: hsl(var(--ih), var(--is), calc(var(--il) + 8%));
  border: 1px solid hsla(var(--bh), var(--bs), var(--bl), 0.15);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.link-four.is-secondary .link-four__desc {
  opacity: 0.5;
}
.link-four.is-secondary .icon-arrow-top-right {
  fill: hsl(var(--bh), var(--bs), var(--bl));
  opacity: 0.5;
}
.link-four--gap {
  margin-bottom: var(--gap);
}
.link-four__desc {
  margin-bottom: var(--gap-small);
  font-size: 0.95em;
  line-height: 1.45em;
  letter-spacing: 0.03em;
}
.link-four__text {
  font-size: var(--name-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.link-four .icon-arrow-top-right {
  display: block;
  width: 25px;
  height: 25px;
  margin-top: auto;
  margin-left: auto;
  padding-top: var(--gap);
}
@media (min-width: 768px) {
  .link-four__desc {
    font-size: 1em;
  }
}
.link-one {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.link-one.is-primary {
  color: inherit;
}
.link-one.is-primary .link-one__text::before {
  background: currentColor;
}
.link-one.is-primary .icon-arrow {
  fill: currentColor;
}
.link-one.is-secondary {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.link-one.is-secondary .link-one__text::before {
  background: hsl(var(--bh), var(--bs), var(--bl));
}
.link-one.is-secondary .icon-arrow {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.link-one--gap {
  margin-bottom: var(--gap);
}
.link-one__text {
  position: relative;
}
.link-one__text::before {
  content: '';
  position: absolute;
  top: 105%;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  box-sizing: border-box;
  background-color: hsl(var(--th), var(--ts), var(--tl));
  transform: scaleX(0);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform-origin: right center;
}
.link-one:hover .link-one__text::before {
  transform: scaleX(1);
  transform-origin: left center;
}
.link-one__icon {
  display: inline-block;
  padding-left: 10px;
  transition: padding 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.link-one:hover .link-one__icon {
  padding-left: 15px;
}
.link-one .icon-arrow {
  position: relative;
  display: block;
  width: 11px;
  height: 11px;
  transform: rotate(-90deg);
}
.link-three {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  line-height: 1.45em;
  transition: color 0.3s ease;
  cursor: pointer;
}
.link-three.is-primary {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.link-three.is-secondary {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.link-three--gap {
  margin-bottom: var(--gap);
}
.link-three::after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: -10px;
  transform: scale3d(0, 0, 0);
  width: calc(100% + 20px);
  height: 100%;
  border-radius: var(--border-radius-small);
  z-index: 1;
}
.link-three:hover::after {
  animation: highlight 0.8s both;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.link-three:hover {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.link-three__text {
  position: relative;
  z-index: 2;
}
.link-two {
  position: relative;
  display: block;
  max-width: 800px;
  padding: 1rem;
  padding-right: calc(1rem + 25px + 1rem);
  box-sizing: border-box;
  text-decoration: none;
  border-radius: var(--border-radius-normal);
  transform: translateY(0);
  box-shadow: var(--shadow-moderate);
  transition: 0.15s ease-out;
}
.link-two:hover {
  box-shadow: var(--shadow-high);
  transform: translateY(-2px);
}
.link-two.is-primary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
}
.link-two.is-primary .icon-arrow-top-right {
  fill: hsl(var(--th), var(--ts), var(--tl));
}
.link-two.is-primary .link-two__desc {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.link-two.is-secondary {
  background-color: hsl(var(--ih), var(--is), calc(var(--il) + 8%));
  border: 1px solid hsla(var(--bh), var(--bs), var(--bl), 0.15);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.link-two.is-secondary .icon-arrow-top-right {
  fill: hsl(var(--bh), var(--bs), var(--bl));
  opacity: 0.5;
}
.link-two.is-secondary .link-two__desc {
  opacity: 0.5;
}
.link-two--gap {
  margin-bottom: var(--gap);
}
.link-two__text {
  display: block;
  font-size: var(--name-font-size);
  font-weight: 600;
  line-height: 1.45em;
}
.link-two__desc {
  display: block;
  margin-top: 5px;
  line-height: 1.45em;
  font-size: 0.95em;
}
.link-two .icon-arrow-top-right {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  display: block;
  width: 25px;
  height: 25px;
  transform: rotate(45deg);
}
@media (min-width: 768px) {
  .link-two {
    padding: 1.5rem;
    padding-right: calc(1.5rem + 25px + 1rem);
  }
}
.list-one--gap {
  margin-bottom: var(--gap);
}
.list-one--center {
  margin-left: auto;
  margin-right: auto;
}
.list-one--right {
  text-align: right;
  margin-left: auto;
}
.list-one__item {
  font-size: 0.95em;
  line-height: 1.45em;
}
.list-one__item:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.list-one__item > svg {
  display: inline-block;
  margin-right: 10px;
  fill: hsl(var(--sh), var(--ss), var(--sl));
}
@media (min-width: 768px) {
  .list-one__item {
    font-size: 1em;
  }
}
.list-two--gap {
  margin-bottom: var(--gap);
}
.list-two__item {
  display: flex;
  font-size: 15px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.list-two__item:not(:last-of-type) {
  margin-bottom: 0.35rem;
}
.list-two__item > svg {
  flex-shrink: 0;
  display: inline-block;
  margin-top: 4px;
  margin-right: 5px;
  fill: hsl(var(--sh), var(--ss), var(--sl));
}
.loader-one {
  display: inline-grid;
  grid-template-columns: repeat(3, auto);
  text-align: center;
}
.loader-one.is-primary > div {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.loader-one.is-secondary > div {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.loader-one.is-semitone > div {
  background-color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
}
.loader-one > div {
  display: inline-block;
  border-radius: 50%;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.loader-one > div:nth-child(1) {
  animation-delay: -0.32s;
}
.loader-one > div:nth-child(2) {
  animation-delay: -0.16s;
}
.loader-one.is-tiny {
  grid-gap: 4px;
}
.loader-one.is-tiny > div {
  width: 5px;
  height: 5px;
}
.loader-one.is-small {
  grid-gap: 4px;
}
.loader-one.is-small > div {
  width: 6px;
  height: 6px;
}
.loader-one.is-medium {
  grid-gap: 6px;
}
.loader-one.is-medium > div {
  width: 8px;
  height: 8px;
}
.loader-one.is-large {
  grid-gap: 8px;
}
.loader-one.is-large > div {
  width: 12px;
  height: 12px;
}
.loader-one--gap {
  margin-bottom: var(--gap);
}
.loader-two {
  display: inline-flex;
}
.loader-two .core-spinner {
  animation: spinner-rotate 2s linear infinite;
}
.loader-two .core-spinner__path {
  stroke-linecap: round;
  stroke-width: 5px;
  animation: spinner-dash 1.5s ease-in-out infinite;
}
.loader-two.is-primary .core-spinner__path {
  stroke: hsl(var(--ph), var(--ps), var(--pl));
}
.loader-two.is-secondary .core-spinner__path {
  stroke: hsl(var(--bh), var(--bs), var(--bl));
}
.loader-two.is-semitone .core-spinner__path {
  stroke: hsl(var(--ah), var(--as), calc(var(--al) - 10%));
}
.loader-two.is-tiny .core-spinner {
  width: 20px;
  height: 20px;
}
.loader-two.is-small .core-spinner {
  width: 25px;
  height: 25px;
}
.loader-two.is-medium .core-spinner {
  width: 30px;
  height: 30px;
}
.loader-two.is-large .core-spinner {
  width: 35px;
  height: 35px;
}
.loader-two--gap {
  margin-bottom: var(--gap);
}
.logo {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.logo.is-primary .logo__svg {
  fill: hsl(var(--ih), var(--is), var(--il));
}
.logo.is-secondary .logo__svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.logo--gap {
  margin-bottom: var(--gap);
}
.logo__image {
  display: block;
  width: auto;
}
.logo__svg {
  display: block;
  width: auto;
  height: 100%;
  max-height: 60px;
}
.metric-one--gap {
  margin-bottom: var(--gap);
}
.metric-one__header {
  position: relative;
  display: inline-block;
  margin-bottom: var(--gap-small);
}
.metric-one__counter {
  font-size: 3.5em;
  line-height: 1em;
  font-weight: 700;
}
.metric-one__description {
  position: absolute;
  left: calc(100% + 20px);
  bottom: 0.5em;
  transform-origin: bottom left;
  transform: rotate(-90deg);
  white-space: nowrap;
  font-size: 0.85em;
  font-weight: 700;
}
.metric-one__text {
  font-size: 0.95em;
  line-height: 1.45em;
}
@media (min-width: 768px) {
  .metric-one__text {
    font-size: 1em;
  }
}
@media (min-width: 1200px) {
  .metric-one__counter {
    font-size: 4em;
  }
  .metric-one__description {
    font-size: 0.95em;
  }
  .metric-one__text {
    font-size: 1em;
  }
}
.mini-cart__empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  text-align: center;
}
.mini-cart__empty.is-hidden {
  display: none;
}
.mini-cart__empty-name {
  margin-bottom: var(--gap-small);
  font-size: var(--name-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.mini-cart__empty-description {
  opacity: 0.5;
}
.mini-cart__empty-image {
  display: flex;
  justify-content: center;
  margin-top: var(--gap);
}
.mini-cart__empty-image .icon-shopping-cart {
  width: 150px;
}
.mini-cart__empty-image .icon-shopping-cart .is-primary {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 20%));
}
.mini-cart__empty-image .icon-shopping-cart .is-secondary {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 40%));
}
.mini-cart__empty-image .icon-shopping-cart .is-main {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.mini-cart__not-empty {
  min-height: 200px;
}
.mini-cart__not-empty.is-hidden {
  display: none;
}
.mini-cart__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.mini-cart__title {
  font-size: var(--name-font-size);
  font-weight: 600;
}
.mini-cart__remove-all {
  padding: 2px 10px;
  border-radius: var(--border-radius-small);
  cursor: pointer;
  font-size: 0.95em;
  transition: background-color 0.2s ease-in-out;
}
.mini-cart__remove-all:hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.mini-cart__wrapper {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.mini-cart__wrapper > :not(:first-child) {
  margin-top: var(--gap-small);
}
.mini-cart__wrapper.is-overflow {
  max-height: 200px;
  padding-right: 1rem;
  overflow-y: scroll;
}
.mini-cart__wrapper::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
}
.mini-cart__wrapper::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: 4px;
  margin-left: 5px;
}
.mini-cart__item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  grid-gap: 1rem;
  align-items: start;
  min-height: 60px;
}
.mini-cart__item.is-loading {
  opacity: 0.5;
  pointer-events: none;
}
.mini-cart__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}
.mini-cart__image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--border-radius-small);
  font-size: 0;
}
.mini-cart__link {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-top: 5px;
  margin-bottom: 5px;
  text-decoration: none;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}
.mini-cart__price-wrapper {
  display: flex;
  align-items: center;
}
.mini-cart__quantity {
  display: block;
  padding: 2px 10px;
  margin-left: 1rem;
  background-color: hsl(var(--ah), var(--as), var(--al));
  border-radius: var(--border-radius-small);
  font-size: 13px;
  line-height: 1.45em;
  font-weight: 600;
}
.mini-cart__total {
  font-weight: 600;
}
.mini-cart__remove {
  position: relative;
  border: unset;
  border-radius: 50%;
  background-color: hsl(var(--ah), var(--as), var(--al));
  cursor: pointer;
  width: 26px;
  height: 26px;
  margin-top: 5px;
}
.mini-cart__remove:before,
.mini-cart__remove:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  background-color: hsl(var(--th), var(--ts), var(--tl));
  opacity: 0.3;
  transition: opacity 0.3s ease;
  appearance: none;
}
.mini-cart__remove:before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.mini-cart__remove:after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.mini-cart__remove:focus::before,
.mini-cart__remove:hover::before,
.mini-cart__remove:focus::after,
.mini-cart__remove:hover::after {
  opacity: 1;
}
.mini-cart__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.navigation-one {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  width: 0;
}
.navigation-one.is-primary .navigation-one__item > a {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.navigation-one.is-primary .navigation-one__item > a > svg {
  fill: hsl(0, 0%, 66%);
}
.navigation-one.is-secondary .navigation-one__item > a {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.navigation-one.is-secondary .navigation-one__item > a > svg {
  fill: hsla(var(--bh), var(--bs), var(--bl), 0.5);
}
.navigation-one.is-center {
  justify-content: center;
}
.navigation-one.is-right {
  justify-content: flex-end;
}
.navigation-one.is-right > :not(:first-child) {
  margin-left: var(--gap);
}
.navigation-one:not(.is-right) > :not(:last-child) {
  margin-right: var(--gap);
}
.navigation-one.is-initial {
  visibility: hidden;
  overflow: hidden;
}
.navigation-one__item {
  position: relative;
  display: inline-flex;
}
.navigation-one__item.is-hidden {
  display: none;
}
.navigation-one__item > a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.navigation-one__item > a > svg {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  margin-top: 3px;
}
.navigation-one__image {
  flex-shrink: 0;
  display: block;
  margin-right: 8px;
  border-radius: var(--border-radius-small);
}
.navigation-one__item > .navigation-one__dropdown-wrapper {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  padding-top: var(--gap);
}
.navigation-one__item > .navigation-one__dropdown-wrapper.is-bottom-start .navigation-one__dropdown::before {
  left: 2rem;
}
.navigation-one__item > .navigation-one__dropdown-wrapper.is-bottom .navigation-one__dropdown::before {
  left: 50%;
}
.navigation-one__item > .navigation-one__dropdown-wrapper.is-bottom-end .navigation-one__dropdown::before {
  right: 2rem;
}
.navigation-one__item > .navigation-one__dropdown-wrapper > .navigation-one__dropdown {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  max-width: 400px;
  min-width: 160px;
  padding: 0.5rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
}
.navigation-one__item > .navigation-one__dropdown-wrapper > .navigation-one__dropdown::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.navigation-one__item > .navigation-one__dropdown-wrapper > .navigation-one__dropdown::before {
  top: -5px;
}
.navigation-one__item:hover > .navigation-one__dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navigation-one__dropdown-item > .navigation-one__dropdown-wrapper {
  position: absolute;
  padding: 0 calc(0.5rem + 3px);
  transform: translateX(1rem);
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.1s;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
}
.navigation-one__dropdown-item > .navigation-one__dropdown-wrapper > .navigation-one__dropdown {
  max-width: 400px;
  min-width: 160px;
  padding: 0.5rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-modal);
}
.navigation-one__dropdown-item:hover > .navigation-one__dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.navigation-one__dropdown-item > a {
  display: flex;
  align-items: center;
  padding: 0.4rem 0.8rem 0.4rem 0.7rem;
  color: hsl(var(--th), var(--ts), var(--tl));
  line-height: 1.45em;
  text-decoration: none;
  transition: background-color 0.1s ease;
  border-radius: var(--border-radius-small);
}
.navigation-one__dropdown-item > a span {
  margin-right: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navigation-one__dropdown-item > a:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.navigation-one__dropdown-item > a > svg {
  flex-shrink: 0;
  display: block;
  width: 8px;
  height: 8px;
  margin-left: var(--gap);
  fill: hsl(0, 0%, 66%);
  transform: rotate(-90deg);
}
.navigation-two {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  white-space: nowrap;
  width: 0;
}
.navigation-two.is-center {
  justify-content: center;
}
.navigation-two.is-right {
  justify-content: flex-end;
}
.navigation-two.is-right > :not(:first-child) {
  margin-left: var(--gap);
}
.navigation-two:not(.is-right) > :not(:last-child) {
  margin-right: var(--gap);
}
.navigation-two.is-initial {
  visibility: hidden;
  overflow: hidden;
}
.navigation-two__item {
  position: relative;
  display: inline-block;
}
.navigation-two__item.is-hidden {
  display: none;
}
.navigation-two__item.is-active::before {
  content: '';
  position: absolute;
  top: calc(50% - 12px);
  right: -6px;
  display: block;
  width: 8px;
  height: 8px;
  background-color: hsl(var(--sh), var(--ss), var(--sl));
  border-radius: 50%;
}
.navigation-two__item > a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: currentColor;
  cursor: pointer;
}
.navigation-two__item > a > svg {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  margin-top: 3px;
  fill: hsl(0, 0%, 66%);
}
.navigation-two__dropdown-wrapper {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  padding-top: var(--gap);
}
.navigation-two__dropdown-wrapper.is-bottom-start .navigation-two__dropdown::before {
  left: 2rem;
}
.navigation-two__dropdown-wrapper.is-bottom .navigation-two__dropdown::before {
  left: 50%;
}
.navigation-two__dropdown-wrapper.is-bottom-end .navigation-two__dropdown::before {
  right: 2rem;
}
.navigation-two__item:hover > .navigation-two__dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navigation-two__dropdown {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  max-width: 400px;
  min-width: 160px;
  padding: 0.5rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
}
.navigation-two__dropdown::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.navigation-two__dropdown::before {
  top: -5px;
}
.navigation-two__dropdown-item > a {
  display: flex;
  align-items: center;
  padding: 0.4rem 1rem 0.4rem 0.9rem;
  color: hsl(var(--th), var(--ts), var(--tl));
  line-height: 1.45em;
  text-decoration: none;
  transition: background-color 0.1s ease;
  border-radius: var(--border-radius-small);
}
.navigation-two__dropdown-item > a span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navigation-two__dropdown-item > a:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.newsletter__title {
  display: block;
  margin-bottom: var(--gap-small);
  text-align: center;
  font-size: var(--subtitle-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.newsletter form.is-active {
  text-align: center;
  opacity: 0.5;
  font-size: 0.95em;
  line-height: 1.45em;
}
.newsletter__subtitle {
  display: block;
  margin-bottom: var(--gap-small);
  text-align: center;
  opacity: 0.5;
  font-size: 0.95em;
  line-height: 1.45em;
}
.newsletter__block {
  margin-bottom: 15px;
}
.newsletter__label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
}
.newsletter__label.is-required::after {
  content: ' *';
  color: hsl(0, 97%, 69%);
}
.newsletter__input {
  display: inline-block;
  min-height: 42px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.6rem 1rem;
  box-sizing: border-box;
  appearance: none;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: var(--border-radius-small);
  font-size: 0.95em;
  font-family: inherit;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.newsletter__input:hover:not(:disabled):not(:focus) {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.newsletter__input:hover:focus {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.newsletter__input:focus {
  outline: none;
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  box-shadow: 0 0 1px 1px hsl(var(--ph), var(--ps), var(--pl));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.newsletter__input:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.newsletter__input.is-error,
.newsletter__input.error:hover,
.newsletter__input.error:focus,
.newsletter__input.error,
.newsletter__input.wa-error {
  border-color: hsl(0, 97%, 69%);
  box-shadow: 0 0 1px 1px hsl(0, 97%, 69%);
}
.newsletter__input::-webkit-input-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.newsletter__input:-moz-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.newsletter__agree {
  font-size: 0.95em;
  line-height: 1.45em;
}
.newsletter__errors {
  margin-top: 5px;
}
.newsletter__errors > :not(:last-child) {
  margin-bottom: 5px;
}
.newsletter__error {
  display: block;
  font-style: normal;
  font-size: 16px;
  line-height: 1.45em;
  color: hsl(0, 97%, 69%);
  text-align: left;
}
@media (min-width: 768px) {
  .newsletter__input {
    min-height: 46px;
  }
}
.notification {
  position: fixed;
  right: 0.5rem;
  display: flex;
  flex-direction: column;
  margin-left: 0.5rem;
}
.notification.is-top {
  top: 0.5rem;
  z-index: 210;
}
.notification.is-top .notification__item {
  max-width: 370px;
}
.notification.is-bottom {
  bottom: 0.5rem;
  z-index: 200;
}
.notification.is-bottom .notification__item {
  max-width: 570px;
}
.notification.is-primary .notification__item {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
}
.notification.is-secondary .notification__item {
  background-color: hsl(0, 97%, 92%);
}
.notification__item {
  position: relative;
  display: block;
  width: 100%;
  border-radius: var(--border-radius-small);
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}
.notification__item:not(:last-of-type) {
  margin-bottom: 1rem;
}
.notification__product {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-gap: 1rem;
  align-items: center;
  padding: 1rem;
}
.notification__product-title {
  display: block;
  font-size: 0.95em;
  line-height: 1.45em;
  font-weight: 600;
}
.notification__product-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}
.notification__product-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--border-radius-small);
  font-size: 0;
}
.notification__product-name {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 0.9em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.notification__container {
  position: relative;
  padding: 1rem calc(1rem + 24px) 1rem 1rem;
}
.notification__message {
  font-size: 0.95em;
  line-height: 1.45em;
}
.notification__close {
  position: relative;
  border: unset;
  border-radius: 50%;
  background-color: hsl(var(--ah), var(--as), var(--al));
  cursor: pointer;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 26px;
  height: 26px;
}
.notification__close:before,
.notification__close:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  background-color: hsl(var(--th), var(--ts), var(--tl));
  opacity: 0.3;
  transition: opacity 0.3s ease;
  appearance: none;
}
.notification__close:before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}
.notification__close:after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.notification__close:focus::before,
.notification__close:hover::before,
.notification__close:focus::after,
.notification__close:hover::after {
  opacity: 1;
}
@media (min-width: 768px) {
  .notification {
    right: 1rem;
    margin-left: 1rem;
  }
  .notification.is-top {
    top: 1rem;
  }
  .notification.is-bottom {
    bottom: 1rem;
  }
  .notification__container {
    padding: 1rem calc(1rem + 24px) 1rem 1.5rem;
  }
  .notification__product-title {
    font-size: 1em;
  }
  .notification__product-name {
    font-size: 0.95em;
  }
}
.page-one.is-sfpro h1:not(.element):not(.element h1),
.page-one.is-sfpro h2:not(.element):not(.element h2),
.page-one.is-sfpro h3:not(.element):not(.element h3),
.page-one.is-sfpro h4:not(.element):not(.element h4),
.page-one.is-sfpro h5:not(.element):not(.element h5),
.page-one.is-sfpro h6:not(.element):not(.element h6),
.page-one.is-sfpro th:not(.element th),
.page-one.is-sfpro strong:not(.element strong),
.page-one.is-sfpro b:not(.element b) {
  font-family: 'sfpro', sans-serif;
}
.page-one.is-open-sans h1:not(.element):not(.element h1),
.page-one.is-open-sans h2:not(.element):not(.element h2),
.page-one.is-open-sans h3:not(.element):not(.element h3),
.page-one.is-open-sans h4:not(.element):not(.element h4),
.page-one.is-open-sans h5:not(.element):not(.element h5),
.page-one.is-open-sans h6:not(.element):not(.element h6),
.page-one.is-open-sans th:not(.element th),
.page-one.is-open-sans strong:not(.element strong),
.page-one.is-open-sans b:not(.element b) {
  font-family: 'open-sans', sans-serif;
}
.page-one.is-gilroy h1:not(.element):not(.element h1),
.page-one.is-gilroy h2:not(.element):not(.element h2),
.page-one.is-gilroy h3:not(.element):not(.element h3),
.page-one.is-gilroy h4:not(.element):not(.element h4),
.page-one.is-gilroy h5:not(.element):not(.element h5),
.page-one.is-gilroy h6:not(.element):not(.element h6),
.page-one.is-gilroy th:not(.element th),
.page-one.is-gilroy strong:not(.element strong),
.page-one.is-gilroy b:not(.element b) {
  font-family: 'gilroy', sans-serif;
}
.page-one.is-raleway h1:not(.element):not(.element h1),
.page-one.is-raleway h2:not(.element):not(.element h2),
.page-one.is-raleway h3:not(.element):not(.element h3),
.page-one.is-raleway h4:not(.element):not(.element h4),
.page-one.is-raleway h5:not(.element):not(.element h5),
.page-one.is-raleway h6:not(.element):not(.element h6),
.page-one.is-raleway th:not(.element th),
.page-one.is-raleway strong:not(.element strong),
.page-one.is-raleway b:not(.element b) {
  font-family: 'raleway', sans-serif;
  font-variant-numeric: lining-nums;
}
.page-one.is-mulish h1:not(.element):not(.element h1),
.page-one.is-mulish h2:not(.element):not(.element h2),
.page-one.is-mulish h3:not(.element):not(.element h3),
.page-one.is-mulish h4:not(.element):not(.element h4),
.page-one.is-mulish h5:not(.element):not(.element h5),
.page-one.is-mulish h6:not(.element):not(.element h6),
.page-one.is-mulish th:not(.element th),
.page-one.is-mulish strong:not(.element strong),
.page-one.is-mulish b:not(.element b) {
  font-family: 'mulish', sans-serif;
}
.page-one h1:not(.element):not(.element h1),
.page-one h2:not(.element):not(.element h2),
.page-one h3:not(.element):not(.element h3),
.page-one h4:not(.element):not(.element h4),
.page-one h5:not(.element):not(.element h5),
.page-one h6:not(.element):not(.element h6),
.page-one strong:not(.element strong) {
  font-weight: 600;
}
.page-one h1:not(.element):not(.element h1),
.page-one h2:not(.element):not(.element h2),
.page-one h3:not(.element):not(.element h3),
.page-one h4:not(.element):not(.element h4),
.page-one h5:not(.element):not(.element h5),
.page-one h6:not(.element):not(.element h6) {
  line-height: 1.45em;
}
.page-one h1:not(.element):not(.element h1),
.page-one h2:not(.element):not(.element h2),
.page-one h3:not(.element):not(.element h3),
.page-one h4:not(.element):not(.element h4),
.page-one h5:not(.element):not(.element h5),
.page-one h6:not(.element):not(.element h6),
.page-one p:not(.element p),
.page-one ul:not(.element ul),
.page-one ol:not(.element ol),
.page-one table:not(.element table),
.page-one blockquote:not(.element blockquote) {
  margin-bottom: 25px;
}
.page-one h1:not(.element):not(.element h1):last-child,
.page-one h2:not(.element):not(.element h2):last-child,
.page-one h3:not(.element):not(.element h3):last-child,
.page-one h4:not(.element):not(.element h4):last-child,
.page-one h5:not(.element):not(.element h5):last-child,
.page-one h6:not(.element):not(.element h6):last-child,
.page-one p:not(.element p):last-child,
.page-one ul:not(.element ul):last-child,
.page-one ol:not(.element ol):last-child,
.page-one table:not(.element table):last-child,
.page-one blockquote:not(.element blockquote):last-child {
  margin-bottom: unset;
}
.page-one img:not(.element img) {
  margin-bottom: 25px;
}
.page-one p:not(.element p) {
  line-height: 1.6em;
}
.page-one ul:not(.element ul):not(.element),
.page-one ol:not(.element ol) {
  list-style-type: none;
  counter-reset: item;
}
.page-one ul li:not(.element li),
.page-one ol li:not(.element li) {
  margin-bottom: 15px;
  line-height: 1.6em;
}
.page-one ul li:not(.element li)::before,
.page-one ol li:not(.element li)::before {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: var(--gap);
  border-radius: 50%;
  background-color: hsl(206, 79%, 94%);
  color: hsl(211, 20%, 42%);
  font-weight: bold;
}
.page-one ol li:not(.element li) {
  counter-increment: item;
}
.page-one ol li:not(.element li)::before {
  content: counter(item);
  font-size: 14px;
  line-height: 14px;
}
.page-one ul li:not(.element li)::before {
  content: '\2713';
  font-size: 16px;
  line-height: 16px;
}
.page-one blockquote:not(.element blockquote) {
  display: block;
  width: 100%;
  padding: 0.8rem 1rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  background-color: hsla(43, 95%, 85%, 0.5);
  line-height: 1.6em;
}
.page-one img:not(.element img) {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-small);
}
.page-one hr:not(.element hr) {
  margin: 0;
  margin-bottom: 20px;
  border: unset;
  height: 1px;
  border-radius: 4px;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.page-one a:not(.element a):not(.element) {
  transition: color 0.3s ease;
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.page-one a:not(.element a):not(.element):hover {
  color: hsl(var(--ph), var(--ps), calc(var(--pl) - 8%));
}
.page-one table:not(.element table) {
  border-collapse: collapse;
}
.page-one th:not(.element th),
.page-one td:not(.element td) {
  padding: 0.4rem 0.6rem;
  box-sizing: border-box;
  border: 1px solid;
  line-height: 1.6em;
}
.page-one td:not(.element td) {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.page-one th:not(.element th) {
  background-color: hsl(var(--ah), var(--as), var(--al));
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.page-one .video-container {
  margin-bottom: 20px;
}
.page-one h1:not(.element h1) {
  font-size: 28px;
}
.page-one h2:not(.element h2) {
  font-size: 24px;
}
.page-one h3:not(.element h3) {
  font-size: 22px;
}
.page-one h4:not(.element h4) {
  font-size: 20px;
}
.page-one h5:not(.element h5) {
  font-size: 18px;
}
.page-one h6:not(.element h6) {
  font-size: 16px;
}
@media (min-width: 768px) {
  .page-one.is-medium p:not(.element p),
  .page-one.is-medium ul li:not(.element li),
  .page-one.is-medium ol li:not(.element li) {
    line-height: 1.8em;
  }
  .page-one.is-small blockquote:not(.element blockquote),
  .page-one.is-small p:not(.element p),
  .page-one.is-small ul li:not(.element li),
  .page-one.is-small ol li:not(.element li) {
    line-height: 1.6em;
  }
  .page-one blockquote:not(.element blockquote) {
    display: flex;
  }
  .page-one blockquote:not(.element blockquote)::before {
    content: 'i';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    margin-right: var(--gap);
    border: 2px solid hsl(43, 96%, 49%);
    border-radius: 50%;
    color: hsl(43, 96%, 49%);
    font-weight: bold;
    text-align: center;
    font-size: 15px;
    line-height: 15px;
    font-family: monospace;
  }
}
@media (min-width: 992px) {
  .page-one h1:not(.element h1) {
    font-size: 30px;
  }
  .page-one h2:not(.element h2) {
    font-size: 26px;
  }
  .page-one h3:not(.element h3) {
    font-size: 24px;
  }
  .page-one h4:not(.element h4) {
    font-size: 22px;
  }
  .page-one h5:not(.element h5) {
    font-size: 20px;
  }
  .page-one h6:not(.element h6) {
    font-size: 18px;
  }
  .page-one.is-bold h1:not(.element):not(.element h1),
  .page-one.is-bold h2:not(.element):not(.element h2),
  .page-one.is-bold h3:not(.element):not(.element h3),
  .page-one.is-bold h4:not(.element):not(.element h4),
  .page-one.is-bold h5:not(.element):not(.element h5),
  .page-one.is-bold h6:not(.element):not(.element h6) {
    font-weight: 700;
  }
}
.paging {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: -10px;
}
.paging.is-hidden {
  display: none;
}
.paging > li {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 10px;
}
.paging > li a {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 40px;
  height: 40px;
  box-sizing: border-box;
  text-decoration: none;
  border-radius: var(--border-radius-small);
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: box-shadow 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.paging > li a.inline-link {
  font-weight: bold;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.paging > li.selected a {
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.paging__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.paging__wrapper:has(*) {
  margin-top: 2rem;
}
.paging__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 40px;
  padding: 4px 16px;
  box-sizing: border-box;
  background-color: transparent;
  border: 2px solid hsl(var(--ph), var(--ps), var(--pl));
  border-radius: var(--border-radius-small);
  font-family: inherit;
  font-size: 0.95em;
  user-select: none;
  cursor: pointer;
}
.paging__button:not(:last-child) {
  margin-bottom: 1.5rem;
}
.paging__button:focus,
.paging__button:active,
.paging__button:hover {
  outline: none;
}
.paging__button .icon-reload {
  display: block;
  width: 15px;
  height: 15px;
  margin-top: -2px;
  margin-left: 10px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.paging__button.is-active .paging__loader {
  display: inline-grid;
}
.paging__button.is-active > span {
  display: none;
}
.paging__loader {
  display: none;
}
.payments-one {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -10px;
}
.payments-one--gap {
  margin-bottom: var(--gap);
}
.payments-one__item {
  margin-top: 10px;
  margin-right: 10px;
}
.payments-one__item > svg {
  display: block;
}
.payments-one.is-small .payments-one__item > svg {
  width: 40px;
  height: 40px;
}
.payments-one.is-medium .payments-one__item > svg {
  width: 60px;
  height: 60px;
}
.payments-one .icon-mastercard__tile-0 {
  fill: hsl(22, 100%, 50%);
}
.payments-one .icon-mastercard__tile-1 {
  fill: hsl(353, 100%, 46%);
}
.payments-one .icon-mastercard__tile-2 {
  fill: hsl(36, 93%, 54%);
}
.payments-one .icon-visa__tile-0 {
  fill: hsl(213, 99%, 36%);
}
.payments-one .icon-visa__tile-1 {
  fill: hsl(37, 77%, 58%);
}
.payments-one .icon-mir__tile-0 {
  fill: hsl(196, 96%, 43%);
}
.payments-one .icon-mir__tile-1 {
  fill: hsl(130, 41%, 50%);
}
.payments-one .icon-webmoney {
  fill: hsl(205, 97%, 36%);
}
.payments-one .icon-sberbank {
  fill: hsl(124, 59%, 39%);
}
.payments-one .icon-alphabank {
  fill: hsl(2, 86%, 54%);
}
.payments-one .icon-yookassa {
  fill: hsl(213, 99%, 36%);
}
.phone-one {
  position: relative;
  display: inline-block;
}
.phone-one:hover .phone-one__popup {
  visibility: visible;
  opacity: 1;
}
.phone-one.is-primary .phone-one__wrapper {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.phone-one.is-secondary .phone-one__wrapper {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.phone-one.is-secondary .phone-one__wrapper .phone-one__icon {
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.phone-one.is-semitone .phone-one__wrapper {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.phone-one--gap {
  margin-bottom: var(--gap);
}
.phone-one__wrapper {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 350px;
  padding: 6px 10px;
  box-sizing: border-box;
  border-radius: 30px;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
  z-index: 2;
}
.phone-one__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 35px;
  height: 35px;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 50%;
}
.phone-one__icon svg {
  width: 18px;
  height: 18px;
  fill: hsl(var(--sh), var(--ss), var(--sl));
}
.phone-one__number {
  font-weight: 600;
}
.phone-one__popup-number {
  font-weight: 600;
}
.phone-one__link {
  display: flex;
  flex-direction: column;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 0.9em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.phone-one__text {
  opacity: 0.7;
}
.phone-one__popup {
  position: absolute;
  left: 0;
  width: 100%;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 1;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.phone-one__popup.is-reverse {
  bottom: calc(100% - 25px);
  padding-bottom: 25px;
  padding-top: 2px;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
}
.phone-one__popup.is-forward {
  top: calc(100% - 25px);
  padding-top: 25px;
  padding-bottom: 2px;
  border-bottom-left-radius: 18px;
  border-bottom-right-radius: 18px;
}
.phone-one__popup-link {
  display: flex;
  flex-direction: column;
  padding-top: 6px;
  padding-bottom: 6px;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  font-size: 0.9em;
}
.phone-one__popup-link:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.photo-one {
  position: relative;
  display: block;
  height: 0;
  padding-top: calc((400 / 500) * 100%);
  border-radius: var(--border-radius-small);
  overflow: hidden;
}
.photo-one > img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.photo-one:hover .photo-one__overlay {
  opacity: 1;
}
.photo-one:hover > img {
  transform: scale(1);
}
.photo-one > img {
  transform: scale(1.02);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.photo-one.is-zoom {
  cursor: zoom-in;
}
.photo-one--gap {
  margin-bottom: var(--gap);
}
.photo-one__container {
  max-width: 500px;
}
.photo-one__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: var(--dim);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
}
.photo-one__description {
  display: block;
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-size: 0.95em;
  line-height: 1.45em;
}
.photo-two {
  position: relative;
  height: 350px;
  border-radius: var(--border-radius-normal);
  user-select: none;
  overflow: hidden;
}
.photo-two--gap {
  margin-bottom: var(--gap);
}
.photo-two:hover .photo-two__image,
.photo-two:focus .photo-two__image {
  transform: scale(1);
}
.photo-two:hover::after,
.photo-two:focus::after {
  opacity: 1;
}
.photo-two:hover .icon-zoom,
.photo-two:focus .icon-zoom {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.photo-two::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dim);
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.photo-two__image {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  transform: scale(1.02);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.photo-two .icon-zoom {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 35px;
  height: 35px;
  transform: translate(-50%, -50%) scale(0.5);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  fill: hsl(var(--bh), var(--bs), var(--bl));
  opacity: 0;
  z-index: 1;
}
.popup-four {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  z-index: 200;
}
.popup-four.is-active {
  opacity: 1;
  visibility: visible;
  transition-duration: 0.2s;
}
.popup-four.is-active .popup-four__wrapper {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  animation: puff-in-popup 0.4s cubic-bezier(0.47, 0, 0.745, 0.715);
}
.popup-four.is-fullscreen .popup-four__wrapper {
  height: 100vh;
  width: 100vw;
  max-height: unset !important;
  max-width: unset !important;
  margin: unset;
  padding: unset;
  box-shadow: unset;
  border-radius: unset;
}
.popup-four.is-fullscreen .popup-four__content {
  max-height: unset !important;
  height: 100%;
}
.popup-four__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dim);
}
.popup-four__wrapper {
  position: relative;
  width: 100%;
  min-height: 100px;
  padding: 5px;
  margin: var(--gap-small);
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-moderate);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.2s;
}
.popup-four__error {
  text-align: center;
}
@media (min-width: 992px) {
  .popup-four__wrapper {
    border-radius: var(--border-radius-normal);
  }
  .popup-four__content {
    max-height: var(--popup-four-height);
  }
}
.popup-one {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0s ease-in-out;
  z-index: 200;
}
.popup-one.is-active {
  opacity: 1;
  visibility: visible;
  transition-duration: 0.2s;
}
.popup-one.is-active .popup-one__wrapper {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.popup-one__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: hsla(var(--ah), var(--as), var(--al), 0.8);
  backdrop-filter: blur(5px);
}
.popup-one__wrapper {
  position: relative;
  width: 100%;
  padding: 2.25rem 0.75rem 2rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-moderate);
  opacity: 0;
  visibility: hidden;
  transform: scale(0.95);
  transition: 0.3s ease;
  transition-delay: 0.2s;
}
.popup-one__content {
  height: 100%;
  box-sizing: border-box;
  overflow-y: auto;
}
.popup-one__content::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
}
.popup-one__content::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: 4px;
  margin-left: 5px;
}
.popup-one__close {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: unset;
  background-color: hsl(var(--ah), var(--as), var(--al));
  padding: 6px;
  cursor: pointer;
  z-index: 1;
}
.popup-one__close > svg {
  width: 10px;
  height: 10px;
  fill: hsl(var(--th), var(--ts), var(--tl));
  opacity: 0.3;
  transition: 0.2s ease;
}
.popup-one__close:hover > svg {
  opacity: 1;
}
.popup-one__error {
  text-align: center;
}
@media (min-width: 768px) {
  .popup-one__content {
    padding: 1px 1rem;
  }
}
.popup-three {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  z-index: 200;
}
.popup-three.is-active {
  opacity: 1;
  visibility: visible;
}
.popup-three.is-active .popup-three__wrapper {
  opacity: 1;
  visibility: visible;
  transform: translate(0);
}
.popup-three__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dim);
}
.popup-three__wrapper {
  position: relative;
  width: 100%;
  max-width: 768px;
  box-sizing: border-box;
  border-top-left-radius: var(--border-radius-large);
  border-top-right-radius: var(--border-radius-large);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-moderate);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.3s;
}
.popup-three__content {
  height: 100%;
  max-height: calc(var(--vh, 1vh) * 88);
  box-sizing: border-box;
  overflow-y: auto;
}
.popup-three__content::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
}
.popup-three__content::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: 4px;
  margin-left: 5px;
}
.popup-three__swipe {
  width: 100%;
  padding: 1rem 0;
  background-color: transparent;
  border: unset;
  outline: unset;
}
.popup-three__bar {
  display: block;
  width: 45px;
  height: 3px;
  margin: 0 auto;
  border-radius: 2px;
  background: hsl(var(--ah), var(--as), calc(var(--al) - 20%));
  touch-action: pan-x;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
.popup-three__close {
  position: absolute;
  top: 5px;
  right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: unset;
  background-color: transparent;
  padding: 6px;
  cursor: pointer;
  z-index: 1;
}
.popup-three__close > svg {
  width: 12px;
  height: 12px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 20%));
}
@media (max-width: 767px) {
  .popup-three__wrapper {
    transform: translateY(100%);
  }
}
@media (min-width: 768px) {
  .popup-three__swipe {
    display: none;
  }
  .popup-three__close {
    background-color: hsl(var(--ah), var(--as), var(--al));
  }
  .popup-three__close > svg {
    width: 10px;
    height: 10px;
    fill: hsl(var(--th), var(--ts), var(--tl));
    transition: 0.2s ease;
    opacity: 0.5;
  }
  .popup-three__close:hover > svg {
    opacity: 1;
  }
  .popup-three__content {
    max-height: 100vh;
  }
  .popup-three__wrapper {
    height: 100%;
    max-width: 450px;
    border-radius: unset;
    transform: translateX(-100%);
  }
}
.popup-two {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: 0s ease-in-out;
  z-index: 200;
}
.popup-two.is-active {
  opacity: 1;
  visibility: visible;
  transition-duration: 0.2s;
}
.popup-two.is-active .popup-two__wrapper {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.popup-two__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dim-muted);
  backdrop-filter: blur(5px);
}
.popup-two__wrapper {
  position: relative;
  width: 100%;
  min-height: 100px;
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-moderate);
  opacity: 0;
  overflow: hidden;
  visibility: hidden;
  transform: scale(0.95);
  transition: 0.3s ease;
  transition-delay: 0.2s;
}
.popup-two__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: unset;
  background-color: hsl(var(--ah), var(--as), var(--al));
  padding: 6px;
  cursor: pointer;
  z-index: 1;
}
.popup-two__close > svg {
  width: 10px;
  height: 10px;
  fill: hsl(var(--th), var(--ts), var(--tl));
  opacity: 0.3;
  transition: 0.2s ease;
}
.popup-two__close:hover > svg {
  opacity: 1;
}
.popup-two__error {
  text-align: center;
}
@media (min-width: 992px) {
  .popup-two__wrapper {
    border-radius: var(--border-radius-normal);
  }
  .popup-two__content {
    max-height: var(--popup-two-height);
  }
  .popup-two__close {
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    padding: 8px;
  }
}
.postcard-four {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: box-shadow 0.3s ease;
}
.postcard-four--gap {
  margin-bottom: var(--gap-extended);
}
.postcard-four.is-primary {
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.postcard-four.is-secondary {
  border: 1px solid hsl(var(--ah), var(--as), var(--al));
}
.postcard-four.is-semitone {
  border: 1px solid hsl(var(--ah), var(--as), var(--al));
}
.postcard-four__image-wrapper {
  flex-shrink: 0;
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top-left-radius: var(--border-radius-normal);
  border-top-right-radius: var(--border-radius-normal);
  overflow: hidden;
  isolation: isolate;
}
.postcard-four__image-wrapper:hover .postcard-four__image {
  transform: scale(1);
}
.postcard-four__image-wrapper:hover .postcard-four__image-container::after {
  opacity: 1;
}
.postcard-four__image-container {
  display: flex;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  isolation: isolate;
}
.postcard-four__image-container::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dim);
  opacity: 0;
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 0;
}
.postcard-four__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-normal);
  transform: scale(1.02);
  transition: all 1s cubic-bezier(0.22, 1, 0.36, 1);
  object-fit: cover;
}
.postcard-four__counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 2px 8px;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border-radius: var(--border-radius-small);
}
.postcard-four__badges {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  box-sizing: border-box;
  margin-top: -8px;
}
.postcard-four__badges > div {
  margin-right: 8px;
  margin-top: 8px;
}
.postcard-four__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
}
.postcard-four__credentials {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: var(--gap-small);
  margin-top: -8px;
}
.postcard-four__credentials > * {
  margin-top: 8px;
}
.postcard-four__credentials > :not(:last-child) {
  margin-right: 1rem;
}
.postcard-four__label {
  display: inline-block;
  letter-spacing: 0.03em;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 50%));
}
.postcard-four__title {
  margin-bottom: var(--gap-small);
  font-size: var(--name-font-size);
  font-weight: 600;
  line-height: 1.45em;
}
.postcard-four__text {
  font-size: 0.95em;
  line-height: 1.45em;
}
.postcard-four__button-wrapper {
  margin-top: auto;
}
.postcard-four__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 36px;
  min-width: 36px;
  margin-top: var(--gap);
  box-sizing: border-box;
  background-color: hsl(var(--ah), var(--as), var(--al));
  color: hsl(var(--th), var(--ts), var(--tl));
  border: unset;
  border-radius: var(--border-radius-small);
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1.45em;
  user-select: none;
  cursor: pointer;
}
.postcard-four__button:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  transition: background-color 0.25s ease;
}
.postcard-four__button.is-rounded {
  border-radius: 25px;
}
@media (min-width: 768px) {
  .postcard-four__content {
    padding: 1.5rem;
  }
}
.preloader-one {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 1000;
}
.preloader-one.is-hidden {
  opacity: 0;
  visibility: hidden;
}
.preloader-one svg {
  width: 50px;
  height: 50px;
  animation: spinner-rotate 2s linear infinite;
}
.preloader-one svg circle {
  stroke-linecap: round;
  stroke: hsl(var(--ph), var(--ps), var(--pl));
  stroke-width: 4px;
  animation: spinner-dash 1.5s ease-in-out infinite;
}
.price-one--gap {
  margin-bottom: var(--gap);
}
.price-one__price-wrapper {
  display: flex;
  align-items: flex-end;
}
.price-one.is-small .price-one__price {
  font-size: 16px;
  line-height: 16px;
}
.price-one.is-small .price-one__compare {
  font-size: 13px;
  line-height: 13px;
}
.price-one.is-medium .price-one__price {
  font-size: 17px;
  line-height: 17px;
}
.price-one.is-medium .price-one__compare {
  font-size: 15px;
  line-height: 15px;
}
.price-one.is-large .price-one__price {
  font-size: 20px;
  line-height: 20px;
}
.price-one.is-large .price-one__compare {
  font-size: 17px;
  line-height: 17px;
}
.price-one__price {
  font-weight: 600;
}
.price-one__compare {
  position: relative;
  display: block;
  margin-left: 10px;
  opacity: 0.5;
}
.price-one__compare::before {
  content: '';
  position: absolute;
  left: 0;
  top: 45%;
  display: block;
  width: 100%;
  height: 1px;
  background-color: hsl(var(--th), var(--ts), var(--tl));
  opacity: 0.5;
}
.price-one__compare.is-hidden {
  display: none;
}
.price-three--gap {
  margin-bottom: var(--gap);
}
.price-three__wrapper {
  display: flex;
  align-items: center;
}
.price-three.is-small .price-three__price {
  margin-right: 5px;
  font-size: 15px;
  line-height: 15px;
}
.price-three.is-small .price-three__compare {
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 13px;
}
.price-three.is-medium .price-three__price {
  margin-right: 5px;
  font-size: 17px;
  line-height: 17px;
}
.price-three.is-medium .price-three__compare {
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 15px;
}
.price-three.is-large .price-three__price {
  margin-right: 10px;
  font-size: 23px;
  line-height: 23px;
}
.price-three.is-large .price-three__compare {
  margin-bottom: 5px;
  font-size: 18px;
  line-height: 18px;
}
.price-three__price {
  font-weight: 600;
}
.price-three__compare {
  position: relative;
  display: inline-block;
  opacity: 0.5;
}
.price-three__compare::before {
  content: '';
  position: absolute;
  left: 0;
  top: 45%;
  display: block;
  width: 100%;
  height: 1px;
  background-color: hsl(var(--th), var(--ts), var(--tl));
  opacity: 0.5;
}
.price-three__compare.is-hidden {
  display: none;
}
.price-three__text {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
}
.price-three__discount {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  background-color: hsl(0, 97%, 69%);
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-weight: 500;
  font-size: 13px;
  line-height: 13px;
}
.price-three__discount.is-hidden {
  display: none;
}
.product-one {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  max-width: 350px;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: var(--border-radius-normal);
  transition: box-shadow 0.2s ease;
}
.product-one:not(.is-link) {
  overflow: hidden;
}
.product-one:hover {
  box-shadow: var(--shadow-card);
  border-color: hsl(var(--ah), var(--as), var(--al));
  z-index: 1;
}
.product-one:hover .product-one__content {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.product-one:hover .product-one__dots {
  opacity: 1;
}
.product-one__image-wrapper {
  display: block;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top-left-radius: var(--border-radius-normal);
  border-top-right-radius: var(--border-radius-normal);
  overflow: hidden;
}
.product-one__loader,
.product-one__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-one__image.is-margins {
  padding: 1.5rem;
  box-sizing: border-box;
}
.product-one__image.is-margins .product-one__img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.product-one__image.is-cropped-top .product-one__img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
}
.product-one__image.is-cropped-center .product-one__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product-one__image.is-common .product-one__img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.product-one__image:focus {
  outline: none;
}
.product-one__image:hover .product-one__tab::before {
  opacity: 1;
}
.product-one__img {
  height: auto;
  font-size: 0;
  overflow: hidden;
  user-select: none;
}
.product-one__tabs {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  padding: 0 var(--gap-small);
}
.product-one__tab {
  width: 100%;
}
.product-one__dots {
  position: absolute;
  bottom: var(--gap-small);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-one__dot {
  flex-shrink: 0;
  display: block;
  width: 4px;
  height: 4px;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: 50%;
  transition: transform 0.3s ease;
}
.product-one__dot:not(:last-of-type) {
  margin-right: 6px;
}
.product-one__dot.is-active {
  background: hsl(var(--ih), var(--is), var(--il));
  transform: scale(1.4);
}
.product-one__discount {
  position: absolute;
  bottom: var(--gap-small);
  left: var(--gap-small);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
}
.product-one__saving {
  display: inline-block;
  padding: 4px 12px;
  border-radius: var(--border-radius-small);
  background-color: hsla(201, 100%, 96%, 0.65);
  backdrop-filter: blur(10px);
  color: hsl(var(--th), var(--ts), var(--tl));
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2em;
}
.product-one__badge {
  position: absolute;
  top: var(--gap-small);
  left: var(--gap-small);
}
.product-one__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  box-sizing: border-box;
  z-index: 2;
}
.product-one__content > :not(.is-hidden):not(:last-child) {
  margin-bottom: 15px;
}
.product-one__name {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-decoration: none;
  font-size: 0.95em;
  line-height: 1.45em;
  font-weight: 600;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
  transition: 0.2s ease;
}
.product-one__name:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.product-one__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 15px;
  margin-top: auto;
}
.product-one__compact-price {
  margin-top: auto;
}
.product-one:not(.is-compact) .product-one__compact-price {
  display: none;
}
.product-one__form {
  display: flex;
  align-items: flex-start;
  padding: 0 1rem 1rem;
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-bottom-left-radius: var(--border-radius-normal);
  border-bottom-right-radius: var(--border-radius-normal);
}
.product-one__form.is-active .product-one__quantity {
  display: flex;
}
.product-one__form.is-active .product-one__submit {
  background-color: hsl(var(--ah), var(--as), var(--al));
  width: auto;
}
.product-one__form.is-active .product-one__submit:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 2%));
}
.product-one__form.is-active .product-one__submit > svg {
  fill: hsl(var(--th), var(--ts), var(--tl));
}
.product-one__quantity {
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-right: 1rem;
  box-sizing: border-box;
  background-color: hsl(var(--ah), var(--as), var(--al));
  border-radius: var(--border-radius-small);
  user-select: none;
}
.product-one__quantity-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  padding: unset;
  border: unset;
  background-color: transparent;
  font-size: 1.45em;
  cursor: pointer;
}
.product-one__quantity-button.is-loading {
  opacity: 0.2;
}
.product-one__quantity-button:focus {
  outline: none;
}
.product-one__quantity-value {
  display: block;
  width: 50px;
  text-align: center;
  font-size: 0.95em;
}
.product-one__submit {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 36px;
  min-width: 36px;
  box-sizing: border-box;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  border: unset;
  border-radius: var(--border-radius-small);
  text-decoration: none;
  font-size: 0.9em;
  font-weight: 600;
  line-height: 1.45em;
  user-select: none;
  cursor: pointer;
}
.product-one__submit:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) - 2%));
  transition: background-color 0.25s ease;
}
.product-one__submit[disabled] {
  background-color: hsl(var(--ah), var(--as), var(--al));
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: auto;
}
.product-one__submit > svg {
  display: block;
  width: 12px;
  height: 12px;
  fill: hsl(var(--bh), var(--bs), var(--bl));
  transform: rotate(-90deg);
}
.product-one__submit.is-rounded {
  border-radius: 25px;
}
@media (max-width: 579px) {
  .is-compact .product-one__badge,
  .is-compact .product-one__score,
  .is-compact .product-one__compare,
  .is-compact .product-one__discount,
  .is-compact .product-one__stocks,
  .is-compact .product-one__footer,
  .is-compact .product-one__form {
    display: none;
  }
  .is-compact .product-one__image.is-margins,
  .is-compact .product-one__content {
    padding: 0.8rem 0.5rem;
  }
  .is-compact .product-one__content > :not(.is-hidden):not(:last-child) {
    margin-bottom: 5px;
  }
  .is-compact .product-one__mobile-favorite {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
  }
  .is-compact .product-one__mobile-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
  }
  .is-compact:hover .product-one__content {
    background-color: transparent;
  }
}
@media (min-width: 580px) {
  .is-compact .product-one__mobile-score,
  .is-compact .product-one__mobile-favorite,
  .is-compact .product-one__mobile-badge,
  .is-compact .product-one__compact-price {
    display: none;
  }
}
@media (min-width: 768px) {
  .product-one:hover .product-one__form.is-hidden {
    opacity: 1;
    visibility: visible;
    box-shadow: var(--shadow-card);
    pointer-events: auto;
  }
  .product-one__form.is-hidden {
    position: absolute;
    left: -1px;
    top: calc(100% + 0px);
    width: calc(100% + 2px);
    border-color: hsl(var(--ah), var(--as), calc(var(--al) - 2%));
    border-style: solid;
    border-bottom-width: 1px;
    border-left-width: 1px;
    border-right-width: 1px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
  }
}
.project-one {
  display: block;
  max-width: 700px;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.project-one--gap {
  margin-bottom: var(--gap-extended);
}
.project-one__image-wrapper {
  position: relative;
  margin-bottom: var(--gap);
  overflow: hidden;
  isolation: isolate;
}
.project-one__image-wrapper.is-primary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.project-one__image-wrapper.is-secondary {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.project-one__image-wrapper.is-semitone {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.project-one__image-container {
  display: flex;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  isolation: isolate;
}
.project-one__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-normal);
  object-fit: cover;
}
.project-one__label {
  display: inline-block;
  margin-bottom: var(--gap-small);
  letter-spacing: 0.03em;
  line-height: 1.45em;
  opacity: 0.5;
}
.project-one__title {
  margin-bottom: var(--gap);
  font-size: var(--name-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.project-one__text {
  margin-bottom: var(--gap);
  font-size: 0.95em;
  line-height: 1.45em;
}
.project-one__badges {
  display: flex;
  flex-wrap: wrap;
  margin-top: -8px;
}
.project-one__badges > div {
  margin-right: 8px;
  margin-top: 8px;
}
.project-one__counter {
  position: absolute;
  bottom: 1.6rem;
  right: 1.6rem;
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 50%;
  border: 1px solid hsla(0, 0%, 100%, 0.2);
  background: hsla(0, 0%, 100%, 0.4);
  background-blend-mode: normal;
  backdrop-filter: blur(2px);
  font-weight: 700;
}
.project-one__pagination {
  bottom: 1rem !important;
}
.project-one__pagination > .swiper-pagination-bullet {
  position: relative;
  width: 12px;
  height: 12px;
  background: hsla(0, 0%, 0%, 0.1);
  opacity: 1;
}
.project-one__pagination > .swiper-pagination-bullet::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -4px 0 0 -4px;
  width: 8px;
  height: 8px;
  background: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 50%;
  transition: 0.3s ease;
}
.project-one__pagination > .swiper-pagination-bullet.is-active::before {
  transform: scale(1.5);
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
@media (min-width: 768px) {
  .project-one__counter {
    display: flex;
  }
}
.qr-one {
  display: grid;
  grid-gap: 1rem;
  max-width: 400px;
}
.qr-one--gap {
  margin-bottom: var(--gap);
}
.qr-one.is-primary {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.qr-one.is-primary .qr-one__link {
  background-color: hsla(var(--sh), var(--ss), var(--sl), 0.15);
  color: hsl(var(--sh), var(--ss), var(--sl));
}
.qr-one.is-primary .qr-one__link .core-link {
  fill: hsl(var(--sh), var(--ss), var(--sl));
}
.qr-one.is-secondary {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.qr-one.is-secondary .qr-one__link {
  background-color: hsla(var(--ah), var(--as), var(--al), 0.15);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.qr-one.is-secondary .qr-one__link .core-link {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.qr-one__text {
  font-size: 0.95em;
  line-height: 1.45em;
}
.qr-one__image {
  display: block;
  max-width: 140px;
  width: 100%;
}
.qr-one__link {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  padding: 2px 10px;
  box-sizing: border-box;
  margin-top: 10px;
  border-radius: var(--border-radius-small);
  text-decoration: none;
  font-size: 0.95em;
  text-align: center;
}
.qr-one__link .core-link {
  display: block;
  width: 13px;
  height: 13px;
  margin-left: 5px;
}
@media (min-width: 480px) {
  .qr-one {
    grid-template-columns: 1fr auto;
  }
}
.quiz[data-mode='collection'] {
  padding: 10px 5px 0;
}
.quiz[data-mode='collection'] .quiz__container {
  height: calc(100vh - 10px);
}
.quiz[data-mode='validation'] {
  padding: 10px 5px 60px;
}
.quiz[data-mode='validation'] .quiz__container {
  height: calc(100vh - 70px);
}
.quiz__container {
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
}
.quiz__container::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
}
.quiz__container::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: 4px;
  margin-left: 5px;
}
.quiz__container.is-active {
  display: grid;
  justify-content: center;
}
.quiz__container.is-active .quiz__answers-wrapper {
  display: none;
}
.quiz__container.is-active .quiz__feedback {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.quiz__question-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 1rem;
}
.quiz__question {
  margin: auto 0;
}
.quiz__image {
  display: block;
  margin: 20px auto 0;
  width: 100%;
  max-width: 350px;
  height: auto;
  border-radius: var(--border-radius-small);
  overflow: hidden;
}
.quiz__step {
  display: block;
  margin-bottom: var(--gap-small);
  white-space: nowrap;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-size: 0.85em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.quiz__text {
  line-height: 1.45em;
  font-weight: 600;
}
.quiz__answers-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 1rem 1.5rem;
}
.quiz__answers {
  display: grid;
  grid-gap: 0.5rem;
  margin: auto 0;
}
.quiz__answer {
  animation: slide-in-right 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.quiz__answer:nth-of-type(1) {
  animation-delay: 0.05s;
}
.quiz__answer:nth-of-type(2) {
  animation-delay: 0.1s;
}
.quiz__answer:nth-of-type(3) {
  animation-delay: 0.15s;
}
.quiz__answer:nth-of-type(4) {
  animation-delay: 0.2s;
}
.quiz__answer input[type='radio'] {
  display: none;
}
.quiz__answer input[type='radio']:checked + label span {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.quiz__answer input[type='radio']:checked + label span::before {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  transform: scale(1);
}
.quiz__answer input[type='radio'].is-correct + label::before,
.quiz__answer input[type='radio'].is-wrong + label::before {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 18px;
  padding-left: 2px;
  box-sizing: border-box;
  border-bottom-left-radius: 4px;
  font-size: 12px;
}
.quiz__answer input[type='radio'].is-correct + label {
  border-color: hsl(148, 100%, 36%);
}
.quiz__answer input[type='radio'].is-correct + label::before {
  content: '✔';
  background-color: hsl(148, 100%, 36%);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.quiz__answer input[type='radio'].is-wrong + label {
  border-color: lightcoral;
}
.quiz__answer input[type='radio'].is-wrong + label::before {
  content: '✖';
  background-color: lightcoral;
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.quiz__answer label {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 0.8rem;
  padding: 0.8rem;
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  cursor: pointer;
  font-size: 0.95em;
  line-height: 1.45em;
  transition: border-color 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  user-select: none;
}
.quiz__answer label:hover {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.quiz__answer label span {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: hsl(var(--ah), var(--as), var(--al));
  border: 2px solid hsl(var(--ah), var(--as), var(--al));
  transition: border 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.quiz__answer label span::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 4px;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: scale(0.5);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.quiz__line-wrapper {
  display: none;
  grid-template-columns: 1fr auto;
  grid-gap: 10px;
  grid-template-areas: 'line line' 'stats restart';
  margin-top: 20px;
}
.quiz__line {
  grid-area: line;
  position: relative;
  height: 10px;
  width: 100%;
  border-radius: 3px;
  background-color: hsl(var(--ah), var(--as), var(--al));
  overflow: hidden;
}
.quiz__stats {
  grid-area: stats;
  font-size: 0.95em;
  line-height: 1.45em;
}
.quiz__restart {
  grid-area: restart;
  display: flex;
  align-items: center;
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
  cursor: pointer;
  user-select: none;
}
.quiz__restart svg {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.quiz__filler {
  position: absolute;
  height: 100%;
  width: 0;
  border-radius: 3px;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  transition: width 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.quiz__controls {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  min-height: 60px;
  width: 100%;
  padding: 0 calc(1rem + 5px);
  box-sizing: border-box;
  margin-top: 20px;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: 0 -8px 6px -5px rgba(0, 0, 0, 0.08);
}
.quiz__controls > :last-child {
  margin-left: auto;
}
.quiz__button.is-disabled {
  pointer-events: none;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
}
.quiz__result-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.quiz__score-wrapper {
  padding: 3px;
  margin: 0 auto 10px;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  border: 8px solid hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border-radius: 50%;
}
.quiz__score {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  border: 4px solid hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border-radius: 50%;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-size: 1.6em;
  font-weight: bold;
}
.quiz__score .icon-mail {
  display: block;
  width: 38px;
  height: 38px;
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.quiz__result-title {
  display: block;
  max-width: 400px;
  margin-bottom: 10px;
  text-align: center;
  font-size: var(--subtitle-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.quiz__result-text {
  display: block;
  max-width: 600px;
  text-align: center;
  font-size: 0.95em;
  line-height: 1.45em;
}
.quiz__promo {
  display: block;
  min-width: 200px;
  padding: 0.6rem 1rem;
  margin-top: var(--gap);
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  text-align: center;
}
.quiz__promo-text {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9em;
}
.quiz__promo-code {
  font-weight: 700;
  font-size: 1.2em;
}
.quiz__feedback {
  display: none;
  height: 100%;
}
.quiz__form {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.quiz__title {
  display: block;
  margin-bottom: var(--gap-small);
  font-size: var(--subtitle-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.quiz__subtitle {
  display: block;
  margin-bottom: var(--gap-small);
  opacity: 0.5;
  font-size: 0.95em;
  line-height: 1.45em;
}
.quiz__block {
  margin-bottom: 15px;
}
.quiz__block.is-hidden {
  display: none;
}
.quiz__label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
}
.quiz__label.is-required::after {
  content: ' *';
  color: hsl(0, 97%, 69%);
}
.quiz__input {
  display: inline-block;
  min-height: 42px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.6rem 1rem;
  box-sizing: border-box;
  appearance: none;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: var(--border-radius-small);
  font-size: 0.95em;
  font-family: inherit;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.quiz__input:hover:not(:disabled):not(:focus) {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.quiz__input:hover:focus {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.quiz__input:focus {
  outline: none;
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  box-shadow: 0 0 1px 1px hsl(var(--ph), var(--ps), var(--pl));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.quiz__input:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.quiz__input.is-error,
.quiz__input.error:hover,
.quiz__input.error:focus,
.quiz__input.error,
.quiz__input.wa-error {
  border-color: hsl(0, 97%, 69%);
  box-shadow: 0 0 1px 1px hsl(0, 97%, 69%);
}
.quiz__input::-webkit-input-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.quiz__input:-moz-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.quiz__error {
  display: block;
  margin-top: 5px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.45em;
  color: hsl(0, 97%, 69%);
}
.quiz__agree {
  font-size: 0.95em;
  line-height: 1.45em;
}
.quiz__link {
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: 0.15s ease-out;
}
.quiz__link:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
@media (min-width: 480px) {
  .quiz__question-wrapper {
    padding: 1.5rem;
  }
  .quiz__answers-wrapper {
    padding: 0 1.5rem 1.5rem;
  }
}
@media (min-width: 768px) {
  .quiz__back {
    min-height: 40px;
  }
  .quiz__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
  }
}
@media (min-width: 992px) {
  .quiz[data-mode='validation'],
  .quiz[data-mode='collection'] {
    padding: unset;
  }
  .quiz[data-mode='validation'] .quiz__container,
  .quiz[data-mode='collection'] .quiz__container {
    height: 550px;
  }
  .quiz__container {
    display: grid;
    grid-template-columns: 370px 1fr;
  }
  .quiz__container.is-active {
    grid-template-columns: 1fr;
  }
  .quiz__controls {
    position: unset;
    min-height: 45px;
    padding: unset;
    box-shadow: unset;
    background-color: transparent;
  }
  .quiz__line-wrapper {
    display: grid;
  }
  .quiz__question-wrapper {
    padding: 2rem;
  }
  .quiz__answers-wrapper {
    padding: 2rem;
    background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
    box-shadow: 8px 0 6px -5px rgba(0, 0, 0, 0.12) inset;
  }
  .quiz__answer label {
    grid-gap: 1rem;
    padding: 1rem;
  }
}
.rating-one {
  display: inline-flex;
  flex-direction: column;
  padding: 0.8rem 1rem;
  border-radius: var(--border-radius-small);
  text-decoration: none;
  line-height: 1.45em;
}
.rating-one--gap {
  margin-bottom: var(--gap);
}
.rating-one.is-primary {
  color: hsl(var(--bh), var(--bs), calc(var(--bl) - 20%));
  background-color: hsl(var(--ih), var(--is), calc(var(--il) + 8%));
  border: 1px solid hsla(var(--bh), var(--bs), var(--bl), 0.15);
}
.rating-one.is-secondary {
  color: hsl(var(--th), var(--ts), var(--tl));
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.rating-one__title {
  display: block;
  margin-bottom: 3px;
  font-weight: 600;
}
.rating-one__stars {
  display: flex;
  align-items: center;
}
.rating-one__number {
  font-size: 1.1em;
  margin-right: var(--gap-small);
}
.rating-one__star {
  display: block;
  margin-left: 5px;
}
.rating-one__star > svg {
  width: 18px;
  height: 18px;
}
.rating-one__text {
  font-size: 15px;
  opacity: 0.5;
}
.review-one {
  padding-top: 25px;
  padding-left: 25px;
  box-sizing: border-box;
}
.review-one__content {
  position: relative;
  padding: 1.5rem;
  margin-bottom: 40px;
  font-size: 0.95em;
  line-height: 1.45em;
  border-radius: var(--border-radius-normal);
}
.review-one__content.is-primary {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.review-one__content.is-primary::before {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.review-one__content.is-secondary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.review-one__content.is-secondary::before {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.review-one__content.is-semitone {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.review-one__content.is-semitone::before {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.review-one__content::before {
  content: '';
  position: absolute;
  display: block;
  width: 30px;
  height: 30px;
  top: 100%;
  left: 25px;
  transform: translateY(-15px) rotate(45deg);
}
.review-one__icon {
  position: absolute;
  top: -25px;
  left: -25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-large);
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.review-one__icon .icon-quote {
  display: block;
  width: 30px;
  height: 30px;
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.review-one__credentials {
  display: flex;
  align-items: center;
}
.review-one__image-wrapper {
  flex-shrink: 0;
  height: 60px;
  width: 60px;
  margin-right: 1.5rem;
  overflow: hidden;
  border-radius: 50%;
}
.review-one__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-one__link {
  font-weight: 600;
}
.review-one__desc {
  display: block;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  font-size: 0.95em;
  line-height: 1.45em;
}
@media (min-width: 768px) {
  .review-one__content,
  .review-one__desc {
    font-size: 1em;
  }
  .review-one__content {
    padding: 2rem;
  }
  .review-one__image-wrapper {
    height: 80px;
    width: 80px;
  }
  .review-one__image-wrapper {
    margin-right: 2rem;
  }
}
.score-four {
  display: flex;
  align-items: baseline;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.score-four--gap {
  margin-bottom: var(--gap);
}
.score-four > :not(:last-child) {
  margin-right: 8px;
}
.score-four.is-small {
  font-size: 15px;
}
.score-four__rating {
  display: flex;
  align-items: center;
}
.score-four__rating > :not(:last-child) {
  margin-right: 2px;
}
.score-four__rating-item .icon-star {
  display: inline-block;
  width: 12px;
  height: 12px;
}
.score-four__rating-item.is-empty {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
}
.score-four__rating-item.is-fill {
  fill: hsl(40, 100%, 50%);
}
.score-four__rating-item.is-half .is-left {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
}
.score-four__rating-item.is-half .is-right {
  fill: hsl(40, 100%, 50%);
}
.score-four__count {
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.score-one {
  display: flex;
  align-items: center;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.score-one--gap {
  margin-bottom: var(--gap);
}
.score-one.is-small {
  font-size: 15px;
}
.score-one .icon-star {
  display: block;
  margin-right: 5px;
}
.score-one .icon-star {
  fill: hsl(40, 100%, 50%);
  width: 14px;
  height: 14px;
  margin-top: -2px;
}
.score-one__rating {
  display: block;
  margin-right: var(--gap-small);
}
.search-one > form {
  position: relative;
}
.search-one__input {
  width: 100%;
  min-height: 38px;
  padding: 0.2rem 2.2rem 0.2rem 1rem;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-radius: var(--border-radius-small);
  font-size: 0.95em;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.search-one__input.is-active,
.search-one__input:focus {
  outline: none;
}
.search-one.is-primary .search-one__input {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
  color: hsl(var(--th), var(--ts), var(--tl));
}
.search-one.is-primary .search-one__input::placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.search-one.is-primary .search-one__input.is-active,
.search-one.is-primary .search-one__input:focus {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  box-shadow: 0 0 0 1px hsl(var(--ph), var(--ps), var(--pl));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.search-one.is-secondary .search-one__input {
  backdrop-filter: blur(10px);
  background-color: hsla(var(--bh), var(--bs), var(--bl), 0.2);
  border-color: hsla(var(--bh), var(--bs), var(--bl), 0.3);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.search-one.is-secondary .search-one__input::placeholder {
  color: hsla(var(--bh), var(--bs), var(--bl), 0.75);
}
.search-one.is-secondary .search-one__input.is-active,
.search-one.is-secondary .search-one__input:focus {
  border-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: 0 0 1px 1px hsl(var(--bh), var(--bs), var(--bl));
}
.search-one__layout {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  border-radius: var(--border-radius-normal);
}
.search-one__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dim);
  transition: 0s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 200;
}
.search-one__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: unset;
  background-color: transparent;
  cursor: pointer;
}
.search-one__button .icon-search {
  display: block;
  width: 18px;
  height: 18px;
}
.search-one.is-primary .search-one__button .icon-search {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.search-one.is-secondary .search-one__button .icon-search {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.search-one__loader {
  position: absolute;
  top: 50%;
  right: calc(42px + 0.6rem + 0.6rem);
  visibility: hidden;
  transform: translateY(-50%);
  opacity: 0;
  z-index: 1;
}
.search-one__loader.is-active {
  visibility: visible;
  opacity: 1;
}
.search-one__dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  display: block;
  width: 100%;
  border-radius: var(--border-radius-small);
  box-shadow: var(--shadow-light);
  transition: all 0.2s ease;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  z-index: 150;
}
.search-one__dropdown.is-active {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  top: calc(100% + 10px);
}
.search-one__dropdown-inner {
  max-height: 320px;
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: var(--border-radius-small);
  overflow-y: auto;
  clip-path: inset(0 round var(--border-radius-small));
}
.search-one__dropdown-inner::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.search-one__dropdown-inner::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  margin-left: 5px;
}
.search-one__cross {
  position: absolute;
  top: 50%;
  right: calc(42px + 0.6rem);
  padding: 8px;
  visibility: hidden;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  z-index: 1;
}
.search-one__cross.is-active {
  visibility: visible;
  opacity: 1;
}
.search-one__cross .core-cross {
  display: block;
  width: 10px;
  height: 10px;
}
.search-one.is-primary .search-one__cross .core-cross {
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.search-one.is-secondary .search-one__cross .core-cross {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.search-one__header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 1rem;
  box-sizing: border-box;
  background-color: hsl(var(--ah), var(--as), var(--al));
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  color: hsl(var(--th), var(--ts), var(--tl));
  font-size: 0.95em;
}
.search-one__header > a {
  margin-left: 1rem;
}
.search-one__header-link {
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.search-one__dropdown-link {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: auto 1fr;
  align-items: center;
  height: 90px;
  padding: 0 1rem;
  box-sizing: border-box;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: background-color 0.25s ease;
}
.search-one__dropdown-link:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.search-one__dropdown-link:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.search-one__dropdown-link:focus {
  outline: none;
}
.search-one__dropdown-image {
  display: block;
  flex: none;
  width: 65px;
  height: 65px;
  text-align: center;
}
.search-one__dropdown-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: var(--border-radius-small);
  overflow: hidden;
}
.search-one__dropdown-name {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}
.search-one__dropdown-price {
  font-size: 15px;
  line-height: 15px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .search-one__input {
    min-height: 42px;
    padding: 0.2rem 2.8rem 0.2rem 1.4rem;
  }
  .search-one__button {
    right: 0.6rem;
    width: 42px;
    height: 42px;
  }
}
.search-three > form {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  border-radius: 25px;
}
.search-three__input {
  position: relative;
  width: 100%;
  min-height: 38px;
  padding: 0.2rem 3rem 0.2rem 1.6rem;
  box-sizing: border-box;
  border-radius: 25px;
  border: unset;
  background-color: transparent;
  font-size: 0.95em;
  font-family: inherit;
  outline: none;
  z-index: 1;
}
.search-three__input::placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.search-three__input.is-active,
.search-three__input:focus {
  border-color: transparent;
  z-index: 220;
}
.search-three__input.is-active ~ .search-three__overlay,
.search-three__input:focus ~ .search-three__overlay {
  opacity: 1;
  visibility: visible;
  transition-duration: 0.2s;
}
.search-three__input.is-active ~ .search-three__button,
.search-three__input:focus ~ .search-three__button,
.search-three__input.is-active ~ .search-three__cross,
.search-three__input:focus ~ .search-three__cross,
.search-three__input.is-active ~ .search-three__loader,
.search-three__input:focus ~ .search-three__loader {
  z-index: 220;
}
.search-three__input.is-active ~ .search-three__layout,
.search-three__input:focus ~ .search-three__layout {
  border-color: hsl(var(--bh), var(--bs), var(--bl)) !important;
  background-color: hsl(var(--bh), var(--bs), var(--bl)) !important;
  box-shadow: var(--shadow-light);
  z-index: 210;
}
.search-three__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dim);
  transition: 0s ease-in-out;
  opacity: 0;
  visibility: hidden;
  z-index: 200;
}
.search-three__layout {
  position: absolute;
  top: -2px;
  right: -2px;
  left: -2px;
  bottom: -2px;
  border-width: 2px;
  border-style: solid;
  border-radius: 25px;
  transition: box-shadow 0.2s ease-in-out;
}
.search-three.is-primary .search-three__layout {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.search-three.is-secondary .search-three__layout {
  backdrop-filter: blur(10px);
  border-color: hsl(var(--bh), var(--bs), var(--bl));
  background-color: hsla(var(--bh), var(--bs), var(--bl), 0.75);
}
.search-three__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: calc(38px - 6px);
  width: calc(38px - 6px);
  margin: 3px;
  border-radius: 50%;
  border: unset;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  outline: none;
  cursor: pointer;
  z-index: 1;
}
.search-three__button .icon-search {
  display: block;
  width: 18px;
  height: 18px;
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.search-three__loader {
  position: absolute;
  top: 50%;
  right: calc(38px + 0.6rem);
  visibility: hidden;
  transform: translateY(-50%);
  opacity: 0;
  z-index: 1;
}
.search-three__loader.is-active {
  visibility: visible;
  opacity: 1;
}
.search-three__dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  display: block;
  width: 100%;
  border-radius: var(--border-radius-normal);
  box-shadow: var(--shadow-light);
  transition: all 0.2s ease;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  z-index: 220;
}
.search-three__dropdown.is-active {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  top: calc(100% + 10px);
}
.search-three__dropdown-inner {
  max-height: 320px;
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-normal);
  overflow-y: auto;
  clip-path: inset(0 round var(--border-radius-normal));
}
.search-three__dropdown-inner::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.search-three__dropdown-inner::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  margin-left: 5px;
}
.search-three__cross {
  position: absolute;
  top: 50%;
  right: 40px;
  padding: 8px;
  visibility: hidden;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  z-index: 1;
}
.search-three__cross.is-active {
  visibility: visible;
  opacity: 1;
}
.search-three__cross .core-cross {
  display: block;
  width: 10px;
  height: 10px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.search-three__header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 1rem;
  box-sizing: border-box;
  background-color: hsl(var(--ah), var(--as), var(--al));
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  color: hsl(var(--th), var(--ts), var(--tl));
  font-size: 0.95em;
}
.search-three__header > a {
  margin-left: 1rem;
}
.search-three__header-link {
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.search-three__dropdown-link {
  display: grid;
  grid-gap: 1rem;
  align-items: center;
  height: 90px;
  padding: 0 1rem;
  box-sizing: border-box;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: background-color 0.25s ease;
}
.search-three__dropdown-link:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.search-three__dropdown-link:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.search-three__dropdown-link:focus {
  outline: none;
}
.search-three__dropdown-image {
  display: none;
  flex: none;
  width: 65px;
  height: 65px;
  text-align: center;
}
.search-three__dropdown-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: var(--border-radius-small);
  overflow: hidden;
}
.search-three__dropdown-name {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}
.search-three__dropdown-price {
  font-size: 15px;
  line-height: 15px;
  font-weight: 600;
}
@media (min-width: 1200px) {
  .search-three__dropdown-image {
    display: block;
  }
  .search-three__dropdown-link {
    grid-template-columns: auto 1fr;
  }
}
.search-two {
  width: 100%;
}
.search-two > form {
  position: relative;
}
.search-two__input {
  width: 100%;
  min-height: 38px;
  padding: 0.2rem 3rem 0.2rem calc(1rem + 38px);
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  border-width: 1px;
  border-style: solid;
  font-size: 0.95em;
  font-family: inherit;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.search-two__input.is-active,
.search-two__input:focus {
  outline: none;
}
.search-two.is-primary .search-two__input {
  background-color: hsl(var(--ah), var(--as), var(--al));
  border-color: hsl(var(--ah), var(--as), var(--al));
  color: hsl(var(--th), var(--ts), var(--tl));
}
.search-two.is-primary .search-two__input::placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.search-two.is-primary .search-two__input.is-active,
.search-two.is-primary .search-two__input:focus {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  box-shadow: 0 0 0 1px hsl(var(--ph), var(--ps), var(--pl));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.search-two.is-secondary .search-two__input {
  backdrop-filter: blur(10px);
  background-color: hsla(var(--bh), var(--bs), var(--bl), 0.2);
  border-color: hsla(var(--bh), var(--bs), var(--bl), 0.3);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.search-two.is-secondary .search-two__input::placeholder {
  color: hsla(var(--bh), var(--bs), var(--bl), 0.75);
}
.search-two.is-secondary .search-two__input.is-active,
.search-two.is-secondary .search-two__input:focus {
  border-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: 0 0 1px 1px hsl(var(--bh), var(--bs), var(--bl));
}
.search-two__loader {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  visibility: hidden;
  transform: translateY(-50%);
  opacity: 0;
  z-index: 1;
}
.search-two__loader.is-active {
  visibility: visible;
  opacity: 1;
}
.search-two__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: unset;
  background-color: transparent;
  cursor: pointer;
}
.search-two__button .icon-search {
  display: block;
  width: 18px;
  height: 18px;
}
.search-two.is-primary .search-two__button .icon-search {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.search-two.is-secondary .search-two__button .icon-search {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.search-two__dropdown {
  position: absolute;
  top: calc(100% + 20px);
  left: 0;
  display: block;
  width: 100%;
  border-radius: var(--border-radius-small);
  box-shadow: var(--shadow-light);
  transition: all 0.2s ease;
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  z-index: 220;
}
.search-two__dropdown.is-active {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  top: calc(100% + 10px);
}
.search-two__dropdown-inner {
  max-height: 320px;
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: var(--border-radius-small);
  overflow-y: auto;
  clip-path: inset(0 round var(--border-radius-small));
}
.search-two__dropdown-inner::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.search-two__dropdown-inner::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  margin-left: 5px;
}
.search-two__cross {
  position: absolute;
  top: 50%;
  right: 0.6rem;
  padding: 8px;
  visibility: hidden;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 0;
  z-index: 1;
}
.search-two__cross.is-active {
  visibility: visible;
  opacity: 1;
}
.search-two__cross .core-cross {
  display: block;
  width: 10px;
  height: 10px;
}
.search-two.is-primary .search-two__cross .core-cross {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.search-two.is-secondary .search-two__cross .core-cross {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.search-two__header {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  padding: 0 1rem;
  box-sizing: border-box;
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--ah), var(--as), var(--al));
  color: hsl(var(--th), var(--ts), var(--tl));
  font-size: 0.95em;
}
.search-two__header > a {
  margin-left: 1rem;
}
.search-two__header-link {
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.search-two__dropdown-link {
  display: grid;
  grid-gap: 1rem;
  align-items: center;
  height: 90px;
  padding: 0 1rem;
  box-sizing: border-box;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: background-color 0.25s ease;
}
.search-two__dropdown-link:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.search-two__dropdown-link:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.search-two__dropdown-link:focus {
  outline: none;
}
.search-two__dropdown-image {
  display: none;
  flex: none;
  width: 65px;
  height: 65px;
  text-align: center;
}
.search-two__dropdown-image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: var(--border-radius-small);
  overflow: hidden;
}
.search-two__dropdown-name {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}
.search-two__dropdown-price {
  font-size: 15px;
  line-height: 15px;
  font-weight: 600;
}
@media (min-width: 992px) {
  .search-two__input {
    min-height: 42px;
  }
}
@media (min-width: 1200px) {
  .search-two__dropdown-image {
    display: block;
  }
  .search-two__dropdown-link {
    grid-template-columns: auto 1fr;
  }
}
.separator {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  z-index: 1;
}
.separator__waves {
  display: block;
  width: 100%;
  height: 70px;
  margin-bottom: -7px;
  /*Fix for safari gap*/
  min-height: 100px;
  max-height: 150px;
}
.separator__parallax > use {
  animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
}
.separator__parallax > use:nth-child(1) {
  animation-delay: -2s;
  animation-duration: 7s;
  opacity: 0.7;
}
.separator__parallax > use:nth-child(2) {
  animation-delay: -3s;
  animation-duration: 10s;
  opacity: 0.5;
}
.separator__parallax > use:nth-child(3) {
  animation-delay: -4s;
  animation-duration: 13s;
  opacity: 0.3;
}
.separator__parallax > use:nth-child(4) {
  animation-delay: -5s;
  animation-duration: 20s;
}
.separator__parallax.is-primary > use {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.separator__parallax.is-secondary > use {
  fill: hsl(var(--ah), var(--as), var(--al));
}
.separator__parallax.is-semitone > use {
  fill: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.separator__parallax.is-inverse > use {
  fill: hsl(var(--ih), var(--is), var(--il));
}
.separator__arc {
  display: block;
  width: 100%;
  height: 55px;
  margin-bottom: -5px;
}
.separator__arc.is-primary {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.separator__arc.is-secondary {
  fill: hsl(var(--ah), var(--as), var(--al));
}
.separator__arc.is-semitone {
  fill: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.separator__arc.is-inverse {
  fill: hsl(var(--ih), var(--is), var(--il));
}
@media (max-width: 768px) {
  .separator__waves {
    height: 30px;
    min-height: 30px;
  }
  .separator__arc {
    height: 30px;
  }
}
.side-buttons {
  display: none;
}
.side-buttons--gap {
  margin-bottom: var(--gap);
}
.side-buttons__list {
  display: flex;
  flex-direction: column;
  border-top-left-radius: var(--border-radius-small);
  border-bottom-left-radius: var(--border-radius-small);
  background: linear-gradient(180deg, hsla(var(--ah), var(--as), calc(var(--al) - 8%), 0.3) 0, hsla(var(--bh), var(--bs), var(--bl), 0) 100%);
  background-color: hsla(var(--ah), var(--as), calc(var(--al) + 2%), 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-right: unset;
  pointer-events: auto;
}
.side-buttons__item-wrapper:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.side-buttons__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border: unset;
  background-color: unset;
  cursor: pointer;
}
.side-buttons__item > svg {
  display: block;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: pointer;
}
.side-buttons__item:focus {
  outline: none;
}
.side-buttons__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.side-buttons__icon > svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.side-buttons__icon .icon-compare {
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.side-buttons__icon .icon-compare__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.side-buttons__counter {
  position: absolute;
  right: -10px;
  top: -6px;
  display: none;
  align-items: center;
  justify-content: center;
  height: 17px;
  min-width: 17px;
  padding: 0 5px;
  box-sizing: border-box;
  background-color: hsl(var(--sh), var(--ss), var(--sl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 12px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  word-break: keep-all;
}
.side-buttons__counter.is-active {
  display: flex;
}
@media (min-width: 1600px) {
  .side-buttons {
    position: fixed;
    right: 0;
    top: 0;
    display: grid;
    place-items: center;
    height: 100%;
    pointer-events: none;
    z-index: 140;
  }
}
.sidebar-banner {
  position: relative;
  display: block;
  border-radius: var(--border-radius-small);
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  overflow: hidden;
}
.sidebar-banner__image {
  display: block;
  max-width: 100%;
}
.sidebar-banner__icon {
  position: absolute;
  bottom: 1.6rem;
  right: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  box-sizing: border-box;
  border: 1px solid hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 50%;
}
.sidebar-banner__icon .icon-arrow-top-right {
  display: block;
  width: 20px;
  height: 20px;
  transform: rotate(45deg);
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.sidebar-banner__sticker {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
}
.sidebar-contacts {
  padding: 0 1.4rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.sidebar-contacts__title {
  position: relative;
  display: block;
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  padding: 1rem 0;
  line-height: 1.45em;
  font-weight: 600;
}
.sidebar-contacts__title::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  height: 1px;
  width: 30px;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.sidebar-contacts__list {
  padding: 1.4rem 0;
}
.sidebar-contacts__item:not(:last-of-type) {
  margin-bottom: 1rem;
}
.sidebar-contacts__name {
  display: inline-block;
  margin-bottom: 5px;
  padding: 5px 10px;
  background-color: hsl(var(--ah), var(--as), var(--al));
  color: hsl(var(--th), var(--ts), var(--tl));
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--border-radius-small);
}
.sidebar-contacts__value {
  display: block;
  font-size: 16px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.sidebar-cta {
  display: flex;
  flex-direction: column;
  padding: 0 1.45em;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.sidebar-cta__title {
  position: relative;
  display: block;
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  padding: 1rem 0;
  line-height: 1.45em;
  font-weight: 600;
}
.sidebar-cta__title::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  height: 1px;
  width: 30px;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.sidebar-cta__content {
  padding: 1rem 0 1.4rem;
}
.sidebar-cta__text {
  display: block;
  font-size: 16px;
  line-height: 1.45em;
  text-align: center;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.sidebar-cta__button {
  display: block;
  margin-top: 1rem;
}
.sidebar-cta__button > div {
  display: flex;
  justify-content: center;
}
.sidebar-cta__button .element {
  width: 100%;
}
.sidebar-list {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.sidebar-list__item {
  padding: 1.4rem;
}
.sidebar-list__item:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.sidebar-list__header {
  display: flex;
  align-items: center;
  margin-bottom: var(--gap-small);
}
.sidebar-list__title {
  line-height: 1.45em;
  font-weight: 600;
}
.sidebar-list__text {
  display: block;
  font-size: 16px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.sidebar-list__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}
.sidebar-list__icon .icon-set {
  width: 34px;
  height: 34px;
  fill: hsl(211, 20%, 42%);
}
.sidebar-list__icon > img {
  display: block;
  max-width: 24px;
  height: auto;
}
.sidebar-news {
  padding: 0 1.4rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.sidebar-news__error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 1.4rem 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.sidebar-news__title {
  position: relative;
  display: block;
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  padding: 1rem 0;
  line-height: 1.45em;
  font-weight: 600;
}
.sidebar-news__title::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  height: 1px;
  width: 30px;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.sidebar-news__post {
  display: block;
  padding: 1rem 0;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.sidebar-news__post:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.sidebar-news__name {
  display: block;
  font-size: 16px;
  line-height: 1.45em;
}
.sidebar-news__date {
  display: block;
  margin-top: 5px;
  font-size: 15px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.sidebar-photos {
  padding: 0 1.4rem 1.4rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.sidebar-photos__error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.sidebar-photos__title {
  display: block;
  padding: 1rem 0;
  line-height: 1.45em;
  font-weight: 600;
}
.sidebar-photos__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.sidebar-photos__item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.sidebar-photos__item > svg {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 30px;
  height: 30px;
  fill: hsl(var(--bh), var(--bs), var(--bl));
  transform: translate(-50%, -50%) scale(0.5);
  transition: 0.2s ease;
  opacity: 0;
  pointer-events: none;
}
.sidebar-photos__item:hover > svg {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.sidebar-photos__item:focus {
  outline: none;
}
.sidebar-photos__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 0;
  border-radius: var(--border-radius-small);
  transition: filter 0.2s ease;
}
.sidebar-photos__image:hover {
  filter: brightness(80%);
}
.sidebar-photos__link {
  display: inline-block;
  padding: 5px 10px;
  margin-top: 1.2rem;
  background-color: hsl(var(--ah), var(--as), var(--al));
  color: hsl(var(--th), var(--ts), var(--tl));
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  text-decoration: none;
  border-radius: var(--border-radius-small);
}
.sidebar-products {
  padding: 0 1.4rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.sidebar-products__error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 1.4rem 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.sidebar-products__title {
  position: relative;
  display: block;
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  padding: 1rem 0;
  line-height: 1.45em;
  font-weight: 600;
}
.sidebar-products__title::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  height: 1px;
  width: 30px;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.sidebar-products__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  grid-gap: 10px;
  align-items: start;
  padding: 1rem 0;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.sidebar-products__item:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.sidebar-products__image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
}
.sidebar-products__image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--border-radius-small);
  font-size: 0;
}
.sidebar-products__name {
  display: block;
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.sidebar-tags {
  padding: 0 1.45em;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.sidebar-tags__error {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  padding: 1.4rem 0;
  box-sizing: border-box;
  text-align: center;
  font-size: 16px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.sidebar-tags__title {
  position: relative;
  display: block;
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  padding: 1rem 0;
  line-height: 1.45em;
  font-weight: 600;
}
.sidebar-tags__title::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 0;
  display: block;
  height: 1px;
  width: 30px;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.sidebar-tags__list {
  padding: 1.2rem 0 1.4rem;
  margin-top: -8px;
  overflow: hidden;
}
.sidebar-tags__item {
  display: inline-block;
  padding: 6px 12px;
  margin-right: 8px;
  margin-top: 8px;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  font-size: 16px;
  line-height: 16px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: var(--border-radius-small);
}
.sidebar {
  display: flex;
  flex-direction: column;
}
.sidebar__item {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}
.sidebar__item:not(:last-of-type) {
  margin-bottom: 1rem;
}
.sidebar__frame {
  padding: 1.4rem;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
@media (min-width: 992px) {
  .sidebar__item {
    max-width: 340px;
  }
}
.slide-one {
  position: relative;
  border-radius: var(--border-radius-normal);
  overflow: hidden;
}
.slide-one__image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.slide-one__image-mobile,
.slide-one__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 0;
}
.slide-one__image-mobile {
  display: block;
}
.slide-one__image {
  display: none;
}
.slide-one__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
}
.slide-one__video {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.slide-one__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 450px;
  padding: 1.6rem 1.6rem 2rem 1.6rem;
  box-sizing: border-box;
}
.slide-one__content.is-primary {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.slide-one__content.is-secondary {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.slide-one__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dim);
}
.slide-one__name {
  max-width: 600px;
  margin-bottom: var(--gap);
  font-size: var(--title-font-size);
  font-weight: 600;
  line-height: calc(1em + 12px);
}
.slide-one__text {
  display: block;
  max-width: 600px;
  margin-bottom: var(--gap);
  font-size: 0.95em;
  line-height: 1.45em;
}
@media (min-width: 768px) {
  .slide-one__content {
    padding: 2rem;
  }
  .slide-one__text {
    font-size: 1em;
  }
  .slide-one__image-mobile {
    display: none;
  }
  .slide-one__image {
    display: block;
  }
}
@media (min-width: 992px) {
  .slide-one__content {
    padding: 4rem 5rem;
  }
  .slide-one__name.is-bold {
    font-weight: 700;
  }
}
@media (min-width: 1200px) {
  .slide-one__content {
    padding: 4rem 6rem;
  }
}
.social-one.is-secondary .social-one__item > svg {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 30%));
}
.social-one--gap {
  margin-bottom: var(--gap);
}
.social-one__wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: -10px;
}
.social-one__item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  margin-top: 10px;
}
.social-one__item > svg {
  display: block;
  width: 30px;
  height: 30px;
}
.step-one {
  display: flex;
  flex-direction: column;
}
.step-one--gap {
  margin-bottom: var(--gap);
}
.step-one__name {
  margin-bottom: var(--gap-small);
  font-size: var(--name-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.step-one__text {
  margin-bottom: var(--gap-small);
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.step-one__counter-wrapper {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 1rem;
  align-items: center;
  margin-top: auto;
}
.step-one__counter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: var(--border-radius-large);
  background-color: hsl(var(--ih), var(--is), var(--il));
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-weight: 700;
}
.step-one__line {
  border-bottom: 2px dotted hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.sticker-one {
  position: relative;
  display: inline-block;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.sticker-one--gap {
  margin-bottom: var(--gap);
}
.sticker-one__name-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 30px;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-light);
}
.sticker-one__name-wrapper .icon-dots {
  display: block;
  width: 10px;
  height: 10px;
  transform: rotate(90deg);
}
.sticker-one__name {
  display: inline-block;
  margin-right: 3px;
  font-size: 14px;
  line-height: 1.2em;
}
.sticker-one__dropdown-wrapper {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.2s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  top: 100%;
  padding-top: var(--gap-small);
}
.sticker-one__dropdown-wrapper.is-left {
  left: -5px;
}
.sticker-one__dropdown-wrapper.is-right {
  right: -5px;
}
.sticker-one__name-wrapper:hover > .sticker-one__dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sticker-one__dropdown {
  position: relative;
  max-width: 400px;
  min-width: 200px;
  padding: 0.5rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-size: 14px;
  line-height: 1.45em;
}
.sticker-one__dropdown::before {
  content: '';
  position: absolute;
  display: block;
  height: 6px;
  width: 6px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--th), var(--ts), var(--tl));
}
.sticker-one__dropdown.is-left::before {
  top: -3px;
  left: 20px;
}
.sticker-one__dropdown.is-right::before {
  top: -3px;
  right: 20px;
}
.sticky-navigation {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 65px;
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: 0 -1px 5px hsla(0, 0%, 0%, 0.15);
  overflow: hidden;
  z-index: 140;
}
.sticky-navigation__item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 25%;
  padding: 0 5px;
  box-sizing: border-box;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.sticky-navigation__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticky-navigation__icon > svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.sticky-navigation__icon .icon-compare {
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.sticky-navigation__icon .icon-compare__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.sticky-navigation__counter {
  position: absolute;
  right: -10px;
  top: -6px;
  display: none;
  align-items: center;
  justify-content: center;
  height: 17px;
  min-width: 17px;
  padding: 0 5px;
  box-sizing: border-box;
  background-color: hsl(var(--sh), var(--ss), var(--sl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 12px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  word-break: keep-all;
}
.sticky-navigation__counter.is-active {
  display: flex;
}
.sticky-navigation__name {
  display: block;
  font-size: 14px;
}
@media (min-width: 992px) {
  .sticky-navigation {
    display: none;
  }
}
.stocks {
  display: inline-block;
  white-space: nowrap;
}
.stocks.is-small .stocks__wrapper {
  grid-gap: 6px;
}
.stocks.is-small .stocks__text {
  font-size: 15px;
}
.stocks.is-small .stocks__icon {
  padding: 4px;
}
.stocks.is-small .stocks__icon svg {
  width: 8px;
  height: 8px;
}
.stocks.is-medium .stocks__wrapper {
  grid-gap: 10px;
}
.stocks.is-medium .stocks__text {
  font-size: 1em;
}
.stocks.is-medium .stocks__icon {
  padding: 5px;
}
.stocks.is-medium .stocks__icon svg {
  width: 10px;
  height: 10px;
}
.stocks.is-hidden {
  display: none;
}
.stocks__wrapper {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}
.stocks__wrapper.is-preorder .stocks__icon {
  background-color: hsl(40, 100%, 50%);
}
.stocks__wrapper.is-preorder .stocks__icon svg {
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.stocks__wrapper.is-instock .stocks__icon {
  background-color: hsl(118, 53%, 43%);
}
.stocks__wrapper.is-instock .stocks__icon svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.stocks__wrapper.is-outofstock .stocks__icon {
  background-color: hsl(0, 97%, 69%);
}
.stocks__wrapper.is-outofstock .stocks__icon svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.stocks__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.stocks__text {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.tag-one {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 16px;
  box-sizing: border-box;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  font-size: 16px;
  line-height: 1.45em;
  text-decoration: none;
  vertical-align: baseline;
  border-radius: var(--border-radius-small);
}
.tag-one--gap {
  margin-bottom: var(--gap);
}
.teaser-one {
  position: relative;
  display: flex;
  flex-direction: column;
  max-width: 550px;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.teaser-one--gap {
  margin-bottom: var(--gap);
}
.teaser-one__image-container {
  position: relative;
  display: flex;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border: 7px solid hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  box-shadow: 0 1px 5px hsla(var(--th), var(--ts), var(--tl), 0.1);
  isolation: isolate;
  cursor: pointer;
  overflow: hidden;
}
.teaser-one__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  object-fit: cover;
}
.teaser-one__button {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  padding: 0;
  border: none;
  font: inherit;
  background-color: transparent;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 1;
}
.teaser-one__button .icon-video {
  display: block;
  transition: all 0.125s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 54px;
}
.teaser-one__button .icon-video__shape {
  fill: hsl(var(--th), var(--ts), var(--tl));
  fill-opacity: 0.7;
  transition: all 0.125s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.teaser-one__button .icon-video__icon {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.teaser-one__button:hover .icon-video__shape {
  fill: red;
  fill-opacity: 1;
}
.teaser-one__credentials {
  display: flex;
  margin-top: 1rem;
}
.teaser-one__avatar {
  flex-shrink: 0;
  display: block;
  height: 40px;
  width: 40px;
  margin-right: 1rem;
  overflow: hidden;
  border-radius: 50%;
}
.teaser-one__avatar > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teaser-one__wrapper > :not(:last-child) {
  margin-bottom: 5px;
}
.teaser-one__name {
  display: block;
  font-size: var(--name-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.teaser-one__text {
  display: block;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  text-decoration: none;
}
@media (min-width: 768px) {
  .teaser-one__avatar {
    height: 45px;
    width: 45px;
  }
}
.text {
  display: block;
}
.text--small {
  font-size: 0.9em;
  line-height: 1.45em;
}
.text--medium {
  font-size: 0.95em;
  line-height: 1.45em;
}
.text--large {
  font-size: 1.05em;
  line-height: 1.45em;
}
.text--gap {
  margin-bottom: var(--gap);
}
.text--left {
  margin-right: auto;
  text-align: left;
}
.text--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.text--right {
  margin-left: auto;
  text-align: right;
}
.text p {
  margin-bottom: 20px;
}
.text a {
  color: hsl(var(--th), var(--ts), var(--tl));
}
@media (min-width: 768px) {
  .text--medium {
    font-size: 1em;
  }
  .text--large {
    font-size: 1.1em;
  }
  .text--3,
  .text--2 {
    column-count: 2;
  }
}
@media (min-width: 992px) {
  .text--3 {
    column-count: 3;
  }
}
.title {
  display: block;
  max-width: 800px;
  line-height: calc(1em + 12px);
  font-weight: 600;
}
.title--extra {
  font-size: 42px;
}
.title--big {
  font-size: 34px;
}
.title--medium {
  font-size: 26px;
}
.title--small {
  font-size: 22px;
}
.title--tiny {
  font-size: 18px;
}
.title--gap {
  margin-bottom: var(--gap);
}
.title--left {
  margin-right: auto;
  text-align: left;
}
.title--center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.title--right {
  margin-left: auto;
  text-align: right;
}
.title .is-highlighted {
  position: relative;
  display: inline-block;
}
.title .is-highlighted > svg {
  position: absolute;
  bottom: -0.125em;
  left: 0;
  width: 100%;
  height: auto;
  max-height: 0.475em;
  transition-delay: inherit;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
@media (min-width: 768px) {
  .title--extra {
    font-size: 44px;
  }
  .title--big {
    font-size: 36px;
  }
  .title--medium {
    font-size: 28px;
  }
  .title--small {
    font-size: 24px;
  }
  .title--tiny {
    font-size: 20px;
  }
}
@media (min-width: 992px) {
  .title--extra {
    font-size: 46px;
  }
  .title--big {
    font-size: 38px;
  }
  .title--medium {
    font-size: 30px;
  }
  .title--small {
    font-size: 26px;
  }
  .title--tiny {
    font-size: 22px;
  }
  .title--bold {
    font-weight: 700;
  }
}
@media (min-width: 1300px) {
  .title--extra {
    font-size: 48px;
  }
  .title--big {
    font-size: 40px;
  }
  .title--medium {
    font-size: 32px;
  }
  .title--small {
    font-size: 28px;
  }
  .title--tiny {
    font-size: 24px;
  }
}
.tooltip-one {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-modal);
  position: absolute;
  display: none;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-small);
  white-space: nowrap;
  font-size: 0.95em;
  z-index: 155;
}
.tooltip-one::before {
  content: '';
  position: absolute;
  display: block;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  transform: translateX(-50%) rotate(45deg);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-top: 1px solid hsl(0, 6%, 94%);
  border-left: 1px solid hsl(0, 6%, 94%);
}
.tooltip-one--gap {
  margin-bottom: var(--gap);
}
.tooltip-one::before {
  border-color: hsl(0, 6%, 94%);
  border-style: solid;
}
.tooltip-one.is-bottom-left {
  top: 100%;
  right: -1rem;
  margin-top: 15px;
}
.tooltip-one.is-bottom-left::before {
  top: -5px;
  right: 1rem;
  border-width: 1px 0 0 1px;
}
.tooltip-one.is-bottom {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 15px;
}
.tooltip-one.is-bottom::before {
  top: -5px;
  left: 50%;
  border-width: 1px 0 0 1px;
}
.tooltip-one.is-bottom-right {
  top: 100%;
  left: -1rem;
  margin-top: 15px;
}
.tooltip-one.is-bottom-right::before {
  top: -5px;
  left: 1.5rem;
  border-width: 1px 0 0 1px;
}
.tooltip-one.is-top-left {
  bottom: 100%;
  right: -1rem;
  margin-bottom: 15px;
}
.tooltip-one.is-top-left::before {
  bottom: -5px;
  right: 1rem;
  border-width: 0 1px 1px 0;
}
.tooltip-one.is-top {
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 15px;
}
.tooltip-one.is-top::before {
  bottom: -5px;
  left: 50%;
  border-width: 0 1px 1px 0;
}
.tooltip-one.is-top-right {
  bottom: 100%;
  left: -1rem;
  margin-bottom: 15px;
}
.tooltip-one.is-top-right::before {
  bottom: -5px;
  left: 1.5rem;
  border-width: 0 1px 1px 0;
}
.tooltip-one.is-left {
  right: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-right: 15px;
}
.tooltip-one.is-left::before {
  top: 50%;
  right: -5px;
  transform: translateY(-50%) rotate(45deg);
  border-width: 1px 1px 0 0;
}
.tooltip-one.is-right {
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 15px;
}
.tooltip-one.is-right::before {
  top: 50%;
  left: -5px;
  transform: translateY(-50%) rotate(45deg);
  border-width: 0 0 1px 1px;
}
.tooltip-one__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
}
.tooltip-one__trigger:hover .tooltip-one {
  display: block;
}
.top-bar {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 45px;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  text-decoration: none;
  overflow: hidden;
}
.top-bar:not(.is-marquee) {
  display: none;
}
.top-bar__item {
  display: flex;
  align-items: center;
  padding: 10px 1rem;
  font-size: 0.95em;
}
.top-bar__item > svg {
  margin-right: 1rem;
  fill: hsl(var(--bh), var(--bs), var(--bl));
  flex-shrink: 0;
}
.top-bar__close {
  position: absolute;
  top: 50%;
  right: 0.5rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: transparent;
  border: unset;
  cursor: pointer;
}
.top-bar__close > svg {
  width: 11px;
  height: 11px;
  fill: hsl(var(--bh), var(--bs), var(--bl));
  opacity: 0.8;
  transition: 0.3s ease;
}
.top-bar__close:hover > svg {
  opacity: 1;
}
@media (min-width: 768px) {
  .top-bar:not(.is-marquee) {
    display: flex;
  }
  .top-bar__close {
    right: 1.5rem;
  }
}
.tracker-one {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.tracker-one.is-small .tracker-one__value {
  font-size: 0.9em;
}
.tracker-one.is-small > svg {
  width: 19px;
  height: 19px;
}
.tracker-one.is-medium .tracker-one__value {
  font-size: 0.95em;
}
.tracker-one.is-medium > svg {
  width: 22px;
  height: 22px;
}
.tracker-one.is-large .tracker-one__value {
  font-size: 1em;
}
.tracker-one.is-large > svg {
  width: 26px;
  height: 26px;
}
.tracker-one--gap {
  margin-bottom: var(--gap);
}
.tracker-one__value {
  line-height: 1.4em;
}
.tracker-one > svg {
  flex-shrink: 0;
  display: block;
  margin-right: 8px;
  fill: currentColor;
}
.video-one {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 30px;
  background-color: hsl(var(--ah), var(--as), var(--al));
  color: hsl(var(--th), var(--ts), var(--tl));
  cursor: pointer;
}
.video-one--gap {
  margin-bottom: var(--gap);
}
.video-one__button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.video-one__button .icon-play {
  width: 12px;
  height: 12px;
  margin-right: -4px;
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.video-one__button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  border-radius: 50%;
  border: 1px solid hsl(var(--ph), var(--ps), var(--pl));
  opacity: 0;
  transform: scale(1);
  animation: pulse 1.5s linear 0s infinite;
  transform-origin: center;
}
.video-one__content {
  display: flex;
  flex-direction: column;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 0.9em;
}
.video-one__text {
  font-weight: 600;
}
.video-one__description {
  opacity: 0.7;
}
.video-one__description.is-error {
  color: hsl(0, 97%, 69%);
  opacity: 1;
}
.wa-captcha p:first-of-type {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 10px;
  margin-bottom: 5px;
}
.wa-captcha p:first-of-type .wa-captcha-input {
  width: 150px;
  min-width: 150px !important;
}
.wa-captcha strong {
  display: none;
}
.wa-captcha-input {
  display: inline-block;
  min-height: 42px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.6rem 1rem;
  box-sizing: border-box;
  appearance: none;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: var(--border-radius-small);
  font-size: 0.95em;
  font-family: inherit;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  margin-bottom: 10px;
}
.wa-captcha-input:hover:not(:disabled):not(:focus) {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.wa-captcha-input:hover:focus {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.wa-captcha-input:focus {
  outline: none;
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  box-shadow: 0 0 1px 1px hsl(var(--ph), var(--ps), var(--pl));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.wa-captcha-input:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.wa-captcha-input.is-error,
.wa-captcha-input.error:hover,
.wa-captcha-input.error:focus,
.wa-captcha-input.error,
.wa-captcha-input.wa-error {
  border-color: hsl(0, 97%, 69%);
  box-shadow: 0 0 1px 1px hsl(0, 97%, 69%);
}
.wa-captcha-input::-webkit-input-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.wa-captcha-input:-moz-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.wa-captcha-img {
  display: block;
  height: 42px;
  margin: 1px 0;
}
.wa-captcha-refresh {
  font-size: 0.85em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.wa-captcha-refresh:focus {
  outline: none;
}
@media (min-width: 768px) {
  .wa-captcha-section {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 15px;
    align-items: start;
  }
  .wa-captcha-input {
    min-height: 46px;
    margin-bottom: unset;
  }
  .wa-captcha-img {
    height: 46px;
  }
}
.layout-error__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.layout-error__code {
  margin-bottom: var(--gap);
  font-size: var(--title-font-size);
  line-height: calc(1em + 12px);
  font-weight: 600;
}
.layout-error .icon-404 {
  width: 300px;
  height: 112px;
  margin-bottom: var(--gap);
}
.layout-error .icon-404__tile-0 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.layout-error .icon-404__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 30%));
}
.layout-error .icon-404__tile-2 {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
@media (min-width: 768px) {
  .layout-error .icon-404 {
    width: 500px;
    height: 187px;
  }
}
@media (min-width: 992px) {
  .layout-error__code.is-bold {
    font-weight: 700;
  }
}
.layout-main {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.layout-main__grid {
  display: grid;
  align-items: start;
}
.layout-main__grid.has-sidebar {
  grid-gap: 2rem;
}
.layout-main__sidebar,
.layout-main__content {
  min-width: 0;
}
.layout-main__header {
  margin-bottom: var(--gap-extended);
  padding-bottom: 2rem;
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.layout-main__header > :not(:last-child) {
  margin-bottom: var(--gap);
}
.layout-main__title {
  display: block;
  max-width: 800px;
  font-size: 26px;
  line-height: 1.45em;
  font-weight: 600;
}
.layout-main__subpages-wrapper {
  margin-bottom: var(--gap-extended);
}
.layout-main__subpages {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--gap-small));
  margin-right: calc(-0.5 * var(--gap-small));
  margin-left: calc(-0.5 * var(--gap-small));
}
.layout-main__subpage {
  flex: 0 0 auto;
  padding-right: calc(var(--gap-small) * 0.5);
  padding-left: calc(var(--gap-small) * 0.5);
  margin-top: var(--gap-small);
  box-sizing: border-box;
}
.layout-main__subpage-link {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0.4rem 1rem;
  margin: 1px;
  box-sizing: border-box;
  border: 1px solid transparent;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: 0.2s ease;
  outline: none;
  cursor: pointer;
}
.layout-main__subpage-link:hover {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  box-shadow: 0 0 1px 1px hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.layout-main__subpage-name {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 0.95em;
  line-height: 1.45em;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}
@media (max-width: 479px) {
  .layout-main__subpage {
    width: 100%;
  }
}
@media (min-width: 480px) {
  .layout-main__subpage-link {
    max-width: 340px;
  }
}
@media (min-width: 768px) {
  .layout-main__title {
    font-size: 28px;
  }
}
@media (min-width: 992px) {
  .layout-main__header {
    padding-bottom: unset;
    border-bottom: unset;
  }
  .layout-main__title {
    font-size: 30px;
  }
  .layout-main__title.is-bold {
    font-weight: 700;
  }
  .layout-main__grid.has-sidebar.is-left {
    grid-template-columns: 340px 1fr;
  }
  .layout-main__grid.has-sidebar.is-left .layout-main__sidebar {
    order: 1;
  }
  .layout-main__grid.has-sidebar.is-left .layout-main__content {
    order: 2;
  }
  .layout-main__grid.has-sidebar.is-right {
    grid-template-columns: 1fr 340px;
  }
}
@media (min-width: 1300px) {
  .layout-main__title {
    font-size: 32px;
  }
  .layout-main__grid.has-sidebar {
    grid-gap: 3rem;
  }
}
.layout-maintain__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}
.layout-maintain .icon-maintain {
  width: 220px;
  height: 220px;
  margin-bottom: var(--gap);
}
.layout-maintain .icon-maintain__tile-0 {
  fill: hsla(var(--ah), var(--as), calc(var(--al) - 15%), 0.15);
}
.layout-maintain .icon-maintain__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 35%));
}
.layout-maintain .icon-maintain__tile-2 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 2%));
}
.layout-maintain .icon-maintain__tile-3 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.layout-maintain .icon-maintain__tile-4 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
@media (min-width: 768px) {
  .layout-maintain .icon-maintain {
    width: 280px;
    height: 280px;
  }
}
.layout-page {
  padding: 1rem;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: var(--border-radius-normal);
  text-align: center;
}
@media (min-width: 768px) {
  .layout-page {
    padding: 3.5rem 1.5rem;
  }
}
.layout-search {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.layout-search__header {
  margin-bottom: 2rem;
}
.layout-search__header > :not(:last-child) {
  margin-bottom: var(--gap);
}
.layout-search__list {
  display: grid;
  grid-gap: var(--gap);
}
.layout-search__link {
  display: block;
  padding: 1rem;
  border-radius: var(--border-radius-normal);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  line-height: 1.45em;
}
.layout-search__name {
  display: block;
  font-size: var(--name-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.layout-search__content {
  display: block;
  margin-top: var(--gap-small);
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.layout-search__error {
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
}
@media (min-width: 768px) {
  .layout-search__link {
    padding: 1.5rem;
  }
}
@media (min-width: 992px) {
  .layout-search__header {
    margin-bottom: 3rem;
  }
}
