.carousel {
  position: relative;
  box-sizing: border-box;
}
.carousel *,
.carousel *:before,
.carousel *:after {
  box-sizing: inherit;
}
.carousel.is-draggable {
  cursor: move;
  cursor: grab;
}
.carousel.is-dragging {
  cursor: move;
  cursor: grabbing;
}
.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%;
}
.carousel__track {
  display: flex;
}
.carousel__slide {
  flex: 0 0 auto;
  width: var(--carousel-slide-width,60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.has-dots {
  margin-bottom: calc(22.5rem);
}
.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100.5%);
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  list-style: none;
  user-select: none;
}
.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: currentColor;
  opacity: .25;
  transition: opacity .15s ease-in-out;
}
.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1;
}
.carousel__button {
  width: var(--carousel-button-width,48px);
  height: var(--carousel-button-height,48px);
  padding: 0;
  border: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color,currentColor);
  background: var(--carousel-button-bg,transparent);
  border-radius: var(--carousel-button-border-radius,50%);
  box-shadow: var(--carousel-button-shadow,none);
  transition: opacity .15s ease;
}
.carousel__button.is-prev,
.carousel__button.is-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.carousel__button.is-prev {
  left: 10px;
}
.carousel__button.is-next {
  right: 10px;
}
.carousel__button[disabled] {
  cursor: default;
  opacity: .3;
}
.carousel__button svg {
  width: var(--carousel-button-svg-width,50%);
  height: var(--carousel-button-svg-height,50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width,1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  filter: var(--carousel-button-svg-filter,none);
  pointer-events: none;
}
html.with-fancybox {
  scroll-behavior: auto;
}
body.compensate-for-scrollbar {
  overflow: hidden !important;
  touch-action: none;
}
.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top,0px) env(safe-area-inset-right,0px) env(safe-area-inset-bottom,0px) env(safe-area-inset-left,0px);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  color: var(--fancybox-color,#fff);
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  overflow: hidden;
  z-index: 1050;
  outline: none;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0,0,0,0.4));
}
.fancybox__container *,
.fancybox__container *::before,
.fancybox__container *::after {
  box-sizing: inherit;
}
.fancybox__container :focus {
  outline: none;
}
body:not(.is-using-mouse) .fancybox__container :focus {
  box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color,rgba(1,210,232,0.94));
}
@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px;
  }
}
.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg,rgba(24,24,27,0.92));
}
.fancybox__carousel {
  position: relative;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10;
}
.fancybox__carousel.has-dots {
  margin-bottom: calc(22.5rem);
}
.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default;
}
.fancybox__track {
  display: flex;
  height: 100%;
}
.fancybox__slide {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  overscroll-behavior: contain;
  display: flex;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px;
}
.fancybox__slide::before,
.fancybox__slide::after {
  content: "";
  flex: 0 0 0;
  margin: auto;
}
@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding: 64px 100px;
  }
}
.fancybox__content {
  margin: 0 env(safe-area-inset-right,0px) 0 env(safe-area-inset-left,0px);
  padding: 36px;
  color: var(--fancybox-content-color,#374151);
  background: var(--fancybox-content-bg,#fff);
  position: relative;
  align-self: center;
  display: flex;
  flex-direction: column;
  z-index: 20;
}
.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  box-shadow: none;
}
.fancybox__caption {
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color,currentColor);
  visibility: visible;
  cursor: auto;
  flex-shrink: 0;
  overflow-wrap: anywhere;
}
.is-loading .fancybox__caption {
  visibility: hidden;
}
.fancybox__container>.carousel__dots {
  top: 100%;
  color: var(--fancybox-color,#fff);
}
.fancybox__nav .carousel__button {
  z-index: 40;
}
.fancybox__nav .carousel__button.is-next {
  right: 8px;
}
@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right: 40px;
  }
}
.fancybox__nav .carousel__button.is-prev {
  left: 8px;
}
@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left: 40px;
  }
}
.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top,0px) + 8px);
  right: calc(env(safe-area-inset-right,0px) + 8px);
  z-index: 40;
}
@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right: 40px;
  }
}
.fancybox__content>.carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color,#fff);
}
.fancybox__no-click,
.fancybox__no-click button {
  pointer-events: none;
}
.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color,currentColor);
}
.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053;
}
.fancybox__spinner svg {
  animation: fancybox-rotate 2s linear infinite;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}
