.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(44, 93%, 72%);
  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;
}
@keyframes preloader {
  0% {
    transform: scale(0.5);
    opacity: 0.5;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes preloader-reverse {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.5);
    opacity: 0.5;
  }
}
@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes rotation {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  10% {
    transform: translate(-50%, -50%) rotate(20deg);
  }
  20% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  30% {
    transform: translate(-50%, -50%) rotate(10deg);
  }
  40% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
}
@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 sk-bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}
@keyframes rythmic-pulse {
  0% {
    transform: scale(1);
    opacity: 0;
  }
  20% {
    transform: scale(1.24);
    opacity: 1;
  }
  100% {
    transform: scale(2.1);
    opacity: 0;
  }
}
@keyframes shadow-code {
  0% {
    text-shadow: -8px 2px 4px #d5d5d5, -14px 4px 4px rgba(0, 0, 0, 0.2);
  }
  100% {
    text-shadow: 8px 2px 4px #d5d5d5, 14px 4px 4px rgba(0, 0, 0, 0.2);
  }
}
@keyframes shadow-text {
  0% {
    text-shadow: -2px 1px 4px #d5d5d5, -3px 2px 4px rgba(0, 0, 0, 0.2);
  }
  100% {
    text-shadow: 2px 1px 4px #d5d5d5, 3px 2px 4px rgba(0, 0, 0, 0.2);
  }
}
@keyframes ripple {
  0% {
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    width: 200%;
    padding-bottom: 200%;
    opacity: 0;
  }
}
@keyframes puff-in-popup {
  0% {
    transform: scale(1.2);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes slide-in-to-right {
  0% {
    transform: translateX(-1rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-reversed {
  0% {
    transform: translateX(2rem);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes bounce-move {
  0% {
    transform: translateY(-40px);
    animation-timing-function: linear;
    border-width: 0;
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  65% {
    transform: translateY(0);
    animation-timing-function: linear;
  }
  85% {
    transform: translateY(5px);
    animation-timing-function: ease-in;
  }
  to {
    transform: translateY(0);
    animation-timing-function: ease-out;
    border-width: 1px;
    opacity: 1;
  }
}
@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;
  }
}
[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--roboto {
  font-family: 'roboto', sans-serif;
}
.font--sfpro {
  font-family: 'sfpro', sans-serif;
}
.font--open-sans {
  font-family: 'open-sans', sans-serif;
}
.font--philosopher {
  font-family: 'philosopher', sans-serif;
}
.font--nunito {
  font-family: 'nunito', sans-serif;
}
.font--jost {
  font-family: 'jost', sans-serif;
}
.font--charis-sil {
  font-family: 'charis-sil', sans-serif;
}
.font--gilroy {
  font-family: 'gilroy', sans-serif;
}
.font--scada {
  font-family: 'scada', sans-serif;
}
.glightbox-open .goverlay {
  background-color: var(--dim-muted);
}
.glightbox-open .glightbox-mobile .goverlay {
  background-color: var(--dim-muted);
}
.glightbox-open .gbtn {
  position: absolute;
  width: 36px;
  height: 36px;
}
.glightbox-open .gbtn svg {
  width: 1.45em;
}
.glightbox-open .gbtn.gnext {
  display: flex !important;
  top: calc(50% - 18px);
  right: 1em;
  background-color: transparent;
}
.glightbox-open .gbtn.gprev {
  display: flex !important;
  top: calc(50% - 18px);
  left: 1em;
  background-color: transparent;
  transform: rotate(180deg);
}
.glightbox-open .gbtn.gclose {
  top: 1rem;
  right: 1rem;
  appearance: none;
  border: unset;
  cursor: pointer;
  background-color: transparent;
}
.glightbox-open .gbtn.gclose::before,
.glightbox-open .gbtn.gclose::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 17px;
  height: 20px;
  width: 3px;
  border-radius: 2px;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.glightbox-open .gbtn.gclose::before {
  transform: rotate(45deg);
}
.glightbox-open .gbtn.gclose::after {
  transform: rotate(-45deg);
}
.glightbox-open .gclose svg,
.glightbox-open .gprev svg,
.glightbox-open .gnext svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.glightbox-open .gslide-description {
  padding-top: 1rem;
  box-sizing: border-box;
  background: unset !important;
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-size: 0.95em;
  line-height: 1.45em;
}
.glightbox-open .gslide-image {
  border-radius: var(--border-radius-small);
  overflow: hidden;
}
@media (min-width: 1200px) {
  .glightbox-open .gslide-media {
    padding: 5px;
    border-radius: var(--border-radius-small);
    background-color: hsl(var(--bh), var(--bs), var(--bl));
  }
  .glightbox-open .gslide-image img {
    max-height: 87vh;
  }
}
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;
}
header {
  position: relative;
}
header.is-line {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
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));
  overflow-x: hidden;
}
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;
}
ol,
ul,
li {
  list-style: none;
}
.overlay-modal {
  box-sizing: border-box;
}
.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.15);
}
.check-mark {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 10px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 45.701 45.7' xml:space='preserve' fill='%23fff'%3E%3Cpath d='M20.687,38.332c-2.072,2.072-5.434,2.072-7.505,0L1.554,26.704c-2.072-2.071-2.072-5.433,0-7.504 c2.071-2.072,5.433-2.072,7.505,0l6.928,6.927c0.523,0.522,1.372,0.522,1.896,0L36.642,7.368c2.071-2.072,5.433-2.072,7.505,0 c0.995,0.995,1.554,2.345,1.554,3.752c0,1.407-0.559,2.757-1.554,3.752L20.687,38.332z'/%3E%3C/svg%3E");
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  border: 2px solid hsl(var(--ah), var(--as), var(--al));
  vertical-align: middle;
}
.check-mark:not(:last-of-type) {
  margin-bottom: 10px;
}
:root {
  --vh: 100vh;
  --top-bar-height: 0px;
  --title-font-size: 28px;
  --subtitle-font-size: 19px;
  --mid-font-size: 18px;
  --name-font-size: 17px;
  --text-font-size: 17px;
  --border-radius-small: 5px;
  --border-radius-large: 12px;
  --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.6);
  --dim-gradient: linear-gradient(to bottom, hsla(215, 17%, 21%, 0.4), hsla(215, 17%, 21%, 0.1));
  --dim-reverse: linear-gradient(to top, hsla(215, 17%, 21%, 0.4), hsla(215, 17%, 21%, 0.1));
  --shadow-light: 0 1px 2px 0 rgba(0, 0, 0, 0.1);
  --shadow-soft: 0 0 6px 1px rgba(0, 0, 0, 0.1);
  --shadow-moderate: 0 4px 12px 2px hsla(0, 0%, 0%, 0.1);
  --shadow-card: 0 4px 12px 2px rgba(0, 0, 0, 0.1);
  --shadow-modal: 0 8px 16px 0 hsla(0, 0%, 0%, 0.08), 0 0 3px 0 hsla(0, 0%, 0%, 0.06);
  --shadow-inset: 0 5px 5px -5px hsla(210, 41%, 22%, 0.3) inset;
  --shadow-spread: 0 0 20px hsla(0, 0%, 0%, 0.06);
  --shadow-spread-moderate: 0 0 20px 0 hsla(0, 0%, 87%, 0.7);
}
@media (min-width: 992px) {
  :root {
    --title-font-size: 36px;
    --subtitle-font-size: 22px;
    --mid-font-size: 20px;
    --name-font-size: 18px;
    --text-font-size: 17px;
  }
}
.accordion__horizontal {
  display: none;
  height: 1px;
  min-height: 360px;
  max-height: 560px;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: var(--border-radius-normal);
  overflow: hidden;
}
.accordion__horizontal.is-primary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.accordion__horizontal.is-secondary,
.accordion__horizontal.is-semitone {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.accordion__vertical > :not(:last-child) {
  margin-bottom: var(--gap);
}
@media (min-width: 1100px) {
  .accordion__horizontal {
    display: flex;
  }
  .accordion__vertical {
    display: none;
  }
}
.advantages {
  overflow: hidden;
}
.advantages__list {
  display: grid;
  grid-gap: 1rem;
}
.advantages__list:not(:first-child) {
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .advantages__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .advantages__list.is-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .advantages__list.is-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .advantages__list.is-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}
.banner__mobile-wrapper {
  display: block;
}
.banner__image-wrapper {
  display: none;
}
.banner__mobile-wrapper,
.banner__image-wrapper {
  position: relative;
  border-radius: var(--border-radius-normal);
  border: 1px solid transparent;
  transition: border 0.3s ease;
  overflow: hidden;
  isolation: isolate;
}
.banner__mobile-wrapper.is-link:focus,
.banner__image-wrapper.is-link:focus {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.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 {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-normal);
  object-fit: cover;
}
.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;
  }
}
.blog__wrapper {
  position: relative;
}
.blog__wrapper:not(:first-child) {
  margin-top: 2rem;
}
.blog__button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: calc(0px - 34px / 2);
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
}
.blog__button.is-next {
  right: -8px;
}
.blog__button.is-prev {
  left: -8px;
}
.blog__button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.blog__button[aria-disabled='true'] .icon-arrow-thin {
  opacity: 0.25;
}
.blog__button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.blog__button.is-next {
  transform: translateX(6px);
}
.blog__button.is-prev {
  transform: translateX(-6px);
}
.blog__button.swiper-button-lock {
  display: none;
}
@media (min-width: 768px) {
  .blog__wrapper:hover .blog__button {
    opacity: 1;
    visibility: visible;
  }
  .blog__wrapper:hover .blog__button.is-next {
    transform: translateX(6px);
  }
  .blog__wrapper:hover .blog__button.is-prev {
    transform: translateX(-6px);
  }
  .blog__button {
    opacity: 0;
    visibility: hidden;
  }
  .blog__button.is-next,
  .blog__button.is-prev {
    transform: unset;
  }
}
.brands__header {
  display: grid;
  align-items: flex-start;
}
.brands__header-content > :not(:last-child) {
  margin-bottom: var(--gap);
}
.brands__link {
  margin-right: auto;
  margin-top: var(--gap-small);
}
.brands__error {
  text-align: center;
}
.brands__error:not(:first-child) {
  margin-top: 2rem;
}
.brands__list {
  position: relative;
}
.brands__list:hover .brands__button {
  opacity: 1;
  visibility: visible;
}
.brands__list:hover .brands__button.is-next {
  transform: translateX(6px);
}
.brands__list:hover .brands__button.is-prev {
  transform: translateX(-6px);
}
.brands__list:not(:first-child) {
  margin-top: 2rem;
}
.brands__slide {
  user-select: none;
}
.brands__button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: calc(0px - 34px / 2);
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  opacity: 0;
  visibility: hidden;
}
.brands__button.is-next {
  right: -8px;
}
.brands__button.is-prev {
  left: -8px;
}
.brands__button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.brands__button[aria-disabled='true'] .icon-arrow-thin {
  opacity: 0.25;
}
.brands__button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.brands__button.swiper-button-lock {
  display: none;
}
.brands__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.brands__grid:not(:first-child) {
  margin-top: 2rem;
}
.brands__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  margin-bottom: -1px;
  margin-left: -1px;
  transition: box-shadow 0.3s ease;
}
.brands__item:hover {
  z-index: 5;
  box-shadow: var(--shadow-card);
}
.brands__item.is-primary {
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.brands__item.is-secondary {
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.brands__item.is-semitone {
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.brands__item.is-desaturate {
  filter: grayscale(1);
  transition: box-shadow 0.3s ease, filter 0.3s ease;
  will-change: filter;
}
.brands__item.is-desaturate:hover {
  filter: grayscale(0);
}
.brands__item-image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
}
@media (min-width: 580px) {
  .brands__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 992px) {
  .brands__header {
    grid-template-columns: 1fr 250px;
  }
  .brands__link {
    margin-top: unset;
    margin-right: unset;
    margin-left: auto;
  }
  .brands__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1100px) {
  .brands__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.cards {
  overflow: hidden;
}
.cards__list {
  display: grid;
  grid-gap: 1rem;
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
}
.cards__list:not(:first-child) {
  margin-top: 2rem;
}
.cards__item {
  border-width: 1px;
  border-style: solid;
  border-radius: var(--border-radius-normal);
  transition: 0.3s ease;
}
.cards__item.is-primary {
  background-color: hsl(var(--ah), var(--as), var(--al));
  border-color: hsl(var(--bh), var(--bs), var(--bl));
}
.cards__item.is-secondary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-color: hsl(var(--ah), var(--as), var(--al));
}
.cards__item.is-semitone {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.cards__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem;
  border: 2px dashed hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.cards__text {
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  text-align: center;
}
.cards__text:not(:last-child) {
  margin-bottom: var(--gap);
}
.cards__buttons {
  padding-top: var(--gap-extended);
}
@media (min-width: 768px) {
  .cards__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
  }
  .cards__item:hover {
    border-color: hsl(var(--ph), var(--ps), var(--pl));
    transform: translateY(-10px);
  }
}
@media (min-width: 1200px) {
  .cards__list {
    grid-template-columns: repeat(3, 1fr);
    max-width: unset;
  }
  .cards__content {
    grid-column-start: 1;
    grid-column-end: 4;
  }
}
@media (min-width: 1400px) {
  .cards__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .cards__content {
    grid-column-start: unset;
    grid-column-end: unset;
  }
}
.carousel__list:not(:first-child) {
  margin-top: 2rem;
}
.catalog__grid {
  position: relative;
  display: grid;
  max-width: 350px;
  margin: 0 auto;
}
.catalog__grid:not(:first-child) {
  margin-top: 2rem;
}
.catalog__list {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  pointer-events: none;
  z-index: 10;
}
.catalog__content {
  display: grid;
  grid-gap: 1rem;
}
.catalog__error {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 620px) {
  .catalog__content {
    grid-template-columns: repeat(2, 1fr);
  }
  .catalog__grid {
    max-width: 720px;
  }
  .catalog__item:last-child {
    display: none;
  }
}
@media (min-width: 992px) {
  .catalog__content {
    grid-template-columns: repeat(2, 1fr);
    margin-left: calc(300px + 1rem);
  }
  .catalog__error {
    margin-left: calc(300px + 1rem);
  }
  .catalog__grid {
    max-width: 1030px;
  }
}
@media (min-width: 1350px) {
  .catalog__content {
    grid-template-columns: repeat(3, 1fr);
  }
  .catalog__grid {
    max-width: unset;
  }
  .catalog__item:last-child {
    display: grid;
  }
}
.categories__list {
  display: grid;
  grid-gap: 1rem;
}
.categories__list:not(:first-child) {
  margin-top: 2rem;
}
.categories__item {
  position: relative;
  display: block;
  border-radius: var(--border-radius-normal);
  transition: box-shadow 0.3s ease;
  text-decoration: none;
  color: currentColor;
}
.categories__item::before {
  content: '';
  display: block;
  padding-bottom: 100%;
}
.categories__item:hover {
  box-shadow: var(--shadow-card);
}
.categories__item.is-primary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.categories__item.is-secondary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.categories__item.is-semitone {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.categories__item.is-hidden {
  display: none;
}
.categories__item-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  text-align: center;
  overflow: hidden;
}
.categories__image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.categories__image > img {
  display: block;
  max-height: 200px;
  min-height: 200px;
  height: auto;
  border-radius: var(--border-radius-small);
  font-size: 0;
  object-fit: cover;
}
.categories__item-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;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.categories__buttons {
  padding-top: var(--gap);
}
.categories__buttons:empty {
  display: none;
}
.categories__error {
  text-align: center;
}
@media (min-width: 480px) {
  .categories__list {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .categories__list {
    grid-template-columns: repeat(4, 1fr);
  }
}
.columns {
  overflow: hidden;
}
.columns__list {
  position: relative;
  display: grid;
  grid-gap: var(--gap-extended);
}
.columns__list:not(:first-child) {
  margin-top: 2rem;
}
@media (min-width: 580px) {
  .columns__list {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: var(--gap);
  }
}
@media (min-width: 1050px) {
  .columns__list {
    grid-template-columns: repeat(3, 1fr);
    grid-gap: var(--gap-extended);
  }
}
.contacts__grid {
  display: grid;
  grid-template-rows: auto 300px;
  min-height: 500px;
  border-radius: var(--border-radius-normal);
  overflow: hidden;
}
.contacts__content {
  position: relative;
  box-shadow: var(--shadow-soft);
  z-index: 1;
}
.contacts__content::before {
  content: '';
  position: absolute;
  top: 100%;
  left: calc(50% - 12px);
  transform: translateY(-50%) rotate(45deg);
  display: inline-block;
  width: 24px;
  height: 24px;
  box-shadow: var(--shadow-soft);
  z-index: 5;
}
.contacts__content.is-primary::before {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.contacts__content.is-primary .contacts__wrapper {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.contacts__content.is-semitone::before,
.contacts__content.is-secondary::before {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.contacts__content.is-semitone .contacts__wrapper,
.contacts__content.is-secondary .contacts__wrapper {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.contacts__wrapper {
  position: relative;
  height: 100%;
  box-sizing: border-box;
  padding: 1.5rem;
  z-index: 10;
}
.contacts__wrapper > :not(:last-child) {
  margin-bottom: var(--gap);
}
.contacts__tabs > :not(:last-child) {
  margin-bottom: 1rem;
}
.contacts__tab {
  display: flex;
  padding: 5px 10px;
  border-radius: var(--border-radius-small);
  cursor: pointer;
}
.contacts__tab.is-active.is-primary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 2%));
}
.contacts__tab.is-active.is-semitone,
.contacts__tab.is-active.is-secondary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.contacts__icon {
  flex-shrink: 0;
  margin-top: 2px;
  margin-right: var(--gap-small);
}
.contacts__icon > svg {
  display: block;
  fill: currentColor;
}
.contacts__tab-name {
  line-height: 1.45em;
}
.contacts__chip {
  margin-left: 10px;
}
.contacts__text {
  line-height: 1.45em;
}
.contacts__map-wrapper {
  position: relative;
  filter: grayscale(0.5);
  height: 100%;
}
.contacts__map {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  visibility: hidden;
}
.contacts__map.is-active {
  visibility: visible;
}
@media (min-width: 992px) {
  .contacts__grid {
    grid-template-rows: unset;
  }
  .contacts__grid.is-forward {
    grid-template-columns: 385px 1fr;
  }
  .contacts__grid.is-forward .contacts__content::before {
    top: 50%;
    left: unset;
    right: -12px;
  }
  .contacts__grid.is-reverse {
    grid-template-columns: 1fr 385px;
  }
  .contacts__grid.is-reverse .contacts__map-wrapper {
    order: 1;
  }
  .contacts__grid.is-reverse .contacts__content {
    order: 2;
  }
  .contacts__grid.is-reverse .contacts__content::before {
    top: 50%;
    left: -12px;
  }
}
.cta__wrapper {
  display: grid;
  grid-gap: 1rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.cta__wrapper.is-primary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.cta__wrapper.is-secondary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.cta__wrapper.is-semitone {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
@media (min-width: 992px) {
  .cta .cta__wrapper {
    grid-template-columns: 1fr auto;
    grid-gap: 2rem;
    padding: 2rem;
  }
}
.grid__list {
  display: grid;
  grid-gap: 10px;
}
.grid__list:not(:first-child) {
  margin-top: 2rem;
}
@media (min-width: 580px) {
  .grid__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .grid__list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .grid__list.is-one {
    grid-template-columns: repeat(4, 1fr);
  }
  .grid__list.is-one .grid__item:nth-of-type(1) {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
  }
}
.info__wrapper.is-list {
  padding: 1.6rem;
  border-radius: var(--border-radius-normal);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.info__wrapper.is-list.is-highlight {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.info__page.is-list:not(:last-of-type) {
  margin-bottom: var(--gap);
}
.info__page.is-tabs {
  display: none;
  margin-top: var(--gap);
}
.info__page.is-tabs.is-active {
  display: block;
}
.info__title {
  display: block;
  font-size: var(--subtitle-font-size);
  font-weight: 600;
  line-height: 1.45em;
}
.info__loader,
.info__description {
  margin-top: var(--gap);
}
.info__tags {
  margin-top: var(--gap);
}
.info__tags-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * 8px);
  margin-right: calc(-0.5 * 8px);
  margin-left: calc(-0.5 * 8px);
}
.info__subtitle {
  display: block;
  margin-bottom: var(--gap-small);
  font-size: var(--name-font-size);
  font-weight: 600;
  line-height: 1.45em;
}
.info__item-wrapper {
  flex: 0 0 auto;
  padding-right: calc(8px * 0.5);
  padding-left: calc(8px * 0.5);
  margin-top: 8px;
  box-sizing: border-box;
}
.info__tag {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 320px;
  padding: 6px 12px;
  margin: 1px;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  text-decoration: none;
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: 0.2s ease;
}
.info__tag.is-primary {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
  color: hsl(var(--th), var(--ts), var(--tl));
  border: 1px solid hsla(var(--ph), var(--ps), var(--pl), 0.5);
}
.info__tag.is-primary:hover {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.15);
}
.info__tag.is-secondary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.info__tag.is-secondary:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.info__tag .icon-hash {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.info__tag > span {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.info__more {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--gap);
  cursor: pointer;
}
.info__more > span {
  border-bottom: 1px dotted hsl(var(--ph), var(--ps), var(--pl));
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.info__more:hover > span {
  border-style: solid;
}
.info__more .icon-reload {
  flex-shrink: 0;
  display: block;
  width: 18px;
  height: 18px;
  margin-left: var(--gap-small);
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
@media (min-width: 768px) {
  .info__page.is-tabs {
    padding: 1.6rem;
    border-radius: var(--border-radius-normal);
    border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  }
  .info__page.is-tabs.is-highlight {
    background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  }
}
@media (min-width: 992px) {
  .info__page.is-list:not(:last-of-type) {
    margin-bottom: 2rem;
  }
  .info__page.is-tabs {
    margin-top: var(--gap-extended);
  }
}
@media (min-width: 1200px) {
  .info__wrapper.is-list {
    padding: 2.5rem;
  }
  .info__page.is-tabs {
    padding: 2.5rem;
  }
}
.new__header {
  display: grid;
  align-items: flex-start;
}
.new__header-content > :not(:last-child) {
  margin-bottom: var(--gap);
}
.new__link {
  margin-right: auto;
  margin-top: var(--gap-small);
}
.new__list {
  display: grid;
  justify-content: center;
}
.new__list:not(:first-child) {
  margin-top: 2rem;
}
.new__list:not(.is-mobile-grid) {
  grid-template-columns: minmax(260px, 350px);
  grid-gap: 1rem;
}
.new__list.is-mobile-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--gap-small);
}
.new__error {
  text-align: center;
}
.new__error:not(:first-child) {
  margin-top: 2rem;
}
@media (min-width: 580px) {
  .new__list.is-mobile-grid,
  .new__list:not(.is-mobile-grid) {
    grid-template-columns: repeat(2, minmax(260px, 350px));
    grid-gap: var(--gap-small);
  }
}
@media (min-width: 768px) {
  .new__list.is-mobile-grid,
  .new__list:not(.is-mobile-grid) {
    grid-gap: 1rem;
  }
}
@media (min-width: 992px) {
  .new__header {
    grid-template-columns: 1fr 250px;
  }
  .new__link {
    margin-top: unset;
    margin-right: unset;
    margin-left: auto;
  }
  .new__list.is-mobile-grid,
  .new__list:not(.is-mobile-grid) {
    grid-template-columns: 1fr;
  }
}
.payments__swiper {
  margin-top: var(--gap);
}
.payments__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: -10px;
}
.payments__header > * {
  margin-top: 10px;
}
.payments__header > :not(:last-child) {
  margin-right: var(--gap);
}
.payments__buttons {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 34px;
  background-color: hsla(var(--th), var(--ts), var(--tl), 0.25);
  backdrop-filter: blur(10px);
}
.payments__buttons > :not(:last-child) {
  margin-right: 1rem;
}
.payments__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid hsla(var(--bh), var(--bs), var(--bl), 0.25);
  cursor: pointer;
}
.payments__button:hover {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.payments__button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.payments__button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
@media (min-width: 580px) {
  .payments__list {
    padding: 1rem;
    border-radius: var(--border-radius-large);
  }
  .payments__list.is-primary {
    background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  }
  .payments__list.is-secondary,
  .payments__list.is-semitone {
    background-color: hsl(var(--bh), var(--bs), var(--bl));
  }
}
.product-classic__breadcrumbs {
  margin-bottom: var(--gap);
}
.product-classic__grid {
  display: grid;
  grid-gap: var(--gap);
  margin-top: var(--gap);
}
.product-classic__card,
.product-classic__cart {
  min-width: 0;
}
.product-classic__card {
  align-self: start;
}
.product-classic__card > :not(:last-child) {
  margin-bottom: 2rem;
}
.product-classic__card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -10px;
}
.product-classic__card-header > * {
  margin-top: 10px;
}
.product-classic__card-header > :not(:last-child) {
  margin-right: 1rem;
}
.product-classic__info {
  margin-top: 2rem;
}
.product-classic__info > :not(:last-child) {
  margin-bottom: var(--gap);
}
.product-classic__link {
  display: inline-flex;
  align-items: center;
}
.product-classic__link > svg {
  flex-shrink: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding-left: 10px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.product-classic__features-link {
  margin-top: var(--gap);
}
.product-classic__messengers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: -10px;
}
.product-classic__messengers > * {
  margin-bottom: 10px;
}
.product-classic__messengers > :not(:last-child) {
  margin-right: var(--gap-small);
}
.product-classic__messenger {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 6px 14px;
  box-sizing: border-box;
  border-radius: 36px;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  font-size: 0.95em;
  transition: 0.2s ease;
  text-decoration: none;
}
.product-classic__messenger:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.product-classic__messenger svg {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
  transition: 0.2s ease;
}
.product-classic__messenger:hover .icon-telegram-outlined {
  fill: hsl(204, 74%, 57%);
}
.product-classic__messenger:hover .icon-whatsapp-outlined {
  fill: hsl(148, 100%, 36%);
}
.product-classic__summary-text {
  line-height: 1.65em;
}
.product-classic__summary-link {
  margin-top: var(--gap-small);
}
.product-classic__subtitle {
  display: block;
  margin-bottom: var(--gap);
  font-size: var(--subtitle-font-size);
  font-weight: 700;
  line-height: 1.45em;
}
.product-classic__cross-selling {
  display: none;
}
@media (min-width: 768px) {
  .product-classic__grid {
    margin-top: var(--gap-extended);
  }
  .product-classic__card-header > :not(:last-child) {
    padding-right: 1rem;
    border-right: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  }
  .product-classic__info > :not(:last-child) {
    margin-bottom: var(--gap-extended);
  }
}
@media (min-width: 1300px) {
  .product-classic__grid {
    grid-template-columns: 1fr 380px;
    grid-gap: 3rem;
  }
  .product-classic__cross-selling {
    display: block;
  }
}
@media (min-width: 1500px) {
  .product-classic__card-wrapper {
    display: grid;
    grid-template-columns: 450px auto;
    grid-gap: 3rem;
  }
  .product-classic__info {
    margin-top: unset;
  }
}
.product__breadcrumbs {
  margin-bottom: var(--gap);
}
.product__grid {
  display: grid;
  grid-gap: var(--gap);
}
.product__card,
.product__cart {
  min-width: 0;
}
.product__card {
  align-self: start;
}
.product__card > :not(:last-child) {
  margin-bottom: 2rem;
}
.product__card-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -10px;
}
.product__card-header > * {
  margin-top: 10px;
}
.product__card-header > :not(:last-child) {
  margin-right: 1rem;
}
.product__summary-text {
  line-height: 1.65em;
}
.product__summary-link {
  margin-top: var(--gap-small);
}
.product__card-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: -10px;
}
.product__card-footer > * {
  margin-top: 10px;
  margin-right: 10px;
}
.product__card-column {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: -10px;
}
.product__card-column > * {
  margin-bottom: 10px;
}
.product__card-column > :not(:last-child) {
  margin-right: var(--gap-small);
}
.product__link {
  display: inline-flex;
  align-items: center;
}
.product__link > svg {
  flex-shrink: 0;
  display: block;
  width: 12px;
  height: 12px;
  padding-left: 10px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.product__messenger {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 6px 14px;
  box-sizing: border-box;
  border-radius: 36px;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  font-size: 0.95em;
  transition: 0.2s ease;
  text-decoration: none;
}
.product__messenger:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.product__messenger svg {
  display: block;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
  transition: 0.2s ease;
}
.product__messenger:hover .icon-telegram-outlined {
  fill: hsl(204, 74%, 57%);
}
.product__messenger:hover .icon-whatsapp-outlined {
  fill: hsl(148, 100%, 36%);
}
.product__subtitle {
  display: block;
  margin-bottom: var(--gap);
  font-size: var(--subtitle-font-size);
  font-weight: 700;
  line-height: 1.45em;
}
.product__cross-selling {
  display: none;
}
@media (min-width: 768px) {
  .product__card-header > :not(:last-child) {
    padding-right: 1rem;
    border-right: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  }
}
@media (min-width: 1300px) {
  .product__grid {
    grid-template-columns: 1fr 380px;
    grid-gap: 3rem;
  }
  .product__cross-selling {
    display: block;
  }
}
.products__error {
  text-align: center;
}
.products__content-item {
  display: none;
}
.products__content-item.is-active {
  display: block;
}
.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: 1rem;
}
.products__list.is-mobile-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: var(--gap-small);
}
@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: 1rem;
  }
}
@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: 1rem;
  }
}
.promo__grid {
  display: grid;
  grid-gap: var(--gap);
}
.promo__column {
  min-width: 0;
}
.promo__swiper {
  position: relative;
}
.promo__slide {
  max-width: 480px;
  margin-bottom: 1px;
}
.promo__buttons {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 34px;
  background-color: hsla(var(--th), var(--ts), var(--tl), 0.25);
  backdrop-filter: blur(10px);
  z-index: 1;
}
.promo__buttons > :not(:last-child) {
  margin-right: 1rem;
}
.promo__button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid hsla(var(--bh), var(--bs), var(--bl), 0.25);
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
}
.promo__button:hover {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.promo__button:focus {
  outline: none;
}
.promo__button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.promo__button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.promo__product-swiper {
  padding: 1px;
}
.promo__product-swiper,
.promo__products {
  position: relative;
  height: 100%;
  box-sizing: border-box;
}
.promo__product-slide {
  margin-bottom: 1px;
}
.promo__product-button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: calc(0px - 34px / 2);
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
}
.promo__product-button.is-next {
  right: -8px;
}
.promo__product-button.is-prev {
  left: -8px;
}
.promo__product-button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.promo__product-button[aria-disabled='true'] .icon-arrow-thin {
  opacity: 0.25;
}
.promo__product-button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.promo__product-button.swiper-button-lock {
  display: none;
}
.promo__product-button.is-next {
  transform: translateX(6px);
}
.promo__product-button.is-prev {
  transform: translateX(-6px);
}
.promo__timer {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 10;
}
.promo__error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
  text-align: center;
  border-radius: var(--border-radius-normal);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  line-height: 1.45em;
}
@media (max-width: 767px) {
  .promo__column:first-of-type {
    max-width: 480px;
    width: 100%;
    margin-right: auto;
    margin-left: auto;
  }
}
@media (min-width: 768px) {
  .promo__slide {
    max-width: unset;
  }
  .promo__products:hover .promo__product-button {
    opacity: 1;
    visibility: visible;
  }
  .promo__products:hover .promo__product-button.is-next {
    transform: translateX(6px);
  }
  .promo__products:hover .promo__product-button.is-prev {
    transform: translateX(-6px);
  }
  .promo__product-button {
    opacity: 0;
    visibility: hidden;
  }
  .promo__product-button.is-next,
  .promo__product-button.is-prev {
    transform: unset;
  }
  .promo__timer {
    top: 1rem;
    right: 1rem;
  }
}
@media (min-width: 1300px) {
  .promo__grid {
    grid-template-columns: 3fr 1fr;
    grid-gap: 1rem;
  }
}
.promotions__wrapper {
  position: relative;
}
.promotions__wrapper:hover .promotions__button {
  opacity: 1;
  visibility: visible;
}
.promotions__wrapper:hover .promotions__button.is-next {
  transform: translateX(6px);
}
.promotions__wrapper:hover .promotions__button.is-prev {
  transform: translateX(-6px);
}
.promotions__button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: calc(0px - 34px / 2);
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  opacity: 0;
  visibility: hidden;
}
.promotions__button.is-next {
  right: -8px;
}
.promotions__button.is-prev {
  left: -8px;
}
.promotions__button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.promotions__button[aria-disabled='true'] .icon-arrow-thin {
  opacity: 0.25;
}
.promotions__button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.promotions__button.swiper-button-lock {
  display: none;
}
.reviews__grid:not(:first-child),
.reviews__list:not(:first-child) {
  margin-top: 2rem;
}
.reviews__grid {
  display: grid;
  grid-gap: 1rem;
  align-items: start;
}
.reviews__grid.is-stretch {
  align-items: stretch;
}
.reviews__list {
  position: relative;
}
.reviews__list:hover .reviews__button {
  opacity: 1;
  visibility: visible;
}
.reviews__list:hover .reviews__button.is-next {
  transform: translateX(6px);
}
.reviews__list:hover .reviews__button.is-prev {
  transform: translateX(-6px);
}
.reviews__button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: calc(0px - 34px / 2);
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  opacity: 0;
  visibility: hidden;
}
.reviews__button.is-next {
  right: -8px;
}
.reviews__button.is-prev {
  left: -8px;
}
.reviews__button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.reviews__button[aria-disabled='true'] .icon-arrow-thin {
  opacity: 0.25;
}
.reviews__button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.reviews__button.swiper-button-lock {
  display: none;
}
.reviews__error {
  text-align: center;
}
@media (min-width: 580px) {
  .reviews__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1050px) {
  .reviews__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.sale__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -10px;
}
.sale__header > * {
  margin-top: 10px;
}
.sale__list:not(:first-child) {
  margin-top: 2rem;
}
.sale__button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: calc(0px - 34px / 2);
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
}
.sale__button.is-next {
  right: -8px;
}
.sale__button.is-prev {
  left: -8px;
}
.sale__button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.sale__button[aria-disabled='true'] .icon-arrow-thin {
  opacity: 0.25;
}
.sale__button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.sale__button.swiper-button-lock {
  display: none;
}
.sale__button.is-next {
  transform: translateX(6px);
}
.sale__button.is-prev {
  transform: translateX(-6px);
}
.sale__wrapper {
  position: relative;
}
.sale__error {
  text-align: center;
}
@media (min-width: 768px) {
  .sale__list {
    padding: var(--gap-small);
    border-radius: var(--border-radius-large);
  }
  .sale__list.is-primary {
    background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  }
  .sale__list.is-secondary {
    background-color: hsl(var(--bh), var(--bs), var(--bl));
  }
  .sale__list.is-semitone {
    background-color: hsl(var(--bh), var(--bs), var(--bl));
  }
}
.slider__mobile-buttons {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  padding: 5px;
  border-radius: 34px;
  background-color: hsla(var(--bh), var(--bs), var(--bl), 0.85);
  z-index: 1;
}
.slider__mobile-buttons > :not(:last-child) {
  margin-right: 10px;
}
.slider__mobile-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 25%));
  cursor: pointer;
}
.slider__mobile-button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.slider__mobile-button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.slider__buttons {
  display: none;
}
.slider__navigation-wrapper {
  max-width: var(--frame-width);
  padding-bottom: var(--frame-padding-mobile);
  margin: 0 auto;
  box-sizing: border-box;
}
.slider__navigation {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  min-height: 80px;
  width: 100%;
  margin-top: -5px;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  overflow: hidden;
  z-index: 1;
}
.slider__navigation.is-primary {
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.slider__navigation.is-secondary,
.slider__navigation.is-semitone {
  box-shadow: var(--shadow-light);
}
.slider__link:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
@media (min-width: 992px) {
  .slider__mobile-buttons {
    display: none;
  }
  .slider__buttons {
    display: block;
  }
  .slider__button {
    position: absolute;
    top: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: calc(0px - 1.25rem / 2);
    transition: 0.3s ease;
    user-select: none;
    cursor: pointer;
    z-index: 10;
  }
  .slider__button .icon-arrow-thin {
    width: 2.5rem;
    height: 2.5rem;
    transition: 0.3s ease;
    fill: hsl(var(--ah), var(--as), calc(var(--al) - 10%));
  }
  .slider__button.is-hover {
    opacity: 0;
  }
  .slider__button:hover .icon-arrow-thin {
    fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
  }
  .slider__button.is-next {
    right: 1rem;
  }
  .slider__button.is-prev {
    left: 1rem;
  }
  .slider__button.is-prev .icon-arrow-thin {
    transform: rotate(180deg);
  }
  .slider__button[aria-disabled='true'] .icon-arrow-thin {
    display: none;
  }
  .slider__button:focus {
    outline: none;
  }
  .slider__swiper:hover .slider__button.is-hover {
    opacity: 1;
  }
  .slider__navigation {
    margin-top: -40px;
  }
  .slider__navigation.is-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  .slider__navigation.is-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .slider__link {
    position: relative;
  }
  .slider__link:not(:last-of-type) {
    border-bottom: unset;
  }
  .slider__link::before,
  .slider__link::after {
    position: absolute;
    content: '';
    width: 1px;
    height: 30px;
    top: 0;
    bottom: 0;
    right: auto;
    margin: auto;
    transition: 0.3s ease 0s;
    background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  }
  .slider__link::before {
    left: 0;
  }
  .slider__link::after {
    right: -1px;
  }
  .slider__link:hover::before,
  .slider__link:hover::after {
    height: 100%;
  }
  .slider__link:first-of-type::before {
    visibility: hidden;
  }
  .slider__link:last-of-type::after {
    visibility: hidden;
  }
}
.story__wrapper.is-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: var(--gap);
  align-items: center;
}
.story__wrapper.is-grid.is-reverse > div:nth-of-type(1) {
  order: 2;
}
.story__wrapper.is-grid.is-reverse > div:nth-of-type(2) {
  order: 1;
}
.story__image-wrapper {
  position: relative;
  min-width: 0;
  max-width: 700px;
}
.story__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-normal);
  object-fit: cover;
}
@media (min-width: 1200px) {
  .story__wrapper.is-grid {
    grid-template-columns: 1fr 1fr;
    grid-gap: 4rem;
  }
}
.tags {
  overflow: hidden;
}
.tags__wrapper {
  position: relative;
  display: grid;
  grid-gap: 1rem;
}
.tags__wrapper:not(:first-child) {
  margin-top: 2rem;
}
@media (min-width: 580px) {
  .tags__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1050px) {
  .tags__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
.upselling__list {
  display: grid;
  justify-content: center;
  margin-top: 2rem;
}
.upselling__list:not(.is-mobile-grid) {
  grid-template-columns: minmax(260px, 350px);
  grid-gap: 1rem;
}
.upselling__list.is-mobile-grid {
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 0.5rem;
}
@media (min-width: 580px) {
  .upselling__list.is-mobile-grid,
  .upselling__list:not(.is-mobile-grid) {
    grid-template-columns: repeat(2, minmax(260px, 350px));
    grid-gap: 0.5rem;
  }
}
@media (min-width: 768px) {
  .upselling__list.is-mobile-grid,
  .upselling__list:not(.is-mobile-grid) {
    grid-gap: 1rem;
  }
}
@media (min-width: 992px) {
  .upselling__list.is-mobile-grid,
  .upselling__list:not(.is-mobile-grid) {
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }
}
.viewed__list:not(:first-child) {
  margin-top: 2rem;
}
.welcome__frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.welcome__highlight {
  cursor: pointer;
  text-decoration: underline;
}
.welcome__image {
  width: 100%;
}
.icon-shop-welcome {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  margin-right: auto;
  margin-left: auto;
}
.icon-shop-welcome__tile-0 {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.icon-shop-welcome__tile-1 {
  fill: hsl(var(--th), var(--ts), var(--tl));
}
.icon-shop-welcome__tile-2 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 10%));
}
.icon-shop-welcome__tile-3 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 28%));
}
@media (min-width: 768px) {
  .icon-shop-welcome {
    max-width: 260px;
  }
}
.adapters--gap {
  margin-bottom: var(--gap);
}
.adapters__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -10px;
}
.adapters__list > * {
  margin-top: 10px;
  margin-right: 10px;
}
.adapters__list.is-center {
  justify-content: center;
}
.adapters__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  box-sizing: border-box;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  transition: 0.2s ease;
}
.adapters__link:hover {
  box-shadow: var(--shadow-spread-moderate);
}
.adapters__link.is-selected {
  box-shadow: 0 0 0 0.2rem hsla(var(--ah), var(--as), var(--al), 0.6);
}
.adapters__link > svg {
  width: 22px;
  height: 22px;
  fill: hsl(0, 0%, 66%);
}
.address-one {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.address-one--gap {
  margin-bottom: var(--gap);
}
.address-one.is-small .address-one__text {
  font-size: 0.95em;
}
.address-one .icon-direction {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.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__container {
  display: grid;
  grid-gap: var(--gap-small);
}
.address-one__text {
  line-height: 1.45em;
}
.address-one__text > svg {
  display: inline-block;
  margin-right: 5px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.address-one__button {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: -17px;
  border: unset;
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: pointer;
  z-index: 10;
}
.address-one__button > svg {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.address-one__button:first-of-type {
  left: -13px;
}
.address-one__button:first-of-type > svg {
  transform: rotate(180deg);
}
.address-one__button:last-of-type {
  right: -13px;
}
.affiliate {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: var(--border-radius-small);
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
  color: hsl(var(--th), var(--ts), var(--tl));
}
.affiliate--gap {
  margin-bottom: var(--gap);
}
.affiliate.is-hidden {
  display: none;
}
.affiliate__text {
  font-size: 15px;
}
.affiliate .icon-bonus {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: 5px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.affiliate__rate {
  display: inline-block;
  margin: 0 3px;
}
.badge-one {
  display: inline-block;
}
.badge-one--gap {
  margin-bottom: var(--gap);
}
.badge-one .badge {
  border-radius: var(--border-radius-small);
  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(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-one .badge--bestseller {
  background-color: hsl(13, 100%, 63%);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-one .badge--lowprice {
  background-color: hsl(44, 93%, 72%);
  color: hsl(var(--th), var(--ts), var(--tl));
}
.badge-one .badge--new {
  background-color: hsl(148, 100%, 36%);
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.badge-one.is-tiny .badge {
  padding: 3px 10px;
  font-size: 13px;
}
.badge-one.is-small .badge {
  padding: 3px 14px;
  font-size: 13px;
}
.badge-one.is-medium .badge {
  padding: 6px 16px;
  font-size: 15px;
}
.badge-one.is-large .badge {
  padding: 8px 16px;
  font-size: 15px;
}
.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: 13px;
}
.badge-four.is-small .badge > svg {
  width: 13px;
  height: 13px;
  margin-right: 3px;
}
.badge-four.is-medium .badge {
  padding: 6px 14px;
  font-size: 15px;
}
.badge-four.is-medium .badge > svg {
  width: 14px;
  height: 14px;
  margin-right: 5px;
}
.badge-four.is-large .badge {
  padding: 8px 20px;
  font-size: 15px;
}
.badge-four.is-large .badge > svg {
  width: 15px;
  height: 15px;
  margin-right: 5px;
}
.banner-one {
  max-width: 1050px;
}
.banner-one--gap {
  margin-bottom: var(--gap);
}
.banner-one__image-container {
  position: relative;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  overflow: hidden;
  isolation: isolate;
}
.banner-one__image-container.is-mobile {
  display: block;
}
.banner-one__image-container:not(.is-mobile) {
  display: none;
}
.banner-one__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-one__sticker {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
@media (min-width: 768px) {
  .banner-one__image-container.is-mobile {
    display: none;
  }
  .banner-one__image-container:not(.is-mobile) {
    display: block;
  }
}
.brand-item {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  height: 100%;
  margin-bottom: -1px;
  margin-left: -1px;
  transition: 0.2s ease;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.brand-item:hover {
  z-index: 5;
}
.brand-item:focus {
  outline: none;
}
.brand-item:hover {
  box-shadow: var(--shadow-card);
}
.brand-item--gap {
  margin-bottom: var(--gap);
}
.brand-item.is-primary {
  border: 1px solid hsl(var(--ah), var(--as), var(--al));
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.brand-item.is-secondary {
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.brand-item.is-semitone {
  border: 1px solid hsl(var(--ah), var(--as), var(--al));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.brand-item__image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 2rem 1rem;
  box-sizing: border-box;
}
.brand-item__image img {
  max-width: 100%;
  max-height: 100px;
  height: auto;
}
.brand-item__name {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  text-align: center;
}
.breadcrumbs-one {
  position: relative;
  display: flex;
  align-items: center;
}
.breadcrumbs-one > :not(:last-child) {
  margin-right: 15px;
}
.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) + 20%));
}
.breadcrumbs-one__link.is-medium:not(.font--philosopher) {
  font-size: 1.05em;
  letter-spacing: 0.5px;
}
.breadcrumbs-one__link.is-medium.font--philosopher {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.breadcrumbs-one__link.is-small {
  font-size: 0.95em;
}
.breadcrumbs-one__link:not(.is-disabled):hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.breadcrumbs-one__link.is-disabled {
  cursor: default;
}
.breadcrumbs-one__link:focus {
  outline: none;
}
.breadcrumbs-one__link .icon-home-alter {
  width: 18px;
  height: 18px;
  padding: 2px;
  border-radius: var(--border-radius-small);
  transition: background-color 0.3s ease;
  margin-right: 15px;
  background-color: hsl(var(--th), var(--ts), var(--tl));
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.breadcrumbs-one__link .icon-dash {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 15px;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.breadcrumbs-one__link .icon-more {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  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.1s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  padding-top: var(--gap-small);
}
.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-soft);
  max-width: 400px;
  min-width: 160px;
  padding: 0.5rem calc(0.5rem - 2px) 0.5rem 0.5rem;
  border-radius: var(--border-radius-normal);
  max-height: 400px;
  overflow-y: scroll;
}
.breadcrumbs-one__dropdown::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: transparent;
}
.breadcrumbs-one__dropdown::-webkit-scrollbar-thumb {
  margin-left: 5px;
  border-radius: 4px;
  background-color: transparent;
}
.breadcrumbs-one__dropdown:hover::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.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.65em;
  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,
  .breadcrumbs-one__link .icon-more {
    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;
    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%));
}
.burger-one {
  display: flex;
  cursor: pointer;
}
.burger-one--gap {
  margin-bottom: var(--gap);
}
.burger-one:hover .burger-one__icon > span:nth-child(3),
.burger-one:hover .burger-one__icon > span:nth-child(1) {
  width: 24px;
}
.burger-one.is-triggered {
  z-index: 340;
}
.burger-one.is-triggered .burger-one__icon {
  transform: scale(0.9);
}
.burger-one.is-triggered .burger-one__icon > span {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.burger-one.is-triggered .burger-one__icon > span:nth-child(1) {
  opacity: 0;
}
.burger-one.is-triggered .burger-one__icon > span:nth-child(2) {
  margin: 2px 0;
  transform: rotate(-45deg);
}
.burger-one.is-triggered .burger-one__icon > span:nth-child(3) {
  transform: rotate(45deg) translate(-3px, -3px);
  transform-origin: center;
  width: 24px;
}
.burger-one__icon {
  display: block;
}
.burger-one__icon > span {
  display: block;
  height: 2px;
  width: 24px;
  border-radius: 2px;
  transition: width 0.3s ease 0s, transform 0.3s ease 0s;
  background-color: hsl(var(--th), var(--ts), var(--tl));
}
.burger-one__icon span:nth-child(1) {
  width: 16px;
}
.burger-one__icon span:nth-child(2) {
  margin: 4px 0;
}
.burger-one__icon span:nth-child(3) {
  width: 16px;
  float: right;
}
.button-bare {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: unset;
  background-color: transparent;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  user-select: none;
  border-radius: var(--border-radius-small);
  transition: background-color 0.15s ease-in-out, box-shadow 0.15s 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 > span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.button-bare__container {
  display: inline-block;
}
.button-bare.is-primary {
  color: hsl(var(--bh), var(--bs), var(--bl));
  background-color: hsla(var(--th), var(--ts), var(--tl), 0.55);
}
.button-bare.is-primary:hover {
  background-color: hsla(var(--th), var(--ts), var(--tl), 0.45);
}
.button-bare.is-primary:active {
  box-shadow: 0 0 0 0.2rem hsla(var(--th), var(--ts), var(--tl), 0.25);
}
.button-bare.is-secondary {
  color: hsl(var(--bh), var(--bs), var(--bl));
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.button-bare.is-secondary:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 6%));
}
.button-bare.is-secondary:active {
  box-shadow: 0 0 0 0.2rem hsla(var(--ph), var(--ps), var(--pl), 0.3);
}
.button-bare.is-small {
  padding: 5px 16px;
  font-size: 14px;
}
.button-bare.is-small.is-wide {
  width: 150px;
}
.button-bare.is-medium {
  padding: 7px 18px;
  font-size: 15px;
}
.button-bare.is-medium.is-wide {
  width: 180px;
}
.button-bare.is-large {
  padding: 9px 22px;
  font-size: 16px;
}
.button-bare.is-large.is-wide {
  width: 220px;
}
.button-bare.is-gap {
  margin-bottom: var(--gap);
}
.button-one {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: unset;
  line-height: 1.45em;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  user-select: none;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--border-radius-small);
  transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.button-one:focus,
.button-one:active,
.button-one:hover {
  outline: none;
}
.button-one:disabled,
.button-one[disabled] {
  cursor: auto;
}
.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 12px;
}
.button-one.is-medium {
  min-height: 36px;
  padding: 7px 14px;
}
.button-one.is-large {
  min-height: 42px;
  padding: 8px 16px;
}
.button-one.is-wide.is-small {
  width: 180px;
}
.button-one.is-wide.is-medium {
  width: 200px;
}
.button-one.is-wide.is-large {
  width: 220px;
}
.button-one.is-narrow {
  max-width: 270px;
}
.button-one.is-free {
  width: 100%;
}
.button-one.is-uppercase {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.button-one.is-small:not(.is-uppercase) {
  font-size: 15px;
}
.button-one.is-medium:not(.is-uppercase) {
  font-size: 16px;
}
.button-one.is-large:not(.is-uppercase) {
  font-size: 16px;
}
.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 > svg {
  flex-shrink: 0;
  display: block;
  margin-right: var(--gap-small);
  fill: currentColor;
}
.button-one.is-primary:not(.is-outlined):disabled,
.button-one.is-secondary:not(.is-outlined):disabled,
.button-one.is-primary:not(.is-outlined)[disabled],
.button-one.is-secondary:not(.is-outlined)[disabled] {
  background: hsl(var(--ah), var(--as), var(--al));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  color: hsl(var(--ah), var(--as), calc(var(--al) - 20%));
}
.button-one.is-primary:not(.is-outlined):disabled:hover,
.button-one.is-secondary:not(.is-outlined):disabled:hover,
.button-one.is-primary:not(.is-outlined)[disabled]:hover,
.button-one.is-secondary:not(.is-outlined)[disabled]:hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.button-one.is-primary:not(.is-outlined):disabled:active,
.button-one.is-secondary:not(.is-outlined):disabled:active,
.button-one.is-primary:not(.is-outlined)[disabled]:active,
.button-one.is-secondary:not(.is-outlined)[disabled]:active {
  box-shadow: 0 0 0 0.2rem hsla(var(--ah), var(--as), var(--al), 0.3);
}
.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:not(.is-outlined):active {
  box-shadow: 0 0 0 0.2rem hsla(var(--ph), var(--ps), var(--pl), 0.3);
}
.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(--ah), var(--as), calc(var(--al) - 2%));
  color: hsl(var(--th), var(--ts), var(--tl));
}
.button-one.is-secondary:not(.is-outlined):hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 6%));
}
.button-one.is-secondary:not(.is-outlined):active {
  box-shadow: 0 0 0 0.2rem hsla(var(--ah), var(--as), var(--al), 0.6);
}
.button-one.is-secondary.is-outlined {
  background-color: transparent;
  border: 2px solid hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--ph), var(--ps), var(--pl));
}
@media (min-width: 768px) {
  .button-one.is-medium {
    min-height: 40px;
  }
  .button-one.is-large {
    min-height: 44px;
  }
  .button-one.is-small:not(.is-uppercase) {
    font-size: 16px;
  }
  .button-one.is-medium:not(.is-uppercase) {
    font-size: 16px;
  }
  .button-one.is-large:not(.is-uppercase) {
    font-size: 17px;
  }
}
.button-three {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: unset;
  line-height: 1.45em;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  user-select: none;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--border-radius-small);
  background-color: transparent;
  overflow: visible;
}
.button-three:focus,
.button-three:active,
.button-three:hover {
  outline: none;
}
.button-three:disabled,
.button-three[disabled] {
  cursor: auto;
}
.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 12px;
}
.button-three.is-medium {
  min-height: 36px;
  padding: 7px 14px;
}
.button-three.is-large {
  min-height: 42px;
  padding: 8px 16px;
}
.button-three.is-wide.is-small {
  width: 180px;
}
.button-three.is-wide.is-medium {
  width: 200px;
}
.button-three.is-wide.is-large {
  width: 220px;
}
.button-three.is-narrow {
  max-width: 270px;
}
.button-three.is-free {
  width: 100%;
}
.button-three.is-uppercase {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.button-three.is-small:not(.is-uppercase) {
  font-size: 15px;
}
.button-three.is-medium:not(.is-uppercase) {
  font-size: 16px;
}
.button-three.is-large:not(.is-uppercase) {
  font-size: 16px;
}
.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:not(.is-outlined)::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--border-radius-small);
  backface-visibility: hidden;
  box-shadow: 0 1px 2px hsla(var(--th), var(--ts), var(--tl), 0.1);
  transform: scale(1, 1) translateZ(0);
  transition: transform 0.4s ease;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.button-three:active:not(.is-outlined)::before {
  transform: scale(0.975, 0.96) translateZ(0);
}
.button-three__container {
  display: inline-block;
}
.button-three > svg {
  position: relative;
  flex-shrink: 0;
  display: block;
  margin-right: var(--gap-small);
  fill: currentColor;
  z-index: 1;
}
.button-three__text {
  position: relative;
  z-index: 1;
}
.button-three.is-primary:not(.is-outlined):disabled,
.button-three.is-secondary:not(.is-outlined):disabled,
.button-three.is-primary:not(.is-outlined)[disabled],
.button-three.is-secondary:not(.is-outlined)[disabled] {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 20%));
}
.button-three.is-primary:not(.is-outlined):disabled::before,
.button-three.is-secondary:not(.is-outlined):disabled::before,
.button-three.is-primary:not(.is-outlined)[disabled]::before,
.button-three.is-secondary:not(.is-outlined)[disabled]::before {
  background-color: hsl(var(--ah), var(--as), var(--al));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.button-three.is-primary:not(.is-outlined) {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.button-three.is-primary:not(.is-outlined)::before {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.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.is-secondary:not(.is-outlined) {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.button-three.is-secondary:not(.is-outlined)::before {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 2%));
}
.button-three.is-secondary.is-outlined {
  background-color: transparent;
  border: 2px solid hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--ph), var(--ps), var(--pl));
}
@media (min-width: 768px) {
  .button-three.is-medium {
    min-height: 40px;
  }
  .button-three.is-large {
    min-height: 44px;
  }
  .button-three.is-small:not(.is-uppercase) {
    font-size: 16px;
  }
  .button-three.is-medium:not(.is-uppercase) {
    font-size: 16px;
  }
  .button-three.is-large:not(.is-uppercase) {
    font-size: 17px;
  }
}
.button-two {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  border: unset;
  line-height: 1.45em;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  user-select: none;
  overflow: hidden;
  cursor: pointer;
  border-radius: var(--border-radius-small);
  transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.button-two:focus,
.button-two:active,
.button-two:hover {
  outline: none;
}
.button-two:disabled,
.button-two[disabled] {
  cursor: auto;
}
.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 12px;
}
.button-two.is-medium {
  min-height: 36px;
  padding: 7px 14px;
}
.button-two.is-large {
  min-height: 42px;
  padding: 8px 16px;
}
.button-two.is-wide.is-small {
  width: 180px;
}
.button-two.is-wide.is-medium {
  width: 200px;
}
.button-two.is-wide.is-large {
  width: 220px;
}
.button-two.is-narrow {
  max-width: 270px;
}
.button-two.is-free {
  width: 100%;
}
.button-two.is-uppercase {
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.button-two.is-small:not(.is-uppercase) {
  font-size: 15px;
}
.button-two.is-medium:not(.is-uppercase) {
  font-size: 16px;
}
.button-two.is-large:not(.is-uppercase) {
  font-size: 16px;
}
.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 > svg {
  flex-shrink: 0;
  display: block;
  margin-right: var(--gap-small);
  fill: currentColor;
}
.button-two.is-primary:not(.is-outlined):disabled,
.button-two.is-secondary:not(.is-outlined):disabled,
.button-two.is-primary:not(.is-outlined)[disabled],
.button-two.is-secondary:not(.is-outlined)[disabled] {
  background: hsl(var(--ah), var(--as), var(--al));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  color: hsl(var(--ah), var(--as), calc(var(--al) - 20%));
}
.button-two.is-primary:not(.is-outlined):disabled:hover,
.button-two.is-secondary:not(.is-outlined):disabled:hover,
.button-two.is-primary:not(.is-outlined)[disabled]:hover,
.button-two.is-secondary:not(.is-outlined)[disabled]:hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.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(--bh), var(--bs), var(--bl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.button-two.is-secondary:not(.is-outlined) {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 2%));
  color: hsl(var(--th), var(--ts), var(--tl));
}
.button-two.is-secondary:not(.is-outlined):hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 6%));
}
.button-two.is-secondary.is-outlined {
  background-color: transparent;
  border: 2px solid hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.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.6s 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: 44px;
  }
  .button-two.is-small:not(.is-uppercase) {
    font-size: 16px;
  }
  .button-two.is-medium:not(.is-uppercase) {
    font-size: 16px;
  }
  .button-two.is-large:not(.is-uppercase) {
    font-size: 17px;
  }
}
.buttons {
  display: flex;
  flex-wrap: wrap;
  margin-top: -10px;
}
.buttons--gap {
  margin-bottom: var(--gap);
}
.buttons > * {
  margin-top: 10px;
}
.buttons--left {
  justify-content: flex-start;
}
.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-one {
  display: block;
  height: 100%;
  max-width: 400px;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.card-one--gap {
  margin-bottom: var(--gap);
}
.card-one__wrapper {
  height: 100%;
  border-radius: var(--border-radius-normal);
  overflow: hidden;
}
.card-one__wrapper.is-primary {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.card-one__wrapper.is-secondary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.card-one__wrapper.is-semitone {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.card-one__image-wrapper {
  position: relative;
  display: flex;
  border-top-left-radius: var(--border-radius-normal);
  border-top-right-radius: var(--border-radius-normal);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  overflow: hidden;
  isolation: isolate;
}
.card-one__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  object-fit: cover;
}
.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__content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
}
.card-one__label {
  display: block;
  margin-bottom: 5px;
  text-align: center;
  font-size: 0.9em;
  line-height: 1.45em;
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.card-one__title {
  margin-bottom: var(--gap-small);
  font-size: var(--name-font-size);
  font-weight: 600;
  text-align: center;
}
.card-one__text {
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.catalog-button-one {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: unset;
  border-radius: var(--border-radius-small);
  line-height: 1em;
  white-space: nowrap;
  text-decoration: none;
  transition: 0.4s ease;
  overflow: hidden;
  cursor: pointer;
}
.catalog-button-one:focus,
.catalog-button-one:active,
.catalog-button-one:hover {
  outline: none;
}
.catalog-button-one:not(.font--philosopher) {
  font-size: 1.05em;
  letter-spacing: 0.5px;
}
.catalog-button-one.font--philosopher {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.catalog-button-one.is-rounded {
  border-radius: 25px;
}
.catalog-button-one.is-medium {
  min-height: 38px;
  padding: 7px 14px;
}
.catalog-button-one.is-medium.is-wide {
  width: 200px;
}
.catalog-button-one.is-large {
  min-height: 42px;
  padding: 8px 16px;
}
.catalog-button-one.is-large.is-wide {
  width: 220px;
}
.catalog-button-one.is-narrow {
  max-width: 270px;
}
.catalog-button-one.is-primary {
  background-color: hsl(var(--ih), var(--is), var(--il));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.catalog-button-one.is-primary:hover {
  background-color: hsl(var(--ih), var(--is), calc(var(--il) + 10%));
}
.catalog-button-one.is-primary .catalog-button-one__icon {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.catalog-button-one.is-secondary {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.catalog-button-one.is-secondary:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 10%));
}
.catalog-button-one.is-secondary .catalog-button-one__icon {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.catalog-button-one.is-active .catalog-button-one__icon,
.catalog-button-one.is-triggered .catalog-button-one__icon {
  transform: scale(0.9);
}
.catalog-button-one.is-active .catalog-button-one__icon span:nth-child(1),
.catalog-button-one.is-triggered .catalog-button-one__icon span:nth-child(1) {
  opacity: 0;
}
.catalog-button-one.is-active .catalog-button-one__icon span:nth-child(2),
.catalog-button-one.is-triggered .catalog-button-one__icon span:nth-child(2) {
  margin: 2px 0;
  transform: rotate(-45deg);
}
.catalog-button-one.is-active .catalog-button-one__icon span:nth-child(3),
.catalog-button-one.is-triggered .catalog-button-one__icon span:nth-child(3) {
  transform: rotate(45deg) translate(-3px, -3px);
  transform-origin: center;
  width: 24px;
}
.catalog-button-one.is-active:hover .catalog-button-one__icon span:nth-child(3),
.catalog-button-one.is-triggered:hover .catalog-button-one__icon span:nth-child(3) {
  width: 24px;
}
.catalog-button-one:hover .catalog-button-one__icon > span {
  width: 24px;
}
.catalog-button-one__icon {
  display: block;
  margin-right: 15px;
}
.catalog-button-one__icon > span {
  display: block;
  height: 2px;
  width: 24px;
  border-radius: 2px;
  transition: width 0.4s ease, transform 0.4s ease;
  background-color: currentColor;
}
.catalog-button-one__icon > span:nth-child(1) {
  width: 16px;
}
.catalog-button-one__icon > span:nth-child(2) {
  margin: 4px 0;
}
.catalog-button-one__icon > span:nth-child(3) {
  width: 16px;
  float: right;
}
.catalog-button-two {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: unset;
  border-radius: var(--border-radius-small);
  line-height: 1em;
  white-space: nowrap;
  text-decoration: none;
  transition: 0.4s ease;
  overflow: hidden;
  cursor: pointer;
}
.catalog-button-two:focus,
.catalog-button-two:active,
.catalog-button-two:hover {
  outline: none;
}
.catalog-button-two:not(.font--philosopher) {
  font-size: 1.05em;
  letter-spacing: 0.5px;
}
.catalog-button-two.font--philosopher {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.catalog-button-two.is-rounded {
  border-radius: 25px;
}
.catalog-button-two.is-medium {
  min-height: 36px;
  padding: 7px 14px;
}
.catalog-button-two.is-medium.is-wide {
  width: 200px;
}
.catalog-button-two.is-large {
  min-height: 42px;
  padding: 8px 16px;
}
.catalog-button-two.is-large.is-wide {
  width: 220px;
}
.catalog-button-two.is-narrow {
  max-width: 270px;
}
.catalog-button-two.is-primary {
  background-color: hsl(var(--ih), var(--is), var(--il));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.catalog-button-two.is-primary:hover {
  background-color: hsl(var(--ih), var(--is), calc(var(--il) + 10%));
}
.catalog-button-two.is-primary .catalog-button-two__icon {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.catalog-button-two.is-secondary {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.catalog-button-two.is-secondary:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 10%));
}
.catalog-button-two.is-secondary .catalog-button-two__icon {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.catalog-button-two.is-active .catalog-button-two__icon,
.catalog-button-two.is-triggered .catalog-button-two__icon {
  transform: scale(0.9);
}
.catalog-button-two.is-active .catalog-button-two__icon span:nth-child(1),
.catalog-button-two.is-triggered .catalog-button-two__icon span:nth-child(1) {
  opacity: 0;
}
.catalog-button-two.is-active .catalog-button-two__icon span:nth-child(2),
.catalog-button-two.is-triggered .catalog-button-two__icon span:nth-child(2) {
  margin: 2px 0;
  transform: rotate(-45deg);
}
.catalog-button-two.is-active .catalog-button-two__icon span:nth-child(3),
.catalog-button-two.is-triggered .catalog-button-two__icon span:nth-child(3) {
  transform: rotate(45deg) translate(-3px, -3px);
  transform-origin: center;
  width: 24px;
}
.catalog-button-two.is-active:hover .catalog-button-two__icon span:nth-child(3),
.catalog-button-two.is-triggered:hover .catalog-button-two__icon span:nth-child(3) {
  width: 24px;
}
.catalog-button-two:hover .catalog-button-two__icon > span {
  width: 24px;
}
.catalog-button-two__icon {
  display: block;
  margin-right: 15px;
}
.catalog-button-two__icon > span {
  display: block;
  height: 2px;
  width: 24px;
  border-radius: 2px;
  transition: width 0.4s ease, transform 0.4s ease;
  background-color: currentColor;
}
.catalog-button-two__icon > span:nth-child(1) {
  width: 16px;
}
.catalog-button-two__icon > span:nth-child(2) {
  margin: 4px 0;
}
.catalog-button-two__icon > span:nth-child(3) {
  width: 16px;
  float: right;
}
@media (min-width: 768px) {
  .catalog-button-two.is-large {
    min-height: 44px;
  }
}
.catalog-mobile-one__switch {
  padding: var(--gap-small);
}
.catalog-mobile-one__subtitle {
  display: block;
  padding: 0 var(--gap-small);
  margin-bottom: var(--gap-small);
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.catalog-mobile-one__tabs {
  border-style: solid;
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-bottom-width: 1px;
  border-top-width: 1px;
  margin-bottom: var(--gap-small);
}
.catalog-mobile-one__tab {
  display: block;
  width: 100%;
  min-height: 25px;
  padding: 0.8rem;
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.catalog-mobile-one__tab.is-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 10px;
  align-items: center;
}
.catalog-mobile-one__tab:not(:last-child) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.catalog-mobile-one__tab > svg {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: var(--border-radius-small);
}
.catalog-mobile-one__tab .icon-whatsapp {
  width: 22px;
  height: 22px;
  fill: hsl(148, 100%, 36%);
}
.catalog-mobile-one__value {
  display: block;
  font-size: 0.95em;
  line-height: 1.45em;
}
.catalog-mobile-one__desc {
  display: block;
  font-size: 0.85em;
  line-height: 1.45em;
  color: hsla(var(--th), var(--ts), var(--tl), 0.5);
}
.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: 600;
  word-break: keep-all;
}
.catalog-mobile-one__counter.is-active {
  display: flex;
}
.catalog-mobile-one__item {
  display: grid;
  align-items: center;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.catalog-mobile-one__item:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.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: 25px;
  padding: 0.8rem;
  box-sizing: border-box;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  line-height: 1.45em;
}
.catalog-mobile-one__link.has-image {
  grid-template-columns: 25px 1fr;
}
.catalog-mobile-one__image {
  display: flex;
  align-items: center;
}
.catalog-mobile-one__image > img,
.catalog-mobile-one__image > svg {
  display: block;
  width: 100%;
  height: auto;
}
.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;
  height: 100%;
  width: 45px;
  cursor: pointer;
}
.catalog-mobile-one__arrow.is-rotated {
  transform: rotate(180deg);
}
.catalog-mobile-one__arrow:not(.is-rotated):active,
.catalog-mobile-one__arrow:not(.is-rotated):focus,
.catalog-mobile-one__arrow:not(.is-rotated):hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.catalog-mobile-one__arrow .icon-arrow-thin {
  fill: hsl(var(--th), var(--ts), var(--tl));
  width: 12px;
  height: 12px;
  transition: 0.3s ease 0s;
}
.catalog-mobile-one__sublist {
  position: fixed;
  left: -100%;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.catalog-mobile-one__sublist.is-opened {
  left: 0;
}
.catalog-mobile-one__sublist-content {
  height: 100%;
  overflow-y: scroll;
}
.catalog-mobile-one__sublist-content::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: transparent;
}
.catalog-mobile-one__sublist-content::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.catalog-mobile-one__back {
  display: grid;
  grid-template-columns: auto 1fr;
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  cursor: pointer;
}
.catalog-mobile-one__back:hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.catalog-one {
  display: none;
}
.catalog-one.is-stretched {
  height: 100%;
}
.catalog-one.is-layout {
  position: absolute;
  top: 100%;
  left: 0;
  height: calc(100vh - 100%);
  width: 100%;
  pointer-events: none;
}
.catalog-one__overlay {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  height: 100vh;
  background-color: var(--dim-muted);
  transition: opacity 0.5s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 70;
}
.catalog-one__center {
  position: relative;
  display: block;
  max-width: var(--frame-width);
  margin: var(--gap-small) auto 0;
  box-sizing: border-box;
  pointer-events: none;
  z-index: 80;
}
.catalog-one__wrapper {
  display: grid;
  grid-template-columns: 300px 1fr;
  width: 100%;
  height: 100%;
  align-items: start;
}
.catalog-one__wrapper.is-layout {
  transform: translateY(15px);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}
.catalog-one__error {
  width: 300px;
  padding: 1rem;
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-small);
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  text-align: center;
}
.catalog-one__error.is-layout {
  opacity: 0;
  visibility: hidden;
  pointer-events: auto;
}
.catalog-one__tabs {
  height: 100%;
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  pointer-events: auto;
  overflow: hidden;
}
.catalog-one__tab:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), var(--al));
}
.catalog-one__tab-link {
  display: grid;
  grid-gap: 0.8rem;
  padding: 1rem;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: background-color 0.3s ease;
}
.catalog-one__tab-link.is-parent {
  grid-template-columns: 1fr auto;
}
.catalog-one__tab-link.is-parent.has-image {
  grid-template-columns: 25px 1fr auto;
}
.catalog-one__tab-link.has-image {
  grid-template-columns: 25px 1fr;
}
.catalog-one__tab-link:hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.catalog-one__tab-link:hover .catalog-one__tab-arrow > svg {
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.catalog-one__tab-link:focus {
  outline: none;
}
.catalog-one__image {
  display: flex;
  align-items: center;
}
.catalog-one__image img,
.catalog-one__image svg {
  display: block;
  width: 100%;
  height: auto;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.catalog-one__tab-name {
  display: flex;
  align-items: center;
  font-size: 0.95em;
}
.catalog-one__tab-value {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.catalog-one__tab-arrow {
  display: flex;
  align-items: center;
}
.catalog-one__tab-arrow svg {
  width: 12px;
  height: 12px;
  fill: hsl(var(--th), var(--ts), var(--tl));
  transition: 0.3s ease;
}
.catalog-one__badge {
  display: block;
  margin-left: 10px;
  padding: 3px 10px;
  border-radius: var(--border-radius-small);
  font-size: 13px;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.catalog-one__content {
  width: calc(100% + 3px);
  height: 100%;
  margin-left: -3px;
}
.catalog-one__item {
  display: none;
  min-height: 100%;
  max-height: 500px;
  height: 100%;
  padding: 1.5rem;
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  pointer-events: none;
  overflow-y: scroll;
}
.catalog-one__item.is-active {
  display: block;
  animation: slide-in-to-right 0.3s ease forwards;
  pointer-events: auto;
}
.catalog-one__item::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
}
.catalog-one__item::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: 4px;
  margin-left: 5px;
}
.catalog-one__item-header {
  margin-bottom: var(--gap);
}
.catalog-one__item-name {
  margin-right: 5px;
  font-size: 1.1em;
  line-height: 1.45em;
}
.catalog-one__item-counter {
  font-size: 15px;
  opacity: 0.5;
}
.catalog-one__sub-list {
  display: grid;
  grid-gap: var(--gap);
}
.catalog-one__column {
  display: flex;
  flex-direction: column;
}
.catalog-one__column > :not(:last-child) {
  margin-bottom: 1rem;
}
.catalog-one__sub-item.has-image {
  display: grid;
  grid-template-columns: 30px 1fr;
  grid-gap: 0.8rem;
  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-wrapper {
  display: flex;
  align-items: center;
}
.catalog-one__sub-link {
  display: inline;
  padding-bottom: 3px;
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 87%;
  background-image: linear-gradient(to right, hsl(var(--ph), var(--ps), var(--pl)) 0%, hsl(var(--ph), var(--ps), var(--pl)) 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.45em;
  color: currentColor;
  white-space: normal;
  text-decoration: none;
}
.catalog-one__sub-link:hover {
  background-size: 100% 2px;
}
.catalog-one__sub-link:focus {
  outline: none;
}
.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;
  transition: 0.3s ease;
}
.catalog-one__child-link:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
@media (min-width: 992px) {
  .catalog-one {
    display: block;
  }
  .catalog-one.is-active {
    pointer-events: auto;
  }
  .catalog-one.is-active .catalog-one__overlay {
    opacity: 1;
    visibility: visible;
  }
  .catalog-one.is-active .catalog-one__error,
  .catalog-one.is-active .catalog-one__wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.2s ease;
  }
}
@media (min-width: 1100px) {
  .catalog-one__sub-list {
    grid-template-columns: 1fr 1fr;
    margin-left: 1rem;
  }
}
.categories-carousel {
  position: relative;
}
.categories-carousel:hover .categories-carousel__button {
  opacity: 1;
  visibility: visible;
}
.categories-carousel:hover .categories-carousel__button.is-next {
  transform: translateX(6px);
}
.categories-carousel:hover .categories-carousel__button.is-prev {
  transform: translateX(-6px);
}
.categories-carousel--gap {
  margin-bottom: var(--gap);
}
.categories-carousel__slide {
  align-items: center;
  min-height: 75px;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  text-decoration: none;
  color: currentColor;
  user-select: none;
  transition: border-color 0.3s ease;
}
.categories-carousel__slide:not(.has-icon) {
  display: flex;
  justify-content: center;
}
.categories-carousel__slide.has-icon {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: auto 1fr;
}
.categories-carousel__slide.is-primary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.categories-carousel__slide.is-secondary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.categories-carousel__slide.is-semitone {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.categories-carousel__slide:hover {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.categories-carousel__button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: calc(0px - 34px / 2);
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  opacity: 0;
  visibility: hidden;
}
.categories-carousel__button.is-next {
  right: -8px;
}
.categories-carousel__button.is-prev {
  left: -8px;
}
.categories-carousel__button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.categories-carousel__button[aria-disabled='true'] .icon-arrow-thin {
  opacity: 0.25;
}
.categories-carousel__button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.categories-carousel__button.swiper-button-lock {
  display: none;
}
.categories-carousel__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.categories-carousel__icon > img {
  display: block;
  max-width: 44px;
  height: auto;
  border-radius: var(--border-radius-small);
}
.categories-carousel__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;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.categories-carousel__count {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  margin-left: var(--gap-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  font-size: 0.8em;
}
.category-carousel {
  position: relative;
}
.category-carousel--gap {
  margin-bottom: var(--gap);
}
.category-carousel__item {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  margin: 1px;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: 0.2s ease;
}
.category-carousel__item:hover {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.category-carousel__image {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.category-carousel__image > img {
  display: block;
  max-height: 110px;
  min-height: 110px;
  height: auto;
  font-size: 0;
  object-fit: cover;
}
.category-carousel__item-content {
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-carousel__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;
}
.category-carousel__count {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 16px;
  min-width: 16px;
  padding: 0 5px;
  margin-left: var(--gap-small);
  box-sizing: border-box;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border-radius: 12px;
  font-size: 11px;
  line-height: 11px;
  font-weight: 700;
  word-break: keep-all;
}
.category-carousel__pagination {
  bottom: unset !important;
}
.category-carousel__pagination > .swiper-pagination-bullet {
  position: relative;
  width: 12px;
  height: 12px;
  background: hsla(0, 0%, 0%, 0.1);
  opacity: 1;
}
.category-carousel__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;
}
.category-carousel__pagination > .swiper-pagination-bullet.is-active::before {
  transform: scale(1.5);
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.category-features--gap {
  margin-bottom: var(--gap);
}
.category-features > :not(:last-child) {
  margin-bottom: 5px;
}
.category-features__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 5px;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.category-features__code {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.category-features__line {
  display: block;
  height: 5px;
  min-width: 20px;
  margin-top: 12px;
  background: radial-gradient(ellipse at center, hsl(var(--ah), var(--as), calc(var(--al) - 4%)) 0, hsl(var(--ah), var(--as), calc(var(--al) - 4%)) 0.5px, transparent 1.25px) right;
  background-size: 5px;
}
.category-features__value {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: right;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.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;
}
.cbx__label > a {
  color: currentColor;
}
.chip-one.is-grid {
  display: flex;
}
.chip-one.is-primary {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.chip-one.is-secondary {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.chip-one--gap {
  margin-bottom: var(--gap);
}
.chip-one > svg {
  flex-shrink: 0;
  display: block;
  margin-top: 2px;
  margin-right: var(--gap-small);
  fill: currentColor;
}
.chip-one__text {
  line-height: 1.45em;
}
.chip-one__text:is(a) {
  text-decoration: none;
  display: inline;
  padding-bottom: 3px;
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 87%;
  background-image: linear-gradient(to right, hsl(var(--ph), var(--ps), var(--pl)) 0%, hsl(var(--ph), var(--ps), var(--pl)) 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.45em;
  color: currentColor;
}
.chip-one__text:is(a):hover {
  background-size: 100% 2px;
}
.chip-one__text:is(a):focus {
  outline: none;
}
.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(148, 100%, 36%);
}
.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);
}
.control-button--gap {
  margin-bottom: var(--gap);
}
.control-button.is-active .icon-favorite-check,
.control-button.is-active .icon-compare-check {
  visibility: visible;
  transform: scale(1);
  opacity: 1;
  width: auto;
}
.control-button.is-active .icon-favorite,
.control-button.is-active .icon-compare {
  visibility: hidden;
  transform: scale(0);
  opacity: 0;
  width: 0;
}
.control-button__button {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 36px;
  height: 36px;
  padding: 6px;
  box-sizing: border-box;
  border-radius: 50%;
  background-color: hsla(var(--th), var(--ts), var(--tl), 0.55);
  transition: 0.3s ease;
  cursor: pointer;
}
.control-button__button:hover {
  background-color: hsla(var(--th), var(--ts), var(--tl), 0.75);
}
.control-button__button > svg {
  width: 18px;
  height: 18px;
  fill: hsl(var(--bh), var(--bs), var(--bl));
  transition: 0.2s ease;
  transform-origin: center;
}
.control-button__button .icon-favorite-check,
.control-button__button .icon-compare-check {
  visibility: hidden;
  transform: scale(0);
  opacity: 0;
  width: 0;
}
.control-button__button .icon-favorite,
.control-button__button .icon-compare {
  visibility: visible;
  transform: scale(1);
  opacity: 1;
  width: auto;
}
@media (max-width: 767px) {
  .control-button__tooltip {
    display: none !important;
  }
}
.cookies {
  position: fixed;
  bottom: 15px;
  display: none;
  justify-content: space-between;
  width: 100%;
  max-width: calc(100% - 30px);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-normal);
  box-sizing: border-box;
  border: 1px solid hsl(var(--ah), var(--as), var(--al));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-light);
  z-index: 150;
}
.cookies.is-left {
  left: 15px;
}
.cookies.is-right {
  right: 15px;
}
.cookies.is-elevated {
  bottom: 75px;
}
.cookies.is-active {
  display: flex;
}
.cookies__text {
  display: block;
  margin-right: 1rem;
  font-size: 0.95em;
  line-height: 1.45em;
}
.cookies__text > a {
  color: hsl(var(--th), var(--ts), var(--tl));
}
@media (min-width: 768px) {
  .cookies {
    bottom: 25px;
    width: auto;
    max-width: 600px;
  }
  .cookies.is-left {
    left: 25px;
  }
  .cookies.is-right {
    right: 25px;
  }
  .cookies.is-elevated {
    bottom: 25px;
  }
}
.cross-one {
  flex-shrink: 0;
  position: relative;
  display: block;
  appearance: none;
  border: unset;
  border-radius: var(--border-radius-small);
  cursor: pointer;
}
.cross-one.is-medium {
  width: 28px;
  height: 28px;
}
.cross-one.is-medium::before,
.cross-one.is-medium::after {
  top: 3px;
  left: 13px;
  height: 22px;
}
.cross-one.is-small {
  width: 22px;
  height: 22px;
}
.cross-one.is-small::before,
.cross-one.is-small::after {
  top: 4px;
  left: 10px;
  height: 14px;
}
.cross-one.is-primary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.cross-one.is-primary::before,
.cross-one.is-primary::after {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 20%));
}
.cross-one.is-primary:hover::before,
.cross-one.is-primary:hover::after {
  background-color: hsl(var(--th), var(--ts), var(--tl));
}
.cross-one.is-secondary {
  background-color: hsl(var(--ih), var(--is), calc(var(--il) + 10%));
}
.cross-one.is-secondary::before,
.cross-one.is-secondary::after {
  background-color: hsla(var(--bh), var(--bs), var(--bl), 0.5);
}
.cross-one.is-secondary:hover::before,
.cross-one.is-secondary:hover::after {
  background-color: hsla(var(--bh), var(--bs), var(--bl), 0.9);
}
.cross-one::before,
.cross-one::after {
  content: '';
  position: absolute;
  display: block;
  width: 2px;
  border-radius: 2px;
  transition: 0.2s ease;
}
.cross-one::before {
  transform: rotate(45deg);
}
.cross-one::after {
  transform: rotate(-45deg);
}
.cross {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  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));
  cursor: pointer;
}
.cross .core-cross {
  display: block;
  width: 8px;
  height: 8px;
  fill: hsl(var(--th), var(--ts), var(--tl));
  transition: fill 0.25s ease;
}
.cross.is-top-right {
  position: absolute;
  top: var(--gap-small);
  right: var(--gap-small);
}
.cross.is-top-left {
  position: absolute;
  top: var(--gap-small);
  left: var(--gap-small);
}
.cross:hover .core-cross {
  fill: hsl(0, 0%, 56%);
}
.discount-one {
  display: inline-block;
  background-color: hsl(13, 100%, 63%);
  border-radius: var(--border-radius-small);
  line-height: 1.2em;
  white-space: nowrap;
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.discount-one--gap {
  margin-bottom: var(--gap);
}
.discount-one.is-tiny {
  padding: 3px 10px;
  font-size: 13px;
}
.discount-one.is-small {
  padding: 3px 14px;
  font-size: 13px;
}
.discount-one.is-medium {
  padding: 6px 16px;
  font-size: 14px;
}
.discount-one.is-large {
  padding: 8px 16px;
  font-size: 15px;
}
.ecommerce-actions {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-left: auto;
}
.ecommerce-actions > :not(:last-child) {
  margin-right: var(--gap);
}
.ecommerce-actions--gap {
  margin-bottom: var(--gap);
}
.ecommerce-actions__button {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.ecommerce-actions__button:focus {
  outline: none;
}
.ecommerce-actions__button-name {
  display: inline-block;
  margin-left: 5px;
}
.ecommerce-actions__button-name.is-medium {
  display: none;
}
.ecommerce-actions__counter-wrapper {
  position: relative;
}
.ecommerce-actions__counter-wrapper > svg {
  display: block;
  fill: hsl(var(--ph), var(--ps), var(--pl));
  cursor: pointer;
}
.ecommerce-actions__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: 600;
  word-break: keep-all;
}
.ecommerce-actions__counter.is-active {
  display: flex;
}
.ecommerce-actions__cart {
  position: relative;
}
.ecommerce-actions__cart:hover .ecommerce-actions__cart-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.ecommerce-actions__cart-dropdown {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.1s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  right: -2rem;
  top: 100%;
  padding-top: var(--gap-small);
}
.ecommerce-actions__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-soft);
  width: 450px;
  border-radius: var(--border-radius-normal);
}
.ecommerce-actions__cart-content::before {
  top: -5px;
  right: 2rem;
}
@media (min-width: 1100px) {
  .ecommerce-actions__button-name.is-medium {
    display: inline-block;
  }
}
.error-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 300px;
}
.error-message--gap {
  margin-bottom: var(--gap);
}
.error-message__icon {
  margin-bottom: var(--gap-small);
}
.error-message__icon .icon-cross-alter {
  display: block;
  width: 80px;
  height: 80px;
}
.error-message__icon .icon-cross-alter__tile-0 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 6%));
}
.error-message__icon .icon-cross-alter__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
}
.error-message__icon .icon-cross-alter__tile-2 {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.error-message__message {
  margin-top: var(--gap-small);
  text-align: center;
  line-height: 1.45em;
}
.error-message__message > a {
  cursor: pointer;
  text-decoration: underline;
  color: hsl(var(--th), var(--ts), var(--tl));
}
@media (min-width: 992px) {
  .error-message {
    min-height: 400px;
  }
  .error-message__icon .icon-cross-alter {
    width: 100px;
    height: 100px;
  }
}
.faq-two {
  max-width: 600px;
  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));
}
.faq-two--gap {
  margin-bottom: var(--gap);
}
.faq-two.is-active .faq-two__icon svg {
  transform: rotate(90deg);
}
.faq-two__question-wrapper {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: var(--gap-small);
  padding: 1rem;
  box-sizing: border-box;
  cursor: pointer;
}
.faq-two__question {
  font-size: 0.95em;
  line-height: 1.45em;
  user-select: none;
}
.faq-two__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  color: hsl(var(--th), var(--ts), var(--tl));
}
.faq-two__icon svg {
  width: 11px;
  height: 11px;
  fill: currentColor;
  transition: 0.2s ease;
}
.faq-two__answer-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.faq-two__answer {
  padding: 0 1rem 1rem;
  box-sizing: border-box;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.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 .icon-favorite-check {
  display: none;
  fill: hsl(13, 100%, 63%);
}
.favorite-button .icon-favorite {
  display: block;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 30%));
}
.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 > svg {
  width: 18px;
  height: 18px;
}
.favorite-button.is-medium[data-text]:not([data-text=''])::after {
  margin-left: 8px;
}
.favorite-button.is-medium > svg {
  width: 22px;
  height: 22px;
}
.favorite-button.is-active .icon-favorite-check {
  display: block;
}
.favorite-button.is-active .icon-favorite {
  display: none;
}
.favorite-button.is-active[data-text]:not([data-text=''])::after {
  content: attr(data-active-text);
}
.feedback {
  padding: 3px;
}
.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.7;
  font-style: italic;
  line-height: 1.45em;
}
.feedback__subtitle {
  margin-bottom: var(--gap);
}
.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(13, 100%, 63%);
}
.feedback__input {
  display: inline-block;
  min-height: 42px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.5rem 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(--ah), var(--as), calc(var(--al) - 8%));
}
.feedback__input:focus {
  outline: none;
  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%));
}
.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(13, 100%, 63%);
  box-shadow: 0 0 1px 1px hsl(13, 100%, 63%);
}
.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(13, 100%, 63%);
}
.feedback__agree {
  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;
  }
}
.filter-button {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0.4rem 1rem;
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 2%));
  font-size: 0.95em;
  transition: border-color 0.2s ease;
  outline: none;
  cursor: pointer;
}
.filter-button:hover {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.filter-button .icon-filter {
  display: block;
  width: 13px;
  height: 13px;
  margin-right: var(--gap-small);
  fill: hsl(var(--th), var(--ts), var(--tl));
}
.filter-button--gap {
  margin-bottom: var(--gap);
}
@media (min-width: 992px) {
  .filter-button {
    height: 34px;
  }
}
.filter.is-small {
  position: relative;
  min-height: 100%;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  z-index: 0;
}
.filter.is-medium .filter__form {
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.filter.is-loading {
  opacity: 0.5;
  pointer-events: none;
}
.filter--gap {
  margin-bottom: var(--gap);
}
.filter__title {
  display: flex;
  align-items: center;
  margin-bottom: var(--gap-small);
  font-size: 0.95em;
}
.filter__title > svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  fill: hsl(var(--th), var(--ts), var(--tl));
  margin-right: var(--gap-small);
}
.filter__form {
  position: relative;
}
.filter__group {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.filter__group.is-last {
  border-bottom: unset;
}
.filter__group.is-first .filter__top {
  border-top-right-radius: var(--border-radius-normal);
  border-top-left-radius: var(--border-radius-normal);
}
.filter__top {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: var(--gap-small);
  align-items: center;
  padding: 1rem;
  cursor: pointer;
}
.filter__top.is-opened .filter__collapse-btn .icon-arrow-thin {
  transform: rotate(90deg);
}
.filter__top:hover .filter__name > span {
  border-color: hsl(0, 0%, 66%);
}
.filter__name {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 0.95em;
  line-height: 1.45em;
  user-select: none;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}
.filter__name > span {
  transition: 0.2s ease;
  border-bottom: 1px dotted transparent;
}
.filter__collapse-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  user-select: none;
}
.filter__collapse-btn .icon-arrow-thin {
  display: block;
  width: 12px;
  height: 12px;
  fill: hsl(0, 0%, 66%);
  transition: transform 0.2s ease;
}
.filter__content {
  display: none;
  padding: 0 1rem 1rem;
}
.filter__content.is-opened {
  display: block;
}
.filter__item {
  display: flex;
  align-items: center;
}
.filter__item--range {
  margin-bottom: 1rem;
}
.filter__range {
  margin-bottom: 1rem;
}
.filter__min,
.filter__max {
  width: calc(50% - 5px);
  min-height: 36px;
  box-sizing: border-box;
  padding: 0 0.8rem;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: var(--border-radius-small);
  font-size: 0.9em;
  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;
}
.filter__min:hover,
.filter__max:hover,
.filter__min:focus,
.filter__max:focus {
  outline: none;
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 20%));
}
.filter__min {
  margin-right: 5px;
}
.filter__max {
  margin-left: 5px;
}
.filter__radio-wrapper {
  display: grid;
  grid-gap: 5px;
}
.filter__color-wrapper {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-gap: 5px;
  max-width: 350px;
}
.filter__color-input {
  display: none;
}
.filter__color-input:checked ~ .filter__color-label .filter__color-block {
  filter: brightness(80%);
}
.filter__color-input:checked ~ .filter__color-label svg {
  visibility: visible;
  transform: scale(1);
  opacity: 1;
  width: auto;
}
.filter__color-label {
  position: relative;
  display: block;
  padding-bottom: calc(100% - 2px);
  border: 1px solid hsl(var(--bh), var(--bs), var(--bl));
  height: 0;
  width: 100%;
  border-radius: 50%;
  box-sizing: border-box;
  cursor: pointer;
  z-index: 1;
}
.filter__color-block {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  box-shadow: 0 0 0 1px hsl(220, 5%, calc(95% - 4%)), inset 0 0 4px rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  z-index: 2;
}
.filter__color-icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 3;
}
.filter__color-icon svg {
  width: 0;
  height: 12px;
  fill: hsl(var(--bh), var(--bs), var(--bl));
  visibility: hidden;
  transform: scale(0);
  transition: all 0.3s ease;
  transform-origin: center;
  opacity: 0;
}
.filter__search-wrapper {
  position: relative;
  margin-bottom: var(--gap-small);
}
.filter__search {
  width: 100%;
  min-height: 36px;
  box-sizing: border-box;
  padding: 0 2rem 0 0.8rem;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: var(--border-radius-small);
  font-size: 0.9em;
  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;
}
.filter__search:hover,
.filter__search:focus {
  outline: none;
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 20%));
}
.filter__search-close {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  padding: 5px;
  background-color: transparent;
  border: none;
  outline: none;
}
.filter__search-close.is-active {
  cursor: pointer;
}
.filter__search-close.is-active .core-cross {
  display: block;
}
.filter__search-close.is-active .icon-search {
  display: none;
}
.filter__search-close .core-cross {
  display: none;
  width: 10px;
  height: 10px;
  fill: hsl(0, 0%, 66%);
}
.filter__search-close .icon-search {
  display: block;
  width: 16px;
  height: 16px;
  fill: hsl(0, 0%, 66%);
}
.filter__checkbox-wrapper.is-hidden {
  display: none;
}
.filter__checkbox-wrapper:not(:last-of-type) {
  margin-bottom: 5px;
}
.filter__more {
  display: inline-flex;
  align-items: center;
  margin-top: var(--gap-small);
  font-size: 15px;
  color: hsl(var(--ph), var(--ps), var(--pl));
  cursor: pointer;
}
.filter__more .icon-arrow-thin {
  display: block;
  width: 9px;
  height: 9px;
  margin-left: 5px;
  fill: currentColor;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}
.filter__more.is-triggered .icon-arrow-thin {
  transform: rotate(0);
}
.filter__more.is-hidden {
  display: none;
}
.filter__controls {
  display: flex;
  flex-direction: column;
  padding: 0 1.2rem 1rem;
  box-sizing: border-box;
}
.filter__controls.is-hidden {
  display: none;
}
.filter__controls .filter__submit.is-wide,
.filter__controls .filter__reset.is-wide {
  width: 100%;
  max-width: unset;
}
.filter__reload {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: var(--gap-small) auto 0;
  font-size: 0.95em;
  line-height: 1.45em;
  cursor: pointer;
}
.filter__reload .icon-reload {
  display: block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  fill: hsl(13, 100%, 63%);
}
.fixedbtn-one {
  position: fixed;
  bottom: 15px;
  display: none;
  width: 50px;
  height: 50px;
  border: 5px solid hsl(var(--bh), var(--bs), var(--bl));
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  box-shadow: var(--shadow-moderate);
  border-radius: 50%;
  opacity: 1;
  cursor: pointer;
  animation-name: appear;
  animation-duration: 0.6s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  transition: 0.25s ease all;
  z-index: 100;
}
.fixedbtn-one.is-active.is-mobile {
  display: block;
}
.fixedbtn-one.is-left {
  left: 15px;
}
.fixedbtn-one.is-right {
  right: 15px;
}
.fixedbtn-one:hover {
  transform: scale(1.05);
}
.fixedbtn-one:hover > svg {
  animation: unset;
}
.fixedbtn-one svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 28px;
  height: 28px;
  animation-name: rotation;
  animation-duration: 2.5s;
  animation-timing-function: ease;
  animation-iteration-count: infinite;
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
@media (min-width: 768px) {
  .fixedbtn-one {
    width: 60px;
    height: 60px;
    bottom: 25px;
  }
  .fixedbtn-one.is-left {
    left: 25px;
  }
  .fixedbtn-one.is-right {
    right: 25px;
  }
  .fixedbtn-one.is-active {
    display: block;
  }
}
.flyer {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.flyer--gap {
  margin-bottom: var(--gap);
}
.flyer__text {
  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%));
  border-bottom: 1px dotted hsl(var(--ph), var(--ps), var(--pl));
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}
.flyer > svg {
  flex-shrink: 0;
  display: block;
  width: 24px;
  height: 24px;
  margin-right: 8px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.flyer:hover > .flyer__dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.flyer__dropdown-wrapper {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.1s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  top: 100%;
  padding-top: var(--gap-small);
}
.flyer__dropdown-wrapper.is-left {
  left: 0;
}
.flyer__dropdown-wrapper.is-right {
  right: 0;
}
.flyer__dropdown {
  position: relative;
  width: calc(100dvw - 2rem - 8px);
  padding: 5px 10px;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-soft);
  line-height: 1.45em;
  cursor: auto;
}
.flyer__error {
  margin: 20px auto;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  font-size: 0.95em;
  line-height: 1.45em;
  text-align: center;
}
.footer-one {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer-one.is-secondary {
  border-top: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  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__bottom {
  border-top: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.footer-one.is-secondary .footer-one__icon {
  border-top-color: hsl(var(--ah), var(--as), calc(var(--al) - 30%));
}
.footer-one.is-secondary .footer-one__contact > svg {
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.footer-one.is-secondary .footer-one__dev > svg {
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.footer-one.is-secondary .footer-one__select {
  background-color: hsl(var(--ah), var(--as), var(--al));
  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-primary {
  background-color: hsl(var(--ih), var(--is), var(--il));
  color: hsl(var(--bh), var(--bs), calc(var(--bl) - 10%));
}
.footer-one.is-primary .footer-one__bottom {
  background-color: hsl(var(--ih), var(--is), calc(var(--il) - 10%));
  color: hsl(var(--bh), var(--bs), calc(var(--bl) - 30%));
}
.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__contact > svg {
  fill: currentColor;
}
.footer-one.is-primary .footer-one__dev > svg {
  fill: currentColor;
}
.footer-one.is-primary .footer-one__select {
  background-color: hsl(var(--ih), var(--is), var(--il));
  border-color: hsl(var(--bh), var(--bs), calc(var(--bl) - 20%));
  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__top,
.footer-one__center {
  position: relative;
}
.footer-one__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dim);
}
.footer-one__content > :not(:last-child) {
  margin-bottom: var(--gap);
}
.footer-one__subtitle {
  max-width: 800px;
  margin-right: auto;
  margin-left: auto;
  font-style: italic;
  line-height: 1.45em;
  text-align: center;
}
.footer-one__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: -1rem;
}
.footer-one__buttons > * {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
  margin-top: 1rem;
}
.footer-one__columns {
  display: grid;
  grid-gap: 2rem;
}
.footer-one__columns:not(:first-child) {
  padding-top: 2rem;
}
.footer-one__column > :not(:last-child) {
  margin-bottom: 1rem;
}
.footer-one__text {
  font-size: 0.95em;
  line-height: 1.45em;
}
.footer-one__title {
  display: block;
  font-weight: 600;
  font-size: var(--name-font-size);
  line-height: 1.45em;
}
.footer-one__row {
  display: grid;
  grid-gap: 1rem;
  align-items: center;
  justify-content: space-between;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-top: var(--gap);
  padding-bottom: var(--gap);
  font-size: 15px;
  line-height: 1.45em;
}
.footer-one__dev {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: currentColor;
  transition: 0.2s ease;
}
.footer-one__dev:hover {
  opacity: 0.7;
}
.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;
  color: currentColor;
  transition: 0.2s ease;
}
.footer-one__policy:hover {
  opacity: 0.7;
}
.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;
  margin-top: 5px;
}
.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;
}
.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.2s ease;
  cursor: pointer;
}
.footer-one__icon.is-opened {
  transform: rotate(-90deg);
}
.footer-one__link {
  font-size: 0.95em;
  line-height: 1.45em;
  color: currentColor;
  text-decoration: none;
  transition: 0.2s ease;
}
.footer-one__link:hover {
  opacity: 0.7;
}
.footer-one__contact {
  display: flex;
}
.footer-one__contact > svg {
  flex-shrink: 0;
  display: block;
  width: 17px;
  height: 17px;
  margin-top: 2px;
  margin-right: var(--gap-small);
}
.footer-one__contact-value {
  font-size: 0.95em;
  line-height: 1.45em;
}
.footer-one__contact-value:is(a) {
  color: currentColor;
  text-decoration: none;
  transition: 0.2s ease;
}
.footer-one__contact-value:is(a):hover {
  opacity: 0.7;
}
.footer-one__select {
  display: block;
  width: 100%;
  min-width: 200px;
  max-width: 400px;
  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.2s 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-small);
}
@media (max-width: 767px) {
  .footer-one.is-spaced-bottom {
    margin-bottom: 65px;
  }
}
@media (min-width: 768px) {
  .footer-one__row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .footer-one__columns {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  .footer-one__columns {
    grid-template-columns: repeat(4, 1fr);
  }
  .footer-one__columns:not(:first-child) {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .footer-one__row {
    display: flex;
    grid-gap: unset;
  }
  .footer-one__row > :not(:first-of-type) {
    margin-left: 2rem;
  }
  .footer-one__row > * {
    max-width: 40%;
  }
}
.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--gradient {
  background-image: linear-gradient(to bottom, hsl(var(--ah), var(--as), var(--al)), hsl(var(--bh), var(--bs), var(--bl)));
}
.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__wrapper {
  display: flex;
  align-items: center;
  max-width: var(--frame-width);
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header-eight__wrapper > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.header-eight__column {
  display: flex;
  align-items: center;
  max-width: 400px;
}
.header-eight__column > :not(:first-child) {
  margin-left: var(--gap-small);
}
.header-eight__login {
  flex-shrink: 0;
}
@media (min-width: 992px) {
  .header-eight {
    display: block;
  }
}
.header-five {
  display: none;
}
.header-five .is-desktop {
  display: none;
}
.header-five .is-mobile {
  display: block;
}
.header-five__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--frame-width);
  padding-top: 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header-five__top > :not(:last-child) {
  margin-right: var(--gap-extended);
}
.header-five__top-column {
  display: flex;
  align-items: center;
}
.header-five__top-column > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.header-five__logo {
  padding-left: var(--gap-extended);
  padding-right: var(--gap-small);
}
.header-five__middle {
  display: flex;
  align-items: center;
  max-width: var(--frame-width);
  padding-top: var(--gap-small);
  padding-bottom: var(--gap-small);
  margin: 0 auto;
  box-sizing: border-box;
}
.header-five__middle > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.header-five__search {
  flex-grow: 1;
}
.header-five__bottom {
  position: relative;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-bottom: 15px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .header-five {
    display: block;
  }
}
.header-fixed-one {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  box-shadow: var(--shadow-moderate);
  opacity: 0;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  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: 15px;
  padding-bottom: 15px;
  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);
}
@media (min-width: 992px) {
  .header-fixed-one {
    display: block;
  }
}
.header-fixed-three {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  box-shadow: var(--shadow-moderate);
  opacity: 0;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--frame-width);
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header-fixed-three__top > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.header-fixed-three__group {
  display: flex;
  align-items: center;
}
.header-fixed-three__group > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.header-fixed-three__slogan {
  display: none;
  max-width: 275px;
  line-height: 1.45em;
  font-size: 0.95em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.header-fixed-three__button,
.header-fixed-three__catalog-button {
  flex-shrink: 0;
}
.header-fixed-three__phone-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 275px;
  text-align: center;
}
.header-fixed-three__phone {
  display: block;
  font-size: var(--name-font-size);
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease all;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.header-fixed-three__phone:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.header-fixed-three__schedule {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1.45em;
  font-size: 0.95em;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.header-fixed-three__bottom {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-bottom: 15px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .header-fixed-three {
    display: block;
  }
}
@media (min-width: 1300px) {
  .header-fixed-three__slogan {
    display: block;
    display: -webkit-box;
  }
}
.header-fixed-two {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  box-shadow: var(--shadow-moderate);
  opacity: 0;
  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__container {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  z-index: 75;
}
.header-fixed-two__top {
  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-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__search {
  flex-grow: 1;
}
@media (min-width: 992px) {
  .header-fixed-two {
    display: block;
  }
}
.header-four {
  display: none;
}
.header-four .is-desktop {
  display: none;
}
.header-four .is-mobile {
  display: block;
}
.header-four__top {
  display: flex;
  align-items: center;
  max-width: var(--frame-width);
  padding-top: 15px;
  padding-bottom: 8px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header-four__top > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.header-four__slogan {
  display: none;
}
.header-four__search {
  flex-grow: 1;
}
.header-four__contacts {
  display: flex;
  align-items: center;
}
.header-four__contacts > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.header-four__bottom {
  position: relative;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-bottom: 15px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .header-four {
    display: block;
  }
}
@media (min-width: 1200px) {
  .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) - 4%));
    font-size: 14px;
    line-height: 1.45em;
    color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
    opacity: 0.7;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow: hidden;
  }
}
.header-mobile-five {
  padding: 10px 0;
}
.header-mobile-five__top {
  display: flex;
  align-items: center;
}
.header-mobile-five__top > :not(:last-child) {
  margin-right: 1rem;
}
.header-mobile-five__logo {
  flex-grow: 1;
}
.header-mobile-five__bottom {
  margin-top: 10px;
}
@media (min-width: 992px) {
  .header-mobile-five {
    display: none;
  }
}
.header-mobile-four {
  padding: 10px 0;
}
.header-mobile-four__center {
  display: flex;
  align-items: center;
}
.header-mobile-four__center > :not(:last-child) {
  margin-right: 1rem;
}
.header-mobile-four__logo {
  flex-grow: 1;
}
.header-mobile-four__phone {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header-mobile-four__phone > svg {
  fill: hsl(var(--th), var(--ts), var(--tl));
}
@media (min-width: 992px) {
  .header-mobile-four {
    display: none;
  }
}
.header-mobile-one {
  padding: 10px 0;
}
.header-mobile-one__center {
  display: flex;
  align-items: center;
}
.header-mobile-one__center > :not(:last-child) {
  margin-right: 1rem;
}
.header-mobile-one__logo {
  flex-grow: 1;
}
@media (min-width: 992px) {
  .header-mobile-one {
    display: none;
  }
}
.header-mobile-three {
  padding: 10px 0;
}
.header-mobile-three__center {
  display: flex;
  align-items: center;
}
.header-mobile-three__center > :not(:last-child) {
  margin-right: var(--gap);
}
.header-mobile-three__logo {
  flex-grow: 1;
}
@media (min-width: 992px) {
  .header-mobile-three {
    display: none;
  }
}
.header-mobile-two {
  padding: 10px 0;
}
.header-mobile-two__center {
  display: flex;
  align-items: center;
}
.header-mobile-two__center > :not(:last-child) {
  margin-right: 1rem;
}
.header-mobile-two__logo {
  flex-grow: 1;
}
.header-mobile-two__phone {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 0.95em;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
@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 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--frame-width);
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header-nine__top > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.header-nine__group {
  display: flex;
  align-items: center;
}
.header-nine__group > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.header-nine__slogan {
  display: none;
  max-width: 275px;
  line-height: 1.45em;
  font-size: 0.95em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.header-nine__button,
.header-nine__catalog-button {
  flex-shrink: 0;
}
.header-nine__phone-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 275px;
  text-align: center;
}
.header-nine__phone {
  display: block;
  font-size: var(--name-font-size);
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease all;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.header-nine__phone:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.header-nine__schedule {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1.45em;
  font-size: 0.95em;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.header-nine__bottom {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-bottom: 15px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .header-nine {
    display: block;
  }
}
@media (min-width: 1300px) {
  .header-nine__slogan {
    display: block;
    display: -webkit-box;
  }
}
.header-one {
  display: none;
}
.header-one__wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-gap: var(--gap);
  align-items: center;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-top: 5px;
  padding-bottom: 5px;
  box-sizing: border-box;
}
.header-one__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-one__slogan {
  position: relative;
  display: inline-block;
  max-width: 250px;
  margin-top: 5px;
  text-align: center;
  line-height: 1.2em;
}
.header-one__slogan:not(.font--philosopher) {
  font-size: 1.05em;
  letter-spacing: 0.5px;
}
.header-one__slogan.font--philosopher {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.header-one__slogan::before,
.header-one__slogan:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  height: 2px;
  width: 10px;
  border-radius: 2px;
  background-color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-one__slogan::before {
  left: -20px;
}
.header-one__slogan:after {
  right: -20px;
}
.header-one__column {
  display: flex;
  align-items: center;
}
.header-one__column.is-left {
  justify-content: flex-start;
}
.header-one__column.is-right {
  justify-content: flex-end;
}
.header-one__column > :not(:last-child) {
  margin-right: 1.5rem;
}
.header-one__phone {
  display: none;
  font-size: var(--text-font-size);
  text-decoration: none;
  transition: 0.25s ease all;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.header-one__phone:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
@media (min-width: 768px) {
  .header-one__wrapper {
    padding-top: 9px;
    padding-bottom: 9px;
  }
}
@media (min-width: 992px) {
  .header-one {
    display: block;
  }
}
@media (min-width: 1200px) {
  .header-one__phone {
    display: block;
  }
}
.header-seven {
  display: none;
}
.header-seven__wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-gap: var(--gap);
  align-items: center;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-top: 5px;
  padding-bottom: 5px;
  box-sizing: border-box;
}
.header-seven__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
}
.header-seven__logo.is-triggered {
  opacity: 0;
  visibility: hidden;
}
.header-seven__slogan {
  position: relative;
  display: inline-block;
  max-width: 250px;
  margin-top: 5px;
  text-align: center;
  line-height: 1.2em;
}
.header-seven__slogan:not(.font--philosopher) {
  font-size: 1.05em;
  letter-spacing: 0.5px;
}
.header-seven__slogan.font--philosopher {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.header-seven__slogan::before,
.header-seven__slogan:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  height: 2px;
  width: 10px;
  border-radius: 2px;
  background-color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-seven__slogan::before {
  left: -20px;
}
.header-seven__slogan:after {
  right: -20px;
}
.header-seven__column {
  display: flex;
  align-items: center;
}
.header-seven__column.is-left {
  justify-content: flex-start;
}
.header-seven__column.is-right {
  justify-content: flex-end;
}
.header-seven__column > :not(:last-child) {
  margin-right: 1rem;
}
@media (min-width: 768px) {
  .header-seven__wrapper {
    padding-top: 9px;
    padding-bottom: 9px;
  }
}
@media (min-width: 992px) {
  .header-seven {
    display: block;
  }
}
.header-six {
  display: none;
}
.header-six .is-desktop {
  display: none;
}
.header-six .is-mobile {
  display: block;
}
.header-six__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--frame-width);
  padding-top: 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header-six__top-column {
  display: flex;
  align-items: center;
  align-self: flex-end;
  margin-left: var(--gap-extended);
}
.header-six__top-column > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.header-six__top-column .schedule-one {
  position: relative;
  z-index: 145;
}
.header-six__links {
  font-size: 0.95em;
}
.header-six__middle {
  display: flex;
  align-items: center;
  max-width: var(--frame-width);
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header-six__middle > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.header-six__search {
  flex-grow: 1;
}
.header-six__catalog-button.is-active {
  z-index: 85;
}
.header-six__bottom {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-bottom: 15px;
  box-sizing: border-box;
}
.header-six__bottom-column {
  position: relative;
  display: flex;
  align-items: center;
  align-self: flex-end;
  margin-left: var(--gap-extended);
  z-index: 20;
}
.header-six__bottom-column > :not(:first-child) {
  margin-left: var(--gap-extended);
}
@media (min-width: 992px) {
  .header-six {
    display: block;
  }
}
.header-ten {
  display: none;
}
.header-ten .is-desktop {
  display: none;
}
.header-ten .is-mobile {
  display: block;
}
.header-ten__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--frame-width);
  padding-top: 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header-ten__top-column {
  display: flex;
  align-items: center;
  align-self: flex-end;
  margin-left: var(--gap-extended);
}
.header-ten__top-column > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.header-ten__top-column .schedule-one {
  position: relative;
  z-index: 145;
}
.header-ten__links {
  font-size: 0.95em;
}
.header-ten__middle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--frame-width);
  padding-top: 15px;
  padding-bottom: 15px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header-ten__middle > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.header-ten__group {
  display: flex;
  align-items: center;
}
.header-ten__group > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.header-ten__slogan {
  display: none;
  max-width: 275px;
  line-height: 1.45em;
  font-size: 0.95em;
  text-align: right;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.header-ten__button,
.header-ten__catalog-button {
  flex-shrink: 0;
}
.header-ten__phone-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 275px;
  text-align: center;
}
.header-ten__phone {
  display: block;
  font-size: var(--name-font-size);
  font-weight: 700;
  text-decoration: none;
  transition: 0.25s ease all;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.header-ten__phone:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.header-ten__schedule {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1.45em;
  font-size: 0.95em;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.header-ten__bottom {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-bottom: 15px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .header-ten {
    display: block;
  }
}
@media (min-width: 1200px) {
  .header-ten__slogan {
    display: block;
    display: -webkit-box;
  }
}
.header-three {
  display: none;
}
.header-three .is-desktop {
  display: none;
}
.header-three .is-mobile {
  display: block;
}
.header-three__top {
  display: flex;
  align-items: center;
  max-width: var(--frame-width);
  padding-top: 15px;
  padding-bottom: 8px;
  margin: 0 auto;
  box-sizing: border-box;
}
.header-three__top > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.header-three__contacts {
  display: flex;
  align-items: center;
}
.header-three__contacts > :not(:first-child) {
  margin-left: var(--gap-extended);
}
.header-three__bottom {
  position: relative;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-bottom: 15px;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .header-three {
    display: block;
  }
}
.header-two {
  display: none;
}
.header-two__wrapper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  grid-gap: var(--gap);
  align-items: center;
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-top: 5px;
  padding-bottom: 5px;
  box-sizing: border-box;
}
.header-two__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.header-two__slogan {
  position: relative;
  display: inline-block;
  max-width: 250px;
  margin-top: 5px;
  text-align: center;
  line-height: 1.2em;
}
.header-two__slogan:not(.font--philosopher) {
  font-size: 1.05em;
  letter-spacing: 0.5px;
}
.header-two__slogan.font--philosopher {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.header-two__slogan::before,
.header-two__slogan:after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  height: 2px;
  width: 10px;
  border-radius: 2px;
  background-color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-two__slogan::before {
  left: -20px;
}
.header-two__slogan:after {
  right: -20px;
}
.header-two__column {
  display: flex;
}
.header-two__column.is-left {
  justify-content: flex-start;
  align-items: center;
}
.header-two__column.is-right {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
}
.header-two__column.is-right > :not(:last-child) {
  margin-bottom: 5px;
}
.header-two__address {
  display: flex;
  max-width: 500px;
  font-size: 0.95em;
  line-height: 1.65em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.header-two__address svg {
  flex-shrink: 0;
  display: block;
  margin-left: var(--gap-small);
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.header-two__address > span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-align: right;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
@media (min-width: 768px) {
  .header-two__wrapper {
    padding-top: 9px;
    padding-bottom: 9px;
  }
}
@media (min-width: 992px) {
  .header-two {
    display: block;
  }
}
.hotspot-one {
  position: relative;
  max-width: 600px;
  border-radius: var(--border-radius-normal);
}
.hotspot-one:hover {
  z-index: 1;
}
.hotspot-one--gap {
  margin-bottom: var(--gap);
}
.hotspot-one__image-container {
  position: relative;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  overflow: hidden;
  isolation: isolate;
}
.hotspot-one__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-normal);
  object-fit: cover;
}
.hotspot-one__spot {
  position: absolute;
}
.hotspot-one__dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 4px solid hsl(var(--bh), var(--bs), var(--bl));
  cursor: pointer;
}
.hotspot-one__dot > span {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 4px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  transition-delay: 0.1s;
}
.hotspot-one__spot:hover > .hotspot-one__dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.hotspot-one__dropdown-wrapper {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.1s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  padding-top: var(--gap-small);
}
.hotspot-one__dropdown {
  position: relative;
  display: block;
  max-width: 300px;
  min-width: 260px;
  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);
  color: hsl(var(--th), var(--ts), var(--tl));
  text-decoration: none;
}
.hotspot-one__name {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.hotspot-one__price {
  margin-top: 5px;
}
.hotspot-one__error {
  display: block;
  padding: 1rem;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  text-align: center;
  font-size: 0.95em;
  line-height: 1.45em;
}
.irs--round {
  height: 50px;
}
.irs--round.irs-with-grid {
  height: 65px;
}
.irs--round .irs-line {
  top: 36px;
  height: 2px;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: 2px;
}
.irs--round .irs-bar {
  top: 36px;
  height: 2px;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.irs--round .irs-bar--single {
  border-radius: 2px 0 0 2px;
}
.irs--round .irs-shadow {
  height: 4px;
  bottom: 21px;
  background-color: hsla(var(--ah), var(--as), var(--al), 0.5);
}
.irs--round .irs-handle {
  top: 28px;
  width: 18px;
  height: 18px;
  border: 2px solid hsl(var(--ph), var(--ps), var(--pl));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-small);
  box-shadow: 0 1px 3px rgba(0, 0, 255, 0.3);
}
.irs--round .irs-handle.state_hover,
.irs--round .irs-handle:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.irs--round .irs-handle::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.irs--round .irs-min,
.irs--round .irs-max {
  color: hsl(var(--th), var(--ts), var(--tl));
  font-size: 14px;
  line-height: 1;
  top: 0;
  padding: 3px 5px;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: 2px;
}
.irs--round .irs-from,
.irs--round .irs-to,
.irs--round .irs-single {
  font-size: 14px;
  line-height: 1;
  text-shadow: none;
  padding: 3px 5px;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-small);
}
.irs--round .irs-grid {
  height: 25px;
}
.irs--round .irs-grid-pol {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.irs--round .irs-grid-text {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 16%));
  font-size: 13px;
}
.irs {
  position: relative;
  display: block;
  -webkit-touch-callout: none;
  user-select: none;
  font-size: 12px;
  font-family: Arial, sans-serif;
}
.irs-line {
  position: relative;
  display: block;
  overflow: hidden;
  outline: none !important;
}
.irs-bar {
  position: absolute;
  display: block;
  left: 0;
  width: 0;
}
.irs-shadow {
  position: absolute;
  display: none;
  left: 0;
  width: 0;
}
.irs-handle {
  position: absolute;
  display: block;
  box-sizing: border-box;
  cursor: default;
  z-index: 1;
}
.irs-handle.type_last {
  z-index: 2;
}
.irs-min,
.irs-max {
  position: absolute;
  display: block;
  cursor: default;
}
.irs-min {
  left: 0;
}
.irs-max {
  right: 0;
}
.irs-from,
.irs-to,
.irs-single {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  cursor: default;
  white-space: nowrap;
}
.irs-grid {
  position: absolute;
  display: none;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 20px;
}
.irs-with-grid .irs-grid {
  display: block;
}
.irs-grid-pol {
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 8px;
  background: #000;
}
.irs-grid-pol.small {
  height: 4px;
}
.irs-grid-text {
  position: absolute;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  text-align: center;
  font-size: 9px;
  line-height: 9px;
  padding: 0 3px;
  color: #000;
}
.irs-disable-mask {
  position: absolute;
  display: block;
  top: 0;
  left: -1%;
  width: 102%;
  height: 100%;
  cursor: default;
  background: rgba(0, 0, 0, 0);
  z-index: 2;
}
.lt-ie9 .irs-disable-mask {
  background: #000;
  filter: alpha(opacity=0);
  cursor: not-allowed;
}
.irs-disabled {
  opacity: 0.4;
}
.irs-hidden-input {
  position: absolute !important;
  display: block !important;
  top: 0 !important;
  left: 0 !important;
  width: 0 !important;
  height: 0 !important;
  font-size: 0 !important;
  line-height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden;
  outline: none !important;
  z-index: -9999 !important;
  background: none !important;
  border-style: solid !important;
  border-color: transparent !important;
}
.line-one {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  font-size: 0.95em;
  line-height: 1.45em;
}
.line-one--gap {
  margin-bottom: var(--gap);
}
.line-one__name {
  margin-right: 5px;
}
.line-one__divider {
  height: 5px;
  min-width: 30px;
  margin-top: 12px;
  background: radial-gradient(ellipse at center, hsl(var(--ah), var(--as), calc(var(--al) - 8%)) 0, hsl(var(--ah), var(--as), calc(var(--al) - 16%)) 0.5px, transparent 1.25px) right;
  background-size: 5px;
}
.line-one__value {
  text-align: right;
}
.link-one {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}
.link-one.is-primary {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.link-one.is-primary .link-one__icon {
  background-color: hsl(var(--th), var(--ts), var(--tl));
}
.link-one.is-primary .link-one__icon::after,
.link-one.is-primary .link-one__icon::before {
  background-color: hsl(var(--th), var(--ts), var(--tl));
}
.link-one.is-secondary {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.link-one.is-secondary .link-one__icon {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.link-one.is-secondary .link-one__icon::after,
.link-one.is-secondary .link-one__icon::before {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.link-one--gap {
  margin-bottom: var(--gap);
}
.link-one__text {
  text-transform: uppercase;
  font-size: 14px;
  line-height: 1.45em;
  letter-spacing: 2.5px;
}
.link-one__icon {
  position: relative;
  display: inline-block;
  margin-left: 10px;
  width: 31px;
  height: 1px;
  transition: transform 0.2s ease;
}
.link-one__icon::after,
.link-one__icon::before {
  content: '';
  position: absolute;
  display: block;
  right: 0;
  width: 6px;
  height: 1px;
}
.link-one__icon::before {
  bottom: 1px;
  transform: translateX(0) translateY(3px) rotate(-45deg);
}
.link-one__icon::after {
  top: 1px;
  transform: translateX(0) translateY(-3px) rotate(45deg);
}
.link-one:hover .link-one__icon {
  transform: translateX(10px);
}
.link-two {
  display: inline-flex;
  align-items: center;
  border-bottom: 1px dotted transparent;
  text-decoration: none;
  cursor: pointer;
}
.link-two.is-primary {
  color: hsl(var(--ph), var(--ps), var(--pl));
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.link-two.is-secondary {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.link-two--gap {
  margin-bottom: var(--gap);
}
.link-two:hover {
  border-style: solid;
}
.link-two__text {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1.45em;
  font-size: 0.95em;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.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.65em;
}
.list-one__item:not(:last-of-type) {
  margin-bottom: 0.5rem;
}
.list-one__icon {
  position: relative;
  display: inline-block;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  transform: translateY(2px);
}
.list-one__icon::after,
.list-one__icon::before {
  position: absolute;
  top: 5px;
  left: 0;
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: 1px solid hsl(var(--ph), var(--ps), var(--pl));
  transform: rotate(45deg);
}
.list-one__icon::before {
  left: 7px;
}
@media (min-width: 768px) {
  .list-one__item {
    font-size: 1em;
  }
}
.loader-one {
  display: inline-flex;
}
.loader-one .core-spinner {
  animation: spinner-rotate 2s linear infinite;
}
.loader-one .core-spinner__path {
  stroke-linecap: round;
  stroke-width: 5px;
  animation: spinner-dash 1.5s ease-in-out infinite;
}
.loader-one.is-primary .core-spinner__path {
  stroke: hsl(var(--ph), var(--ps), var(--pl));
}
.loader-one.is-secondary .core-spinner__path {
  stroke: hsl(var(--bh), var(--bs), var(--bl));
}
.loader-one.is-semitone .core-spinner__path {
  stroke: hsl(0, 0%, 66%);
}
.loader-one.is-tiny .core-spinner {
  width: 20px;
  height: 20px;
}
.loader-one.is-small .core-spinner {
  width: 25px;
  height: 25px;
}
.loader-one.is-medium .core-spinner {
  width: 30px;
  height: 30px;
}
.loader-one.is-large .core-spinner {
  width: 35px;
  height: 35px;
}
.loader-one--gap {
  margin-bottom: var(--gap);
}
.loader-two {
  display: inline-grid;
  grid-template-columns: repeat(3, auto);
  text-align: center;
}
.loader-two.is-primary > div {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.loader-two.is-secondary > div {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.loader-two.is-semitone > div {
  background-color: hsl(0, 0%, 66%);
}
.loader-two > div {
  display: inline-block;
  border-radius: 50%;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.loader-two > div:nth-child(1) {
  animation-delay: -0.32s;
}
.loader-two > div:nth-child(2) {
  animation-delay: -0.16s;
}
.loader-two.is-tiny {
  grid-gap: 4px;
}
.loader-two.is-tiny > div {
  width: 5px;
  height: 5px;
}
.loader-two.is-small {
  grid-gap: 4px;
}
.loader-two.is-small > div {
  width: 6px;
  height: 6px;
}
.loader-two.is-medium {
  grid-gap: 6px;
}
.loader-two.is-medium > div {
  width: 8px;
  height: 8px;
}
.loader-two.is-large {
  grid-gap: 8px;
}
.loader-two.is-large > div {
  width: 12px;
  height: 12px;
}
.loader-two--gap {
  margin-bottom: var(--gap);
}
.login-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  border-radius: var(--border-radius-small);
  transition: background-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-size: 15px;
  line-height: 1.45em;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  user-select: none;
  overflow: hidden;
  cursor: pointer;
}
.login-button:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 6%));
}
.login-button:active {
  box-shadow: 0 0 0 0.2rem hsla(var(--ph), var(--ps), var(--pl), 0.3);
}
.login-button:focus,
.login-button:active,
.login-button:hover {
  outline: none;
}
.login-button--gap {
  margin-bottom: var(--gap);
}
.login-button.is-small {
  min-height: 36px;
  padding: 7px 14px;
  font-size: 15px;
}
.login-button.is-medium {
  min-height: 40px;
  padding: 8px 16px;
  font-size: 16px;
}
.login-button .icon-login {
  flex-shrink: 0;
  display: block;
  width: 17px;
  height: 17px;
  margin-left: 10px;
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.login-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: color 0.2s ease;
  color: hsl(var(--th), var(--ts), var(--tl));
  cursor: pointer;
}
.login-link:focus {
  outline: none;
}
.login-link:hover .login-link__userpic {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 2%));
}
.login-link.is-small .login-link__userpic {
  width: 30px;
  height: 30px;
  margin-right: 5px;
}
.login-link.is-small .login-link__text {
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.login-link.is-medium .login-link__userpic {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}
.login-link--gap {
  margin-bottom: var(--gap);
}
.login-link__userpic {
  display: block;
  box-sizing: border-box;
  border: 3px solid hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border-radius: 50%;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  transition: 0.2s ease border;
  overflow: hidden;
}
.login-link__userpic > svg {
  width: 100%;
  height: 100%;
  fill: hsl(0, 0%, 66%);
}
.login-link__userpic > img {
  display: block;
  width: 100%;
  height: auto;
}
.logo-one {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.logo-one.is-primary .logo-one__svg {
  fill: hsl(var(--ih), var(--is), var(--il));
}
.logo-one.is-secondary .logo-one__svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.logo-one--gap {
  margin-bottom: var(--gap);
}
.logo-one__image {
  display: block;
  width: auto;
}
.logo-one__svg {
  display: block;
  width: auto;
  height: 100%;
  max-height: 80px;
}
.logo-three {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.logo-three.is-primary .logo-three__svg {
  fill: hsl(var(--ih), var(--is), var(--il));
}
.logo-three.is-secondary .logo-three__svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.logo-three--gap {
  margin-bottom: var(--gap);
}
.logo-three__image {
  display: block;
  width: auto;
}
.logo-three__svg {
  display: block;
  width: auto;
  height: 100%;
  max-height: 45px;
}
.logo-two {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.logo-two.is-primary .logo-one__svg {
  fill: hsl(var(--ih), var(--is), var(--il));
}
.logo-two.is-secondary .logo-one__svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.logo-two--gap {
  margin-bottom: var(--gap);
}
.logo-two__image {
  display: block;
  width: auto;
}
.logo-two__svg {
  display: block;
  width: auto;
  height: 100%;
  max-height: 50px;
}
.magnifier-button {
  display: flex;
  align-items: center;
  height: 36px;
  margin: 0;
  padding: 8px 16px;
  box-sizing: border-box;
  background-color: hsla(var(--th), var(--ts), var(--tl), 0.55);
  border-radius: 36px;
  color: hsl(var(--bh), var(--bs), var(--bl));
  transition: background-color 0.3s ease;
  user-select: none;
  cursor: pointer;
}
.magnifier-button--gap {
  margin-bottom: var(--gap);
}
.magnifier-button.is-active .icon-search {
  display: none;
}
.magnifier-button .icon-search {
  display: block;
  margin-right: 8px;
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.magnifier-button__text {
  font-size: 0.95em;
  line-height: 1.45em;
}
.magnifier-lens {
  position: absolute;
  width: 230px;
  height: 230px;
  display: none;
  border-radius: 50%;
  background-color: white;
  background-repeat: no-repeat;
  border: 3px solid hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-moderate);
  pointer-events: none;
  z-index: 100;
}
.magnifier-lens.is-visible {
  display: block;
}
.menu-button {
  display: inline-flex;
  align-items: center;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: var(--border-radius-small);
  padding: 12px 16px;
  font-family: unset;
  font-size: 14px;
  color: hsl(var(--th), var(--ts), var(--tl));
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background-color 0.3s ease 0s;
  cursor: pointer;
}
.menu-button:hover,
.menu-button:focus {
  outline: none;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.menu-button--gap {
  margin-bottom: var(--gap);
}
.menu-button.is-fixed {
  position: fixed;
  top: 20px;
  z-index: 150;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-modal);
}
.menu-button__icon {
  display: block;
}
.menu-button__icon span {
  display: block;
  height: 2px;
  width: 28px;
  border-radius: 2px;
  transition: width 0.3s ease 0s;
  background-color: hsl(var(--th), var(--ts), var(--tl));
}
.menu-button__icon span:nth-child(1) {
  width: 17px;
}
.menu-button__icon span:nth-child(2) {
  margin: 6px 0;
}
.menu-button__icon span:nth-child(3) {
  width: 17px;
  float: right;
}
.menu-button:hover .menu-button__icon span {
  width: 28px;
}
.menu-button__text {
  display: none;
}
@media (min-width: 768px) {
  .menu-button__icon {
    margin-right: 1rem;
  }
  .menu-button.is-fixed .menu-button__icon {
    margin-right: unset;
  }
  .menu-button.is-fixed .menu-button__text {
    display: none;
  }
  .menu-button__text {
    display: inline;
  }
}
.mini-cart__empty {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 200px;
  padding: 1.5rem;
  box-sizing: border-box;
  text-align: center;
}
.mini-cart__empty.is-hidden {
  display: none;
}
.mini-cart__empty-name {
  margin-bottom: var(--gap-small);
  font-size: var(--text-font-size);
  line-height: 1.45em;
}
.mini-cart__empty-description {
  color: hsla(var(--th), var(--ts), var(--tl), 0.6);
}
.mini-cart__empty-image {
  display: flex;
  justify-content: center;
  margin-bottom: var(--gap-small);
}
.mini-cart__empty-image .icon-shopping-cart {
  width: 100px;
}
.mini-cart__empty-image .icon-shopping-cart__tile-0 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 6%));
}
.mini-cart__empty-image .icon-shopping-cart__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
}
.mini-cart__empty-image .icon-shopping-cart__tile-2 {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.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: 1rem;
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.mini-cart__title {
  font-size: var(--name-font-size);
}
.mini-cart__remove-all {
  padding: 3px 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), calc(var(--al) + 2%));
}
.mini-cart__wrapper > :not(:first-child) {
  border-top: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.mini-cart__wrapper.is-overflow {
  max-height: 285px;
  overflow-y: scroll;
}
.mini-cart__wrapper::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.mini-cart__wrapper::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.mini-cart__item {
  display: grid;
  grid-template-columns: 60px 1fr auto;
  grid-gap: 1rem;
  align-items: start;
  min-height: 95px;
  padding: 1rem;
  box-sizing: border-box;
}
.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;
  transition: 0.25s ease all;
  overflow: hidden;
}
.mini-cart__link:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.mini-cart__price-wrapper {
  display: flex;
  align-items: center;
  line-height: 1.45em;
}
.mini-cart__quantity {
  display: block;
  margin-left: var(--gap-small);
  color: hsla(var(--th), var(--ts), var(--tl), 0.6);
  font-size: 0.95em;
}
.mini-cart__remove {
  margin-top: 5px;
}
.mini-cart__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom-right-radius: var(--border-radius-normal);
  border-bottom-left-radius: var(--border-radius-normal);
  border-top: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.mini-cart__total {
  display: block;
  margin-top: 3px;
  font-size: var(--name-font-size);
  line-height: 1.45em;
}
.navigation-brands {
  position: absolute;
  top: 100%;
  left: -20px;
  width: 540px;
  box-sizing: border-box;
  padding: 0.8rem 20px 20px;
  transition: all 0.2s ease;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  z-index: 65;
}
.navigation-brands:hover .navigation-brands__button {
  opacity: 1;
  visibility: visible;
}
.navigation-brands:hover .navigation-brands__button.is-next {
  transform: translateX(10px);
}
.navigation-brands:hover .navigation-brands__button.is-prev {
  transform: translateX(-10px);
}
.navigation-brands__wrapper {
  position: relative;
}
.navigation-brands__content {
  position: relative;
  padding: 0.8em 1em;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-soft);
}
.navigation-brands__error {
  text-align: center;
  font-style: italic;
}
.navigation-brands__item {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
}
.navigation-brands__link-wrapper {
  position: relative;
  padding-bottom: 100%;
  height: 0;
  overflow: hidden;
}
.navigation-brands__link {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-rows: 1fr 30px;
  grid-gap: 5px;
  padding: 0.5rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: background-color 0.3s ease;
  user-select: none;
}
.navigation-brands__link:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.navigation-brands__link:focus {
  outline: none;
}
.navigation-brands__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.navigation-brands__image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.navigation-brands__name {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.navigation-brands__button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: calc(0px - 34px / 2);
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  display: flex !important;
  opacity: 0;
  visibility: hidden;
}
.navigation-brands__button.is-next {
  right: -8px;
}
.navigation-brands__button.is-prev {
  left: -8px;
}
.navigation-brands__button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.navigation-brands__button[aria-disabled='true'] .icon-arrow-thin {
  opacity: 0.25;
}
.navigation-brands__button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.navigation-four {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  white-space: nowrap;
  align-items: center;
  width: 0;
}
.navigation-four.is-center {
  justify-content: center;
}
.navigation-four.is-right {
  justify-content: flex-end;
}
.navigation-four.is-right > :not(:first-child) {
  margin-left: var(--gap);
}
.navigation-four:not(.is-right) > :not(:last-child) {
  margin-right: var(--gap);
}
.navigation-four.is-initial {
  visibility: hidden;
  overflow: hidden;
}
.navigation-four__item {
  position: relative;
  display: inline-flex;
}
.navigation-four__item.is-hidden {
  display: none;
}
.navigation-four__item > a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: pointer;
}
.navigation-four__item > a > svg {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  margin-top: 3px;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.navigation-four__image {
  flex-shrink: 0;
  display: block;
  margin-right: 8px;
  border-radius: var(--border-radius-small);
}
.navigation-four__item > .navigation-four__dropdown-wrapper {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.1s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  padding-top: 0.8rem;
}
.navigation-four__item > .navigation-four__dropdown-wrapper.is-bottom-start .navigation-four__dropdown::before {
  left: 2rem;
}
.navigation-four__item > .navigation-four__dropdown-wrapper.is-bottom .navigation-four__dropdown::before {
  left: 50%;
}
.navigation-four__item > .navigation-four__dropdown-wrapper.is-bottom-end .navigation-four__dropdown::before {
  right: 2rem;
}
.navigation-four__item > .navigation-four__dropdown-wrapper > .navigation-four__dropdown {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-soft);
  max-width: 400px;
  min-width: 160px;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
}
.navigation-four__item:hover > .navigation-four__dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.navigation-four__dropdown-item > .navigation-four__dropdown-wrapper {
  position: absolute;
  padding: 0 5px;
  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-four__dropdown-item > .navigation-four__dropdown-wrapper > .navigation-four__dropdown {
  max-width: 400px;
  min-width: 160px;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-soft);
}
.navigation-four__dropdown-item:hover > .navigation-four__dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.navigation-four__dropdown-item:first-of-type > a {
  border-top-right-radius: var(--border-radius-small);
  border-top-left-radius: var(--border-radius-small);
}
.navigation-four__dropdown-item:last-of-type > a {
  border-bottom-right-radius: var(--border-radius-small);
  border-bottom-left-radius: var(--border-radius-small);
}
.navigation-four__dropdown-item:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), var(--al));
}
.navigation-four__dropdown-item > a {
  display: flex;
  align-items: center;
  padding: 0.8rem;
  color: hsl(var(--th), var(--ts), var(--tl));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  line-height: 1.45em;
  text-decoration: none;
  transition: all 0.2s ease;
}
.navigation-four__dropdown-item > a span {
  margin-right: auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.navigation-four__dropdown-item > a:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.navigation-four__dropdown-item > a > svg {
  flex-shrink: 0;
  display: block;
  width: 8px;
  height: 8px;
  margin-left: var(--gap);
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
  transform: rotate(-90deg);
}
.navigation-switch {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 3px;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-light);
}
.navigation-switch--gap {
  margin-bottom: var(--gap);
}
.navigation-switch__button {
  min-height: 38px;
  box-sizing: border-box;
  background-color: transparent;
  border-radius: var(--border-radius-small);
  border: 0;
  color: hsl(var(--th), var(--ts), var(--tl));
  font-size: 0.95em;
  cursor: pointer;
  outline: none;
}
.navigation-switch__button.is-active {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.navigation-three {
  position: relative;
  display: flex;
  align-items: center;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  border-radius: var(--border-radius-small);
}
.navigation-three::after {
  content: '';
  position: absolute;
  top: 0;
  left: 100%;
  display: block;
  width: 1000px;
  height: 100%;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.navigation-three.is-active {
  z-index: 85;
}
.navigation-three.is-active::after {
  display: none;
}
.navigation-three__list {
  display: flex;
  align-items: center;
  flex-grow: 1;
  flex-wrap: nowrap;
}
.navigation-three__button {
  flex-basis: 0;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.5rem 2rem;
  box-sizing: border-box;
  border: unset;
  border-radius: var(--border-radius-small) 0 0 var(--border-radius-small);
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  white-space: nowrap;
  transition: 0.4s ease;
  outline: none;
  cursor: pointer;
}
.navigation-three__button:not(.font--philosopher) {
  font-size: 1.05em;
  letter-spacing: 0.5px;
}
.navigation-three__button.font--philosopher {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.navigation-three__button.is-triggered .navigation-three__button-icon {
  transform: scale(0.9);
}
.navigation-three__button.is-triggered .navigation-three__button-icon span:nth-child(1) {
  opacity: 0;
}
.navigation-three__button.is-triggered .navigation-three__button-icon span:nth-child(2) {
  margin: 2px 0;
  transform: rotate(-45deg);
}
.navigation-three__button.is-triggered .navigation-three__button-icon span:nth-child(3) {
  transform: rotate(45deg) translate(-3px, -3px);
  transform-origin: center;
  width: 24px;
}
.navigation-three__button.is-triggered:hover .navigation-three__button-icon span:nth-child(3) {
  width: 24px;
}
.navigation-three__button:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 10%));
}
.navigation-three__button:hover .navigation-three__button-icon > span {
  width: 24px;
}
.navigation-three__button-icon {
  display: block;
  margin-right: 15px;
}
.navigation-three__button-icon > span {
  display: block;
  height: 2px;
  width: 24px;
  border-radius: 2px;
  transition: width 0.4s ease, transform 0.4s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.navigation-three__button-icon > span:nth-child(1) {
  width: 16px;
}
.navigation-three__button-icon > span:nth-child(2) {
  margin: 4px 0;
}
.navigation-three__button-icon > span:nth-child(3) {
  width: 16px;
  float: right;
}
.navigation-three__item {
  position: relative;
  flex-basis: 0;
  flex-grow: 1;
}
.navigation-three__item:hover .navigation-brands,
.navigation-three__item:hover .navigation-three__dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.navigation-three__item:not(.is-overflow):last-of-type:not(.is-last) a {
  border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
}
.navigation-three__item:not(.is-overflow):first-child > a {
  border-top-left-radius: var(--border-radius-small);
  border-bottom-left-radius: var(--border-radius-small);
}
.navigation-three__item:not(.is-overflow) > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 200px;
  padding: 0.5rem 2rem;
  box-sizing: border-box;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  text-decoration: none;
  white-space: nowrap;
  text-align: center;
  transition: 0.4s ease;
}
.navigation-three__item:not(.is-overflow) > a:not(.font--philosopher) {
  font-size: 1.05em;
  letter-spacing: 0.5px;
}
.navigation-three__item:not(.is-overflow) > a.font--philosopher {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.navigation-three__item:not(.is-overflow) > a:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 10%));
}
.navigation-three__item:not(.is-overflow) > a .icon-more {
  display: block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  margin-top: 1px;
  fill: hsla(var(--bh), var(--bs), var(--bl), 0.7);
}
.navigation-three__item:not(.is-overflow) > a > img {
  display: inline-block;
  margin-right: 8px;
  border-radius: var(--border-radius-small);
}
.navigation-three__item.is-overflow:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), var(--al));
}
.navigation-three__item.is-overflow > a {
  display: block;
  padding: 0.8rem;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  font-family: inherit;
  line-height: 1.45em;
  text-decoration: none;
  transition: all 0.2s ease;
}
.navigation-three__item.is-overflow > a:hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.navigation-three__item.is-overflow > a > svg,
.navigation-three__item.is-overflow > a > img {
  display: none;
}
.navigation-three__item.is-overflow .navigation-three__dropdown-wrapper {
  display: none;
}
.navigation-three__more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.5rem 1.5rem;
  box-sizing: border-box;
  background-color: transparent;
  border: unset;
  border-radius: 0 var(--border-radius-small) var(--border-radius-small) 0;
  transition: 0.4s ease;
  cursor: pointer;
}
.navigation-three__more:focus {
  outline: none;
}
.navigation-three__more:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 10%));
}
.navigation-three__more:hover .navigation-three__dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.navigation-three__more svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.navigation-three__more.is-hidden {
  display: none;
}
.navigation-three__dropdown-wrapper {
  position: absolute;
  width: 100%;
  max-width: 400px;
  min-width: 250px;
  padding-top: 0.8rem;
  transition: all 0.2s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 65;
}
.navigation-three__dropdown-wrapper.is-center {
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}
.navigation-three__dropdown-wrapper.is-right {
  top: 100%;
  right: 0;
}
.navigation-three__dropdown {
  border-radius: var(--border-radius-small);
  overflow: hidden;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-soft);
}
.navigation-three__inner-dropdown {
  display: none;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  box-shadow: var(--shadow-inset);
}
.navigation-three__inner-dropdown.is-opened {
  display: block;
}
.navigation-three__dropdown-item {
  position: relative;
}
.navigation-three__dropdown-item:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), var(--al));
}
.navigation-three__dropdown-item.has-children > a {
  padding-right: calc(20px + 1.6rem);
}
.navigation-three__dropdown-item > a {
  display: block;
  padding: 0.8rem;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  line-height: 1.45em;
  text-decoration: none;
  transition: all 0.2s ease;
}
.navigation-three__dropdown-item > a:hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.navigation-three__dropdown-item > a:focus {
  outline: none;
}
.navigation-three__toggle {
  position: absolute;
  top: 13px;
  right: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: unset;
  border-radius: var(--border-radius-small);
  background-color: transparent;
  transition: all 0.1s ease;
  cursor: pointer;
}
.navigation-three__toggle:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.navigation-three__toggle svg {
  display: block;
  width: 8px;
  height: 8px;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
  transform: rotate(-90deg);
  transition: transform 0.2s ease;
}
.navigation-three__toggle.is-opened svg {
  transform: rotate(0deg);
}
.navigation-three__sub-item {
  display: block;
  padding: 0.8rem;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: all 0.2s ease;
}
.navigation-three__sub-item:hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.navigation-three__sub-item:focus {
  outline: none;
}
.navigation-three__sub-item:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 2%));
}
@media (min-width: 992px) {
  .navigation-three__button,
  .navigation-three__item:not(.is-overflow) > a,
  .navigation-three__more {
    min-height: 50px;
  }
}
.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 > 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(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.navigation-two__dropdown-wrapper {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.1s;
  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-soft);
  max-width: 400px;
  min-width: 160px;
  padding: 0.5rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
}
.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 {
  padding: 3px;
}
.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(13, 100%, 63%);
}
.newsletter__input {
  display: inline-block;
  min-height: 42px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.5rem 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(--ah), var(--as), calc(var(--al) - 8%));
}
.newsletter__input:focus {
  outline: none;
  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%));
}
.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(13, 100%, 63%);
  box-shadow: 0 0 1px 1px hsl(13, 100%, 63%);
}
.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 {
  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(13, 100%, 63%);
  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: 210;
}
.notification.is-bottom .notification__item {
  max-width: 570px;
}
.notification.is-primary .notification__item {
  background-color: hsla(var(--th), var(--ts), var(--tl), 0.55);
}
.notification.is-secondary .notification__item {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.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 {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 1rem;
  box-sizing: border-box;
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-size: 0.95em;
}
.notification__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  margin-right: 10px;
  border: 2px solid hsl(var(--bh), var(--bs), var(--bl));
  border-radius: 50%;
}
.notification__icon > svg {
  width: 10px;
  height: 10px;
  fill: currentColor;
}
.notification__container {
  position: relative;
  padding: 1rem calc(1rem + 24px) 1rem 1rem;
}
.notification__message {
  font-size: 0.95em;
  line-height: 1.45em;
}
.notification__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}
@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;
  }
}
.page-one.is-roboto h1:not(.element):not(.element h1),
.page-one.is-roboto h2:not(.element):not(.element h2),
.page-one.is-roboto h3:not(.element):not(.element h3),
.page-one.is-roboto h4:not(.element):not(.element h4),
.page-one.is-roboto h5:not(.element):not(.element h5),
.page-one.is-roboto h6:not(.element):not(.element h6),
.page-one.is-roboto th:not(.element th) {
  font-family: 'roboto', sans-serif;
}
.page-one.is-philosopher h1:not(.element):not(.element h1),
.page-one.is-philosopher h2:not(.element):not(.element h2),
.page-one.is-philosopher h3:not(.element):not(.element h3),
.page-one.is-philosopher h4:not(.element):not(.element h4),
.page-one.is-philosopher h5:not(.element):not(.element h5),
.page-one.is-philosopher h6:not(.element):not(.element h6),
.page-one.is-philosopher th:not(.element th),
.page-one.is-philosopher strong:not(.element strong),
.page-one.is-philosopher b:not(.element b) {
  font-family: 'philosopher', sans-serif;
}
.page-one.is-philosopher strong:not(.element strong),
.page-one.is-philosopher b:not(.element b) {
  font-size: 1.05em;
}
.page-one.is-nunito h1:not(.element):not(.element h1),
.page-one.is-nunito h2:not(.element):not(.element h2),
.page-one.is-nunito h3:not(.element):not(.element h3),
.page-one.is-nunito h4:not(.element):not(.element h4),
.page-one.is-nunito h5:not(.element):not(.element h5),
.page-one.is-nunito h6:not(.element):not(.element h6),
.page-one.is-nunito th:not(.element th) {
  font-family: 'nunito', sans-serif;
}
.page-one.is-jost h1:not(.element):not(.element h1),
.page-one.is-jost h2:not(.element):not(.element h2),
.page-one.is-jost h3:not(.element):not(.element h3),
.page-one.is-jost h4:not(.element):not(.element h4),
.page-one.is-jost h5:not(.element):not(.element h5),
.page-one.is-jost h6:not(.element):not(.element h6),
.page-one.is-jost th:not(.element th) {
  font-family: 'jost', sans-serif;
}
.page-one.is-charis-sil h1:not(.element):not(.element h1),
.page-one.is-charis-sil h2:not(.element):not(.element h2),
.page-one.is-charis-sil h3:not(.element):not(.element h3),
.page-one.is-charis-sil h4:not(.element):not(.element h4),
.page-one.is-charis-sil h5:not(.element):not(.element h5),
.page-one.is-charis-sil h6:not(.element):not(.element h6),
.page-one.is-charis-sil th:not(.element th) {
  font-family: 'charis-sil', 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) {
  font-family: 'gilroy', sans-serif;
}
.page-one.is-scada h1:not(.element):not(.element h1),
.page-one.is-scada h2:not(.element):not(.element h2),
.page-one.is-scada h3:not(.element):not(.element h3),
.page-one.is-scada h4:not(.element):not(.element h4),
.page-one.is-scada h5:not(.element):not(.element h5),
.page-one.is-scada h6:not(.element):not(.element h6),
.page-one.is-scada th:not(.element th) {
  font-family: 'scada', sans-serif;
}
.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) {
  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) {
  font-family: 'open-sans', 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) {
  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: var(--gap);
}
.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: var(--gap);
}
.page-one p:not(.element p) {
  line-height: 1.65em;
}
.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: 5px;
  line-height: 1.65em;
}
.page-one ul li:not(.element li)::before,
.page-one ol li:not(.element li)::before {
  flex-shrink: 0;
  margin-right: 1rem;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.page-one ul li:not(.element li)::before {
  font-weight: 600;
}
.page-one ol li:not(.element li) {
  counter-increment: item;
}
.page-one ol li:not(.element li)::before {
  content: counter(item) ')';
  font-size: 1em;
  line-height: 1em;
}
.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: 1rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--ah), var(--as), var(--al));
  border-left: 4px solid hsl(var(--ph), var(--ps), var(--pl));
  line-height: 1.65em;
}
.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: var(--gap);
  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.65em;
}
.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: var(--gap);
}
.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 blockquote:not(.element blockquote),
  .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.65em;
  }
}
@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;
  }
}
.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;
  z-index: 10;
}
.phone-one--gap {
  margin-bottom: var(--gap);
}
.phone-one:hover .phone-one__popup {
  visibility: visible;
  opacity: 1;
}
.phone-one__phone-wrapper {
  display: flex;
  align-items: center;
}
.phone-one__phone-wrapper .icon-arrow-down {
  flex-shrink: 0;
  display: block;
  margin-left: 8px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.phone-one__phone {
  font-weight: 600;
  font-size: 1.2em;
  color: currentColor;
  text-decoration: none;
}
.phone-one__popup {
  position: absolute;
  left: 0;
  width: 100%;
  border-radius: var(--border-radius-small);
  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) - 4%));
  overflow: hidden;
}
.phone-one__popup.is-forward {
  top: 100%;
  margin-top: 5px;
}
.phone-one__popup.is-reverse {
  bottom: 100%;
  margin-bottom: 5px;
}
.phone-one__popup-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 45px;
  padding: 5px 10px;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: 0.2s ease;
}
.phone-one__popup-link:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.phone-one__popup-link:not(:last-child) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.phone-one__popup-number {
  display: block;
}
.phone-one__text {
  display: block;
  font-size: 0.8em;
  line-height: 1.45em;
}
.phone-two {
  position: relative;
  display: inline-block;
  z-index: 10;
}
.phone-two--gap {
  margin-bottom: var(--gap);
}
.phone-two:hover .phone-two__popup {
  visibility: visible;
  opacity: 1;
  transition: all 0.2s ease;
}
.phone-two__phone-wrapper {
  display: flex;
  align-items: center;
}
.phone-two__phone-wrapper .icon-more {
  display: block;
  width: 8px;
  height: 8px;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.phone-two__phone {
  display: block;
  margin-right: 8px;
  color: currentColor;
  text-decoration: none;
  transition: 0.25s ease all;
  user-select: none;
}
.phone-two__phone:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.phone-two.is-small .phone-two__phone {
  font-size: 0.95em;
}
.phone-two__popup {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.phone-two__popup.is-forward {
  top: 100%;
  padding-top: 8px;
}
.phone-two__popup.is-reverse {
  bottom: 100%;
  padding-bottom: 8px;
}
.phone-two__popup-wrapper {
  width: 100%;
  min-width: 200px;
  border-radius: var(--border-radius-small);
  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%));
  overflow: hidden;
}
.phone-two__popup-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 45px;
  padding: 5px 10px;
  box-sizing: border-box;
  text-align: center;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: 0.2s ease;
}
.phone-two__popup-link:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.phone-two__popup-link:not(:last-child) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), var(--al));
}
.phone-two__popup-number {
  display: block;
}
.phone-two__text {
  display: block;
  font-size: 0.8em;
  line-height: 1.45em;
}
.phone-two__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.phone-two__controls > :not(:last-of-type) {
  margin-right: 8px;
}
.phone-two__item > svg {
  display: block;
  width: 30px;
  height: 30px;
  border-radius: var(--border-radius-small);
}
.picture {
  display: inline-block;
  text-decoration: none;
  color: currentColor;
}
.picture--gap {
  margin-bottom: var(--gap);
}
.picture__image-container {
  display: flex;
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  isolation: isolate;
}
.picture__image-container.is-transparent {
  background-color: transparent;
}
.picture__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-normal);
  object-fit: cover;
}
.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__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dim-muted);
}
.popup-four__wrapper {
  position: relative;
  width: 100%;
  min-height: 100px;
  padding: 5px;
  margin: 1rem;
  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-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;
  pointer-events: none;
  z-index: 200;
}
.popup-one.is-active {
  pointer-events: auto;
}
.popup-one__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transition: 0.5s ease opacity;
  background-color: var(--dim-muted);
  opacity: 0;
  pointer-events: none;
}
.popup-one.is-active .popup-one__overlay {
  opacity: 1;
  pointer-events: auto;
}
.popup-one__wrapper {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  padding: 1rem 1rem 1.5rem 1.5rem;
  box-sizing: border-box;
  transition: 0.4s cubic-bezier(0.2, 1, 0.5, 1) transform 0.2s;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.popup-one__wrapper.is-left {
  transform: translate(-100%, 0);
  left: 0;
}
.popup-one__wrapper.is-left::after {
  right: 0;
}
.popup-one__wrapper.is-left .popup-one__close {
  margin-left: auto;
}
.popup-one__wrapper.is-right {
  transform: translate(100%, 0);
  right: 0;
}
.popup-one__wrapper.is-right::after {
  left: 0;
}
.popup-one__wrapper.is-right .popup-one__close {
  margin-right: auto;
}
.popup-one__wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  transition: 0.4s cubic-bezier(0.5, 1, 0.2, 1) width;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.popup-one.is-active .popup-one__wrapper {
  transform: translate(0, 0);
  transition: 0.8s cubic-bezier(0.2, 1, 0.5, 1) transform;
  transition-delay: unset;
}
.popup-one.is-active .popup-one__wrapper::after {
  width: 0;
  transition: 0.8s cubic-bezier(0.2, 1, 0.5, 1) width;
}
.popup-one__content {
  height: calc(100% - 28px);
  margin-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-right: 0.5rem;
  box-sizing: border-box;
  opacity: 0;
  transition-delay: 0.4s;
  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.is-active .popup-one__content {
  transition: opacity 0.6s ease-in;
  transition-delay: 0.3s;
  opacity: 1;
}
.popup-one__error {
  text-align: center;
}
@media (min-width: 767px) {
  .popup-one__wrapper {
    padding: 3rem 3rem 4rem 4rem;
  }
  .popup-one__content {
    padding-right: 1rem;
  }
}
.popup-three {
  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-three.is-active {
  opacity: 1;
  visibility: visible;
  transition-duration: 0.2s;
}
.popup-three.is-active .popup-three__wrapper {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}
.popup-three__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dim-muted);
}
.popup-three__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-three__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
}
.popup-three__error {
  text-align: center;
}
@media (min-width: 992px) {
  .popup-three__wrapper {
    border-radius: var(--border-radius-normal);
  }
  .popup-three__content {
    max-height: var(--popup-three-height);
  }
  .popup-three__close {
    top: 8px;
    right: 8px;
  }
}
.popup-two {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  pointer-events: none;
  z-index: 200;
}
.popup-two.is-active {
  pointer-events: auto;
}
.popup-two.is-active .popup-two__overlay {
  opacity: 1;
  visibility: visible;
}
.popup-two.is-active .popup-two__wrapper {
  pointer-events: auto;
  transform: translate(0, 0);
  transition: 0.8s cubic-bezier(0.2, 1, 0.5, 1) transform;
  transition-delay: unset;
}
.popup-two.is-active .popup-two__wrapper::after {
  width: 0;
  transition: 0.8s cubic-bezier(0.2, 1, 0.5, 1) width;
}
.popup-two__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: var(--dim-muted);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s ease opacity;
}
.popup-two__wrapper {
  position: relative;
  width: 100%;
  height: 100dvh;
  box-sizing: border-box;
  transform: translate(-100%, 0);
  transition: 0.4s cubic-bezier(0.2, 1, 0.5, 1) transform 0.2s;
  pointer-events: none;
}
.popup-two__wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  transition: 0.4s cubic-bezier(0.5, 1, 0.2, 1) width;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.popup-two__content {
  width: 100%;
  height: 100%;
  background-color: hsl(var(--ah), var(--as), var(--al));
  overflow-y: auto;
  overflow-x: hidden;
}
.popup-two__content::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: transparent;
}
.popup-two__content::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  margin-left: 5px;
}
.post-one {
  position: relative;
  max-width: 500px;
  height: 100%;
  min-height: 280px;
  padding: 1.5rem 1.5rem 110px;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-radius: var(--border-radius-normal);
  overflow: hidden;
}
.post-one--gap {
  margin-bottom: var(--gap);
}
.post-one.is-primary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border-color: transparent;
}
.post-one.is-secondary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-color: hsl(var(--ah), var(--as), var(--al));
}
.post-one.is-semitone {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.post-one__layout {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 1.5rem 80px;
  transform: translateY(65px);
  box-sizing: border-box;
  text-align: center;
  transition: 0.35s ease;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.post-one.is-movable:hover .post-one__layout {
  transform: translateY(0);
}
.post-one__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 60px;
  text-decoration: none;
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-size: var(--name-font-size);
  font-weight: 600;
  line-height: 1.45em;
}
.post-one__link span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.post-one__layout-hidden {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.post-one__caption-wrapper {
  margin-bottom: var(--gap);
}
.post-one__caption {
  display: inline;
  padding-bottom: 5px;
  background-size: 100% 2px;
  background-repeat: no-repeat;
  background-position: left 87%;
  background-image: linear-gradient(to right, hsl(var(--ph), var(--ps), var(--pl)) 0%, hsl(var(--ph), var(--ps), var(--pl)) 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.post-one__description {
  font-size: 0.95em;
  line-height: 1.65em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.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__icon {
  display: flex;
  justify-content: space-between;
}
.preloader-one__circle {
  display: block;
  width: 12px;
  height: 12px;
  transform-origin: center;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  border-radius: 50%;
}
.preloader-one__circle:nth-of-type(1) {
  animation: preloader 0.8s ease-in-out alternate infinite;
}
.preloader-one__circle:nth-of-type(2) {
  animation: preloader-reverse 0.8s ease-in-out alternate infinite;
}
.preloader-one__circle:nth-of-type(3) {
  animation: preloader 0.8s ease-in-out alternate infinite;
}
.preloader-one__circle:not(:last-of-type) {
  margin-right: 5px;
}
.price-one--gap {
  margin-bottom: var(--gap);
}
.price-one.is-small .price-one__price {
  font-size: 1.3em;
}
.price-one.is-medium .price-one__price {
  font-size: 1.5em;
}
.price-one.is-large .price-one__compare-wrapper {
  margin-bottom: 5px;
}
.price-one.is-large .price-one__price {
  font-size: 1.6em;
}
.price-one__compare-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: -5px;
}
.price-one__compare-wrapper.is-hidden {
  display: none;
}
.price-one__compare-wrapper > * {
  margin-top: 5px;
}
.price-one__compare-wrapper > :not(:last-child) {
  margin-right: 10px;
}
.price-one__compare {
  position: relative;
  color: hsla(var(--th), var(--ts), var(--tl), 0.7);
  font-size: 0.9em;
}
.price-one__compare::before {
  content: '';
  position: absolute;
  left: 0;
  top: 45%;
  display: block;
  width: 100%;
  height: 1px;
  background-color: hsl(13, 100%, 63%);
}
.price-one__profit {
  display: flex;
  align-items: center;
  padding: 2px;
  border-radius: var(--border-radius-small);
  font-size: 0.8em;
  background-color: hsl(44, 93%, 72%);
  overflow: hidden;
}
.price-one__discount {
  display: block;
  padding: 0 7px;
  border-radius: 3px;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.price-one__saving {
  display: block;
  padding: 0 7px;
}
.price-one__price {
  display: block;
  line-height: 1.45em;
}
.price-three--gap {
  margin-bottom: var(--gap);
}
.price-three.is-small .price-three__price,
.price-three.is-small .price-three__compare {
  font-size: 15px;
  line-height: 15px;
}
.price-three.is-small .price-three__price {
  margin-right: 2px;
}
.price-three.is-small .price-three__compare {
  margin-bottom: 2px;
}
.price-three.is-medium .price-three__price,
.price-three.is-medium .price-three__compare {
  font-size: 17px;
  line-height: 17px;
}
.price-three.is-medium .price-three__price {
  margin-right: 5px;
}
.price-three.is-medium .price-three__compare {
  margin-bottom: 5px;
}
.price-three.is-large .price-three__price,
.price-three.is-large .price-three__compare {
  font-size: 26px;
  line-height: 26px;
}
.price-three.is-large .price-three__price {
  margin-right: 10px;
}
.price-three.is-large .price-three__compare {
  margin-bottom: 10px;
}
.price-three__price {
  font-weight: 700;
}
.price-three__compare-wrapper.is-hidden {
  display: none;
}
.price-three__compare {
  position: relative;
  display: inline-block;
  opacity: 0.4;
}
.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-two--gap {
  margin-bottom: var(--gap);
}
.price-two__wrapper {
  display: flex;
  align-items: center;
}
.price-two.is-small .price-two__price {
  margin-right: 5px;
  font-size: 15px;
  line-height: 15px;
}
.price-two.is-small .price-two__compare {
  margin-bottom: 5px;
  font-size: 13px;
  line-height: 13px;
}
.price-two.is-medium .price-two__price {
  margin-right: 5px;
  font-size: 17px;
  line-height: 17px;
}
.price-two.is-medium .price-two__compare {
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 15px;
}
.price-two.is-large .price-two__price {
  margin-right: 10px;
  font-size: 26px;
  line-height: 26px;
}
.price-two.is-large .price-two__compare {
  margin-bottom: 10px;
  font-size: 18px;
  line-height: 18px;
}
.price-two__compare {
  position: relative;
  display: inline-block;
  opacity: 0.5;
}
.price-two__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-two__compare.is-hidden {
  display: none;
}
.price-two__text {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
}
.price-two__discount {
  display: inline-block;
  padding: 2px 6px;
  border-radius: 4px;
  background-color: hsl(13, 100%, 63%);
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-size: 13px;
  line-height: 13px;
}
.price-two__discount.is-hidden {
  display: none;
}
.product-affiliate--gap {
  margin-bottom: var(--gap);
}
.product-affiliate__bonus {
  display: block;
  margin-bottom: var(--gap);
}
.product-affiliate__bonus strong {
  padding: 3px 10px;
  margin-left: 5px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2em;
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
}
.product-affiliate__container {
  overflow: auto;
  position: relative;
  padding-bottom: 10px;
}
.product-affiliate__container::-webkit-scrollbar {
  height: 8px;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.product-affiliate__container::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.product-affiliate__table {
  border-collapse: collapse;
  vertical-align: top;
  max-width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.product-affiliate__table thead th {
  min-height: 1em;
  padding: 0.3rem 0.8rem;
  text-align: left;
  font-weight: 600;
  line-height: 1.45em;
  font-size: 0.95em;
}
.product-affiliate__table td {
  min-height: 1em;
  padding: 0.4rem 1.2rem;
  box-sizing: border-box;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  line-height: 1.45em;
  font-size: 0.95em;
}
.product-affiliate__table td:nth-of-type(2) {
  min-width: 300px;
}
.product-affiliate__table td:not(:nth-of-type(2)) {
  white-space: nowrap;
}
.product-affiliate__table td.is-right {
  text-align: right;
}
.product-affiliate__table td strong {
  font-weight: 600;
}
.product-affiliate__table td a {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.product-carousel--gap {
  margin-bottom: var(--gap);
}
.product-carousel__wrapper {
  position: relative;
}
.product-carousel__swiper {
  margin: 1px;
}
.product-carousel__button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: calc(0px - 34px / 2);
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
}
.product-carousel__button.is-next {
  right: -8px;
}
.product-carousel__button.is-prev {
  left: -8px;
}
.product-carousel__button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.product-carousel__button[aria-disabled='true'] .icon-arrow-thin {
  opacity: 0.25;
}
.product-carousel__button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.product-carousel__button.is-next {
  transform: translateX(6px);
}
.product-carousel__button.is-prev {
  transform: translateX(-6px);
}
.product-carousel__button.swiper-button-lock {
  display: none;
}
.product-carousel__error {
  text-align: center;
}
.product-carousel__slide.is-small {
  max-width: 280px;
}
@media (min-width: 768px) {
  .product-carousel__button {
    opacity: 0;
    visibility: hidden;
  }
  .product-carousel__button.is-next,
  .product-carousel__button.is-prev {
    transform: unset;
  }
  .product-carousel__wrapper:hover .product-carousel__button {
    opacity: 1;
    visibility: visible;
  }
  .product-carousel__wrapper:hover .product-carousel__button.is-next {
    transform: translateX(6px);
  }
  .product-carousel__wrapper:hover .product-carousel__button.is-prev {
    transform: translateX(-6px);
  }
}
@media (min-width: 1200px) {
  .product-carousel__slide.is-free {
    max-width: unset;
  }
}
.product-cart {
  max-height: 700px;
  padding: 1rem;
  box-sizing: border-box;
  overflow-y: scroll;
}
.product-cart::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: transparent;
}
.product-cart::-webkit-scrollbar-thumb {
  margin-left: 5px;
  border-radius: 4px;
  background-color: transparent;
}
.product-cart:hover::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.product-cart__form.is-active .product-cart__quantity {
  display: flex;
}
.product-cart__form[data-price='0'] .product-cart__purchase-wrapper {
  display: none;
}
.product-cart__form:not([data-price='0']) .product-cart__request {
  display: none;
}
.product-cart__name {
  display: inline-block;
  margin-bottom: var(--gap-small);
  margin-right: var(--gap);
  font-size: var(--mid-font-size);
  line-height: 1.45em;
  font-weight: 600;
  color: currentColor;
  text-decoration: none;
}
.product-cart__grid {
  display: grid;
  grid-gap: var(--gap);
}
.product-cart__column {
  min-width: 0;
}
.product-cart__column > :not(:last-child) {
  margin-bottom: 1rem;
}
.product-cart__header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -10px;
}
.product-cart__header > * {
  margin-top: 10px;
}
.product-cart__header > :not(:last-child) {
  margin-right: var(--gap);
}
.product-cart__purchase {
  padding: 1rem;
  border-radius: var(--border-radius-large);
  border: 1px solid hsl(var(--ah), var(--as), var(--al));
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  box-shadow: var(--shadow-spread);
}
.product-cart__purchase > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.product-cart__purchase-wrapper {
  display: flex;
  align-items: flex-start;
}
.product-cart__purchase-text {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  font-size: 0.95em;
  line-height: 1.45em;
}
.product-cart__quantity {
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100px;
  margin-right: var(--gap-small);
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  color: hsla(var(--th), var(--ts), var(--tl), 0.6);
  overflow: hidden;
  user-select: none;
}
.product-cart__quantity-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 42px;
  padding: unset;
  border: unset;
  background-color: transparent;
  transition: 0.1s ease;
  cursor: pointer;
}
.product-cart__quantity-button:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.product-cart__quantity-button.is-loading {
  opacity: 0.3;
}
.product-cart__quantity-button:focus {
  outline: none;
}
.product-cart__quantity-button > svg {
  display: block;
  width: 10px;
  height: 10px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.product-cart__quantity-value {
  display: block;
  width: 50px;
  text-align: center;
  font-size: 0.95em;
}
.product-cart__request-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 8px 16px;
  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);
  transition: background-color 0.15s ease-in-out;
  text-decoration: none;
  font-size: 1em;
  line-height: 1.45em;
  user-select: none;
  cursor: pointer;
}
.product-cart__request-button:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 6%));
  transition: background-color 0.25s ease;
}
.product-cart__request-button.is-rounded {
  border-radius: 25px;
}
.product-cart__submit {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 8px 16px;
  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);
  transition: background-color 0.15s ease-in-out;
  text-decoration: none;
  font-size: 1em;
  line-height: 1.45em;
  user-select: none;
  cursor: pointer;
}
.product-cart__submit:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 6%));
  transition: background-color 0.25s ease;
}
.product-cart__submit[disabled] {
  background-color: hsl(var(--ah), var(--as), var(--al));
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: auto;
}
.product-cart__submit.is-rounded {
  border-radius: 25px;
}
@media (min-width: 768px) {
  .product-cart {
    padding: 1.5rem;
  }
  .product-cart__grid {
    grid-template-columns: 1fr minmax(0, 380px);
    grid-gap: 2rem;
  }
}
.product-code {
  display: inline-block;
}
.product-code__item {
  position: relative;
  cursor: pointer;
  z-index: 11;
}
.product-code__item.is-hidden {
  display: none;
}
.product-code__item > svg {
  display: inline-block;
  margin-bottom: -2px;
  margin-left: 5px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
}
.product-code__name {
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
}
.product-code__message {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: block;
  padding: 8px 16px;
  width: auto;
  border-radius: var(--border-radius-normal);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 2%));
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-spread);
  white-space: nowrap;
  text-align: left;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
  opacity: 0;
  transition: 0.3s ease;
}
.product-code__message.is-visible {
  opacity: 1;
}
.product-code__message.is-hidden {
  opacity: 0;
}
@media (min-width: 1300px) {
  .product-code__message {
    left: 50%;
    transform: translateX(-50%);
  }
}
.product-details__wrapper > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.product-details__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 5px;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.product-details__code {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.product-details__line {
  display: block;
  height: 5px;
  min-width: 20px;
  margin-top: 12px;
  background: radial-gradient(ellipse at center, hsl(var(--ah), var(--as), calc(var(--al) - 8%)) 0, hsl(var(--ah), var(--as), calc(var(--al) - 8%)) 0.5px, transparent 1.25px) right;
  background-size: 5px;
}
.product-details__value {
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  align-items: flex-end;
  flex-wrap: wrap;
  box-sizing: border-box;
  text-align: right;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.product-details__color-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: -10px;
}
.product-details__color-wrapper > * {
  margin-top: 10px;
}
.product-details__color {
  position: relative;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  margin: 1px 4px 1px 1px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 2px solid hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: 0 0 0 1px hsl(var(--ah), var(--as), calc(var(--al) - 4%)), inset 0 0 4px rgba(0, 0, 0, 0.1);
}
.product-features__wrapper {
  margin-top: var(--gap);
}
.product-features__wrapper > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.product-features__item {
  display: grid;
  grid-gap: 5px;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  font-size: 0.95em;
  line-height: 1.45em;
}
.product-features__code {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.product-features__line {
  display: block;
  height: 5px;
  min-width: 20px;
  margin-top: 12px;
  background: radial-gradient(ellipse at center, hsl(var(--ah), var(--as), calc(var(--al) - 10%)) 0, hsl(var(--ah), var(--as), calc(var(--al) - 10%)) 0.5px, transparent 1.25px) right;
  background-size: 5px;
}
.product-features__value {
  display: -webkit-flex;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  align-items: flex-end;
  flex-wrap: wrap;
  box-sizing: border-box;
  text-align: right;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.product-features__color-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin-top: -10px;
}
.product-features__color-wrapper > * {
  margin-top: 10px;
}
.product-features__color {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  width: 26px;
  margin-right: 6px;
  box-sizing: border-box;
  border-radius: 4px;
  border: 2px solid hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: 0 0 0 1px hsl(var(--ah), var(--as), calc(var(--al) - 4%)), inset 0 0 4px rgba(0, 0, 0, 0.1);
}
.product-features__divider {
  margin-bottom: var(--gap-small);
  line-height: 1.45em;
}
.product-features__divider span {
  border-bottom: 1px solid hsl(var(--ph), var(--ps), var(--pl));
}
.product-features__divider:not(:first-of-type) {
  margin-top: 2.5rem;
}
@media (min-width: 768px) {
  .product-features__item {
    font-size: 1em;
  }
}
@media (min-width: 1200px) {
  .product-features__wrapper > :not(:last-child) {
    margin-bottom: 1rem;
  }
  .product-features__item {
    grid-template-columns: auto 1fr 400px;
    grid-gap: 10px;
  }
}
.product-five {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: flex-start;
  width: 100%;
  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-normal);
  transition: box-shadow 0.3s ease;
}
.product-five.is-link:hover {
  box-shadow: var(--shadow-card);
  z-index: 3;
}
.product-five:hover .product-five__dots {
  opacity: 1;
}
.product-five__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-five__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-five__image.is-margins {
  padding: 1.5rem;
  box-sizing: border-box;
}
.product-five__image.is-margins .product-five__img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.product-five__image.is-cropped-top .product-five__img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
}
.product-five__image.is-cropped-center .product-five__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product-five__image.is-common .product-five__img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.product-five__image:focus {
  outline: none;
}
.product-five__img {
  height: auto;
  font-size: 0;
  overflow: hidden;
  user-select: none;
}
.product-five__tabs {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  padding: 0 var(--gap-small);
}
.product-five__tab {
  width: 100%;
}
.product-five__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: var(--gap-small);
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-five__dot {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.product-five__dot:not(:last-of-type) {
  margin-right: 6px;
}
.product-five__dot.is-active {
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.product-five__mobile-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}
.product-five__favorite,
.product-five__compare,
.product-five__badge {
  display: none;
}
.product-five__content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
}
.product-five__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
  z-index: 2;
}
.product-five__content > :not(.is-hidden):not(:last-child) {
  margin-bottom: var(--gap-small);
}
.product-five__header {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.product-five__header > :not(:last-child) {
  margin-right: var(--gap-small);
}
.product-five__name {
  display: block;
  color: currentColor;
  text-decoration: none;
}
.product-five__name > span {
  display: inline;
  padding-bottom: 3px;
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 87%;
  background-image: linear-gradient(to right, hsl(var(--ph), var(--ps), var(--pl)) 0%, hsl(var(--ph), var(--ps), var(--pl)) 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.45em;
  color: currentColor;
}
.product-five__name > span:hover {
  background-size: 100% 2px;
}
.product-five__name > span:focus {
  outline: none;
}
.product-five__mobile-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;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.product-five__compact-price {
  margin-top: auto;
}
.product-five__features {
  display: none;
  width: 100%;
}
.product-five__cart {
  display: flex;
  flex-direction: column;
  height: 100%;
  width: 100%;
  box-sizing: border-box;
}
.product-five__cart > :not(.is-hidden):not(:last-child) {
  margin-bottom: var(--gap-small);
}
@media (max-width: 579px) {
  .is-compact .product-five__header,
  .is-compact .product-five__name,
  .is-compact .product-five__cart {
    display: none;
  }
  .is-compact .product-five__image.is-margins,
  .is-compact .product-five__content-wrapper {
    padding: 0.8rem 0.5rem;
  }
}
@media (min-width: 580px) {
  .is-compact .product-five__compact-price,
  .is-compact .product-five__mobile-name {
    display: none;
  }
}
@media (min-width: 992px) {
  .is-wide.product-five {
    grid-template-columns: 200px 1fr;
    grid-template-rows: unset;
    grid-gap: var(--gap-extended);
    padding: var(--gap);
    border-radius: var(--border-radius-large);
  }
  .is-wide .product-five__image-wrapper {
    border-radius: var(--border-radius-normal);
  }
  .is-wide .product-five__image.is-margins {
    padding: 1rem;
  }
  .is-wide .product-five__content-wrapper {
    padding: unset;
  }
  .is-wide .product-five__cart {
    max-width: 200px;
  }
  .is-wide .product-five__mobile-badge {
    display: none;
  }
  .is-wide .product-five__features,
  .is-wide .product-five__favorite,
  .is-wide .product-five__compare,
  .is-wide .product-five__badge {
    display: block;
  }
}
@media (min-width: 1200px) {
  .is-wide .product-five__content-wrapper {
    display: grid;
    grid-template-columns: 1fr 200px;
    grid-gap: var(--gap-extended);
  }
  .is-wide .product-five__features {
    max-width: 600px;
  }
  .is-wide .product-five__cart > :not(.is-hidden):not(:last-child) {
    margin-bottom: var(--gap);
  }
  .is-wide .product-five__stocks {
    margin-left: auto;
  }
  .is-wide .product-five__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
@media (min-width: 1300px) {
  .is-narrow.product-five {
    grid-template-columns: 200px 1fr;
    grid-template-rows: unset;
    grid-gap: var(--gap-extended);
    padding: var(--gap);
    border-radius: var(--border-radius-large);
  }
  .is-narrow .product-five__image-wrapper {
    border-radius: var(--border-radius-normal);
  }
  .is-narrow .product-five__image.is-margins {
    padding: 1rem;
  }
  .is-narrow .product-five__content-wrapper {
    padding: unset;
  }
  .is-narrow .product-five__cart {
    max-width: 200px;
  }
  .is-narrow .product-five__mobile-badge {
    display: none;
  }
  .is-narrow .product-five__features,
  .is-narrow .product-five__favorite,
  .is-narrow .product-five__compare,
  .is-narrow .product-five__badge {
    display: block;
  }
}
@media (min-width: 1450px) {
  .is-narrow .product-five__content-wrapper {
    display: grid;
    grid-template-columns: 1fr 200px;
    grid-gap: var(--gap-extended);
  }
  .is-narrow .product-five__features {
    max-width: 600px;
  }
  .is-narrow .product-five__cart > :not(.is-hidden):not(:last-child) {
    margin-bottom: var(--gap);
  }
  .is-narrow .product-five__stocks {
    margin-left: auto;
  }
  .is-narrow .product-five__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
}
.product-four {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  max-width: 250px;
  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-normal);
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.product-four__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-four__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-four__image.is-margins {
  padding: 1.5rem;
  box-sizing: border-box;
}
.product-four__image.is-margins .product-three__img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.product-four__image.is-cropped-top .product-three__img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
}
.product-four__image.is-cropped-center .product-three__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product-four__image.is-common .product-three__img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.product-four__image:focus {
  outline: none;
}
.product-four__img {
  height: auto;
  font-size: 0;
  overflow: hidden;
  user-select: none;
}
.product-four__badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  display: block;
  z-index: 2;
}
.product-four__discount {
  position: absolute;
  top: 10px;
  left: 10px;
  display: block;
  z-index: 2;
}
.product-four__favorite {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}
.product-four__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 10px;
  box-sizing: border-box;
  z-index: 2;
}
.product-four__content > :not(.is-hidden):not(:last-child) {
  margin-bottom: 5px;
}
.product-four__name {
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.product-four__price {
  margin-top: auto;
}
.product-gallery-one__grid {
  position: relative;
}
.product-gallery-one__right-bar,
.product-gallery-one__left-bar {
  position: absolute;
  top: var(--gap-small);
  align-items: center;
  justify-content: flex-start;
  user-select: none;
  z-index: 10;
}
.product-gallery-one__left-bar {
  left: var(--gap-small);
}
.product-gallery-one__left-bar > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.product-gallery-one__right-bar {
  display: flex;
  align-items: center;
  right: var(--gap-small);
}
.product-gallery-one__right-bar > :not(:last-child) {
  margin-right: 5px;
}
.product-gallery-one__bottom-bar {
  position: absolute;
  bottom: var(--gap-small);
  right: var(--gap-small);
  user-select: none;
  z-index: 10;
}
.product-gallery-one__swiper-wrapper {
  align-items: center;
}
.product-gallery-one__thumbs-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.product-gallery-one__thumbs-button.swiper-button-disabled .icon-arrow-thin {
  opacity: 0.25;
}
.product-gallery-one__thumbs-button:not(.swiper-button-disabled) {
  cursor: pointer;
}
.product-gallery-one__thumbs-button .icon-arrow-thin {
  display: block;
  width: 16px;
  height: 16px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.product-gallery-one__thumbs-button.is-prev {
  margin-bottom: var(--gap-small);
}
.product-gallery-one__thumbs-button.is-prev .icon-arrow-thin {
  transform: rotate(-90deg);
}
.product-gallery-one__thumbs-button.is-next {
  margin-top: var(--gap-small);
}
.product-gallery-one__thumbs-button.is-next .icon-arrow-thin {
  transform: rotate(90deg);
}
.product-gallery-one__thumbs-container {
  position: absolute;
  top: 50%;
  left: 0;
  display: none;
  width: 80px;
  transform: translateY(-50%);
}
.product-gallery-one__thumbs-wrapper {
  height: calc(80px * 3 + 20px);
  overflow: hidden;
}
.product-gallery-one__thumb.swiper-slide-thumb-active .product-gallery-one__thumb-video,
.product-gallery-one__thumb.swiper-slide-thumb-active .product-gallery-one__thumb-image {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  box-shadow: 0 0 0 1px hsl(var(--ph), var(--ps), var(--pl));
}
.product-gallery-one__thumb-video,
.product-gallery-one__thumb-image {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: calc(80px - 2px);
  height: calc(80px - 2px);
  padding: 5px;
  margin: 1px;
  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));
  transition: 0.25s ease;
  cursor: pointer;
  overflow: hidden;
}
.product-gallery-one__thumb-video img,
.product-gallery-one__thumb-image img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  user-select: none;
}
.product-gallery-one__thumb-video .icon-youtube {
  display: block;
  width: 32px;
  height: 32px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.product-gallery-one__gallery-wrapper {
  position: relative;
}
.product-gallery-one__single-wrapper,
.product-gallery-one__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-normal);
}
.product-gallery-one__image-link {
  display: block;
  text-decoration: none;
  cursor: zoom-in;
}
.product-gallery-one__single,
.product-gallery-one__image {
  display: flex;
  align-items: flex-start;
  height: 100%;
  border-radius: var(--border-radius-normal);
  overflow: hidden;
}
.product-gallery-one__single img,
.product-gallery-one__image img {
  display: block;
  width: 100%;
  max-height: 500px;
  min-height: 300px;
  margin: 0;
  object-fit: cover;
  border-radius: var(--border-radius-normal);
  user-select: none;
}
.product-gallery-one__video-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  max-width: 650px;
  max-height: 500px;
}
.product-gallery-one__video-wrapper .video-container {
  width: 100%;
}
.product-gallery-one__loader {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%);
}
.product-gallery-one__button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: calc(0px - 34px / 2);
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
}
.product-gallery-one__button.is-next {
  right: -8px;
}
.product-gallery-one__button.is-prev {
  left: -8px;
}
.product-gallery-one__button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.product-gallery-one__button[aria-disabled='true'] .icon-arrow-thin {
  opacity: 0.25;
}
.product-gallery-one__button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.product-gallery-one__button.swiper-button-lock {
  display: none;
}
.product-gallery-one__button.is-next {
  right: -10px;
}
.product-gallery-one__button.is-prev {
  left: -10px;
}
@media (min-width: 768px) {
  .product-gallery-one__thumbs-container {
    display: block;
  }
  .product-gallery-one__gallery-wrapper {
    width: calc(100% - 80px - 3rem);
    margin-left: calc(80px + 3rem);
  }
  .product-gallery-one__left-bar {
    top: 0;
    left: 0;
  }
  .product-gallery-one__right-bar {
    top: 0;
    right: 0;
  }
  .product-gallery-one__bottom-bar {
    bottom: 0;
    right: 0;
  }
  .product-gallery-one__button.is-next {
    right: 0;
  }
  .product-gallery-one__button.is-prev {
    left: 0;
  }
  .product-gallery-one__magnifier {
    display: none;
  }
}
.product-gallery-three {
  position: relative;
}
.product-gallery-three--gap {
  margin-bottom: var(--gap);
}
.product-gallery-three__badge {
  position: absolute;
  top: var(--gap-small);
  left: var(--gap-small);
  user-select: none;
  z-index: 10;
}
.product-gallery-three__swiper-wrapper {
  align-items: center;
}
.product-gallery-three__single-wrapper,
.product-gallery-three__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-normal);
}
.product-gallery-three__single,
.product-gallery-three__image {
  display: flex;
  align-items: flex-start;
  height: 100%;
  border-radius: var(--border-radius-normal);
  overflow: hidden;
}
.product-gallery-three__single img,
.product-gallery-three__image img {
  display: block;
  width: 100%;
  max-height: 500px;
  margin: 0;
  object-fit: cover;
  border-radius: var(--border-radius-normal);
  user-select: none;
}
.product-gallery-three__button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: calc(0px - 34px / 2);
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
}
.product-gallery-three__button.is-next {
  right: -8px;
}
.product-gallery-three__button.is-prev {
  left: -8px;
}
.product-gallery-three__button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.product-gallery-three__button[aria-disabled='true'] .icon-arrow-thin {
  opacity: 0.25;
}
.product-gallery-three__button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.product-gallery-three__button.swiper-button-lock {
  display: none;
}
.product-gallery-three__button.is-next {
  right: -10px;
}
.product-gallery-three__button.is-prev {
  left: -10px;
}
@media (min-width: 768px) {
  .product-gallery-three__button.is-next {
    right: -17px;
  }
  .product-gallery-three__button.is-prev {
    left: -17px;
  }
}
.product-gallery-two__gallery-container {
  position: relative;
}
.product-gallery-two__right-bar,
.product-gallery-two__left-bar {
  position: absolute;
  top: var(--gap-small);
  align-items: center;
  justify-content: flex-start;
  user-select: none;
  z-index: 10;
}
.product-gallery-two__left-bar {
  left: var(--gap-small);
}
.product-gallery-two__left-bar > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.product-gallery-two__right-bar {
  display: flex;
  align-items: center;
  right: var(--gap-small);
}
.product-gallery-two__right-bar > :not(:last-child) {
  margin-right: 5px;
}
.product-gallery-two__bottom-bar {
  position: absolute;
  bottom: var(--gap-small);
  right: var(--gap-small);
  user-select: none;
  z-index: 10;
}
.product-gallery-two__swiper-wrapper {
  align-items: center;
}
.product-gallery-two__single-wrapper,
.product-gallery-two__slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  border-radius: var(--border-radius-normal);
}
.product-gallery-two__image-link {
  display: block;
  text-decoration: none;
  cursor: zoom-in;
}
.product-gallery-two__single,
.product-gallery-two__image {
  display: flex;
  align-items: flex-start;
  height: 100%;
  border-radius: var(--border-radius-normal);
  overflow: hidden;
}
.product-gallery-two__single img,
.product-gallery-two__image img {
  display: block;
  width: 100%;
  max-height: 500px;
  margin: 0;
  object-fit: cover;
  border-radius: var(--border-radius-normal);
  user-select: none;
}
.product-gallery-two__button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: calc(0px - 34px / 2);
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
}
.product-gallery-two__button.is-next {
  right: -8px;
}
.product-gallery-two__button.is-prev {
  left: -8px;
}
.product-gallery-two__button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.product-gallery-two__button[aria-disabled='true'] .icon-arrow-thin {
  opacity: 0.25;
}
.product-gallery-two__button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.product-gallery-two__button.swiper-button-lock {
  display: none;
}
.product-gallery-two__button.is-next {
  right: -10px;
}
.product-gallery-two__button.is-prev {
  left: -10px;
}
@media (min-width: 768px) {
  .product-gallery-two__magnifier {
    display: none;
  }
  .product-gallery-two__button.is-next {
    right: -17px;
  }
  .product-gallery-two__button.is-prev {
    left: -17px;
  }
}
.product-navigation--gap {
  margin-bottom: var(--gap);
}
.product-navigation__list {
  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));
}
.product-navigation__item {
  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;
}
.product-navigation__item > a {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0.4rem 1rem;
  margin: 1px;
  box-sizing: border-box;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  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: 0.2s ease;
  outline: none;
  cursor: pointer;
}
.product-navigation__item > a.is-selected,
.product-navigation__item > a:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.product-navigation__item > a:active {
  box-shadow: 0 0 0 0.2rem hsla(var(--ah), var(--as), var(--al), 0.6);
}
.product-one {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  max-width: 350px;
  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-normal);
  transition: box-shadow 0.3s ease;
}
.product-one.is-link:hover {
  box-shadow: var(--shadow-card);
  z-index: 3;
}
.product-one.is-link:hover .product-one__content {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.product-one:hover .product-one__controls {
  visibility: visible;
  opacity: 1;
}
.product-one:hover .product-one__button {
  opacity: 1;
  visibility: visible;
}
.product-one:hover .product-one__button.is-next {
  transform: translateX(6px);
}
.product-one:hover .product-one__button.is-prev {
  transform: translateX(-6px);
}
.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__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: 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__img {
  height: auto;
  font-size: 0;
  overflow: hidden;
  user-select: none;
}
.product-one__top {
  position: relative;
}
.product-one__swiper {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.product-one__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-one__slide.is-margins {
  padding: 1.5rem;
  box-sizing: border-box;
}
.product-one__button {
  position: absolute;
  top: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: calc(0px - 34px / 2);
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}
.product-one__button.is-next {
  right: -8px;
}
.product-one__button.is-prev {
  left: -8px;
}
.product-one__button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.product-one__button[aria-disabled='true'] .icon-arrow-thin {
  opacity: 0.25;
}
.product-one__button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.product-one__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}
.product-one__controls {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  display: flex;
  align-items: center;
  transition: 0.2s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 5;
}
.product-one__controls > :not(:last-child) {
  margin-right: 5px;
}
.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: var(--gap-small);
}
.product-one__name {
  display: block;
  color: currentColor;
  text-decoration: none;
}
.product-one__name > span {
  display: inline;
  padding-bottom: 3px;
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 87%;
  background-image: linear-gradient(to right, hsl(var(--ph), var(--ps), var(--pl)) 0%, hsl(var(--ph), var(--ps), var(--pl)) 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.45em;
  color: currentColor;
}
.product-one__name > span:hover {
  background-size: 100% 2px;
}
.product-one__name > span:focus {
  outline: none;
}
.product-one__compact-price {
  margin-top: auto;
}
.product-one__footer {
  padding-top: 15px;
  margin-top: auto;
}
.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__quantity {
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100px;
  margin-left: var(--gap-small);
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  color: hsla(var(--th), var(--ts), var(--tl), 0.6);
  overflow: hidden;
  user-select: none;
}
.product-one__quantity-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 40px;
  padding: unset;
  border: unset;
  background-color: transparent;
  transition: 0.1s ease;
  cursor: pointer;
}
.product-one__quantity-button:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.product-one__quantity-button.is-loading {
  opacity: 0.3;
}
.product-one__quantity-button:focus {
  outline: none;
}
.product-one__quantity-button > svg {
  display: block;
  width: 10px;
  height: 10px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.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: 40px;
  padding: 8px 16px;
  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);
  transition: background-color 0.15s ease-in-out;
  text-decoration: none;
  font-size: 1em;
  line-height: 1.45em;
  user-select: none;
  cursor: pointer;
}
.product-one__submit:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 6%));
  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;
}
@media (max-width: 579px) {
  .is-compact .product-one__name,
  .is-compact .product-one__score,
  .is-compact .product-one__stocks,
  .is-compact .product-one__controls,
  .is-compact .product-one__button,
  .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 {
    border-radius: var(--border-radius-normal);
  }
  .is-compact .product-one__content > :not(.is-hidden):not(:last-child) {
    margin-bottom: 5px;
  }
  .is-compact .product-one__mobile-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;
    color: hsl(var(--th), var(--ts), var(--tl));
    text-overflow: ellipsis;
    word-break: break-word;
    overflow: hidden;
  }
  .is-compact .product-one__badge {
    top: 0.5rem;
    left: 0.5rem;
  }
}
@media (min-width: 580px) {
  .is-compact .product-one__compact-price,
  .is-compact .product-one__mobile-name {
    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: 0;
    top: calc(100% - 3px);
    padding-top: 3px;
    width: 100%;
    border-color: hsl(var(--ah), var(--as), var(--al));
    border-style: solid;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
  }
}
.product-order {
  padding: 1.4rem;
  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));
  overflow: hidden;
}
.product-order--gap {
  margin-bottom: var(--gap);
}
.product-order__header {
  display: grid;
  grid-gap: 5px;
  align-items: center;
  padding-bottom: 1rem;
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  line-height: 1.45em;
}
.product-order__name {
  font-weight: 600;
}
.product-order__name a {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.product-order__date {
  margin-left: 5px;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  font-size: 0.95em;
}
.product-order__price {
  font-weight: 600;
}
.product-order__summary {
  margin-right: 5px;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  font-size: 0.95em;
}
.product-order__body {
  padding-top: 1rem;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.product-order__composition {
  display: block;
}
.product-order__composition a {
  font-weight: 600;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.product-order__status {
  display: block;
  margin-top: 5px;
}
.product-order__badge {
  padding: 3px 10px;
  margin-left: 5px;
  border-radius: 4px;
  font-size: 15px;
  line-height: 1.2em;
  color: hsl(var(--bh), var(--bs), var(--bl));
}
@media (min-width: 768px) {
  .product-order__header {
    grid-template-columns: 1fr auto;
  }
}
.product-purchase__form > :not(:last-child) {
  margin-bottom: var(--gap);
}
.product-purchase__form.is-active .product-purchase__quantity {
  display: flex;
}
.product-purchase__form[data-price='0'] .product-purchase__buttons {
  display: none;
}
.product-purchase__form:not([data-price='0']) .product-purchase__request {
  display: none;
}
.product-purchase__share {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-purchase__share > :not(:last-child) {
  margin-right: 1rem;
}
.product-purchase__share > :last-child {
  margin-left: auto;
}
.product-purchase__purchase {
  padding: var(--gap);
  box-sizing: border-box;
  border-radius: var(--border-radius-large);
}
.product-purchase__purchase > :not(:last-child) {
  margin-bottom: 1rem;
}
.product-purchase__purchase.is-highlight {
  border: 1px solid hsl(var(--ah), var(--as), var(--al));
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  box-shadow: var(--shadow-spread);
}
.product-purchase__purchase:not(.is-highlight) {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-spread-moderate);
}
.product-purchase__purchase-text {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  font-size: 0.95em;
  line-height: 1.45em;
}
.product-purchase__purchase-wrapper {
  display: flex;
  align-items: flex-start;
}
.product-purchase__affiliate {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -10px;
}
.product-purchase__affiliate > * {
  margin-top: 10px;
}
.product-purchase__affiliate > :first-child {
  margin-right: auto;
}
.product-purchase__affiliate > :not(:first-child) {
  margin-left: var(--gap-small);
}
.product-purchase__request,
.product-purchase__buttons {
  max-width: 500px;
}
.product-purchase__request > :not(:last-child),
.product-purchase__buttons > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.product-purchase__quantity {
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100px;
  margin-right: var(--gap-small);
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  color: hsla(var(--th), var(--ts), var(--tl), 0.6);
  overflow: hidden;
  user-select: none;
}
.product-purchase__quantity-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 42px;
  padding: unset;
  border: unset;
  background-color: transparent;
  transition: 0.1s ease;
  cursor: pointer;
}
.product-purchase__quantity-button:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.product-purchase__quantity-button.is-loading {
  opacity: 0.3;
}
.product-purchase__quantity-button:focus {
  outline: none;
}
.product-purchase__quantity-button > svg {
  display: block;
  width: 10px;
  height: 10px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.product-purchase__quantity-value {
  display: block;
  width: 50px;
  text-align: center;
  font-size: 0.95em;
}
.product-purchase__request-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 8px 16px;
  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);
  transition: background-color 0.15s ease-in-out;
  text-decoration: none;
  font-size: 1em;
  line-height: 1.45em;
  user-select: none;
  cursor: pointer;
}
.product-purchase__request-button:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 6%));
  transition: background-color 0.25s ease;
}
.product-purchase__request-button.is-rounded {
  border-radius: 25px;
}
.product-purchase__submit {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 8px 16px;
  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);
  transition: background-color 0.15s ease-in-out;
  text-decoration: none;
  font-size: 1em;
  line-height: 1.45em;
  user-select: none;
  cursor: pointer;
}
.product-purchase__submit:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 6%));
  transition: background-color 0.25s ease;
}
.product-purchase__submit[disabled] {
  background-color: hsl(var(--ah), var(--as), var(--al));
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: auto;
}
.product-purchase__submit.is-rounded {
  border-radius: 25px;
}
.product-purchase__one-click {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 42px;
  box-sizing: border-box;
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
  color: hsl(var(--th), var(--ts), var(--tl));
  border: 1px solid hsla(var(--ph), var(--ps), var(--pl), 0.5);
  border-radius: var(--border-radius-small);
  text-decoration: none;
  font-size: 0.95em;
  line-height: 1.45em;
  user-select: none;
  transition: background-color 0.25s ease;
  cursor: pointer;
}
.product-purchase__one-click:hover {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.15);
}
.product-purchase__one-click[disabled] {
  background-color: hsl(var(--ah), var(--as), var(--al));
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  color: hsl(var(--ah), var(--as), calc(var(--al) - 20%));
  cursor: auto;
}
.product-purchase__one-click[disabled] .icon-buy1click__tile-0 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 20%));
}
.product-purchase__one-click[disabled] .icon-buy1click__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 20%));
}
.product-purchase__one-click[disabled] .icon-buy1click__tile-2 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.product-purchase__one-click.is-rounded {
  border-radius: 25px;
}
.product-purchase__one-click .icon-buy1click {
  display: block;
  margin-right: var(--gap-small);
}
.product-purchase__one-click .icon-buy1click__tile-0 {
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.product-purchase__one-click .icon-buy1click__tile-1 {
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.product-purchase__one-click .icon-buy1click__tile-2 {
  fill: hsla(var(--ph), var(--ps), var(--pl), 0.5);
}
.product-purchase__features-link {
  margin-top: var(--gap);
}
.product-purchase__frame {
  padding: var(--gap);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
@media (min-width: 768px) {
  .product-purchase__form > :not(:last-child) {
    margin-bottom: var(--gap-extended);
  }
}
.product-review:not(.is-reply) {
  padding: 1rem;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: var(--border-radius-large);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.product-review:not(.is-reply).is-active {
  border-color: hsla(var(--ph), var(--ps), var(--pl), 0.5);
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
}
.product-review.is-reply {
  margin-left: var(--gap);
}
.product-review > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.product-review--gap {
  margin-bottom: var(--gap);
}
.product-review__credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -10px;
}
.product-review__credentials > * {
  margin-top: 10px;
}
.product-review__credentials > :not(:last-child) {
  margin-right: var(--gap);
}
.product-review__user {
  display: flex;
  align-items: center;
}
.product-review__userpic {
  flex-shrink: 0;
  display: block;
  width: 26px;
  height: 26px;
  margin-right: var(--gap-small);
  border-radius: 50%;
  overflow: hidden;
}
.product-review__userpic > svg {
  width: 100%;
  height: 100%;
  fill: hsl(0, 0%, 66%);
}
.product-review__userpic > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-review__username {
  font-size: 0.95em;
  line-height: 1.45em;
}
.product-review__username:is(a) {
  text-decoration: none;
  display: inline;
  padding-bottom: 3px;
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 87%;
  background-image: linear-gradient(to right, hsl(var(--ph), var(--ps), var(--pl)) 0%, hsl(var(--ph), var(--ps), var(--pl)) 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.45em;
  color: currentColor;
}
.product-review__username:is(a):hover {
  background-size: 100% 2px;
}
.product-review__username:is(a):focus {
  outline: none;
}
.product-review__date {
  display: flex;
  align-items: center;
  font-size: 0.95em;
  line-height: 1.45em;
}
.product-review__date .icon-clock-alter {
  margin-right: 10px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.product-review__title {
  line-height: 1.45em;
}
.product-review__title > span {
  border-bottom: 1px solid hsl(var(--ph), var(--ps), var(--pl));
}
.product-review__text {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  line-height: 1.65em;
}
.product-review__images {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -10px;
}
.product-review__images > * {
  margin-top: 10px;
}
.product-review__images > :not(:last-child) {
  margin-right: var(--gap-small);
}
.product-review__image-wrapper {
  position: relative;
  display: block;
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-small);
  overflow: hidden;
  text-decoration: none;
}
.product-review__image-wrapper:hover::after,
.product-review__image-wrapper:focus::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}
.product-review__image-wrapper:hover .product-review__overlay,
.product-review__image-wrapper:focus .product-review__overlay {
  opacity: 1;
}
.product-review__image-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  display: block;
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M304 192v32c0 6.6-5.4 12-12 12h-56v56c0 6.6-5.4 12-12 12h-32c-6.6 0-12-5.4-12-12v-56h-56c-6.6 0-12-5.4-12-12v-32c0-6.6 5.4-12 12-12h56v-56c0-6.6 5.4-12 12-12h32c6.6 0 12 5.4 12 12v56h56c6.6 0 12 5.4 12 12zm201 284.7L476.7 505c-9.4 9.4-24.6 9.4-33.9 0L343 405.3c-4.5-4.5-7-10.6-7-17V372c-35.3 27.6-79.7 44-128 44C93.1 416 0 322.9 0 208S93.1 0 208 0s208 93.1 208 208c0 48.3-16.4 92.7-44 128h16.3c6.4 0 12.5 2.5 17 7l99.7 99.7c9.3 9.4 9.3 24.6 0 34zM344 208c0-75.2-60.8-136-136-136S72 132.8 72 208s60.8 136 136 136 136-60.8 136-136z' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0;
  transition: 0.3s ease;
  z-index: 2;
}
.product-review__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-review__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dim);
  transition: 0.6s ease;
  opacity: 0;
  z-index: 1;
}
.product-review__reply {
  color: var(--primary);
}
.product-review__reply:focus {
  outline: none;
}
@media (min-width: 768px) {
  .product-review.is-reply {
    margin-left: var(--gap-extended);
  }
  .product-review:not(.is-reply) {
    padding: 2rem;
  }
  .product-review > :not(:first-child) {
    margin-left: calc(26px + var(--gap-small));
  }
}
.product-services--gap {
  margin-bottom: var(--gap);
}
.product-services.is-medium .product-services__variants {
  font-size: 0.95em;
}
.product-services.is-medium .product-services__list > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.product-services__title {
  display: block;
  margin-right: 65px;
  margin-bottom: 1rem;
  font-size: var(--text-font-size);
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.product-services__list > :not(:last-child) {
  margin-bottom: 15px;
}
.product-services__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 700px;
}
.product-services__item.is-hidden {
  display: none;
}
.product-services__variants {
  display: block;
  height: 2rem;
  width: 100%;
  max-width: 400px;
  margin-top: var(--gap-small);
  padding-left: 1rem;
  padding-right: 3rem;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: var(--border-radius-small);
  font-size: 0.9em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  transition: 0.25s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' style='enable-background:new 0 0 12 12;' xml:space='preserve'%3E%3Cpath fill='hsl(0%2C 0%25%2C 66%25)' d='M11.7%2C4.7l-1.3-1.3L6%2C7.7L1.7%2C3.4L0.4%2C4.7L4.7%2C9L6%2C10.4L7.3%2C9L11.7%2C4.7L11.7%2C4.7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat;
  background-position: right 1rem top 50%;
  background-size: 12px auto, 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  appearance: none;
  cursor: pointer;
}
.product-services__variants:disabled {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  cursor: default;
}
.product-services__variants::-ms-expand {
  display: none;
}
.product-services__variants:not(:disabled):focus {
  outline: none;
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.product-services__variants:not(:disabled):focus option {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.product-six {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  align-items: flex-start;
  width: 100%;
  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-normal);
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: box-shadow 0.3s ease;
}
.product-six.is-link:hover {
  box-shadow: var(--shadow-card);
  z-index: 3;
}
.product-six__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-six__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-six__image.is-margins {
  padding: 1.5rem;
  box-sizing: border-box;
}
.product-six__image.is-margins .product-six__img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.product-six__image.is-cropped-top .product-six__img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
}
.product-six__image.is-cropped-center .product-six__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product-six__image.is-common .product-six__img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.product-six__image:focus {
  outline: none;
}
.product-six__img {
  height: auto;
  font-size: 0;
  overflow: hidden;
  user-select: none;
}
.product-six__mobile-badge {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
}
.product-six__content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
  padding: 1rem;
  box-sizing: border-box;
}
.product-six__content {
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  z-index: 2;
}
.product-six__content > :not(.is-hidden):not(:last-child) {
  margin-bottom: var(--gap-small);
}
.product-six__name {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-decoration: none;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
  transition: 0.2s ease;
}
.product-six__name:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.product-six__mobile-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;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.product-six__badge {
  display: none;
}
.product-six__footer {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.product-six__footer > :not(:last-child) {
  margin-right: var(--gap);
}
.product-six__cart {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  margin-top: auto;
}
@media (max-width: 579px) {
  .is-compact .product-six__footer,
  .is-compact .product-six__name,
  .is-compact .product-six__price {
    display: none;
  }
  .is-compact .product-six__image.is-margins,
  .is-compact .product-six__content-wrapper {
    padding: 0.8rem 0.5rem;
  }
}
@media (min-width: 580px) {
  .is-compact .product-six__compact-price,
  .is-compact .product-six__mobile-name {
    display: none;
  }
}
@media (min-width: 992px) {
  .is-wide.product-six {
    grid-template-rows: unset;
    grid-template-columns: 80px 1fr;
    grid-gap: var(--gap-extended);
    padding: var(--gap-small);
  }
  .is-wide .product-six__image-wrapper {
    border-radius: var(--border-radius-normal);
  }
  .is-wide .product-six__image.is-margins {
    padding: 0.5rem;
  }
  .is-wide .product-six__content-wrapper {
    display: grid;
    grid-template-columns: 1fr 200px;
    grid-gap: var(--gap-extended);
    padding: unset;
  }
  .is-wide .product-six__mobile-badge {
    display: none;
  }
  .is-wide .product-six__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .is-wide .product-six__badge {
    display: block;
  }
  .is-wide .product-six__cart,
  .is-wide .product-six__content {
    padding: 0.5rem 0;
  }
}
@media (min-width: 1200px) {
  .is-narrow.product-six {
    grid-template-rows: unset;
    grid-template-columns: 80px 1fr;
    grid-gap: var(--gap-extended);
    padding: var(--gap-small);
  }
  .is-narrow .product-six__image-wrapper {
    border-radius: var(--border-radius-normal);
  }
  .is-narrow .product-six__image.is-margins {
    padding: 0.5rem;
  }
  .is-narrow .product-six__content-wrapper {
    display: grid;
    grid-template-columns: 1fr 200px;
    grid-gap: var(--gap-extended);
    padding: unset;
  }
  .is-narrow .product-six__mobile-badge {
    display: none;
  }
  .is-narrow .product-six__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
  }
  .is-narrow .product-six__badge {
    display: block;
  }
  .is-narrow .product-six__cart,
  .is-narrow .product-six__content {
    padding: 0.5rem 0;
  }
}
.product-sorting {
  position: relative;
}
.product-sorting--gap {
  margin-bottom: var(--gap);
}
.product-sorting__button-desktop {
  display: none;
}
.product-sorting__button-mobile {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0.4rem 1rem;
  box-sizing: border-box;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 2%));
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  font-size: 0.95em;
  transition: border-color 0.2s ease;
  outline: none;
  cursor: pointer;
}
.product-sorting__button-mobile:hover {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.product-sorting__button-mobile .icon-sorting {
  display: block;
  width: 14px;
  height: 14px;
  margin-right: var(--gap-small);
  fill: hsl(var(--th), var(--ts), var(--tl));
}
.product-sorting__dropdown-wrapper {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.1s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  max-width: 400px;
  min-width: 100%;
  padding-top: 5px;
}
.product-sorting__dropdown-wrapper.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.product-sorting__dropdown {
  position: relative;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}
.product-sorting__item {
  position: relative;
}
.product-sorting__item:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 2%));
}
.product-sorting__item a {
  display: block;
  height: 36px;
  padding: 0.4rem calc(1rem + 12px) 0.4rem 1rem;
  box-sizing: border-box;
  color: hsl(var(--th), var(--ts), var(--tl));
  font-size: 0.95em;
  line-height: 1.45em;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s;
  cursor: pointer;
}
.product-sorting__item a:focus {
  outline: none;
}
.product-sorting__item a:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.product-sorting__item.is-active a {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.product-sorting__icon {
  position: absolute;
  right: 0.6rem;
  top: 50%;
  transform: translateY(-50%);
  margin-left: var(--gap-small);
}
.product-sorting__icon.is-up .icon-arrow {
  transform: rotate(90deg);
}
.product-sorting__icon.is-down .icon-arrow {
  transform: rotate(-90deg);
}
.product-sorting__icon .icon-arrow {
  display: block;
  width: 12px;
  height: 12px;
  fill: hsl(var(--th), var(--ts), var(--tl));
}
@media (min-width: 992px) {
  .product-sorting__button-desktop {
    display: grid;
    grid-template-columns: 1fr auto;
    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));
    cursor: pointer;
  }
  .product-sorting__button-desktop:hover .product-sorting__arrow {
    background-color: hsl(var(--ah), var(--as), calc(var(--al) - 2%));
  }
  .product-sorting__name {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-width: 180px;
    height: 100%;
    padding: 0.4rem 1rem;
    box-sizing: border-box;
    font-size: 0.95em;
  }
  .product-sorting__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-left: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
    background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
    border-top-right-radius: var(--border-radius-small);
    border-bottom-right-radius: var(--border-radius-small);
    transition: 0.2s ease;
  }
  .product-sorting__arrow svg {
    display: block;
    width: 9px;
    height: 9px;
    fill: hsl(0, 0%, 66%);
    transform: rotate(90deg);
    transition: transform 0.2s ease;
  }
  .product-sorting__button-mobile {
    display: none;
  }
}
.product-table {
  display: block;
  padding-bottom: var(--gap);
  margin-bottom: var(--gap);
  overflow-x: scroll;
}
.product-table::-webkit-scrollbar {
  height: 8px;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.product-table::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.product-table--gap {
  margin-bottom: var(--gap);
}
.product-table__wrapper {
  padding: var(--gap-small);
  min-width: 750px;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.product-table__rows {
  display: grid;
  align-items: start;
  grid-template-columns: 1fr auto auto;
}
.product-table__header-data {
  min-width: 100px;
  padding: 0.6rem 0.8rem;
  box-sizing: border-box;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.product-table__header-data:first-of-type {
  border-top-left-radius: var(--border-radius-small);
  border-bottom-left-radius: var(--border-radius-small);
}
.product-table__table-data {
  min-width: 100px;
  min-height: 60px;
  padding: 0.6rem 0.8rem;
  box-sizing: border-box;
  line-height: 1.45em;
  font-size: 0.95em;
}
.product-table__table-data a {
  transition: all 0.2s ease;
  color: hsl(var(--ph), var(--ps), var(--pl));
  text-decoration: none;
}
.product-table__table-data a:hover {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.product-table__table-data a:focus {
  outline: none;
}
.product-table__table-data:not(:nth-last-of-type(-n + 3)) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.product-table__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 1rem;
}
.product-table__image {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  min-width: 40px;
  border-radius: var(--border-radius-small);
  overflow: hidden;
}
.product-table__image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}
.product-table__link {
  display: block;
}
.product-table__download-link {
  display: flex;
}
.product-table__download-link svg {
  fill: hsl(var(--ph), var(--ps), var(--pl));
  margin-right: var(--gap-small);
}
@media (min-width: 1200px) {
  .product-table {
    padding-bottom: unset;
    overflow-x: unset;
  }
  .product-table__wrapper {
    padding: 1rem;
  }
}
.product-three {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  max-width: 350px;
  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-normal);
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.product-three__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-three__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-three__image.is-margins {
  padding: 1.5rem;
  box-sizing: border-box;
}
.product-three__image.is-margins .product-three__img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.product-three__image.is-cropped-top .product-three__img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
}
.product-three__image.is-cropped-center .product-three__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product-three__image.is-common .product-three__img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.product-three__image:focus {
  outline: none;
}
.product-three__img {
  height: auto;
  font-size: 0;
  overflow: hidden;
  user-select: none;
}
.product-three__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}
.product-three__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: var(--gap-small) 1rem;
  box-sizing: border-box;
  z-index: 2;
}
.product-three__content > :not(.is-hidden):not(:last-child) {
  margin-bottom: 5px;
}
.product-three__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;
  color: hsl(var(--th), var(--ts), var(--tl));
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
  transition: 0.2s ease;
}
.product-three__name:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.product-three__price {
  margin-top: auto;
}
.product-three__compact-price {
  margin-top: auto;
}
@media (max-width: 579px) {
  .is-compact .product-three__price {
    display: none;
  }
  .is-compact .product-three__name {
    font-size: 0.95em;
  }
  .is-compact .product-three__image.is-margins,
  .is-compact .product-three__content {
    padding: 0.8rem 0.5rem;
  }
  .is-compact .product-three__content {
    border-radius: var(--border-radius-normal);
  }
  .is-compact .product-three__content > :not(.is-hidden):not(:last-child) {
    margin-bottom: 5px;
  }
  .is-compact .product-three__badge {
    top: 0.5rem;
    left: 0.5rem;
  }
}
@media (min-width: 580px) {
  .is-compact .product-three__compact-price {
    display: none;
  }
}
.product-two {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  max-width: 350px;
  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-normal);
  transition: box-shadow 0.3s ease;
}
.product-two.is-link:hover {
  box-shadow: var(--shadow-card);
  z-index: 3;
}
.product-two.is-link:hover .product-two__content {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.product-two:hover .product-two__controls {
  visibility: visible;
  opacity: 1;
}
.product-two:hover .product-two__dots {
  opacity: 1;
}
.product-two__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-two__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-two__image.is-margins {
  padding: 1.5rem;
  box-sizing: border-box;
}
.product-two__image.is-margins .product-two__img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.product-two__image.is-cropped-top .product-two__img {
  object-fit: cover;
  object-position: center top;
  width: 100%;
  height: 100%;
}
.product-two__image.is-cropped-center .product-two__img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.product-two__image.is-common .product-two__img {
  width: auto;
  max-width: 100%;
  max-height: 100%;
}
.product-two__image:focus {
  outline: none;
}
.product-two__img {
  height: auto;
  font-size: 0;
  overflow: hidden;
  user-select: none;
}
.product-two__tabs {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  padding: 0 var(--gap-small);
}
.product-two__tab {
  width: 100%;
}
.product-two__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  padding: var(--gap-small);
  box-sizing: border-box;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.product-two__dot {
  display: block;
  width: 100%;
  height: 2px;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.product-two__dot:not(:last-of-type) {
  margin-right: 6px;
}
.product-two__dot.is-active {
  background: hsl(var(--ph), var(--ps), var(--pl));
}
.product-two__top {
  position: relative;
}
.product-two__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
}
.product-two__controls {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  transition: 0.2s ease;
  visibility: hidden;
  opacity: 0;
  z-index: 5;
}
.product-two__controls > :not(:last-child) {
  margin-right: 5px;
}
.product-two__content {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  box-sizing: border-box;
  z-index: 2;
}
.product-two__content > :not(.is-hidden):not(:last-child) {
  margin-bottom: var(--gap-small);
}
.product-two__name {
  display: block;
  color: currentColor;
  text-decoration: none;
}
.product-two__name > span {
  display: inline;
  padding-bottom: 3px;
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 87%;
  background-image: linear-gradient(to right, hsl(var(--ph), var(--ps), var(--pl)) 0%, hsl(var(--ph), var(--ps), var(--pl)) 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.45em;
  color: currentColor;
}
.product-two__name > span:hover {
  background-size: 100% 2px;
}
.product-two__name > span:focus {
  outline: none;
}
.product-two__compact-price {
  margin-top: auto;
}
.product-two__footer {
  padding-top: 15px;
  margin-top: auto;
}
.product-two__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-two__form.is-active .product-two__quantity {
  display: flex;
}
.product-two__quantity {
  flex-shrink: 0;
  display: none;
  align-items: center;
  justify-content: space-between;
  width: 100px;
  margin-left: var(--gap-small);
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  color: hsla(var(--th), var(--ts), var(--tl), 0.6);
  overflow: hidden;
  user-select: none;
}
.product-two__quantity-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 40px;
  padding: unset;
  border: unset;
  background-color: transparent;
  transition: 0.1s ease;
  cursor: pointer;
}
.product-two__quantity-button:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.product-two__quantity-button.is-loading {
  opacity: 0.3;
}
.product-two__quantity-button:focus {
  outline: none;
}
.product-two__quantity-button > svg {
  display: block;
  width: 10px;
  height: 10px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.product-two__quantity-value {
  display: block;
  width: 50px;
  text-align: center;
  font-size: 0.95em;
}
.product-two__submit {
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 40px;
  padding: 8px 16px;
  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);
  transition: background-color 0.15s ease-in-out;
  text-decoration: none;
  font-size: 1em;
  line-height: 1.45em;
  user-select: none;
  cursor: pointer;
}
.product-two__submit:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 6%));
  transition: background-color 0.25s ease;
}
.product-two__submit[disabled] {
  background-color: hsl(var(--ah), var(--as), var(--al));
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: auto;
}
@media (max-width: 579px) {
  .is-compact .product-two__name,
  .is-compact .product-two__score,
  .is-compact .product-two__stocks,
  .is-compact .product-two__controls,
  .is-compact .product-two__footer,
  .is-compact .product-two__form {
    display: none;
  }
  .is-compact .product-two__image.is-margins,
  .is-compact .product-two__content {
    padding: 0.8rem 0.5rem;
  }
  .is-compact .product-two__content {
    border-radius: var(--border-radius-normal);
  }
  .is-compact .product-two__content > :not(.is-hidden):not(:last-child) {
    margin-bottom: 5px;
  }
  .is-compact .product-two__mobile-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;
    color: hsl(var(--th), var(--ts), var(--tl));
    text-overflow: ellipsis;
    word-break: break-word;
    overflow: hidden;
  }
  .is-compact .product-two__badge {
    top: 0.5rem;
    left: 0.5rem;
  }
}
@media (min-width: 580px) {
  .is-compact .product-two__compact-price,
  .is-compact .product-two__mobile-name {
    display: none;
  }
}
@media (min-width: 768px) {
  .product-two:hover .product-two__form.is-hidden {
    opacity: 1;
    visibility: visible;
    box-shadow: var(--shadow-card);
    pointer-events: auto;
  }
  .product-two__form.is-hidden {
    position: absolute;
    left: 0;
    top: calc(100% - 3px);
    padding-top: 3px;
    width: 100%;
    border-color: hsl(var(--ah), var(--as), var(--al));
    border-style: solid;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1;
  }
}
.product-view {
  display: grid;
  grid-template-columns: repeat(3, 32px);
  grid-gap: 8px;
}
.product-view--gap {
  margin-bottom: var(--gap);
}
.product-view__item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  transition: 0.2s ease;
  outline: none;
  cursor: pointer;
}
.product-view__item.is-selected {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  box-shadow: 0 0 0 1px hsl(var(--ph), var(--ps), var(--pl));
}
.product-view__item.is-selected svg {
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.product-view__item:hover:not(.is-selected) svg {
  fill: hsl(var(--th), var(--ts), var(--tl));
}
.product-view__item svg {
  height: 18px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 16%));
  transition: fill 0.2s ease;
}
.product-view__item.is-loading {
  pointer-events: none;
}
.radio {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  grid-gap: var(--gap-small);
}
.radio--gap {
  margin-bottom: var(--gap);
}
.radio.is-disabled .radio__circle {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  cursor: default;
}
.radio.is-disabled .radio__label {
  cursor: default;
}
.radio input[type='radio'] {
  display: none;
}
.radio input[type='radio']:checked ~ .radio__circle {
  box-shadow: inset 0 0 0 4px hsl(var(--ph), var(--ps), var(--pl));
}
.radio__circle {
  position: relative;
  display: block;
  height: 18px;
  width: 18px;
  margin-top: 2px;
  box-shadow: inset 0 0 0 2px hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: 50%;
  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  z-index: 5;
}
.radio__label {
  font-size: 0.95em;
  line-height: 1.45em;
  cursor: pointer;
}
.rating-circle {
  position: relative;
}
.rating-circle--gap {
  margin-bottom: var(--gap);
}
.rating-circle > svg {
  position: absolute;
  top: 0;
  left: 0;
}
.rating-circle__center {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  box-sizing: border-box;
  border-radius: 50%;
  border: 12px solid hsl(var(--ah), var(--as), var(--al));
}
.rating-circle__number {
  font-size: 1.7em;
}
.rating-table--gap {
  margin-bottom: var(--gap);
}
.rating-table > :not(:last-child) {
  margin-bottom: 2px;
}
.rating-table__item {
  display: grid;
  grid-template-columns: auto 1fr 100px;
  grid-gap: 1rem;
  align-items: center;
  line-height: 1.45em;
  font-size: 0.95em;
}
.rating-table__stars {
  display: flex;
  align-items: center;
}
.rating-table__icon .icon-star {
  display: block;
  width: 13px;
  height: 13px;
  fill: currentColor;
}
.rating-table__icon.is-empty {
  color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.rating-table__icon.is-fill {
  color: hsl(44, 93%, 72%);
}
.rating-table__icon:not(:last-of-type) {
  margin-right: 3px;
}
.rating-table__bar {
  width: 100%;
  height: 8px;
  border-radius: 2px;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.rating-table__fill {
  height: 8px;
  border-radius: 2px;
  background-color: hsl(148, 100%, 36%);
}
.rating-table__value {
  text-align: right;
}
.review-form {
  max-height: 700px;
  padding: 1rem;
  box-sizing: border-box;
  overflow-y: scroll;
}
.review-form::-webkit-scrollbar {
  width: 4px;
  height: 4px;
  background-color: transparent;
}
.review-form::-webkit-scrollbar-thumb {
  margin-left: 5px;
  border-radius: 4px;
  background-color: transparent;
}
.review-form:hover::-webkit-scrollbar-thumb {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.review-form__form.is-reply .review-form__rating-wrapper {
  display: none;
}
.review-form__title {
  display: block;
  margin-bottom: var(--gap);
  font-weight: 600;
  font-size: var(--mid-font-size);
  line-height: 1.45em;
}
.review-form__user {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: var(--gap);
  margin-top: -10px;
}
.review-form__user > * {
  margin-top: 10px;
  margin-right: 10px;
}
.review-form__user-name {
  font-size: 0.95em;
  line-height: 1.45em;
}
.review-form__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  overflow: hidden;
}
.review-form__avatar > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-form__avatar .icon-userpic {
  width: 100%;
  height: 100%;
  fill: hsl(0, 0%, 66%);
}
.review-form__field {
  margin-bottom: var(--gap-small);
}
.review-form__label,
.review-form__rating-hint {
  display: block;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  line-height: 1.45em;
  font-size: 0.95em;
}
.review-form__label {
  margin-bottom: 5px;
}
.review-form__rating-hint {
  margin-left: var(--gap-small);
}
.review-form__rating {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.review-form__rating.is-locked {
  pointer-events: none;
  opacity: 0.5;
}
.review-form__rating > :not(:last-child) {
  margin-right: 5px;
}
.review-form__rating-icon {
  cursor: pointer;
  margin-top: 2px;
}
.review-form__rating-icon svg {
  width: 20px;
  height: 20px;
  transition: 0.1s linear;
}
.review-form__rating-icon.is-empty svg {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
}
.review-form__rating-icon.is-filled svg {
  fill: hsl(44, 93%, 72%);
}
.review-form__input {
  display: inline-block;
  min-height: 42px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.5rem 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;
}
.review-form__input:hover:not(:disabled):not(:focus) {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.review-form__input:hover:focus {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.review-form__input:focus {
  outline: none;
  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%));
}
.review-form__input:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.review-form__input.is-error,
.review-form__input.error:hover,
.review-form__input.error:focus,
.review-form__input.error,
.review-form__input.wa-error {
  border-color: hsl(13, 100%, 63%);
  box-shadow: 0 0 1px 1px hsl(13, 100%, 63%);
}
.review-form__input::-webkit-input-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.review-form__input:-moz-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.review-form__textarea {
  display: inline-block;
  min-height: 42px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.5rem 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-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;
  display: block;
  font-size: 0.95em;
  line-height: 1.45em;
  overflow-y: hidden;
  resize: none;
}
.review-form__textarea:hover:not(:disabled):not(:focus) {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.review-form__textarea:hover:focus {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.review-form__textarea:focus {
  outline: none;
  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%));
}
.review-form__textarea:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.review-form__textarea.is-error,
.review-form__textarea.error:hover,
.review-form__textarea.error:focus,
.review-form__textarea.error,
.review-form__textarea.wa-error {
  border-color: hsl(13, 100%, 63%);
  box-shadow: 0 0 1px 1px hsl(13, 100%, 63%);
}
.review-form__textarea::-webkit-input-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.review-form__textarea:-moz-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.review-form__file-images {
  position: relative;
  display: block;
  width: 100%;
  box-sizing: border-box;
  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));
  transition: all 0.2s ease;
  z-index: 1;
}
.review-form__file-images.is-over::after {
  opacity: 1;
}
.review-form__file-images::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  background-image: url("data:image/svg+xml,%3Csvg width='6' height='6' viewBox='0 0 6 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%238f8f8f' fill-opacity='0.3' fill-rule='evenodd'%3E%3Cpath d='M5 0h1L0 6V5zM6 5v1H5z'/%3E%3C/g%3E%3C/svg%3E");
  transition: opacity 0.2s ease;
  z-index: -1;
}
.review-form__file-images:focus::after,
.review-form__file-images:hover::after {
  opacity: 1;
}
.review-form__file-area {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: 1.5rem;
  padding: 1.5rem;
  cursor: pointer;
}
.review-form__file-area svg {
  fill: hsl(0, 0%, 66%);
}
.review-form__file-area-hint {
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  user-select: none;
}
.review-form__file-area-hint > span {
  display: block;
}
.review-form__file-input {
  display: none;
}
.review-form__file-attachments {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1.5rem;
  padding: 0 1.5rem 1rem;
}
.review-form__file-attachments:empty {
  padding: 0;
}
.review-form__file-image {
  position: relative;
  display: block;
  width: 100%;
  height: 100px;
  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);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.review-form__file-delete {
  position: absolute;
  top: -10px;
  right: -10px;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.review-form__file-description {
  margin-top: 5px;
}
.review-form__file-description > a {
  text-decoration: none;
  color: currentColor;
  font-size: 0.8em;
}
.review-form__file-description > a:focus {
  outline: none;
}
.review-form__file-description > textarea {
  margin-top: 5px;
  resize: none;
}
.review-form__file-description > textarea.is-hidden {
  display: none;
}
.review-form__file-errors {
  display: block;
  padding: 0 1.5rem 1rem;
}
.review-form__file-errors:empty {
  padding: 0;
}
.review-form__file-error {
  color: currentColor;
  font-size: 0.8em;
  line-height: 1.45em;
}
.review-form__file-error:not(:last-of-type) {
  margin-bottom: 5px;
}
.review-form__buttons {
  display: flex;
  align-items: flex-start;
}
.review-form__buttons > :not(:last-child) {
  margin-right: var(--gap-small);
}
.review-form__notice,
.review-form__errors {
  display: block;
  margin-bottom: var(--gap-small);
  font-size: 0.95em;
  line-height: 1.45em;
  color: lightcoral;
}
.review-form__moderation {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
  text-align: center;
}
.review-form__authorization {
  line-height: 1.45em;
}
.review-form__authorization > a {
  color: currentColor;
}
@media (min-width: 768px) {
  .review-form {
    padding: 2rem;
  }
  .review-form__field {
    display: flex;
    align-items: flex-start;
    margin-bottom: var(--gap);
  }
  .review-form__label {
    min-width: 125px;
    margin-bottom: unset;
  }
  .review-form__label,
  .review-form__rating-hint {
    margin-top: 2px;
  }
  .review-form__file-area {
    grid-gap: 2rem;
    padding: 2rem;
  }
  .review-form__file-attachments {
    grid-template-columns: 1fr 1fr;
    padding: 0 2rem 1rem;
  }
  .review-form__file-errors {
    padding: 0 2rem 1rem;
  }
}
.review-one {
  display: grid;
  grid-template-rows: auto 1fr;
  max-width: 450px;
}
.review-one.is-stretch {
  grid-template-rows: 1fr auto;
  height: 100%;
}
.review-one--gap {
  margin-bottom: var(--gap);
}
.review-one__content {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border-radius: var(--border-radius-normal);
}
.review-one__content.is-primary {
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.review-one__content.is-secondary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.review-one__content.is-semitone {
  background-color: hsl(var(--ah), var(--as), var(--al));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.review-one__content > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.review-one__score {
  justify-content: space-between;
}
.review-one__title {
  font-size: var(--name-font-size);
  font-weight: 600;
}
.review-one__text {
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.review-one__credentials-wrapper {
  margin-top: auto;
}
.review-one__credentials {
  display: flex;
  flex-wrap: wrap;
  margin-top: -10px;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.review-one__credentials > * {
  margin-top: 10px;
}
.review-one__credentials > :last-child:not(:first-child) {
  margin-left: auto;
}
.review-one__author {
  margin-right: var(--gap);
  font-size: 0.95em;
  line-height: 1.45em;
}
.review-one__date {
  font-size: 0.95em;
  line-height: 1.45em;
}
.review-one__product {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 1rem;
  align-items: start;
  padding: 1rem;
  margin-top: 1rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
}
.review-one__product.is-primary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.review-one__product.is-secondary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.review-one__product.is-semitone {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.review-one__product-name {
  display: block;
  text-decoration: none;
  color: currentColor;
}
.review-one__product-name > span {
  display: inline;
  padding-bottom: 3px;
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 87%;
  background-image: linear-gradient(to right, hsl(var(--ph), var(--ps), var(--pl)) 0%, hsl(var(--ph), var(--ps), var(--pl)) 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.45em;
  color: currentColor;
}
.review-one__product-name > span:hover {
  background-size: 100% 2px;
}
.review-one__product-name > span:focus {
  outline: none;
}
.review-one__product-image > img {
  display: block;
  max-width: 60px;
  height: auto;
  border-radius: var(--border-radius-small);
}
.schedule-one {
  position: relative;
  display: inline-block;
  z-index: 15;
}
.schedule-one--gap {
  margin-bottom: var(--gap);
}
.schedule-one:hover .schedule-one__popup {
  visibility: visible;
  opacity: 1;
  transition: all 0.2s ease;
}
.schedule-one__wrapper {
  display: flex;
  align-items: center;
}
.schedule-one__wrapper .icon-more {
  display: block;
  width: 8px;
  height: 8px;
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.schedule-one__text {
  display: block;
  margin-right: 8px;
  font-size: 0.95em;
  user-select: none;
}
.schedule-one__popup {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
}
.schedule-one__popup.is-forward {
  top: 100%;
  padding-top: 8px;
}
.schedule-one__popup.is-reverse {
  bottom: 100%;
  padding-bottom: 8px;
}
.schedule-one__popup.is-left {
  right: 0;
}
.schedule-one__popup.is-right {
  left: 0;
}
.schedule-one__popup-wrapper {
  width: 100%;
  min-width: 300px;
  padding: 1rem;
  border-radius: var(--border-radius-small);
  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%));
  overflow: hidden;
}
.schedule-one__item {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 5px;
  font-size: 14px;
  line-height: 1.45em;
}
.schedule-one__item:not(:last-of-type) {
  margin-bottom: 5px;
}
.schedule-one__value {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.score-one {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-top: -8px;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  text-decoration: none;
}
.score-one--gap {
  margin-bottom: var(--gap);
}
.score-one > *:not(.is-dropdown) {
  margin-top: 8px;
}
.score-one > :not(:last-child) {
  margin-right: 1rem;
}
.score-one:is(a) .score-one__rating-hint:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.score-one__rating {
  display: flex;
  align-items: center;
}
.score-one__rating > :not(:last-child) {
  margin-right: 3px;
}
.score-one__rating-item .icon-star {
  display: inline-block;
  width: 15px;
  height: 15px;
}
.score-one__rating-item.is-empty {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.score-one__rating-item.is-fill {
  fill: hsl(44, 93%, 72%);
}
.score-one__rating-item.is-half .is-left {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.score-one__rating-item.is-half .is-right {
  fill: hsl(44, 93%, 72%);
}
.score-one__rating-hint {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: currentColor;
  transition: 0.2s ease;
}
.score-one__rating-hint.is-small {
  font-size: 0.9em;
}
.score-one__rating-hint.is-medium {
  font-size: 0.95em;
}
.score-one__rating-hint > svg {
  flex-shrink: 0;
  margin-right: 5px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.score-one__rating-hint:focus {
  outline: none;
}
.score-one__dropdown-wrapper {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.1s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  display: none;
  top: 100%;
  left: 0;
  padding-top: 0.8rem;
}
.score-one__dropdown-wrapper.is-bottom-start .score-one__dropdown::before {
  left: 2rem;
}
.score-one__dropdown-wrapper.is-bottom .score-one__dropdown::before {
  left: 50%;
}
.score-one__dropdown-wrapper.is-bottom-end .score-one__dropdown::before {
  right: 2rem;
}
.score-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-soft);
  width: 350px;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
}
.score-one:hover > .score-one__dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.score-one__dropdown-title {
  font-size: 1.3em;
}
.score-one__dropdown-line {
  display: block;
  margin: 15px 0;
  border: 0;
  height: 1px;
  width: 100%;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
@media (min-width: 768px) {
  .score-one__dropdown-wrapper {
    display: block;
  }
}
.score-three--gap {
  margin-bottom: var(--gap);
}
.score-three__grid {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 2rem;
  align-items: center;
}
@media (max-width: 559px) {
  .score-three .rating-circle {
    display: none;
  }
}
.score-two {
  display: flex;
  align-items: center;
}
.score-two--gap {
  margin-bottom: var(--gap);
}
.score-two.is-small .score-two__number {
  width: 24px;
  height: 24px;
}
.score-two.is-small .score-two__rating-item .icon-star {
  width: 14px;
  height: 14px;
}
.score-two.is-medium .score-two__number {
  width: 30px;
  height: 30px;
}
.score-two.is-medium .score-two__rating-item .icon-star {
  width: 16px;
  height: 16px;
}
.score-two__number {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: var(--gap);
  border-radius: 50%;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 10%));
  color: hsl(var(--bh), var(--bs), var(--bl));
  font-size: 15px;
}
.score-two__rating {
  display: flex;
  align-items: center;
}
.score-two__rating > :not(:last-child) {
  margin-right: 2px;
}
.score-two__rating-item .icon-star {
  display: inline-block;
}
.score-two__rating-item.is-empty {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
}
.score-two__rating-item.is-fill {
  fill: hsl(44, 93%, 72%);
}
.score-two__rating-item.is-half .is-left {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
}
.score-two__rating-item.is-half .is-right {
  fill: hsl(44, 93%, 72%);
}
.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: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 12%));
  background-color: hsl(var(--ah), var(--as), var(--al));
  color: hsl(var(--th), var(--ts), var(--tl));
  border-radius: var(--border-radius-small);
  font-size: 0.95em;
  font-family: inherit;
  outline: none;
  transition: border-color 0.25s ease;
}
.search-one__input.is-active,
.search-one__input:hover,
.search-one__input:focus {
  outline: none;
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 20%));
}
.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;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.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;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.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;
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  font-size: 0.95em;
}
.search-one__header > a {
  margin-left: 1rem;
}
.search-one__header-link {
  display: inline;
  padding-bottom: 3px;
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 87%;
  background-image: linear-gradient(to right, hsl(var(--ph), var(--ps), var(--pl)) 0%, hsl(var(--ph), var(--ps), var(--pl)) 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  color: currentColor;
  line-height: 1.45em;
  text-decoration: none;
}
.search-one__header-link:hover {
  background-size: 100% 2px;
}
.search-one__header-link:focus {
  outline: 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: var(--name-font-size);
  line-height: 1.45em;
}
@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--gap {
  margin-bottom: var(--gap);
}
.search-three form {
  display: flex;
  align-items: flex-start;
}
.search-three__input {
  width: 40px;
  height: 40px;
  padding: unset;
  border-radius: var(--border-radius-normal);
  border: none;
  transition: width 0.3s, background 0.3s;
  background-color: hsl(var(--ah), var(--as), var(--al));
  font-size: 0.95em;
  cursor: pointer;
}
.search-three__input:focus {
  width: 300px;
  padding-left: 1rem;
  padding-right: 40px;
  box-sizing: border-box;
  border: none;
  outline: none;
  box-shadow: none;
  transition: width 0.3s cubic-bezier(0, 1.22, 0.66, 1.39), background 0.3s;
  cursor: text;
}
.search-three__input:not(:focus) {
  text-indent: -5000px;
}
.search-three__input:hover:not(:focus) {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.search-three__icon {
  position: relative;
  display: block;
  cursor: pointer;
}
.search-three__icon svg {
  position: absolute;
  right: 11px;
  top: 11px;
  width: 18px;
  height: 18px;
  transition: fill 0.6s;
  fill: hsl(var(--th), var(--ts), var(--tl));
}
.search-three__submit {
  position: relative;
  left: -5000px;
}
@media (min-width: 1400px) {
  .search-three__input:focus {
    width: 250px;
  }
}
.search-two {
  max-width: 900px;
}
.search-two > form {
  position: relative;
}
.search-two.is-small .search-two__input {
  height: 36px;
}
.search-two.is-medium .search-two__input {
  height: 40px;
}
.search-two__input {
  width: 100%;
  padding: 0 70px 0 1rem;
  box-sizing: border-box;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  font-size: 0.95em;
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.search-two__input:hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.search-two__input:focus {
  outline: none;
  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%));
}
.search-two__button {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: unset;
  border: 0;
  background-color: transparent;
  cursor: pointer;
}
.search-two__button svg {
  width: 18px;
  height: 18px;
  fill: hsl(var(--th), var(--ts), var(--tl));
}
.share--gap {
  margin-bottom: var(--gap);
}
.ya-share2,
.ya-share2 * {
  line-height: normal;
  font-family: inherit;
}
.ya-share2 {
  position: relative;
  z-index: 1;
}
.ya-share2 :link:hover,
.ya-share2 :visited:hover {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.ya-share2 input {
  color: inherit;
  font: inherit;
  margin: 0;
  line-height: normal;
}
.ya-share2__list_direction_vertical > .ya-share2__item {
  display: block;
  margin-right: 0;
}
.ya-share2__list {
  display: inline-block;
  vertical-align: top;
  padding: 0;
  margin: 0;
  list-style-type: none;
}
.ya-share2__item {
  margin: 5px 6px 5px 0;
  font-family: inherit, sans-serif;
  display: inline-block;
}
.ya-share2__icon {
  height: 26px;
  width: 26px;
  background-size: 26px;
  display: inline-block;
  vertical-align: top;
}
.ya-share2__badge {
  display: inline-block;
  vertical-align: top;
  border-radius: 3px;
  color: hsl(var(--bh), var(--bs), var(--bl));
  overflow: hidden;
  position: relative;
}
.ya-share2__badge + .ya-share2__title {
  margin-left: 10px;
}
.ya-share2__item_more {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  margin: 0;
  padding: 4px 16px;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), var(--al));
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  transition: 0.2s ease;
  cursor: pointer;
}
.ya-share2__item_more:hover {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.ya-share2__link_more > .ya-share2__title {
  display: none;
}
.ya-share2__icon_more {
  box-sizing: border-box;
  position: relative;
  height: 24px;
  width: 24px;
  background-size: 20px 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 6.914V2.586L6.293 7.293l-3.774 3.774 3.841 3.201L11 18.135V13.9c8.146-.614 11 4.1 11 4.1 0-2.937-.242-5.985-2.551-8.293C16.765 7.022 12.878 6.832 11 6.914z' fill='%231d1f25'/%3E%3C/svg%3E");
}
.ya-share2__link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  white-space: nowrap;
  user-select: none;
}
.ya-share2__link:focus {
  outline: none;
}
.ya-share2__title {
  display: inline-block;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.ya-share2__popup {
  position: absolute;
  top: calc(100% + 20px);
  right: 0;
  display: block;
  min-width: 170px;
  padding: 5px 10px;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-soft);
  transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  pointer-events: none;
  visibility: hidden;
  opacity: 0;
  z-index: 80;
}
.ya-share2__popup_visible {
  pointer-events: auto;
  visibility: visible;
  opacity: 1;
  top: calc(100% + 10px);
}
/*service*/
.ya-share2__item_service_twitter .ya-share2__badge {
  background-color: #00aced;
}
.ya-share2__item_service_twitter .ya-share2__icon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIzIDguNzNhNy4zOCA3LjM4IDAgMCAxLTIuMTIuNTgzIDMuNzA2IDMuNzA2IDAgMCAwIDEuNjIzLTIuMDQzIDcuMzk3IDcuMzk3IDAgMCAxLTIuMzQ2Ljg5NiAzLjY5MyAzLjY5MyAwIDAgMC02LjI5MyAzLjM2OCAxMC40ODUgMTAuNDg1IDAgMCAxLTcuNjEtMy44NThjLS4zMi41NDUtLjUgMS4xOC0uNSAxLjg1NiAwIDEuMjguNjUgMi40MSAxLjY0MiAzLjA3M2EzLjY4MyAzLjY4MyAwIDAgMS0xLjY3My0uNDYydi4wNDdjMCAxLjc4OCAxLjI3MyAzLjI4IDIuOTYyIDMuNjJhMy43MTggMy43MTggMCAwIDEtMS42NjcuMDYzIDMuNjk3IDMuNjk3IDAgMCAwIDMuNDUgMi41NjRBNy40MSA3LjQxIDAgMCAxIDUgMTkuOTY3YTEwLjQ1MyAxMC40NTMgMCAwIDAgNS42NiAxLjY1OGM2Ljc5NCAwIDEwLjUwOC01LjYyNiAxMC41MDgtMTAuNTA1IDAtLjE2LS4wMDMtLjMyLS4wMS0uNDc4QTcuNTA3IDcuNTA3IDAgMCAwIDIzIDguNzMyeiIgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+Cg==);
}
.ya-share2__item_service_vkontakte .ya-share2__badge {
  background-color: #48729e;
}
.ya-share2__item_service_vkontakte .ya-share2__icon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0Ljg4MyAxOS4zOTZzLjMyNS0uMDM2LjQ5LS4yMThjLjE1NC0uMTY3LjE1LS40OC4xNS0uNDhzLS4wMjMtMS40NjguNjQ4LTEuNjg0Yy42Ni0uMjEzIDEuNTEgMS40MTggMi40MDggMi4wNDYuNjguNDc0IDEuMTk3LjM3IDEuMTk3LjM3bDIuNDA0LS4wMzRzMS4yNTYtLjA4LjY2LTEuMDg0Yy0uMDUtLjA4Mi0uMzQ4LS43NDMtMS43ODgtMi4xMDItMS41MDctMS40MjMtMS4zMDUtMS4xOTIuNTEtMy42NTMgMS4xMDYtMS40OTggMS41NDgtMi40MTIgMS40MS0yLjgwNC0uMTMyLS4zNzMtLjk0NS0uMjc1LS45NDUtLjI3NWwtMi43MDYuMDE3cy0uMi0uMDI4LS4zNS4wNjNjLS4xNDQuMDg4LS4yMzguMjk1LS4yMzguMjk1cy0uNDI4IDEuMTYtMSAyLjE0NmMtMS4yMDQgMi4wOC0xLjY4NiAyLjE5LTEuODgzIDIuMDYtLjQ2LS4zLS4zNDUtMS4yMS0uMzQ1LTEuODU1IDAtMi4wMTcuMy0yLjg1Ny0uNTg2LTMuMDc1LS4yOTUtLjA3Mi0uNTEyLS4xMi0xLjI2NC0uMTI4LS45NjYtLjAxLTEuNzgzLjAwMy0yLjI0Ni4yMzQtLjMwOC4xNTMtLjU0Ni40OTUtLjQuNTE0LjE3OC4wMjUuNTgzLjExLjc5OC40MS4yNzcuMzgyLjI2OCAxLjI0NC4yNjggMS4yNDRzLjE2IDIuMzczLS4zNzMgMi42NjhjLS4zNjUuMjAyLS44NjUtLjIxLTEuOTQtMi4wOTgtLjU1LS45NjctLjk2Ni0yLjAzNi0uOTY2LTIuMDM2cy0uMDgtLjItLjIyMy0uMzA2Yy0uMTczLS4xMy0uNDE2LS4xNy0uNDE2LS4xN2wtMi41Ny4wMTZzLS4zODguMDEtLjUzLjE4MmMtLjEyNS4xNTItLjAxLjQ2Ni0uMDEuNDY2czIuMDE0IDQuNzkgNC4yOTQgNy4yMDJjMi4wOSAyLjIxNCA0LjQ2NSAyLjA2OCA0LjQ2NSAyLjA2OGgxLjA3NnoiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPgo=);
}
.ya-share2__item_service_facebook .ya-share2__badge {
  background-color: #3c5a98;
}
.ya-share2__item_service_facebook .ya-share2__icon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE1LjEgMjN2LTguMjFoMi43NzNsLjQxNS0zLjJIMTUuMVY5LjU0N2MwLS45MjcuMjYtMS41NTggMS41OTYtMS41NThsMS43MDQtLjAwMlY1LjEyNkEyMi43ODcgMjIuNzg3IDAgMCAwIDE1LjkxNyA1QzEzLjQ2IDUgMTEuNzggNi40OTIgMTEuNzggOS4yM3YyLjM2SDl2My4yaDIuNzhWMjNoMy4zMnoiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPgo=);
}
.ya-share2__item_service_linkedin .ya-share2__badge {
  background-color: #0083be;
}
.ya-share2__item_service_linkedin .ya-share2__icon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNNS4yNzYgMTAuNTczaDMuODM3VjIyLjE0SDUuMjc2ek03LjIxOCA1LjAyYy0xLjMxMyAwLTIuMTcuODY2LTIuMTcgMiAwIDEuMTEuODMgMS45OTggMi4xMiAxLjk5OGguMDI0YzEuMzM3IDAgMi4xNy0uODkgMi4xNy0xLjk5OC0uMDI1LTEuMTM0LS44MzMtMi0yLjE0NC0yek0xOC41MjUgMTAuMzI2Yy0yLjAzNSAwLTIuOTQ2IDEuMTIyLTMuNDU3IDEuOTF2LTEuNjM4aC0zLjgzNWMuMDUgMS4wODUgMCAxMS41NjYgMCAxMS41NjZoMy44MzV2LTYuNDZjMC0uMzQ1LjAyNS0uNjkuMTI3LS45MzguMjc3LS42OS45MDgtMS40MDUgMS45NjgtMS40MDUgMS4zODcgMCAxLjk0MyAxLjA2MiAxLjk0MyAyLjYxNnY2LjE4OGgzLjgzNnYtNi42MzJjMC0zLjU1My0xLjg5My01LjIwNi00LjQxNy01LjIwNnoiLz48L2c+PC9zdmc+Cg==);
}
.ya-share2__item_service_moimir .ya-share2__badge {
  background-color: #4776a6;
}
.ya-share2__item_service_moimir .ya-share2__icon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEwLjUgMTFhMS41IDEuNSAwIDEgMCAwLTMgMS41IDEuNSAwIDAgMCAwIDN6bTcgMGExLjUgMS41IDAgMSAwIDAtMyAxLjUgMS41IDAgMCAwIDAgM3ptNS4zNjcgNi44NzJsLTIuMDI4LTMuNDA3YS45ODguOTg4IDAgMCAwLTEuMzM4LS4zNDUuOTUuOTUgMCAwIDAtLjM1IDEuMzEybC4yNC40MDVhNy41NDggNy41NDggMCAwIDEtNS4zOTUgMi4yNDUgNy41NSA3LjU1IDAgMCAxLTUuMzktMi4yNGwuMjQyLS40MWEuOTUuOTUgMCAwIDAtLjM1Mi0xLjMxMi45ODguOTg4IDAgMCAwLTEuMzM4LjM0NWwtMi4wMjcgMy40MDdhLjk1Ljk1IDAgMCAwIC4zNTIgMS4zMTIuOTkuOTkgMCAwIDAgMS4zMzctLjM0NWwuNzctMS4yOTJBOS41MjQgOS41MjQgMCAwIDAgMTMuOTk2IDIwYTkuNTIgOS41MiAwIDAgMCA2LjQxLTIuNDU2bC43NyAxLjI5NWEuOTkuOTkgMCAwIDAgMS4zMzcuMzQ1Ljk1Ljk1IDAgMCAwIC4zNTMtMS4zMTN6IiBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiLz48L3N2Zz4K);
}
.ya-share2__item_service_odnoklassniki .ya-share2__badge {
  background-color: #ff9f4d;
}
.ya-share2__item_service_odnoklassniki .ya-share2__icon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTMuNTYzIDE0LjEyNmMyLjU3OCAwIDQuNjY4LTIuMDQgNC42NjgtNC41NTUgMC0yLjUxNS0yLjA5LTQuNTU1LTQuNjY3LTQuNTU1LTIuNTc4IDAtNC42NjcgMi4wNC00LjY2NyA0LjU1NiAwIDIuNTE3IDIuMDkgNC41NTYgNC42NjcgNC41NTZ6bTAtNi43OTZjMS4yNjggMCAyLjI5NyAxLjAwMyAyLjI5NyAyLjI0IDAgMS4yNC0xLjAzIDIuMjQyLTIuMjk3IDIuMjQyLTEuMjY4IDAtMi4yOTYtMS4wMDMtMi4yOTYtMi4yNCAwLTEuMjQgMS4wMjgtMi4yNDIgMi4yOTYtMi4yNDJ6Ii8+PHBhdGggZD0iTTE2Ljk4IDE0LjQ4MmMtMS4zMSAxLjAwOC0zLjQxNyAxLjAwOC0zLjQxNyAxLjAwOHMtMi4xMDYgMC0zLjQxNy0xLjAwOGMtLjk3LS43NDYtMS43LS4zMTctMS45NjMuMi0uNDYuOS4wNiAxLjMzNiAxLjIzIDIuMDcgMS4wMDIuNjI3IDIuMzc2Ljg2MiAzLjI2NC45NWwtLjc0LjcyMmMtMS4wNDUgMS4wMi0yLjA1MiAyLjAwMi0yLjc1IDIuNjg1YTEuMDI3IDEuMDI3IDAgMCAwIDAgMS40NzZsLjEyNS4xMjNhMS4wOSAxLjA5IDAgMCAwIDEuNTEzIDBsMi43NS0yLjY4NSAyLjc1IDIuNjg0YTEuMDkgMS4wOSAwIDAgMCAxLjUxNSAwbC4xMjYtLjEyNGExLjAyNyAxLjAyNyAwIDAgMCAwLTEuNDc3bC0yLjc1LTIuNjg2LS43NDQtLjcyNWMuODg4LS4wOSAyLjI0OC0uMzI2IDMuMjQtLjk0OCAxLjE3Mi0uNzM0IDEuNjktMS4xNyAxLjIzLTIuMDctLjI2Mi0uNTE3LS45OTItLjk0Ni0xLjk2Mi0uMnoiLz48L2c+PC9zdmc+Cg==);
}
.ya-share2__item_service_reddit .ya-share2__badge {
  background-color: #ff4500;
}
.ya-share2__item_service_reddit .ya-share2__icon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyOCAyOCI+PHBhdGggZD0iTTIwLjM2NiAxMS40MTJjLTEuNTMtLjg4Mi0zLjQ1NC0xLjQzLTUuNTczLTEuNTVMMTUuOTEgNi41NWwzLjAyMy44ODJhMi40MSAyLjQxIDAgMCAwIDIuNDE0IDIuNDFjMS4zMzQgMCAyLjQzMy0xLjA3NyAyLjQzMy0yLjQxQzIzLjc4IDYuMDc4IDIyLjY4IDUgMjEuMzQ3IDVjLS44NDQgMC0xLjU5LjQ1LTIuMDIgMS4wOThsLTMuNjctMS4wNThhLjY2OC42NjggMCAwIDAtLjg0NS40M2wtMS40NyA0LjM5M2MtMi4xLjExOC00LjAyNC42NjctNS41NTQgMS41NWEyLjc1MiAyLjc1MiAwIDAgMC0yLjAyLS44NjRBMi43NjIgMi43NjIgMCAwIDAgMyAxMy4zMTNjMCAxLjA0LjU5IDEuOTQgMS40MzIgMi40MS0uMDQuMjM3LS4wNTguNDcyLS4wNTguNzA3IDAgMy42MyA0LjM1NiA2LjU3IDkuNzEzIDYuNTcgNS4zMzcgMCA5LjY5My0yLjk0IDkuNjkzLTYuNTcgMC0uMjM0LS4wMi0uNDctLjA2LS43MDVhMi43MzMgMi43MzMgMCAwIDAgMS40MzQtMi40MSAyLjc2MyAyLjc2MyAwIDAgMC0yLjc2Ny0yLjc2NmMtLjgwNSAwLTEuNTEuMzMzLTIuMDIuODYyek0xMC42MTQgMTRjLjc2NSAwIDEuMzkyLjYyOCAxLjM5MiAxLjM5MmExLjM4IDEuMzggMCAwIDEtMS4zOTIgMS4zNzMgMS4zNjUgMS4zNjUgMCAwIDEtMS4zNzQtMS4zNzNBMS4zOCAxLjM4IDAgMCAxIDEwLjYxNCAxNHptNi45MjYgMGExLjM4IDEuMzggMCAwIDAtMS4zNzQgMS4zOTJjMCAuNzY1LjYxIDEuMzczIDEuMzc0IDEuMzczLjc2NSAwIDEuMzkzLS42MDggMS4zOTMtMS4zNzMgMC0uNzY0LS42MjgtMS4zOTItMS4zOTMtMS4zOTJ6bS03LjM0IDQuOThhLjY3LjY3IDAgMCAxLS4xMTYtLjk2Yy4yMTYtLjMxNC42NjctLjM1My45Ni0uMTE4Ljc4Ni42MDggMi4wNDIuOTQyIDMuMDQzLjk0Mi45OCAwIDIuMjM3LS4zMzQgMy4wNC0uOTQyYS42Ny42NyAwIDAgMSAuOTYzLjExNy42ODcuNjg3IDAgMCAxLS4xMTguOTZjLTEuMDIuODA1LTIuNjEgMS4yNTYtMy44ODUgMS4yNTYtMS4yOTUgMC0yLjg2NS0uNDUtMy44ODYtMS4yNTV6TTIxLjM0OCA4LjQ3Yy0uNTcgMC0xLjA0LS40Ny0xLjA0LTEuMDQgMC0uNTg3LjQ3LTEuMDM4IDEuMDQtMS4wMzguNTcgMCAxLjA0LjQ1IDEuMDQgMS4wNCAwIC41NjgtLjQ3IDEuMDQtMS4wNCAxLjA0eiIgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIi8+PC9zdmc+Cg==);
}
.ya-share2__item_service_telegram .ya-share2__badge {
  background-color: #64a9dc;
}
.ya-share2__item_service_telegram .ya-share2__icon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjQgMjQiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE4LjkyIDYuMDg5TDQuNzQ3IDExLjU1NWMtLjk2Ny4zODgtLjk2Mi45MjgtLjE3NiAxLjE2OGwzLjUzNCAxLjEwNCAxLjM1MyA0LjE0NmMuMTY0LjQ1NC4wODMuNjM0LjU2LjYzNC4zNjggMCAuNTMtLjE2OC43MzYtLjM2OC4xMy0uMTI3LjkwMy0uODggMS43NjctMS43MTlsMy42NzcgMi43MTdjLjY3Ni4zNzMgMS4xNjUuMTggMS4zMzMtLjYyOGwyLjQxNC0xMS4zNzRjLjI0Ny0uOTktLjM3OC0xLjQ0LTEuMDI1LTEuMTQ2ek04LjY2IDEzLjU3M2w3Ljk2Ny01LjAyNmMuMzk4LS4yNDIuNzYzLS4xMTIuNDYzLjE1NGwtNi44MjIgNi4xNTUtLjI2NSAyLjgzMy0xLjM0My00LjExNnoiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPg==);
}
.ya-share2__item_service_viber .ya-share2__badge {
  background-color: #7b519d;
}
.ya-share2__item_service_viber .ya-share2__icon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0iI0ZGRiIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMjEuMjM4IDE4LjAyYy0uNTQ1LS40NC0xLjEyNy0uODM1LTEuNy0xLjI0LTEuMTQyLS44MDYtMi4xODgtLjg3LTMuMDQuNDMtLjQ4LjcyOC0xLjE1Ljc2LTEuODUuNDQtMS45MzMtLjg4LTMuNDI1LTIuMjM4LTQuMy00LjIxMi0uMzg2LS44NzMtLjM4LTEuNjU2LjUyNC0yLjI3NC40OC0uMzI3Ljk2Mi0uNzEzLjkyMy0xLjQyNy0uMDUtLjkzLTIuMy00LjA0Mi0zLjE4Ni00LjM3YTEuNjA3IDEuNjA3IDAgMCAwLTEuMTEgMEM1LjQyIDYuMDcgNC41NTggNy43OSA1LjM4NCA5LjgyOGMyLjQ2NCA2LjA4IDYuOCAxMC4zMSAxMi43NjggMTIuODk0LjM0LjE0OC43Mi4yMDYuOTEuMjYgMS4zNi4wMTMgMi45NS0xLjMwMyAzLjQxLTIuNjEuNDQzLTEuMjU1LS40OTItMS43NTQtMS4yMzItMi4zNTN6TTE0LjU0NiA1Ljk5YzQuMzYzLjY3NSA2LjM3NiAyLjc2IDYuOTMgNy4xNzguMDUzLjQwOC0uMDk4IDEuMDIyLjQ4IDEuMDMzLjYwNi4wMTMuNDYtLjU5Mi40NjUtMSAuMDUyLTQuMTYtMy41NTYtOC4wMTgtNy43NDgtOC4xNi0uMzE2LjA0Ni0uOTctLjIyLTEuMDEuNDkzLS4wMjguNDguNTIzLjQwMi44ODQuNDU3eiIvPjxwYXRoIGQ9Ik0xNS40IDcuMjAyYy0uNDItLjA1LS45NzQtLjI1LTEuMDcyLjMzNS0uMTAzLjYxNS41MTUuNTUyLjkxMi42NDIgMi42OTUuNjA0IDMuNjMzIDEuNTkgNC4wNzcgNC4yNzcuMDY0LjM5Mi0uMDY0IDEgLjU5OC45LjQ5LS4wNzUuMzEzLS41OTcuMzU1LS45MDMuMDItMi41OC0yLjE3OC00LjkyNy00Ljg3LTUuMjUyeiIvPjxwYXRoIGQ9Ik0xNS42NDcgOS4zMWMtLjI4LjAwOC0uNTU1LjA0LS42NTguMzQtLjE1Ni40NS4xNy41NTYuNS42MSAxLjEwNi4xNzggMS42ODguODM0IDEuOCAxLjk0Mi4wMjguMy4yMTguNTQ0LjUwNy41MS40LS4wNDguNDM3LS40MDcuNDI1LS43NDcuMDItMS4yNDUtMS4zOC0yLjY4NC0yLjU3NS0yLjY1NHoiLz48L2c+PC9zdmc+Cg==);
}
.ya-share2__item_service_whatsapp .ya-share2__badge {
  background-color: #65bc54;
}
.ya-share2__item_service_whatsapp .ya-share2__icon {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMjggMjgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTIzIDEzLjc2OGMwIDQuODQzLTMuOTU2IDguNzY4LTguODM2IDguNzY4YTguODUzIDguODUzIDAgMCAxLTQuMjcyLTEuMDlMNSAyM2wxLjU5NS00LjcwNGE4LjY3OCA4LjY3OCAwIDAgMS0xLjI2OC00LjUyOEM1LjMyNyA4LjkyNiA5LjI4MyA1IDE0LjE2NCA1IDE5LjA0NCA1IDIzIDguOTI2IDIzIDEzLjc2OHptLTguODM2LTcuMzcyYy00LjA5NyAwLTcuNDMgMy4zMDgtNy40MyA3LjM3MiAwIDEuNjEzLjUyNiAzLjEwNyAxLjQxNSA0LjMyMmwtLjkzIDIuNzM4IDIuODU2LS45MDhhNy40MjUgNy40MjUgMCAwIDAgNC4wODggMS4yMmM0LjA5NiAwIDcuNDMtMy4zMDcgNy40My03LjM3MiAwLTQuMDY0LTMuMzM0LTcuMzcyLTcuNDMtNy4zNzJ6bTQuNDYyIDkuMzljLS4wNTUtLjA4OC0uMi0uMTQyLS40MTUtLjI1LS4yMTYtLjEwNy0xLjI4Mi0uNjI3LTEuNDgtLjY5OC0uMi0uMDcyLS4zNDMtLjEwOC0uNDg3LjEwNy0uMTQ1LjIxNi0uNTYuNy0uNjg2Ljg0Mi0uMTI3LjE0NC0uMjUzLjE2Mi0uNDcuMDU0LS4yMTYtLjEwNi0uOTE0LS4zMzMtMS43NC0xLjA2NS0uNjQ1LS41Ny0xLjA4LTEuMjczLTEuMjA2LTEuNDg4LS4xMjYtLjIxNS0uMDEzLS4zMzIuMDk2LS40NC4wOTctLjA5NS4yMTYtLjI1LjMyNS0uMzc1LjExLS4xMjYuMTQ1LS4yMTUuMjE3LS4zNi4wNzMtLjE0Mi4wMzYtLjI2Ny0uMDE4LS4zNzUtLjA1NS0uMTA4LS40ODgtMS4xNjUtLjY3LTEuNTk1LS4xOC0uNDMtLjM2LS4zNi0uNDg2LS4zNi0uMTI3IDAtLjI3LS4wMTctLjQxNS0uMDE3YS44LjggMCAwIDAtLjU4LjI3Yy0uMTk3LjIxNC0uNzU3LjczNC0uNzU3IDEuNzkgMCAxLjA2Ljc3NiAyLjA4Ljg4NCAyLjIyNC4xMS4xNDIgMS40OTggMi4zODMgMy43IDMuMjQ0IDIuMjAzLjg2IDIuMjAzLjU3MyAyLjYuNTM3LjM5Ny0uMDM1IDEuMjgtLjUyIDEuNDYyLTEuMDIuMTgtLjUwMi4xOC0uOTMzLjEyNi0xLjAyM3oiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvc3ZnPgo=);
}
.ya-share2__item_copy .ya-share2__badge {
  background-color: rgba(0, 0, 0, 0.03);
}
.ya-share2__item_copy .ya-share2__icon {
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M4 2a1 1 0 001 1h7.5a.5.5 0 01.5.5v7.497a1 1 0 002 0V3.5A2.5 2.5 0 0012.5 1H5a1 1 0 00-1 1zM2.5 4h8A1.5 1.5 0 0112 5.5v8a1.5 1.5 0 01-1.5 1.5h-8A1.5 1.5 0 011 13.5v-8A1.5 1.5 0 012.5 4zM3 6v7h7V6H3z' fill='%23999'/%3E%3C/svg%3E");
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
}
.ya-share2__item_copy .ya-share2__input_copy {
  display: none;
}
@media (min-width: 480px) {
  .ya-share2__item_more {
    padding: 4px 16px 4px 8px;
  }
  .ya-share2__link_more > .ya-share2__title {
    display: inline-flex;
  }
}
.side-panel-one {
  display: grid;
  grid-gap: calc(var(--gap) * 2);
}
.side-panel-one__title {
  display: block;
  margin-bottom: var(--gap-small);
  font-size: var(--mid-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.side-panel-one__subtitle {
  display: block;
  margin-bottom: 6px;
  font-size: var(--name-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.side-panel-one__navigation:not(:last-child) {
  margin-bottom: calc(var(--gap) * 2);
}
.side-panel-one__item-wrapper {
  break-inside: avoid-column;
}
.side-panel-one__item-wrapper:not(:last-of-type) {
  margin-bottom: 6px;
}
.side-panel-one__item.is-parent {
  display: inline-grid;
  grid-template-columns: 1fr auto;
  grid-gap: 10px;
  align-items: start;
}
.side-panel-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;
  border-top-color: hsl(var(--ah), var(--as), calc(var(--al) - 35%));
  margin-top: 9px;
  transition: 0.2s ease;
  user-select: none;
  cursor: pointer;
}
.side-panel-one__icon.is-opened {
  transform: rotate(-90deg);
}
.side-panel-one__link {
  display: block;
  text-decoration: none;
  color: currentColor;
}
.side-panel-one__link > span {
  display: inline;
  padding-bottom: 3px;
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 87%;
  background-image: linear-gradient(to right, hsl(var(--ph), var(--ps), var(--pl)) 0%, hsl(var(--ph), var(--ps), var(--pl)) 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.45em;
  color: currentColor;
}
.side-panel-one__link > span:hover {
  background-size: 100% 2px;
}
.side-panel-one__link > span:focus {
  outline: none;
}
.side-panel-one__image {
  display: inline-block;
  margin-right: 8px;
  margin-bottom: -5px;
  border-radius: var(--border-radius-small);
}
.side-panel-one__list {
  display: none;
  margin-left: var(--gap);
}
.side-panel-one__list:not(:last-of-type) {
  margin-bottom: 3px;
}
.side-panel-one__list.is-opened {
  display: block;
  margin-top: 6px;
}
.side-panel-one__contacts {
  color: hsla(var(--th), var(--ts), var(--tl), 0.8);
}
.side-panel-one__contacts > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.side-panel-one__contact {
  display: flex;
}
.side-panel-one__contact > svg {
  flex-shrink: 0;
  display: block;
  margin-top: 2px;
  margin-right: var(--gap-small);
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 35%));
}
.side-panel-one__contact-value {
  line-height: 1.45em;
}
.side-panel-one__contact-value:is(a),
.side-panel-one__contact-value > a {
  color: currentColor;
  text-decoration: none;
  transition: 0.2s ease;
}
.side-panel-one__contact-value:is(a):hover,
.side-panel-one__contact-value > a:hover {
  opacity: 0.7;
}
@media (min-width: 768px) {
  .side-panel-one {
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
  }
}
.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__sticker {
  position: absolute;
  top: var(--gap-small);
  right: var(--gap-small);
  z-index: 1;
}
.sidebar-categories__title {
  display: flex;
  align-items: center;
  margin-bottom: var(--gap-small);
  font-size: 0.95em;
}
.sidebar-categories__title > svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  fill: hsl(var(--th), var(--ts), var(--tl));
  margin-right: var(--gap-small);
}
.sidebar-categories__tabs {
  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));
  overflow: hidden;
}
.sidebar-categories__tab:not(:last-of-type) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.sidebar-categories__tab-link {
  display: grid;
  grid-gap: 0.8rem;
  padding: 1rem;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: background-color 0.3s ease;
}
.sidebar-categories__tab-link.has-image {
  grid-template-columns: 25px 1fr;
}
.sidebar-categories__tab-link:hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.sidebar-categories__tab-link:focus {
  outline: none;
}
.sidebar-categories__image {
  display: flex;
  align-items: center;
}
.sidebar-categories__image img,
.sidebar-categories__image svg {
  display: block;
  width: 100%;
  height: auto;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.sidebar-categories__tab-name {
  display: flex;
  align-items: center;
  font-size: 0.95em;
}
.sidebar-categories__tab-value {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.sidebar-categories__badge {
  display: block;
  margin-left: 10px;
  padding: 3px 10px;
  border-radius: var(--border-radius-small);
  font-size: 13px;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.sidebar-contacts__title {
  margin-bottom: var(--gap-small);
  font-size: 0.95em;
  line-height: 1.45em;
}
.sidebar-contacts__wrapper {
  padding: 1rem;
  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));
  text-align: center;
}
.sidebar-contacts__wrapper > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.sidebar-contacts__phone {
  display: block;
  font-weight: 600;
  font-size: var(--name-font-size);
  text-decoration: none;
  transition: 0.25s ease;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.sidebar-contacts__phone:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.sidebar-contacts__text {
  display: block;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.sidebar-cta {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  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));
  text-align: center;
}
.sidebar-cta > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.sidebar-cta__title {
  font-size: var(--text-font-size);
  line-height: 1.45em;
}
.sidebar-cta__text {
  display: block;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.sidebar-faq__title {
  margin-bottom: var(--gap-small);
  font-size: 0.95em;
  line-height: 1.45em;
}
.sidebar-faq__list > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.sidebar-links__links {
  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));
}
.sidebar-links__item a {
  display: block;
  padding: 1rem;
  transition: 0.2s ease;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  font-size: 0.95em;
  line-height: 1.45em;
}
.sidebar-links__item a > span {
  transition: 0.2s ease;
  border-bottom: 1px dotted transparent;
}
.sidebar-links__item a:hover > span {
  border-color: hsl(0, 0%, 66%);
}
.sidebar-links__item:not(:last-child) {
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.sidebar-social.is-monochrome .sidebar-social__item > svg {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 20%));
}
.sidebar-social.is-monochrome .sidebar-social__item > svg > circle,
.sidebar-social.is-monochrome .sidebar-social__item > svg > path {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.sidebar-social__title {
  margin-bottom: var(--gap-small);
  font-size: 0.95em;
  line-height: 1.45em;
}
.sidebar-social__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--gap-small);
}
.sidebar-social__item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: var(--gap-small);
  align-items: center;
  padding: var(--gap-small);
  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));
  transition: 0.2s ease;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.sidebar-social__item:hover > span {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.sidebar-social__item:active {
  box-shadow: 0 0 0 0.2rem hsla(var(--ah), var(--as), var(--al), 0.6);
}
.sidebar-social__item > svg {
  display: block;
  width: 25px;
  height: 25px;
  border-radius: var(--border-radius-small);
  overflow: hidden;
}
.sidebar-social__item > span {
  line-height: 1.45em;
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  transition: 0.2s ease;
}
.sidebar-tags__title {
  margin-bottom: var(--gap-small);
  font-size: 0.95em;
  line-height: 1.45em;
}
.sidebar-tags__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * 6px);
  margin-right: calc(-0.5 * 6px);
  margin-left: calc(-0.5 * 6px);
}
.sidebar-tags__list.is-collapsed {
  position: relative;
  max-height: 80px;
  overflow: hidden;
}
.sidebar-tags__item-wrapper {
  flex: 0 0 auto;
  padding-right: calc(6px * 0.5);
  padding-left: calc(6px * 0.5);
  margin-top: 6px;
  box-sizing: border-box;
}
.sidebar-tags__item {
  position: relative;
  display: flex;
  max-width: 320px;
  padding: 6px 12px 6px 22px;
  margin: 1px;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  text-decoration: none;
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: 0.2s ease;
}
.sidebar-tags__item > span {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.sidebar-tags__item::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 8px;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.sidebar-tags__item:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.sidebar {
  display: flex;
  flex-direction: column;
}
.sidebar__item {
  max-width: 450px;
  width: 100%;
  margin: 0 auto;
}
.sidebar__item:not(:last-of-type) {
  margin-bottom: var(--gap);
}
.sidebar__frame {
  padding: 1rem;
  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: 320px;
  }
}
.slide-three {
  position: relative;
  border-radius: var(--border-radius-normal);
  overflow: hidden;
}
.slide-three__image-wrapper {
  position: relative;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  overflow: hidden;
  isolation: isolate;
}
.slide-three__image-wrapper.is-desktop {
  display: none;
}
.slide-three__image-wrapper.is-mobile {
  display: flex;
}
.slide-three__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  object-fit: cover;
}
.slide-three__image-mobile {
  top: 50% !important;
  transform: translateY(-50%);
}
.slide-three__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dim);
}
.slide-three__layout {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slide-three__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  box-sizing: border-box;
}
.slide-three__content.is-primary {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.slide-three__content.is-secondary {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.slide-three__content > :not(:last-child) {
  margin-bottom: var(--gap);
}
.slide-three__content.is-left {
  height: 100%;
}
.slide-three__content.is-left .slide-three__button-wrapper {
  margin-top: auto;
}
.slide-three__content.is-center .slide-three__text {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.slide-three__content.is-center .slide-three__title {
  text-align: center;
}
.slide-three__title {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  font-size: var(--title-font-size);
  line-height: 1.45em;
  font-weight: 700;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.slide-three__text {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  max-width: 600px;
  font-size: 0.95em;
  line-height: 1.45em;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
@media (min-width: 768px) {
  .slide-three__content {
    padding: 2rem;
  }
  .slide-three__title {
    -webkit-line-clamp: 2;
  }
  .slide-three__text {
    -webkit-line-clamp: 3;
    font-size: 1em;
  }
  .slide-three__image-wrapper.is-desktop {
    display: flex;
  }
  .slide-three__image-wrapper.is-mobile {
    display: none;
  }
}
@media (min-width: 1300px) {
  .slide-three__content {
    padding: 2rem 4rem;
  }
}
.slide-two__layout {
  position: relative;
  height: 100%;
}
.slide-two__layout.is-semitone {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 2%));
}
.slide-two__layout.is-primary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.slide-two__layout.is-secondary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.slide-two__image-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.slide-two__image-mobile,
.slide-two__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 0;
}
.slide-two__image-mobile {
  display: block;
}
.slide-two__image {
  display: none;
}
.slide-two__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
}
.slide-two__video {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.slide-two__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--dim);
}
.slide-two__container {
  height: 100%;
}
.slide-two__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-width: var(--frame-width);
  min-height: 500px;
  height: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
.slide-two__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: var(--frame-padding-mobile);
  padding-bottom: var(--frame-padding-mobile);
  box-sizing: border-box;
}
.slide-two__content.is-primary {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.slide-two__content.is-secondary {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.slide-two__text {
  display: block;
  max-width: 800px;
  margin-bottom: var(--gap);
  font-size: 0.95em;
  line-height: 1.45em;
}
.slide-two__image-additional {
  position: relative;
  display: block;
  max-width: 400px;
  margin: 0 auto;
}
.slide-two__image-additional.is-bottom {
  margin-top: auto;
}
.slide-two__image-additional.is-center {
  align-self: center;
  margin-bottom: 1rem;
}
.slide-two__image-additional img {
  display: block;
  max-width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .slide-two__text {
    font-size: 1em;
  }
  .slide-two__image-mobile {
    display: none;
  }
  .slide-two__image {
    display: block;
  }
}
@media (min-width: 992px) {
  .slide-two__layout.is-animated {
    border-radius: var(--border-radius-normal);
    transform-origin: center;
    transform: scale(0.85);
    transition: 0.25s ease;
    transition-delay: 0.25s;
    will-change: transform;
    overflow: hidden;
  }
  .slide-two.swiper-slide-active .slide-two__layout.is-animated {
    border-radius: 0;
    transform: scale(1);
  }
}
@media (max-width: 1199px) {
  .slide-two__content {
    min-height: unset !important;
  }
}
@media (min-width: 1200px) {
  .slide-two__wrapper {
    min-height: unset;
  }
  .slide-two__wrapper.is-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 2rem;
  }
  .slide-two__content {
    min-height: 500px;
  }
  .slide-two__image-additional {
    max-width: 500px;
  }
  .slide-two__image-additional.is-center {
    margin-bottom: unset;
  }
}
.social-one.is-secondary .social-one__item > svg {
  fill: hsl(var(--ah), var(--as), var(--al));
}
.social-one.is-secondary .social-one__item > svg > circle,
.social-one.is-secondary .social-one__item > svg > path {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.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;
  border-radius: var(--border-radius-small);
  overflow: hidden;
}
.social-one__item > svg {
  display: block;
  width: 30px;
  height: 30px;
}
.step-eight--gap {
  margin-bottom: var(--gap);
}
.step-eight > :not(:last-child) {
  margin-bottom: var(--gap);
}
.step-eight__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step-eight__icon .icon-set {
  width: 44px;
  height: 44px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.step-eight__icon > img {
  display: block;
  max-width: 44px;
  height: auto;
}
.step-eight__name {
  font-size: var(--name-font-size);
  font-weight: 600;
  line-height: 1.45em;
}
.step-eight__text {
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.step-five {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  text-decoration: none;
  color: currentColor;
  transition: background-color 0.3s ease 0s;
}
.step-five:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.step-five--gap {
  margin-bottom: var(--gap);
}
.step-five__wrapper {
  display: grid;
  grid-gap: var(--gap);
  align-items: center;
  width: 100%;
}
.step-five__wrapper.has-image {
  grid-template-columns: auto 1fr;
}
.step-five__wrapper.has-link {
  grid-template-columns: 1fr auto;
}
.step-five__wrapper.has-link.has-image {
  grid-template-columns: auto 1fr auto;
}
.step-five__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step-five__icon .icon-set {
  width: 32px;
  height: 32px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.step-five__icon > img {
  display: block;
  max-width: 32px;
  height: auto;
}
.step-five__name {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-height: 1.45em;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.step-five__link-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-five__link-arrow .icon-arrow-thin {
  display: block;
  width: 12px;
  height: 12px;
  fill: hsl(var(--th), var(--ts), var(--tl));
  transition: 0.3s ease 0s;
}
.step-five:hover .step-five__link-arrow .icon-arrow-thin {
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
@media (min-width: 992px) {
  .step-five {
    padding: 1.5rem;
  }
}
.step-seven {
  display: block;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
  text-decoration: none;
  color: currentColor;
}
.step-seven.is-primary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.step-seven.is-secondary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.step-seven.is-semitone {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.step-seven--gap {
  margin-bottom: var(--gap);
}
.step-seven__wrapper {
  display: grid;
  grid-gap: var(--gap-small);
  justify-content: center;
}
.step-seven__wrapper.has-image.is-reverse > div:nth-of-type(1) {
  order: 2;
}
.step-seven__wrapper.has-image.is-reverse > div:nth-of-type(2) {
  order: 1;
}
.step-seven__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step-seven__icon .icon-set {
  width: 44px;
  height: 44px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.step-seven__icon > img {
  display: block;
  max-width: 44px;
  height: auto;
}
.step-seven__name {
  display: block;
  line-height: 1.45em;
  text-align: center;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.step-six {
  display: block;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
  text-decoration: none;
  color: currentColor;
}
.step-six.is-primary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.step-six.is-secondary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.step-six.is-semitone {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.step-six--gap {
  margin-bottom: var(--gap);
}
.step-six__wrapper {
  display: grid;
  grid-gap: var(--gap);
  align-items: flex-start;
}
.step-six__wrapper.has-image.is-forward {
  grid-template-columns: auto 1fr;
}
.step-six__wrapper.has-image.is-reverse {
  grid-template-columns: 1fr auto;
  text-align: right;
}
.step-six__wrapper.has-image.is-reverse > div:nth-of-type(1) {
  order: 2;
}
.step-six__wrapper.has-image.is-reverse > div:nth-of-type(2) {
  order: 1;
}
.step-six__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.step-six__icon .icon-set {
  width: 44px;
  height: 44px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.step-six__icon > img {
  display: block;
  max-width: 44px;
  height: auto;
}
.step-six__name {
  display: block;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.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: hsla(var(--bh), var(--bs), var(--bl), 0.75);
  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: 1em;
}
.sticker-one__dropdown-wrapper {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.1s;
  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: 160;
}
.sticky-navigation.is-hidden {
  display: none;
}
.sticky-navigation__item {
  flex-shrink: 0;
  position: relative;
  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__item::before {
  position: absolute;
  top: 50%;
  content: '';
  display: block;
  height: 1px;
  width: 1px;
  border-radius: 50%;
  transition: 0.1s ease;
  transform-origin: center;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  opacity: 0;
  z-index: -1;
}
.sticky-navigation__item:focus {
  outline: none;
}
.sticky-navigation__item:active::before {
  transform: scale(100);
  opacity: 1;
}
.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(--ph), var(--ps), var(--pl));
}
.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: 600;
  word-break: keep-all;
}
.sticky-navigation__counter.is-active {
  display: flex;
}
.sticky-navigation__name {
  display: block;
  font-size: 13px;
}
@media (min-width: 768px) {
  .sticky-navigation {
    display: none;
  }
}
.stocks {
  display: inline-block;
  white-space: nowrap;
}
.stocks__item.is-hidden {
  display: none;
}
.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__wrapper {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
}
.stocks__wrapper.is-preorder .stocks__icon {
  background-color: hsl(44, 93%, 72%);
}
.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(148, 100%, 36%);
}
.stocks__wrapper.is-instock .stocks__icon svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.stocks__wrapper.is-few .stocks__icon {
  background-color: hsl(44, 93%, 72%);
}
.stocks__wrapper.is-few .stocks__icon svg {
  fill: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.stocks__wrapper.is-outofstock .stocks__icon {
  background-color: hsl(13, 100%, 63%);
}
.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%));
}
.stocks__storage-info {
  position: relative;
  display: flex;
  align-items: center;
  font-size: 0.95em;
  cursor: pointer;
}
.stocks__storage-info .icon-dots {
  display: block;
  margin-left: 8px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 30%));
}
.stocks__storage-info:hover .stocks__dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.stocks__dropdown-wrapper {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.1s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  top: 100%;
  right: -1rem;
  padding-top: var(--gap-small);
}
.stocks__dropdown {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  box-shadow: var(--shadow-soft);
  width: 240px;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
}
.stocks__dropdown::before {
  top: -5px;
  right: 1rem;
}
.stocks__dropdown > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.stocks__storage-name {
  display: block;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 50%));
  white-space: normal;
}
.swatch--gap {
  margin-bottom: var(--gap);
}
.swatch__inline-wrapper:not(:last-of-type) {
  margin-bottom: var(--gap);
}
.swatch__inline-wrapper.is-loading .swatch__color,
.swatch__inline-wrapper.is-loading .swatch__inline-item {
  opacity: 0.7;
}
.swatch__select-wrapper:not(:last-of-type) {
  margin-bottom: var(--gap-small);
}
.swatch__select-wrapper.is-loading .swatch__select {
  opacity: 0.7;
}
.swatch__title {
  display: block;
  margin-bottom: 1rem;
  font-size: var(--text-font-size);
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.swatch__current-value {
  color: hsl(var(--th), var(--ts), var(--tl));
  border-bottom: 1px dotted hsl(0, 0%, 66%);
}
.swatch__inline-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -8px;
}
.swatch__inline-list > * {
  margin-top: 8px;
  margin-right: 8px;
}
.swatch__inline-item {
  display: flex;
  padding: 6px 16px;
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-radius: var(--border-radius-small);
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  font-size: 15px;
  line-height: 1.45em;
  transition: 0.2s ease;
  user-select: none;
  cursor: pointer;
}
.swatch__inline-item:hover {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.swatch__inline-item.is-selected {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
}
.swatch__color {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  min-width: 40px;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  border: 4px solid hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: 0 0 0 1px hsl(var(--ah), var(--as), calc(var(--al) - 4%)), inset 0 0 4px rgba(0, 0, 0, 0.1);
  cursor: pointer;
}
.swatch__color.is-selected .core-check {
  display: block;
  animation: scale-in 0.2s linear forwards;
}
.swatch__color .core-check {
  display: none;
  width: 12px;
  height: 12px;
  fill: currentColor;
}
.swatch__select {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 400px;
  min-height: 2rem;
  max-height: 2rem;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  white-space: nowrap;
  font-size: 0.95em;
  outline: none;
  transition: 0.25s ease;
  overflow: hidden;
  cursor: pointer;
}
.swatch__select .icon-arrow-thin {
  position: absolute;
  right: 1rem;
  top: calc((2rem - 12px) / 2);
  display: block;
  width: 12px;
  height: 12px;
  fill: hsl(0, 0%, 66%);
  transform: rotate(90deg);
  transition: 0.25s ease;
}
.swatch__select input {
  display: none;
}
.swatch__select label {
  position: relative;
  display: block;
  height: 2rem;
  padding-left: 1rem;
  padding-right: 3rem;
  box-sizing: border-box;
  border-top: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  line-height: 2rem;
  transition: background-color 0.25s ease;
  overflow: hidden;
  text-overflow: ellipsis;
  user-select: none;
  cursor: pointer;
}
.swatch__select label:nth-child(2) {
  margin-top: 2rem;
  border-top: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.swatch__select input:checked + label {
  position: absolute;
  top: 0;
  display: block;
  width: 100%;
  border-top: none;
}
.swatch__select input:checked + label:nth-child(2) {
  margin-top: 0;
  position: relative;
}
.swatch__select.is-active {
  max-height: 15rem;
  padding: 0;
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  background: hsl(var(--bh), var(--bs), var(--bl));
  overflow-y: auto;
}
.swatch__select.is-active::-webkit-scrollbar {
  width: 0;
  height: 0;
}
.swatch__select.is-active label {
  border-top: 1px solid hsla(var(--ph), var(--ps), var(--pl), 0.2);
}
.swatch__select.is-active label:hover {
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
}
.swatch__select.is-active .icon-arrow-thin {
  transform: rotate(-90deg);
  transform-origin: center;
}
.swatch__radio-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.swatch__radio-wrapper > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.swatch__radio-item.is-loading {
  opacity: 0.7;
}
.tabs-one--gap {
  margin-bottom: var(--gap);
}
.tabs-one__list {
  display: flex;
  flex-wrap: wrap;
  margin-top: -10px;
}
.tabs-one__list > * {
  margin-top: 10px;
}
.tabs-one__tab {
  position: relative;
  display: block;
  width: 100%;
  padding: 5px 10px;
  border-radius: var(--border-radius-small);
  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%));
  text-align: center;
  transition: all 0.2s ease;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}
.tabs-one__tab:hover {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.tabs-one__tab:focus {
  outline: none;
}
.tabs-one__tab.is-active {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
@media (min-width: 768px) {
  .tabs-one__list.is-left {
    justify-content: flex-start;
  }
  .tabs-one__list.is-left > *:not(:last-of-type) {
    margin-right: var(--gap-small);
  }
  .tabs-one__list.is-right {
    justify-content: flex-end;
  }
  .tabs-one__list.is-right > *:not(:first-of-type) {
    margin-left: var(--gap-small);
  }
  .tabs-one__list.is-center {
    justify-content: center;
  }
  .tabs-one__list.is-center > *:not(:last-of-type) {
    margin-right: var(--gap-small);
  }
  .tabs-one__tab {
    width: auto;
    border-color: transparent;
    background-color: transparent;
  }
  .tabs-one__tab::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -5px;
    display: block;
    width: 10px;
    height: 10px;
    background: inherit;
    margin: auto;
    transform: rotate(45deg) translate3d(-12px, 0, 0);
    transition: transform 0.1s ease;
    z-index: -2;
  }
  .tabs-one__tab.is-active::before {
    transform: rotate(45deg);
  }
}
.tabs-two {
  display: flex;
}
.tabs-two--gap {
  margin-bottom: var(--gap);
}
.tabs-two__list {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  white-space: nowrap;
  width: 0;
}
.tabs-two__list.is-center {
  justify-content: center;
}
.tabs-two__list.is-right {
  justify-content: flex-end;
}
.tabs-two.is-initial {
  visibility: hidden;
  overflow: hidden;
}
.tabs-two__item {
  position: relative;
  display: inline-block;
}
.tabs-two__item.is-hidden {
  display: none;
}
.tabs-two__item:not(.is-hidden):nth-last-child(n + 2 of :not(.is-hidden)) {
  border-right: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.tabs-two__item:nth-last-child(1 of :not(.is-hidden)) > a {
  border-top-right-radius: var(--border-radius-small);
  border-bottom-right-radius: var(--border-radius-small);
}
.tabs-two__item:first-child .tabs-two__tab {
  border-top-left-radius: var(--border-radius-small);
  border-bottom-left-radius: var(--border-radius-small);
}
.tabs-two__item.is-active > a {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.tabs-two__item.is-active > a:hover {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.tabs-two__item > a {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 250px;
  min-width: 120px;
  height: 100%;
  padding: 12px 22px;
  box-sizing: border-box;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  transition: 0.2s ease;
  cursor: pointer;
}
.tabs-two__item > a:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.tabs-two__item > a:focus {
  outline: none;
}
.tabs-two__item > a > span {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.tabs-two__item > a .icon-dots {
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.tabs-two__more > a {
  min-width: unset;
}
.tabs-two__dropdown-wrapper {
  position: absolute;
  transition: transform 0.2s ease, opacity 0.3s ease, visibility 0s ease 0s;
  transition-delay: 0.1s;
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  z-index: 155;
  padding-top: var(--gap);
}
.tabs-two__dropdown-wrapper.is-bottom-start .tabs-two__dropdown::before {
  left: 2rem;
}
.tabs-two__dropdown-wrapper.is-bottom .tabs-two__dropdown::before {
  left: 50%;
}
.tabs-two__dropdown-wrapper.is-bottom-end .tabs-two__dropdown::before {
  right: 2rem;
}
.tabs-two__item:hover > .tabs-two__dropdown-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.tabs-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-soft);
  max-width: 400px;
  min-width: 160px;
  padding: 0.5rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
}
.tabs-two__dropdown::before {
  top: -5px;
}
.tabs-two__dropdown-item > a {
  display: flex;
  align-items: center;
  max-width: 300px;
  padding: 0.4rem 1rem 0.4rem 0.9rem;
  box-sizing: border-box;
  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);
  cursor: pointer;
  user-select: none;
}
.tabs-two__dropdown-item > a span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.tabs-two__dropdown-item > a:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.tabs-two__dropdown-item:not(:last-of-type) {
  margin-bottom: 2px;
}
.tabs-two__dropdown-item.is-active > a {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.teaser-one {
  position: relative;
  border: unset;
  background-color: unset;
  padding: unset;
  margin: unset;
  cursor: pointer;
  z-index: 1;
}
.teaser-one--gap {
  margin-bottom: var(--gap);
}
.teaser-one__icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.teaser-one__icon::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  border-radius: 50%;
  top: 0;
  animation-fill-mode: both;
  animation: rythmic-pulse 1.5s ease-in-out infinite;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.teaser-one__icon svg {
  display: block;
  width: 20px;
  height: 20px;
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.text {
  display: block;
}
.text--small {
  font-size: 0.9em;
  line-height: 1.65em;
}
.text--medium {
  font-size: 0.95em;
  line-height: 1.65em;
}
.text--large {
  font-size: 1.05em;
  line-height: 1.65em;
}
.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;
  }
}
.tile-one {
  display: block;
  max-width: 670px;
  border-radius: var(--border-radius-normal);
  text-decoration: none;
  overflow: hidden;
}
.tile-one.is-primary {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.tile-one.is-secondary {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.tile-one--gap {
  margin-bottom: var(--gap);
}
.tile-one__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--dim-reverse);
}
.tile-one__image-wrapper {
  position: relative;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-normal);
  overflow: hidden;
  isolation: isolate;
}
.tile-one__video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  pointer-events: none;
}
.tile-one__video {
  position: absolute;
  height: 100%;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.tile-one__image-container {
  display: flex;
  background-color: hsl(var(--ah), var(--as), var(--al));
  isolation: isolate;
}
.tile-one__image {
  display: block;
  width: 100%;
  height: auto;
  font-size: 0;
  border-radius: var(--border-radius-normal);
  object-fit: cover;
}
.tile-one__content {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  z-index: 1;
}
.tile-one__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  margin-top: -8px;
}
.tile-one__badges > div {
  margin-left: 8px;
  margin-top: 8px;
}
.tile-one__title {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-top: auto;
  font-size: var(--mid-font-size);
  font-weight: 700;
  line-height: 1.45em;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.tile-one__text {
  margin-top: var(--gap-small);
  line-height: 1.45em;
  font-size: 0.95em;
}
@media (min-width: 768px) {
  .tile-one__content {
    padding: 1.5rem;
  }
}
.timer-one {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: var(--border-radius-large);
  background-color: hsla(var(--th), var(--ts), var(--tl), 0.55);
}
.timer-one--gap {
  margin-bottom: var(--gap);
}
.timer-one__countdown {
  color: hsl(var(--bh), var(--bs), var(--bl));
  line-height: 18px;
  font-size: 18px;
}
.timer-one > svg {
  fill: hsl(var(--bh), var(--bs), var(--bl));
  margin-right: var(--gap-small);
}
.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 {
  color: 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;
  }
}
@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: absolute;
  display: block;
  padding: 8px 12px;
  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), calc(var(--al) - 8%));
  color: hsl(var(--th), var(--ts), var(--tl));
  font-size: 0.9em;
  white-space: nowrap;
  transition: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  visibility: hidden;
  opacity: 0;
  z-index: 155;
}
.tooltip-one::before {
  position: absolute;
  display: block;
  content: '';
  width: 8px;
  height: 8px;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-style: solid;
  border-width: 0;
}
.tooltip-one.is-top {
  bottom: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, 10px);
}
.tooltip-one.is-top::before {
  top: calc(100% - 4px);
  left: 50%;
  border-right-width: 1px;
  border-bottom-width: 1px;
  transform: translateX(-50%) rotate(45deg);
}
.tooltip-one.is-top-right {
  bottom: calc(100% + 12px);
  left: -8px;
  transform: translate(0, 10px);
}
.tooltip-one.is-top-right::before {
  top: calc(100% - 4px);
  left: 25px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  transform: translateX(-50%) rotate(45deg);
}
.tooltip-one.is-top-left {
  bottom: calc(100% + 12px);
  right: -8px;
  transform: translate(0, 10px);
}
.tooltip-one.is-top-left::before {
  top: calc(100% - 4px);
  right: 25px;
  border-right-width: 1px;
  border-bottom-width: 1px;
  transform: translateX(-50%) rotate(45deg);
}
.tooltip-one.is-bottom {
  top: calc(100% + 12px);
  left: 50%;
  transform: translate(-50%, 10px);
}
.tooltip-one.is-bottom::before {
  bottom: calc(100% - 4px);
  left: 50%;
  border-left-width: 1px;
  border-top-width: 1px;
  transform: translateX(-50%) rotate(45deg);
}
.tooltip-one.is-bottom-left {
  top: calc(100% + 12px);
  right: -8px;
  transform: translate(0, 10px);
}
.tooltip-one.is-bottom-left::before {
  bottom: calc(100% - 4px);
  right: 16px;
  border-left-width: 1px;
  border-top-width: 1px;
  transform: translateX(-50%) rotate(45deg);
}
.tooltip-one.is-bottom-right {
  top: calc(100% + 12px);
  left: -8px;
  transform: translate(0, 10px);
}
.tooltip-one.is-bottom-right::before {
  bottom: calc(100% - 4px);
  left: 16px;
  border-left-width: 1px;
  border-top-width: 1px;
  transform: translateX(-50%) rotate(45deg);
}
.tooltip-one.is-left {
  bottom: 50%;
  right: calc(100% + 12px);
  transform: translate(10px, 50%);
}
.tooltip-one.is-left::before {
  top: 50%;
  left: calc(100% - 4px);
  border-right-width: 1px;
  border-top-width: 1px;
  transform: translateY(-50%) rotate(45deg);
}
.tooltip-one.is-right {
  bottom: 50%;
  left: calc(100% + 12px);
  transform: translate(10px, 50%);
}
.tooltip-one.is-right::before {
  top: 50%;
  right: calc(100% - 4px);
  border-left-width: 1px;
  border-bottom-width: 1px;
  transform: translateY(-50%) rotate(45deg);
}
.tooltip-one--gap {
  margin-bottom: var(--gap);
}
.tooltip-one__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  pointer-events: auto;
}
.tooltip-one__trigger:hover .tooltip-one {
  visibility: visible;
  opacity: 1;
  transition-delay: 0.6s;
}
.tooltip-one__trigger:hover .tooltip-one.is-top {
  transform: translate(-50%, 0);
}
.tooltip-one__trigger:hover .tooltip-one.is-top-right {
  transform: translate(0, 0);
}
.tooltip-one__trigger:hover .tooltip-one.is-top-left {
  transform: translate(0, 0);
}
.tooltip-one__trigger:hover .tooltip-one.is-bottom {
  transform: translate(-50%, 0);
}
.tooltip-one__trigger:hover .tooltip-one.is-bottom-left {
  transform: translate(0, 0);
}
.tooltip-one__trigger:hover .tooltip-one.is-bottom-right {
  transform: translate(0, 0);
}
.tooltip-one__trigger:hover .tooltip-one.is-left {
  transform: translate(0, 50%);
}
.tooltip-one__trigger:hover .tooltip-one.is-right {
  transform: translate(0, 50%);
}
.top-bar {
  display: none;
  align-items: center;
  box-sizing: border-box;
  min-height: 50px;
  text-decoration: none;
  overflow: hidden;
}
.top-bar.is-mobile {
  display: flex;
}
.top-bar.is-primary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  color: hsl(var(--th), var(--ts), var(--tl));
}
.top-bar.is-secondary {
  background-color: hsl(var(--ih), var(--is), var(--il));
  border-bottom: 1px solid hsl(var(--ih), var(--is), calc(var(--il) + 10%));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.top-bar__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: var(--frame-width);
  width: 100%;
  margin: 0 auto;
  padding: var(--gap-small);
}
.top-bar__container {
  width: 100%;
  text-align: center;
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.top-bar__badge {
  display: inline-block;
  padding: 2px 10px;
  margin-right: 5px;
  border-radius: 4px;
  font-size: 14px;
}
.top-bar.is-primary .top-bar__badge {
  color: hsl(var(--ph), var(--ps), var(--pl));
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.2);
}
.top-bar.is-secondary .top-bar__badge {
  color: hsl(var(--bh), var(--bs), var(--bl));
  background-color: hsla(var(--bh), var(--bs), var(--bl), 0.2);
}
.top-bar__content {
  font-size: 0.95em;
  line-height: 1.45em;
}
.top-bar__content > a {
  text-decoration: none;
}
.top-bar__content > a:hover {
  text-decoration: underline;
}
.top-bar.is-primary .top-bar__content > a {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.top-bar.is-secondary .top-bar__content > a {
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.top-bar__close {
  flex-shrink: 0;
  justify-content: flex-end;
  margin-left: var(--gap-small);
}
@media (min-width: 992px) {
  .top-bar {
    display: flex;
  }
}
.video-one {
  display: flex;
  align-items: center;
  height: 36px;
  margin: 0;
  padding: 8px 16px;
  box-sizing: border-box;
  background-color: hsla(var(--th), var(--ts), var(--tl), 0.55);
  border-radius: 36px;
  color: hsl(var(--bh), var(--bs), var(--bl));
  transition: background-color 0.3s ease;
  user-select: none;
  cursor: pointer;
}
.video-one:hover {
  background-color: hsla(var(--th), var(--ts), var(--tl), 0.75);
}
.video-one--gap {
  margin-bottom: var(--gap);
}
.video-one .icon-play-alter {
  display: block;
  margin-right: 8px;
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.video-one__text {
  font-size: 0.95em;
  line-height: 1.45em;
}
.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.5rem 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(--ah), var(--as), calc(var(--al) - 8%));
}
.wa-captcha-input:focus {
  outline: none;
  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%));
}
.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(13, 100%, 63%);
  box-shadow: 0 0 1px 1px hsl(13, 100%, 63%);
}
.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;
  }
}
.wa-order-dialog .wa-dialog-body {
  border-radius: var(--border-radius-normal) !important;
  font-size: initial;
  overflow: hidden;
}
.wa-order-dialog .wa-dialog-body .wa-dialog-header {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.wa-order-dialog .wa-dialog-body .wa-dialog-header .wa-header {
  font-size: var(--subtitle-font-size) !important;
  font-weight: 600 !important;
}
.wa-order-dialog .wa-dialog-body .wa-section-header a {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.wa-order-dialog .wa-dialog-body .wa-section-header a:focus {
  outline: none;
}
.wa-order-dialog .wa-dialog-body .wa-dialog-footer {
  display: grid;
  grid-template-columns: auto auto;
  justify-content: flex-start;
  grid-gap: var(--gap-small);
}
.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button {
  margin-right: unset !important;
}
.wa-order-dialog .wa-dialog-body .wa-request-onetime-password-button-wrapper button,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='submit'],
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='submit'],
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='submit'],
.wa-order-dialog .wa-dialog-body input.wa-button,
.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:last-child {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 360px;
  min-height: 36px;
  padding: 8px 16px;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  line-height: 1.45em;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  user-select: none;
  transition: background-color 0.1s ease;
  overflow: hidden;
  cursor: pointer;
  color: hsl(var(--bh), var(--bs), var(--bl));
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  border: unset;
}
.wa-order-dialog .wa-dialog-body .wa-request-onetime-password-button-wrapper button:focus,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='submit']:focus,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='submit']:focus,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='submit']:focus,
.wa-order-dialog .wa-dialog-body input.wa-button:focus,
.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:last-child:focus,
.wa-order-dialog .wa-dialog-body .wa-request-onetime-password-button-wrapper button:active,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='submit']:active,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='submit']:active,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='submit']:active,
.wa-order-dialog .wa-dialog-body input.wa-button:active,
.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:last-child:active,
.wa-order-dialog .wa-dialog-body .wa-request-onetime-password-button-wrapper button:hover,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='submit']:hover,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='submit']:hover,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='submit']:hover,
.wa-order-dialog .wa-dialog-body input.wa-button:hover,
.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:last-child:hover {
  outline: none;
}
.wa-order-dialog .wa-dialog-body .wa-request-onetime-password-button-wrapper button:hover,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='submit']:hover,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='submit']:hover,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='submit']:hover,
.wa-order-dialog .wa-dialog-body input.wa-button:hover,
.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:last-child:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 6%));
}
.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:not(:last-child) {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 360px;
  min-height: 36px;
  padding: 8px 16px;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  line-height: 1.45em;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  user-select: none;
  transition: background-color 0.1s ease;
  overflow: hidden;
  cursor: pointer;
  color: hsl(var(--th), var(--ts), var(--tl));
  background-color: transparent;
  border: 2px solid hsl(var(--th), var(--ts), var(--tl));
}
.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:not(:last-child):focus,
.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:not(:last-child):active,
.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:not(:last-child):hover {
  outline: none;
}
.wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button:not(:last-child):hover {
  background-color: transparent;
}
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-captcha-section .wa-captcha-code,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-captcha-section .wa-captcha-code,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-captcha-section .wa-captcha-code {
  margin-top: unset;
}
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-field-terms-accepted a,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-field-terms-accepted a,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-field-terms-accepted a,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-login-url a,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-login-url a,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-login-url a,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-signup-url a,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-signup-url a,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-signup-url a,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-login-forgotpassword-url,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-login-forgotpassword-url,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-login-forgotpassword-url {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-field-terms-accepted a:focus,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-field-terms-accepted a:focus,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-field-terms-accepted a:focus,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-login-url a:focus,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-login-url a:focus,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-login-url a:focus,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-signup-url a:focus,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-signup-url a:focus,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-signup-url a:focus,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-login-forgotpassword-url:focus,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-login-forgotpassword-url:focus,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-login-forgotpassword-url:focus {
  outline: none;
}
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper .wa-login-forgotpassword-url,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper .wa-login-forgotpassword-url,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper .wa-login-forgotpassword-url {
  margin-top: var(--gap-small);
}
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-button {
  margin-top: var(--gap-small);
}
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='text'],
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='text'],
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='text'],
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='email'],
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='email'],
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='email'],
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='password'],
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='password'],
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='password'],
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper textarea,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper textarea,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper textarea,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper select,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper select,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper select {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.2rem 0.8rem;
  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), calc(var(--tl) + 20%));
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='text']:hover:focus,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='text']:hover:focus,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='text']:hover:focus,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='email']:hover:focus,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='email']:hover:focus,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='email']:hover:focus,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='password']:hover:focus,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='password']:hover:focus,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='password']:hover:focus,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper textarea:hover:focus,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper textarea:hover:focus,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper textarea:hover:focus,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper select:hover:focus,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper select:hover:focus,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper select:hover:focus {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='text']:focus,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='text']:focus,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='text']:focus,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='email']:focus,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='email']:focus,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='email']:focus,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='password']:focus,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='password']:focus,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='password']:focus,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper textarea:focus,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper textarea:focus,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper textarea:focus,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper select:focus,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper select:focus,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper select:focus {
  outline: none;
  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%));
}
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='text']:disabled,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='text']:disabled,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='text']:disabled,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='email']:disabled,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='email']:disabled,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='email']:disabled,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='password']:disabled,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='password']:disabled,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='password']:disabled,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper textarea:disabled,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper textarea:disabled,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper textarea:disabled,
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper select:disabled,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper select:disabled,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper select:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper select,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper select,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper select {
  padding-right: 40px;
  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.6em auto, 100%;
}
.wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper select::-ms-expand,
.wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper select::-ms-expand,
.wa-order-dialog .wa-dialog-body .wa-login-form-wrapper select::-ms-expand {
  display: none;
}
.wa-order-dialog .wa-dialog-body .wa-info-messages {
  line-height: 1.45em;
}
@media (min-width: 768px) {
  .wa-order-dialog .wa-dialog-body .wa-request-onetime-password-button-wrapper button,
  .wa-order-dialog .wa-dialog-body .wa-forgotpassword-form-wrapper input[type='submit'],
  .wa-order-dialog .wa-dialog-body .wa-signup-form-wrapper input[type='submit'],
  .wa-order-dialog .wa-dialog-body .wa-login-form-wrapper input[type='submit'],
  .wa-order-dialog .wa-dialog-body input.wa-button,
  .wa-order-dialog .wa-dialog-body .wa-dialog-footer .wa-button {
    min-height: 40px;
  }
}
.wa-forms {
  /* Fields */
  /* Buttons */
  /* Avatar */
  /* Wrappers */
  /* Terms */
}
.wa-forms--roboto .wa-done-signup-button,
.wa-forms--roboto .wa-app-url-link,
.wa-forms--roboto .wa-request-onetime-password-button,
.wa-forms--roboto .wa-forgotpassword-button input[type='submit'],
.wa-forms--roboto .wa-buttons-wrapper input[type='submit'] {
  font-family: 'roboto', sans-serif;
}
.wa-forms--sfpro .wa-done-signup-button,
.wa-forms--sfpro .wa-app-url-link,
.wa-forms--sfpro .wa-request-onetime-password-button,
.wa-forms--sfpro .wa-forgotpassword-button input[type='submit'],
.wa-forms--sfpro .wa-buttons-wrapper input[type='submit'] {
  font-family: 'sfpro', sans-serif;
}
.wa-forms--open-sans .wa-done-signup-button,
.wa-forms--open-sans .wa-app-url-link,
.wa-forms--open-sans .wa-request-onetime-password-button,
.wa-forms--open-sans .wa-forgotpassword-button input[type='submit'],
.wa-forms--open-sans .wa-buttons-wrapper input[type='submit'] {
  font-family: 'open-sans', sans-serif;
}
.wa-forms--philosopher .wa-name {
  font-family: 'philosopher', sans-serif;
}
.wa-forms--nunito .wa-name {
  font-family: 'nunito', sans-serif;
}
.wa-forms--jost .wa-name {
  font-family: 'jost', sans-serif;
}
.wa-forms--charis-sil .wa-name {
  font-family: 'charis-sil', sans-serif;
}
.wa-forms--gilroy .wa-name {
  font-family: 'gilroy', sans-serif;
}
.wa-forms--scada .wa-name {
  font-family: 'scada', sans-serif;
}
.wa-forms .wa-field:not(:last-of-type) {
  margin-bottom: 15px;
}
.wa-forms .wa-field .field {
  display: block;
}
.wa-forms .wa-field.wa-required .wa-name::after,
.wa-forms .wa-field .field.wa-required .wa-forms span::after {
  content: ' *';
  color: hsl(13, 100%, 63%);
}
.wa-forms .wa-field .field:not(:last-of-type) {
  margin-bottom: 15px;
}
.wa-forms .wa-field .field span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.95em;
  line-height: 1.45em;
}
.wa-forms .wa-field .hint {
  display: block;
  margin-bottom: 5px;
  font-size: 0.95em;
}
.wa-forms .wa-field .wa-name {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 0.95em;
}
.wa-forms--grid .wa-field {
  display: grid;
  max-width: 700px;
}
.wa-forms .wa-field .wa-value input[type='text']:not([name='captcha']),
.wa-forms .wa-field .wa-value input[type='password']:not([name='captcha']) {
  display: inline-block;
  min-height: 42px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.5rem 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;
}
.wa-forms .wa-field .wa-value input[type='text']:not([name='captcha']):hover:not(:disabled):not(:focus),
.wa-forms .wa-field .wa-value input[type='password']:not([name='captcha']):hover:not(:disabled):not(:focus) {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.wa-forms .wa-field .wa-value input[type='text']:not([name='captcha']):hover:focus,
.wa-forms .wa-field .wa-value input[type='password']:not([name='captcha']):hover:focus {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.wa-forms .wa-field .wa-value input[type='text']:not([name='captcha']):focus,
.wa-forms .wa-field .wa-value input[type='password']:not([name='captcha']):focus {
  outline: none;
  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%));
}
.wa-forms .wa-field .wa-value input[type='text']:not([name='captcha']):disabled,
.wa-forms .wa-field .wa-value input[type='password']:not([name='captcha']):disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.wa-forms .wa-field .wa-value input[type='text']:not([name='captcha']).is-error,
.wa-forms .wa-field .wa-value input[type='password']:not([name='captcha']).is-error,
.wa-forms .wa-field .wa-value input[type='text']:not([name='captcha']).error:hover,
.wa-forms .wa-field .wa-value input[type='password']:not([name='captcha']).error:hover,
.wa-forms .wa-field .wa-value input[type='text']:not([name='captcha']).error:focus,
.wa-forms .wa-field .wa-value input[type='password']:not([name='captcha']).error:focus,
.wa-forms .wa-field .wa-value input[type='text']:not([name='captcha']).error,
.wa-forms .wa-field .wa-value input[type='password']:not([name='captcha']).error,
.wa-forms .wa-field .wa-value input[type='text']:not([name='captcha']).wa-error,
.wa-forms .wa-field .wa-value input[type='password']:not([name='captcha']).wa-error {
  border-color: hsl(13, 100%, 63%);
  box-shadow: 0 0 1px 1px hsl(13, 100%, 63%);
}
.wa-forms .wa-field .wa-value input[type='text']:not([name='captcha'])::-webkit-input-placeholder,
.wa-forms .wa-field .wa-value input[type='password']:not([name='captcha'])::-webkit-input-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.wa-forms .wa-field .wa-value input[type='text']:not([name='captcha']):-moz-placeholder,
.wa-forms .wa-field .wa-value input[type='password']:not([name='captcha']):-moz-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.wa-forms .wa-field .wa-value input[type='text'][name='profile[birthday][year]'],
.wa-forms .wa-field .wa-value input[type='password'][name='profile[birthday][year]'],
.wa-forms .wa-field .wa-value input[type='text'][name='data[birthday][year]'],
.wa-forms .wa-field .wa-value input[type='password'][name='data[birthday][year]'],
.wa-forms .wa-field .wa-value input[type='text'][name='customer[birthday][year]'],
.wa-forms .wa-field .wa-value input[type='password'][name='customer[birthday][year]'] {
  width: 33.33% !important;
}
.wa-forms .wa-field .wa-value select {
  display: inline-block;
  min-height: 42px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.5rem 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;
  padding-right: 40px;
  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.6em auto, 100%;
}
.wa-forms .wa-field .wa-value select:hover:not(:disabled):not(:focus) {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.wa-forms .wa-field .wa-value select:hover:focus {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.wa-forms .wa-field .wa-value select:focus {
  outline: none;
  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%));
}
.wa-forms .wa-field .wa-value select:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.wa-forms .wa-field .wa-value select.is-error,
.wa-forms .wa-field .wa-value select.error:hover,
.wa-forms .wa-field .wa-value select.error:focus,
.wa-forms .wa-field .wa-value select.error,
.wa-forms .wa-field .wa-value select.wa-error {
  border-color: hsl(13, 100%, 63%);
  box-shadow: 0 0 1px 1px hsl(13, 100%, 63%);
}
.wa-forms .wa-field .wa-value select::-webkit-input-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.wa-forms .wa-field .wa-value select:-moz-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.wa-forms .wa-field .wa-value select::-ms-expand {
  display: none;
}
.wa-forms .wa-field .wa-value select[name='profile[birthday][day]'],
.wa-forms .wa-field .wa-value select[name='profile[birthday][month]'],
.wa-forms .wa-field .wa-value select[name='data[birthday][day]'],
.wa-forms .wa-field .wa-value select[name='data[birthday][month]'],
.wa-forms .wa-field .wa-value select[name='customer[birthday][day]'],
.wa-forms .wa-field .wa-value select[name='customer[birthday][month]'] {
  margin-bottom: 15px;
}
.wa-forms .wa-field .wa-value textarea {
  display: inline-block;
  min-height: 42px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.5rem 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;
}
.wa-forms .wa-field .wa-value textarea:hover:not(:disabled):not(:focus) {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.wa-forms .wa-field .wa-value textarea:hover:focus {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.wa-forms .wa-field .wa-value textarea:focus {
  outline: none;
  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%));
}
.wa-forms .wa-field .wa-value textarea:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.wa-forms .wa-field .wa-value textarea.is-error,
.wa-forms .wa-field .wa-value textarea.error:hover,
.wa-forms .wa-field .wa-value textarea.error:focus,
.wa-forms .wa-field .wa-value textarea.error,
.wa-forms .wa-field .wa-value textarea.wa-error {
  border-color: hsl(13, 100%, 63%);
  box-shadow: 0 0 1px 1px hsl(13, 100%, 63%);
}
.wa-forms .wa-field .wa-value textarea::-webkit-input-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.wa-forms .wa-field .wa-value textarea:-moz-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.wa-forms .wa-field .wa-value a {
  text-decoration: underline;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
  font-size: 0.95em;
}
.wa-forms .wa-field .wa-value .wa-error-msg,
.wa-forms .wa-field .wa-value .errormsg {
  display: block;
  margin-top: 5px;
  font-size: 0.85em;
  line-height: 1.45em;
  font-style: normal;
  color: hsl(13, 100%, 63%);
}
.wa-forms .wa-field .wa-value .radio:not(:last-of-type) {
  margin-right: var(--gap-small);
}
.wa-forms .wa-uncaught-errors .wa-error-msg {
  display: block;
  margin-top: 5px;
  font-size: 0.85em;
  line-height: 1.45em;
  font-style: normal;
  color: hsl(13, 100%, 63%);
}
.wa-forms .wa-field-password.is-hidden,
.wa-forms .wa-field-address.is-hidden {
  display: none;
}
.wa-forms .wa-field-phone .wa-value > :not(:last-child) {
  margin-bottom: 15px;
}
.wa-forms .wa-info-messages {
  margin-bottom: var(--gap-small);
  text-align: center;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  font-size: 0.95em;
  line-height: 1.45em;
}
.wa-forms .wa-done-signup-button,
.wa-forms .wa-app-url-link,
.wa-forms .wa-request-onetime-password-button,
.wa-forms .wa-forgotpassword-button input[type='submit'],
.wa-forms .wa-buttons-wrapper input[type='submit'] {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 200px;
  min-height: 42px;
  padding: 8px 16px;
  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: 1em;
  line-height: 1.45em;
  user-select: none;
  cursor: pointer;
}
.wa-forms .wa-done-signup-button:hover,
.wa-forms .wa-app-url-link:hover,
.wa-forms .wa-request-onetime-password-button:hover,
.wa-forms .wa-forgotpassword-button input[type='submit']:hover,
.wa-forms .wa-buttons-wrapper input[type='submit']:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 6%));
  transition: background-color 0.25s ease;
}
.wa-forms .wa-done-signup-buttons-wrapper {
  margin-top: 20px;
}
.wa-forms .wa-request-onetime-password-button-wrapper,
.wa-forms .wa-buttons-wrapper {
  margin-bottom: 15px;
  margin-top: 15px;
}
.wa-forms .wa-onetime-password-input-message {
  margin-top: 5px;
}
.wa-forms .wa-forgotpassword-button {
  margin-top: 20px;
}
.wa-forms .wa-signup-form-email-confirmed-block p:not(:last-of-type) {
  margin-bottom: 10px;
}
.wa-forms .drop-zone {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.wa-forms .drop-zone:hover {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.wa-forms .wa-field-photo .wa-value {
  display: grid;
  grid-gap: 15px;
  margin-top: 10px;
}
.wa-forms .wa-field-photo .wa-value svg,
.wa-forms .wa-field-photo .wa-value img {
  display: block;
  width: 100%;
  max-width: 90px;
  height: auto;
  overflow: hidden;
  border-radius: 50%;
}
.wa-forms .wa-field-photo .wa-value svg {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.wa-forms .wa-set-password-form-wrapper,
.wa-forms .wa-forgotpassword-form-wrapper,
.wa-forms .wa-login-form-wrapper,
.wa-forms .wa-signup-form-wrapper {
  display: block;
  width: 100%;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
.wa-forms .wa-section-header {
  margin: 0 auto 10px;
}
.wa-forms .wa-section-divider {
  margin: 0 auto 20px;
}
.wa-forms .wa-section-header,
.wa-forms .wa-section-divider {
  position: relative;
  display: block;
  text-align: center;
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.wa-forms .wa-section-header::after,
.wa-forms .wa-section-divider::after,
.wa-forms .wa-section-header::before,
.wa-forms .wa-section-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 1px;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.wa-forms .wa-section-header::after,
.wa-forms .wa-section-divider::after {
  left: calc(100% + 1rem);
}
.wa-forms .wa-section-header::before,
.wa-forms .wa-section-divider::before {
  right: calc(100% + 1rem);
}
.wa-forms .wa-send-again-onetime-password-link,
.wa-forms .wa-send-onetime-password-edit-link,
.wa-forms .wa-login-forgotpassword-url,
.wa-forms .wa-signup-url a,
.wa-forms .wa-login-url a,
.wa-forms .wa-field-terms-accepted a {
  color: hsl(var(--ph), var(--ps), var(--pl));
  text-decoration: none;
}
.wa-forms .wa-login-url {
  margin-top: 15px;
}
.wa-forms .wa-send-again-onetime-password-link,
.wa-forms .wa-send-onetime-password-edit-link,
.wa-forms .wa-login-forgotpassword-url {
  display: inline-block;
  margin-top: 5px;
}
.wa-forms .wa-send-again-onetime-password-link:focus,
.wa-forms .wa-send-onetime-password-edit-link:focus,
.wa-forms .wa-login-forgotpassword-url:focus {
  outline: none;
}
.wa-forms .wa-info-msg {
  text-align: center;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  font-size: 0.95em;
  line-height: 1.45em;
}
@media (min-width: 768px) {
  .wa-forms--grid .wa-field:not(.wa-field-terms-accepted) {
    grid-template-columns: 160px 1fr;
    grid-gap: 1rem;
  }
  .wa-forms .wa-field-photo .wa-value {
    margin-top: unset;
  }
  .wa-forms .wa-field .wa-value input[type='text']:not([name='captcha']),
  .wa-forms .wa-field .wa-value input[type='password']:not([name='captcha']) {
    min-height: 46px;
  }
  .wa-forms .wa-field select,
  .wa-forms .wa-field textarea {
    min-height: 46px;
  }
}
.wa-order {
  /* FONTS */
  /* ORDER */
}
.wa-order .wa-order-form-wrapper,
.wa-order .wa-order-cart-wrapper {
  font-size: initial;
  line-height: 1.45em;
}
.wa-order.is-philosopher .wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-contact-name,
.wa-order.is-philosopher .wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-header {
  font-family: 'philosopher', sans-serif;
}
.wa-order.is-nunito .wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-contact-name,
.wa-order.is-nunito .wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-header {
  font-family: 'nunito', sans-serif;
}
.wa-order.is-jost .wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-contact-name,
.wa-order.is-jost .wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-header {
  font-family: 'jost', sans-serif;
}
.wa-order.is-charis-sil .wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-contact-name,
.wa-order.is-charis-sil .wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-header {
  font-family: 'charis-sil', sans-serif;
}
.wa-order.is-gilroy .wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-contact-name,
.wa-order.is-gilroy .wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-header {
  font-family: 'gilroy', sans-serif;
}
.wa-order.is-scada .wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-contact-name,
.wa-order.is-scada .wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-header {
  font-family: 'scada', sans-serif;
}
.wa-order .wa-order-cart-wrapper {
  /* CART ITEM */
  /* CART DETAILS */
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product {
  padding: var(--gap) 0;
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 2%));
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body > * {
  display: block;
  padding-right: unset;
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body > .wa-column-image {
  flex-shrink: 0;
  width: 80px;
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body > .wa-column-details {
  width: 100%;
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body > .wa-column-price {
  flex-shrink: 0;
  width: 100px;
  margin-left: auto;
  align-self: center;
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body .wa-quantity-cart-section {
  margin-top: var(--gap);
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-image-section img {
  border-radius: var(--border-radius-small);
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-details .wa-name {
  display: inline;
  padding-bottom: 3px;
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 87%;
  background-image: linear-gradient(to right, hsl(var(--ph), var(--ps), var(--pl)) 0%, hsl(var(--ph), var(--ps), var(--pl)) 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.45em;
  color: currentColor;
  margin-right: unset;
  font-size: initial;
  font-weight: 400;
  color: hsl(var(--ph), var(--ps), var(--pl));
  text-decoration: none;
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-details .wa-name:hover {
  background-size: 100% 2px;
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-details .wa-name:focus {
  outline: none;
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-details .wa-sku {
  font-size: initial;
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services {
  margin-top: var(--gap-small);
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service {
  margin-top: 5px;
  line-height: 1.45em;
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service .wa-label {
  padding-left: 1.5rem;
  font-size: 0.95em;
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service .wa-variant {
  margin-left: 1.5rem;
  margin-top: 5px;
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service .wa-variant select {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.2rem 0.8rem;
  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), calc(var(--tl) + 20%));
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  padding-right: 40px;
  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.6em auto, 100%;
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service .wa-variant select:hover:focus {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service .wa-variant select:focus {
  outline: none;
  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%));
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service .wa-variant select:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-services .wa-service .wa-variant select::-ms-expand {
  display: none;
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-details-section .wa-details .wa-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--gap-small);
  margin-top: 5px;
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-actions .wa-action {
  display: flex;
  align-items: center;
  margin-right: unset;
  font-size: 0.9em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-actions .wa-action .wa-icon {
  margin-right: 3px;
}
.wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-price-section .wa-price-total {
  font-size: 1em;
  line-height: 1.45em;
  font-weight: 600;
}
.wa-order .wa-order-cart-wrapper .wa-cart-details {
  display: grid;
  grid-gap: 1rem;
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 360px;
  min-height: 36px;
  padding: 8px 16px;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  line-height: 1.45em;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  user-select: none;
  transition: background-color 0.1s ease;
  overflow: hidden;
  cursor: pointer;
  color: hsl(var(--bh), var(--bs), var(--bl));
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  border: unset;
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-button:focus,
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-button:active,
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-button:hover {
  outline: none;
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-button:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 6%));
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-bonus-details .wa-details {
  margin-bottom: var(--gap-small);
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-bonus-details .wa-active-state .wa-text {
  display: inline-block;
  margin-bottom: var(--gap-small);
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-order-bonus {
  margin-top: var(--gap-small);
  line-height: 1.45em;
  font-size: 0.95em;
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-column-price {
  width: 100%;
  text-align: left;
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-price-section .wa-price-discount {
  margin-bottom: var(--gap-small);
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-price-section .wa-price-total {
  margin: unset;
  font-size: 1.1em;
  line-height: 1.45em;
  font-weight: 600;
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-column-price > * {
  margin-top: var(--gap-small);
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-inactive-state {
  display: flex;
  width: 100%;
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-input {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.2rem 0.8rem;
  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), calc(var(--tl) + 20%));
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-input:hover:focus {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-input:focus {
  outline: none;
  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%));
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-input:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-button {
  flex-shrink: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 360px;
  min-height: 36px;
  padding: 8px 16px;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  line-height: 1.45em;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  user-select: none;
  transition: background-color 0.1s ease;
  overflow: hidden;
  cursor: pointer;
  color: hsl(var(--bh), var(--bs), var(--bl));
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  border: unset;
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-button:focus,
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-button:active,
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-button:hover {
  outline: none;
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-button:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 6%));
}
.wa-order .wa-order-cart-wrapper .wa-cart-details .wa-coupon-section .wa-text {
  display: inline-block;
  margin-bottom: var(--gap-small);
}
.wa-order .wa-order-form-wrapper {
  /* CONFIRM */
  /* FOOTER */
}
.wa-order .wa-order-form-wrapper .wa-step-section {
  margin-top: var(--gap-extended);
}
.wa-order .wa-order-form-wrapper .wa-step-section > .wa-section-header {
  margin-bottom: var(--gap);
}
.wa-order .wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-header,
.wa-order .wa-order-form-wrapper .wa-step-section > .wa-section-header > .wa-contact-name {
  font-size: var(--name-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.wa-order .wa-order-form-wrapper .wa-step-section > .wa-section-header .wa-login-link,
.wa-order .wa-order-form-wrapper .wa-step-section > .wa-section-header .wa-logout-link {
  text-decoration: none;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
  font-size: 0.9em;
  line-height: 1.45em;
}
.wa-order .wa-order-form-wrapper .wa-step-section .wa-payment-name a,
.wa-order .wa-order-form-wrapper .wa-step-section .wa-type-wrapper .wa-name a {
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.wa-order .wa-order-form-wrapper .wa-step-shipping-section .wa-delivery-variants-section > .wa-header {
  font-size: 0.9em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-input {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.2rem 0.8rem;
  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), calc(var(--tl) + 20%));
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-input:hover:focus {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-input:focus {
  outline: none;
  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%));
}
.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-input:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-select {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.2rem 0.8rem;
  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), calc(var(--tl) + 20%));
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  padding-right: 40px;
  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.6em auto, 100%;
}
.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-select:hover:focus {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-select:focus {
  outline: none;
  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%));
}
.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-select:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-select::-ms-expand {
  display: none;
}
.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-label {
  font-size: 0.9em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.wa-order .wa-order-form-wrapper .wa-dropdown > .wa-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.2rem 0.8rem;
  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), calc(var(--tl) + 20%));
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.wa-order .wa-order-form-wrapper .wa-dropdown > .wa-dropdown-toggle:hover:focus {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.wa-order .wa-order-form-wrapper .wa-dropdown > .wa-dropdown-toggle:focus {
  outline: none;
  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%));
}
.wa-order .wa-order-form-wrapper .wa-dropdown > .wa-dropdown-toggle:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-textarea {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.2rem 0.8rem;
  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), calc(var(--tl) + 20%));
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}
.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-textarea:hover:focus {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-textarea:focus {
  outline: none;
  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%));
}
.wa-order .wa-order-form-wrapper .wa-field-wrapper .wa-textarea:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.wa-order .wa-order-form-wrapper .wa-step-confirm-section {
  padding-top: var(--gap);
}
.wa-order .wa-order-form-wrapper .wa-step-confirm-section .wa-link {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.wa-order .wa-order-form-wrapper .wa-step-confirm-section .wa-section-body .wa-actions-section .wa-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 360px;
  min-height: 36px;
  padding: 8px 16px;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  line-height: 1.45em;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  user-select: none;
  transition: background-color 0.1s ease;
  overflow: hidden;
  cursor: pointer;
  color: hsl(var(--bh), var(--bs), var(--bl));
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  border: unset;
}
.wa-order .wa-order-form-wrapper .wa-step-confirm-section .wa-section-body .wa-actions-section .wa-button:focus,
.wa-order .wa-order-form-wrapper .wa-step-confirm-section .wa-section-body .wa-actions-section .wa-button:active,
.wa-order .wa-order-form-wrapper .wa-step-confirm-section .wa-section-body .wa-actions-section .wa-button:hover {
  outline: none;
}
.wa-order .wa-order-form-wrapper .wa-step-confirm-section .wa-section-body .wa-actions-section .wa-button:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 6%));
}
.wa-order .wa-order-form-wrapper .wa-step-confirm-section .wa-section-body .wa-total-section .wa-item.wa-item-total .wa-value .wa-price {
  font-size: 1.2em;
  line-height: 1.45em;
  font-weight: 600;
}
.wa-order .wa-order-form-wrapper .wa-form-footer {
  margin-top: var(--gap);
}
.wa-order .wa-order-form-wrapper .wa-form-footer .wa-line a {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
@media screen and (min-width: 761px) {
  .wa-order .wa-fields-group.line > .wa-field-wrapper {
    padding-top: var(--gap);
    padding-right: var(--gap);
  }
}
@media (min-width: 768px) {
  .wa-order .wa-order-cart-wrapper .wa-cart-details .wa-affiliate-section .wa-button {
    min-height: 40px;
  }
  .wa-order .wa-order-form-wrapper .wa-step-confirm-section .wa-section-body .wa-actions-section .wa-button {
    min-height: 40px;
  }
}
@media (min-width: 1300px) {
  .wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body {
    grid-template-columns: auto 1fr auto auto;
  }
  .wa-order .wa-order-cart-wrapper .wa-cart-details {
    grid-template-columns: 1fr 210px;
  }
  .wa-order .wa-order-cart-wrapper .wa-cart-details .wa-column-price {
    text-align: right;
  }
}
@media (min-width: 1500px) {
  .wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body {
    flex-wrap: nowrap;
  }
  .wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body > .wa-column-image {
    width: 48px;
  }
  .wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body > .wa-column-quantity {
    margin-left: auto;
  }
  .wa-order .wa-order-cart-wrapper .wa-products .wa-product .wa-product-body > .wa-column-price {
    margin-left: unset;
    align-self: unset;
  }
}
.widecard-four {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
}
.widecard-four--gap {
  margin-bottom: var(--gap);
}
.widecard-four.is-primary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.widecard-four.is-semitone,
.widecard-four.is-secondary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.widecard-four > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.widecard-four__image img {
  display: block;
  max-width: 100%;
  height: auto;
}
.widecard-four__title {
  text-align: center;
  font-size: var(--name-font-size);
  font-weight: 600;
  line-height: 1.45em;
}
.widecard-four__text {
  text-align: center;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.widecard-four__button-wrapper {
  width: 100%;
  margin-top: auto;
  padding-top: var(--gap-small);
}
.widecard-four__button-wrapper > * {
  width: 100%;
}
.widecard-four__button-wrapper .widecard-four__button.is-narrow,
.widecard-four__button-wrapper .widecard-four__button.is-wide {
  width: 100%;
  max-width: unset;
}
@media (min-width: 580px) {
  .widecard-four.is-primary {
    background-color: hsl(var(--bh), var(--bs), var(--bl));
  }
  .widecard-four.is-semitone,
  .widecard-four.is-secondary {
    background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  }
}
.widecard-one {
  display: none;
  padding: 1.5rem;
  border-radius: var(--border-radius-normal);
}
.widecard-one.is-active {
  display: block;
}
.widecard-one.is-active .widecard-one__wrapper {
  animation: slide-in-reversed 0.5s ease forwards;
}
.widecard-one--gap {
  margin-bottom: var(--gap);
}
.widecard-one.is-primary {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.widecard-one.is-secondary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.widecard-one.is-semitone {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.widecard-one__wrapper.has-image {
  display: grid;
  grid-gap: 1.5rem;
}
.widecard-one__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
}
.widecard-one__content > :not(:last-child) {
  margin-bottom: var(--gap);
}
.widecard-one__image {
  position: relative;
  display: block;
  max-width: 400px;
  margin: 0 auto;
}
.widecard-one__image img {
  display: block;
  max-width: 100%;
  height: auto;
}
.widecard-one__title {
  font-size: var(--subtitle-font-size);
  font-weight: 700;
  line-height: 1.45em;
}
.widecard-one__text {
  max-width: 800px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.widecard-one__text > p:not(:last-of-type) {
  margin-bottom: var(--gap-small);
}
@media (min-width: 992px) {
  .widecard-one {
    padding: 2rem 3rem;
  }
  .widecard-one__wrapper.has-image {
    grid-template-columns: 1fr auto;
    grid-gap: 2rem;
  }
  .widecard-one__image {
    align-self: center;
  }
}
.widecard-three {
  border-radius: var(--border-radius-normal);
  border: 1px solid transparent;
  transition: 0.25s ease border-color;
  cursor: pointer;
}
.widecard-three.is-active,
.widecard-three:hover {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
}
.widecard-three.is-active .widecard-three__icon {
  transform: rotate(180deg);
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.widecard-three.is-primary {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.widecard-three.is-secondary {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.widecard-three.is-semitone {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 2%));
}
.widecard-three--gap {
  margin-bottom: var(--gap);
}
.widecard-three__tab {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 1rem;
  align-items: center;
  padding: var(--gap);
}
.widecard-three__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 25%));
  color: hsl(var(--ah), var(--as), calc(var(--al) - 35%));
  transition: 0.2s ease;
}
.widecard-three__icon svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}
.widecard-three__image {
  display: none;
  max-width: 60px;
  height: auto;
  border-radius: var(--border-radius-small);
}
.widecard-three__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: var(--name-font-size);
  font-weight: 600;
  line-height: 1.45em;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.widecard-three__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}
.widecard-three__text {
  padding: 0 var(--gap) var(--gap);
  box-sizing: border-box;
  font-size: 0.95em;
  line-height: 1.65em;
}
.widecard-three__button {
  padding: 0 var(--gap) var(--gap);
}
@media (min-width: 520px) {
  .widecard-three__tab.has-image {
    grid-template-columns: auto 1fr auto;
  }
  .widecard-three__image {
    display: block;
  }
}
.widecard-two {
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1 0 10%;
  justify-content: center;
  transition: flex-basis, box-shadow;
  transition-timing-function: ease-out;
  transition-duration: 0.4s;
  will-change: flex-basis;
}
.widecard-two.is-active {
  flex-basis: 60%;
}
.widecard-two.is-active .widecard-two__wrapper {
  max-width: 500px;
  transition-delay: 1ms, 0.4s;
  transition-duration: 0.3s, 0.4s;
  opacity: 1;
}
.widecard-two.is-active .widecard-two__tab {
  transform: scale(0.75);
}
.widecard-two.is-active .widecard-two__icon {
  transform: translateY(-30px);
  opacity: 0;
}
.widecard-two:hover {
  box-shadow: inset 0 0 40px 4px hsl(var(--bh), var(--bs), var(--bl));
}
.widecard-two:hover .widecard-two__tab {
  transform: scale(0.75);
}
.widecard-two:hover .widecard-two__icon {
  transform: translateY(-30px);
  opacity: 0;
}
.widecard-two:not(:last-of-type) {
  border-right: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.widecard-two:not(:first-of-type)::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: inline-block;
  width: 0;
  height: 0;
  border-color: transparent hsl(var(--ah), var(--as), calc(var(--al) - 20%));
  border-style: solid;
  border-width: 12px;
  border-right: 0;
  z-index: 10;
}
.widecard-two--gap {
  margin-bottom: var(--gap);
}
.widecard-two__wrapper {
  max-width: 0;
  max-height: 320px;
  transition: max-width, opacity;
  transition-delay: 10ms, 1ms;
  transition-duration: 0.4s, 30ms;
  transition-timing-function: ease-out;
  transform-origin: left center;
  opacity: 0;
  will-change: max-width;
  overflow: hidden;
}
.widecard-two__media {
  display: flex;
  justify-content: center;
  align-items: center;
  animation-delay: 0.15s;
  animation-duration: 0.2s;
  animation-fill-mode: both;
  animation-name: bounce-move;
  opacity: 0;
}
.widecard-two__content {
  padding-right: 2rem;
  padding-left: 1rem;
  box-sizing: border-box;
}
.widecard-two__content > :not(:last-child) {
  margin-bottom: var(--gap);
}
.widecard-two__tab-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.widecard-two__tab {
  transform: scale(0.6);
  transition: transform;
  transition-duration: 0.2s;
  transition-timing-function: ease-out, linear;
  transform-origin: center;
  will-change: transform;
}
.widecard-two__tab > img {
  display: block;
  max-width: 175px;
  height: auto;
  border-radius: var(--border-radius-small);
  font-size: 0;
}
.widecard-two__icon {
  margin-top: var(--gap-extended);
  transition: transform, opacity;
  transition-duration: 0.3s;
  transition-timing-function: ease-out;
}
.widecard-two__icon svg {
  width: 25px;
  height: 25px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.widecard-two__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: var(--name-font-size);
  font-weight: 600;
  line-height: 1.45em;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow: hidden;
}
.widecard-two__text {
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.widecard-two__text > p {
  margin-bottom: var(--gap-small);
}
.layout-auth__content {
  max-width: 600px;
  margin: 0 auto;
}
.layout-auth__adapters {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.layout-auth__separator {
  position: relative;
  display: block;
  margin-bottom: var(--gap);
  text-align: center;
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.layout-auth__separator::after,
.layout-auth__separator::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 20px;
  height: 1px;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.layout-auth__separator::after {
  left: calc(100% + 1rem);
}
.layout-auth__separator::before {
  right: calc(100% + 1rem);
}
.layout-auth__subtitle {
  display: block;
  text-align: center;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  font-size: 0.95em;
  line-height: 1.45em;
}
.layout-brand__breadcrumbs {
  box-shadow: var(--shadow-inset);
}
.layout-brand__breadcrumbs-center {
  max-width: var(--frame-width);
  padding-top: var(--gap-extended);
  padding-bottom: var(--gap);
  margin: 0 auto;
  box-sizing: border-box;
}
.layout-brand__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  margin: unset;
}
.layout-brand__brand {
  width: auto;
  height: 100%;
}
.layout-brand__search {
  margin-bottom: var(--gap);
}
.layout-brand__search-wrapper {
  position: relative;
  margin-bottom: var(--gap);
}
.layout-brand__search-input {
  display: inline-block;
  min-height: 42px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.5rem 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(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  padding-right: 2rem;
}
.layout-brand__search-input:hover:not(:disabled):not(:focus) {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.layout-brand__search-input:hover:focus {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.layout-brand__search-input:focus {
  outline: none;
  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-brand__search-input:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.layout-brand__search-input.is-error,
.layout-brand__search-input.error:hover,
.layout-brand__search-input.error:focus,
.layout-brand__search-input.error,
.layout-brand__search-input.wa-error {
  border-color: hsl(13, 100%, 63%);
  box-shadow: 0 0 1px 1px hsl(13, 100%, 63%);
}
.layout-brand__search-input::-webkit-input-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.layout-brand__search-input:-moz-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.layout-brand__search-clear {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
  height: 42px;
  min-width: 42px;
  cursor: pointer;
}
.layout-brand__search-clear .core-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  fill: currentColor;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.layout-brand__letters-header {
  margin-bottom: var(--gap-small);
}
.layout-brand__letters-list {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-top: -5px;
}
.layout-brand__letters-list:not(:last-child) {
  margin-bottom: 5px;
}
.layout-brand__letters-list > li {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 35px;
  height: 35px;
  padding: 5px;
  margin-left: 5px;
  margin-top: 5px;
  box-sizing: border-box;
  border: 1px solid hsl(var(--ah), var(--as), var(--al));
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  font-size: 0.95em;
  white-space: nowrap;
  transition: 0.2s ease;
  cursor: pointer;
}
.layout-brand__letters-list > li:hover {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.layout-brand__letters-list > li.is-active {
  border-color: hsl(var(--ph), var(--ps), var(--pl));
  box-shadow: 0 0 1px 1px hsl(var(--ph), var(--ps), var(--pl));
}
.layout-brand__description:not(:empty) {
  margin-bottom: var(--gap);
}
.layout-brand__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));
  margin-bottom: var(--gap-extended);
}
.layout-brand__subpages > li {
  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-brand__subpages > li > a.is-active {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  cursor: auto;
}
.layout-brand__subpages > li > a:not(.is-active) {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  cursor: pointer;
}
.layout-brand__subpages > li > a:not(.is-active):hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.layout-brand__subpages > li > a:not(.is-active):active {
  box-shadow: 0 0 0 0.2rem hsl(var(--ah), var(--as), var(--al));
}
.layout-brand__subpages > li > a {
  display: flex;
  align-items: center;
  height: 42px;
  padding: 0.4rem 1rem;
  margin: 1px;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  text-decoration: none;
  transition: 0.2s ease;
  outline: none;
  user-select: none;
}
.layout-brand__review {
  padding: 1rem;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: var(--border-radius-large);
  margin-bottom: var(--gap);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.layout-brand__review > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.layout-brand__review-name {
  font-size: var(--name-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.layout-brand__review-name > a {
  color: inherit;
}
.layout-brand__review-title {
  margin-bottom: var(--gap-small);
  line-height: 1.45em;
}
.layout-brand__review-title > span {
  border-bottom: 1px solid hsl(var(--ph), var(--ps), var(--pl));
}
.layout-brand__review-text {
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.layout-brand__credentials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -10px;
}
.layout-brand__credentials > * {
  margin-top: 10px;
}
.layout-brand__credentials > :not(:last-child) {
  margin-right: var(--gap);
}
.layout-brand__review-contact {
  font-size: 0.95em;
  line-height: 1.45em;
}
.layout-brand__review-time {
  display: flex;
  align-items: center;
  font-size: 0.95em;
  line-height: 1.45em;
}
.layout-brand__review-time .icon-clock-alter {
  margin-right: 10px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.layout-brand__form-wrapper {
  max-width: 600px;
}
.layout-brand__rating {
  padding-bottom: 5px;
  border-bottom: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.layout-brand__review-block {
  margin-bottom: 15px;
}
.layout-brand__review-block.is-hidden {
  display: none;
}
.layout-brand__review-label {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: 600;
}
.layout-brand__review-label.is-required::after {
  content: ' *';
  color: hsl(13, 100%, 63%);
}
.layout-brand__review-input {
  display: inline-block;
  min-height: 42px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.5rem 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(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  overflow-y: hidden;
  resize: none;
}
.layout-brand__review-input:hover:not(:disabled):not(:focus) {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.layout-brand__review-input:hover:focus {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.layout-brand__review-input:focus {
  outline: none;
  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-brand__review-input:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.layout-brand__review-input.is-error,
.layout-brand__review-input.error:hover,
.layout-brand__review-input.error:focus,
.layout-brand__review-input.error,
.layout-brand__review-input.wa-error {
  border-color: hsl(13, 100%, 63%);
  box-shadow: 0 0 1px 1px hsl(13, 100%, 63%);
}
.layout-brand__review-input::-webkit-input-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.layout-brand__review-input:-moz-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.layout-brand__stars {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.layout-brand__stars.is-locked {
  pointer-events: none;
  opacity: 0.5;
}
.layout-brand__stars > :not(:last-child) {
  margin-right: 15px;
}
.layout-brand__rating-icon {
  cursor: pointer;
  margin-top: 2px;
}
.layout-brand__rating-icon svg {
  width: 22px;
  height: 22px;
  transition: 0.1s linear;
}
.layout-brand__rating-icon.is-empty svg {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
}
.layout-brand__rating-icon.is-filled svg {
  fill: hsl(44, 93%, 72%);
}
.layout-brand__error {
  display: block;
  margin-top: 5px;
  font-style: normal;
  font-size: 16px;
  line-height: 1.45em;
  color: hsl(13, 100%, 63%);
}
.layout-brand__review-result {
  margin-top: var(--gap);
  line-height: 1.45em;
}
@media (min-width: 480px) {
  .layout-brand__wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .layout-brand__review {
    padding: 2rem;
  }
  .layout-brand__comment {
    margin-left: var(--gap);
  }
}
@media (min-width: 850px) {
  .layout-brand__wrapper {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1100px) {
  .layout-brand__wrapper {
    grid-template-columns: repeat(4, 1fr);
  }
}
.layout-cart__error {
  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-cart__error {
    padding: 3.5rem 1.5rem;
  }
}
.layout-category__breadcrumbs {
  box-shadow: var(--shadow-inset);
}
.layout-category__breadcrumbs-center {
  max-width: var(--frame-width);
  padding-top: var(--gap-extended);
  padding-bottom: var(--gap);
  margin: 0 auto;
  box-sizing: border-box;
}
.layout-category__subcategories {
  margin-bottom: var(--gap-extended);
}
.layout-category__description.is-top {
  margin-bottom: var(--gap-extended);
}
.layout-category__description.is-bottom {
  margin-top: var(--gap);
}
.layout-category__additional-description {
  margin-top: var(--gap);
}
.layout-category__collapsed {
  position: relative;
  max-height: 140px;
  overflow: hidden;
}
.layout-category__collapsed::after {
  content: '';
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(180deg, transparent 0, hsl(var(--ah), var(--as), calc(var(--al) + 2%)));
  z-index: 1;
}
.layout-category__collapsed.is-triggered::after {
  display: none;
}
.layout-category__more {
  display: inline-flex;
  align-items: center;
  margin-top: var(--gap);
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
  cursor: pointer;
}
.layout-category__more span {
  border-bottom: 1px dotted hsl(0, 0%, 66%);
}
.layout-category__more .icon-arrow {
  display: block;
  width: 9px;
  height: 9px;
  margin-left: 5px;
  fill: hsl(0, 0%, 66%);
  transition: transform 0.2s ease;
}
.layout-category__more.is-active .icon-arrow {
  transform: rotate(180deg);
}
.layout-category__sidebar,
.layout-category__content {
  min-width: 0;
}
.layout-category__content.is-loading {
  opacity: 0.5;
  pointer-events: none;
}
.layout-category__count {
  display: flex;
  align-items: center;
  margin-bottom: var(--gap-small);
  font-size: 0.95em;
}
.layout-category__count > svg {
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  fill: hsl(var(--th), var(--ts), var(--tl));
  margin-right: var(--gap-small);
}
.layout-category__controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: var(--gap-small);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1rem;
  box-sizing: border-box;
}
.layout-category .product-view {
  display: none;
}
.layout-category__sidebar {
  display: none;
}
.layout-category__sidebar > :not(:last-child) {
  margin-bottom: var(--gap);
}
@media (min-width: 480px) {
  .layout-category__controls {
    display: flex;
  }
}
@media (min-width: 992px) {
  .layout-category__sidebar {
    display: block;
  }
  .layout-category__grid {
    margin-top: var(--gap-extended);
  }
  .layout-category__grid.has-sidebar {
    display: grid;
    grid-template-columns: 320px 1fr;
    grid-gap: 1rem;
  }
  .layout-category__controls {
    padding: 1rem;
    border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
    border-radius: var(--border-radius-normal);
    background-color: hsl(var(--bh), var(--bs), var(--bl));
  }
  .layout-category__controls > :nth-child(2) {
    margin-left: auto;
  }
  .layout-category .product-view {
    display: grid;
  }
  .layout-category__filters-button.is-hidden {
    display: none;
  }
}
.layout-checkout__breadcrumbs {
  box-shadow: var(--shadow-inset);
}
.layout-checkout__breadcrumbs-center {
  max-width: var(--frame-width);
  padding-top: var(--gap-extended);
  padding-bottom: var(--gap);
  margin: 0 auto;
  box-sizing: border-box;
}
.layout-checkout__error {
  padding: 1rem;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: var(--border-radius-normal);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  text-align: center;
}
.layout-checkout__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}
.layout-checkout__success > :not(:last-child) {
  margin-bottom: var(--gap);
}
.layout-checkout__success-text {
  display: block;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.layout-checkout__success-text a {
  color: inherit;
}
.layout-checkout__success-image {
  display: flex;
  justify-content: center;
}
.layout-checkout__success-image .icon-shopping-cart {
  width: 120px;
  height: 120px;
}
.layout-checkout__success-image .icon-shopping-cart__tile-0 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 6%));
}
.layout-checkout__success-image .icon-shopping-cart__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
}
.layout-checkout__success-image .icon-shopping-cart__tile-2 {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.layout-checkout__plugin-wrapper:not(:empty) {
  margin-bottom: var(--gap-small);
}
.layout-checkout__plugin-wrapper input[type='submit'],
.layout-checkout__plugin-wrapper button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 360px;
  min-height: 36px;
  padding: 8px 16px;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  line-height: 1.45em;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  user-select: none;
  transition: background-color 0.1s ease;
  overflow: hidden;
  cursor: pointer;
  color: hsl(var(--bh), var(--bs), var(--bl));
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  border: unset;
  margin: 0 auto;
}
.layout-checkout__plugin-wrapper input[type='submit']:focus,
.layout-checkout__plugin-wrapper button:focus,
.layout-checkout__plugin-wrapper input[type='submit']:active,
.layout-checkout__plugin-wrapper button:active,
.layout-checkout__plugin-wrapper input[type='submit']:hover,
.layout-checkout__plugin-wrapper button:hover {
  outline: none;
}
.layout-checkout__plugin-wrapper input[type='submit']:hover,
.layout-checkout__plugin-wrapper button:hover {
  background-color: hsl(var(--ph), var(--ps), calc(var(--pl) + 6%));
}
@media (min-width: 768px) {
  .layout-checkout__error {
    padding: 3.5rem 1.5rem;
  }
  .layout-checkout__plugin-wrapper input[type='submit'],
  .layout-checkout__plugin-wrapper button {
    min-height: 40px;
  }
}
.layout-compare.is-loading {
  opacity: 0.5;
  pointer-events: none;
}
.layout-compare__actions {
  padding-top: var(--gap);
  padding-bottom: var(--gap);
}
.layout-compare__actions,
.layout-compare__radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -10px;
}
.layout-compare__actions > *,
.layout-compare__radio > * {
  margin-top: 10px;
}
.layout-compare__actions > :not(:last-child),
.layout-compare__radio > :not(:last-child) {
  margin-right: var(--gap);
}
.layout-compare__reset {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-gap: var(--gap-small);
  align-items: center;
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: pointer;
}
.layout-compare__reset:hover .layout-compare__reset-icon .core-cross {
  fill: hsl(0, 0%, 56%);
}
.layout-compare__reset-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  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));
  cursor: pointer;
}
.layout-compare__reset-icon .core-cross {
  display: block;
  width: 8px;
  height: 8px;
  fill: hsl(var(--th), var(--ts), var(--tl));
  transition: fill 0.25s ease;
}
.layout-compare__reset-icon.is-top-right {
  position: absolute;
  top: var(--gap-small);
  right: var(--gap-small);
}
.layout-compare__reset-icon.is-top-left {
  position: absolute;
  top: var(--gap-small);
  left: var(--gap-small);
}
.layout-compare__cards {
  position: relative;
}
.layout-compare__product {
  height: 100%;
}
.layout-compare__button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: calc(0px - 34px / 2);
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
}
.layout-compare__button.is-next {
  right: -8px;
}
.layout-compare__button.is-prev {
  left: -8px;
}
.layout-compare__button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.layout-compare__button[aria-disabled='true'] .icon-arrow-thin {
  opacity: 0.25;
}
.layout-compare__button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.layout-compare__button.is-next {
  transform: translateX(6px);
}
.layout-compare__button.is-prev {
  transform: translateX(-6px);
}
.layout-compare__table {
  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));
}
.layout-compare__feature {
  display: grid;
  grid-gap: 1rem;
  min-height: 1em;
  padding: 0.8rem 1.2rem;
  line-height: 1.45em;
  border-radius: var(--border-radius-small);
  transition: background-color 0.25s;
}
.layout-compare__feature:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.layout-compare__feature.is-same.is-hidden {
  display: none;
}
.layout-compare__feature.is-active .layout-compare__feature-item {
  -webkit-line-clamp: unset;
}
.layout-compare__feature-header {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  margin-bottom: 5px;
  opacity: 0.5;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}
.layout-compare__feature-values {
  min-width: 0;
}
.layout-compare__feature-item {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 0.95em;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}
.layout-compare__divider-header {
  display: flex;
  align-items: center;
  padding: 0.8rem 1.2rem;
  margin-top: var(--gap-extended);
  background-color: hsla(var(--ph), var(--ps), var(--pl), 0.1);
  border-radius: var(--border-radius-small);
  cursor: pointer;
}
.layout-compare__divider-header.is-opened .layout-compare__divider-icon {
  transform: rotate(0);
}
.layout-compare__divider-name {
  font-weight: 600;
  font-size: 0.95em;
}
.layout-compare__divider-icon {
  margin-right: 1rem;
  transition: 0.2s ease;
  transform: rotate(-90deg);
}
.layout-compare__divider-icon .icon-more {
  display: block;
  width: 8px;
  height: 8px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.layout-compare__divider-content {
  display: none;
}
.layout-compare__divider-content.is-opened {
  display: block;
}
@media (min-width: 768px) {
  .layout-compare__actions {
    padding-top: var(--gap-extended);
    padding-bottom: var(--gap-extended);
  }
  .layout-compare__actions > :last-child {
    margin-left: auto;
  }
  .layout-compare__features {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .layout-compare__divider-name {
    font-size: 1em;
  }
  .layout-compare__divider-header,
  .layout-compare__feature {
    padding: 0.8rem 1.6rem;
  }
}
.layout-error__wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.layout-error__text {
  display: block;
  font-size: 3em;
  text-shadow: 2px 1px 4px hsl(0, 0%, 83%), 3px 2px 4px hsla(0, 0%, 0%, 0.2);
  animation-name: shadow-text;
  animation-duration: 4.5s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.layout-error__code {
  display: block;
  text-align: center;
  font-size: 8em;
  line-height: 1em;
  letter-spacing: 0.05em;
  font-weight: 600;
  text-shadow: 8px 2px 4px hsl(0, 0%, 83%), 14px 4px 4px hsla(0, 0%, 0%, 0.2);
  animation-name: shadow-code;
  animation-duration: 4.5s;
  animation-timing-function: ease;
  animation-iteration-count: 1;
  color: hsl(var(--bh), var(--bs), var(--bl));
}
@media (min-width: 768px) {
  .layout-error__code {
    font-size: 16em;
  }
}
.layout-main__breadcrumbs {
  box-shadow: var(--shadow-inset);
}
.layout-main__breadcrumbs-center {
  max-width: var(--frame-width);
  padding-top: var(--gap);
  padding-bottom: var(--gap);
  margin: 0 auto;
}
.layout-main__subpages-wrapper:not(:empty) {
  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 hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  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: 0.2s ease;
  outline: none;
  cursor: pointer;
}
.layout-main__subpage-link:hover {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.layout-main__subpage-link:active {
  box-shadow: 0 0 0 0.2rem hsla(var(--ah), var(--as), var(--al), 0.6);
}
.layout-main__subpage-name {
  display: block;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 0.95em;
  line-height: 1.65em;
  text-overflow: ellipsis;
  word-break: break-all;
  overflow: hidden;
}
.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__share {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-top: var(--gap-extended);
}
@media (max-width: 479px) {
  .layout-main__subpage {
    width: 100%;
  }
}
@media (min-width: 480px) {
  .layout-main__subpage-link {
    max-width: 340px;
  }
}
@media (min-width: 992px) {
  .layout-main__grid.has-sidebar.is-left {
    grid-template-columns: 320px 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 320px;
  }
}
@media (min-width: 1300px) {
  .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-order__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 0;
}
.layout-order__empty-title {
  margin-bottom: var(--gap-small);
}
.layout-order__empty-text {
  display: block;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--gap-extended);
  text-align: center;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.layout-order__empty-image {
  display: flex;
  justify-content: center;
  margin-bottom: var(--gap-extended);
}
.layout-order__empty-image .icon-shopping-cart {
  width: 120px;
  height: 120px;
}
.layout-order__empty-image .icon-shopping-cart__tile-0 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 6%));
}
.layout-order__empty-image .icon-shopping-cart__tile-1 {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 12%));
}
.layout-order__empty-image .icon-shopping-cart__tile-2 {
  fill: hsl(var(--bh), var(--bs), var(--bl));
}
.layout-order__page {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 1rem;
  align-items: start;
}
.layout-order__column {
  min-width: 0;
}
.layout-order__section-header {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-gap: 1rem;
  align-items: center;
  margin-bottom: var(--gap-extended);
}
.layout-order__subtitle {
  display: block;
  font-size: var(--subtitle-font-size);
  font-weight: 600;
  line-height: 1.45em;
}
.layout-order__clear {
  display: grid;
  grid-template-columns: auto auto;
  grid-gap: 10px;
  align-items: center;
  font-size: 0.95em;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
  cursor: pointer;
}
.layout-order__cross {
  margin-top: var(--gap);
}
.layout-order__cross-wrapper {
  position: relative;
  margin-top: var(--gap-small);
}
.layout-order__slider-button {
  position: absolute;
  top: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-top: calc(0px - 34px / 2);
  border-radius: 50%;
  transition: 0.3s ease;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-card);
  user-select: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
}
.layout-order__slider-button.is-next {
  right: -8px;
}
.layout-order__slider-button.is-prev {
  left: -8px;
}
.layout-order__slider-button.is-prev .icon-arrow-thin {
  transform: rotate(180deg);
}
.layout-order__slider-button[aria-disabled='true'] .icon-arrow-thin {
  opacity: 0.25;
}
.layout-order__slider-button .icon-arrow-thin {
  display: block;
  width: 14px;
  height: 14px;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 25%));
}
.layout-order__slider-button.swiper-button-lock {
  display: none;
}
.layout-order__slider-button.is-next {
  transform: translateX(6px);
}
.layout-order__slider-button.is-prev {
  transform: translateX(-6px);
}
.layout-order__section-footer {
  display: flex;
  flex-direction: column;
  padding-top: var(--gap);
  margin-top: var(--gap);
  border-top: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 2%));
}
.layout-order__back {
  display: flex;
  align-items: center;
  margin-left: auto;
  text-decoration: none;
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
  cursor: pointer;
}
.layout-order__back .icon-arrow-thin {
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 20%));
  transform: rotate(-180deg);
}
.layout-order__icon-back {
  display: flex;
  width: 22px;
  height: 22px;
  margin-right: 10px;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.layout-order__phones {
  padding: 1rem;
  margin-top: var(--gap);
  border-radius: var(--border-radius-normal);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 2%));
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.layout-order__phones-title {
  display: block;
  margin-bottom: var(--gap-small);
  font-size: var(--name-font-size);
  line-height: 1.45em;
  font-weight: 600;
}
.layout-order__contact {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  margin-bottom: 5px;
  font-size: 0.95em;
}
.layout-order__contact > .icon-phone {
  display: block;
  width: 16px;
  height: 16px;
  margin-right: var(--gap-small);
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.layout-order__phone {
  display: inline;
  padding-bottom: 3px;
  background-size: 0 2px;
  background-repeat: no-repeat;
  background-position: left 87%;
  background-image: linear-gradient(to right, hsl(var(--ph), var(--ps), var(--pl)) 0%, hsl(var(--ph), var(--ps), var(--pl)) 100%);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  line-height: 1.45em;
  color: currentColor;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
}
.layout-order__phone:hover {
  background-size: 100% 2px;
}
.layout-order__phone:focus {
  outline: none;
}
.layout-order__phone-text {
  display: block;
  margin-right: var(--gap-small);
  line-height: 1.45em;
}
@media (min-width: 1200px) {
  .layout-order {
    box-shadow: var(--shadow-inset);
    background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  }
  .layout-order__page {
    grid-template-columns: 1fr 1fr;
  }
  .layout-order__section {
    padding: 1rem;
    border-radius: var(--border-radius-normal);
    border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 2%));
    background-color: hsl(var(--bh), var(--bs), var(--bl));
    transition: box-shadow 0.3s ease;
  }
  .layout-order__section:hover {
    box-shadow: var(--shadow-card);
    border-color: hsl(var(--bh), var(--bs), var(--bl));
  }
}
.layout-product-page__content {
  margin-top: 2rem;
}
.layout-profile__tabs {
  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-profile__tabs > li {
  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-profile__tabs > li.is-active > a {
  background-color: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
  cursor: auto;
}
.layout-profile__tabs > li:not(.is-active) > a {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  color: hsl(var(--th), var(--ts), var(--tl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  cursor: pointer;
}
.layout-profile__tabs > li:not(.is-active) > a:hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.layout-profile__tabs > li:not(.is-active) > a:active {
  box-shadow: 0 0 0 0.2rem hsl(var(--ah), var(--as), var(--al));
}
.layout-profile__tabs > li > a {
  display: flex;
  align-items: center;
  height: 38px;
  padding: 0.4rem 1rem;
  margin: 1px;
  box-sizing: border-box;
  border-radius: var(--border-radius-normal);
  font-size: 0.95em;
  text-decoration: none;
  transition: 0.2s ease;
  outline: none;
  user-select: none;
}
.layout-profile__affiliate,
.layout-profile__order,
.layout-profile__pin-form,
.layout-profile__orders {
  margin-top: var(--gap-extended);
}
.layout-profile__affiliate > :not(:last-child),
.layout-profile__order > :not(:last-child),
.layout-profile__pin-form > :not(:last-child),
.layout-profile__orders > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.layout-profile__content {
  margin-top: var(--gap-extended);
  padding: 1.4rem;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.layout-profile__hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  margin-bottom: var(--gap-extended);
  border-radius: var(--border-radius-normal);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
}
.layout-profile__data.is-hidden {
  display: none;
}
.layout-profile__form.is-hidden {
  display: none;
}
.layout-profile__user {
  margin-bottom: var(--gap-extended);
}
.layout-profile__user.is-grid {
  display: grid;
  grid-template-columns: 80px 1fr;
  grid-gap: 1rem;
  align-items: center;
}
.layout-profile__user-name {
  font-weight: 600;
  font-size: var(--name-font-size);
  line-height: 1.45em;
}
.layout-profile__image svg,
.layout-profile__image img {
  display: block;
  width: 100%;
  max-width: 80px;
  height: auto;
  overflow: hidden;
  border-radius: 50%;
}
.layout-profile__image svg {
  fill: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.layout-profile__logout {
  text-decoration: none;
  font-size: 0.95em;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.layout-profile__list {
  max-width: 800px;
  margin-bottom: var(--gap-extended);
}
.layout-profile__item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-gap: 10px;
  align-items: flex-start;
  font-size: 0.95em;
  line-height: 1.45em;
}
.layout-profile__item:not(:last-of-type) {
  margin-bottom: var(--gap-small);
}
.layout-profile__list {
  margin-bottom: var(--gap-extended);
}
.layout-profile__line {
  height: 1px;
  min-width: 50px;
  margin-top: 12px;
  background: linear-gradient(90deg, hsl(var(--ah), var(--as), calc(var(--al) - 15%)) 33%, #0000 0) repeat-x bottom;
  background-size: 6px 1px;
}
.layout-profile__value {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
  text-align: right;
}
.layout-profile__value a {
  text-decoration: underline;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.layout-profile__value em {
  font-style: normal;
  color: hsl(148, 100%, 36%);
}
.layout-profile__adapters {
  margin-top: var(--gap-extended);
}
.layout-profile__adapters > :not(:last-child) {
  margin-bottom: 1rem;
}
.layout-profile__adapters-text {
  display: block;
  font-size: 0.95em;
  line-height: 1.45em;
}
.layout-profile__link {
  text-decoration: underline;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
  font-size: 0.95em;
  cursor: pointer;
}
.layout-profile__buttons {
  display: flex;
  align-items: center;
  margin-top: var(--gap-extended);
}
.layout-profile__buttons > :not(:last-child) {
  margin-right: var(--gap-small);
}
.layout-profile__pin-form {
  padding: 1.4rem;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  border-radius: var(--border-radius-normal);
}
.layout-profile__pin-text {
  display: block;
  line-height: 1.45em;
}
.layout-profile__pin {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: -10px;
}
.layout-profile__pin > * {
  margin-top: 10px;
}
.layout-profile__pin > :not(:last-child) {
  margin-right: var(--gap-small);
}
.layout-profile__pin input {
  display: inline-block;
  min-height: 42px;
  min-width: 90px !important;
  width: 100%;
  padding: 0.5rem 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;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
  display: block;
  max-width: 300px;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.layout-profile__pin input:hover:not(:disabled):not(:focus) {
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.layout-profile__pin input:hover:focus {
  border-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.layout-profile__pin input:focus {
  outline: none;
  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-profile__pin input:disabled {
  opacity: 0.7;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.layout-profile__pin input.is-error,
.layout-profile__pin input.error:hover,
.layout-profile__pin input.error:focus,
.layout-profile__pin input.error,
.layout-profile__pin input.wa-error {
  border-color: hsl(13, 100%, 63%);
  box-shadow: 0 0 1px 1px hsl(13, 100%, 63%);
}
.layout-profile__pin input::-webkit-input-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.layout-profile__pin input:-moz-placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
}
.layout-profile__pin-error {
  display: block;
  margin-top: var(--gap-small);
  font-style: normal;
  font-size: 16px;
  line-height: 1.45em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 30%));
}
.layout-profile__order-grid > :not(:last-child) {
  margin-bottom: var(--gap);
}
.layout-profile__order-info-list,
.layout-profile__order-sidebar {
  padding: 1.4rem;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: var(--border-radius-normal);
}
.layout-profile__order-info-list > :not(:last-child),
.layout-profile__order-sidebar > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.layout-profile__order-total-name {
  font-size: 0.95em;
}
.layout-profile__order-total-value {
  display: block;
  margin-top: var(--gap-small);
  font-size: 1.5em;
}
.layout-profile__order-info > :not(:last-child) {
  margin-bottom: var(--gap);
}
.layout-profile__order-info-list {
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
}
.layout-profile__subtitle {
  margin-bottom: var(--gap);
  font-weight: 600;
}
.layout-profile__plugin > * {
  margin-bottom: var(--gap-small);
}
.layout-profile__plugin input[type='submit'],
.layout-profile__plugin button {
  display: block;
  align-items: baseline;
  padding: 8px 16px;
  box-sizing: border-box;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  text-align: center;
  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;
}
.layout-profile__plugin input[type='submit']:hover,
.layout-profile__plugin button:hover {
  box-shadow: 0 0 0 3px hsl(var(--ah), var(--as), var(--al));
}
@media (min-width: 768px) {
  .layout-profile__tabs > li > a {
    height: 42px;
    font-size: 1em;
  }
}
@media (min-width: 1200px) {
  .layout-profile__order-grid {
    display: grid;
    align-items: start;
    grid-template-columns: 1fr 320px;
    grid-gap: 2rem;
  }
  .layout-profile__order-grid > :not(:last-child) {
    margin-bottom: unset;
  }
  .layout-profile__order-info-wrapper {
    order: 1;
  }
  .layout-profile__order-sidebar {
    order: 2;
  }
}
.layout-reviews__wrapper {
  margin-top: var(--gap);
}
.layout-reviews__header {
  margin-bottom: var(--gap);
  font-size: var(--name-font-size);
  font-weight: 700;
  line-height: 1.45em;
}
.layout-reviews__container:not(.has-reviews) {
  display: flex;
  flex-direction: column;
}
.layout-reviews__container:not(.has-reviews) > :not(:last-child) {
  margin-bottom: var(--gap-small);
}
.layout-reviews__container:not(.has-reviews) > :last-child {
  margin-top: var(--gap-small);
}
.layout-reviews__message {
  font-size: var(--mid-font-size);
  font-weight: 600;
  line-height: 1.45em;
}
.layout-reviews__text {
  line-height: 1.45em;
}
.layout-reviews__info {
  display: grid;
  grid-gap: var(--gap);
  align-items: flex-start;
}
.layout-reviews__cta {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1.6rem;
  box-sizing: border-box;
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
  border-radius: var(--border-radius-large);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.layout-reviews__cta-text {
  display: block;
  margin-bottom: var(--gap-small);
  line-height: 1.45em;
}
.layout-reviews__list {
  margin-top: var(--gap-extended);
}
.layout-reviews__item:not(:last-of-type) {
  margin-bottom: var(--gap);
}
.layout-reviews__reply > * {
  margin-top: var(--gap);
}
@media (min-width: 768px) {
  .layout-reviews__wrapper {
    padding: 2.5rem;
    margin-top: var(--gap-extended);
    border-radius: var(--border-radius-normal);
    border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 4%));
    background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  }
  .layout-reviews__container:not(.has-reviews) {
    align-items: center;
  }
  .layout-reviews__message,
  .layout-reviews__text {
    text-align: center;
  }
  .layout-reviews__cta {
    border: unset;
  }
}
@media (min-width: 1200px) {
  .layout-reviews__info {
    grid-template-columns: 1fr auto;
    grid-gap: 3rem;
  }
}
.layout-search.is-loading {
  opacity: 0.5;
  pointer-events: none;
}
.layout-search__reset-wrapper {
  margin-bottom: var(--gap);
}
.layout-search__reset {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  grid-gap: var(--gap-small);
  align-items: center;
  margin-right: auto;
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  cursor: pointer;
}
.layout-search__reset:hover .layout-search__reset-icon .core-cross {
  fill: hsl(0, 0%, 56%);
}
.layout-search__reset-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7px;
  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));
  cursor: pointer;
}
.layout-search__reset-icon .core-cross {
  display: block;
  width: 8px;
  height: 8px;
  fill: hsl(var(--th), var(--ts), var(--tl));
  transition: fill 0.25s ease;
}
.layout-search__reset-icon.is-top-right {
  position: absolute;
  top: var(--gap-small);
  right: var(--gap-small);
}
.layout-search__reset-icon.is-top-left {
  position: absolute;
  top: var(--gap-small);
  left: var(--gap-small);
}
.layout-thumbs {
  display: grid;
}
.layout-thumbs__thumbs {
  display: grid;
  grid-gap: var(--gap-small);
}
.layout-thumbs__thumbs:not(.is-mobile-grid) {
  grid-template-columns: minmax(240px, 350px);
}
.layout-thumbs__thumbs.is-mobile-grid {
  grid-template-columns: repeat(2, 1fr);
}
.layout-thumbs__thumbs.is-thumbs,
.layout-thumbs__thumbs.is-list,
.layout-thumbs__thumbs.is-table {
  margin: 0 auto;
}
.layout-thumbs__reset {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: var(--gap-small) auto 0;
  font-size: 0.95em;
  line-height: 1.45em;
  cursor: pointer;
}
.layout-thumbs__reset .icon-reload {
  display: block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.layout-thumbs__reset:hover {
  text-decoration: underline;
}
.layout-thumbs__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--gap);
  text-align: center;
}
.layout-thumbs__loading > :not(:last-child) {
  margin-right: var(--gap-small);
}
@media (min-width: 580px) {
  .layout-thumbs__thumbs.is-list,
  .layout-thumbs__thumbs.is-table {
    margin: unset;
  }
  .layout-thumbs__thumbs.is-thumbs:not(.has-sidebar),
  .layout-thumbs__thumbs.is-thumbs.has-sidebar {
    grid-template-columns: repeat(2, minmax(240px, 350px));
  }
  .layout-thumbs__thumbs.is-list:not(.has-sidebar),
  .layout-thumbs__thumbs.is-list.has-sidebar {
    grid-template-columns: repeat(2, minmax(240px, 350px));
  }
  .layout-thumbs__thumbs.is-table:not(.has-sidebar),
  .layout-thumbs__thumbs.is-table.has-sidebar {
    grid-template-columns: repeat(2, minmax(240px, 350px));
  }
}
@media (min-width: 900px) {
  .layout-thumbs__thumbs.is-thumbs:not(.has-sidebar),
  .layout-thumbs__thumbs.is-thumbs.has-sidebar {
    grid-template-columns: repeat(3, minmax(240px, 350px));
  }
  .layout-thumbs__thumbs.is-table:not(.has-sidebar),
  .layout-thumbs__thumbs.is-table.has-sidebar {
    grid-template-columns: repeat(3, minmax(240px, 350px));
  }
}
@media (min-width: 992px) {
  .layout-thumbs__thumbs.is-thumbs.has-sidebar {
    grid-template-columns: repeat(2, minmax(240px, 350px));
  }
  .layout-thumbs__thumbs.is-list:not(.has-sidebar) {
    grid-template-columns: repeat(1, 1fr);
  }
  .layout-thumbs__thumbs.is-table:not(.has-sidebar) {
    grid-template-columns: repeat(1, 1fr);
  }
  .layout-thumbs__thumbs.is-table.has-sidebar {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .layout-thumbs__thumbs.is-table.has-sidebar {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 1300px) {
  .layout-thumbs__thumbs.is-list.has-sidebar {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media (min-width: 1350px) {
  .layout-thumbs__thumbs.is-thumbs.has-sidebar {
    grid-template-columns: repeat(3, minmax(240px, 350px));
  }
  .layout-thumbs__thumbs.is-thumbs:not(.has-sidebar) {
    grid-template-columns: repeat(4, minmax(240px, 350px));
  }
}
.plugin-search-pro__field {
  width: 100%;
}
.plugin-search-pro__field-container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  box-sizing: border-box;
  border-radius: var(--border-radius-small);
  border: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 12%));
  background: hsl(var(--bh), var(--bs), var(--bl));
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  z-index: 140;
}
.plugin-search-pro__field-container.js-searchpro__field-container--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));
}
.plugin-search-pro__field-container.js-searchpro__field-container--focus .plugin-search-pro__field-button {
  background: hsl(var(--ph), var(--ps), var(--pl));
  color: hsl(var(--bh), var(--bs), var(--bl));
}
.plugin-search-pro__field-container.js-searchpro__field-container--loading .plugin-search-pro__loader {
  display: flex;
}
.plugin-search-pro__loader {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 100%;
  border-radius: var(--border-radius-small);
  background-color: hsl(var(--bh), var(--bs), var(--bl));
}
.plugin-search-pro__field-input-container {
  flex-grow: 1;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
}
.plugin-search-pro__field-input {
  padding: 0 50px 0 20px;
  height: 100%;
  width: 100%;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: 0.95em;
  font-family: inherit;
  outline: none;
}
.plugin-search-pro__field-input::placeholder {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
}
.plugin-search-pro__field-clear-button {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 100%;
  margin: auto;
  cursor: pointer;
}
.plugin-search-pro__field-clear-button .core-cross {
  display: block;
  width: 10px;
  height: 10px;
  fill: hsl(var(--ph), var(--ps), var(--pl));
}
.plugin-search-pro__field-categories-container {
  position: relative;
  display: none;
  height: 100%;
  user-select: none;
}
.plugin-search-pro__field-categories-label {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 160px;
  height: 100%;
  padding: 0 20px;
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
  transition: background-color 0.3s;
  cursor: pointer;
}
.plugin-search-pro__field-categories-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  height: 70%;
  margin: auto;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) - 8%));
  transition: background-color 0.25s ease, height 0.25s ease;
}
.plugin-search-pro__field-categories-label:hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.plugin-search-pro__field-categories-label:hover::before {
  height: 100%;
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.plugin-search-pro__field-categories-label span {
  display: block;
  max-width: 150px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.plugin-search-pro__field-categories-label .icon-more {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  fill: hsl(0, 0%, 66%);
}
.plugin-search-pro__field-categories-list {
  position: absolute;
  right: 0;
  display: none;
  width: 280px;
  max-height: 400px;
  margin: 7px 0 0 0;
  padding: 0;
  border-radius: var(--border-radius-small);
  background: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-modal);
  overflow-y: auto;
  z-index: 30;
}
.plugin-search-pro__field-category,
.plugin-search-pro__field-subcategory {
  padding: 7px 20px;
  text-overflow: ellipsis;
  font-size: 0.95em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
  white-space: nowrap;
  transition: color 0.25s ease;
  overflow: hidden;
  cursor: pointer;
}
.plugin-search-pro__field-category.selected,
.plugin-search-pro__field-subcategory.selected {
  font-weight: 500;
}
.plugin-search-pro__field-category:hover,
.plugin-search-pro__field-subcategory:hover {
  color: hsl(var(--ph), var(--ps), var(--pl));
}
.plugin-search-pro__field-category span,
.plugin-search-pro__field-subcategory span {
  text-overflow: ellipsis;
  overflow: hidden;
}
.plugin-search-pro__field-category-all {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.plugin-search-pro__field-category:first-child {
  padding-top: 20px;
}
.plugin-search-pro__field-category:last-child {
  padding-bottom: 20px;
}
.plugin-search-pro__field-subcategories-list {
  margin: 0;
  padding: 0;
}
.plugin-search-pro__field-subcategories-list:last-child {
  padding-bottom: 20px;
}
.plugin-search-pro__field-subcategory {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 30px;
}
.plugin-search-pro__field-subcategory::before {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: hsl(var(--ph), var(--ps), var(--pl));
}
.plugin-search-pro__field-subcategory:hover::before {
  background-color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
}
.plugin-search-pro__field-subcategory span {
  padding-left: 15px;
}
.plugin-search-pro__field-button-container {
  height: 100%;
}
.plugin-search-pro__field-button {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 20px;
  background: hsl(var(--ah), var(--as), calc(var(--al) - 6%));
  font-size: 0.95em;
  transition: background-color 0.25s ease, color 0.25s ease;
  user-select: none;
  cursor: pointer;
  z-index: 1;
}
.plugin-search-pro__dropdown {
  position: relative;
  margin-top: 5px;
  max-height: 600px;
  background: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: var(--shadow-modal);
  border-radius: var(--border-radius-small);
  overflow-y: auto;
  z-index: 30;
}
.plugin-search-pro__dropdown-group-title {
  padding: 10px 20px;
  text-transform: uppercase;
  font-size: 12px;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
}
.plugin-search-pro__dropdown-entity {
  display: block;
  padding: 7px 20px;
  text-overflow: ellipsis;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 20%));
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease;
  overflow: hidden;
}
.plugin-search-pro__dropdown-entity.js-searchpro__dropdown-entity--active,
.plugin-search-pro__dropdown-entity:hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.plugin-search-pro__dropdown-entity.js-searchpro__dropdown-entity--active .plugin-search-pro__dropdown-entity_delete-button,
.plugin-search-pro__dropdown-entity:hover .plugin-search-pro__dropdown-entity_delete-button {
  opacity: 1;
}
.plugin-search-pro__dropdown-entity_subname {
  margin-left: 10px;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
  font-size: 12px;
}
.plugin-search-pro__dropdown-entity_delete-button {
  float: right;
  margin-top: 3px;
  font-size: 12px;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
  transition: opacity 0.25s ease, color 0.25s ease;
  opacity: 0;
}
.plugin-search-pro__dropdown-entity_delete-button:hover {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.plugin-search-pro__highlighted {
  font-weight: 500;
}
.plugin-search-pro__dropdown-entity_image-container {
  float: left;
  margin-right: 10px;
}
.plugin-search-pro__dropdown-entity_image {
  border-radius: var(--border-radius-small);
}
.plugin-search-pro__dropdown-entity_name {
  font-size: 0.95em;
  text-overflow: ellipsis;
  overflow: hidden;
}
.plugin-search-pro__dropdown-entity_price-container {
  margin-top: 5px;
}
.plugin-search-pro__dropdown-entity_price {
  font-size: 0.95em;
  font-weight: 500;
}
.plugin-search-pro__dropdown-entity_compare-price {
  margin-left: 5px;
  font-size: 0.8em;
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
  text-decoration: line-through;
}
.plugin-search-pro__dropdown-view-all {
  border-top: 1px solid hsl(var(--ah), var(--as), calc(var(--al) - 8%));
}
.plugin-search-pro__dropdown-view-all-link {
  display: block;
  padding: 15px 0;
  background-color: hsl(var(--ah), var(--as), calc(var(--al) + 2%));
  font-size: 0.95em;
  text-align: center;
  text-decoration: none;
  color: hsl(var(--th), var(--ts), var(--tl));
  transition: background-color 0.25s ease;
}
.plugin-search-pro__dropdown-view-all-link:hover {
  background-color: hsl(var(--ah), var(--as), var(--al));
}
.plugin-search-pro__dropdown-view-all-count {
  margin-left: 5px;
}
.plugin-search-pro__center {
  max-width: var(--frame-width);
  margin: 0 auto;
  padding-top: var(--frame-padding-mobile);
  box-sizing: border-box;
}
.plugin-search-pro__page-description {
  color: hsl(var(--th), var(--ts), calc(var(--tl) + 40%));
  line-height: 1.45em;
}
.plugin-search-pro__page-description:not(:empty) {
  margin-top: 5px;
}
.plugin-search-pro__page-description a {
  text-decoration: none;
  color: hsl(var(--ph), var(--ps), var(--pl));
  transition: color 0.25s ease;
}
.plugin-search-pro__page-description a:hover {
  color: hsl(var(--th), var(--ts), var(--tl));
}
.plugin-search-pro__categories {
  margin-top: var(--gap);
}
.plugin-search-pro__controls {
  display: flex;
  gap: var(--gap-small);
  justify-content: flex-start;
  align-items: center;
  margin-top: var(--gap);
}
.plugin-search-pro__form {
  padding-bottom: 110px;
}
.plugin-search-pro__filter-controls {
  position: fixed;
  bottom: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 1rem 1.2rem;
  box-sizing: border-box;
  background-color: hsl(var(--bh), var(--bs), var(--bl));
  box-shadow: 0 -1px 7px hsla(0, 0%, 0%, 0.1);
  z-index: 1;
}
.plugin-search-pro__filter-controls .plugin-search-pro__submit.is-wide {
  width: 100%;
  max-width: unset;
}
.plugin-search-pro__reset {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: var(--gap-small) auto 0;
  font-size: 0.95em;
  line-height: 1.45em;
  cursor: pointer;
}
.plugin-search-pro__reset .icon-reload {
  display: block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
  fill: hsl(13, 100%, 63%);
}
@media (min-width: 768px) {
  .plugin-search-pro__field-categories-container {
    display: block;
  }
  .plugin-search-pro__center {
    padding-top: var(--frame-padding);
  }
  .plugin-search-pro__field-container {
    height: 42px;
  }
  .plugin-search-pro__field-button {
    font-size: 1em;
  }
}