.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1, 200;
  stroke-dashoffset: 0;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor;
}
@keyframes fancybox-rotate {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -35px;
  }
  100% {
    stroke-dasharray: 89, 200;
    stroke-dashoffset: -124px;
  }
}
.fancybox__backdrop,
.fancybox__caption,
.fancybox__nav,
.carousel__dots,
.carousel__button.is-close {
  opacity: var(--fancybox-opacity,1);
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop,
.fancybox__container.is-animated[aria-hidden=false] .fancybox__caption,
.fancybox__container.is-animated[aria-hidden=false] .fancybox__nav,
.fancybox__container.is-animated[aria-hidden=false] .carousel__dots,
.fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
  animation: .15s ease backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__backdrop,
.fancybox__container.is-animated.is-closing .fancybox__caption,
.fancybox__container.is-animated.is-closing .fancybox__nav,
.fancybox__container.is-animated.is-closing .carousel__dots,
.fancybox__container.is-animated.is-closing .carousel__button.is-close {
  animation: .15s ease both fancybox-fadeOut;
}
.fancybox-fadeIn {
  animation: .15s ease both fancybox-fadeIn;
}
.fancybox-fadeOut {
  animation: .1s ease both fancybox-fadeOut;
}
.fancybox-zoomInUp {
  animation: .2s ease both fancybox-zoomInUp;
}
.fancybox-zoomOutDown {
  animation: .15s ease both fancybox-zoomOutDown;
}
.fancybox-throwOutUp {
  animation: .15s ease both fancybox-throwOutUp;
}
.fancybox-throwOutDown {
  animation: .15s ease both fancybox-throwOutDown;
}
@keyframes fancybox-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fancybox-fadeOut {
  to {
    opacity: 0;
  }
}
@keyframes fancybox-zoomInUp {
  from {
    transform: scale(0.97) translate3d(0,16px,0);
    opacity: 0;
  }
  to {
    transform: scale(1) translate3d(0,0,0);
    opacity: 1;
  }
}
@keyframes fancybox-zoomOutDown {
  to {
    transform: scale(0.97) translate3d(0,16px,0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutUp {
  to {
    transform: translate3d(0,-30%,0);
    opacity: 0;
  }
}
@keyframes fancybox-throwOutDown {
  to {
    transform: translate3d(0,30%,0);
    opacity: 0;
  }
}
.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255,255,255,0.1);
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255,255,255,0.1);
}
.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.2);
}
.fancybox__carousel.is-draggable .fancybox__slide,
.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grab;
}
.fancybox__carousel.is-dragging .fancybox__slide,
.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: grabbing;
}
.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto;
}
.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: zoom-in;
}
.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: zoom-out;
}
.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: grab;
}
.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: grabbing;
}
.fancybox__image {
  transform-origin: 0 0;
  user-select: none;
  transition: none;
}
.has-image .fancybox__content {
  padding: 0;
  background: rgba(0,0,0,0);
  min-height: 1px;
}
.is-closing .has-image .fancybox__content {
  overflow: visible;
}
.has-image[data-image-fit=contain] {
  overflow: visible;
  touch-action: none;
}
.has-image[data-image-fit=contain] .fancybox__content {
  flex-direction: row;
  flex-wrap: wrap;
}
.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto;
}
.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto;
}
.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto;
}
.has-image[data-image-fit=cover] {
  overflow: visible;
  touch-action: none;
}
.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%;
}
.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  max-width: 100%;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}
.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%;
}
.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content,
.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24,24,27,0.9);
  color: #fff;
}
.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df;
}
.fancybox__html5video,
.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0);
}
.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
.fancybox__thumbs {
  flex: 0 0 auto;
  position: relative;
  padding: 0px 3px;
  opacity: var(--fancybox-opacity,1);
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  animation: .15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0;
}
.fancybox__thumbs .carousel__slide {
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width,96px);
  margin: 0;
  padding: 8px 3px;
  box-sizing: content-box;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  cursor: pointer;
}
.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color,rgba(34,213,233,0.96));
  opacity: 0;
  transition: opacity .15s ease;
  border-radius: var(--fancybox-thumbs-border-radius,4px);
}
.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: .92;
}
.fancybox__thumbs .carousel__slide>* {
  pointer-events: none;
  user-select: none;
}
.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100%/var(--fancybox-thumbs-ratio,1.5));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255,255,255,0.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius,4px);
}
.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: linear-gradient(to top,rgba(0,0,0,0) 0%,rgba(0,0,0,0.006) 8.1%,rgba(0,0,0,0.021) 15.5%,rgba(0,0,0,0.046) 22.5%,rgba(0,0,0,0.077) 29%,rgba(0,0,0,0.114) 35.3%,rgba(0,0,0,0.155) 41.2%,rgba(0,0,0,0.198) 47.1%,rgba(0,0,0,0.242) 52.9%,rgba(0,0,0,0.285) 58.8%,rgba(0,0,0,0.326) 64.7%,rgba(0,0,0,0.363) 71%,rgba(0,0,0,0.394) 77.5%,rgba(0,0,0,0.419) 84.5%,rgba(0,0,0,0.434) 91.9%,rgba(0,0,0,0.44) 100%);
  padding: 0;
  touch-action: none;
  display: flex;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity,1);
  text-shadow: var(--fancybox-toolbar-text-shadow,1px 1px 1px rgba(0,0,0,0.4));
}
@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding: 8px;
  }
}
.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  animation: .15s ease-in backwards fancybox-fadeIn;
}
.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0;
}
.fancybox__toolbar__items {
  display: flex;
}
.fancybox__toolbar__items--left {
  margin-right: auto;
}
.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.fancybox__toolbar__items--right {
  margin-left: auto;
}
@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display: none;
  }
}
.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height,48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
}
.fancybox__progress {
  background: var(--fancybox-accent-color,rgba(34,213,233,0.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: scaleX(0);
  transform-origin: 0;
  transition-property: transform;
  transition-timing-function: linear;
  z-index: 30;
  user-select: none;
}
.fancybox__container:fullscreen::backdrop {
  opacity: 0;
}
.fancybox__button--fullscreen g:nth-child(2) {
  display: none;
}
.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none;
}
.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block;
}
.fancybox__button--slideshow g:nth-child(2) {
  display: none;
}
.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none;
}
.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block;
}
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function,initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px,0,0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0,0,0,0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left,rgba(0,0,0,0.5),rgba(0,0,0,0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right,rgba(0,0,0,0.5),rgba(0,0,0,0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top,rgba(0,0,0,0.5),rgba(0,0,0,0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom,rgba(0,0,0,0.5),rgba(0,0,0,0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color,var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset,50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color,var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset,10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset,10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset,10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0,0,0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom,8px);
  top: var(--swiper-pagination-top,auto);
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width,var(--swiper-pagination-bullet-size,8px));
  height: var(--swiper-pagination-bullet-height,var(--swiper-pagination-bullet-size,8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius,50%);
  background: var(--swiper-pagination-bullet-inactive-color,#000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity,0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity,1);
  background: var(--swiper-pagination-color,var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right,8px);
  left: var(--swiper-pagination-left,auto);
  top: 50%;
  transform: translate3d(0px,-50%,0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap,6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap,4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color,inherit);
}
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color,rgba(0,0,0,0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color,var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size,4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size,4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius,10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color,rgba(0,0,0,0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset,1%);
  bottom: var(--swiper-scrollbar-bottom,4px);
  top: var(--swiper-scrollbar-top,auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size,4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%));
}
.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left,auto);
  right: var(--swiper-scrollbar-right,4px);
  top: var(--swiper-scrollbar-sides-offset,1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size,4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset,1%));
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color,rgba(0,0,0,0.5));
  border-radius: var(--swiper-scrollbar-border-radius,10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube {
  overflow: visible;
}
.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}
.noUi-target,
.noUi-target * {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  -webkit-user-select: none;
  -ms-touch-action: none;
  touch-action: none;
  -ms-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-target {
  position: relative;
}
.noUi-base,
.noUi-connects {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.noUi-connects {
  overflow: hidden;
  z-index: 0;
}
.noUi-connect,
.noUi-origin {
  will-change: transform;
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  -ms-transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  -webkit-transform-style: preserve-3d;
  transform-origin: 0 0;
  transform-style: flat;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-origin {
  left: 0;
  right: auto;
}
.noUi-vertical .noUi-origin {
  top: -100%;
  width: 0;
}
.noUi-horizontal .noUi-origin {
  height: 0;
}
.noUi-handle {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  cursor: pointer;
}
.noUi-touch-area {
  height: 100%;
  width: 100%;
}
.noUi-state-tap .noUi-connect,
.noUi-state-tap .noUi-origin {
  -webkit-transition: transform 0.3s;
  transition: transform 0.3s;
}
.noUi-state-drag * {
  cursor: inherit !important;
}
.noUi-horizontal {
  height: 18px;
}
.noUi-horizontal .noUi-handle {
  width: 34px;
  height: 28px;
  right: -17px;
  top: -6px;
}
.noUi-vertical {
  width: 18px;
}
.noUi-vertical .noUi-handle {
  width: 28px;
  height: 34px;
  right: -6px;
  bottom: -17px;
}
.noUi-txt-dir-rtl.noUi-horizontal .noUi-handle {
  left: -17px;
  right: auto;
}
.noUi-target {
  background: #FAFAFA;
  border-radius: 4px;
  border: 1px solid #D3D3D3;
  box-shadow: inset 0 1px 1px #F0F0F0, 0 3px 6px -5px #BBB;
}
.noUi-connects {
  border-radius: 3px;
}
.noUi-connect {
  background: #425fb2;
}
.noUi-draggable {
  cursor: ew-resize;
}
.noUi-vertical .noUi-draggable {
  cursor: ns-resize;
}
.noUi-handle {
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  background: #FFF;
  cursor: default;
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #EBEBEB, 0 3px 6px -3px #BBB;
}
.noUi-active {
  box-shadow: inset 0 0 1px #FFF, inset 0 1px 7px #DDD, 0 3px 6px -3px #BBB;
}
.noUi-handle:before,
.noUi-handle:after {
  content: "";
  display: block;
  position: absolute;
  height: 14px;
  width: 1px;
  background: #E8E7E6;
  left: 14px;
  top: 6px;
}
.noUi-handle:after {
  left: 17px;
}
.noUi-vertical .noUi-handle:before,
.noUi-vertical .noUi-handle:after {
  width: 14px;
  height: 1px;
  left: 6px;
  top: 14px;
}
.noUi-vertical .noUi-handle:after {
  top: 17px;
}
[disabled] .noUi-connect {
  background: #B8B8B8;
}
[disabled].noUi-target,
[disabled].noUi-handle,
[disabled] .noUi-handle {
  cursor: not-allowed;
}
.noUi-pips,
.noUi-pips * {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.noUi-pips {
  position: absolute;
  color: #999;
}
.noUi-value {
  position: absolute;
  white-space: nowrap;
  text-align: center;
}
.noUi-value-sub {
  color: #ccc;
  font-size: 10px;
}
.noUi-marker {
  position: absolute;
  background: #CCC;
}
.noUi-marker-sub {
  background: #AAA;
}
.noUi-marker-large {
  background: #AAA;
}
.noUi-pips-horizontal {
  padding: 10px 0;
  height: 80px;
  top: 100%;
  left: 0;
  width: 100%;
}
.noUi-value-horizontal {
  -webkit-transform: translate(-50%,50%);
  transform: translate(-50%,50%);
}
.noUi-rtl .noUi-value-horizontal {
  -webkit-transform: translate(50%,50%);
  transform: translate(50%,50%);
}
.noUi-marker-horizontal.noUi-marker {
  margin-left: -1px;
  width: 2px;
  height: 5px;
}
.noUi-marker-horizontal.noUi-marker-sub {
  height: 10px;
}
.noUi-marker-horizontal.noUi-marker-large {
  height: 15px;
}
.noUi-pips-vertical {
  padding: 0 10px;
  height: 100%;
  top: 0;
  left: 100%;
}
.noUi-value-vertical {
  -webkit-transform: translate(0,-50%);
  transform: translate(0,-50%);
  padding-left: 25px;
}
.noUi-rtl .noUi-value-vertical {
  -webkit-transform: translate(0,50%);
  transform: translate(0,50%);
}
.noUi-marker-vertical.noUi-marker {
  width: 5px;
  height: 2px;
  margin-top: -1px;
}
.noUi-marker-vertical.noUi-marker-sub {
  width: 10px;
}
.noUi-marker-vertical.noUi-marker-large {
  width: 15px;
}
.noUi-tooltip {
  display: block;
  position: absolute;
  border: 1px solid #cdcdcd;
  border-radius: 10px;
  background: #fff;
  color: #000;
  padding: 5px;
  text-align: center;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 600;
}
.noUi-horizontal .noUi-tooltip {
  -webkit-transform: translate(-50%,0);
  transform: translate(-50%,0);
  left: 50%;
  bottom: 120%;
}
.noUi-vertical .noUi-tooltip {
  -webkit-transform: translate(0,-50%);
  transform: translate(0,-50%);
  top: 50%;
  right: 120%;
}
.noUi-horizontal .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(50%,0);
  transform: translate(50%,0);
  left: auto;
  bottom: 10px;
}
.noUi-vertical .noUi-origin > .noUi-tooltip {
  -webkit-transform: translate(0,-18px);
  transform: translate(0,-18px);
  top: auto;
  right: 28px;
}
@-webkit-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%,
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@-moz-keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%,
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@keyframes passing-through {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30%,
  70% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    -moz-transform: translateY(-40px);
    -ms-transform: translateY(-40px);
    -o-transform: translateY(-40px);
    transform: translateY(-40px);
  }
}
@-webkit-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-moz-keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@keyframes slide-in {
  0% {
    opacity: 0;
    -webkit-transform: translateY(40px);
    -moz-transform: translateY(40px);
    -ms-transform: translateY(40px);
    -o-transform: translateY(40px);
    transform: translateY(40px);
  }
  30% {
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
  }
  20% {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
  }
}
.dropzone,
.dropzone * {
  box-sizing: border-box;
}
.dropzone {
  height: 150px;
  padding: 20px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: .2;
}
.dropzone.dz-clickable {
  cursor: pointer;
  opacity: 1;
}
.dropzone.dz-clickable * {
  cursor: default;
}
.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
  cursor: pointer;
}
.dropzone.dz-started .dz-message {
  display: none;
}
.dropzone.dz-drag-hover {
  border-style: solid;
}
.dropzone.dz-drag-hover .dz-message {
  opacity: .5;
}
.dropzone .dz-message {
  text-align: center;
  margin: 40px 0 20px;
  position: relative;
}
.dropzone .dz-message::before {
  content: '';
  position: absolute;
  width: 36px;
  height: 36px;
  top: -40px;
  left: 50%;
  margin-left: -18px;
  background: url(../img/icons/upload.svg) no-repeat center;
  background-size: contain;
}
.dropzone .dz-message .dz-button {
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  outline: inherit;
}
.dropzone .dz-preview {
  position: relative;
  display: inline-block;
  vertical-align: top;
  margin: 16px;
  min-height: 100px;
}
.dropzone .dz-preview:hover {
  z-index: 1000;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
  border-radius: 20px;
  background: #999;
  background: linear-gradient(to bottom,#eee,#ddd);
}
.dropzone .dz-preview.dz-file-preview .dz-details {
  opacity: 1;
}
.dropzone .dz-preview.dz-image-preview {
  background: #fff;
}
.dropzone .dz-preview.dz-image-preview .dz-details {
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  -ms-transition: opacity 0.2s linear;
  -o-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}
.dropzone .dz-preview .dz-remove {
  font-size: 14px;
  text-align: center;
  display: block;
  cursor: pointer;
  border: none;
}
.dropzone .dz-preview .dz-remove:hover {
  text-decoration: underline;
}
.dropzone .dz-preview:hover .dz-details {
  opacity: 1;
}
.dropzone .dz-preview .dz-details {
  z-index: 20;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  font-size: 13px;
  min-width: 100%;
  max-width: 100%;
  padding: 2em 1em;
  text-align: center;
  color: rgba(0,0,0,0.9);
  line-height: 150%;
}
.dropzone .dz-preview .dz-details .dz-size {
  margin-bottom: 1em;
  font-size: 16px;
}
.dropzone .dz-preview .dz-details .dz-filename {
  white-space: nowrap;
}
.dropzone .dz-preview .dz-details .dz-filename:hover span {
  border: 1px solid rgba(200,200,200,0.8);
  background-color: rgba(255,255,255,0.8);
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
  overflow: hidden;
  text-overflow: ellipsis;
}
.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
  border: 1px solid transparent;
}
.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
  background-color: rgba(255,255,255,0.4);
  padding: 0 .4em;
  border-radius: 3px;
}
.dropzone .dz-preview:hover .dz-image img {
  -webkit-transform: scale(1.05,1.05);
  -moz-transform: scale(1.05,1.05);
  -ms-transform: scale(1.05,1.05);
  -o-transform: scale(1.05,1.05);
  transform: scale(1.05,1.05);
  -webkit-filter: blur(8px);
  filter: blur(8px);
}
.dropzone .dz-preview .dz-image {
  border-radius: 20px;
  overflow: hidden;
  width: 120px;
  height: 120px;
  position: relative;
  display: block;
  z-index: 10;
}
.dropzone .dz-preview .dz-image img {
  display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark {
  -webkit-animation: passing-through 3s cubic-bezier(0.77,0,0.175,1);
  -moz-animation: passing-through 3s cubic-bezier(0.77,0,0.175,1);
  -ms-animation: passing-through 3s cubic-bezier(0.77,0,0.175,1);
  -o-animation: passing-through 3s cubic-bezier(0.77,0,0.175,1);
  animation: passing-through 3s cubic-bezier(0.77,0,0.175,1);
}
.dropzone .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -webkit-animation: slide-in 3s cubic-bezier(0.77,0,0.175,1);
  -moz-animation: slide-in 3s cubic-bezier(0.77,0,0.175,1);
  -ms-animation: slide-in 3s cubic-bezier(0.77,0,0.175,1);
  -o-animation: slide-in 3s cubic-bezier(0.77,0,0.175,1);
  animation: slide-in 3s cubic-bezier(0.77,0,0.175,1);
}
.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
  pointer-events: none;
  opacity: 0;
  z-index: 500;
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  margin-left: -27px;
  margin-top: -27px;
}
.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
  display: block;
  width: 54px;
  height: 54px;
}
.dropzone .dz-preview.dz-processing .dz-progress {
  opacity: 1;
  -webkit-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
.dropzone .dz-preview.dz-complete .dz-progress {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in;
  -moz-transition: opacity 0.4s ease-in;
  -ms-transition: opacity 0.4s ease-in;
  -o-transition: opacity 0.4s ease-in;
  transition: opacity 0.4s ease-in;
}
.dropzone .dz-preview:not(.dz-processing) .dz-progress {
  -webkit-animation: pulse 6s ease infinite;
  -moz-animation: pulse 6s ease infinite;
  -ms-animation: pulse 6s ease infinite;
  -o-animation: pulse 6s ease infinite;
  animation: pulse 6s ease infinite;
}
.dropzone .dz-preview .dz-progress {
  opacity: 1;
  z-index: 1000;
  pointer-events: none;
  position: absolute;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-top: -8px;
  width: 80px;
  margin-left: -40px;
  background: rgba(255,255,255,0.9);
  -webkit-transform: scale(1);
  border-radius: 8px;
  overflow: hidden;
}
.dropzone .dz-preview .dz-progress .dz-upload {
  background: #333;
  background: linear-gradient(to bottom,#666,#444);
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0;
  -webkit-transition: width 300ms ease-in-out;
  -moz-transition: width 300ms ease-in-out;
  -ms-transition: width 300ms ease-in-out;
  -o-transition: width 300ms ease-in-out;
  transition: width 300ms ease-in-out;
}
.dropzone .dz-preview.dz-error .dz-error-message {
  display: block;
}
.dropzone .dz-preview.dz-error:hover .dz-error-message {
  opacity: 1;
  pointer-events: auto;
}
.dropzone .dz-preview .dz-error-message {
  pointer-events: none;
  z-index: 1000;
  position: absolute;
  display: block;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  -moz-transition: opacity 0.3s ease;
  -ms-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  border-radius: 8px;
  font-size: 13px;
  top: 130px;
  left: -10px;
  width: 140px;
  background: #be2626;
  background: linear-gradient(to bottom,#be2626,#a92222);
  padding: .5em 1.2em;
  color: #fff;
}
.dropzone .dz-preview .dz-error-message:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 64px;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid #be2626;
}
body {
  padding: 0;
  margin: 0;
  font: 13px Arial, Helvetica, Garuda, sans-serif;
  font-size: small;
  font: x-small;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}
body.no-transition * {
  transition: none !important;
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -ms-transition: none !important;
  -o-transition: none !important;
}
article,
aside,
figure,
footer,
header,
nav,
section,
details,
summary,
main {
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6,
ul,
li,
em,
strong,
pre,
code,
p,
blockquote {
  padding: 0;
  margin: 0;
  line-height: 1em;
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
}
table {
  font-size: inherit;
  font: 100%;
}
.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu li {
  margin: 0;
  padding: 0;
  line-height: 1em;
  background: none;
}
img {
  border: 0;
  max-width: 100%;
}
a {
  text-decoration: none;
}
input,
select,
textarea {
  font: inherit;
}
.pathway {
  margin: 0;
  padding: 0;
}
.pathway li {
  display: inline-block;
}
*,
*:before,
*:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
@font-face {
  font-display: swap;
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/ibm-plex-sans-v22-latin-regular.woff2") format("woff2"), url("/fonts/ibm-plex-sans-v22-latin-regular.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/ibm-plex-sans-v22-latin-500.woff2") format("woff2"), url("/fonts/ibm-plex-sans-v22-latin-500.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "IBM Plex Sans";
  font-style: normal;
  font-weight: 600;
  src: url("/fonts/ibm-plex-sans-v22-latin-600.woff2") format("woff2"), url("/fonts/ibm-plex-sans-v22-latin-600.ttf") format("truetype");
}
html {
  font-size: 16px;
}
@media screen and (max-width: 700px) {
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 550px) {
  html {
    font-size: 16px;
  }
}
body {
  color: #333333;
  font-family: "IBM Plex Sans", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
a {
  color: #333333;
}
p {
  margin-bottom: 1em;
  line-height: 1.4em;
}
p:last-child {
  margin-bottom: 0;
}
em {
  font-style: italic;
}
strong {
  font-weight: 500;
}
blockquote {
  font-size: 1.4em;
  margin-bottom: 1em;
}
blockquote * {
  line-height: 1.1em;
}
dl {
  margin: 0 0 1.5em 1em;
  padding: 0;
}
dd,
dt {
  margin: 0;
  padding: 0;
}
dt {
  margin-bottom: 0.1em;
}
dd {
  margin-bottom: 1em;
  font-weight: bold;
  line-height: 1.4em;
}
ul {
  margin: 0 0 1.5em 1em;
  padding: 0;
}
li {
  margin-bottom: 1em;
}
.regular {
  font-weight: 400;
}
.medium {
  font-weight: 500;
}
.semibold {
  font-weight: 600;
}
.font-44 {
  font-size: clamp(25px,2.29152vw,44px);
  line-height: 1.2em;
  letter-spacing: -0.02em;
}
.font-35 {
  font-size: clamp(22px,1.8228vw,35px);
  line-height: 1em;
}
.font-32 {
  font-size: clamp(20px,1.66656vw,32px);
  line-height: 1.2em;
}
.font-28 {
  font-size: clamp(20px,1.45824vw,28px);
  line-height: 1.2em;
}
.font-23 {
  font-size: clamp(18px,1.19784vw,23px);
  line-height: 1.2em;
}
.font-18 {
  font-size: 1rem;
  line-height: 1.5em;
}
.font-16 {
  font-size: 0.89rem;
  line-height: 1.2em;
}
@media screen and (max-width: 550px) {
  .font-16 {
    font-size: 14px;
  }
}
.font-14 {
  font-size: 14px;
}
.big-heading {
  font-size: clamp(25px,2.29152vw,44px);
  line-height: 1.2em;
  letter-spacing: -0.02em;
  margin-bottom: 0.4em;
}
.heading {
  font-size: clamp(20px,1.66656vw,32px);
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 1em;
}
.heading-small {
  font-size: clamp(18px,1.19784vw,23px);
  line-height: 1.2em;
  font-weight: 600;
  margin-bottom: 1em;
}
.paragraph {
  font-size: 1rem;
  line-height: 1.5em;
  max-width: 450px;
}
.paragraph--small {
  font-size: 0.89rem;
  line-height: 1.2em;
}
@media screen and (max-width: 550px) {
  .paragraph--small {
    font-size: 14px;
  }
}
.color-main {
  color: #425fb2;
}
html {
  scrollbar-width: none;
}
body {
  -ms-overflow-style: none;
}
body::-webkit-scrollbar {
  display: none;
}
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: #f0f0f0;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background-color: #425fb2;
  border-radius: 10px;
  border: 1px solid #344b8d;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #555;
}
* {
  scrollbar-width: thin;
  scrollbar-color: #425fb2 #f0f0f0;
}
.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
.body {
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}
.body.scroll-locked {
  overflow: hidden;
  overflow-y: hidden;
}
.main {
  flex-grow: 1;
}
img {
  display: block;
  width: 100%;
}
svg {
  overflow: visible;
  max-width: 100%;
  height: auto;
  display: block;
}
video {
  width: 100%;
  display: block;
}
.success-color {
  color: #2bbb23 !important;
}
.error-color {
  color: #bb2323 !important;
}
.overlay {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
.mobile-margin {
  margin-left: max(15px,5vw);
  margin-right: max(15px,5vw);
}
.spinner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-grow: 1;
  min-height: 30px;
}
.spinner::after {
  content: "";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
  border-top: 2px solid #333333;
  border-right: 2px solid transparent;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
:root {
  --swiper-navigation-size: 16px;
  --swiper-theme-color: #333333;
}
input,
textarea,
select,
button {
  border: none;
  webkit-appearance: none;
  appearance: none;
  background: none;
  font: inherit;
  box-shadow: none;
  border-radius: 0;
  width: 100%;
  padding: 0;
  outline: none;
}
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 1px solid #333333;
  -webkit-text-fill-color: #333333;
  -webkit-box-shadow: 0 0 0px 1000px #fff inset;
  transition: background-color 5000s ease-in-out 0s;
}
button {
  width: auto;
  cursor: pointer;
}
input[type="text"],
input[type="tel"],
input[type="date"],
input[type="password"],
input[type="email"],
input[type="number"],
textarea,
select {
  height: 55px;
  line-height: 55px;
  border: 1px solid #333333;
  padding: 0 15px;
  font-size: 16px;
  transition: 300ms;
  background: #fff;
  color: #333333;
  border-radius: 4px;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  border-color: #808080;
}
@media screen and (max-width: 1550px) {
  input[type="text"],
  input[type="tel"],
  input[type="date"],
  input[type="password"],
  input[type="email"],
  input[type="number"],
  textarea,
  select {
    height: 50px;
    line-height: 50px;
  }
}
@media screen and (max-width: 700px) {
  input[type="text"],
  input[type="tel"],
  input[type="date"],
  input[type="password"],
  input[type="email"],
  input[type="number"],
  textarea,
  select {
    height: 45px;
    line-height: 45px;
  }
}
select {
  background-image: url(../img/icons/select-dropdown.svg);
  background-repeat: no-repeat;
  background-position: right 10px center;
}
textarea {
  line-height: 1.2em;
  padding: 15px;
  height: auto;
}
label {
  display: block;
  margin-bottom: 3px;
  font-size: 14px;
  font-weight: bold;
}
.input {
  margin-bottom: 12px;
}
.radio label,
.checkbox label {
  position: relative;
  cursor: pointer;
  font-size: 15px;
  display: block;
  margin-bottom: 10px;
  font-weight: normal;
}
.radio label input,
.checkbox label input {
  width: 0;
  height: 0;
  transform: scale(0);
  -webkit-transform: scale(0);
  position: absolute;
  top: 0;
  left: -10px;
}
.radio label input:checked ~ span::before,
.checkbox label input:checked ~ span::before {
  box-shadow: 0 0 0 3px #fff inset;
  background: #333333;
}
.radio label input:disabled ~ span,
.checkbox label input:disabled ~ span {
  opacity: .2;
}
.radio label > span,
.checkbox label > span {
  display: flex;
  align-items: flex-start;
  gap: 7px;
}
.radio label > span::before,
.checkbox label > span::before {
  content: "";
  position: static;
  width: 20px;
  border-radius: 3px;
  height: 20px;
  display: block;
  border: 1px solid #333333;
  flex-shrink: 0;
}
.radio--light label > span::before,
.checkbox--light label > span::before {
  border-color: #fff;
}
.radio__group > label {
  color: #333333;
}
.radio__group-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 1em;
}
.radio label {
  display: flex;
  gap: 0.2em;
}
.radio label > span {
  align-items: center;
}
.radio label > span::before {
  width: 0.85em;
  height: 0.85em;
  border-radius: 50%;
  border-width: 1px;
  flex-shrink: 0;
  border-color: #333333;
}
.radio label input:checked ~ span::before {
  box-shadow: 0 0 0 2px #fff inset;
  background: #333333;
}
.radio label input:checked ~ span::before {
  background-color: black;
}
.checkbox label {
  font-weight: normal;
}
.checkbox label a {
  color: inherit;
  text-decoration: underline;
}
.input-hint,
.error-message {
  display: block;
  font-size: 12px;
  text-transform: none;
  margin-top: 1px;
}
.error-message {
  color: #bb2323;
  margin-bottom: 0;
  font-weight: 500;
}
.privacy-disclaimer {
  margin-bottom: 30px;
}
.required label::after {
  content: " *";
}
.required.checkbox label::after {
  display: none;
}
.required.radio .radio__group-options label::after {
  content: none;
}
.form-privacy {
  margin-bottom: 15px;
  font-size: 0.8rem;
}
.form-privacy .input:last-child {
  margin: 0;
}
.form-privacy a {
  color: inherit;
  text-decoration: underline;
}
.number-input .input {
  margin: 0;
}
.number-input input {
  text-align: center;
  padding: 0;
  width: 60px;
  height: 40px;
  line-height: 40px;
}
@media screen and (max-width: 700px) {
  .number-input input {
    height: 35px;
    line-height: 35px;
  }
}
.number-input__wrapper {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 5px;
}
.number-input__button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  background: #425fb2;
}
.number-input__button:not(.disabled):hover {
  background: #627cc5;
}
.number-input__button.disabled {
  cursor: not-allowed;
  opacity: 0.2;
}
@media screen and (max-width: 700px) {
  .number-input__button {
    width: 35px;
    height: 35px;
  }
}
.number-input__label {
  font-weight: bold;
  text-align: center;
  display: block;
  margin-bottom: 0.2rem;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  height: 55px;
  line-height: 55px;
  padding: 0 2em;
  background: #425fb2;
  color: #fff;
  font-size: 1rem;
  font-size: 16px;
  cursor: pointer;
  border-radius: 40px;
  transition: 300ms;
  position: relative;
  font-weight: 600;
}
@media screen and (max-width: 1200px) {
  .button {
    height: 45px;
    line-height: 45px;
    font-size: 14px;
  }
}
.button--small {
  height: 45px;
  line-height: 45px;
  font-size: 14px;
}
.button:hover {
  background: #506cbe;
}
.button__spinner {
  position: absolute;
  right: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  line-height: 0;
  left: 50%;
  width: 25px;
  opacity: 0;
}
.button__spinner svg {
  animation: rotation 800ms linear infinite;
  animation-play-state: paused;
  width: 30px;
}
.button--full {
  text-align: center;
  width: 100%;
}
.button--ghost {
  background: #fff;
  color: #425fb2;
  box-shadow: 0 0 0 1px #425fb2 inset;
}
.button--ghost:hover {
  background: #fff;
  box-shadow: 0 0 0 2px #425fb2 inset;
}
.button--disabled {
  opacity: 0.2;
}
.button svg {
  flex-shrink: 0;
  width: 1.65em;
  height: 1.65em;
}
.button svg path {
  stroke: #fff;
}
.button--success {
  background-color: #f5d420;
  color: #333333;
  box-shadow: 0 0 0px rgba(0,0,0,0.16);
}
.button--success:hover {
  background: #f8e269;
  box-shadow: 0 0 10px rgba(0,0,0,0.16);
}
.button--success svg path {
  stroke: #333333;
}
.button--cart-alt {
  background-color: #eda02d;
  box-shadow: 0 0 0px rgba(0,0,0,0.16);
}
.button--cart-alt:hover {
  background: #f3c073;
  box-shadow: 0 0 10px rgba(0,0,0,0.16);
}
.button--loading.loading .button__spinner {
  opacity: 1;
}
.button--loading.loading .button__spinner svg {
  animation-play-state: running;
}
.button--loading.loading .button__text {
  opacity: 0;
}
.button--hidden {
  display: none;
}
#article {
  padding: 150px 5vw;
  font-size: 1.1rem;
}
#cookie_reload {
  cursor: pointer;
}
#cookiedisclaimer2022 {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 999999;
  background: rgba(0,0,0,0.35);
  transition: opacity .35s;
  pointer-events: all;
}
#cookiedisclaimer2022 .inner_disclaimer {
  position: fixed;
  top: 50%;
  right: 0;
  left: 0;
  padding: 75px 25px;
  text-align: center;
  color: #333;
  font-size: 15px;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  z-index: 9999;
  line-height: 1.5em;
  width: 90%;
  max-width: 600px;
  margin: 0 auto;
  transform: translateY(-50%);
  max-height: 100%;
  overflow: auto;
  transition: transform 1000ms cubic-bezier(0.165,0.840,0.440,1.000);
  letter-spacing: 0;
  font-weight: normal;
}
@media (max-width: 600px) {
  #cookiedisclaimer2022 .inner_disclaimer {
    font-size: 13px;
  }
}
#cookiedisclaimer2022.hidden {
  pointer-events: none;
  opacity: 0;
}
#cookiedisclaimer2022.hidden .inner_disclaimer {
  transform: translateY(-75%);
}
#cookiedisclaimer2022 h3 {
  font-size: 1.2em;
  margin-bottom: 2em;
  font-weight: bold;
  color: inherit;
  line-height: 1.2em;
  letter-spacing: 0;
}
#cookiedisclaimer2022 h5 {
  font-size: 1.1em;
  font-weight: bold;
}
#cookiedisclaimer2022 h6 {
  font-size: 1em;
  font-weight: bold;
}
#cookiedisclaimer2022 .cookie_options {
  margin-bottom: 2em;
  display: flex;
  justify-content: center;
}
@media (max-width: 600px) {
  #cookiedisclaimer2022 .cookie_options {
    flex-flow: column;
  }
}
#cookiedisclaimer2022 .cookie_options span {
  background: #333;
  cursor: pointer;
  display: inline-block;
  padding: 1em;
  margin: 10px;
  font-weight: 400;
  color: #fff;
  border: 1px solid #333;
  transition: background .35s;
}
@media (max-width: 600px) {
  #cookiedisclaimer2022 .cookie_options span {
    margin: 5px 0;
  }
}
#cookiedisclaimer2022 .cookie_options span:hover {
  background: #4d4d4d;
}
#cookiedisclaimer2022 .cookie_options span#cookieselect {
  color: #333;
  background: #fff;
}
#cookiedisclaimer2022 .cookie_options span#cookieselect:hover {
  background: #e6e6e6;
}
#cookiedisclaimer2022 a {
  text-decoration: underline;
  color: #808080;
  cursor: pointer;
  display: inline-block;
  padding: 5px;
}
#cookiedisclaimer2022 a:hover {
  color: #333;
}
#cookiedisclaimer2022 #cookie_close {
  position: absolute;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 50px;
  background: #333;
  color: #fff;
  cursor: pointer;
  transition: background .35s;
}
#cookiedisclaimer2022 #cookie_close:hover {
  background: #4d4d4d;
}
#cookiedisclaimer2022 #cookie_preferences {
  text-align: left;
  margin-bottom: 2em;
  display: none;
}
#cookiedisclaimer2022 #cookie_preferences.show {
  display: block;
}
#cookiedisclaimer2022 .cookie_type {
  margin-bottom: 2em;
  padding-bottom: 2em;
  border-bottom: 1px solid #999999;
}
#cookiedisclaimer2022 .cookie_type:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
#cookiedisclaimer2022 .cookie_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
#cookiedisclaimer2022 .cookie_flex h5,
#cookiedisclaimer2022 .cookie_flex h6 {
  margin: 0;
}
#cookiedisclaimer2022 .cookie_desc {
  margin-bottom: 1em;
}
#cookiedisclaimer2022 .cookie_desc:last-of-type {
  margin: 0;
}
#cookiedisclaimer2022 .cookie_type_list {
  padding-left: 20px;
  margin-top: 20px;
}
#cookiedisclaimer2022 .toggle {
  cursor: pointer;
  display: inline-block;
}
#cookiedisclaimer2022 .toggle-switch {
  display: inline-block;
  background: #ccc;
  border-radius: 16px;
  width: 58px;
  height: 32px;
  position: relative;
  vertical-align: middle;
  transition: background 0.35s;
}
#cookiedisclaimer2022 .toggle-switch:before,
#cookiedisclaimer2022 .toggle-switch:after {
  content: "";
}
#cookiedisclaimer2022 .toggle-switch:before {
  display: block;
  background: linear-gradient(to bottom,#fff 0%,#eee 100%);
  border-radius: 50%;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.25);
  width: 24px;
  height: 24px;
  position: absolute;
  top: 4px;
  left: 4px;
  transition: left 0.35s;
}
.toggle:hover #cookiedisclaimer2022 .toggle-switch:before {
  background: linear-gradient(to bottom,#fff 0%,#fff 100%);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.5);
}
#cookiedisclaimer2022 .toggle-checkbox:checked + .toggle-switch {
  background: #55bb55;
}
#cookiedisclaimer2022 .toggle-checkbox:checked + .toggle-switch:before {
  left: 30px;
}
#cookiedisclaimer2022 .toggle-checkbox {
  position: absolute;
  visibility: hidden;
}
#cookiedisclaimer2022 button {
  display: block;
  font-size: 18px;
  margin: 0 auto 2em;
  float: none;
  background: #55bb55;
  padding: 1em 2em;
  color: #fff;
  transition: background 0.35s;
  font-weight: 400;
  border: none;
  cursor: pointer;
  height: auto;
  line-height: normal;
}
#cookiedisclaimer2022 button:hover {
  background: #33aa33;
}
.alert {
  display: block;
  width: 440px;
  height: auto;
  overflow: hidden;
  overflow-y: auto;
  padding: 20px 40px 20px 25px;
  min-height: 60px;
  border-radius: 5px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 50;
  text-transform: uppercase;
  visibility: hidden;
  transform: translate3d(100%,0,0);
  -webkit-transform: translate3d(100%,0,0);
  opacity: 0.3;
  transition: 0.6s cubic-bezier(0.165,0.84,0.44,1);
  font-size: 14px;
  text-transform: none;
  color: #fff;
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .alert {
    width: 100%;
    left: 0;
    bottom: 0;
    right: 0;
    transform: translate3d(0,100%,0);
    -webkit-transform: translate3d(0,100%,0);
    text-align: center;
    border-radius: 0;
    padding: 30px 40px 30px 25px;
  }
}
.alert.visible {
  visibility: visible;
  transform: translate3d(0,0,0);
  -webkit-transform: translate3d(0,0,0);
  opacity: 1;
  transition: 0.6s cubic-bezier(0.165,0.84,0.44,1);
}
.alert.hidden {
  visibility: hidden;
  transform: translate3d(100%,0,0);
  -webkit-transform: translate3d(0,0,0);
  opacity: 0;
}
.alert__close {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
.alert__close::before,
.alert__close::after {
  content: '';
  height: 2px;
  position: absolute;
  top: 50%;
  background: #fff;
  left: 0;
  right: 0;
}
.alert__close::before {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
.alert__close::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
.alert--success {
  background-color: #2bbb23;
}
.alert--warning {
  background-color: #eda02d;
}
.alert--error {
  background-color: #bb2323;
}
.fade {
  opacity: 0;
  visibility: hidden;
}
.slideUp {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0,45px,0);
  -webkit-transform: translate3d(0,45px,0);
}
.slideDown {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0,-45px,0);
  -webkit-transform: translate3d(0,-45px,0);
}
.slideRight {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-5%,0,0);
  -webkit-transform: translate3d(-5%,0,0);
}
.slideLeft {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(5%,0,0);
  -webkit-transform: translate3d(5%,0,0);
}
.rotateInRight {
  opacity: 0;
  visibility: hidden;
  transform: rotate(-5deg) translate3d(-35px,20px,0);
  -webkit-transform: rotate(-5deg) translate3d(-35px,20px,0);
  transform-origin: -40% 60%;
}
.rotateInLeft {
  opacity: 0;
  visibility: hidden;
  transform: rotate(5deg) translate3d(35px,20px,0);
  -webkit-transform: rotate(5deg) translate3d(35px,20px,0);
  transform-origin: 40% 60%;
}
@keyframes slideUp {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0,45px,0);
    -webkit-transform: translate3d(0,45px,0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
  }
}
@keyframes slideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(0,-45px,0);
    -webkit-transform: translate3d(0,-45px,0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
  }
}
@keyframes slideRight {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(-5%,0,0);
    -webkit-transform: translate3d(-5%,0,0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
  }
}
@keyframes slideLeft {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translate3d(5%,0,0);
    -webkit-transform: translate3d(5%,0,0);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.98);
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
}
@keyframes rotateInLeft {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: rotate(5deg) translate3d(35px,20px,0);
    -webkit-transform: rotate(5deg) translate3d(35px,20px,0);
    transform-origin: 40% 60%;
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: rotate(0deg) translate3d(0,0,0);
  }
}
@keyframes rotateInRight {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: rotate(-5deg) translate3d(-35px,20px,0);
    -webkit-transform: rotate(-5deg) translate3d(-35px,20px,0);
    transform-origin: -40% 60%;
  }
  100% {
    opacity: 1;
    visibility: visible;
    transform: rotate(0deg) translate3d(0,0,0);
  }
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.container {
  display: block;
  padding-left: clamp(15px,4.1664vw,80px);
  padding-right: clamp(15px,4.1664vw,80px);
}
@media screen and (min-width: 1921px) {
  .container {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1860px) {
  .container {
    padding-left: clamp(15px,3.1248vw,60px);
    padding-right: clamp(15px,3.1248vw,60px);
  }
}
@media screen and (max-width: 1550px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.container-small {
  display: block;
  padding-left: clamp(15px,8.3328vw,160px);
  padding-right: clamp(15px,8.3328vw,1600px);
}
@media screen and (min-width: 1921px) {
  .container-small {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1550px) {
  .container-small {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.margin-top-120 {
  margin-top: 120px;
}
.margin-top-80 {
  margin-top: 80px;
}
.header {
  display: block;
  width: 100%;
  background-color: #fff;
  top: 0;
  left: 0;
  z-index: 501;
  transition: 300ms;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .header {
    box-shadow: 0px 0px 4px rgba(71,71,71,0.4);
    position: sticky;
    top: 0;
    left: 0;
  }
}
.header__logo {
  width: 100%;
  max-width: 255px;
}
@media screen and (max-width: 1200px) {
  .header__logo {
    order: -2;
  }
}
.header__inner {
  display: block;
  padding-left: clamp(15px,4.1664vw,80px);
  padding-right: clamp(15px,4.1664vw,80px);
  display: grid;
  grid-template-columns: 260px 1fr 260px;
  align-items: center;
  gap: 20px;
  height: 80px;
}
@media screen and (min-width: 1921px) {
  .header__inner {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1860px) {
  .header__inner {
    padding-left: clamp(15px,3.1248vw,60px);
    padding-right: clamp(15px,3.1248vw,60px);
  }
}
@media screen and (max-width: 1550px) {
  .header__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .header__inner {
    grid-template-columns: 200px 1fr auto;
  }
}
.header__logo,
.header__right {
  z-index: 55;
}
.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 5px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .header__logo {
    max-width: 100%;
    width: clamp(155px,9.3744vw,180px);
  }
  .header__inner {
    display: flex;
    justify-content: space-between;
    gap: 10px;
  }
  .header__search {
    margin-left: auto;
  }
  .header__hamburger {
    margin-left: 10px;
  }
}
@media screen and (max-width: 700px) {
  .header__inner {
    padding-left: 10px;
    padding-right: 10px;
    height: 70px;
  }
  .header__right {
    gap: 0;
  }
  .header__hamburger {
    margin-left: 0;
  }
}
.subheader {
  border: 1px solid #cdcdcd;
  border-style: solid none;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 500;
}
.subheader__inner {
  display: block;
  padding-left: clamp(15px,4.1664vw,80px);
  padding-right: clamp(15px,4.1664vw,80px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 60px;
}
@media screen and (min-width: 1921px) {
  .subheader__inner {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1860px) {
  .subheader__inner {
    padding-left: clamp(15px,3.1248vw,60px);
    padding-right: clamp(15px,3.1248vw,60px);
  }
}
@media screen and (max-width: 1550px) {
  .subheader__inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.subheader__close {
  display: none;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1001;
}
.subheader__close::before,
.subheader__close::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #333333;
  position: absolute;
  top: 50%;
  left: 50%;
}
.subheader__close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.subheader__close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.subheader__left {
  display: flex;
  gap: clamp(10px,1.302vw,25px);
  align-items: center;
}
.subheader__link,
.subheader .menu__link {
  font-size: 0.89rem;
  line-height: 1.2em;
  font-weight: 500;
  height: 40px;
  line-height: 40px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 550px) {
  .subheader__link,
  .subheader .menu__link {
    font-size: 14px;
  }
}
.subheader__link::after,
.subheader .menu__link::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 1px;
  background: #333333;
  transition: 300ms;
  opacity: 0;
  transform: scale3d(0,1,1);
}
.subheader__link:hover::after,
.subheader .menu__link:hover::after {
  opacity: 1;
  transform: scale3d(1,1,1);
}
.subheader .menu {
  display: flex;
  gap: clamp(10px,1.302vw,25px);
  align-items: center;
}
.subheader__cta {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .subheader {
    justify-content: flex-end;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
  }
  .subheader .menu {
    align-items: flex-start;
  }
  .subheader.open {
    display: flex;
  }
  .subheader__close {
    display: block;
  }
  .subheader__inner,
  .subheader__left,
  .subheader__right {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    gap: 30px;
  }
  .subheader__inner {
    width: 100%;
    height: 100%;
    max-width: 500px;
    background-color: #fff;
    padding: 80px 40px 40px;
    transition: 450ms ease-out;
  }
  .subheader__left {
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 25px;
  }
  .subheader__link,
  .subheader .menu__link {
    font-size: 1.1rem;
    height: auto;
    line-height: 1.1em;
  }
  .subheader__link::after,
  .subheader .menu__link::after {
    bottom: -0.2em;
  }
}
.hamburger {
  display: none;
  width: 45px;
  height: 45px;
  position: relative;
  cursor: pointer;
  border-radius: 50%;
}
@media screen and (max-width: 1200px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  position: absolute;
  height: 1px;
  background: #333333;
  width: 25px;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  transition: 500ms cubic-bezier(0.25,0.46,0.45,0.94);
}
.body--light-header:not(.body--scroll) .hamburger span {
  background: #fff;
}
.hamburger span:first-child {
  transform: translate(-50%,-50%) translate3d(0,-6px,0);
}
.hamburger span:last-child {
  transform: translate(-50%,-50%) translate3d(0,6px,0);
}
@media screen and (max-width: 700px) {
  .hamburger {
    width: 36px;
    height: 36px;
  }
}
.mobile-menu {
  position: absolute;
  background: #fff;
  border-right: 1px solid #cdcdcd;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: 600ms cubic-bezier(0.25,0.46,0.45,0.94);
  visibility: hidden;
  pointer-events: none;
  will-change: transform;
  padding: 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.16);
}
.mobile-menu__close {
  display: none;
  align-items: center;
  gap: 0.35em;
  margin-bottom: 0.8em;
}
@media screen and (max-width: 1200px) {
  .mobile-menu__close {
    display: inline-flex;
  }
}
.mobile-menu__close svg {
  width: 0.65em;
  height: 0.65em;
  transform: rotate(180deg);
}
.mobile-menu__container {
  display: block;
  padding-left: clamp(15px,4.1664vw,80px);
  padding-right: clamp(15px,4.1664vw,80px);
}
@media screen and (min-width: 1921px) {
  .mobile-menu__container {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1860px) {
  .mobile-menu__container {
    padding-left: clamp(15px,3.1248vw,60px);
    padding-right: clamp(15px,3.1248vw,60px);
  }
}
@media screen and (max-width: 1550px) {
  .mobile-menu__container {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.mobile-menu.open {
  visibility: visible;
  pointer-events: all;
}
.mobile-menu__title {
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 600;
}
.mobile-menu .menu {
  position: relative;
  flex-grow: 1;
  width: 100%;
  overflow-y: auto;
  padding: 40px 0 60px;
  scrollbar-width: thin;
  scrollbar-color: #b3b3b3 transparent;
}
.mobile-menu .menu > div {
  display: grid;
  grid-template-rows: repeat(5,1fr);
  grid-template-columns: repeat(5,1fr);
  grid-auto-flow: column;
  gap: 0px 40px;
}
@media screen and (max-width: 1550px) {
  .mobile-menu .menu > div {
    grid-template-rows: repeat(6,1fr);
    grid-template-columns: repeat(4,1fr);
  }
}
.mobile-menu .menu__item {
  text-align: left;
  margin: 0;
  display: block;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu .menu__link {
  font-size: 1rem;
  line-height: 1.2em;
  display: flex;
  gap: .5em;
  align-items: center;
  gap: 10px;
  color: #333333;
  height: 40px;
  padding: 5px 10px;
  font-weight: 600;
  transition: 300ms;
  border-radius: 3px;
}
.mobile-menu .menu__link::after {
  display: none;
}
.mobile-menu .menu__link:hover {
  background: #f0f0f0;
}
.mobile-menu .menu__link::before {
  content: '';
  width: 10px;
  height: 10px;
  display: block;
  background: url(../img/icons/menu-arrow-right.svg) no-repeat center;
  transition: 300ms;
}
.mobile-menu .menu__link:hover::before {
  transform: translate3d(5px,0,0);
}
@media screen and (max-width: 1200px) {
  .mobile-menu {
    top: 0;
    right: 0;
    left: auto;
    max-width: 500px;
    height: 100%;
    width: 100%;
    padding-top: 80px;
    box-shadow: none;
  }
  .mobile-menu__container {
    height: 100%;
  }
  .mobile-menu__container .menu {
    height: 100%;
    padding-top: 0;
  }
  .mobile-menu__container .menu > div {
    grid-template-columns: 100%;
    width: 100%;
  }
  .mobile-menu .menu__link {
    height: auto;
    line-height: 1em;
    font-size: 1rem;
    padding-top: 0.85em;
    padding-bottom: 0.85em;
    border-bottom: 1px solid rgba(205,205,205,0.5);
  }
}
.footer {
  color: #fff;
  font-size: 14px;
  margin-top: 120px;
}
.footer a {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}
.footer--nomargin {
  margin-top: 0;
}
.footer__wrapper {
  display: block;
  padding-left: clamp(15px,4.1664vw,80px);
  padding-right: clamp(15px,4.1664vw,80px);
}
@media screen and (min-width: 1921px) {
  .footer__wrapper {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1860px) {
  .footer__wrapper {
    padding-left: clamp(15px,3.1248vw,60px);
    padding-right: clamp(15px,3.1248vw,60px);
  }
}
@media screen and (max-width: 1550px) {
  .footer__wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer__wrapper--top {
  display: grid;
  grid-template-columns: 1fr auto;
  justify-content: space-between;
  gap: 50px;
  padding-top: 40px;
  padding-bottom: 60px;
}
@media screen and (max-width: 1200px) {
  .footer__wrapper--top {
    padding-top: 30px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 700px) {
  .footer__wrapper--top {
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.footer__wrapper--bottom {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  align-items: center;
  align-content: center;
  width: 100%;
  height: 40px;
  gap: 5px 10px;
  font-size: 12px;
}
@media screen and (max-width: 700px) {
  .footer__wrapper--bottom {
    height: auto;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.footer__top {
  background-color: #425fb2;
}
.footer__bottom {
  background-color: #333333;
}
@media screen and (max-width: 1200px) {
  .footer__column--categories {
    display: none;
  }
}
.footer__title {
  font-weight: 700;
  margin-bottom: 1em;
}
.footer__info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media screen and (max-width: 700px) {
  .footer__info {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}
.footer__info a {
  display: inline-flex;
  align-items: flex-start;
  gap: 1em;
}
.footer__info a > span:first-child {
  display: flex;
  padding-top: 0.25em;
}
.footer__info a > span:last-child {
  padding-top: 0.2em;
}
.footer__info a svg {
  width: 1.1em;
  height: 1.1em;
}
.footer__info a svg path {
  fill: #fff;
}
.footer__right {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: min(4.1664vw,80px);
}
@media screen and (max-width: 700px) {
  .footer__right {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
  }
}
.footer__menu,
.footer .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 700px) {
  .footer__menu,
  .footer .menu {
    display: flex;
    align-items: center;
    gap: 0 1em;
    flex-wrap: wrap;
  }
}
.footer__menu li,
.footer .menu li {
  margin-bottom: 0.8em;
}
.footer__menu a:hover,
.footer .menu a:hover {
  opacity: 0.8;
}
.footer__vat {
  text-align: center;
}
.footer__credits {
  display: flex;
  justify-content: flex-end;
}
.footer__payments {
  display: flex;
  flex-direction: column;
  gap: 0.8em;
}
@media screen and (max-width: 700px) {
  .footer__payments {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.footer__payments img {
  width: auto;
  max-width: 100%;
}
.social {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 5px;
  margin: 0;
  padding: 0;
}
.social__link {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
.social__link a {
  width: 25px;
  height: 25px;
  padding: 3px;
}
.social__link svg {
  width: 100%;
  height: 100%;
}
.social__link svg path {
  fill: #333333;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.error-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  height: 100vh;
}
.error-container h1 {
  text-align: center;
  margin-bottom: .5em;
}
.error-container a {
  text-decoration: underline;
}
.paginator {
  border-top: 1px solid #cdcdcd;
  margin-top: 40px;
  padding-top: 10px;
}
.paginator__pages {
  display: flex;
  align-items: center;
  gap: 5px;
  list-style-type: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
.paginator__pages a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  color: #333333;
  border: 1px solid #333333;
  border-radius: 3px;
}
.paginator__pages .active a {
  background: #333333;
  color: #fff;
}
.languages {
  position: relative;
  text-transform: uppercase;
}
.body--light-header:not(.body--scroll) .languages path {
  fill: #fff;
}
.languages__toggler {
  padding: 0 20px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid #333333;
  cursor: pointer;
}
.body--light-header:not(.body--scroll) .languages__toggler {
  border-color: #fff;
}
@media screen and (max-width: 550px) {
  .languages__toggler {
    padding: 0 10px;
    height: 40px;
  }
}
.languages__icon {
  transition: 300ms cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
}
.languages__dropdown {
  background: #fff;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  border: 1px solid #333333;
  border-top: none;
  visibility: hidden;
  pointer-events: none;
  transform: scale3d(1,0,1);
  -webkit-transform: scale3d(1,0,1);
  transform-origin: 0 0;
  -webkit-transform-origin: 0 0;
  transition: 300ms cubic-bezier(0.25,0.46,0.45,0.94);
  opacity: 0;
  will-change: transform, opacity;
}
.languages__link {
  height: 35px;
  line-height: 35px;
  text-align: center;
  display: block;
  color: #333333;
}
.languages__link--active {
  color: #b3b3b3;
}
.languages.open .languages__dropdown {
  visibility: visible;
  pointer-events: all;
  transform: scale3d(1,1,1);
  -webkit-transform: scale3d(1,1,1);
  opacity: 1;
}
.languages.open .languages__icon {
  transform: rotate3d(0,0,1,180deg);
  -webkit-transform: rotate3d(0,0,1,180deg);
}
.cta {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0.35em;
  border-radius: 3rem;
  background-color: #425fb2;
  font-size: 0.89rem;
  line-height: 1.2em;
  color: #fff;
  font-weight: 500;
  padding: 0 1em;
  height: 46px;
  line-height: 46px;
  transition: 300ms;
}
@media screen and (max-width: 550px) {
  .cta {
    font-size: 14px;
  }
}
.cta:hover {
  background: #506cbe;
}
.cta--light {
  background: #fff;
  color: #425fb2;
}
.cta--light:hover {
  background: rgba(255,255,255,0.9);
}
.cta--highlight {
  background: #f5d420;
  color: #333333;
}
.cta--highlight:hover {
  background: #f1cd0b;
}
.cta--highlight path {
  fill: #333333;
}
.cta__icon svg {
  width: 1.5em;
  height: 1.5em;
}
@media screen and (max-width: 700px) {
  .cta {
    height: 40px;
    line-height: 40px;
  }
}
.slider {
  position: relative;
}
.slider__arrow {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  background: #425fb2 url(../img/icons/arrow-right.svg) no-repeat center;
  border-radius: 50%;
  margin-top: -24px;
  z-index: 10;
  cursor: pointer;
}
.slider__arrow.swiper-button-disabled {
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  .slider__arrow {
    width: 40px;
    height: 40px;
  }
}
.slider__arrow--prev {
  left: 0;
  transform: translateX(-50%) rotate(180deg);
  -webkit-transform: translateX(-50%) rotate(180deg);
}
@media screen and (max-width: 1200px) {
  .slider__arrow--prev {
    left: 5px;
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
  }
}
.slider__arrow--next {
  right: 0;
  transform: translateX(50%);
  -webkit-transform: translateX(50%);
}
@media screen and (max-width: 1200px) {
  .slider__arrow--next {
    right: 5px;
    transform: none;
    -webkit-transform: none;
  }
}
.slider__pagination {
  text-align: center;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  font-weight: 500;
  padding-top: 8px;
}
@media screen and (max-width: 1000px) {
  .slider__pagination {
    top: auto;
    bottom: 0;
    z-index: 10;
    color: #fff;
    text-align: right;
    padding: 5px;
  }
}
.slider--fullscreen .slider__pagination {
  display: none;
}
.slider--fullscreen .slider__arrow {
  transform: none;
  -webkit-transform: none;
}
.slider--fullscreen .slider__arrow--next {
  right: clamp(5px,2.0832vw,40px);
}
.slider--fullscreen .slider__arrow--prev {
  left: clamp(5px,2.0832vw,40px);
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
}
.contact-form .contact-form__inputs {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  column-gap: clamp(10px,2.0832vw,40px);
}
@media screen and (max-width: 700px) {
  .contact-form .contact-form__inputs {
    grid-template-columns: 1fr;
  }
}
.contact-form .textarea,
.contact-form .checkbox {
  grid-column-end: span 2;
}
@media screen and (max-width: 700px) {
  .contact-form .textarea,
  .contact-form .checkbox {
    grid-column-end: span 1;
  }
}
.contact-form .form-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.contact-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: clamp(20px,1.5624vw,30px);
}
@media screen and (max-width: 1000px) {
  .contact-info {
    align-items: center;
  }
}
.contact-info__item {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}
.contact-info__item a {
  color: #000;
}
.contact-info__icon {
  width: 15px;
}
.contact-info__icon svg {
  width: 100%;
  height: 100%;
}
.contact-info__icon path {
  fill: #333333;
}
.popup {
  width: 100%;
  height: 100%;
  max-width: 100vw;
  max-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(51,51,51,0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  z-index: 999;
  transition: 300ms ease 0ms;
}
.popup.hidden {
  visibility: hidden;
  opacity: 0;
  transition-delay: 300ms;
}
.popup.hidden .popup__inner {
  transform: translate3d(0,50px,0);
  visibility: hidden;
  opacity: 0;
  transition-delay: 0ms;
}
.popup__content {
  overflow-y: auto;
}
@media (max-width: 700px) {
  .popup__content {
    align-self: stretch;
  }
}
.popup__inner {
  padding: 30px;
  box-shadow: 0px 0px 4px rgba(71,71,71,0.4);
  background-color: #fff;
  width: 100%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transform: translate3d(0,0,0);
  transition: 300ms ease-out 200ms;
}
.popup__inner table {
  border-collapse: collapse;
}
.popup__inner table table,
.popup__inner table th,
.popup__inner table td {
  border: 1px solid #cdcdcd;
}
.popup__inner table td {
  padding: 10px;
  text-align: center;
}
@media (max-width: 700px) {
  .popup__inner thead {
    display: none;
  }
  .popup__inner table,
  .popup__inner tbody,
  .popup__inner tr,
  .popup__inner td {
    display: block;
    width: 100%;
  }
  .popup__inner tr {
    margin-bottom: 1rem;
  }
  .popup__inner td {
    position: relative;
    padding-left: 7rem;
    text-align: left;
    display: flex;
    align-items: center;
    gap: .5em;
  }
  .popup__inner td::before {
    content: attr(data-label) ':';
    font-weight: bold;
  }
}
.popup__close {
  position: absolute;
  bottom: 100%;
  left: 100%;
  width: 40px;
  height: 40px;
  display: block;
  transform: translate(0,-50%);
  background: #425fb2;
  border-radius: 50%;
}
@media screen and (max-width: 1200px) {
  .popup__close {
    transform: none;
    left: auto;
    bottom: auto;
    top: 0;
    right: 0;
    transform: translate(20%,-20%);
  }
}
.popup__close::before,
.popup__close::after {
  content: "";
  width: 50%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.popup__close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.popup__close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.faq {
  background: #f0f0f0;
  padding: 0 35px 25px;
  padding-bottom: 0;
  cursor: pointer;
  text-align: left;
  border-radius: 40px;
}
@media screen and (max-width: 700px) {
  .faq {
    padding: 0 15px 15px;
    padding-bottom: 0;
  }
}
.faq__title {
  font-size: 1rem;
  line-height: 1.5em;
  font-weight: 500;
}
@media screen and (max-width: 550px) {
  .faq__title {
    font-size: 1rem;
    font-weight: 600;
  }
}
.faq__toggler {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 0;
  gap: 10px;
}
@media screen and (max-width: 700px) {
  .faq__toggler {
    padding: 15px 0;
  }
}
.faq__toggler__indicator {
  position: relative;
  width: 10px;
  height: 10px;
  display: block;
}
.faq__toggler__indicator::after {
  content: '';
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #000;
  top: 0;
  left: 50%;
  transform: translate3d(-50%,0,0);
  -webkit-transform: translate3d(-50%,0,0);
  transition: transform .3s cubic-bezier(0.25,0.46,0.45,0.94);
}
.accordion-open .faq__toggler__indicator::after {
  transform: translate3d(-50%,0,0) rotate(-90deg);
  -webkit-transform: translate3d(-50%,0,0) rotate(-90deg);
}
.faq__toggler__indicator::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #000;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%,-50%,0);
  -webkit-transform: translate3d(-50%,-50%,0);
}
.faq__content {
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: 300ms cubic-bezier(0.25,0.46,0.45,0.94);
}
.accordion-open .faq__content {
  grid-template-rows: 1fr;
}
.faq__paragraph {
  overflow: hidden;
}
.faq__paragraph > div {
  padding-bottom: 2em;
}
.whybuy {
  display: block;
  padding-left: clamp(15px,8.3328vw,160px);
  padding-right: clamp(15px,8.3328vw,1600px);
  margin-top: 120px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media screen and (min-width: 1921px) {
  .whybuy {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1550px) {
  .whybuy {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.whybuy__column {
  display: flex;
  flex-direction: column;
}
.whybuy__partners {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  align-items: center;
  gap: 30px;
  margin-bottom: auto;
}
.whybuy__whatsapp {
  border-radius: 4px;
  padding: 20px;
  background: #333333;
  color: #fff;
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  align-items: center;
  font-weight: bold;
  font-size: 1.6em;
  margin-top: 30px;
}
@media screen and (max-width: 1200px) {
  .whybuy__whatsapp {
    font-size: 1.4em;
    grid-template-columns: 80px 1fr;
  }
}
@media screen and (max-width: 700px) {
  .whybuy__whatsapp {
    font-size: 1.2em;
    gap: 20px;
    grid-template-columns: 60px 1fr;
  }
}
.whybuy__whatsapp h6 {
  font-weight: 600;
  font-size: .8em;
  margin-bottom: .1em;
}
.whybuy__whatsapp a {
  color: inherit;
  text-decoration: underline;
}
@media screen and (max-width: 1000px) {
  .whybuy {
    grid-template-columns: 100%;
  }
  .whybuy__partners {
    grid-template-columns: repeat(auto-fill,minmax(55px,1fr));
  }
}
.whatsapp {
  position: fixed;
  z-index: 50;
  bottom: 20px;
  right: clamp(10px,2.0832vw,40px);
  width: 50px;
  height: 50px;
}
.share {
  position: relative;
  z-index: 10;
}
.share__toggler {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #333333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms;
}
.share__toggler path {
  fill: #333333;
}
.share__toggler:hover {
  background-color: #e3e3e3;
}
.share__dropdown {
  position: absolute;
  border-radius: 5px;
  top: 100%;
  right: 0;
  border: 1px solid #cdcdcd;
  background: #fff;
  padding: 10px;
  display: grid;
  grid-template-columns: repeat(2,45px);
  gap: 8px;
  visibility: hidden;
  pointer-events: none;
}
.share__dropdown a:hover {
  opacity: .8;
}
.open .share__dropdown {
  pointer-events: all;
  visibility: visible;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.16);
}
[data-tooltip] {
  position: relative;
}
[data-tooltip]::after {
  content: attr(data-tooltip);
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: #fff;
  padding: 6px 8px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 10;
  visibility: hidden;
}
[data-tooltip]::before {
  content: "";
  position: absolute;
  bottom: 115%;
  left: 50%;
  transform: translateX(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: #333 transparent transparent transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
  visibility: hidden;
}
[data-tooltip]:hover::after,
[data-tooltip]:hover::before {
  opacity: 1;
  visibility: visible;
}
.search {
  width: 100%;
  max-width: 650px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto;
  position: relative;
  border: 1px solid #cdcdcd;
  border-radius: 3rem;
  --gap-right: 5px;
}
@media screen and (max-width: 1200px) {
  .search {
    max-width: none;
    border: none;
    height: auto;
    line-height: 1em;
  }
}
.body--light-header:not(.body--scroll) .search path {
  fill: #fff;
}
.search__toggler {
  display: flex;
  width: 40px;
  height: 40px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #425fb2;
  padding: 10px;
  position: absolute;
  top: 50%;
  right: var(--gap-right);
  transform: translateY(-50%);
  z-index: 55;
}
@media screen and (max-width: 1200px) {
  .search__toggler {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    z-index: 55;
  }
}
@media screen and (max-width: 700px) {
  .search__toggler {
    width: 35px;
    height: 35px;
    padding: 8px;
  }
}
@media screen and (max-width: 1200px) {
  .search__wrapper {
    position: fixed;
    z-index: 54;
    top: 0;
    left: 0;
    right: 0;
    height: auto;
    min-height: 0;
    max-height: 100%;
    background: #fff;
    padding: 80px clamp(10px,1.0416vw,20px) 0;
    pointer-events: none;
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
    box-shadow: 0px 0px 4px rgba(71,71,71,0.4);
    transition: 300ms ease-out;
    transform: translate3d(0,-100%,0);
    -webkit-transform: translate3d(0,-100%,0);
  }
}
@media screen and (max-width: 1200px) {
  .search__close {
    display: block;
    width: 40px;
    height: 40px;
    cursor: pointer;
    position: relative;
    margin: 0 0 10px auto;
  }
  .search__close::after,
  .search__close::before {
    content: "";
    height: 1px;
    position: absolute;
    top: 50%;
    left: 10px;
    right: 10px;
    background: #333333;
  }
  .search__close::before {
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
  }
  .search__close::after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
  }
}
@media screen and (max-width: 1200px) {
  .search.open .search__wrapper {
    pointer-events: all;
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
  }
}
.search__form {
  position: relative;
  padding-right: calc(55px + var(--gap-right));
}
@media screen and (max-width: 1200px) {
  .search__form {
    padding-right: 0;
  }
}
.search__input[type="text"] {
  height: inherit;
  line-height: inherit;
  background: none;
  border: none;
  border-radius: 0;
  border-bottom: none;
  font-size: inherit;
  padding: 0;
  padding-left: 20px;
  color: inherit;
  font-size: 0.89rem;
  line-height: 1.2em;
}
@media screen and (max-width: 550px) {
  .search__input[type="text"] {
    font-size: 14px;
  }
}
@media screen and (max-width: 1200px) {
  .search__input[type="text"] {
    border: 1px solid #333333;
    height: 50px;
    line-height: 50px;
    border-radius: 5rem;
    font-size: 16px;
  }
}
.body--light-header:not(.body--scroll) .search__input[type="text"] {
  border-color: #fff;
}
.search__input[type="text"]::placeholder {
  color: #666666;
  opacity: 1;
}
.search__input[type="text"]::-moz-placeholder {
  color: #666666;
}
.search__input[type="text"]::-webkit-input-placeholder {
  color: #666666;
}
.search__icon,
.search__spinner {
  width: 40px;
  height: 40px;
  position: absolute;
  top: 50%;
  margin-top: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search__icon svg,
.search__spinner svg {
  width: 25px;
}
.search__icon {
  left: 0;
}
.search__spinner {
  right: 60px;
  animation: rotation 1000ms linear infinite;
  -webkit-animation: rotation 1000ms linear infinite;
  animation-play-state: paused;
  -webkit-animation-play-state: paused;
  visibility: hidden;
  will-change: transform;
}
.search__spinner.loading {
  animation-play-state: running;
  -webkit-animation-play-state: running;
  visibility: visible;
}
@media screen and (max-width: 1200px) {
  .search__spinner {
    right: 10px;
  }
}
.search__results {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  width: 100%;
  min-height: 50px;
  max-height: 50vh;
  overflow-y: auto;
  padding: 10px;
  visibility: hidden;
  pointer-events: none;
  box-shadow: 0px 0px 4px rgba(71,71,71,0.4);
  font-size: 14px;
  background: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 1200px) {
  .search__results {
    width: 100%;
    position: relative;
    height: 100%;
    max-height: min(60vh,600px);
    padding: 20px 0 30px;
    border: none;
    margin: 0 auto;
    box-shadow: none;
  }
}
.search__results.visible {
  visibility: visible;
  pointer-events: all;
}
.search__empty {
  text-align: center;
}
.search__more {
  margin-top: 10px;
}
.search-result {
  display: grid;
  padding: 10px 0;
  border-bottom: 1px solid #cdcdcd;
  color: #333333;
  grid-template-columns: 80px 1fr;
  gap: 15px;
  font-weight: 500;
  align-items: center;
}
.search-result:first-child {
  padding-top: 0;
}
.search-result:last-child {
  border: none;
  padding-bottom: 0;
}
.search-result__image img {
  aspect-ratio: 1.7777777777778;
  object-fit: contain;
}
.contacts {
  width: 1080px;
  margin: 40px auto 0;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #cdcdcd;
  display: grid;
  gap: 60px;
}
@media screen and (max-width: 1200px) {
  .contacts {
    margin-left: max(15px,5vw);
    margin-right: max(15px,5vw);
    width: auto;
  }
}
@media screen and (max-width: 700px) {
  .contacts {
    padding: 35px 15px 15px;
    gap: 30px;
  }
}
.contacts__title {
  font-weight: 600;
  margin-bottom: 1em;
  text-align: center;
  font-size: 1.4em;
  color: #425fb2;
}
.contacts__infos {
  text-align: center;
}
.account-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.account-list li {
  margin: 0;
  margin-bottom: .5em;
}
.account-form {
  max-width: 600px;
  border: 1px solid #cdcdcd;
  margin: 80px auto;
  display: grid;
  grid-template-columns: 100%;
  border-radius: 4px;
}
.account-form--double {
  grid-template-columns: 1fr 1fr;
  max-width: 900px;
}
@media screen and (max-width: 1000px) {
  .account-form--double {
    max-width: none;
    margin-left: 15px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 700px) {
  .account-form {
    margin-left: 15px;
    margin-right: 15px;
    max-width: none;
    margin-top: 40px;
    margin-bottom: 60px;
  }
  .account-form--double {
    grid-template-columns: 100%;
  }
}
.account-form__title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1em;
}
.account-form__section {
  padding: 40px;
  border-right: 1px solid #cdcdcd;
  display: flex;
  flex-direction: column;
  line-height: 1.25em;
}
.account-form__section--text-center {
  text-align: center;
}
@media screen and (max-width: 550px) {
  .account-form__section {
    padding: 20px;
  }
}
.account-form__section:last-child {
  border: none;
}
@media screen and (max-width: 700px) {
  .account-form__section {
    border: none;
    border-bottom: 1px solid #cdcdcd;
  }
}
.account-form__main {
  flex-grow: 1;
  padding-bottom: 20px;
}
.account-form__recover {
  font-size: 0.8rem;
  color: #333333;
  display: block;
}
.account-form__message {
  font-size: 0.9rem;
}
.usermenu {
  position: relative;
}
.usermenu ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.usermenu li {
  margin: 0;
  padding: 0;
}
.usermenu__toggler {
  display: block;
  height: 40px;
  line-height: 40px;
  background: #333333;
  color: #fff;
  padding: 0 40px;
}
.usermenu__dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  width: 200px;
  padding: 20px;
  border: 1px solid #333333;
  background: #fff;
  display: none;
}
.usermenu__dropdown a {
  color: #333333;
  display: block;
}
.usermenu__dropdown li {
  padding: 5px 0;
}
.usermenu:hover .usermenu__dropdown {
  display: block;
}
.account {
  display: block;
  padding-left: clamp(15px,4.1664vw,80px);
  padding-right: clamp(15px,4.1664vw,80px);
  display: grid;
  grid-template-columns: 270px 1fr;
  align-items: start;
  gap: 25px;
  --border-color: #cdcdcd;
  margin-top: 40px;
}
@media screen and (min-width: 1921px) {
  .account {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1860px) {
  .account {
    padding-left: clamp(15px,3.1248vw,60px);
    padding-right: clamp(15px,3.1248vw,60px);
  }
}
@media screen and (max-width: 1550px) {
  .account {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .account {
    grid-template-columns: 1fr;
  }
}
.account__sidebar {
  background: #f0f0f0;
  padding: 30px 18px;
  position: relative;
  border-radius: 4px;
}
@media screen and (max-width: 1200px) {
  .account__sidebar {
    position: fixed;
    z-index: 100;
    left: 0;
    width: min(240px,50vw);
    bottom: 0;
    top: 80px;
    background: #fff;
    padding-top: 50px;
    border-right: 1px solid #f0f0f0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.16);
    transition: 300ms cubic-bezier(0.25,0.46,0.45,0.94);
    transform: translate3d(-100%,0,0);
    visibility: hidden;
  }
  .account__sidebar.open {
    visibility: visible;
    transform: translate3d(0,0,0);
  }
}
@media screen and (max-width: 700px) {
  .account__sidebar {
    top: 70px;
  }
}
@media screen and (max-width: 550px) {
  .account__sidebar {
    padding-left: 5px;
    padding-right: 5px;
  }
}
.account__sidebar__toggler {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  width: 40px;
  height: 40px;
}
@media screen and (max-width: 1200px) {
  .account__sidebar__toggler {
    display: block;
  }
}
.account__sidebar__toggler::before,
.account__sidebar__toggler::after {
  content: "";
  display: block;
  width: 60%;
  height: 1px;
  background-color: #333333;
  position: absolute;
  top: 50%;
  left: 50%;
}
.account__sidebar__toggler::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.account__sidebar__toggler::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.account__menu li {
  margin: 0;
}
.account__menu__link {
  color: #333333;
  padding: 10px 12px;
  display: block;
  font-size: 0.89rem;
  line-height: 1.2em;
  line-height: 1.3em;
  border-radius: 4px;
}
@media screen and (max-width: 550px) {
  .account__menu__link {
    font-size: 14px;
  }
}
.account__menu__link--active {
  background: #cdcdcd;
  font-weight: 500;
}
.account__main {
  flex-grow: 1;
  display: block;
  width: 100%;
  min-width: 0;
}
.account__main-heading {
  display: flex;
  align-items: center;
  gap: .5em;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.85em;
}
.account__main-title {
  font-size: 1.35rem;
}
@media screen and (max-width: 550px) {
  .account__main-title {
    font-size: 1em;
  }
}
.account__main-toggleside {
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  display: none;
  background: #425fb2;
  border-radius: 50%;
}
.account__main-toggleside path {
  fill: #fff;
}
@media screen and (max-width: 1200px) {
  .account__main-toggleside {
    display: flex;
  }
}
.account__section {
  border: 1px solid var(--border-color);
  margin-bottom: 20px;
  min-height: 80px;
  padding: 25px;
  position: relative;
  border-radius: 4px;
}
.account__section:last-of-type {
  margin: 0;
}
.account__section--danger {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: rgba(187,35,35,0.1);
  border-color: #bb2323;
  color: #901b1b;
  font-size: .8rem;
}
.account__section--danger > a {
  text-decoration: underline;
  color: #bb2323;
}
.account__section::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.9);
  z-index: 10;
  pointer-events: none;
  visibility: hidden;
}
.account__section::after {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 11;
  background: url(../img/shop/spinner.svg) no-repeat center;
  margin-top: -25px;
  margin-left: -25px;
  animation: rotation 800ms linear infinite;
  animation-play-state: paused;
  pointer-events: none;
  visibility: hidden;
}
.account__section--loading {
  pointer-events: none;
}
.account__section--loading::before,
.account__section--loading::after {
  visibility: visible;
  animation-play-state: running;
}
.account__empty {
  border: 1px solid var(--border-color);
  margin-bottom: 40px;
  padding: 25px;
  position: relative;
  text-align: center;
}
.account__empty:last-of-type {
  margin: 0;
}
.account__container {
  display: block;
  max-width: 1200px;
}
.account__container--cards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(300px,1fr));
  grid-auto-rows: 1fr;
  gap: min(1.0416vw,20px);
  padding-left: 0;
  padding-top: 0;
  border: none;
}
.account__header {
  margin-bottom: 40px;
}
.account__actions {
  padding: 15px 25px 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2.5vw;
}
.account__actions__infos {
  flex-grow: 1;
  font-size: 12px;
}
@media screen and (max-width: 400px) {
  .account {
    padding-left: 15px;
    padding-right: 15px;
  }
  .account__container--cards {
    gap: 10px;
  }
}
.account-avatar {
  display: block;
  position: relative;
}
.account-avatar.open .account-avatar__dropdown {
  display: block;
}
.account-avatar__icon {
  cursor: pointer;
}
.account-avatar__dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background-color: #fff;
  color: #333333;
  border: 1px solid #cdcdcd;
  border-radius: 4px;
  padding: 10px;
  min-width: 200px;
  font-size: 14px;
}
.account-avatar__menu {
  display: flex;
  flex-direction: column;
  align-items: left;
  margin: 0;
  padding: 0;
  list-style: none;
}
.account-avatar__menu li {
  margin: 0;
  padding: 0;
}
.account-avatar__menu li > a {
  color: inherit;
  padding: 10px 0;
  border-bottom: 1px solid #cdcdcd;
  display: block;
}
.account-avatar__menu li:last-child > a {
  border: none;
}
.account-item {
  margin-bottom: 20px;
  border: 1px solid #f0f0f0;
  border-radius: 4px;
  font-size: 1rem;
}
@media screen and (max-width: 550px) {
  .account-item {
    border: none;
    margin-bottom: 25px;
  }
}
.account-item:last-child {
  margin: 0;
}
.account-item__header {
  padding: 0 20px;
  height: 40px;
  line-height: 40px;
  font-weight: bold;
  background: #f0f0f0;
  font-size: 14px;
}
@media screen and (max-width: 550px) {
  .account-item__header {
    padding: 0;
    background: none;
    height: auto;
    line-height: 1.2em;
    border-bottom: 1px solid #cdcdcd;
    padding-bottom: 10px;
    color: #425fb2;
  }
}
.account-item__main {
  padding: 20px;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 20px;
}
@media screen and (max-width: 1000px) {
  .account-item__main {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 550px) {
  .account-item__main {
    padding: 15px 0 0;
  }
}
.account-item__main--image {
  grid-template-columns: 140px 1fr 240px;
}
@media screen and (max-width: 1000px) {
  .account-item__main--image {
    grid-template-columns: 100px 1fr;
  }
}
.account-item__section {
  margin-bottom: 1em;
  font-size: 14px;
}
.account-item__section:last-child {
  margin: 0;
}
.account-item__section--description {
  max-width: 400px;
}
.account-item__section--stock {
  display: flex;
  align-items: center;
  gap: .5em;
}
.account-item__title {
  font-weight: 600;
  font-size: 1.2em;
  line-height: 1.2em;
  margin-bottom: .6em;
}
@media screen and (max-width: 550px) {
  .account-item__title {
    font-size: 1em;
  }
}
.account-item__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (max-width: 1000px) {
  .account-item__actions {
    flex-direction: row;
    gap: 5px;
    flex-wrap: wrap;
  }
  .account-item__main--image .account-item__actions {
    grid-column-end: span 2;
  }
  .account-item__actions .button--full {
    width: auto;
  }
}
.account-card {
  border: 1px solid var(--border-color);
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: #333333;
  padding: 1.35rem 2rem;
  text-align: center;
  border-radius: 5px;
  transition: 300ms;
}
.account-card:hover {
  background: var(--border-color);
}
.account-card__content {
  font-size: 0.85rem;
  line-height: 1.4em;
}
.account-card__title {
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2em;
}
.article {
  width: 1080px;
  margin: 40px auto 0;
  padding: 40px;
  border-radius: 4px;
  border: 1px solid #cdcdcd;
}
@media screen and (max-width: 1200px) {
  .article {
    margin-left: max(15px,5vw);
    margin-right: max(15px,5vw);
    width: auto;
  }
}
@media screen and (max-width: 700px) {
  .article {
    padding: 35px 15px 15px;
    gap: 30px;
  }
}
.article__title {
  font-weight: 600;
  margin-bottom: 1em;
  text-align: center;
  font-size: 1.4em;
}
.article__faqs {
  display: grid;
  gap: 8px;
}
.page-hero__wrapper > *,
.page-hero-split > *,
.page-hero-split__wrapper > *,
.page-text > * {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0,45px,0);
  -webkit-transform: translate3d(0,45px,0);
  will-change: transform, opacity;
}
.page-text-media > .page-text-media__image {
  opacity: 0;
  visibility: hidden;
  transform: scale(0.98);
}
.page-fullscreen__bg > *,
.page-slider {
  opacity: 0;
  visibility: hidden;
}
.page-text-media--right > .page-text-media__content,
.page-text-fancyimages--right > .page-text-fancyimages__content {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(-5%,0,0);
  -webkit-transform: translate3d(-5%,0,0);
  will-change: transform, opacity;
}
.page-text-media--left > .page-text-media__content,
.page-text-fancyimages--left > .page-text-fancyimages__content {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(5%,0,0);
  -webkit-transform: translate3d(5%,0,0);
  will-change: transform, opacity;
}
.page-text-fancyimages__grid img:nth-child(1) {
  opacity: 0;
  visibility: hidden;
  transform: rotate(5deg) translate3d(35px,20px,0);
  -webkit-transform: rotate(5deg) translate3d(35px,20px,0);
  transform-origin: 40% 60%;
  will-change: transform, opacity;
}
.page-text-fancyimages__grid img:nth-child(2) {
  opacity: 0;
  visibility: hidden;
  transform: rotate(-5deg) translate3d(-35px,20px,0);
  -webkit-transform: rotate(-5deg) translate3d(-35px,20px,0);
  transform-origin: -40% 60%;
  will-change: transform, opacity;
}
.is-in.page-hero .page-hero__wrapper > *,
.is-in.page-hero-split .page-hero-split__wrapper > * {
  animation: slideUp 1.3s cubic-bezier(0.39,0.575,0.565,1) forwards;
}
.is-in.page-hero .page-hero__wrapper > *:nth-child(1),
.is-in.page-hero-split .page-hero-split__wrapper > *:nth-child(1) {
  animation-delay: 300ms;
}
.is-in.page-hero .page-hero__wrapper > *:nth-child(2),
.is-in.page-hero-split .page-hero-split__wrapper > *:nth-child(2) {
  animation-delay: 230ms;
}
.is-in.page-text > * {
  animation: slideUp 1.3s cubic-bezier(0.39,0.575,0.565,1) forwards;
}
.is-in.page-text-media > .page-text-media__image,
.is-in.page-fullscreen > .page-fullscreen__bg > *,
.is-in.page-slider {
  animation: fadeIn 1.1s cubic-bezier(0.165,0.84,0.44,1) forwards;
}
.is-in.page-text-fancyimages__grid > img:nth-child(1) {
  animation: rotateInLeft 890ms 150ms cubic-bezier(0.39,0.575,0.565,1) forwards;
}
.is-in.page-text-fancyimages__grid > img:nth-child(2) {
  animation: rotateInRight 890ms cubic-bezier(0.39,0.575,0.565,1) forwards;
}
.page-hero-split > * {
  animation: slideUp 1.3s cubic-bezier(0.39,0.575,0.565,1) forwards;
}
.page-text-media--right > .page-text-media__content.is-in,
.page-text-fancyimages--right > .page-text-fancyimages__content.is-in {
  animation: slideRight 1.1s cubic-bezier(0.39,0.575,0.565,1) forwards;
}
.page-text-media--left > .page-text-media__content.is-in,
.page-text-fancyimages--left > .page-text-fancyimages__content.is-in {
  animation: slideLeft 1.1s cubic-bezier(0.39,0.575,0.565,1) forwards;
}
[v-cloak] {
  display: none;
}
.shop {
  display: block;
  padding-left: clamp(15px,4.1664vw,80px);
  padding-right: clamp(15px,4.1664vw,80px);
  margin-top: 40px;
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 0 25px;
}
@media screen and (min-width: 1921px) {
  .shop {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1860px) {
  .shop {
    padding-left: clamp(15px,3.1248vw,60px);
    padding-right: clamp(15px,3.1248vw,60px);
  }
}
@media screen and (max-width: 1550px) {
  .shop {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1550px) {
  .shop {
    grid-template-columns: 220px 1fr;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .shop {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
.shop__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 40px clamp(10px,1.0416vw,20px);
  position: relative;
  margin-top: 20px;
}
@media screen and (max-width: 1550px) {
  .shop__grid {
    grid-template-columns: repeat(3,1fr);
  }
}
@media screen and (max-width: 1000px) {
  .shop__grid {
    grid-template-columns: repeat(2,1fr);
    gap: 15px 10px;
  }
}
.shop__grid.loading {
  min-height: 25vw;
}
.shop__grid.loading::after,
.shop__grid.loading::before {
  visibility: visible;
  animation-play-state: running;
}
.shop__grid::before {
  content: "";
  background: #cdcdcd;
  border-radius: 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0.4;
  pointer-events: none;
  visibility: hidden;
  z-index: 10;
}
.shop__grid::after {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 11;
  background: url(../img/shop/spinner.svg) no-repeat center;
  margin-top: -25px;
  margin-left: -25px;
  animation: rotation 800ms linear infinite;
  pointer-events: none;
  visibility: hidden;
  animation-play-state: paused;
}
.shop__pathway,
.shop__header {
  grid-column-end: span 2;
}
.shop__pathway {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-bottom: 15px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5em;
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  .shop__pathway {
    margin-bottom: 15px;
  }
}
.shop__pathway li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.shop__pathway li::after {
  content: ">";
}
.shop__pathway li:last-child::after {
  display: none;
}
.shop__pathway a {
  color: inherit;
}
.shop__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: clamp(20px,2.0832vw,40px);
}
@media screen and (max-width: 1550px) {
  .shop__header {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .shop__header {
    grid-column-end: span 1;
    margin-bottom: 15px;
  }
}
.shop__title {
  font-size: clamp(22px,1.8228vw,35px);
  line-height: 1em;
  font-weight: 500;
}
.shop__main--search {
  grid-column-end: span 2;
}
@media screen and (max-width: 1200px) {
  .shop__main {
    grid-column-end: span 2;
  }
}
@media screen and (max-width: 1200px) {
  .shop__sidebar {
    transition: 350ms cubic-bezier(0.25,0.46,0.45,0.94);
    will-change: transform;
    position: fixed;
    z-index: 100;
    top: 0;
    bottom: 0;
    left: 0;
    width: 320px;
    background: #fff;
    padding: 60px 20px 20px;
    border-right: 1px solid #cdcdcd;
    box-shadow: 0 5px 10px rgba(0,0,0,0.16);
    overflow-y: auto;
    transform: translate3d(-120%,0,0);
  }
  .shop__sidebar.visible {
    transform: translate3d(0,0,0);
  }
}
.shop__sidebar-close {
  display: none;
  position: absolute;
  top: 5px;
  right: 5px;
  cursor: pointer;
  width: 40px;
  height: 40px;
}
.shop__sidebar-close::before,
.shop__sidebar-close::after {
  content: "";
  width: 50%;
  height: 1px;
  background-color: #333333;
  position: absolute;
  top: 50%;
  left: 50%;
}
.shop__sidebar-close::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.shop__sidebar-close::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
@media screen and (max-width: 1200px) {
  .shop__sidebar-close {
    display: block;
  }
}
.shop__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  position: relative;
}
.shop__filters.loading {
  opacity: 0.2;
}
@media screen and (max-width: 700px) {
  .shop__filters {
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}
.shop__filters-toggler {
  display: none;
  position: relative;
  height: 40px;
  line-height: 40px;
  padding: 0 40px 0 15px;
  cursor: pointer;
  background: #f0f0f0;
  border-radius: 4px;
}
.shop__filters-toggler::after {
  content: "";
  width: 30px;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: url(../img/shop/filter.svg) no-repeat center;
}
@media screen and (max-width: 1200px) {
  .shop__filters-toggler {
    display: block;
  }
}
.shop__sort {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1200px) {
  .shop [data-shop-categories] {
    display: none;
  }
}
.shop-product-preview {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: #333333;
  position: relative;
  border: 1px solid #cdcdcd;
  border-radius: 5px;
  padding-top: 10px;
  --x-spacing: clamp(15px,1.0416vw,20px);
  overflow: hidden;
  background: #fff;
  transition: 600ms cubic-bezier(0.25,0.46,0.45,0.94);
}
.shop-product-preview:hover {
  border-color: #a7a7a7;
}
.shop-product-preview__discount {
  position: absolute;
  top: 0;
  right: 0;
  background: #f5d420;
  color: #333333;
  font-size: 14px;
  padding: 5px 10px;
  font-weight: bold;
  z-index: 10;
  border-bottom-left-radius: 5px;
}
.shop-product-preview__image {
  display: block;
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 30px;
  margin-bottom: 30px;
  overflow: hidden;
  padding-top: 20px;
}
.shop-product-preview__image img {
  margin: 0 auto;
  aspect-ratio: 1;
  object-fit: contain;
  max-width: 310px;
  transform: translate3d(0,0,0);
  transition: 600ms cubic-bezier(0.25,0.46,0.45,0.94);
  will-change: transform;
  backface-visibility: hidden;
  image-rendering: auto;
}
@media screen and (max-width: 550px) {
  .shop-product-preview__image img {
    max-width: 130px;
  }
}
.shop-product-preview__image:hover img {
  transform: translate3d(0,-10px,0);
}
.shop-product-preview__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 var(--x-spacing);
  flex-grow: 1;
}
.shop-product-preview__colors {
  display: flex;
  flex-wrap: wrap;
  gap: 3px;
}
.shop-product-preview__colors__item {
  width: 15px;
  height: 15px;
  background-color: #000;
  box-shadow: 0 0 0 1px #cdcdcd;
  border-radius: 50%;
}
.shop-product-preview__availability {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.89rem;
  line-height: 1.2em;
  font-weight: 500;
}
@media screen and (max-width: 550px) {
  .shop-product-preview__availability {
    font-size: 14px;
  }
}
.shop-product-preview__availability svg {
  width: 1.38em;
  height: 1.38em;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop-product-preview__title {
  font-weight: 600;
  margin-bottom: 0.25em;
}
.shop-product-preview__excerpt {
  font-size: 0.89rem;
  line-height: 1.2em;
}
@media screen and (max-width: 550px) {
  .shop-product-preview__excerpt {
    font-size: 14px;
  }
}
.shop-product-preview__actions {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  color: #fff;
  background-color: #333333;
  font-size: 0.89rem;
  line-height: 1.2em;
  margin: 20px 0 0;
}
@media screen and (max-width: 550px) {
  .shop-product-preview__actions {
    font-size: 14px;
  }
}
.shop-product-preview__price {
  font-size: 0.9rem;
  padding-left: var(--x-spacing);
  padding-right: 0.5em;
}
@media screen and (max-width: 1550px) {
  .shop-product-preview__price {
    font-size: 0.89rem;
    line-height: 1.2em;
  }
}
@media screen and (max-width: 1550px) and screen and (max-width: 550px) {
  .shop-product-preview__price {
    font-size: 14px;
  }
}
.shop-product-preview__cta {
  display: flex;
  align-items: center;
  background-color: #f5d420;
  color: #333333;
  max-width: 150px;
  align-self: stretch;
  padding: 0 var(--x-spacing);
  transition: 300ms;
  text-align: center;
  justify-content: center;
  position: relative;
  font-weight: 500;
}
.shop-product-preview__cta:hover {
  background: #f7dd51;
}
.shop-product-preview__cta:hover::after {
  transform: scale3d(1,1,1);
  opacity: 1;
}
.shop-product-preview__cta::after {
  content: '';
  position: absolute;
  bottom: 12px;
  height: 1px;
  background: #333333;
  left: var(--x-spacing);
  right: var(--x-spacing);
  transition: 300ms;
  transform: scale3d(0,1,1);
  opacity: 0;
}
.shop-product-preview--cta-full .shop-product-preview__actions {
  background-color: #425fb2;
}
.shop-product-preview--minimal .shop-product-preview__image {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.shop-product-preview--minimal .shop-product-preview__title {
  margin-bottom: 0;
}
.shop-product-preview--minimal .shop-product-preview__heading {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #333333;
  color: #fff;
  height: 45px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 700px) {
  .shop-product-preview__actions {
    grid-template-columns: 100%;
    height: auto;
  }
  .shop-product-preview__image {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin-bottom: 15px;
  }
  .shop-product-preview__content {
    gap: 8px;
  }
  .shop-product-preview__heading,
  .shop-product-preview__colors {
    margin-bottom: 8px;
  }
  .shop-product-preview__title,
  .shop-product-preview__cta {
    font-size: 14px;
  }
  .shop-product-preview__price,
  .shop-product-preview__cta {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .shop-product-preview__price {
    padding-top: 0.35rem;
    padding-bottom: 0.35rem;
  }
  .shop-product-preview__cta {
    max-width: 100%;
    height: 30px;
  }
  .shop-product-preview__cta::after {
    display: none;
  }
  .shop-product-preview__colors__item {
    width: 13px;
    height: 13px;
  }
}
.shop-pagination {
  margin-top: 40px;
  padding-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid #cdcdcd;
  gap: 5px;
  font-size: 14px;
}
@media screen and (max-width: 1200px) {
  .shop-pagination {
    margin-top: 20px;
    padding-top: 20px;
  }
}
@media screen and (max-width: 550px) {
  .shop-pagination {
    gap: 3px;
    font-size: 12px;
  }
}
.shop-pagination.loading {
  opacity: .2;
}
.shop-pagination__page {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-align: center;
  line-height: 40px;
  color: #fff;
  background: #333333;
  cursor: pointer;
}
@media screen and (max-width: 1200px) {
  .shop-pagination__page {
    width: 35px;
    height: 35px;
    line-height: 35px;
  }
}
@media screen and (max-width: 550px) {
  .shop-pagination__page {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
}
.shop-pagination__page[data-current] {
  background: #425fb2;
}
.shop-category-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  background: #f0f0f0;
  border-radius: 4px;
  padding: 25px 16px;
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.5em;
}
@media screen and (max-width: 1200px) {
  .shop-category-menu {
    max-height: 50vh;
    overflow-y: auto;
  }
}
.shop-category-menu a {
  color: inherit;
}
.shop-category-menu li {
  margin: 0;
}
.shop-category-menu li.active > a {
  background: #cdcdcd;
  font-weight: 500;
}
.shop-category-menu > li > a {
  color: #333333;
  padding: 6px 12px;
  display: block;
  font-size: 0.89rem;
  line-height: 1.2em;
  line-height: 1.3em;
  border-radius: 4px;
}
@media screen and (max-width: 550px) {
  .shop-category-menu > li > a {
    font-size: 14px;
  }
}
.shop-category-menu > li > a:hover {
  background: #cdcdcd;
}
@media screen and (max-width: 1550px) {
  .shop-category-menu > li > a {
    padding: 5px 12px;
  }
}
.shop-category-menu__submenu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: .9rem;
}
.shop-category-menu__submenu a {
  font-size: 14px;
  color: #333333;
  padding: 6px 12px;
  display: block;
  line-height: 1.3em;
  border-radius: 4px;
}
.shop-category-menu__submenu a::before {
  content: '- ';
}
.attribute {
  background: #f0f0f0;
  position: relative;
  border-radius: 4px;
  font-size: 0.89rem;
  line-height: 1.2em;
}
@media screen and (max-width: 550px) {
  .attribute {
    font-size: 14px;
  }
}
.attribute--category {
  display: none;
}
@media screen and (max-width: 1200px) {
  .attribute--category {
    display: block;
  }
}
.attribute__toggler {
  position: relative;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 0 46px 0 16px;
  font-weight: 500;
  cursor: pointer;
  font-size: 1rem;
  line-height: 1.5em;
  white-space: nowrap;
  gap: .3em;
}
@media screen and (max-width: 1550px) {
  .attribute__toggler {
    height: 55px;
  }
}
@media screen and (max-width: 1200px) {
  .attribute__toggler {
    font-size: 1rem;
    height: 50px;
  }
}
.attribute__toggler::before,
.attribute__toggler::after {
  content: "";
  width: 12px;
  height: 1px;
  border-radius: 1px;
  background: #333333;
  position: absolute;
  right: 22px;
  top: 50%;
  transition: 300ms cubic-bezier(0.25,0.46,0.45,0.94);
}
.attribute__toggler::after {
  transform: rotate3d(0,0,1,90deg);
}
.attribute--open .attribute__toggler::after {
  transform: rotate3d(0,0,1,0deg);
}
.attribute__header {
  display: none;
}
@media screen and (max-width: 700px) {
  .attribute__header {
    display: grid;
    grid-template-columns: 1fr 40px;
    height: 50px;
    align-items: center;
    border-bottom: 1px solid #cdcdcd;
  }
}
.attribute__title {
  font-weight: 500;
  font-size: 1rem;
  padding-left: 15px;
}
.attribute__close {
  position: relative;
  height: 40px;
  cursor: pointer;
}
.attribute__close::before,
.attribute__close::after {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: #333333;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -9px;
  transition: 300ms cubic-bezier(0.25,0.46,0.45,0.94);
  transform: rotate3d(0,0,1,45deg);
}
.attribute__close::after {
  transform: rotate3d(0,0,1,-45deg);
}
.attribute__dropdown {
  overflow: hidden;
  position: absolute;
  right: -10px;
  top: 100%;
  width: 280px;
  transition: 300ms;
  visibility: hidden;
  pointer-events: none;
  background: #fff;
  border: 1px solid #cdcdcd;
  border-radius: 4px;
  z-index: 100;
}
.left .attribute__dropdown {
  left: -10px;
  right: auto;
}
@media screen and (max-width: 1200px) {
  .attribute__dropdown {
    right: 0;
    width: 240px;
  }
  .left .attribute__dropdown {
    right: auto;
    left: 0;
  }
}
@media screen and (max-width: 700px) {
  .attribute__dropdown {
    position: fixed;
    z-index: 1000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: none;
    border-radius: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
  }
}
.attribute__dropdown .input {
  margin-bottom: 10px;
}
@media screen and (max-width: 700px) {
  .attribute__dropdown .input {
    margin-bottom: 1em;
  }
}
.attribute__dropdown .input:last-child {
  margin: 0;
}
.attribute__dropdown label {
  margin: 0;
}
.attribute__dropdown .radio input:checked ~ span,
.attribute__dropdown .checkbox input:checked ~ span {
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .attribute__dropdown .radio label,
  .attribute__dropdown .checkbox label {
    font-size: 14px;
  }
}
@media screen and (max-width: 700px) {
  .attribute__dropdown .radio label,
  .attribute__dropdown .checkbox label {
    font-size: 1rem;
  }
}
.attribute__dropdown .radio__group-options {
  display: block;
}
.attribute__dropdown .radio label {
  margin-bottom: 10px;
}
@media screen and (max-width: 700px) {
  .attribute__dropdown .radio label {
    margin-bottom: 1em;
  }
}
.attribute__dropdown .radio label:last-child {
  margin: 0;
}
.attribute__dropdown .radio label > span {
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.attribute__dropdown .radio label > span::before {
  border-radius: 0;
  border: none;
}
.attribute__dropdown .radio label input:checked ~ span::before {
  box-shadow: none;
  background: url(../img/icons/check.svg) no-repeat center;
}
.attribute--open .attribute__dropdown {
  visibility: visible;
  pointer-events: all;
}
.attribute__link {
  display: flex;
  gap: 7px;
  margin-bottom: 10px;
}
.attribute__link--active {
  font-weight: bold;
}
.attribute__link--active::after {
  content: "";
  box-shadow: none;
  background: url(../img/icons/check.svg) no-repeat center;
  display: block;
  width: 0.85em;
  height: 0.85em;
  flex-shrink: 0;
}
@media screen and (max-width: 1200px) {
  .attribute__link {
    font-size: 14px;
  }
}
@media screen and (max-width: 700px) {
  .attribute__link {
    font-size: 1rem;
  }
}
.attribute__wrapper {
  overflow: hidden;
}
@media screen and (max-width: 700px) {
  .attribute__wrapper {
    flex-grow: 1;
  }
}
.attribute__inner {
  padding: 15px;
  max-height: min(360px,50vh);
  overflow-y: auto;
}
@media screen and (max-width: 700px) {
  .attribute__inner {
    max-height: 100%;
    padding: 30px 15px;
  }
}
.attribute--color .attribute__inner {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 10px;
}
@media screen and (max-width: 700px) {
  .attribute--color .attribute__inner {
    grid-template-columns: repeat(auto-fit,minmax(30px,1fr));
  }
  .attribute--color .attribute__inner > * {
    max-width: 40px;
  }
}
.attribute--color .checkbox {
  margin: 0;
}
.attribute--color .checkbox input:checked ~ span > span {
  box-shadow: 0 0 0 2px #333333 inset;
}
.attribute--color .checkbox label > span {
  display: block;
}
.attribute--color .checkbox label > span::before {
  display: none;
}
.attribute--color .checkbox label > span > span {
  display: block;
  position: static;
  aspect-ratio: 1;
  border-radius: 100px;
  border: 1px solid #333333;
  flex-shrink: 0;
  overflow: hidden;
  text-indent: -100em;
}
.dropdown {
  position: relative;
  font-size: 16px;
}
.dropdown__toggler {
  position: relative;
  height: 40px;
  line-height: 40px;
  padding: 0 40px 0 15px;
  cursor: pointer;
  background: #f0f0f0;
  border-radius: 4px;
}
.dropdown__toggler::after {
  content: '';
  width: 30px;
  top: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  background: url(../img/icons/dropdown.svg) no-repeat center;
}
.attribute--open .dropdown__toggler::after {
  transform: rotate(180deg);
}
.dropdown__dropdown {
  position: absolute;
  top: 100%;
  right: -1px;
  width: 300px;
  padding: 20px;
  background: #fff;
  border: 1px solid #cdcdcd;
  display: none;
  pointer-events: none;
}
.dropdown__dropdown .input {
  margin-bottom: 10px;
}
.dropdown__dropdown .input:last-child {
  margin: 0;
}
.dropdown__dropdown label {
  margin: 0;
}
.dropdown__dropdown .radio input:checked ~ span,
.dropdown__dropdown .checkbox input:checked ~ span {
  font-weight: bold;
}
.dropdown__dropdown .radio__group-options {
  display: block;
}
.dropdown__dropdown .radio label {
  margin-bottom: 10px;
}
.dropdown__dropdown .radio label:last-child {
  margin: 0;
}
.dropdown__dropdown .radio label > span {
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
}
.dropdown__dropdown .radio label > span::before {
  border-radius: 0;
  border: none;
}
.dropdown__dropdown .radio label input:checked ~ span::before {
  box-shadow: none;
  background: url(../img/icons/check.svg) no-repeat center;
}
.attribute--open .dropdown__dropdown {
  display: block;
  pointer-events: all;
}
.shop-product {
  display: block;
  padding-left: clamp(15px,4.1664vw,80px);
  padding-right: clamp(15px,4.1664vw,80px);
  padding-top: 40px;
}
@media screen and (min-width: 1921px) {
  .shop-product {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1860px) {
  .shop-product {
    padding-left: clamp(15px,3.1248vw,60px);
    padding-right: clamp(15px,3.1248vw,60px);
  }
}
@media screen and (max-width: 1550px) {
  .shop-product {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.shop-product__code {
  font-size: 14px;
}
.shop-product__top {
  display: grid;
  grid-template-columns: 30% 1fr 30%;
  gap: clamp(30px,4.6872vw,90px);
}
@media screen and (max-width: 1200px) {
  .shop-product__top {
    gap: 20px;
    grid-template-columns: 30% 1fr 35%;
  }
}
.shop-product__top .shop__pathway {
  margin-bottom: 20px;
}
.shop-product__top .shop__pathway li:last-child {
  font-weight: 500;
}
.shop-product__brand {
  margin-bottom: 0em;
  font-size: 0.89rem;
  line-height: 1.2em;
}
@media screen and (max-width: 550px) {
  .shop-product__brand {
    font-size: 14px;
  }
}
.shop-product__heading {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0 10px;
}
.shop-product__actions {
  display: flex;
  align-items: center;
  gap: 5px;
}
.shop-product__title {
  font-weight: bold;
  margin-bottom: .1em;
  font-size: clamp(22px,1.8228vw,35px);
  line-height: 1em;
}
.shop-product__availability {
  display: flex;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  gap: 0.5em;
}
.shop-product__spec {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 0.5em;
}
.shop-product__slider {
  border: 1px solid #cdcdcd;
  border-radius: 5px;
  padding: 10px;
}
.shop-product__preview {
  display: block;
  cursor: zoom-in;
}
.shop-product__preview img {
  aspect-ratio: 1;
  object-fit: contain;
}
.shop-product__thumbs {
  display: grid;
  grid-template-columns: repeat(6,1fr);
  gap: 10px;
  margin-top: 10px;
}
.shop-product__thumb {
  border: 1px solid #cdcdcd;
  display: block;
  border-radius: 3px;
  overflow: hidden;
  cursor: pointer;
}
.shop-product__thumb:hover,
.shop-product__thumb.current {
  border-color: #333333;
}
.shop-product__thumb img {
  aspect-ratio: 1;
  object-fit: contain;
}
.shop-product__header {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 560px;
}
.shop-product__header-section {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.shop-product__header-section--bordered {
  border-bottom: 1px solid #cdcdcd;
  padding-bottom: 20px;
}
.shop-product__variants {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.shop-product__variants-group > strong {
  display: block;
  font-weight: normal;
}
.shop-product__selector {
  padding-top: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.shop-product__option {
  font-size: 14px;
  padding: 12px 20px;
  border-radius: 3px;
  box-shadow: 0 0 0 1px #333333;
  color: #333333;
  font-weight: bold;
}
.shop-product__option--color {
  box-shadow: 0 0 0 1px #cdcdcd;
  width: 30px;
  height: 30px;
  background-color: red;
  border-radius: 50%;
  padding: 0;
  overflow: hidden;
  text-indent: -100em;
}
.shop-product__option--current {
  border-color: #333333;
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px #333333;
  background: rgba(51,51,51,0.05);
}
.shop-product__option--disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
.shop-product__price {
  font-size: 1rem;
  display: flex;
  gap: 10px;
  align-items: center;
}
.shop-product__price strong {
  font-size: clamp(20px,1.45824vw,28px);
  line-height: 1.2em;
}
.shop-product__discount {
  display: block;
  width: 45px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  border-radius: 50%;
  background: #f5d420;
  font-size: 14px;
  font-weight: bold;
}
.shop-product__vat-disclaimer,
.shop-product__discounted-price {
  opacity: 0.5;
  font-size: 0.9rem;
}
.shop-product__attributes {
  margin: 0;
  margin-top: 1rem;
}
.shop-product__subtitle {
  font-weight: bold;
  margin-bottom: 0.6em;
  font-size: 1.4rem;
}
.shop-product__main {
  grid-column-end: span 2;
  margin-top: clamp(60px,6.2496vw,120px);
}
.shop-product__container {
  max-width: 1000px;
  margin: 0 auto;
}
.shop-product__unavailable {
  border: 1px solid #cdcdcd;
  padding: 10px;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
}
.shop-product__add {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: end;
  margin-top: 2rem;
  transition: 300ms;
}
.shop-product__add.loading {
  opacity: 0.2;
}
.shop-product__section {
  background-color: #f0f0f0;
  border-radius: 5px;
  padding: min(3.1248vw,60px) min(2.8644vw,55px);
  margin: 40px 0 60px;
}
.shop-product__accordion-item {
  display: block;
  border-top: 1px solid #cdcdcd;
}
.shop-product__accordion-item:last-child {
  border-bottom: 1px solid #cdcdcd;
}
.shop-product__accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
}
.shop-product__accordion-toggler {
  display: block;
  align-items: center;
  width: 25px;
  height: 25px;
  box-shadow: 0 0 0 1px #cdcdcd;
  border-radius: 2px;
  position: relative;
}
.shop-product__accordion-toggler::before,
.shop-product__accordion-toggler::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 4px;
  right: 4px;
  height: 2px;
  background: #818181;
  transition: 300ms cubic-bezier(0.25,0.46,0.45,0.94);
  margin-top: -1px;
}
.shop-product__accordion-toggler::before {
  transform: rotate3d(0,0,1,90deg);
}
.accordion-open .shop-product__accordion-toggler::before {
  transform: rotate3d(0,0,1,0deg);
}
.shop-product__accordion-content {
  display: grid;
  overflow: hidden;
  grid-template-rows: 0fr;
  transition: 300ms cubic-bezier(0.25,0.46,0.45,0.94);
}
.accordion-open .shop-product__accordion-content {
  grid-template-rows: 1fr;
}
.shop-product__accordion-wrapper {
  overflow: hidden;
}
.shop-product__accordion-inner {
  padding-bottom: 20px;
  font-size: 0.89rem;
  line-height: 1.2em;
  line-height: 1.4em;
}
@media screen and (max-width: 550px) {
  .shop-product__accordion-inner {
    font-size: 14px;
  }
}
.shop-product__prints-header {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}
.shop-product__prints-header .heading-small {
  margin: 0;
}
.shop-product__prints-nav {
  display: flex;
  align-items: center;
  gap: 5px;
}
.shop-product__prints .swiper-button-prev,
.shop-product__prints .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  border: 1px solid #cdcdcd;
  border-radius: 50%;
}
.shop-product__print-image {
  border: 1px solid #cdcdcd;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  width: 100%;
}
.shop-product__print-image img {
  object-fit: contain;
}
.shop-product__print-title {
  font-size: 14px;
  margin-top: 10px;
}
.shop-product__notes {
  border: 1px solid #cdcdcd;
  padding: 40px 15px 20px;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  font-size: 14px;
}
.shop-product__notes-title {
  position: absolute;
  padding: 5px 10px;
  top: 0;
  left: 0;
  border-top-left-radius: 4px;
  border-bottom-right-radius: 4px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  background: #425fb2;
}
.shop-product__restock {
  padding: 15px;
  background: #f0f0f0;
  border-radius: 5px;
  display: grid;
  gap: 6px;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .shop-product {
    display: block;
    padding-left: 20px;
    padding-right: 20px;
  }
  .shop-product .shop__pathway,
  .shop-product__top {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  .shop-product__top {
    grid-template-columns: 100%;
    gap: 40px;
  }
  .shop-product__slider {
    height: max(280px,50vh);
  }
  .shop-product__slider .swiper {
    height: 100%;
  }
  .shop-product__slider .swiper-slide > a {
    height: 100%;
  }
  .shop-product__slider .swiper-slide > a img {
    height: 100%;
  }
  .shop-product__section {
    padding-left: 0px;
    padding-right: 0px;
  }
  .shop-product__section-top {
    padding: 0 20px;
  }
  .shop-product__section .shop-product__prints-wrapper .swiper {
    padding-right: 20px;
    padding-left: 20px;
  }
}
@media screen and (max-width: 550px) {
  .shop-product__slider {
    height: max(280px,40vh);
  }
}
.shop-products-empty {
  grid-column: 1 / -1;
  padding: 50px 0;
  text-align: center;
  font-weight: bold;
}
.shop-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0.2rem;
  position: relative;
}
.shop-icon svg {
  width: 100%;
  height: 100%;
}
.shop-icon--active::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #f5d420;
  border-radius: 50%;
  top: 5px;
  right: 5px;
  position: absolute;
}
@media screen and (max-width: 700px) {
  .shop-icon {
    width: 35px;
    height: 35px;
  }
}
@keyframes addAnimation {
  0% {
    transform: scale3d(0,0,0);
    opacity: 1;
  }
  100% {
    transform: scale3d(1,1,1);
    opacity: 0;
  }
}
.minicart {
  position: relative;
  font-size: 14px;
  color: #333333;
}
.minicart__toggler {
  cursor: pointer;
  position: relative;
}
.minicart__toggler::before {
  content: "";
  z-index: -1;
  width: 100px;
  height: 100px;
  background: #425fb2;
  top: 50%;
  left: 50%;
  position: absolute;
  margin-top: -50px;
  margin-left: -50px;
  border-radius: 50%;
  visibility: hidden;
  transform: scale3d(0,0,0);
}
.minicart__toggler--animate::before {
  visibility: visible;
  animation: addAnimation 800ms cubic-bezier(0.23,1,0.32,1);
}
.minicart__count {
  position: absolute;
  right: 5px;
  top: 5px;
  border-radius: 50%;
  background: #f5d420;
  font-weight: bold;
  width: 10px;
  height: 10px;
}
.minicart__dropdown {
  border: 1px solid #cdcdcd;
  border-radius: 4px;
  position: absolute;
  right: 0;
  top: 100%;
  background: #fff;
  width: 380px;
  padding: 10px;
  visibility: hidden;
  pointer-events: none;
}
.minicart__dropdown--open {
  pointer-events: all;
  visibility: visible;
  box-shadow: 3px 3px 10px rgba(0,0,0,0.16);
}
@media screen and (max-width: 700px) {
  .minicart__dropdown {
    position: fixed;
    left: 0;
    top: 70px;
    width: 100%;
  }
}
.minicart__empty {
  text-align: center;
  padding: 10px 0;
}
.minicart__products {
  max-height: 60vh;
  overflow-y: auto;
  margin: 0 -10px;
  padding: 0 10px;
}
.minicart__product {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 15px;
  padding: 8px 0;
  border-bottom: 1px solid #cdcdcd;
}
.minicart__product:first-child {
  padding-top: 0;
}
.minicart__title {
  font-weight: 600;
}
.minicart__price {
  font-weight: 600;
  display: block;
  color: #333333;
}
.minicart__image {
  aspect-ratio: 1;
  border: 1px solid #cdcdcd;
  padding: 5px;
  border-radius: 4px;
}
.minicart__image img {
  aspect-ratio: 1;
  object-fit: contain;
}
.minicart__subtotal {
  text-align: right;
}
.minicart__resume {
  padding-top: 10px;
}
.minicart__row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 2px 0;
}
.minicart__row:last-child {
  padding-bottom: 0;
}
.minicart__row--total {
  font-weight: 600;
  font-size: 1.2em;
}
.minicart__row small {
  font-weight: normal;
  font-size: 0.8em;
}
.minicart__value {
  color: #333333;
}
.minicart__actions {
  padding-top: 10px;
}
.minicart__button {
  background: #425fb2;
  color: #fff;
  font-weight: bold;
  text-align: center;
  width: 100%;
  display: block;
  height: 40px;
  line-height: 40px;
  border-radius: 4px;
  border-radius: 40px;
}
.cart {
  max-width: 1000px;
  margin: 40px auto 80px;
  font-size: 14px;
}
@media screen and (max-width: 1000px) {
  .cart {
    padding: 0 35px;
  }
}
.cart--checkout {
  margin: 0;
  max-width: none;
}
@media screen and (max-width: 1200px) {
  .cart--checkout {
    font-size: 14px;
  }
}
.cart--checkout .cart__main {
  padding: 0;
  border: none;
}
.cart--checkout .cart__row--total {
  margin-top: 0;
}
.cart--checkout .cart__product {
  gap: clamp(20px,2.0832vw,40px);
}
.cart--checkout .cart__product--not-editable {
  grid-template-columns: clamp(80px,5.208vw,100px) 22.5% 1fr auto;
}
.cart__header {
  text-align: center;
  font-weight: bold;
  margin-bottom: 0.8em;
  font-size: 1.4rem;
}
.cart__actions {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 20px;
  gap: 5px;
}
.cart__actions a {
  flex-grow: 1;
  text-align: center;
}
.cart__product {
  display: grid;
  grid-template-columns: 100px auto 1fr auto auto;
  gap: 40px;
  padding: 15px 0;
  border-bottom: 1px solid #cdcdcd;
  position: relative;
}
.cart__product--not-editable {
  grid-template-columns: 100px 1fr auto auto;
}
.cart__product:first-child {
  padding-top: 0;
}
.cart__main {
  padding: 20px;
  border: 1px solid #cdcdcd;
  border-radius: 5px;
  position: relative;
}
.cart__main::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 10;
  pointer-events: none;
  visibility: hidden;
}
.cart__main::after {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 11;
  background: url(../img/shop/spinner.svg) no-repeat center;
  margin-top: -25px;
  margin-left: -25px;
  animation: rotation 800ms linear infinite;
  animation-play-state: paused;
  pointer-events: none;
  visibility: hidden;
}
.cart__main.cart__main--loading {
  pointer-events: none;
  padding: 30px;
}
.cart__main.cart__main--loading::before,
.cart__main.cart__main--loading::after {
  visibility: visible;
  animation-play-state: running;
}
.cart__empty {
  text-align: center;
  padding: 40px 0;
}
.cart__title {
  font-weight: bold;
  color: inherit;
  overflow: hidden;
}
.cart__description {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  white-space: nowrap;
}
.cart__remove > span {
  cursor: pointer;
}
.cart__remove > span svg {
  width: 1.6em;
  height: 1.6em;
}
.cart__price {
  font-weight: bold;
  display: block;
  font-size: 1.1em;
}
.cart__quantity {
  margin-top: .5em;
}
.cart__image {
  aspect-ratio: 1;
  padding: 5px;
  display: block;
  background-color: #fff;
}
.cart__image img {
  aspect-ratio: 1;
  object-fit: contain;
}
.cart__subtotal {
  text-align: right;
}
.cart__coupon {
  display: flex;
  gap: 5px;
  align-items: center;
  padding-bottom: 15px;
}
.cart__coupon input {
  width: auto;
  padding: 0 10px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}
.cart__coupon .button {
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}
.cart__resume {
  padding-top: 15px;
}
.cart__row {
  display: grid;
  grid-template-columns: 1fr auto;
  padding: 5px 0;
}
.cart__row:last-child {
  padding-bottom: 0;
}
.cart__row--total {
  font-weight: bold;
  font-size: 1.2em;
}
.cart__row small {
  font-weight: normal;
  font-size: 0.8em;
}
.cart__remove-coupon {
  font-size: 0.9em;
  text-decoration: underline;
  text-transform: lowercase;
  cursor: pointer;
}
@media screen and (max-width: 700px) {
  .cart {
    margin: 20px auto 50px;
    padding: 15px;
  }
  .cart__main {
    padding: 10px 10px 15px;
  }
  .cart__image {
    justify-self: center;
  }
  .cart__product {
    grid-template-columns: clamp(65px,5.208vw,100px) auto 1fr auto;
    gap: 15px 20px;
    align-items: center;
  }
  .cart__subtotal {
    text-align: left;
    padding-top: 0;
    line-height: 1.6em;
    align-self: end;
  }
  .cart__remove {
    grid-row-start: 1;
    display: flex;
    justify-content: flex-end;
    padding-top: 0;
    grid-area: 1/4;
    align-self: start;
  }
  .cart__description {
    grid-column: span 2;
  }
  .cart__quantity {
    margin-top: 0;
  }
  .cart__specs {
    grid-column: span 3;
    font-size: 12px;
  }
  .cart__coupon input {
    height: 30px;
    line-height: 30px;
    flex-grow: 1;
  }
  .cart__coupon .button {
    height: 30px;
    line-height: 30px;
    min-width: 0;
  }
  .cart__row--total {
    font-size: 1.2rem;
    margin-top: 0;
  }
}
.checkout {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  align-items: start;
  min-height: 100vh;
  font-size: 16px;
}
.checkout .input.radio label span,
.checkout .input.checkbox label span {
  align-items: center;
}
.checkout .input.radio.checkout__radio label > span {
  align-items: baseline;
}
.checkout .input.radio.checkout__radio label {
  padding: 25px 15px;
  border-radius: 3px;
  border: 1px solid #cdcdcd;
  margin-bottom: 1em;
}
.checkout .input.radio.checkout__radio label:last-child {
  margin: 0;
}
.checkout .input.radio.checkout__radio .radio__text {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
.checkout .input.radio.checkout__radio .radio__text strong {
  font-size: 1.1em;
}
.checkout__main,
.checkout__cart {
  padding: 40px 60px 60px;
}
@media screen and (max-width: 1400px) {
  .checkout__main,
  .checkout__cart {
    padding: 40px;
  }
}
@media screen and (max-width: 1200px) {
  .checkout__main,
  .checkout__cart {
    padding: 40px 20px;
  }
}
.checkout__cart {
  background: rgba(205,205,205,0.25);
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}
.checkout__main {
  justify-content: flex-end;
  position: relative;
  display: flex;
}
.checkout__container {
  flex-grow: 1;
}
@media screen and (min-width: 1921px) {
  .checkout__container {
    width: 840px;
    flex-grow: 0;
  }
}
.checkout__section {
  margin-top: 40px;
}
.checkout__section:first-child {
  margin: 0;
}
.checkout__section--emph {
  padding: 20px;
  border: 1px solid #cdcdcd;
}
.checkout__section--emph a {
  font-weight: 700;
}
.checkout__title {
  font-size: 1.4em;
  font-weight: bold;
  display: block;
  margin-bottom: 0.6em;
}
.checkout__title--small {
  font-size: 1em;
}
.checkout__subtitle {
  font-size: .9em;
  text-transform: uppercase;
  margin-bottom: .5em;
}
.checkout__footer {
  margin-top: 30px;
}
.checkout__loader {
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  pointer-events: none;
}
.checkout__loader::after {
  content: "";
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 11;
  background: url(../img/shop/spinner.svg) no-repeat center;
  margin-top: -25px;
  margin-left: -25px;
  animation: rotation 800ms linear infinite;
  pointer-events: none;
}
@media screen and (max-width: 700px) {
  .checkout__button {
    width: 100%;
    height: 45px;
    line-height: 45px;
    letter-spacing: 0.03em;
  }
}
@media screen and (max-width: 1200px) {
  .checkout {
    grid-template-columns: 100%;
    padding: 25px 0px 0;
  }
  .checkout__main,
  .checkout__cart {
    padding: 15px 15px 30px;
  }
  .checkout__cart {
    position: static;
    height: auto;
    overflow: visible;
    padding-top: 30px;
    padding-bottom: 60px;
  }
  .body--scroll .checkout__cart {
    height: auto;
  }
  .checkout__cart .cart {
    margin: 0;
    padding: 0;
  }
}
.checkout-steps {
  margin-bottom: 30px;
  padding-bottom: 15px;
  border-bottom: 1px solid #cdcdcd;
  font-size: 14px;
  display: flex;
  gap: 1em 1.5em;
  counter-reset: checkout;
}
@media screen and (max-width: 1550px) {
  .checkout-steps {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .checkout-steps {
    gap: 15px;
  }
}
.checkout-steps__step {
  display: flex;
  align-items: center;
  gap: 0.5em;
  counter-increment: checkout;
  color: #333333;
}
.checkout-steps__step::before {
  font-size: 0.9em;
  content: counter(checkout);
  display: block;
  background: #333333;
  border-radius: 50%;
  text-align: center;
  font-weight: bold;
  color: #fff;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
}
.checkout-steps__step--current,
.checkout-steps__step--prev {
  color: #425fb2;
}
.checkout-steps__step--current::before,
.checkout-steps__step--prev::before {
  background: #425fb2;
}
.checkout-steps__step--prev::before {
  content: "";
  background: #425fb2 url(../img/shop/check.svg) no-repeat center;
  background-size: 1.6em 1.6em;
}
.checkout-steps__step--next {
  opacity: 0.5;
}
@media screen and (max-width: 1200px) {
  .checkout-steps__step span {
    display: none;
  }
}
.checkout-steps__step--current {
  font-weight: bold;
}
@media screen and (max-width: 1200px) {
  .checkout-steps__step--current span {
    display: block;
  }
}
@media screen and (max-width: 700px) {
  .checkout-steps {
    flex-wrap: wrap;
  }
}
.product-reviews {
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  z-index: 501;
  display: flex;
  justify-content: flex-end;
  visibility: hidden;
}
.product-reviews__toggler {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  display: block;
}
.product-reviews__toggler::before,
.product-reviews__toggler::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #333333;
  position: absolute;
  top: 50%;
  left: 50%;
}
.product-reviews__toggler::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.product-reviews__toggler::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.product-reviews__title {
  padding: calc(3.5rem + 30px) 2rem 0;
  margin-bottom: 1em;
  font-size: clamp(18px,1.19784vw,23px);
  line-height: 1.2em;
}
.product-reviews__sidebar {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: 600px;
  background-color: #fff;
  position: relative;
  box-shadow: -3px 0 10px 3px rgba(0,0,0,0.08);
  transform: translate3d(100%,0,0);
  transition: 350ms ease-out 100ms;
}
.product-reviews__inner {
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 0 2rem calc(3.5rem + 30px);
  overflow-y: auto;
}
.product-reviews-widget {
  display: flex;
  align-items: center;
  gap: 1em;
  margin: 10px 0 25px;
  font-size: 0.8rem;
}
.product-reviews-widget__rating {
  display: flex;
}
.product-reviews-widget__rating svg {
  width: 1.1em;
  height: 1.1em;
}
.product-reviews-widget__rating span {
  margin-left: 0.25em;
}
.product-reviews-widget__trigger {
  text-decoration: underline;
  text-underline-offset: 0.3em;
  font-weight: 500;
}
.product-reviews-card {
  display: grid;
  grid-template-columns: 42% 1fr;
  align-items: flex-start;
  margin: 20px auto 50px;
  border: 1px solid #cdcdcd;
  padding: 2rem 1rem;
}
.product-reviews-card__wrapper {
  max-width: 800px;
  margin: 30px auto 0;
}
.product-reviews-card__wrapper h1 {
  font-size: clamp(18px,1.19784vw,23px);
  line-height: 1.2em;
  font-weight: 500;
}
.product-reviews-card__preview {
  padding-right: 1rem;
}
.product-reviews-card__preview img {
  object-fit: contain;
  object-position: top;
}
.product-reviews-card__vote {
  display: flex;
  align-items: center;
}
.product-reviews-card__vote svg {
  width: 1.05em;
  height: 1.05em;
}
.product-reviews-card .radio__group-options {
  gap: 0.5em;
}
.product-reviews-card .radio__group-options label {
  font-size: 13px;
  padding: 0.4em 1em;
  margin-bottom: 0;
  border-radius: 0.25em;
  background-color: rgba(51,51,51,0.03);
}
.product-reviews-card .radio__group-options label span {
  align-items: flex-start;
}
.product-reviews-card .radio__group-options label span > div {
  display: flex;
  flex-direction: column;
  gap: 0.25em;
}
.product-reviews-card .radio__group-options label span::before {
  margin-top: 2px;
}
.product-reviews-card__title {
  font-weight: 500;
  margin-bottom: 1em;
  font-size: 1.1rem;
}
.product-reviews-card__form {
  padding-top: 5%;
}
.product-reviews-card__form .input.radio {
  margin-bottom: 30px;
}
@media screen and (max-width: 850px) {
  .product-reviews-card {
    grid-template-columns: 100%;
  }
  .product-reviews-card__wrapper {
    padding: 0 20px;
  }
  .product-reviews-card__preview img {
    height: min(350px,45vh);
  }
}
@media screen and (max-width: 700px) {
  .product-reviews-card {
    padding-left: 15px;
    padding-right: 15px;
  }
  .product-reviews-card__title {
    text-align: center;
  }
  .product-reviews-card img {
    height: 150px;
  }
  .product-reviews-card .radio__group-options {
    justify-content: center;
  }
  .product-reviews-card .radio__group-options label {
    font-size: 12px;
    min-width: 125px;
    justify-content: center;
  }
}
.product-reviews.open {
  visibility: visible;
}
.product-reviews.open .product-reviews__sidebar {
  transform: translate3d(0,0,0);
}
.product-review {
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid #cdcdcd;
  padding: 1.25rem 2rem;
}
.product-review p {
  margin-bottom: 0.3em;
  font-size: 14px;
}
.product-review__rating {
  display: flex;
  align-items: center;
}
.product-review__top {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.product-review__top h2 {
  font-size: 1.1rem;
  font-weight: 500;
}
.product-review__author {
  color: rgba(51,51,51,0.6);
  font-weight: 500;
  font-size: 14px;
}
.client-address {
  display: grid;
  grid-template-columns: repeat(12,1fr);
  gap: 0 20px;
}
.client-address__col6 {
  grid-column-end: span 6;
}
.client-address__col10 {
  grid-column-end: span 10;
}
.client-address__col12 {
  grid-column-end: span 12;
}
.client-address__col9 {
  grid-column-end: span 9;
}
.client-address__col2 {
  grid-column-end: span 2;
}
.client-address__col3 {
  grid-column-end: span 3;
}
.client-address__col4 {
  grid-column-end: span 4;
}
@media screen and (max-width: 700px) {
  .client-address {
    grid-template-columns: 100%;
  }
  .client-address > * {
    grid-column: 1;
  }
}
.order-landing {
  width: 900px;
  margin: 40px auto 0;
  text-align: center;
  padding: 40px;
  border-radius: 4px;
  background: #f0f0f0;
}
@media screen and (max-width: 1000px) {
  .order-landing {
    margin-left: max(15px,5vw);
    margin-right: max(15px,5vw);
    width: auto;
  }
}
.order-landing h1 {
  font-weight: 600;
  margin-bottom: .6em;
  text-align: center;
  font-size: 1.4em;
}
.shop-product-slider {
  width: 100%;
  margin-top: 80px;
  display: block;
  padding-left: clamp(15px,4.1664vw,80px);
  padding-right: clamp(15px,4.1664vw,80px);
  display: flex;
  flex-direction: column;
  gap: 30px;
  scroll-margin-top: 60px;
}
@media screen and (min-width: 1921px) {
  .shop-product-slider {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1860px) {
  .shop-product-slider {
    padding-left: clamp(15px,3.1248vw,60px);
    padding-right: clamp(15px,3.1248vw,60px);
  }
}
@media screen and (max-width: 1550px) {
  .shop-product-slider {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 550px) {
  .shop-product-slider {
    gap: 10px;
  }
}
.shop-product-slider--nopadding {
  padding: 0;
}
.shop-product-slider__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.shop-product-slider__nav {
  display: flex;
  align-items: center;
  gap: 5px;
}
.shop-product-slider__title {
  margin-bottom: 0em;
}
.shop-product-slider .swiper {
  width: 100%;
  padding: 2px;
  grid-column-start: 2;
}
.shop-product-slider .swiper-slide {
  height: auto;
}
.shop-product-slider .swiper-button-prev,
.shop-product-slider .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  border: 1px solid #cdcdcd;
  border-radius: 50%;
  margin: 0;
}
.shop-product-slider .swiper-button-next {
  margin-left: auto;
}
.shop-product-slider__placeholders {
  overflow: hidden;
  display: flex;
  gap: 20px;
  width: 100%;
  grid-column-start: 2;
}
.shop-product-slider__placeholders div {
  display: block;
  flex-grow: 1;
  min-width: 150px;
  max-height: 450px;
  flex-shrink: 0;
  width: auto;
  height: 100%;
  border-radius: 5px;
  background-color: rgba(51,51,51,0.08);
  aspect-ratio: 0.66666666666667;
  animation: pulse-loading 1.5s ease infinite;
}
@media screen and (max-width: 700px) {
  .shop-product-slider__placeholders div {
    max-height: 350px;
  }
}
@media screen and (max-width: 700px) {
  .shop-product-slider {
    padding-right: 0;
  }
  .shop-product-slider__top,
  .shop-product-slider .swiper {
    padding-right: 20px;
  }
}
@keyframes pulse-loading {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.reviews-slider {
  width: 100%;
  margin-top: 80px;
  display: block;
  padding-left: clamp(15px,4.1664vw,80px);
  padding-right: clamp(15px,4.1664vw,80px);
  display: flex;
  flex-direction: column;
  gap: 30px;
  scroll-margin-top: 60px;
}
@media screen and (min-width: 1921px) {
  .reviews-slider {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1860px) {
  .reviews-slider {
    padding-left: clamp(15px,3.1248vw,60px);
    padding-right: clamp(15px,3.1248vw,60px);
  }
}
@media screen and (max-width: 1550px) {
  .reviews-slider {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 550px) {
  .reviews-slider {
    gap: 10px;
  }
}
.reviews-slider--nopadding {
  padding: 0;
}
.reviews-slider__top {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.reviews-slider__nav {
  display: flex;
  align-items: center;
  gap: 5px;
}
.reviews-slider__title {
  margin-bottom: 0em;
}
.reviews-slider .swiper {
  width: 100%;
  padding: 2px;
  grid-column-start: 2;
}
.reviews-slider .swiper-slide {
  height: auto;
}
.reviews-slider .swiper-button-prev,
.reviews-slider .swiper-button-next {
  position: static;
  width: 40px;
  height: 40px;
  border: 1px solid #cdcdcd;
  border-radius: 50%;
  margin: 0;
}
.reviews-slider .swiper-button-next {
  margin-left: auto;
}
@media screen and (max-width: 700px) {
  .reviews-slider {
    padding-right: 0;
  }
  .reviews-slider__top,
  .reviews-slider .swiper {
    padding-right: 20px;
  }
}
.review {
  border: 1px solid #cdcdcd;
  border-radius: 4px;
  padding: 20px 20px 30px;
  background: #f5f5f5;
  min-height: 100%;
}
.review__title {
  font-weight: bold;
  color: #425fb2;
  margin-bottom: .6em;
  display: flex;
  align-items: center;
  gap: 10px;
}
.review__rating {
  display: flex;
  align-items: center;
  gap: 2px;
}
.review__author {
  font-size: .9rem;
  margin-top: 20px;
  font-weight: 500;
}
.review__author::before {
  content: '- ';
}
.header-category-menu {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  border-bottom-left-radius: 0.5rem;
  border-bottom-right-radius: 0.5rem;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: 300ms ease-out;
  z-index: 5;
}
.header-category-menu.open {
  transform: translate3d(0,0,0);
  visibility: visible;
  opacity: 1;
}
.header-category-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header-category-menu__wrapper {
  display: none;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  max-height: calc(100vh - 300px);
  pointer-events: auto;
  box-shadow: 0px 0px 2px 0px rgba(71,71,71,0.3);
}
.header-category-menu__wrapper::-webkit-scrollbar {
  width: 5px;
}
.header-category-menu__wrapper::-webkit-scrollbar-track {
  background: #fff;
}
.header-category-menu__wrapper::-webkit-scrollbar-thumb {
  background: rgba(51,51,51,0.35);
  border-radius: 2rem;
}
.header-category-menu__wrapper::-webkit-scrollbar-thumb:hover {
  background: rgba(51,51,51,0.4);
}
.header-category-menu__wrapper--parent {
  display: block;
}
.header-category-menu__wrapper--visible {
  display: grid;
}
ul.header-category-menu__parent,
ul.header-category-menu__submenu {
  padding: 30px 0;
  width: clamp(250px,18.228vw,350px);
  border-radius: 5px;
  border-top-left-radius: 0;
  box-shadow: inset 0 3px 1px 0px rgba(0,0,0,0.03);
  border-top-right-radius: 0;
}
ul.header-category-menu__parent li,
ul.header-category-menu__submenu li {
  font-size: 0.89rem;
  line-height: 1.2em;
  margin-bottom: 0;
  padding-left: 15px;
  padding-right: 15px;
}
@media screen and (max-width: 550px) {
  ul.header-category-menu__parent li,
  ul.header-category-menu__submenu li {
    font-size: 14px;
  }
}
ul.header-category-menu__parent li:hover > button span,
ul.header-category-menu__parent li:hover > a,
ul.header-category-menu__parent li.active > button span,
ul.header-category-menu__parent li.active > a,
ul.header-category-menu__submenu li:hover > button span,
ul.header-category-menu__submenu li:hover > a,
ul.header-category-menu__submenu li.active > button span,
ul.header-category-menu__submenu li.active > a {
  font-weight: 500;
}
ul.header-category-menu__parent li a,
ul.header-category-menu__submenu li a {
  display: block;
  width: 100%;
  height: 100%;
}
ul.header-category-menu__parent li a,
ul.header-category-menu__parent li button,
ul.header-category-menu__submenu li a,
ul.header-category-menu__submenu li button {
  display: inline-flex;
  align-items: center;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 1em;
  min-height: 35px;
  border-radius: 5px;
  text-align: left;
}
ul.header-category-menu__parent li button,
ul.header-category-menu__submenu li button {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header-category-menu__parent {
  background-color: #f0f0f0;
}
.header-category-menu__parent li:hover > button,
.header-category-menu__parent li:hover > a {
  background-color: #cdcdcd;
}
.header-category-menu__submenu {
  display: none;
  grid-column: 1;
  grid-row: 1;
  background-color: #fff;
  height: 100%;
  border-bottom-left-radius: 0px;
}
.header-category-menu__submenu.open {
  display: block;
}
.header-category-menu__submenu li:hover {
  background-color: #fff;
}
.header-category-menu__submenu li:hover > button,
.header-category-menu__submenu li:hover > a {
  background-color: rgba(205,205,205,0.3);
}
.shop-quotator {
  position: relative;
  border-radius: 5px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.16);
  align-self: start;
}
.shop-quotator__title {
  border-radius: 5px 5px 0 0;
  background: #425fb2;
  color: #fff;
  margin: 0;
  padding: 15px 10px;
}
.shop-quotator__subtitle {
  font-weight: bold;
  color: #425fb2;
  border-top: 1px solid #cdcdcd;
  padding-top: 20px;
  margin-bottom: 10px;
}
.shop-quotator h3 {
  text-align: center;
}
.shop-quotator__inner {
  border-radius: 5px;
  padding: 15px clamp(10px,1.302vw,25px) 35px;
  counter-reset: steps -1;
  border: 1px solid #cdcdcd;
  border-radius: 0 0 5px 5px;
}
.shop-quotator__inner form {
  display: flex;
  flex-direction: column;
}
.shop-quotator__bottom__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.shop-quotator__step {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.shop-quotator__step {
  padding: 1rem 0;
}
.shop-quotator__toggler--margin {
  margin-top: 20px;
}
.shop-quotator__step {
  border-bottom: 1px solid #cdcdcd;
  counter-increment: steps;
}
.shop-quotator__step:first-child {
  border: none;
  padding-left: 0;
  padding-right: 0;
}
.shop-quotator__step:first-child .shop-quotator__label::before {
  display: none;
}
.shop-quotator__step.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.shop-quotator__step--checkbox {
  grid-template-columns: 1fr;
  gap: 10px;
}
.shop-quotator__step--checkbox .input {
  margin-top: 15px;
}
.shop-quotator__step .number-input__button {
  width: 35px;
  height: 35px;
}
.shop-quotator__step .number-input input {
  height: 35px;
  min-width: 45px;
  width: auto;
  max-width: 75px;
  font-size: 16px;
  font-weight: 500;
}
.shop-quotator__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
}
.shop-quotator__label::before {
  content: counter(steps);
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  background: #e7e7e7;
  font-size: 14px;
}
.shop-quotator__step--completed .shop-quotator__label::before {
  content: '';
  background: #2bbb23 url(../img/icons/check-white.svg) no-repeat center;
}
.shop-quotator__label button {
  font-size: 12px;
  text-decoration: underline;
  font-weight: 400;
}
.shop-quotator__label > span {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0 5px;
}
.shop-quotator__value {
  display: inline-flex;
  align-items: center;
  font-size: 0.89rem;
  line-height: 1.2em;
  gap: min(1.0416vw,20px);
  cursor: pointer;
  font-weight: bold;
}
@media screen and (max-width: 550px) {
  .shop-quotator__value {
    font-size: 14px;
  }
}
.shop-quotator__value svg {
  width: 0.6em;
  height: 0.6em;
}
.shop-quotator__value svg path {
  stroke: #333333;
}
.shop-quotator__selected {
  grid-column-end: span 2;
  padding-top: 4px;
  padding-left: 40px;
  font-size: 14px;
  font-weight: 500;
  color: #425fb2;
}
.shop-quotator__bottom {
  padding-top: 20px;
}
.shop-quotator__bottom--nomargin {
  padding-top: 0;
}
.shop-quotator__bottom .button {
  width: 100%;
}
.shop-quotator__bottom__row {
  font-size: 0.89rem;
  line-height: 1.2em;
  margin-bottom: 0.45em;
}
@media screen and (max-width: 550px) {
  .shop-quotator__bottom__row {
    font-size: 14px;
  }
}
.shop-quotator__total {
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.5em;
  margin: 20px 0;
}
.shop-quotator__total .shop-quotator__value {
  font-size: clamp(22px,1.8228vw,35px);
  line-height: 1em;
}
.shop-quotator__loader {
  position: absolute;
  z-index: 100;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.6);
  pointer-events: none;
}
.shop-quotator__loader::after {
  content: '';
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 11;
  background: url(../img/shop/spinner.svg) no-repeat center;
  margin-top: -25px;
  margin-left: -25px;
  animation: rotation 800ms linear infinite;
  pointer-events: none;
}
.shop-quotator__actions {
  display: grid;
  gap: 10px;
}
.shop-quotator__unitprice {
  font-weight: bold;
  color: #eda02d;
}
.shop-quotator-sidebar {
  position: fixed;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: 600;
  display: flex;
  justify-content: flex-end;
  background-color: rgba(0,0,0,0.1);
  visibility: hidden;
  opacity: 0;
  --padding-x: clamp(20px,2.0832vw,40px);
  transition-delay: 350ms;
}
.shop-quotator-sidebar__inner {
  max-width: 650px;
  background-color: #fff;
  width: 100%;
  height: 100%;
  position: relative;
  padding-top: 60px;
  transform: translate3d(100%,0,0);
  transition: 350ms ease-out 0ms;
  display: flex;
  flex-direction: column;
}
.shop-quotator-sidebar.open {
  visibility: visible;
  opacity: 1;
  transition-delay: 0ms;
}
.shop-quotator-sidebar.open .shop-quotator-sidebar__inner {
  transform: translate3d(0,0,0);
  transition-delay: 100ms;
}
.shop-quotator-sidebar__heading {
  margin-bottom: 20px;
  padding: 0 var(--padding-x);
}
.shop-quotator-sidebar__heading h3 {
  margin-bottom: 0.35em;
  text-align: left;
}
.shop-quotator-sidebar__wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  overflow-y: auto;
  padding: 0 var(--padding-x) 40px;
  height: 100%;
  flex-grow: 1;
  max-height: 100%;
}
.shop-quotator-sidebar__item {
  width: 100%;
  min-height: calc(60px - 1.2em);
  display: flex;
  align-items: center;
  text-align: left;
  gap: 10px;
  border-radius: 5px;
  border: 1px solid #cdcdcd;
  font-size: 0.89rem;
  line-height: 1.2em;
  padding: 15px;
  flex-shrink: 0;
  box-shadow: 1px 1px 3px rgba(0,0,0,0.16);
  cursor: pointer;
}
@media screen and (max-width: 550px) {
  .shop-quotator-sidebar__item {
    font-size: 14px;
  }
}
.shop-quotator-sidebar__item--preview {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 5px 30px;
  align-items: center;
  padding: 10px 15px 10px 10px;
}
.shop-quotator-sidebar__item:hover {
  background: #f0f0f0;
}
.shop-quotator-sidebar__item-thumb {
  width: 80px;
  height: auto;
  border-radius: 5px;
  border: 1px solid #cdcdcd;
  overflow: hidden;
}
.shop-quotator-sidebar__item-thumb img {
  object-fit: contain;
}
.shop-quotator-sidebar__item.selected {
  border-color: #333333;
  font-weight: 500;
  cursor: auto;
}
.shop-quotator-sidebar__toggler {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 30px;
  height: 30px;
  display: block;
}
.shop-quotator-sidebar__toggler::before,
.shop-quotator-sidebar__toggler::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #333333;
  position: absolute;
  top: 50%;
  left: 50%;
}
.shop-quotator-sidebar__toggler::before {
  transform: translate(-50%,-50%) rotate(45deg);
}
.shop-quotator-sidebar__toggler::after {
  transform: translate(-50%,-50%) rotate(-45deg);
}
.shop-quotator-sidebar__bottom {
  display: flex;
  align-items: center;
  bottom: 0;
  left: 0;
  border-top: 1px solid #cdcdcd;
  background-color: #fff;
  width: 100%;
  height: 100%;
  max-height: 100px;
  z-index: 5;
  padding: 0 var(--padding-x);
}
@media screen and (max-widht: 550px) {
  .shop-quotator-sidebar__bottom {
    max-height: 60px;
  }
}
.shop-quotator-sidebar__bottom .shop-quotator__total {
  width: 100%;
}
.shop-quotator-sidebar__title {
  align-self: end;
}
.shop-quotator-sidebar__description {
  font-weight: normal;
  align-self: start;
}
.shop-quotator-sidebar__preview {
  overflow: hidden;
  position: relative;
  border-radius: 5px;
  grid-row-end: span 2;
}
.shop-quotator-sidebar__zoom {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  right: 5px;
  bottom: 5px;
  position: absolute;
  border-radius: 50%;
  background: #425fb2;
}
.shop-quotator-sidebar__zoom path {
  fill: #fff !important;
}
.shop-quotator-sidebar__zoom:hover {
  background: #627cc5;
}
.shop-quotator-sidebar__more {
  color: #425fb2;
  font-weight: 500;
  cursor: pointer;
  display: inline-block;
}
.shop-quotator-sidebar__more::after {
  content: ' >';
}
.shop-quotator-sidebar__more:hover {
  opacity: .6;
}
.shop-quotator-sidebar__accordion {
  margin-top: 5px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 0fr;
  transition: 300ms cubic-bezier(0.25,0.46,0.45,0.94);
}
.shop-quotator-sidebar__accordion.open {
  grid-template-rows: 1fr;
}
.shop-quotator-sidebar__accordion > div {
  overflow: hidden;
}
.shop-quotator-sidebar__accordion > div strong {
  font-weight: bold;
  color: #2bbb23;
}
.shop-quotator-sidebar__accordion > div em {
  font-weight: bold;
  font-style: normal;
  color: #bb2323;
}
.banners {
  display: block;
  padding-left: clamp(15px,4.1664vw,80px);
  padding-right: clamp(15px,4.1664vw,80px);
  margin-top: 80px;
}
@media screen and (min-width: 1921px) {
  .banners {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1860px) {
  .banners {
    padding-left: clamp(15px,3.1248vw,60px);
    padding-right: clamp(15px,3.1248vw,60px);
  }
}
@media screen and (max-width: 1550px) {
  .banners {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.banners .heading-small {
  text-align: center;
}
.banners__wrapper {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}
.banners__wrapper--swiper {
  display: block;
}
.banners__wrapper--swiper .swiper {
  overflow: visible;
}
.banner {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #cdcdcd;
  display: block;
  transition: 600ms cubic-bezier(0.25,0.46,0.45,0.94);
}
.banner img {
  transform: scale3d(1,1,1);
  transition: 600ms cubic-bezier(0.25,0.46,0.45,0.94);
}
.banner:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.banner:hover img {
  transform: scale3d(1.05,1.05,1.05);
}
.home-categories {
  margin-top: 80px;
  display: block;
  padding-left: clamp(15px,4.1664vw,80px);
  padding-right: clamp(15px,4.1664vw,80px);
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(140px,1fr));
  gap: min(1.0416vw,20px);
}
@media screen and (min-width: 1921px) {
  .home-categories {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1860px) {
  .home-categories {
    padding-left: clamp(15px,3.1248vw,60px);
    padding-right: clamp(15px,3.1248vw,60px);
  }
}
@media screen and (max-width: 1550px) {
  .home-categories {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .home-categories {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 10px;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
  }
}
.home-category {
  border-radius: 4px;
  border: 1px solid #cdcdcd;
  display: block;
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  transition: 600ms cubic-bezier(0.25,0.46,0.45,0.94);
}
.home-category__image,
.home-category__title {
  grid-area: 1 / 1 / 2 / 2;
}
.home-category__image {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.home-category__image::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to bottom,rgba(0,0,0,0),rgba(0,0,0,0.7));
}
.home-category__image img {
  transform: scale3d(1,1,1);
  transition: 600ms cubic-bezier(0.25,0.46,0.45,0.94);
}
.home-category__title {
  position: relative;
  z-index: 10;
  align-self: end;
  padding: 20px;
  color: #fff;
  font-weight: 500;
}
.home-category:hover {
  box-shadow: 0 3px 10px rgba(0,0,0,0.3);
}
.home-category:hover .home-category__image img {
  transform: scale3d(1.1,1.1,1.1);
}
@media screen and (max-width: 1000px) {
  .home-category {
    flex-shrink: 0;
    width: min(180px,40vw);
    scroll-snap-align: start;
    scroll-margin-left: 20px;
  }
}
.price-slider {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 10px 5px;
}
.price-slider [data-price-slider] {
  grid-column-end: span 2;
  margin: 0 10px;
}
.price-slider input {
  font-size: 14px;
  height: auto;
  padding: 10px;
  text-align: center;
  font-weight: 500;
  line-height: 1em;
}
.load-more-products {
  grid-column-end: -1;
  grid-column-start: 1;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}
.load-more-products__spinner {
  visibility: hidden;
  animation: rotation 1000ms linear infinite;
  animation-play-state: paused;
}
.load-more-products.loading .load-more-products__spinner {
  visibility: visible;
  animation-play-state: running;
}
.add-to-wishlist {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #333333;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 300ms;
}
.add-to-wishlist:hover {
  background-color: #e3e3e3;
}
.add-to-wishlist .icon-border {
  fill: #333333;
}
.add-to-wishlist .icon-background {
  fill: #E31353;
  opacity: 0;
}
.add-to-wishlist--active .icon-background {
  opacity: 1;
}
.wishlist-icon {
  display: flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
}
.wishlist-icon__indicator {
  position: relative;
}
.wishlist-icon__indicator .icon-border {
  fill: #333333;
}
.wishlist-icon__indicator .icon-background {
  fill: #E31353;
  opacity: 0;
}
.wishlist-icon__indicator--active .icon-background {
  opacity: 1;
}
.wishlist-icon__indicator::before {
  content: "";
  z-index: -1;
  width: 100px;
  height: 100px;
  background: #E31353;
  top: 50%;
  left: 50%;
  position: absolute;
  margin-top: -50px;
  margin-left: -50px;
  border-radius: 50%;
  visibility: hidden;
  transform: scale3d(0,0,0);
}
.wishlist-icon__indicator--animate::before {
  visibility: visible;
  animation: addAnimation 800ms cubic-bezier(0.23,1,0.32,1);
}
.missing-picture {
  border: 1px solid #cdcdcd;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  width: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
  align-items: center;
  justify-content: center;
  opacity: .5;
}
.uploader {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 10px;
  padding: 10px;
  margin-top: 20px;
  border-radius: 5px;
  border: 1px solid #cdcdcd;
}
.uploader__thumb {
  border: 1px solid #cdcdcd;
  border-radius: 5px;
  overflow: hidden;
  background-color: #fff;
  display: block;
}
.uploader__area {
  border-radius: 5px;
  background: #f0f0f0;
}
.uploader__area .hidden {
  display: none;
  pointer-events: none;
}
.uploader__file {
  padding: 20px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px 20px;
  align-items: center;
}
.uploader__icon {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333333;
  border-radius: 50%;
  grid-row-end: span 2;
}
.uploader__icon path {
  fill: #fff;
}
.uploader__title {
  font-weight: 600;
}
.uploader__actions {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.uploader__skip {
  grid-column-end: span 2;
}
.uploader__skip.hidden {
  display: none;
}
.uploader .dropzone {
  min-height: 100%;
}
.partners {
  display: block;
  padding-left: clamp(15px,4.1664vw,80px);
  padding-right: clamp(15px,4.1664vw,80px);
  margin-top: 120px;
}
@media screen and (min-width: 1921px) {
  .partners {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1860px) {
  .partners {
    padding-left: clamp(15px,3.1248vw,60px);
    padding-right: clamp(15px,3.1248vw,60px);
  }
}
@media screen and (max-width: 1550px) {
  .partners {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.partners__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: min(2.604vw,50px);
}
.partners__wrapper img {
  max-width: 150px;
  max-height: 150px;
  object-fit: contain;
}
.partners__heading {
  text-align: center;
}
.features {
  display: block;
  padding-left: clamp(15px,4.1664vw,80px);
  padding-right: clamp(15px,4.1664vw,80px);
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 1921px) {
  .features {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1860px) {
  .features {
    padding-left: clamp(15px,3.1248vw,60px);
    padding-right: clamp(15px,3.1248vw,60px);
  }
}
@media screen and (max-width: 1550px) {
  .features {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.features--vertical {
  margin: 0;
  padding: 0;
}
.features--vertical .features__wrapper {
  grid-template-columns: 1fr;
  gap: 20px;
}
.features__wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  justify-content: center;
  gap: 20px;
}
.features__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px 20px;
  border: 1px solid #cdcdcd;
  border-radius: 4px;
  padding: 20px 20px 30px;
  background: #f5f5f5;
}
.features__item h4 {
  margin-bottom: 0.4em;
}
.features__item svg {
  width: 2em;
  height: 2em;
}
.features__item .paragraph {
  max-width: none;
}
.features--grid-3 .features__wrapper {
  max-width: 1200px;
  grid-template-columns: repeat(3,1fr);
}
.features--column .features__item {
  flex-wrap: nowrap;
  align-items: center;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.features--column .features__item h4 {
  max-width: none;
}
.features--column .features__item-content {
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .features__wrapper {
    grid-template-columns: repeat(2,1fr);
  }
}
@media screen and (max-width: 700px) {
  .features__wrapper {
    grid-template-columns: 100%;
  }
}
.hero {
  position: relative;
  background: radial-gradient(circle at 25%,#425fb2 0%,#243360 100%);
}
.hero__wrapper {
  display: block;
  padding-left: clamp(15px,4.1664vw,80px);
  padding-right: clamp(15px,4.1664vw,80px);
  display: grid;
  grid-template-columns: 50% 1fr;
  gap: 30px;
  align-items: center;
  min-height: min(500px,26.04vw);
}
@media screen and (min-width: 1921px) {
  .hero__wrapper {
    width: 100%;
    max-width: 1920px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 1860px) {
  .hero__wrapper {
    padding-left: clamp(15px,3.1248vw,60px);
    padding-right: clamp(15px,3.1248vw,60px);
  }
}
@media screen and (max-width: 1550px) {
  .hero__wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.hero__content {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: center;
  padding: min(4.1664vw,80px) 0;
  color: #fff;
}
.hero__content-inner {
  max-width: 600px;
}
.hero__title {
  font-size: clamp(25px,2.29152vw,44px);
  line-height: 1.2em;
  letter-spacing: -0.02em;
  margin-bottom: 0.6em;
  font-weight: bold;
}
.hero__text {
  font-weight: 500;
  font-size: 1rem;
  line-height: 1.6em;
}
.hero__cta {
  margin-top: 30px;
}
.hero__image {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 50%;
  background: url(../img/banner-home.png) no-repeat 100% 50%;
  background-size: auto 100%;
}
@media screen and (max-width: 1000px) {
  .hero__wrapper {
    grid-template-columns: 100%;
  }
  .hero__content {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 700px) {
  .hero__content {
    padding: 35px 0;
  }
  .hero__image {
    opacity: 0.25;
    background-position: left;
  }
}