@charset "UTF-8";
@import "../fonts/stylesheet.css";
@import "../fonts/drukwide.css";
:root {
  --f-spinner-width: 36px;
  --f-spinner-height: 36px;
  --f-spinner-color-1: rgba(0, 0, 0, 0.1);
  --f-spinner-color-2: rgba(17, 24, 28, 0.8);
  --f-spinner-stroke: 2.75;
}

.f-spinner {
  margin: auto;
  padding: 0;
  width: var(--f-spinner-width);
  height: var(--f-spinner-height);
}

.f-spinner svg {
  width: 100%;
  height: 100%;
  vertical-align: top;
  -webkit-animation: f-spinner-rotate 2s linear infinite;
          animation: f-spinner-rotate 2s linear infinite;
}

.f-spinner svg * {
  stroke-width: var(--f-spinner-stroke);
  fill: none;
}

.f-spinner svg *:first-child {
  stroke: var(--f-spinner-color-1);
}

.f-spinner svg *:last-child {
  stroke: var(--f-spinner-color-2);
  -webkit-animation: f-spinner-dash 2s ease-in-out infinite;
          animation: f-spinner-dash 2s ease-in-out infinite;
}

@-webkit-keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes f-spinner-rotate {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
@keyframes f-spinner-dash {
  0% {
    stroke-dasharray: 1, 150;
    stroke-dashoffset: 0;
  }
  50% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -35;
  }
  100% {
    stroke-dasharray: 90, 150;
    stroke-dashoffset: -124;
  }
}
.f-throwOutUp {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
          animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutUp;
}

.f-throwOutDown {
  -webkit-animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
          animation: var(--f-throw-out-duration, 0.175s) ease-out both f-throwOutDown;
}

@-webkit-keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
            transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}

@keyframes f-throwOutUp {
  to {
    -webkit-transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
            transform: translate3d(0, calc(var(--f-throw-out-distance, 150px) * -1), 0);
    opacity: 0;
  }
}
@-webkit-keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
            transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
@keyframes f-throwOutDown {
  to {
    -webkit-transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
            transform: translate3d(0, var(--f-throw-out-distance, 150px), 0);
    opacity: 0;
  }
}
.f-zoomInUp {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
          animation: var(--f-transition-duration, 0.2s) ease 0.1s both f-zoomInUp;
}

.f-zoomOutDown {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
          animation: var(--f-transition-duration, 0.2s) ease both f-zoomOutDown;
}

@-webkit-keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-zoomInUp {
  from {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1) translate3d(0, 0, 0);
            transform: scale(1) translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
@keyframes f-zoomOutDown {
  to {
    -webkit-transform: scale(0.975) translate3d(0, 16px, 0);
            transform: scale(0.975) translate3d(0, 16px, 0);
    opacity: 0;
  }
}
.f-fadeIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
          animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeIn;
  z-index: 2;
}

.f-fadeOut {
  -webkit-animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
          animation: var(--f-transition-duration, 0.2s) var(--f-transition-easing, ease) var(--f-transition-delay, 0s) both f-fadeOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeOut {
  100% {
    opacity: 0;
  }
}
.f-fadeFastIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
          animation: var(--f-transition-duration, 0.2s) ease-out both f-fadeFastIn;
  z-index: 2;
}

.f-fadeFastOut {
  -webkit-animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
          animation: var(--f-transition-duration, 0.1s) ease-out both f-fadeFastOut;
  z-index: 2;
}

@-webkit-keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-fadeFastIn {
  0% {
    opacity: 0.75;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeFastOut {
  100% {
    opacity: 0;
  }
}
.f-fadeSlowIn {
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
          animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowIn;
  z-index: 2;
}

.f-fadeSlowOut {
  -webkit-animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
          animation: var(--f-transition-duration, 0.5s) ease both f-fadeSlowOut;
  z-index: 1;
}

@-webkit-keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-fadeSlowIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-fadeSlowOut {
  100% {
    opacity: 0;
  }
}
.f-crossfadeIn {
  -webkit-animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
          animation: var(--f-transition-duration, 0.2s) ease-out both f-crossfadeIn;
  z-index: 2;
}

.f-crossfadeOut {
  -webkit-animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
          animation: calc(var(--f-transition-duration, 0.2s) * 0.5) linear 0.1s both f-crossfadeOut;
  z-index: 1;
}

@-webkit-keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes f-crossfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
@keyframes f-crossfadeOut {
  100% {
    opacity: 0;
  }
}
.f-slideIn.from-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInNext;
}

.f-slideIn.from-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideInPrev;
}

.f-slideOut.to-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutNext;
}

.f-slideOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-slideOutPrev;
}

@-webkit-keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}

@keyframes f-slideInPrev {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes f-slideInNext {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes f-slideOutNext {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes f-slideOutPrev {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.f-classicIn.from-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInNext;
  z-index: 2;
}

.f-classicIn.from-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicInPrev;
  z-index: 2;
}

.f-classicOut.to-next {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutNext;
  z-index: 1;
}

.f-classicOut.to-prev {
  -webkit-animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
          animation: var(--f-transition-duration, 0.85s) cubic-bezier(0.16, 1, 0.3, 1) f-classicOutPrev;
  z-index: 1;
}

@-webkit-keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes f-classicInNext {
  0% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes f-classicInPrev {
  0% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
}
@keyframes f-classicOutNext {
  100% {
    -webkit-transform: translateX(-75px);
            transform: translateX(-75px);
    opacity: 0;
  }
}
@-webkit-keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
}
@keyframes f-classicOutPrev {
  100% {
    -webkit-transform: translateX(75px);
            transform: translateX(75px);
    opacity: 0;
  }
}
:root {
  --f-button-width: 40px;
  --f-button-height: 40px;
  --f-button-border: 0;
  --f-button-border-radius: 0;
  --f-button-color: #374151;
  --f-button-bg: #f8f8f8;
  --f-button-hover-bg: #e0e0e0;
  --f-button-active-bg: #d0d0d0;
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 20px;
  --f-button-svg-height: 20px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: none;
  --f-button-svg-disabled-opacity: 0.65;
}

.f-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: relative;
  margin: 0;
  padding: 0;
  width: var(--f-button-width);
  height: var(--f-button-height);
  border: var(--f-button-border);
  border-radius: var(--f-button-border-radius);
  color: var(--f-button-color);
  background: var(--f-button-bg);
  -webkit-box-shadow: var(--f-button-shadow);
          box-shadow: var(--f-button-shadow);
  pointer-events: all;
  cursor: pointer;
  -webkit-transition: var(--f-button-transition);
  transition: var(--f-button-transition);
}

@media (hover: hover) {
  .f-button:hover:not([disabled]) {
    color: var(--f-button-hover-color);
    background-color: var(--f-button-hover-bg);
  }
}
.f-button:active:not([disabled]) {
  background-color: var(--f-button-active-bg);
}

.f-button:focus:not(:focus-visible) {
  outline: none;
}

.f-button:focus-visible {
  outline: none;
  -webkit-box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
          box-shadow: inset 0 0 0 var(--f-button-outline, 2px) var(--f-button-outline-color, var(--f-button-color));
}

.f-button svg {
  width: var(--f-button-svg-width);
  height: var(--f-button-svg-height);
  fill: var(--f-button-svg-fill);
  stroke: currentColor;
  stroke-width: var(--f-button-svg-stroke-width);
  stroke-linecap: round;
  stroke-linejoin: round;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
  -webkit-transform: var(--f-button-transform);
      -ms-transform: var(--f-button-transform);
          transform: var(--f-button-transform);
  -webkit-filter: var(--f-button-svg-filter);
          filter: var(--f-button-svg-filter);
  pointer-events: none;
}

.f-button[disabled] {
  cursor: default;
}

.f-button[disabled] svg {
  opacity: var(--f-button-svg-disabled-opacity);
}

.f-carousel__nav .f-button.is-prev, .f-carousel__nav .f-button.is-next, .fancybox__nav .f-button.is-prev, .fancybox__nav .f-button.is-next {
  position: absolute;
  z-index: 1;
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-next {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

.is-horizontal .f-carousel__nav .f-button.is-prev, .is-horizontal .fancybox__nav .f-button.is-prev {
  left: var(--f-button-prev-pos);
}

.is-horizontal .f-carousel__nav .f-button.is-next, .is-horizontal .fancybox__nav .f-button.is-next {
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-prev, .is-horizontal.is-rtl .fancybox__nav .f-button.is-prev {
  left: auto;
  right: var(--f-button-next-pos);
}

.is-horizontal.is-rtl .f-carousel__nav .f-button.is-next, .is-horizontal.is-rtl .fancybox__nav .f-button.is-next {
  right: auto;
  left: var(--f-button-prev-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-next {
  top: auto;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

.is-vertical .f-carousel__nav .f-button.is-prev, .is-vertical .fancybox__nav .f-button.is-prev {
  top: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-next, .is-vertical .fancybox__nav .f-button.is-next {
  bottom: var(--f-button-next-pos);
}

.is-vertical .f-carousel__nav .f-button.is-prev svg, .is-vertical .f-carousel__nav .f-button.is-next svg, .is-vertical .fancybox__nav .f-button.is-prev svg, .is-vertical .fancybox__nav .f-button.is-next svg {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.f-carousel__nav .f-button:disabled, .fancybox__nav .f-button:disabled {
  pointer-events: none;
}

html.with-fancybox {
  width: auto;
  overflow: visible;
  scroll-behavior: auto;
}

html.with-fancybox body {
  -ms-touch-action: none;
      touch-action: none;
}

html.with-fancybox body.hide-scrollbar {
  width: auto;
  margin-right: calc(var(--fancybox-body-margin, 0px) + var(--fancybox-scrollbar-compensate, 0px));
  overflow: hidden !important;
  overscroll-behavior-y: none;
}

.fancybox__container {
  --fancybox-color: #dbdbdb;
  --fancybox-hover-color: #fff;
  --fancybox-bg: rgba(24, 24, 27, 0.98);
  --fancybox-slide-gap: 10px;
  --f-spinner-width: 50px;
  --f-spinner-height: 50px;
  --f-spinner-color-1: rgba(255, 255, 255, 0.1);
  --f-spinner-color-2: #bbb;
  --f-spinner-stroke: 3.65;
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: #f8f8f8;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  overflow: visible;
  z-index: var(--fancybox-zIndex, 1050);
  outline: none;
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  overscroll-behavior-y: contain;
}

.fancybox__container *, .fancybox__container *::before, .fancybox__container *::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

.fancybox__container::-ms-backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__container::backdrop {
  background-color: rgba(0, 0, 0, 0);
}

.fancybox__backdrop {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background: var(--fancybox-bg);
  opacity: var(--fancybox-opacity, 1);
  will-change: opacity;
}

.fancybox__carousel {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 0;
  z-index: 10;
  overflow-y: visible;
  overflow-x: clip;
}

.fancybox__viewport {
  width: 100%;
  height: 100%;
}

.fancybox__viewport.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.fancybox__viewport.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  height: 100%;
}

.fancybox__slide {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  margin: 0 var(--fancybox-slide-gap) 0 0;
  padding: 4px;
  overflow: auto;
  -ms-scroll-chaining: none;
      overscroll-behavior: contain;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.fancybox__container:not(.is-compact) .fancybox__slide.has-close-btn {
  padding-top: 40px;
}

.fancybox__slide.has-iframe, .fancybox__slide.has-video, .fancybox__slide.has-html5video {
  overflow: hidden;
}

.fancybox__slide.has-image {
  overflow: hidden;
}

.fancybox__slide.has-image.is-animating, .fancybox__slide.has-image.is-selected {
  overflow: visible;
}

.fancybox__slide::before, .fancybox__slide::after {
  content: "";
  -webkit-box-flex: 0;
      -ms-flex: 0 0 0px;
          flex: 0 0 0;
  margin: auto;
}

.fancybox__backdrop:empty, .fancybox__viewport:empty, .fancybox__track:empty, .fancybox__slide:empty {
  display: block;
}

.fancybox__content {
  -ms-flex-item-align: center;
      align-self: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  margin: 0;
  padding: 2rem;
  max-width: 100%;
  color: var(--fancybox-content-color, #374151);
  background: var(--fancybox-content-bg, #fff);
  cursor: default;
  border-radius: 0;
  z-index: 20;
}

.is-loading .fancybox__content {
  opacity: 0;
}

.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab;
}

.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out;
}

.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}

.fancybox__content [data-selectable], .fancybox__content [contenteditable] {
  cursor: auto;
}

.fancybox__slide.has-image > .fancybox__content {
  padding: 0;
  background: rgba(0, 0, 0, 0);
  min-height: 1px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

.fancybox__slide.has-image > .fancybox__content > picture > img {
  width: 100%;
  height: auto;
  max-height: 100%;
}

.is-animating .fancybox__content, .is-dragging .fancybox__content {
  will-change: transform, width, height;
}

.fancybox-image {
  margin: auto;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-filter: blur(0px);
          filter: blur(0px);
}

.fancybox__caption {
  -ms-flex-item-align: center;
      align-self: center;
  max-width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  padding: 14px 0 4px 0;
  overflow-wrap: anywhere;
  line-height: 1.375;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  cursor: auto;
  visibility: visible;
}

.is-loading .fancybox__caption, .is-closing .fancybox__caption {
  opacity: 0;
  visibility: hidden;
}

.is-compact .fancybox__caption {
  padding-bottom: 0;
}

.f-button.is-close-btn {
  --f-button-svg-stroke-width: 2;
  position: absolute;
  top: 0;
  right: 8px;
  z-index: 40;
}

.fancybox__content > .f-button.is-close-btn {
  --f-button-width: 34px;
  --f-button-height: 34px;
  --f-button-border-radius: 4px;
  --f-button-color: var(--fancybox-color, #fff);
  --f-button-hover-color: var(--fancybox-color, #fff);
  --f-button-bg: transparent;
  --f-button-hover-bg: transparent;
  --f-button-active-bg: transparent;
  --f-button-svg-width: 22px;
  --f-button-svg-height: 22px;
  position: absolute;
  top: -38px;
  right: 0;
  opacity: 0.75;
}

.is-loading .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.is-zooming-out .fancybox__content > .f-button.is-close-btn {
  visibility: hidden;
}

.fancybox__content > .f-button.is-close-btn:hover {
  opacity: 1;
}

.fancybox__footer {
  padding: 0;
  margin: 0;
  position: relative;
}

.fancybox__footer .fancybox__caption {
  width: 100%;
  padding: 24px;
  opacity: var(--fancybox-opacity, 1);
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
}

.is-compact .fancybox__footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(24, 24, 27, 0.5);
}

.is-compact .fancybox__footer .fancybox__caption {
  padding: 12px;
}

.is-compact .fancybox__content > .f-button.is-close-btn {
  --f-button-border-radius: 50%;
  --f-button-color: #fff;
  --f-button-hover-color: #fff;
  --f-button-outline-color: #000;
  --f-button-bg: rgba(0, 0, 0, 0.6);
  --f-button-active-bg: rgba(0, 0, 0, 0.6);
  --f-button-hover-bg: rgba(0, 0, 0, 0.6);
  --f-button-svg-width: 18px;
  --f-button-svg-height: 18px;
  --f-button-svg-filter: none;
  top: 5px;
  right: 5px;
}

.fancybox__nav {
  --f-button-width: 50px;
  --f-button-height: 50px;
  --f-button-border: 0;
  --f-button-border-radius: 50%;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: transparent;
  --f-button-hover-bg: rgba(24, 24, 27, 0.3);
  --f-button-active-bg: rgba(24, 24, 27, 0.5);
  --f-button-shadow: none;
  --f-button-transition: all 0.15s ease;
  --f-button-transform: none;
  --f-button-svg-width: 26px;
  --f-button-svg-height: 26px;
  --f-button-svg-stroke-width: 2.5;
  --f-button-svg-fill: none;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.5));
  --f-button-svg-disabled-opacity: 0.65;
  --f-button-next-pos: 1rem;
  --f-button-prev-pos: 1rem;
  opacity: var(--fancybox-opacity, 1);
}

.fancybox__nav .f-button:before {
  position: absolute;
  content: "";
  top: -30px;
  right: -20px;
  left: -20px;
  bottom: -30px;
  z-index: 1;
}

.is-idle .fancybox__nav {
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.is-idle.is-compact .fancybox__footer {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__slide > .f-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: var(--f-spinner-top, calc(var(--f-spinner-width) * -0.5)) 0 0 var(--f-spinner-left, calc(var(--f-spinner-height) * -0.5));
  z-index: 30;
  cursor: pointer;
}

.fancybox-protected {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox-ghost {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  -o-object-fit: contain;
     object-fit: contain;
  z-index: 40;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

.fancybox-focus-guard {
  outline: none;
  opacity: 0;
  position: fixed;
  pointer-events: none;
}

.fancybox__container:not([aria-hidden]) {
  opacity: 0;
}

.fancybox__container.is-animated[aria-hidden=false] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=false] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=false] .fancybox__slide > *:not(.fancybox__content) {
  -webkit-animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
          animation: var(--f-interface-enter-duration, 0.25s) ease 0.1s backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
          animation: var(--f-backdrop-enter-duration, 0.35s) ease backwards f-fadeIn;
}

.fancybox__container.is-animated[aria-hidden=true] > *:not(.fancybox__backdrop, .fancybox__carousel), .fancybox__container.is-animated[aria-hidden=true] .fancybox__carousel > *:not(.fancybox__viewport), .fancybox__container.is-animated[aria-hidden=true] .fancybox__slide > *:not(.fancybox__content) {
  -webkit-animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
          animation: var(--f-interface-exit-duration, 0.15s) ease forwards f-fadeOut;
}

.fancybox__container.is-animated[aria-hidden=true] .fancybox__backdrop {
  -webkit-animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
          animation: var(--f-backdrop-exit-duration, 0.35s) ease forwards f-fadeOut;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  max-width: 100%;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-height: 1px;
  overflow: visible;
}

.has-iframe .fancybox__content, .has-map .fancybox__content, .has-pdf .fancybox__content {
  width: calc(100% - 120px);
  height: 90%;
}

.fancybox__container.is-compact .has-iframe .fancybox__content, .fancybox__container.is-compact .has-map .fancybox__content, .fancybox__container.is-compact .has-pdf .fancybox__content {
  width: 100%;
  height: 100%;
}

.has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%;
}

.has-map .fancybox__content, .has-pdf .fancybox__content, .has-youtube .fancybox__content, .has-vimeo .fancybox__content, .has-html5video .fancybox__content {
  padding: 0;
  background: rgba(24, 24, 27, 0.9);
  color: #fff;
}

.has-map .fancybox__content {
  background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0);
}

.fancybox-placeholder {
  border: 0 !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  margin: -1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important;
}

.f-carousel__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-outline: 0;
  --f-thumb-outline-color: #5eb0ef;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
  --f-thumb-border-radius: 2px;
  --f-thumb-offset: 0px;
  --f-button-next-pos: 0;
  --f-button-prev-pos: 0;
}

.f-carousel__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
  --f-thumb-selected-opacity: 1;
}

.f-carousel__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
}

.f-thumbs {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  -webkit-perspective: 1000px;
          perspective: 1000px;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.f-thumbs .f-spinner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#ebeff2), to(#e2e8f0));
  background-image: linear-gradient(#ebeff2, #e2e8f0);
  z-index: -1;
}

.f-thumbs .f-spinner svg {
  display: none;
}

.f-thumbs.is-vertical {
  height: 100%;
}

.f-thumbs__viewport {
  width: 100%;
  height: auto;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.f-thumbs__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-thumbs__slide {
  position: relative;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin: 0;
  width: var(--f-thumb-width);
  height: var(--f-thumb-height);
  overflow: visible;
  cursor: pointer;
}

.f-thumbs__slide.is-loading img {
  opacity: 0;
}

.is-classic .f-thumbs__viewport {
  height: 100%;
}

.is-modern .f-thumbs__track {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.is-modern .f-thumbs__track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc((var(--f-thumb-clip-width, 0)) * -0.5);
  width: calc(var(--width, 0) * 1px + var(--f-thumb-clip-width, 0));
  cursor: pointer;
}

.is-modern .f-thumbs__slide {
  width: var(--f-thumb-clip-width);
  -webkit-transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
          transform: translate3d(calc(var(--shift, 0) * -1px), 0, 0);
  -webkit-transition: none;
  transition: none;
  pointer-events: none;
}

.is-modern.is-resting .f-thumbs__slide {
  -webkit-transition: -webkit-transform 0.33s ease;
  transition: -webkit-transform 0.33s ease;
  transition: transform 0.33s ease;
  transition: transform 0.33s ease, -webkit-transform 0.33s ease;
}

.is-modern.is-resting .f-thumbs__slide__button {
  -webkit-transition: clip-path 0.33s ease;
  transition: clip-path 0.33s ease;
}

.is-using-tab .is-modern .f-thumbs__slide:focus-within {
  -webkit-filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
          filter: drop-shadow(-1px 0px 0px var(--f-thumb-outline-color)) drop-shadow(2px 0px 0px var(--f-thumb-outline-color)) drop-shadow(0px -1px 0px var(--f-thumb-outline-color)) drop-shadow(0px 2px 0px var(--f-thumb-outline-color));
}

.f-thumbs__slide__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: var(--f-thumb-width);
  height: 100%;
  margin: 0 -100% 0 -100%;
  padding: 0;
  border: 0;
  position: relative;
  border-radius: var(--f-thumb-border-radius);
  overflow: hidden;
  background: rgba(0, 0, 0, 0);
  outline: none;
  cursor: pointer;
  pointer-events: auto;
  -ms-touch-action: manipulation;
      touch-action: manipulation;
  opacity: var(--f-thumb-opacity);
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
}

.f-thumbs__slide__button:hover {
  opacity: var(--f-thumb-hover-opacity);
}

.f-thumbs__slide__button:focus:not(:focus-visible) {
  outline: none;
}

.f-thumbs__slide__button:focus-visible {
  outline: none;
  opacity: var(--f-thumb-selected-opacity);
}

.is-modern .f-thumbs__slide__button {
  --clip-path: inset( 0 calc( ((var(--f-thumb-width, 0) - var(--f-thumb-clip-width, 0))) * (1 - var(--progress, 0)) * 0.5 ) round var(--f-thumb-border-radius, 0) );
  clip-path: var(--clip-path);
}

.is-classic .is-nav-selected .f-thumbs__slide__button {
  opacity: var(--f-thumb-selected-opacity);
}

.is-classic .is-nav-selected .f-thumbs__slide__button::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: auto;
  bottom: 0;
  border: var(--f-thumb-outline, 0) solid var(--f-thumb-outline-color, transparent);
  border-radius: var(--f-thumb-border-radius);
  -webkit-animation: f-fadeIn 0.2s ease-out;
          animation: f-fadeIn 0.2s ease-out;
  z-index: 10;
}

.f-thumbs__slide__img {
  overflow: hidden;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: var(--f-thumb-offset);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  pointer-events: none;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--f-thumb-border-radius);
}

.f-thumbs.is-horizontal .f-thumbs__track {
  padding: 8px 0 12px 0;
}

.f-thumbs.is-horizontal .f-thumbs__slide {
  margin: 0 var(--f-thumb-gap) 0 0;
}

.f-thumbs.is-vertical .f-thumbs__track {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0 8px;
}

.f-thumbs.is-vertical .f-thumbs__slide {
  margin: 0 0 var(--f-thumb-gap) 0;
}

.fancybox__thumbs {
  --f-thumb-width: 96px;
  --f-thumb-height: 72px;
  --f-thumb-border-radius: 2px;
  --f-thumb-outline: 2px;
  --f-thumb-outline-color: #ededed;
  position: relative;
  opacity: var(--fancybox-opacity, 1);
  -webkit-transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  transition: max-height 0.35s cubic-bezier(0.23, 1, 0.32, 1);
}

.fancybox__thumbs.is-classic {
  --f-thumb-gap: 8px;
  --f-thumb-opacity: 0.5;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-classic .f-spinner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-modern {
  --f-thumb-gap: 4px;
  --f-thumb-extra-gap: 16px;
  --f-thumb-clip-width: 46px;
  --f-thumb-opacity: 1;
  --f-thumb-hover-opacity: 1;
}

.fancybox__thumbs.is-modern .f-spinner {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0.1)), to(rgba(255, 255, 255, 0.05)));
  background-image: linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.fancybox__thumbs.is-horizontal {
  padding: 0 var(--f-thumb-gap);
}

.fancybox__thumbs.is-vertical {
  padding: var(--f-thumb-gap) 0;
}

.is-compact .fancybox__thumbs {
  --f-thumb-width: 64px;
  --f-thumb-clip-width: 32px;
  --f-thumb-height: 48px;
  --f-thumb-extra-gap: 10px;
}

.fancybox__thumbs.is-masked {
  max-height: 0px !important;
}

.is-closing .fancybox__thumbs {
  -webkit-transition: none !important;
  transition: none !important;
}

.fancybox__toolbar {
  --f-progress-color: var(--fancybox-color, rgba(255, 255, 255, 0.94));
  --f-button-width: 46px;
  --f-button-height: 46px;
  --f-button-color: var(--fancybox-color);
  --f-button-hover-color: var(--fancybox-hover-color);
  --f-button-bg: rgba(24, 24, 27, 0.65);
  --f-button-hover-bg: rgba(70, 70, 73, 0.65);
  --f-button-active-bg: rgba(90, 90, 93, 0.65);
  --f-button-border-radius: 0;
  --f-button-svg-width: 24px;
  --f-button-svg-height: 24px;
  --f-button-svg-stroke-width: 1.5;
  --f-button-svg-filter: drop-shadow(1px 1px 1px rgba(24, 24, 27, 0.15));
  --f-button-svg-fill: none;
  --f-button-svg-disabled-opacity: 0.65;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI Adjusted", "Segoe UI", "Liberation Sans", sans-serif;
  color: var(--fancybox-color, currentColor);
  opacity: var(--fancybox-opacity, 1);
  text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.5));
  pointer-events: none;
  z-index: 20;
}

.fancybox__toolbar :focus-visible {
  z-index: 1;
}

.fancybox__toolbar.is-absolute, .is-compact .fancybox__toolbar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.is-idle .fancybox__toolbar {
  pointer-events: none;
  -webkit-animation: 0.15s ease-out both f-fadeOut;
          animation: 0.15s ease-out both f-fadeOut;
}

.fancybox__toolbar__column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.fancybox__toolbar__column.is-left, .fancybox__toolbar__column.is-right {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
}

.fancybox__toolbar__column.is-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.fancybox__infobar {
  padding: 0 5px;
  line-height: var(--f-button-height);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased;
  cursor: default;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.fancybox__infobar span {
  padding: 0 5px;
}

.fancybox__infobar:not(:first-child):not(:last-child) {
  background: var(--f-button-bg);
}

[data-fancybox-toggle-slideshow] {
  position: relative;
}

[data-fancybox-toggle-slideshow] .f-progress {
  height: 100%;
  opacity: 0.3;
}

[data-fancybox-toggle-slideshow] svg g:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-slideshow] svg g:last-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:first-child {
  display: none;
}

.has-slideshow [data-fancybox-toggle-slideshow] svg g:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:first-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

[data-fancybox-toggle-fullscreen] svg g:last-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:first-child {
  display: none;
}

:-webkit-full-screen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -webkit-box;
  display: flex;
}

:-ms-fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -ms-flexbox;
  display: flex;
}

:fullscreen [data-fancybox-toggle-fullscreen] svg g:last-child {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.f-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: 0;
      -ms-transform-origin: 0;
          transform-origin: 0;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  background: var(--f-progress-color, var(--f-carousel-theme-color, #0091ff));
  z-index: 30;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
}

/**
 * Swiper 11.1.15
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: November 18, 2024
 */
@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 {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
          transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-ios .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.swiper-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide {
  -webkit-transform-style: preserve-3d;
          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 {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  -ms-scroll-snap-type: none;
      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: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          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 {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          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 {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  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: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  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: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  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: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  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;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@-webkit-keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          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-next, .swiper-button-prev {
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next svg, .swiper-button-prev svg {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -webkit-transform-origin: center;
      -ms-transform-origin: center;
          transform-origin: center;
}

.swiper-rtl .swiper-button-next svg, .swiper-rtl .swiper-button-prev svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          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-next:after, .swiper-button-prev: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;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          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-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  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 {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          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;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: none;
  -moz-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-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.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%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-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 {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.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%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  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;
  -ms-touch-action: none;
      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-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  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: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
  -ms-touch-action: none;
      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 {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  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.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          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;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.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, .swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper.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-bottom, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
      -ms-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

body {
  margin: 0;
  color: #000;
  font: 500 15px/1.2 "Tilda Sans", sans-serif;
  background: #fff;
  -webkit-font-smoothing: antialiased;
  width: 100%;
}

img {
  display: block;
  border-style: none;
  max-width: 100%;
}

a {
  color: #000;
  outline: none;
  webkit-transition: all 200ms linear;
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear;
}

a:hover {
  text-decoration: none;
}

* {
  outline: none;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
}

input,
textarea,
select {
  font: 100% "Tilda Sans", sans-serif;
  vertical-align: middle;
  -webkit-appearance: none;
  -webkit-border-radius: 0;
}

input:not([type=radio], [type=checkbox]),
textarea,
select {
  font: 100% "Tilda Sans", Arial, Helvetica, sans-serif;
  vertical-align: middle;
  -webkit-appearance: none;
}

form,
fieldset {
  margin: 0;
  padding: 0;
  border-style: none;
  min-width: 0;
}

fieldset {
  /*max-width: 100%;*/
  /*display: table-cell;*/
}

header,
nav,
section,
article,
aside,
footer,
figure,
menu,
dialog {
  display: block;
}

dl {
  margin: 0 0 10px;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
  margin: 0;
  padding: 0;
}

p {
  margin: 0 0 10px;
}

h1 {
  font-size: 30px;
  line-height: 1.05;
  margin: 0 0 22px;
  font-family: "Druk Wide Cyr", sans-serif;
  font-weight: 700;
}

h2 {
  font-size: 27px;
  line-height: 1.05;
  margin: 0 0 22px;
  font-family: "Druk Wide Cyr", sans-serif;
  font-weight: 700;
  text-align: center;
}

h3 {
  font-size: 22px;
  line-height: 1.05;
  margin: 0 0 16px;
  font-family: "Druk Wide Cyr", sans-serif;
  font-weight: 700;
}

h4 {
  font-size: 18px;
  line-height: 1.2;
  margin: 0 0 11px;
  font-weight: 600;
}

h5 {
  font-size: 16px;
  line-height: 1.2;
  margin: 0 0 15px;
  font-weight: 700;
}

h6 {
  font-size: 18px;
  line-height: 20px;
  margin: 0 0 10px;
}

a {
  text-decoration: none;
  outline: none;
}

button,
input[type=submit],
input[type=file]::-webkit-file-upload-button {
  cursor: pointer;
  font: 500 15px/1.2 "Tilda Sans", sans-serif;
}

textarea::-moz-placeholder {
  color: rgb(157, 163, 169);
  opacity: 1;
}

textarea::-webkit-input-placeholder {
  color: rgb(157, 163, 169);
}

textarea:-ms-input-placeholder {
  color: rgb(157, 163, 169);
}

textarea::-ms-input-placeholder {
  color: rgb(157, 163, 169);
}

textarea::placeholder {
  color: rgb(157, 163, 169);
}

input::-moz-placeholder {
  color: rgb(157, 163, 169);
  opacity: 1;
}

input::-webkit-input-placeholder {
  color: rgb(157, 163, 169);
}

input:-ms-input-placeholder {
  color: rgb(157, 163, 169);
}

input::-ms-input-placeholder {
  color: rgb(157, 163, 169);
}

input::placeholder {
  color: rgb(157, 163, 169);
}

input:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder {
  color: transparent;
}

select:invalid {
  color: rgb(135, 130, 151);
}

/* =============================================================================
	MAIN
	========================================================================== */
html,
body {
  height: 100%;
  margin: 0;
  min-width: 320px;
  -webkit-text-size-adjust: none;
}

#wrapper {
  width: 100%;
  min-height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: initial;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.overflow {
  width: 100%;
  overflow-x: hidden;
}

.container .overflow {
  width: calc(100% + 60px);
  margin: 0 -30px;
}

#main {
  padding-top: 64px;
  padding-bottom: 55px;
  position: relative;
  -webkit-box-flex: 5000;
  -ms-flex: 5000 1 auto;
  flex: 5000 1 auto;
}

* html #wrapper {
  height: 100%;
}

.container {
  max-width: 1344px;
  margin: 0 auto;
  padding: 0 30px;
}

#header {
  line-height: 1;
  padding: 10px 0;
  -webkit-transition: all 200ms ease-in-out;
  transition: all 200ms ease-in-out;
}

.fixed-header {
  position: fixed;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  background: #fff;
}

.fixed-header:after {
  content: "";
  height: 2px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
}

.fixed-header.white-header {
  top: 46px;
}
.fixed-header.white-header:after {
  display: none;
}

#header .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mobile-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 0 0;
  gap: 25px;
}
@media screen and (max-width: 340px) {
  .mobile-menu {
    gap: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.mob_menu {
  display: inline-block;
  vertical-align: top;
  font-size: 32px;
}

.search-holder {
  display: inline-block;
  display: none;
  position: relative;
}
.search-holder .search-form {
  position: absolute;
  right: -27px;
  top: -18px;
  width: 468px;
  height: 60px;
  display: none;
}
.search-holder .search-form input[type=text] {
  width: 100%;
  height: 60px;
  line-height: 60px;
  padding: 0 70px 0 30px;
  font-size: 18px;
  color: #000;
  font-weight: 500;
  background-color: rgb(242, 241, 244);
  border-radius: 10px;
  border: 0;
}
.search-holder .search-form button {
  border: 0;
  position: absolute;
  top: 18px;
  right: 27px;
  background: none;
  padding: 0;
}
.search-holder .search-form button svg {
  fill: #000 !important;
}
.search-holder .search-form button svg path {
  fill: #000 !important;
}

.link_catalog {
  color: #000;
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  position: relative;
  top: -4px;
  display: none;
}

.link_profile {
  display: inline-block;
  vertical-align: top;
  font-size: 24px;
}

.logo {
  margin: 0 0 4px;
}

.logo a {
  display: inline-block;
  vertical-align: top;
  color: #e6684e;
}

.white-header .logo a {
  color: #ffffff;
}

.favorites-basket {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 7px 0;
  gap: 31px;
}
@media screen and (max-width: 340px) {
  .favorites-basket {
    gap: 0;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.favorites-basket .link_profile {
  display: none;
}

.link_search {
  color: #000;
  display: none;
}
.link_search svg {
  fill: #000;
}
.link_search svg path {
  -webkit-transition: 200ms ease;
  transition: 200ms ease;
  fill: #000;
}

.link_favorites {
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 23px;
}

.link_basket {
  position: relative;
  display: inline-block;
  vertical-align: top;
  font-size: 22px;
}

#header.white-header {
  background: none;
}

.white-header a {
  color: #fff;
}

.white-header a svg {
  fill: #fff;
}

.white-header a svg path {
  fill: #fff;
}

.quantity {
  position: absolute;
  right: -12px;
  top: -5px;
  background: #f5d8da;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #2a2020;
}

.promo {
  margin: -64px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding: 47px 0;
  height: 665px;
  position: relative;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #f4f4f4;
  overflow: hidden;
}
.promo .promo-image-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: none;
}
.promo .promo-image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.promo .index-promo-swiper {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
}
.promo .index-promo-swiper .swiper-slide {
  overflow: hidden;
  position: relative;
}
.promo .index-promo-swiper .swiper-slide:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  opacity: 0.7;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(71.88%, rgba(13, 6, 22, 0)), color-stop(120.15%, #0f061a));
  background: linear-gradient(360deg, rgba(13, 6, 22, 0) 71.88%, #0f061a 120.15%);
}
.promo .index-promo-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.promo .index-promo-swiper .swiper-pagination {
  position: absolute;
  bottom: 21px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.promo .index-promo-swiper .swiper-pagination .swiper-pagination-bullet {
  -webkit-transition: 300ms ease;
  transition: 300ms ease;
  border-radius: 5px;
  width: 5px;
  height: 5px;
  background: rgba(219, 227, 236, 0.3);
  display: block;
  position: relative;
}
.promo .index-promo-swiper .swiper-pagination .swiper-pagination-bullet:before {
  background: #fff;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  bottom: 0;
  -webkit-transition: all 2000ms linear;
  transition: all 2000ms linear;
  content: "";
}
.promo .index-promo-swiper .swiper-pagination .swiper-pagination-bullet-active {
  width: 24px;
}
.promo .index-promo-swiper .swiper-pagination .swiper-pagination-bullet-active:before {
  width: 100%;
}

.promo .container {
  position: relative;
  z-index: 5;
}

.promo h1 {
  color: #ffffff;
}

.btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 11px 5px 14px;
  font-family: "Tilda Sans", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  color: #f4f4f4;
  border-radius: 8px;
}

.btn-read {
  background: rgba(230, 104, 78, 0.7);
}

.btn-read:hover {
  background: rgb(230, 104, 78);
}

.promo .btn {
  width: 100%;
  max-width: 185px;
  margin: 0 auto;
  font-weight: 600;
}

.free-shipping-banner {
  background: #fda592;
  padding: 6px 0;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.01em;
  color: #fff;
}

.free-shipping-banner .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 28px;
}

.special-offers {
  padding-top: 22px;
}

.offers-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 8px;
  margin: 0 -30px 30px 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  text-align: center;
  color: #66636d;
  min-width: 0;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.offers-grid .offer-item:last-child {
  margin-right: 30px;
}

.offers-grid .offer-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25vw;
          flex: 0 0 25vw;
  min-width: 0;
}

.offers-grid .offer-item a {
  display: block;
  vertical-align: top;
}

.offer-item .holder-img {
  overflow: hidden;
  border: 1px solid #f7e6e3;
  padding: 3px;
  margin: 0 0 3px;
  position: relative;
}

.offers-grid .offer-item a:hover .holder-img {
  border-color: #f7c2b7;
}

.offer-item .holder-img .origin-img {
  position: absolute;
  top: 3px;
  left: 3px;
  right: 3px;
  bottom: 3px;
}

.offer-item .holder-img .origin-img img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.offer-item .holder-img img.img-frame {
  width: 100%;
  height: auto;
}

.offer-item span {
  display: block;
  margin: 0 0 10px;
}

.content-img {
  position: relative;
  margin: 0 0 11px;
  height: 264px;
}
@media (max-width: 575px) {
  .content-img {
    height: 423px;
    margin: 0 auto 26px auto;
  }
}

.content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.content-img:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  opacity: 0.5;
}
@media (max-width: 575px) {
  .content-img:before {
    width: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.content-img .holder-text {
  width: 160px;
  position: absolute;
  z-index: 1;
  right: 30px;
  bottom: 58px;
  color: #fff;
}
@media (max-width: 575px) {
  .content-img .holder-text {
    right: 35px;
  }
}

.content-img_title {
  display: block;
  margin: 0 0 11px;
  font-family: "Druk Wide Cyr", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.05;
  color: #fff;
}

.content-img .btn {
  width: 100%;
  padding: 7px 0 10px;
  font-size: 15px;
  line-height: 1.2;
}

.hide-card {
  display: none;
}

.btn-grey {
  margin: 0 auto 40px;
  border: 1px solid #d1ccdf;
  border-radius: 8px;
  max-width: 340px;
  width: 100%;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #878297;
}

.btn-grey:hover {
  border-color: #000000;
  color: #000;
}

.product-info {
  max-width: 1284px;
  margin: 0 auto;
}
.product-info-buttons {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 7px;
  margin: 0 0 30px;
}
.product-info-buttons .btn {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 50%;
          flex: 0 1 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 45px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 16px;
  line-height: 19px;
  border-radius: 8px;
  border: 1px solid #000;
  color: #000;
  text-decoration: none;
}
.product-info-buttons .btn.gray {
  color: rgb(135, 130, 151);
  border-color: rgb(209, 204, 223);
}
.product-info-buttons .btn.red {
  color: rgb(230, 104, 78);
  border-color: rgb(230, 104, 78);
}
.product-info-buttons .btn svg {
  margin: 0 0 0 13px;
}

.product-info h2 {
  text-align: left;
  max-width: 220px;
  margin: 0 auto 20px;
}

.product-info_header {
  margin: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}

.made-country {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.handmade {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}

.product-description {
  display: block;
  margin: 0 0 10px;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #000;
}

.product-info p {
  margin: 0 0 20px;
}

.steps-list {
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.steps-list li {
  padding: 8px 26px 8px 21px;
  margin: 0 0 10px;
  background: #ffeeef;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #000;
  border-radius: 10px;
}

.steps-list .step-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  margin: 0 0 3px;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #e6684e;
}

.steps-list li .step-number:before {
  display: inline-block;
  min-width: 50px;
  vertical-align: middle;
  margin: 0 10px 0 0;
  content: counter(step);
  text-align: center;
  counter-increment: step;
  font-family: "Druk Wide Cyr", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: #e6684e;
}

.steps-list p {
  margin: 0 0 8px;
}

.product-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
}
.product-footer .btn {
  max-width: none;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.border-read-btn {
  border: 1px solid #e6684e;
  border-radius: 8px;
  height: 45px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #e6684e;
}

.border-read-btn:hover {
  background: #e6684e;
  color: #fff;
}

.border-read-btn svg {
  margin: 0 0 0 5px;
}

.products-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 8px;
  width: auto;
  margin: 0 -30px 30px 0;
  padding: 0 0 10px;
}

.products-list .product-item:last-child {
  margin-right: 30px;
}

.products-list .product-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 56vw;
          flex: 0 0 56vw;
  width: 56vw;
  position: relative;
}

.product-item .product-image {
  overflow: hidden;
}

.product-item .product-image img {
  width: 100%;
  height: auto;
}

.products-list .product-item .origin-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.product-item .product-image .origin-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-image {
  position: relative;
  margin: 0 0 15px;
}

.link-basket,
.like-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 21px;
  top: 12px;
  width: 36px;
  height: 36px;
  background: #ffffff;
  color: #b4b4b4;
  border-radius: 50%;
  overflow: hidden;
  z-index: 2;
}
.link-basket svg,
.link-basket path,
.like-star svg,
.like-star path {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.link-basket.active,
.like-star.active,
.link-basket:hover,
.like-star:hover {
  color: #e6684e;
}
.link-basket.active path,
.link-basket.active svg,
.like-star.active path,
.like-star.active svg,
.link-basket:hover path,
.link-basket:hover svg,
.like-star:hover path,
.like-star:hover svg {
  fill: #e6684e;
}

.product-item p {
  margin: 0 0 7px;
  font-weight: 600;
}

.product-item .colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
  gap: 7px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.product-item .colors span {
  display: block;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  overflow: hidden;
  text-indent: -999px;
}
.product-item .colors li {
  font-size: 13px;
  line-height: 16px;
  color: rgb(135, 130, 151);
  font-weight: 600;
}

.product-price {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #e6684e;
}
.product-price em {
  font-style: normal;
  position: relative;
  top: -3px;
  font-size: 14px;
  line-height: 16px;
  margin: 0 0 0 8px;
  display: inline-block;
  font-weight: 600;
  color: rgb(135, 130, 151);
}
.product-price em:after {
  position: absolute;
  content: "";
  top: 9px;
  left: 0;
  right: 0;
  height: 1px;
  background-color: rgb(135, 130, 151);
}

.marketplace-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  gap: 5px;
  margin: 0 -30px 30px 0;
  padding: 0 0 10px;
}

.marketplace-list .marketplace-item:last-child {
  margin-right: 30px;
}

.marketplace-item {
  border: 1px solid #dddae6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 20px 18px;
  height: 61px;
  border-radius: 8px;
}
.marketplace-item svg {
  height: 100%;
}

.popular-swiper .btn {
  display: none;
}

.news-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  gap: 8px;
  margin: 0 -30px 30px 0;
  padding: 0 0 10px;
}

.news-list .news-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 56vw;
          flex: 0 0 56vw;
  width: 56vw;
}
.news-list .news-item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-item {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000;
}

.news-item .news-image {
  position: relative;
  overflow: hidden;
  margin: 0 0 10px;
}
.news-item .news-image .link {
  position: absolute;
  bottom: 19px;
  right: 26px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 10px;
  color: rgb(244, 244, 244);
  font-size: 16px;
  line-height: 16px;
  font-weight: 700;
  background: rgb(230, 104, 78);
  border-radius: 12px;
  z-index: 10;
  height: 36px;
}
.news-item .news-image .link svg {
  margin: 0 0 0 10px;
}
.news-item .news-image .origin-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.news-item .news-image .origin-img a {
  display: block;
  height: 100%;
  width: 100%;
}
.news-item .news-image .origin-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.news-item .news-image .frame-img {
  width: 100%;
  height: auto;
}

.news-itemlist .product-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-item p {
  margin: 0 0 8px;
}

.news-date {
  display: block;
  font-weight: 500;
  font-size: 12px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #878297;
}

#footer {
  overflow: hidden;
  width: 100%;
  background: #f2ecec;
}

.logo-footer {
  display: block;
  width: 350px;
  height: 91px;
  margin: -48px auto 47px;
}
.logo-footer strong {
  display: block;
}

.logo-footer svg {
  display: block;
  width: 100%;
  height: auto;
}

.discount-form {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #625f6c;
}

.form-label {
  display: block;
  margin: 0 0 7px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000;
}

.email-form .holder-input {
  position: relative;
}

.email-form input {
  margin: 0 0 10px;
  padding: 0 26px;
  width: 100%;
  height: 50px;
  background: #fff;
  border: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #878297;
}

.email-form .submit-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  padding: 0;
  background: #ffffff;
  width: 22px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 45%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  color: #e6684e;
}

.email-form .submit-button:hover {
  color: #000000;
}

.discount-form .subtext {
  margin: 0 0 20px;
}

.social-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  gap: 30px;
}

#footer .social-list {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 18px;
}
#footer .social-list li {
  margin: 0 0 10px;
}

.social-list a {
  display: inline-block;
  vertical-align: top;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  -webkit-columns: 2;
     -moz-columns: 2;
          columns: 2; /* Количество колонок */
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px; /* Отступ между колонками */
}

.footer-nav li {
  margin-bottom: 14px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: -0.01em;
}

.footer-nav a {
  display: inline-block;
  vertical-align: top;
}

.footer-nav a:hover {
  opacity: 0.8;
}

.copyright {
  position: relative;
  padding: 30px 0;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #625f6c;
}

.copyright:before {
  content: "";
  position: absolute;
  left: -50px;
  right: -50px;
  top: 0;
  border-top: 1px solid #e1d5d6;
}

.popup_block {
  display: none;
}

#img_popup {
  height: 100vh;
  width: 100%;
  padding: 0;
}

#img_popup .is-close-btn {
  top: 27px;
  right: 20px;
}

#img_popup .inner_popup {
  position: relative;
}

.user-product {
  position: absolute;
  z-index: 2;
  left: 27px;
  top: 22px;
  right: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.user-product_image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  overflow: hidden;
}

.user-product_description {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 0 0 0 18px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #fff;
}

.user-product_description span {
  display: block;
}

.photo-slider .holder-img {
  position: relative;
}

.photo-slider .holder-img .holder-text {
  position: absolute;
  z-index: 2;
  left: 30px;
  right: 30px;
  bottom: 11%;
  text-align: center;
  color: #fff;
}

.photo-slider .holder-img .holder-text .btn {
  max-width: 185px;
  margin: 0 auto;
}

.photo-slider .holder-img:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 50%;
  opacity: 0.8;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.photo-slider .holder-img:after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  right: 0;
  bottom: 0;
  opacity: 0.8;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.65)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(to top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

.photo-slider .holder-img img {
  height: 80vh;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

.photo-slider .swiper-pagination {
  bottom: 6%;
}

.swiper-pagination span {
  margin: 0 8px;
  width: 5px;
  height: 5px;
  background: rgba(219, 227, 236, 0.3);
  border-radius: 3px;
  position: relative;
}
.swiper-pagination span:before {
  background: #fff;
  border-radius: 3px;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  bottom: 0;
  opacity: 0;
  -webkit-transition: width 3000ms linear;
  transition: width 3000ms linear;
  content: "";
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  width: 24px;
}
.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
  opacity: 1;
  width: 100%;
}

.promo-img {
  position: relative;
  padding: 26px 0;
  margin: 0 0 19px;
  height: 600px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 0;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #f4f4f4;
}
.promo-img .container {
  position: relative;
  z-index: 2;
}

.promo-img-swiper {
  height: 100%;
  width: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
}
.promo-img-swiper .swiper-slide {
  height: 100%;
}
.promo-img-swiper .swiper-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.controls-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.prev-btn {
  color: #ffffff;
}

.controls-page .like-star {
  position: static;
  width: 44px;
  height: 44px;
}

.product-card {
  margin: 0 0 17px;
  border-bottom: 1px solid #e2e2e2;
  position: relative;
}
.product-card .btn_like {
  position: absolute;
  top: 35px;
  right: 0;
  display: none;
}

.product-card_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  margin: 0 0 8px;
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #878297;
}

.product-price-discount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 15px;
  gap: 10px;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.product-price-discount .btn_like {
  display: none !important;
}

.current-price {
  margin: 0 10px 0 0;
  color: #e6684e;
}

.old-price {
  font-size: 14px;
  text-decoration: line-through;
  color: #999;
}

.product-color {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  margin: 0 0 6px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #878297;
}

.product-color .color-name {
  font-weight: 700;
  color: #000;
}

.product-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding: 0 0 10px;
  margin: 0 -30px 12px 0;
}

.product-gallery a {
  display: block;
  padding: 2px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 63px;
          flex: 0 0 63px;
  width: 63px;
  height: 81px;
  border: 1px solid transparent;
  overflow: hidden;
}

.product-gallery a.active,
.product-gallery a:hover {
  border-color: #e6684e;
}

.product-gallery .holder-img {
  display: block;
  overflow: hidden;
}

.product-gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.btn-read-icon {
  padding: 20px 5px;
  margin: 0 0 8px;
  font-size: 18px;
  background: #e6684e;
}

.btn-read-icon svg {
  margin: 0 0 0 11px;
}

.gift-wrap-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 10px;
}

.gift-wrap-checkbox {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 180px;
  cursor: pointer;
  display: block;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #000;
}

.gift-wrap-checkbox input {
  display: none;
}

.gift-wrap-checkbox span {
  display: block;
  position: relative;
  padding: 0 0 0 37px;
}

.gift-wrap-checkbox span:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #878297;
  border-radius: 6px;
  width: 27px;
  height: 27px;
  background-size: 16px 16px;
  background-position: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-repeat: no-repeat;
}

.gift-wrap-checkbox input:checked + span:before {
  background-image: url('data:image/svg+xml,%3Csvg%20xmlns%3D"http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg"%20width%3D"14"%20height%3D"10"%20fill%3D"none"%20viewBox%3D"0%200%2014%2010"%3E%3Cpath%20fill%3D"%23000"%20fill-rule%3D"evenodd"%20d%3D"M13.033.293a1%201%200%200%201%200%201.414L5.538%209.202a1.067%201.067%200%200%201-1.509%200L.305%205.48A1%201%200%201%201%201.72%204.065L4.783%207.13%2011.62.293a1.001%201.001%200%200%201%201.414%200Z"%20clip-rule%3D"evenodd"%2F%3E%3C%2Fsvg%3E');
}

.gift-wrap-option .holder-img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 85px;
          flex: 0 0 85px;
  width: 85px;
}

.product-components {
  line-height: 1.3;
}

.product-components p {
  color: #58565e;
}

.product-components-list {
  margin: 0 0 14px;
  padding: 0 0 0 9px;
  list-style: none;
  color: #58565e;
}

.product-components-list li {
  position: relative;
  padding: 0 0 0 13px;
  margin: 0;
}

.product-components-list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 3px;
  height: 3px;
  background: #58565e;
  border-radius: 50%;
}

.accordion {
  margin: 0 0 52px;
}

.accordion .expanded {
  display: none;
}

.accordion .heading {
  display: block;
  padding: 0 20px 0 0;
  margin: 0 0 6px;
  position: relative;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: #000;
}

.accordion .heading:before {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  width: 4px;
  height: 7px;
  -webkit-transform: translateY(-40%);
      -ms-transform: translateY(-40%);
          transform: translateY(-40%);
  background-image: url('data:image/svg+xml,%3Csvg%20width%3D"4"%20height%3D"7"%20viewBox%3D"0%200%204%207"%20fill%3D"none"%20xmlns%3D"http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg"%3E%3Cpath%20fill-rule%3D"evenodd"%20clip-rule%3D"evenodd"%20d%3D"M3.84096%203.88883L0.768083%207L0%206.22234L2.68883%203.5L0%200.777656L0.768083%200L3.84096%203.11117C3.94279%203.21431%204%203.35417%204%203.5C4%203.64583%203.94279%203.78569%203.84096%203.88883Z"%20fill%3D"black"%20%2F%3E%3C%2Fsvg%3E');
  background-size: 4px 7px;
  background-position: center;
  background-repeat: no-repeat;
}

.accordion .item.active .heading:before {
  transform: rotate(90deg) rotateY(0deg);
  -webkit-transform: rotate(90deg) rotateY(0deg);
  -moz-transform: rotate(90deg) rotateY(0deg);
  -o-transform: rotate(90deg) rotateY(0deg);
  -ms-transform: rotate(90deg) rotateY(0deg);
}

.accordion .item {
  border-bottom: 1px solid #e2e2e2;
  padding: 0 0 10px;
  margin: 0 0 12px;
}

.reviews {
  margin: 0 0 35px;
}

.reviews h2 {
  margin: 0 0 10px;
  text-transform: uppercase;
}

.reviews-subtitle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 0 29px;
  text-align: center;
}

.reviews-subtitle svg {
  margin: 0 6px 0 0;
}

.reviews-slider {
  margin: 0 -120px 20px 0;
  position: relative;
}
.reviews-slider .btn {
  position: absolute;
  top: 35%;
  background-color: #fff;
  width: 71px;
  height: 71px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(16, 7, 31, 0.2);
          box-shadow: 0px 20px 50px 0px rgba(16, 7, 31, 0.2);
  z-index: 100;
  display: none;
}
.reviews-slider .btn-prev {
  left: -40px;
}
.reviews-slider .btn-next {
  right: -40px;
}

.review-item {
  border: 1px solid #dcd9e8;
  padding: 22px 20px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  border-radius: 12px;
  overflow: hidden;
  color: #000;
}

.review-item_header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 0 7px;
}

.review-item_header .product-name {
  font-weight: 700;
  font-size: 13px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #000;
}

.review-item_header .rating {
  margin: -14px 0 0 0;
}

.rating {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.01em;
  color: #000;
}

.rating svg {
  margin: 0 2px 0 0;
}

.reviewer-name {
  display: block;
  margin: 0 0 15px;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #e6684e;
}

.reviews-pagination {
  position: static;
}

.reviews-pagination span {
  background: #dbe3ec;
}

.reviews-pagination .swiper-pagination-bullet:before {
  background: #000000;
}

.product-item .product-price-discount {
  font-size: 18px;
}

/* =============================================================================
        HasLayot
        ========================================================================== */
.group:after {
  display: block;
  content: "";
  clear: both;
}

.head {
  position: relative;
  padding: 16px 0 8px;
}
.head .container {
  max-width: none;
}
.head .container:after {
  content: "";
  display: block;
  margin: 0 0 0;
}
.head:before {
  position: absolute;
  top: 0;
  right: 30px;
  left: 30px;
  border-top: 1px solid rgb(217, 213, 229);
  content: "";
}
.head .holder {
  padding-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.head-breadcrumbs {
  display: none;
  margin: 0 0 13px;
  padding: 0;
  list-style: none;
  gap: 12px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.head-breadcrumbs li {
  font-size: 13px;
  line-height: 13px;
  color: rgb(181, 179, 186);
  font-weight: 500;
  position: relative;
  padding: 0 18px 0 0;
}
.head-breadcrumbs li:after {
  position: absolute;
  top: 4px;
  right: 0;
  content: "";
  width: 8px;
  height: 7px;
  background: url("../images/arrow_01.svg") 0 0 no-repeat;
}
.head-breadcrumbs li:last-child {
  padding: 0;
}
.head-breadcrumbs li:last-child:after {
  display: none;
}
.head-breadcrumbs li a {
  color: rgb(102, 99, 109);
}
.head h1 {
  font-size: 22px;
  line-height: 23px;
  margin: 0;
}
.head .filter {
  padding: 6px 0 0;
  margin: 0 0 0 auto;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.head .filter li {
  margin: 0 0 0 30px;
}
.head .tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 -20px 8px 0;
  padding: 0 0 2px;
  list-style: none;
}
.head .tags li {
  margin: 0 6px 8px 0;
  white-space: nowrap;
}
.head .tags li a {
  border: 1px solid rgb(216, 212, 228);
  border-radius: 8px;
  height: 29px;
  line-height: 29px;
  font-size: 13px;
  color: rgb(135, 130, 151);
  text-decoration: none;
  padding: 0 10px;
  display: block;
}

.origin-img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.origin-img a {
  display: block;
  height: 100%;
  width: 100%;
}
.origin-img img {
  width: 100% !important;
  height: 100% !important;
  -o-object-fit: cover !important;
     object-fit: cover !important;
}

.catalog {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3px;
}
.catalog_item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  margin: 0 0 27px -2px;
}
.catalog_item .visual {
  position: relative;
  margin-bottom: 14px;
}
.catalog_item .visual img {
  width: 100%;
  height: auto;
}
.catalog_item .visual .link-star {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 8px;
  top: 15px;
  width: 36px;
  height: 36px;
  background: #ffffff;
  color: #b4b4b4;
  border-radius: 50%;
  overflow: hidden;
}
.catalog_item .visual .new {
  position: absolute;
  bottom: 17px;
  left: 16px;
  font-family: "Druk Wide Cyr", sans-serif;
  font-size: 10px;
  color: #fff;
  height: 24px;
  line-height: 24px;
  padding: 0 9px;
  background-color: rgb(230, 104, 78);
  border-radius: 8px;
}
.catalog_item .info {
  padding: 0 21px;
}
.catalog_item .info .title {
  display: block;
  color: rgb(0, 0, 0);
  font-size: 14px;
  line-height: 15px;
  font-weight: 600;
  margin: 0 0 8px;
}
.catalog_item .info .price {
  font-style: normal;
  font-weight: 700;
  letter-spacing: -0.02;
  color: rgb(230, 104, 78);
  font-size: 18px;
  line-height: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 0 8px;
}
.catalog_item .info .price .sale {
  text-decoration: line-through;
  color: rgb(135, 130, 151);
  font-size: 14px;
  line-height: 17px;
  font-weight: 600;
  padding: 2px 0 0 8px;
}
.catalog_item .info .colors {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none;
}
.catalog_item .info .colors li {
  margin: 0 7px 0 0;
  color: rgb(135, 130, 151);
  font-size: 13px;
  line-height: 16px;
  font-weight: 600;
}
.catalog_item .info .colors li span {
  display: block;
  height: 10px;
  width: 10px;
  overflow: hidden;
  text-indent: -9999px;
  border-radius: 50%;
  margin: 3px 0 0;
}

.catalog-pagination {
  margin: 0 0 50px;
}
.catalog-pagination .show-more {
  display: block;
  border: 1px solid rgb(113, 113, 113);
  border-radius: 5px;
  height: 45px;
  line-height: 45px;
  text-decoration: none;
  color: #000;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 26px;
}
.catalog-pagination .paginator {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 23px;
}
.catalog-pagination .paginator li {
  font-size: 18px;
  line-height: 27px;
  font-weight: 700;
}
.catalog-pagination .paginator li a {
  color: rgb(180, 180, 180);
  text-decoration: none;
}
.catalog-pagination .paginator li a svg {
  margin: 5px 10px 0;
}
.catalog-pagination .paginator li.active a {
  color: #000;
}

#profile-menu,
#side-sort,
#side-filter,
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: none;
}
#profile-menu .overlay,
#side-sort .overlay,
#side-filter .overlay,
.modal .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(94, 20, 29, 0.15);
}
#profile-menu .menu-container,
#profile-menu .filter-container,
#side-sort .menu-container,
#side-sort .filter-container,
#side-filter .menu-container,
#side-filter .filter-container,
.modal .menu-container,
.modal .modal__container,
.modal .filter-container {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  z-index: 999;
  position: fixed;
  top: 0;
  left: -100%;
  bottom: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  padding: 28px 30px;
  width: 350px;
  max-width: 100%;
  -webkit-box-shadow: 0px 20px 80px 0px rgba(13, 12, 33, 0.25);
          box-shadow: 0px 20px 80px 0px rgba(13, 12, 33, 0.25);
}
#profile-menu.active .filter-container,
#side-sort.active .filter-container,
#side-filter.active .filter-container,
.modal.active .filter-container {
  left: 0;
}
#profile-menu .close,
#side-sort .close,
#side-filter .close,
.modal .close {
  position: absolute;
  top: 30px;
  right: 39px;
  text-decoration: none;
}
#profile-menu h3,
#side-sort h3,
#side-filter h3,
.modal h3 {
  font-size: 22px;
  line-height: 23px;
  margin: 0 0 32px;
}
#profile-menu .form-row,
#side-sort .form-row,
#side-filter .form-row,
.modal .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  margin: 0 0 12px;
}
#profile-menu .form-row input[type=text],
#side-sort .form-row input[type=text],
#side-filter .form-row input[type=text],
.modal .form-row input[type=text] {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 50%;
          flex: 1 1 50%;
  width: 50%;
  height: 45px;
  line-height: 45px;
  color: #000;
  font-size: 16px;
  padding: 0 28px;
  border: 1px solid rgb(208, 212, 216);
  border-radius: 3px;
}
#profile-menu .form-row input[type=text]::-webkit-input-placeholder, #side-sort .form-row input[type=text]::-webkit-input-placeholder, #side-filter .form-row input[type=text]::-webkit-input-placeholder, .modal .form-row input[type=text]::-webkit-input-placeholder {
  color: rgb(157, 163, 169);
}
#profile-menu .form-row input[type=text]::-moz-placeholder, #side-sort .form-row input[type=text]::-moz-placeholder, #side-filter .form-row input[type=text]::-moz-placeholder, .modal .form-row input[type=text]::-moz-placeholder {
  color: rgb(157, 163, 169);
}
#profile-menu .form-row input[type=text]:-ms-input-placeholder, #side-sort .form-row input[type=text]:-ms-input-placeholder, #side-filter .form-row input[type=text]:-ms-input-placeholder, .modal .form-row input[type=text]:-ms-input-placeholder {
  color: rgb(157, 163, 169);
}
#profile-menu .form-row input[type=text]::-ms-input-placeholder, #side-sort .form-row input[type=text]::-ms-input-placeholder, #side-filter .form-row input[type=text]::-ms-input-placeholder, .modal .form-row input[type=text]::-ms-input-placeholder {
  color: rgb(157, 163, 169);
}
#profile-menu .form-row input[type=text]::placeholder,
#side-sort .form-row input[type=text]::placeholder,
#side-filter .form-row input[type=text]::placeholder,
.modal .form-row input[type=text]::placeholder {
  color: rgb(157, 163, 169);
}
#profile-menu .form-range,
#side-sort .form-range,
#side-filter .form-range,
.modal .form-range {
  height: 27px;
  position: relative;
  margin: 0 27px 9px 0;
}
#profile-menu .form-range:after,
#side-sort .form-range:after,
#side-filter .form-range:after,
.modal .form-range:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: -27px;
  height: 2px;
  background-color: rgb(228, 226, 233);
}
#profile-menu .form-range .ui-slider-handle,
#side-sort .form-range .ui-slider-handle,
#side-filter .form-range .ui-slider-handle,
.modal .form-range .ui-slider-handle {
  position: absolute;
  width: 27px;
  height: 27px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 3px solid rgb(230, 104, 78);
  text-indent: -999px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #fff;
  z-index: 3;
}
#profile-menu .form-range .ui-slider-range,
#side-sort .form-range .ui-slider-range,
#side-filter .form-range .ui-slider-range,
.modal .form-range .ui-slider-range {
  z-index: 2;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 2px;
  background-color: rgb(230, 104, 78);
}
#profile-menu .row,
#side-sort .row,
#side-filter .row,
.modal .row {
  margin: 0 0 11px;
  overflow: hidden;
}
#profile-menu .row label,
#side-sort .row label,
#side-filter .row label,
.modal .row label {
  font-size: 16px;
  line-height: 18px;
  color: #000;
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
}
#profile-menu .radio-list,
#side-sort .radio-list,
#side-filter .radio-list,
.modal .radio-list {
  margin: 0;
  padding: 0;
  list-style: none;
  overflow: hidden;
}
#profile-menu .radio-list li,
#side-sort .radio-list li,
#side-filter .radio-list li,
.modal .radio-list li {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 8px;
}
#profile-menu .radio-list li label,
#side-sort .radio-list li label,
#side-filter .radio-list li label,
.modal .radio-list li label {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgb(135, 130, 151);
}
#profile-menu .radio-list li label input,
#side-sort .radio-list li label input,
#side-filter .radio-list li label input,
.modal .radio-list li label input {
  height: 22px;
  width: 22px;
  margin: 0 11px 0 0;
}
#profile-menu .radio-list li label input::before,
#side-sort .radio-list li label input::before,
#side-filter .radio-list li label input::before,
.modal .radio-list li label input::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  height: 22px;
  width: 22px;
  margin: 0 11px 0 0;
  border-radius: 50%;
  border: 1px solid rgb(165, 170, 175);
  content: "";
}
#profile-menu .radio-list li label input:checked::before,
#side-sort .radio-list li label input:checked::before,
#side-filter .radio-list li label input:checked::before,
.modal .radio-list li label input:checked::before {
  border: 4px solid rgb(230, 104, 78);
}
#profile-menu .radio-list li label input:checked + span,
#side-sort .radio-list li label input:checked + span,
#side-filter .radio-list li label input:checked + span,
.modal .radio-list li label input:checked + span {
  color: #000;
}
#profile-menu .button,
#side-sort .button,
#side-filter .button,
.modal .button {
  margin-top: 11px;
  height: 60px;
  border: 0;
  display: block;
  width: 100%;
  background-color: rgb(230, 104, 78);
  line-height: 60px;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  color: rgb(244, 244, 244);
  border-radius: 12px;
}

.breadcrumbs {
  margin: 0 0 29px;
}
.breadcrumbs a {
  color: #000;
  font-family: "Druk Wide Cyr", sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 23px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 15% 0 0;
}
.breadcrumbs a svg {
  margin: 2px 25px -2px 0;
}

.delivery-item h4,
.delivery-item h3 {
  font-family: "Tilda Sans", sans-serif;
  font-size: 18px;
  line-height: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #000;
  font-weight: 700;
  margin: 0 0 9px;
}
.delivery-item h4 svg,
.delivery-item h3 svg {
  margin: 0 13px 0 0;
}
.delivery-item p {
  color: rgb(88, 86, 94);
  margin: 0 0 30px;
}
.delivery-item .visual {
  background: rgba(223, 226, 230, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 80px;
  margin: 0 0 11px;
  border-radius: 12px;
  overflow: hidden;
}
.delivery-item strong {
  font-weight: 700;
}
.delivery-item strong {
  font-weight: 800;
}
.delivery-item strong a {
  color: #000;
}
.delivery-item a {
  color: rgb(230, 104, 78);
}
.delivery-item .more {
  color: #000;
}

.free-delivery {
  background: rgb(255, 238, 239);
  padding: 21px 27px 36px 26px;
  margin: 0 0 40px;
  border-radius: 12px;
}
.free-delivery h4 {
  color: rgb(230, 104, 78);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  font-size: 20px;
  line-height: 24px;
  letter-spacing: -0.01em;
  font-weight: 700;
  font-family: "Tilda Sans", sans-serif;
}
.free-delivery h4 svg {
  margin: 0 0 0 auto;
}
.free-delivery p {
  font-size: 15px;
  line-height: 18px;
  letter-spacing: -0.01em;
  margin: 0;
}

.delivery-info {
  margin: 0 0 40px;
}
.delivery-info h3 {
  margin: 0 0 10px;
}
.delivery-info > h3 {
  margin: 0 0 30px;
}
.delivery-info .icon {
  margin: 0 0 23px;
}
.delivery-info p {
  color: rgb(88, 86, 94);
}
.delivery-info p strong {
  color: #000;
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  display: inline-block;
  padding-bottom: 13px;
}
.delivery-info .more {
  display: inline-block;
  vertical-align: top;
  border-bottom: 1px solid rgb(198, 202, 221);
  padding: 0 0 5px;
  font-weight: 500;
  font-size: 15px;
  line-height: 19px;
}

.address {
  display: block;
  margin: 0 0 17px;
  font-style: normal;
}
.address span {
  display: block;
  margin-bottom: 3px;
  font-size: 15px;
  line-height: 19px;
  font-weight: 500;
  color: rgb(88, 86, 94);
}
.address strong {
  font-weight: 700;
  font-size: 22px;
  line-height: 26px;
}

#map_canvas {
  height: 320px;
  margin: 30px -30px;
  position: relative;
}

#contacts-form {
  overflow: hidden;
  margin: 60px 0;
}
#contacts-form legend {
  padding: 0;
  font-size: 22px;
  line-height: 26px;
  margin: 0 0 25px;
  font-weight: 700;
}
#contacts-form .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 19px;
}
#contacts-form .form-row .form-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc((100% - 18px) / 2);
          flex: 0 1 calc((100% - 18px) / 2);
}
#contacts-form .form-row .form-col.large {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
#contacts-form .form-row .form-col span {
  color: rgb(98, 95, 108);
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  display: block;
  padding: 9px 0 0;
}
#contacts-form .form-row label {
  display: block;
  font-weight: 700;
  font-size: 13px;
  line-height: 14px;
  margin: 0 0 9px;
}
#contacts-form .form-row select,
#contacts-form .form-row input[type=text],
#contacts-form .form-row input[type=email] {
  width: 100%;
  border: 1px solid rgb(215, 213, 219);
  height: 50px;
  line-height: 48px;
  font-weight: 600;
  font-size: 14px;
  padding: 0 26px;
  border-radius: 8px;
}
#contacts-form .form-row textarea {
  width: 100%;
  height: 106px;
  padding: 18px 26px;
  resize: none;
  border-radius: 8px;
  border: 1px solid rgb(215, 213, 219);
}
#contacts-form .form-row .select-holder {
  position: relative;
}
#contacts-form .form-row .select-holder svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 23px;
  pointer-events: none;
}
#contacts-form .foot {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#contacts-form .foot .btn {
  background: rgb(230, 104, 78);
  color: rgb(244, 244, 244);
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 24px 0 0;
  font-size: 18px;
  line-height: 21px;
  padding: 0 103px;
  border-radius: 12px;
  border: 0;
}
#contacts-form .foot span {
  color: rgb(98, 95, 108);
  font-size: 12px;
  line-height: 14px;
  font-weight: 500;
  display: block;
}

@media screen and (max-width: 600px) {
  #contacts-form .form-row {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
    margin: 0;
  }
  #contacts-form .form-row .form-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 0 0 19px;
  }
  #contacts-form .foot .btn {
    padding: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
  #contacts-form .foot span br {
    display: none;
  }
}
.info-block h4 {
  font-size: 22px;
  line-height: 28px;
  font-weight: 700;
  margin: 0 0 20px;
}
.info-block .ip-info {
  margin: 0;
  padding: 0;
  list-style: none;
}
.info-block .ip-info li {
  margin: 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.info-block .ip-info span {
  display: block;
  font-size: 15px;
  line-height: 19px;
  margin: 0 0 3px;
  color: rgb(88, 86, 94);
}
.info-block .ip-info strong {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 0 0;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 40px;
  line-height: 48px;
  color: rgb(230, 104, 78);
  font-weight: 600;
}
.info-block .ip-info strong em {
  font-style: normal;
}
.info-block .ip-info strong sup {
  font-size: 20px;
}

.info-slider {
  margin: 0 -70px 60px -30px;
  position: relative;
  padding-bottom: 26px;
}
.info-slider .swiper-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.info-slider .swiper-wrapper .img-frame {
  height: auto;
  width: 100%;
}
.info-slider .pagination {
  bottom: 0;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}
.info-slider .pagination .swiper-pagination-bullet {
  background: #000;
  border-radius: 5px;
  -webkit-transition: 0.3s linear;
  transition: 0.3s linear;
}
.info-slider .pagination .swiper-pagination-bullet-active {
  background-color: rgb(230, 104, 78);
  width: 24px;
}

.sertificates {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 35px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sertificates li {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 43%;
          flex: 0 0 43%;
}
.sertificates a {
  display: block;
  margin: 0 0 14px;
}
.sertificates a img {
  -webkit-filter: grayscale(100%); /* Safari 6.0 - 9.0 */
  filter: grayscale(100%);
}
.sertificates span {
  display: block;
  color: rgb(88, 86, 94);
  font-size: 15px;
  line-height: 13px;
  font-weight: 500;
}

.fancybox__content {
  padding: 0;
}

#main-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  display: none;
}
#main-menu .overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(94, 20, 29, 0.15);
}
#main-menu .menu-container, #main-menu .modal .modal__container, .modal #main-menu .modal__container {
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
  z-index: 999;
  position: fixed;
  top: 0;
  left: -100%;
  bottom: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  padding: 28px 30px;
  width: 350px;
  max-width: 100%;
  -webkit-box-shadow: 0px 20px 80px 0px rgba(13, 12, 33, 0.25);
          box-shadow: 0px 20px 80px 0px rgba(13, 12, 33, 0.25);
}
#main-menu.active .menu-container, #main-menu.active .modal .modal__container, .modal #main-menu.active .modal__container {
  left: 0;
}
#main-menu .close {
  position: absolute;
  top: 30px;
  right: 39px;
  text-decoration: none;
}
#main-menu .logo {
  display: block;
  margin: 0 0 28px;
}
#main-menu .search-form {
  margin: 0 0 22px;
}
#main-menu .search-form .form-row {
  position: relative;
}
#main-menu .search-form input[type=text] {
  width: 100%;
  height: 50px;
  line-height: 50px;
  background-color: rgb(242, 241, 244);
  border: 0;
  border-radius: 10px;
  padding: 0 46px 0 25px;
  font-size: 16px;
  font-weight: 500;
}
#main-menu .search-form .btn-submit {
  border: 0;
  padding: 0;
  background: none;
  position: absolute;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  line-height: 0;
  font-size: 0;
}
#main-menu .main-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#main-menu .main-nav ul li {
  margin: 0 0 20px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 600;
}
#main-menu .main-nav ul li a {
  display: block;
  color: #000;
  text-decoration: none;
}
#main-menu .main-nav ul li ul {
  padding: 16px 0 0;
}
#main-menu .main-nav ul li ul li {
  font-weight: 500;
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 18px;
}
#main-menu .main-nav ul li ul li a {
  color: rgb(102, 99, 109);
}

.users-review {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
  margin: 0 0 30px;
}
.users-review-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0;
  padding: 13px 12px 56px 24px;
  background-color: rgba(223, 226, 230, 0.3);
  border-radius: 12px;
  position: relative;
}
.users-review-item_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 21px;
}
.users-review-item_head .date {
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  color: rgb(180, 180, 180);
  font-weight: 600;
}
.users-review-item_user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.users-review-item_user .avatar {
  background-color: rgb(243, 229, 226);
  height: 40px;
  width: 40px;
  border-radius: 50%;
  overflow: hidden;
  padding: 2px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  line-height: 16px;
  color: rgb(230, 104, 78);
  font-weight: 600;
  margin: 0 10px 0 0;
}
.users-review-item_user .avatar img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.users-review-item_user .name {
  font-size: 18px;
  line-height: 18px;
  color: rgb(230, 104, 78);
  font-weight: 600;
}
.users-review-item_post {
  font-size: 17px;
  line-height: 22px;
  color: rgb(88, 86, 94);
  margin: 0 0 40px;
}
.users-review-item_post p {
  margin: 0;
}
.users-review-item_post .read-more {
  color: rgb(180, 180, 180);
  font-size: 14px;
  line-height: 15px;
  font-weight: 600;
  text-decoration: underline;
}
.users-review-item_post .hidden {
  display: none;
}
.users-review-item_footer {
  border-top: 1px solid rgb(217, 219, 223);
  padding: 18px 0 0;
  margin: auto 0 0;
}
.users-review-item_footer .info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 80px 0 0;
}
.users-review-item_footer .info .visual {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 53px;
          flex: 0 0 53px;
  width: 53px;
  height: 69px;
  margin: 0 18px 0 0;
}
.users-review-item_footer .info .visual img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.users-review-item_footer .info .text {
  padding: 8px 0 0;
}
.users-review-item_footer .info .text strong {
  display: block;
  margin: 0 0 4px;
  color: rgb(180, 180, 180);
  font-size: 14px;
  line-height: 15px;
}
.users-review-item_footer .info .text p {
  font-size: 16px;
  line-height: 17px;
  margin: 0;
  color: #000;
  font-weight: 600;
}
.users-review-item_footer .raiting {
  position: absolute;
  left: 24px;
  bottom: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.users-review-item_footer .raiting span {
  color: #000;
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  display: block;
  padding: 2px 0 0 6px;
}

/* popup gallery */
.fancybox__backdrop {
  background-color: rgba(1, 2, 4, 0.2);
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
}

.fancybox__slide {
  overflow: hidden;
}

.fancybox__content > .f-button.is-close-btn {
  top: 20px;
  right: 20px;
  opacity: 1;
}

.popup-gallery {
  display: none;
  background: none;
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.popup-gallery .popup-content {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  z-index: 20;
  height: 100%;
}
.popup-gallery .swiper-pagination {
  position: absolute;
  bottom: 60px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.popup-gallery .popup-gallery-holder {
  height: 100%;
}
.popup-gallery .slide-holder {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.7;
}
.popup-gallery .slide-holder img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.popup-gallery .swiper-slide {
  position: relative;
  background-color: rgb(31, 7, 7);
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
}
.popup-gallery .swiper-slide:before {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: 2;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(22.86%, rgba(13, 6, 22, 0)), color-stop(174.59%, rgba(15, 6, 26, 0.8)));
  background: linear-gradient(360deg, rgba(13, 6, 22, 0) 22.86%, rgba(15, 6, 26, 0.8) 174.59%);
}
.popup-gallery .swiper-slide:after {
  -webkit-transition: all 400ms ease;
  transition: all 400ms ease;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  content: "";
  z-index: 2;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(71.88%, rgba(13, 6, 22, 0)), color-stop(120.15%, #0f061a));
  background: linear-gradient(180deg, rgba(13, 6, 22, 0) 71.88%, #0f061a 120.15%);
}
.popup-gallery .swiper-slide,
.popup-gallery .swiper-slide-next,
.popup-gallery .swiper-slide-prev {
  -webkit-transform: scale(0.8);
      -ms-transform: scale(0.8);
          transform: scale(0.8);
}
.popup-gallery .swiper-slide .slide-holder,
.popup-gallery .swiper-slide-next .slide-holder,
.popup-gallery .swiper-slide-prev .slide-holder {
  opacity: 0.7;
}
.popup-gallery .swiper-slide.swiper-slide-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.popup-gallery .swiper-slide.swiper-slide-active .slide-holder {
  opacity: 1;
}
.popup-gallery .prev-btn,
.popup-gallery .prev-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.popup-gallery .btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: #fff;
  width: 71px;
  height: 71px;
  border-radius: 50%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(16, 7, 31, 0.2);
          box-shadow: 0px 20px 50px 0px rgba(16, 7, 31, 0.2);
  z-index: 100;
}
@media (max-width: 1025px) {
  .popup-gallery .btn {
    background: transparent;
    width: 25%;
    height: 70%;
    border-radius: 0;
    top: 44%;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .popup-gallery .btn svg {
    display: none;
  }
}
.popup-gallery .btn-prev {
  left: 0px;
}
.popup-gallery .btn-next {
  right: 0px;
}
.popup-gallery .slide-logo {
  position: absolute;
  top: 40px;
  right: 29px;
  z-index: 10;
}
.popup-gallery .slide-info {
  position: absolute;
  top: 30px;
  left: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10;
}
.popup-gallery .slide-info .avatar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 40px;
          flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 18px 0 0;
}
.popup-gallery .slide-info p {
  margin: 0;
  color: #fff;
  font-size: 14px;
  line-height: 15px;
  font-weight: 600;
}
.popup-gallery .slide-title {
  position: absolute;
  bottom: 98px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.popup-gallery .slide-title strong {
  text-align: center;
  display: block;
  margin: 0 0 29px;
  font-family: "Druk Wide Cyr", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 31px;
  color: #fff;
}
.popup-gallery .slide-title .slide-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 36px;
  height: 50px;
  color: rgb(244, 244, 244);
  background: rgba(230, 104, 78, 0.7);
  border-radius: 10px;
  font-size: 22px;
  line-height: 22px;
  font-weight: 600;
  margin: 0 auto;
}
.popup-gallery .slide-title .slide-button svg:first-child {
  margin: 0 5px 0 0;
}
.popup-gallery .slide-title .slide-button svg:last-child {
  margin: 0 0 0 5px;
}

.profile-avatar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 200px;
          flex: 0 0 200px;
  margin: 0 36px 0 0;
  position: relative;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: rgb(253, 241, 239);
}
.profile-avatar > svg {
  position: absolute;
  left: 50%;
  top: 25px;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
.profile-avatar .make-photo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45px;
  background: rgba(0, 0, 0, 0.2);
}

.profile-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.profile-content h3 {
  font-family: "Druk Wide Cyr", sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: 42px;
  margin: 0 0 51px;
}
.profile-content .profile-menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 15px;
  font-weight: 500;
}
.profile-content .profile-menu ul li {
  margin: 0 0 20px;
}
.profile-content .profile-menu ul li.active a {
  color: rgb(230, 104, 78);
}
.profile-content .profile-menu ul li:last-child {
  font-size: 16px;
  line-height: 20px;
}
.profile-content .profile-menu ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.profile-content .profile-menu ul li a path,
.profile-content .profile-menu ul li a svg {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.profile-content .profile-menu ul li a:hover {
  color: rgb(230, 104, 78);
}
.profile-content .profile-menu ul li a:hover path,
.profile-content .profile-menu ul li a:hover svg {
  fill: rgb(230, 104, 78);
}
.profile-content .profile-menu ul li a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 18px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 18px;
          flex: 0 0 18px;
  height: 18px;
  font-size: 12px;
  line-height: 12px;
  font-weight: 600;
  color: rgb(42, 32, 32);
  background: rgb(245, 216, 218);
  border-radius: 50%;
  overflow: hidden;
  margin: 0 0 0 10px;
}
.profile-content .profile-menu ul li a svg {
  margin: 3px 0 0 8px;
}

#profile-menu .menu-container,
.modal .menu-container,
.modal .modal__container {
  left: auto;
  right: -100%;
}
@media screen and (max-width: 763px) {
  #profile-menu .menu-container,
  .modal .menu-container,
  .modal .modal__container {
    left: -100%;
    right: auto;
  }
}
#profile-menu.active .menu-container, #profile-menu.active .modal .modal__container, .modal #profile-menu.active .modal__container,
.modal.active .menu-container,
.modal.active .modal__container {
  right: 0;
}
@media screen and (max-width: 763px) {
  #profile-menu.active .menu-container, #profile-menu.active .modal .modal__container, .modal #profile-menu.active .modal__container,
  .modal.active .menu-container,
  .modal.active .modal__container {
    left: 0;
    right: auto;
  }
}
#profile-menu .profile-content,
.modal .profile-content {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#profile-menu .profile-content .profile-avatar,
.modal .profile-content .profile-avatar {
  margin: 0 0 21px;
}
#profile-menu .profile-content .profile-menu ul,
.modal .profile-content .profile-menu ul {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#profile-menu .profile-content .profile-menu ul li,
.modal .profile-content .profile-menu ul li {
  margin: 0 0 20px;
}
#profile-menu .profile-content .profile-menu ul li:last-child,
.modal .profile-content .profile-menu ul li:last-child {
  padding: 20px 0 0;
}

.profile-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 10px 0 30px;
  position: relative;
}
.profile-container h1 {
  font-size: 18px;
  line-height: 19px;
  margin: 0 0 58px;
}
.profile-container h3 {
  font-family: "Druk Wide Cyr", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 19px;
  margin: 0 0 20px;
  display: block;
}
.profile-container .profile-avatar {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 89px;
          flex: 0 0 89px;
  width: 89px;
  height: 89px;
  margin: 0;
}
.profile-container .profile-avatar .make-photo {
  height: 24px;
}
.profile-container .profile-avatar .make-photo svg {
  width: 16px;
}
.profile-container .profile-content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 10px 0 0;
  max-width: 100%;
}
.profile-container .profile-content .profile-menu {
  padding: 0 0 27px 108px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 155px;
}
.profile-container .profile-content .profile-menu nav {
  margin: auto -30px 0 -108px;
  position: relative;
}
.profile-container .profile-content .profile-menu ul {
  gap: 30px;
  padding: 0 30px 0 0;
  overflow: hidden;
  overflow-x: auto;
  width: 100%;
}
.profile-container .profile-content .profile-menu ul li {
  white-space: nowrap;
  margin: 0;
}
.profile-container .profile-content .profile-menu ul li:last-child {
  margin: 0 0 0 auto;
  position: absolute;
  top: -50px;
  left: 108px;
}
.profile-container .profile-form legend {
  font-family: "Druk Wide Cyr", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 19px;
  margin: 0 0 20px;
  display: block;
}
.profile-container .profile-form .btn {
  background-color: rgb(230, 104, 78);
  border: 0;
  color: rgb(244, 244, 244);
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  height: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 56px;
  border-radius: 12px;
}
.profile-container .profile-form .form-footer .btn {
  width: 100%;
}
.profile-container .profile-form label {
  display: block;
  margin: 0 0 5px;
  font-size: 16px;
  line-height: 18px;
}
.profile-container .profile-form .form-group {
  margin: 0 0 50px;
}
.profile-container .profile-form .form-row {
  margin: 0 0 20px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 19px;
}
.profile-container .profile-form .form-row.has-info {
  padding-bottom: 22px;
}
.profile-container .profile-form .form-input span {
  display: block;
  font-size: 13px;
  line-height: 15px;
  margin: 7px 0 0;
  color: rgb(157, 163, 169);
  white-space: nowrap;
  overflow: hidden;
  max-width: 100%;
  text-overflow: ellipsis;
}
.profile-container .profile-form .form-input span.info-text {
  position: absolute;
  bottom: 0;
}
.profile-container .profile-form .form-input span.error-text {
  white-space: normal;
  display: none;
}
.profile-container .profile-form .form-input input[type=text],
.profile-container .profile-form .form-input input[type=password],
.profile-container .profile-form .form-input input[type=email] {
  border-radius: 3px;
  border: 1px solid rgb(208, 212, 216);
  height: 60px;
  line-height: 58px;
  width: 100%;
  padding: 0 18px;
}
.profile-container .profile-form .form-input.error span {
  display: block;
  color: rgb(230, 104, 78);
}
.profile-container .profile-form .form-input.error input[type=text] {
  border-color: rgb(230, 104, 78);
}
.profile-container .profile-form .form-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.profile-container .profile-form .form-radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.profile-container .profile-form label.radio {
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgb(135, 130, 151);
}
.profile-container .profile-form label.radio input {
  height: 22px;
  width: 22px;
  margin: 0 11px 0 0;
}
.profile-container .profile-form label.radio input::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  height: 22px;
  width: 22px;
  margin: 0 11px 0 0;
  border-radius: 50%;
  border: 1px solid rgb(165, 170, 175);
  content: "";
}
.profile-container .profile-form label.radio input:checked::before {
  border: 4px solid rgb(230, 104, 78);
}
.profile-container .profile-form label.radio input:checked + span {
  color: #000;
}
.profile-container .sub-menu {
  margin: 0;
  padding: 0;
  margin: 0 0 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  font-size: 14px;
  line-height: 15px;
  font-weight: 500;
  list-style: none;
  white-space: nowrap;
}
.profile-container .sub-menu li.active a {
  color: rgb(230, 104, 78);
}
.profile-container .sub-menu li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.profile-container .sub-menu li a path,
.profile-container .sub-menu li a svg {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}
.profile-container .sub-menu li a:hover {
  color: rgb(230, 104, 78);
}
.profile-container .sub-menu li a:hover path,
.profile-container .sub-menu li a:hover svg {
  fill: rgb(230, 104, 78);
}
.profile-container .orders-list .item {
  margin: 0 0 13px;
  border: 1px solid rgb(217, 213, 228);
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 20px 20px 16px 20px;
}
.profile-container .orders-list .item-visual {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 55px;
          flex: 0 0 55px;
  height: 77px;
  margin: 0 23px 0 0;
}
.profile-container .orders-list .item-visual a {
  display: block;
  height: 100%;
}
.profile-container .orders-list .item-visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.profile-container .orders-list .item-name {
  padding-top: 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.profile-container .orders-list .item-name strong {
  display: block;
  font-size: 16px;
  line-height: 18px;
  margin: 0 0 8px;
  font-weight: 600;
}
.profile-container .orders-list .item-name em {
  display: block;
  font-style: normal;
  font-size: 18px;
  line-height: 21px;
  margin: 0 0 8px;
  font-weight: 700;
}
.profile-container .orders-list .item-name span {
  display: inline-block;
  height: 10px;
  width: 10px;
  text-indent: -9999px;
  overflow: hidden;
  border-radius: 50%;
}
.profile-container .orders-list .item-details {
  margin: 13px 0 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  position: relative;
}
.profile-container .orders-list .item-details .count {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 12px;
  border-bottom: 1px solid rgb(230, 227, 239);
  margin: 0 0 10px;
}
.profile-container .orders-list .item-details .count span {
  display: inline-block;
  font-size: 14px;
  line-height: 16px;
  color: rgb(102, 99, 109);
  font-weight: 500;
}
.profile-container .orders-list .item-details .count em {
  display: inline-block;
  font-style: normal;
  font-size: 18px;
  line-height: 21px;
  margin: 0 0 0 auto;
  font-weight: 700;
}
.profile-container .orders-list .item-details address {
  color: rgb(102, 99, 109);
  font-style: normal;
  font-size: 14px;
  line-height: 16px;
  font-weight: 500;
  margin: 0 0 7px;
}
.profile-container .orders-list .item-details .status {
  margin: 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  font-size: 14px;
  line-height: 16px;
}
.profile-container .orders-list .item-details .status .success {
  color: rgb(56, 133, 88);
}
.profile-container .orders-list .item-details .status .warning {
  color: rgb(230, 104, 78);
}
.profile-container .orders-list .item-details .action {
  position: absolute;
  right: 0;
  bottom: -25px;
  font-size: 14px;
  line-height: 16px;
  padding: 0 0 6px;
  font-weight: 600;
  color: rgb(230, 104, 78);
  border-bottom: 1px solid rgb(243, 211, 205);
}
.profile-container .orders-list .item-details .action:hover {
  border-bottom-color: transparent;
}
.profile-container .products-list {
  margin: 0;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 5px;
}
.profile-container .products-list .product-item {
  margin-right: 0;
  margin-bottom: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc((100% - 10px) / 2);
          flex: 0 1 calc((100% - 10px) / 2);
}
.profile-container .files-list {
  margin: 0 0 38px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 13px;
}
.profile-container .files-list .item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  border: 1px solid rgb(217, 213, 228);
  border-radius: 12px;
  padding: 20px 29px 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.profile-container .files-list .item .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 45px;
          flex: 0 0 45px;
  margin: 0 15px 0 0;
  padding: 2px 0 0;
}
.profile-container .files-list .item .info strong {
  display: block;
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  margin: 0 0 8px;
}
.profile-container .files-list .item .info em {
  font-style: normal;
  font-size: 14px;
  line-height: 14px;
  color: rgb(102, 99, 109);
  font-weight: 500;
}
.profile-container .files-list + .news-list {
  margin: 0;
}
.profile-container .news-list {
  width: 100%;
  margin: 0 0 -70px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px;
}
.profile-container .news-list .news-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin: 0 0 20px;
}

.basket-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 0 0 -55px;
}
.basket-container .basket-sidebar {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  margin: 0 0 20px;
}
.basket-container .orders-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 1px solid rgb(217, 213, 228);
  border-radius: 12px;
  padding: 26px 16px 28px;
  margin: 0 0 20px;
}
.basket-container .orders-list .item:last-child {
  margin-bottom: 0;
}
.basket-container .orders-list .item-visual {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
  height: 106px;
  margin: 0 13px 0 0;
}
.basket-container .orders-list .item-visual a {
  height: 100%;
  display: block;
}
.basket-container .orders-list .item-visual img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.basket-container .orders-list .item-info {
  display: block;
  margin: -5px 0 0;
}
.basket-container .orders-list .item-info strong {
  display: block;
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: -0.02em;
}
.basket-container .orders-list .item-info em {
  font-style: normal;
  display: block;
  font-size: 18px;
  line-height: 21px;
  margin: 0 0 20px;
  font-weight: 700;
}
.basket-container .orders-list .item-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.basket-container .orders-list .item-footer .item-counter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 20px 0 0;
}
.basket-container .orders-list .item-footer .item-counter span {
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  display: block;
  min-width: 44px;
}
.basket-container .orders-list .item-footer .item-counter svg {
  display: block;
}
.basket-container .orders-list .item-footer strong {
  display: inline-block;
  font-size: 18px;
  line-height: 21px;
  margin: 0;
  font-weight: 700;
  color: rgb(230, 104, 78);
}
.basket-container .orders-list .item-footer a.delete {
  margin: 0 0 0 auto;
}
.basket-container .orders-list .item-footer a.delete svg {
  display: block;
}
.basket-container .basket-content {
  background: rgba(223, 226, 230, 0.3);
  border-radius: 0;
  padding: 40px 30px 40px 30px;
  margin: 0 -30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-width: 100%;
}
.basket-container .basket-content .basket-total {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
}
.basket-container .basket-content .basket-total ul {
  padding: 0;
  list-style: none;
  margin: 0 0 19px;
}
.basket-container .basket-content .basket-total ul li {
  margin: 0 0 10px;
}
.basket-container .basket-content .basket-total ul li span {
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  color: rgb(102, 99, 109);
  letter-spacing: -0.02em;
  margin: 0 0 3px;
  display: block;
}
.basket-container .basket-content .basket-total ul li strong {
  display: block;
  padding: 0;
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 21px;
  color: #000;
  font-weight: 700;
}
.basket-container .basket-content .basket-total p {
  color: rgb(102, 99, 109);
  font-size: 16px;
  line-height: 18px;
  margin: 0 0 3px;
  font-weight: 500;
}
.basket-container .basket-content .basket-total strong {
  color: rgb(230, 104, 78);
  display: block;
  font-size: 40px;
  line-height: 48px;
  font-weight: 600;
  margin: 0 0 19px;
}
.basket-container .basket-content .basket-total .note {
  position: relative;
  display: block;
  margin: 0 0 19px;
  padding: 0 0 0 31px;
  font-size: 14px;
  line-height: 15px;
  font-weight: 500;
  color: rgb(102, 99, 109);
}
.basket-container .basket-content .basket-total .note svg {
  position: absolute;
  top: 2px;
  left: 7px;
}
.basket-container .basket-content .basket-total .btn {
  background-color: rgb(230, 104, 78);
  border: 0;
  color: rgb(244, 244, 244);
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  height: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 56px;
  border-radius: 12px;
}
.basket-container .basket-content .basket-form {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  border-bottom: 1px solid rgb(223, 226, 230);
  width: 100%;
  padding: 0 0 20px;
  margin: 0 0 30px;
}
.basket-container .basket-content .basket-form legend {
  font-family: "Druk Wide Cyr", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 25px;
  margin: 0 0 20px;
  display: block;
}
.basket-container .basket-content .basket-form p {
  font-size: 13px;
  line-height: 15px;
  color: rgb(102, 99, 109);
  font-weight: 600;
  margin: 0 20% 17px 0;
}
.basket-container .basket-content .basket-form .btn {
  background-color: rgb(230, 104, 78);
  border: 0;
  color: rgb(244, 244, 244);
  font-size: 18px;
  font-weight: 700;
  line-height: 18px;
  height: 60px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 56px;
  border-radius: 12px;
}
.basket-container .basket-content .basket-form label {
  display: block;
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 18px;
  font-weight: 600;
}
.basket-container .basket-content .basket-form .form-group {
  margin: 0 0 30px;
}
.basket-container .basket-content .basket-form .form-group:last-child {
  margin: 0;
}
.basket-container .basket-content .basket-form .form-group:last-child .form-row:last-child {
  margin: 0;
}
.basket-container .basket-content .basket-form .form-row {
  margin: 0 0 20px;
  position: relative;
}
.basket-container .basket-content .basket-form .form-row.has-info {
  padding-bottom: 22px;
}
.basket-container .basket-content .basket-form .form-row-goup .form-row {
  margin: 0 0 10px;
}
.basket-container .basket-content .basket-form .form-input {
  position: relative;
}
.basket-container .basket-content .basket-form .form-input span {
  display: block;
  font-size: 13px;
  line-height: 15px;
  margin: 7px 0 0;
  color: rgb(157, 163, 169);
  white-space: nowrap;
}
.basket-container .basket-content .basket-form .form-input span.info-text {
  position: absolute;
  bottom: 0;
}
.basket-container .basket-content .basket-form .form-input span.error-text {
  white-space: normal;
  display: none;
}
.basket-container .basket-content .basket-form .form-input input[type=text],
.basket-container .basket-content .basket-form .form-input input[type=password],
.basket-container .basket-content .basket-form .form-input input[type=email],
.basket-container .basket-content .basket-form .form-input textarea {
  border-radius: 3px;
  border: 1px solid rgb(208, 212, 216);
  height: 60px;
  font-size: 16px;
  font-weight: 600;
  line-height: 58px;
  width: 100%;
  padding: 0 18px;
}
.basket-container .basket-content .basket-form .form-input textarea {
  height: 122px;
  line-height: 18px;
  resize: none;
  padding: 20px 18px;
}
.basket-container .basket-content .basket-form .form-input.error span {
  display: block;
  color: rgb(230, 104, 78);
}
.basket-container .basket-content .basket-form .form-input.error input[type=text] {
  border-color: rgb(230, 104, 78);
}
.basket-container .basket-content .basket-form .form-input.search input[type=text],
.basket-container .basket-content .basket-form .form-input.search input[type=password],
.basket-container .basket-content .basket-form .form-input.search input[type=email] {
  padding-left: 46px;
}
.basket-container .basket-content .basket-form .form-input.search svg {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 18px;
}
.basket-container .basket-content .basket-form .form-col {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 calc((100% - 38px) / 3);
          flex: 0 1 calc((100% - 38px) / 3);
}
.basket-container .basket-content .basket-form .form-radio-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}
.basket-container .basket-content .basket-form label.radio {
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: rgb(135, 130, 151);
}
.basket-container .basket-content .basket-form label.radio .frame {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid rgb(208, 212, 216);
  border-radius: 3px;
}
.basket-container .basket-content .basket-form label.radio input {
  height: 22px;
  width: 22px;
  margin: 0 11px 0 0;
}
.basket-container .basket-content .basket-form label.radio input::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  height: 22px;
  width: 22px;
  margin: 0 11px 0 0;
  border-radius: 50%;
  border: 1px solid rgb(165, 170, 175);
  content: "";
  background: #fff;
}
.basket-container .basket-content .basket-form label.radio input:checked::before {
  border: 4px solid rgb(230, 104, 78);
}
.basket-container .basket-content .basket-form label.radio input:checked + .frame {
  border: 2px solid rgb(230, 104, 78);
}
.basket-container .basket-content .basket-form label.radio input:checked + span {
  color: #000;
}
.basket-container .basket-content .basket-form .note {
  padding-top: 5px;
  font-weight: 600;
  display: block;
  font-size: 13px;
  line-height: 15px;
  color: rgb(102, 99, 109);
}
.basket-container .basket-content .basket-form ul {
  margin: 0 0 22px 23px;
  padding: 0;
  color: rgb(102, 99, 109);
  font-size: 13px;
  line-height: 15px;
}
.basket-container .basket-content .basket-form .radio-list {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 9px;
}
.basket-container .basket-content .basket-form .radio-list .radio-item {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.basket-container .basket-content .basket-form .radio-list .radio-item label {
  border-radius: 3px;
  background: #fff;
  display: block;
  width: 100%;
  min-height: 70px;
  padding: 12px 14px 17px 17px;
}
.basket-container .basket-content .basket-form .radio-list .radio-item label input {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 14px;
  margin: 0;
}
.basket-container .basket-content .basket-form .radio-list .radio-item strong {
  display: block;
  color: rgb(135, 130, 151);
  font-size: 600;
  font-size: 15px;
  line-height: 18px;
  margin: 0 0 6px;
}
.basket-container .basket-content .basket-form .radio-list .radio-item strong span {
  font-weight: 700;
  color: #000;
}
.basket-container .basket-content .basket-form .radio-list .radio-item em {
  letter-spacing: -0.02em;
  font-style: normal;
  font-size: 14px;
  line-height: 15px;
  color: rgb(102, 99, 109);
  font-weight: 500;
}
.basket-container .basket-content .basket-form .radio-list .radio-item em span {
  font-weight: 700;
}
.basket-container .basket-content .basket-form .select-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 9px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.basket-container .basket-content .basket-form .select-row .btn-select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  width: 100%;
  margin: 0 0 5px;
  background: rgb(230, 104, 78);
  color: rgb(244, 244, 244);
  font-weight: 700;
  font-size: 16px;
  line-height: 18px;
  height: 40px;
  border-radius: 12px;
  letter-spacing: -0.01em;
}
.basket-container .basket-content .basket-form .select-row address {
  color: rgb(102, 99, 109);
  font-size: 13px;
  line-height: 15px;
  font-style: normal;
  font-weight: 500;
  padding: 0;
}

.order-basket-stick {
  -webkit-transition: opacity 300ms;
  transition: opacity 300ms;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
}
.order-basket-stick.hide {
  opacity: 0;
  pointer-events: none;
}
.order-basket-stick .info p {
  margin: 0;
  font-size: 12px;
  line-height: 13px;
  color: rgb(102, 99, 109);
}
.order-basket-stick .info strong {
  display: block;
  color: rgb(230, 104, 78);
  font-size: 22px;
  line-height: 26px;
  font-weight: 600;
}
.order-basket-stick .btn {
  height: 40px;
  font-size: 16px;
  margin: 0 0 0 auto;
  background: rgb(230, 104, 78);
  padding: 0 30px;
}

@media screen and (min-width: 761px) {
  .head h1 {
    font-size: 30px;
    line-height: 32px;
    margin: 0;
  }
  .head-breadcrumbs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  h2 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 20px;
  }
  h3 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 20px;
  }
  .logo {
    width: 174px;
  }
  .logo a {
    display: block;
  }
  .logo svg {
    width: 100%;
    height: auto;
  }
  .promo {
    height: 531px;
    padding-bottom: 76px;
    margin-top: -74px;
  }
  .promo .promo-image-container {
    display: none;
  }
  .special-offers {
    padding-top: 30px;
  }
  .special-offers h4 {
    text-align: center;
    font-size: 24px;
    line-height: 28px;
    font-weight: 400;
    margin: 0 0 21px;
  }
  .offers-grid .offer-item:last-child {
    margin: 0;
  }
  .offers-grid {
    gap: 2px;
    margin-right: 0;
  }
  .offers-grid .offer-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50vw;
            flex: 0 1 50vw;
  }
  .offers-grid .offer-item span {
    font-size: 15px;
    color: rgb(102, 99, 109);
    font-weight: 500;
  }
  .offers-grid .holder-img {
    padding: 0;
    border: 0;
    margin: 0 0 6px;
  }
  .offers-grid .holder-img .origin-img {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .content-img {
    height: 370px;
    margin: 0 0 30px;
  }
  .content-img .holder-text {
    right: 30px;
    bottom: 111px;
  }
  .product-footer {
    display: none;
  }
  .product-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .product-info h2 {
    text-align: center;
    max-width: none;
  }
  .product-info p {
    text-align: center;
    font-size: 15px;
    line-height: 18px;
  }
  .product-info-buttons {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 7px;
    margin: 0 0 30px;
  }
  .product-info-buttons .btn {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    padding: 0 33px;
    font-weight: 700;
    font-size: 16px;
    line-height: 19px;
  }
  .product-info-buttons .btn.gray {
    padding: 0 55px;
  }
  .steps-list li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .steps-list li p {
    margin: 0 0 0 37px;
    font-size: 16px;
    line-height: 19px;
    font-weight: 500;
    text-align: left;
  }
  .product-description {
    text-align: center;
    font-size: 24px;
    line-height: 26px;
    margin: 0 0 10px;
    font-weight: 600;
  }
  .products-list {
    gap: 5px;
  }
  .products-list .product-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35vw;
            flex: 0 0 35vw;
    width: 35vw;
  }
  .products-list .product-item p {
    text-align: left;
    font-size: 16px;
    line-height: 18px;
    margin: 0 0 8px;
    font-weight: 600;
  }
  .marketplace-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    overflow: hidden;
    gap: 5px;
    margin: 0 0 30px 0;
    padding: 0 0 10px;
  }
  .marketplace-list .marketplace-item {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 5px 0 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 33%;
            flex: 0 1 33%;
  }
  .marketplace-list .marketplace-item:last-child {
    margin-right: 0;
  }
  .news-list .news-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 40vw;
            flex: 0 0 40vw;
  }
  .favorites-basket .link_profile {
    display: inline-block;
  }
  .mobile-menu .link_catalog,
  .link_search {
    display: inline-block;
  }
  .mobile-menu .link_profile {
    display: none;
  }
  .search-holder {
    display: inline-block;
  }
  #main {
    padding-top: 74px;
  }
  .catalog-pagination .show-more {
    max-width: 344px;
    margin: 0 auto 26px;
  }
  .breadcrumbs a {
    font-size: 30px;
    line-height: 32px;
  }
  .contacts {
    position: relative;
    padding-bottom: 550px;
  }
  .contacts .address-list {
    float: left;
    width: calc(50% + 9px);
  }
  .contacts .info-block {
    width: calc(50% - 9px);
    overflow: hidden;
  }
  .contacts #map_canvas {
    position: absolute !important;
    bottom: 30px;
    left: 0;
    right: 0;
    height: 320px;
  }
  .contacts #contacts-form {
    height: 500px;
    position: absolute !important;
    bottom: 30px;
    left: 0;
    right: 0;
    margin: 0;
  }
  .delivery-item h3 {
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 7px;
  }
  .delivery-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .delivery-list .delivery-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    padding: 0 15px 0 0;
  }
  .delivery-list .delivery-item:nth-child(even) {
    padding: 0 0 0 15px;
  }
  .free-delivery {
    padding: 19px 37px 25px;
    margin: 0 0 30px;
  }
  .free-delivery h4 {
    font-size: 24px;
    line-height: 29px;
    margin: 0 0 8px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .free-delivery h4 svg {
    height: 40px;
    width: 40px;
  }
  .free-delivery p {
    font-size: 18px;
    line-height: 21px;
  }
  .delivery-info > h3 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 40px;
  }
  .delivery-info .icon {
    margin: 0 0 23px;
  }
  .delivery-info .icon svg {
    width: 80px;
    height: 80px;
  }
  .delivery-info p {
    font-size: 16px;
    line-height: 21px;
    margin: 0 0 23px;
  }
  .delivery-info p strong {
    font-size: 20px;
    line-height: 24px;
  }
  .delivery-info .delivery-item {
    margin: 0 0 23px;
  }
  .delivery-info .delivery-item h3 {
    font-size: 22px;
    line-height: 26px;
    margin: 0 0 10px;
  }
  .delivery-info .delivery-item p {
    font-size: 16px;
    line-height: 20px;
  }
  .delivery-info .delivery-item .visual svg {
    height: 40px;
    width: auto;
  }
  .promo-img {
    height: 504px;
  }
  .promo-img .controls-page .like-star {
    display: none;
  }
  .product-card .btn_like {
    display: block;
  }
  .product-card h3 {
    padding: 0 60px 0 0;
  }
  .product-price-discount .current-price {
    font-size: 40px;
    line-height: 40px;
  }
  .product-price-discount .old-price {
    font-size: 16px;
  }
  .gift-wrap-option {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .gift-wrap-option .gift-wrap-checkbox {
    -webkit-box-flex: 0;
        -ms-flex: 0;
            flex: 0;
    margin: 0 23px 0 0;
    max-width: none;
    display: inline-block;
  }
  .gift-wrap-option .gift-wrap-checkbox span {
    white-space: nowrap;
  }
  .accordion .heading {
    font-size: 22px;
    line-height: 26px;
    margin: 0 0 9px;
  }
  .accordion h5 {
    font-size: 22px;
    line-height: 26px;
    margin: 0 0 8px;
  }
  .reviews-slider {
    margin: 0;
    overflow: visible;
  }
  .reviews-pagination {
    padding-top: 20px;
  }
  .product-gallery {
    gap: 12px;
  }
  .product-gallery a {
    height: 100px;
    width: 78px;
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 78px;
            flex: 0 0 78px;
  }
  .sertificates {
    margin: 0 0 30px;
  }
  .sertificates li {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 143px;
            flex: 0 1 143px;
  }
  .users-review-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 10px) / 2);
            flex: 0 1 calc((100% - 10px) / 2);
    margin: 0 0 30px 0;
    padding: 32px 24px 68px 26px;
    position: relative;
  }
  .users-review-item_footer {
    position: static;
  }
  .users-review-item_footer .info {
    padding: 0;
  }
  .users-review-item_footer .raiting {
    right: auto;
    left: 26px;
    bottom: 18px;
  }
  .profile-container {
    margin: 10px 0 90px;
  }
  .profile-container h1 {
    font-size: 30px;
    line-height: 32px;
    margin: 0 0 75px;
  }
  .profile-container h3 {
    font-family: "Druk Wide Cyr", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    margin: 0 0 20px;
    display: block;
  }
  .profile-container .profile-avatar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 140px;
            flex: 0 0 140px;
    width: 140px;
    height: 140px;
    margin: 0;
  }
  .profile-container .profile-avatar .make-photo {
    height: 25px;
  }
  .profile-container .profile-avatar .make-photo svg {
    width: 14px;
    height: 14px;
  }
  .profile-container .profile-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 25px 0 0;
    max-width: 100%;
  }
  .profile-container .profile-content .profile-menu {
    padding: 0 0 40px 166px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 200px;
  }
  .profile-container .profile-content .profile-menu nav {
    margin: auto -30px 0 -166px;
    position: relative;
  }
  .profile-container .profile-content .profile-menu ul {
    gap: 30px;
    overflow: hidden;
    overflow-x: auto;
    width: 100%;
    font-size: 16px;
    line-height: 18px;
  }
  .profile-container .profile-content .profile-menu ul li {
    white-space: nowrap;
    margin: 0;
  }
  .profile-container .profile-content .profile-menu ul li:last-child {
    margin: 0 0 0 auto;
    position: absolute;
    top: -65px;
    left: 166px;
    font-size: 18px;
  }
  .profile-container .profile-form legend {
    font-size: 20px;
    line-height: 21px;
  }
  .profile-container .profile-form .btn {
    background-color: rgb(230, 104, 78);
    border: 0;
    color: rgb(244, 244, 244);
    font-size: 18px;
    font-weight: 700;
    line-height: 18px;
    height: 60px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 56px;
    border-radius: 12px;
  }
  .profile-container .profile-form label {
    display: block;
    margin: 0 0 12px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
  }
  .profile-container .profile-form .form-group {
    margin: 0 0 50px;
  }
  .profile-container .profile-form .form-row {
    margin: 0 0 20px;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 19px;
  }
  .profile-container .profile-form .form-row.has-info {
    padding-bottom: 22px;
  }
  .profile-container .profile-form .form-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 38px) / 2);
            flex: 0 1 calc((100% - 38px) / 2);
  }
  .profile-container .profile-form .form-radio-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .profile-container .profile-form label.radio {
    font-size: 14px;
    line-height: 17px;
    font-weight: 500;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: rgb(135, 130, 151);
  }
  .profile-container .profile-form label.radio input {
    height: 22px;
    width: 22px;
    margin: 0 11px 0 0;
  }
  .profile-container .profile-form label.radio input::before {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: inline-block;
    height: 22px;
    width: 22px;
    margin: 0 11px 0 0;
    border-radius: 50%;
    border: 1px solid rgb(165, 170, 175);
    content: "";
  }
  .profile-container .profile-form label.radio input:checked::before {
    border: 4px solid rgb(230, 104, 78);
  }
  .profile-container .profile-form label.radio input:checked + span {
    color: #000;
  }
  .profile-container .profile-form .form-footer .btn {
    width: auto;
  }
  .profile-container .sub-menu {
    margin: 0;
    padding: 0;
    margin: 0 0 22px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 30px;
    font-size: 16px;
    line-height: 18px;
    font-weight: 500;
    list-style: none;
  }
  .profile-container .sub-menu li.active a {
    color: rgb(230, 104, 78);
  }
  .profile-container .sub-menu li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .profile-container .sub-menu li a path,
  .profile-container .sub-menu li a svg {
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
  }
  .profile-container .sub-menu li a:hover {
    color: rgb(230, 104, 78);
  }
  .profile-container .sub-menu li a:hover path,
  .profile-container .sub-menu li a:hover svg {
    fill: rgb(230, 104, 78);
  }
  .profile-container .orders-list .item {
    margin: 0 0 13px;
    border: 1px solid rgb(217, 213, 228);
    border-radius: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 21px 31px 19px 27px;
  }
  .profile-container .orders-list .item-visual {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91px;
            flex: 0 0 91px;
    height: 120px;
    margin: 0 31px 0 0;
  }
  .profile-container .orders-list .item-visual a {
    display: block;
    height: 100%;
  }
  .profile-container .orders-list .item-visual img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .profile-container .orders-list .item-name {
    padding-top: 16px;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .profile-container .orders-list .item-name strong {
    display: block;
    font-size: 16px;
    line-height: 18px;
    margin: 0 0 8px;
    font-weight: 600;
  }
  .profile-container .orders-list .item-name em {
    display: block;
    font-style: normal;
    font-size: 18px;
    line-height: 21px;
    margin: 0 0 8px;
    font-weight: 700;
  }
  .profile-container .orders-list .item-name span {
    display: inline-block;
    height: 10px;
    width: 10px;
    text-indent: -9999px;
    overflow: hidden;
    border-radius: 50%;
  }
  .profile-container .orders-list .item-details {
    margin: 0 0 0 auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    position: relative;
  }
  .profile-container .orders-list .item-details .count {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding-bottom: 12px;
    border-bottom: 1px solid rgb(230, 227, 239);
    margin: 0 0 10px;
  }
  .profile-container .orders-list .item-details .count span {
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
    color: rgb(102, 99, 109);
    font-weight: 500;
  }
  .profile-container .orders-list .item-details .count em {
    display: inline-block;
    font-style: normal;
    font-size: 18px;
    line-height: 21px;
    margin: 0 0 0 auto;
    font-weight: 700;
  }
  .profile-container .orders-list .item-details address {
    color: rgb(102, 99, 109);
    font-style: normal;
    font-size: 14px;
    line-height: 16px;
    font-weight: 500;
    margin: 0 0 7px;
  }
  .profile-container .orders-list .item-details .status {
    margin: 0;
    padding: 0;
    list-style: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 12px;
    font-size: 14px;
    line-height: 16px;
  }
  .profile-container .orders-list .item-details .status .success {
    color: rgb(56, 133, 88);
  }
  .profile-container .orders-list .item-details .status .warning {
    color: rgb(230, 104, 78);
  }
  .profile-container .orders-list .item-details .action {
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 14px;
    line-height: 16px;
    padding: 0 0 6px;
    font-weight: 600;
    color: rgb(230, 104, 78);
    border-bottom: 1px solid rgb(243, 211, 205);
  }
  .profile-container .orders-list .item-details .action:hover {
    border-bottom-color: transparent;
  }
  .profile-container .products-list {
    margin: 0;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 5px;
  }
  .profile-container .products-list .product-item {
    margin-bottom: 20px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 10px) / 3);
            flex: 0 1 calc((100% - 10px) / 3);
  }
  .profile-container .files-list {
    margin: 0 0 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 13px;
  }
  .profile-container .files-list .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 13px) / 2);
            flex: 0 1 calc((100% - 13px) / 2);
    border: 1px solid rgb(217, 213, 228);
    border-radius: 12px;
    padding: 20px 29px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .profile-container .files-list .item .icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45px;
            flex: 0 0 45px;
    margin: 0 15px 0 0;
    padding: 2px 0 0;
  }
  .profile-container .files-list .item .info strong {
    display: block;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    margin: 0 0 8px;
  }
  .profile-container .files-list .item .info em {
    font-style: normal;
    font-size: 14px;
    line-height: 14px;
    color: rgb(102, 99, 109);
    font-weight: 500;
  }
  .profile-container .news-list {
    width: 100%;
    margin: 0 0 -70px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
  .profile-container .news-list .news-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 16px) / 2);
            flex: 0 1 calc((100% - 16px) / 2);
    margin: 0 0 20px;
  }
  .basket-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    position: relative;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0;
  }
  .basket-container .basket-sidebar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    margin: 0 0 20px;
  }
  .basket-container .basket-content {
    border-radius: 12px;
    margin: 0;
  }
  .basket-container .basket-content .basket-total ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 50px;
    margin: 0;
  }
  .basket-container .orders-list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid rgb(217, 213, 228);
    border-radius: 12px;
    padding: 26px 32px 30px 16px;
    margin: 0 0 10px;
  }
  .basket-container .orders-list .item:last-child {
    margin-bottom: 0;
  }
  .basket-container .orders-list .item-visual {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    height: 106px;
    margin: 0 13px 0 0;
  }
  .basket-container .orders-list .item-visual a {
    height: 100%;
    display: block;
  }
  .basket-container .orders-list .item-visual img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .basket-container .orders-list .item-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: -5px 0 0;
  }
  .basket-container .orders-list .item-info strong {
    display: block;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    margin: 0 15px 0 0;
    letter-spacing: -0.02em;
  }
  .basket-container .orders-list .item-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 0 auto;
  }
  .basket-container .basket-content .basket-form .radio-list .radio-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 9px) / 2);
            flex: 0 1 calc((100% - 9px) / 2);
  }
  .basket-container .basket-content .basket-form .select-row .btn-select {
    width: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 9px) / 2);
            flex: 0 1 calc((100% - 9px) / 2);
    margin: 0;
  }
  .basket-container .basket-content .basket-form .select-row address {
    padding: 0 0 0 14px;
  }
  .basket-container .basket-total p {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .basket-container .basket-total .result {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .basket-container .basket-total .result .note {
    top: 17px;
    left: 50px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 70%;
            flex: 0 1 70%;
  }
  .order-basket-stick {
    display: none !important;
  }
  #footer .social-list {
    float: left;
  }
  #footer .social-list li {
    margin: 0;
  }
  #footer .copyright {
    clear: left;
    max-width: 300px;
    padding: 0;
  }
  #footer .copyright:before {
    content: none;
  }
  #footer .footer-nav {
    float: right;
    max-width: 40%;
  }
  #footer .discount-form {
    margin: 0 0 30px;
  }
}
@media screen and (min-width: 1025px) {
  h1 {
    font-size: 60px;
    line-height: 63px;
  }
  h2 {
    font-size: 40px;
    line-height: 42px;
    margin: 0 0 40px;
  }
  .logo {
    margin: 0 -65px 0 0;
  }
  .promo {
    height: 941px;
    padding-bottom: 131px;
  }
  .promo h1 {
    margin: 0 0 18px;
  }
  .promo .index-promo-swiper .swiper-pagination {
    bottom: 40px;
  }
  .special-offers {
    padding-top: 80px;
  }
  .special-offers h4 {
    font-size: 36px;
    line-height: 43px;
    margin: 0 0 32px;
  }
  .offers-grid {
    margin: 0 0 85px;
  }
  .offers-grid .offer-item span {
    font-size: 18px;
    line-height: 18px;
  }
  .favorites-basket {
    gap: 30px;
  }
  .content-img {
    position: relative;
    height: 700px;
  }
  .content-img .container {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 0;
    width: 100%;
  }
  .content-img .container .holder-text {
    right: 30px;
  }
  .content-img_title {
    font-size: 50px;
    line-height: 52px;
    margin: 0 0 20px;
  }
  .content-img .holder-text {
    width: auto;
    bottom: auto;
    top: 218px;
  }
  .content-img .btn {
    font-size: 24px;
    max-width: 240px;
  }
  .steps-list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin: 0 0 115px;
  }
  .product-info {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .product-info-holder {
    padding: 0 70px 0 0;
    text-align: left;
    margin: 0 0 100px;
  }
  .product-info-holder h2 {
    text-align: left;
    margin-top: -14px;
  }
  .product-info-holder p {
    text-align: left;
  }
  .product-info-holder .product-description {
    text-align: left;
  }
  .product-info-holder .product-info_header {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .product-info-holder .product-info-buttons {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .popular-products {
    margin: 0 0 100px;
  }
  .marketplaces {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 0 110px;
  }
  .marketplaces h2 {
    margin: -5px 2% 0 0;
  }
  .marketplaces .marketplace-list {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    margin: 0;
    padding: 0;
  }
  .news-list {
    overflow: hidden;
    margin-right: 0;
  }
  .news-list .news-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 33%;
            flex: 0 1 33%;
  }
  .news-list .news-item p {
    margin: 0 0 14px;
  }
  .popular-products .product-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 33%;
            flex: 0 1 33%;
  }
  .popular-swiper {
    position: relative;
  }
  .popular-swiper .btn {
    position: absolute;
    top: 35%;
    background-color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-shadow: 0px 20px 50px 0px rgba(16, 7, 31, 0.2);
            box-shadow: 0px 20px 50px 0px rgba(16, 7, 31, 0.2);
    z-index: 100;
  }
  .popular-swiper .btn-prev {
    left: -30px;
  }
  .popular-swiper .btn-prev svg {
    position: relative;
    left: -2px;
    top: 1px;
  }
  .popular-swiper .btn-next {
    right: -30px;
  }
  .popular-swiper .btn-next svg {
    position: relative;
    left: 2px;
    top: 1px;
  }
  .products-list {
    overflow: visible;
    gap: 0;
    width: 100%;
  }
  .products-list .product-item:last-child {
    margin: 0;
  }
  .products-list .product-item {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
  }
  #header .container {
    max-width: none;
  }
  #main-menu .logo {
    display: none;
  }
  #main-menu .search-form {
    display: none;
  }
  #main-menu .menu-container, #main-menu .modal .modal__container, .modal #main-menu .modal__container {
    width: 500px;
    padding-left: 70px;
    padding-top: 100px;
  }
  #main-menu .close {
    top: 100px;
  }
  .logo-footer {
    height: auto;
    width: 90%;
    margin-top: -12%;
  }
  .discount-form {
    float: right;
    max-width: 30%;
    margin: 0 0 0 50px;
  }
  .social-list {
    float: left;
  }
  .footer-nav {
    float: right;
    max-width: 35%;
  }
  .copyright {
    clear: left;
    padding: 0;
    max-width: 300px;
  }
  .copyright:before {
    display: none;
  }
  .catalog {
    padding: 0 30px;
    margin: 0 auto 40px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1060px) {
  .catalog {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 1025px) {
  .catalog_item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 24.6721%;
            flex: 0 1 24.6721%;
    margin-left: 1px;
  }
  #profile-menu h3,
  #side-sort h3,
  #side-filter h3,
  .modal h3 {
    font-size: 40px;
    line-height: 42px;
    margin: 0 0 56px;
  }
  #profile-menu .menu-container,
  #profile-menu .filter-container,
  #side-sort .menu-container,
  #side-sort .filter-container,
  #side-filter .menu-container,
  #side-filter .filter-container,
  .modal .menu-container,
  .modal .modal__container,
  .modal .filter-container {
    left: auto;
    right: -100%;
    width: 600px;
    padding: 50px 70px;
  }
  #profile-menu .filter-form,
  #side-sort .filter-form,
  #side-filter .filter-form,
  .modal .filter-form {
    max-width: 320px;
  }
  #profile-menu .close,
  #side-sort .close,
  #side-filter .close,
  .modal .close {
    right: 60px;
    top: 60px;
  }
  #profile-menu.active .filter-container,
  #side-sort.active .filter-container,
  #side-filter.active .filter-container,
  .modal.active .filter-container {
    left: auto;
    right: 0;
  }
  .contacts {
    padding-bottom: 80px;
  }
  .contacts .address-list {
    width: 350px;
    margin: 0 95px 0 0;
  }
  .contacts #map_canvas {
    overflow: hidden;
    margin: 0;
    position: relative !important;
    bottom: 30px;
    left: 0;
    right: 0;
    height: 320px;
  }
  .contacts .info-block {
    width: 100%;
  }
  .contacts .info-block .ip-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .contacts .info-block .ip-info li {
    margin: 0 50px 0 0;
  }
  .contacts .info-block .ip-info li:first-child {
    margin: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 445px;
            flex: 0 0 445px;
  }
  .delivery-info-holder {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .delivery-info-holder .delivery-info {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    padding: 0 32px 0 0;
  }
  .delivery-info-holder .delivery-info + .delivery-info {
    padding: 0 0 0 32px;
  }
  .delivery-list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 20px;
    padding-bottom: 10px;
  }
  .delivery-list .delivery-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
    padding: 0 !important;
  }
  .free-delivery {
    margin: 0 0 70px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    padding: 25px 37px 31px 37px;
  }
  .free-delivery h4 {
    margin: 0 25px 0 0;
  }
  .free-delivery h4 svg {
    position: absolute;
    top: 50%;
    right: 29px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .free-delivery p {
    margin-top: 3px;
  }
  .free-delivery p br {
    display: none;
  }
  .product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin: 0 auto 0;
    padding: 0 30px;
  }
  .product .container {
    padding: 0;
    margin: 0;
  }
  .product .sticky {
    position: sticky;
    top: 90px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 420px;
            flex: 0 0 420px;
  }
  .promo-img {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 60%;
            flex: 1 1 60%;
    margin: 0 40px 0 0;
    height: auto;
    padding-top: 0;
  }
  .promo-img .controls-page {
    display: none;
  }
  .promo-img .promo-img-swiper {
    position: relative;
    height: auto;
  }
  .promo-img .swiper-wrapper {
    height: auto;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
  }
  .promo-img .swiper-wrapper .swiper-slide {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    margin: 0 !important;
    padding: 0 2px 5px 0;
  }
  .promo-img .swiper-wrapper .swiper-slide .origin-img {
    right: 2px;
    bottom: 5px;
  }
  .promo-img .swiper-wrapper .swiper-slide:nth-child(even) {
    padding: 0 0 5px 2px;
  }
  .promo-img .swiper-wrapper .swiper-slide:nth-child(even) .origin-img {
    right: 0;
    left: 2px;
  }
  .promo-img .swiper-wrapper .swiper-slide img {
    height: auto;
  }
  .product {
    margin: 0 auto 60px;
  }
  .product .product-gallery {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 -12px 0 0;
  }
  .product .product-gallery a {
    height: 86px;
    width: 66px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66px;
            flex: 0 0 66px;
  }
  .product .product-card .btn_like {
    display: none;
  }
  .product .product-card h3 {
    font-size: 36px;
    line-height: 38px;
    margin: 0 0 20px;
    padding: 0;
  }
  .product .product-card .product-price-discount {
    position: relative;
  }
  .product .product-card .product-price-discount .btn_like {
    display: block !important;
    top: 0;
  }
  .product .gift-wrap-option {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .reviews-slider .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .reviews-slider .review-item {
    padding: 30px;
  }
  .sertificates {
    margin: 0 0 30px;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .sertificates li {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 20%;
            flex: 0 1 20%;
  }
  .container.width-auto {
    max-width: none;
  }
  .accordion {
    margin-bottom: 31px;
  }
  .accordion .item:last-child {
    margin: 0;
  }
  .popup-gallery {
    height: auto;
    position: static;
  }
  .popup-gallery .popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30vw;
    z-index: 20;
    height: 80vh;
    min-width: 400px;
    max-height: 811px;
    -webkit-transform: translateY(-50%) translateX(-50%);
        -ms-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
  .popup-gallery .btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .popup-gallery .btn-prev {
    left: -40px;
  }
  .popup-gallery .btn-next {
    right: -40px;
  }
  .contacts #contacts-form {
    margin: 0 0 83px;
    position: relative !important;
    bottom: auto;
    left: auto;
    right: auto;
  }
  .contacts #contacts-form legend {
    font-size: 22px;
    line-height: 26px;
    margin: 0 0 25px;
    font-weight: 700;
  }
  .contacts #contacts-form .form-row {
    gap: 36px;
    margin: 0 0 19px;
  }
  .contacts #contacts-form .form-row .form-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 36px) / 2);
            flex: 0 1 calc((100% - 36px) / 2);
  }
  .contacts #contacts-form .form-row .form-col.large {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
  .contacts #contacts-form .form-row .form-col span {
    font-size: 12px;
    line-height: 14px;
    display: block;
    padding: 9px 0 0;
  }
  .contacts #contacts-form .form-row label {
    display: block;
    font-weight: 700;
    font-size: 13px;
    line-height: 14px;
    margin: 0 0 9px;
  }
  .contacts #contacts-form .form-row select,
  .contacts #contacts-form .form-row input[type=text],
  .contacts #contacts-form .form-row input[type=email] {
    height: 50px;
    line-height: 48px;
    font-weight: 600;
    font-size: 14px;
    padding: 0 26px;
  }
  .contacts #contacts-form .form-row textarea {
    height: 106px;
    padding: 18px 26px;
  }
  .contacts #contacts-form .form-row .select-holder {
    position: relative;
  }
  .contacts #contacts-form .form-row .select-holder svg {
    right: 23px;
  }
  .contacts #contacts-form .foot {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .contacts #contacts-form .foot .btn {
    background: rgb(230, 104, 78);
    color: rgb(244, 244, 244);
    height: 60px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 24px 0 0;
    font-size: 18px;
    line-height: 21px;
    padding: 0 103px;
    border-radius: 12px;
    border: 0;
  }
  .contacts #contacts-form .foot span {
    color: rgb(98, 95, 108);
    font-size: 12px;
    line-height: 14px;
    font-weight: 500;
    display: block;
  }
  .users-review-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 10px) / 3);
            flex: 0 1 calc((100% - 10px) / 3);
    margin: 0 0 55px 0;
    padding: 32px;
  }
  .users-review-item_footer {
    position: relative;
  }
  .users-review-item_footer .info {
    padding: 0 80px 0 0;
  }
  .users-review-item_footer .raiting {
    right: 0;
    left: auto;
    bottom: 0;
  }
  .profile-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 10px 0 90px;
  }
  .profile-container h1 {
    font-size: 40px;
    line-height: 42px;
    margin: 0 0 32px;
  }
  .profile-container h3 {
    font-family: "Druk Wide Cyr", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 25px;
    margin: 0 0 20px;
    display: block;
  }
  .profile-container .profile-avatar {
    position: relative;
    top: 0;
    left: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    width: 200px;
    height: 200px;
    margin: 0 36px 0 0;
  }
  .profile-container .profile-avatar .make-photo {
    height: 45px;
  }
  .profile-container .profile-avatar .make-photo a svg {
    width: 22px;
    height: 20px;
  }
  .profile-container .profile-content {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 25px 0 0;
  }
  .profile-container .profile-content .profile-menu {
    display: block;
    padding: 0 0 40px;
  }
  .profile-container .profile-content .profile-menu nav {
    margin: 0;
  }
  .profile-container .profile-content .profile-menu ul {
    gap: 30px;
    font-size: 18px;
    line-height: 20px;
  }
  .profile-container .profile-content .profile-menu ul li {
    margin: 0;
  }
  .profile-container .profile-content .profile-menu ul li a span {
    margin-top: 2px;
  }
  .profile-container .profile-content .profile-menu ul li:last-child {
    position: static;
    margin: 0 0 0 auto;
  }
  .profile-container .profile-form legend {
    font-size: 24px;
    line-height: 25px;
    margin: 0 0 20px;
  }
  .profile-container .profile-form .form-col {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 38px) / 3);
            flex: 0 1 calc((100% - 38px) / 3);
  }
  .profile-container .profile-form label {
    margin: 0 0 12px;
  }
  .profile-container .profile-form .form-footer .btn {
    width: auto;
  }
  .profile-container .files-list {
    margin: 0 0 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 13px;
  }
  .profile-container .files-list .item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 13px) / 2);
            flex: 0 1 calc((100% - 13px) / 2);
    border: 1px solid rgb(217, 213, 228);
    border-radius: 12px;
    padding: 20px 29px 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .profile-container .files-list .item .icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 45px;
            flex: 0 0 45px;
    margin: 0 15px 0 0;
    padding: 2px 0 0;
  }
  .profile-container .files-list .item .info strong {
    display: block;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    margin: 0 0 8px;
  }
  .profile-container .files-list .item .info em {
    font-style: normal;
    font-size: 14px;
    line-height: 14px;
    color: rgb(102, 99, 109);
    font-weight: 500;
  }
  .profile-container .news-list {
    width: 100%;
    margin: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
  .profile-container .news-list .news-item {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc((100% - 16px) / 3);
            flex: 0 1 calc((100% - 16px) / 3);
    margin: 0 0 20px;
  }
  .profile-avatar {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    margin: 0 36px 0 0;
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    background: rgb(253, 241, 239);
  }
  .profile-avatar > svg {
    position: absolute;
    left: 50%;
    top: 68px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .profile-avatar .make-photo {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 45px;
    background: rgba(0, 0, 0, 0.2);
  }
  .basket-container {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 0 55px;
  }
  .basket-container .basket-sidebar {
    position: sticky;
    top: 90px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 340px;
            flex: 0 0 340px;
    margin: 0 40px 0 0;
  }
  .basket-container .basket-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: auto;
    margin: 0;
    min-width: auto;
  }
  .basket-container .basket-content .basket-total {
    position: sticky;
    top: 90px;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 275px;
            flex: 0 1 275px;
  }
  .basket-container .basket-content .basket-total ul {
    display: block;
    margin: 0 0 19px;
  }
  .basket-container .basket-content .basket-total .note {
    top: auto;
    left: auto;
    -webkit-box-flex: 1;
        -ms-flex: auto;
            flex: auto;
  }
  .basket-container .basket-content .basket-form {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: auto;
    border-bottom: 0;
    border-right: 1px solid rgb(223, 226, 230);
    padding: 0 40px 0 0;
    margin: 0 40px 0 0;
  }
  .basket-container .basket-content .basket-form label {
    margin: 0 0 12px;
  }
  .basket-container .orders-list .item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border: 1px solid rgb(217, 213, 228);
    border-radius: 12px;
    padding: 26px 16px 28px;
    margin: 0 0 20px;
  }
  .basket-container .orders-list .item:last-child {
    margin-bottom: 0;
  }
  .basket-container .orders-list .item-visual {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
    height: 106px;
    margin: 0 13px 0 0;
  }
  .basket-container .orders-list .item-visual a {
    height: 100%;
    display: block;
  }
  .basket-container .orders-list .item-visual img {
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .basket-container .orders-list .item-info {
    display: block;
    margin: -5px 0 0;
  }
  .basket-container .orders-list .item-info strong {
    display: block;
    font-size: 16px;
    line-height: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    letter-spacing: -0.02em;
  }
  .basket-container .orders-list .item-info em {
    font-style: normal;
    display: block;
    font-size: 18px;
    line-height: 21px;
    margin: 0 0 20px;
    font-weight: 700;
  }
  .basket-container .orders-list .item-footer {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .basket-container .orders-list .item-footer .item-counter {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 20px 0 0;
  }
  .basket-container .orders-list .item-footer .item-counter span {
    font-size: 18px;
    line-height: 18px;
    text-align: center;
    display: block;
    min-width: 44px;
  }
  .basket-container .orders-list .item-footer strong {
    display: inline-block;
    font-size: 18px;
    line-height: 21px;
    margin: 0;
    font-weight: 700;
    color: rgb(230, 104, 78);
  }
  .basket-container .orders-list .item-footer a.delete {
    margin: 0 0 0 auto;
  }
}
@media (max-width: 760px) {
  .promo .swiper-pagination {
    display: none;
  }
}
.product-view-all {
  margin-bottom: 85px;
}
@media (min-width: 1025px) {
  .product-view-all {
    margin-top: -40px;
  }
}
.product-view-all__btn {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

:root {
  --color-border: #878297;
  --color-border2: #d9d5e4;
  --color-btn-color: #9da3a9;
  --color-input-border: #d7d5db;
  --color-input-desc: #625f6c;
  --color-btn-submit: #e6684e;
  --color-light-text: #f4f4f4;
  --color-dark-text: #2a2020;
  --color-bg: #f5d8da;
}

.btn-lite {
  border: 1px solid var(--color-border);
  background-color: transparent;
  border-radius: 5px;
  padding: 5px 18px;
  color: var(--color-btn-color);
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  text-align: center;
  height: 30px;
}

.btn--submit {
  width: 100%;
  padding: 10px;
  border-radius: 12px;
  color: var(--color-light-text);
  text-align: center;
  background-color: var(--color-btn-submit);
  border: 0;
  height: 60px;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.01em;
}

@media screen and (min-width: 768px) {
  .modal .modal__container_big {
    width: 100%;
    max-width: 790px;
  }
}
@media screen and (max-width: 767px) {
  .modal .modal__container_big {
    padding-top: 68px;
  }
  .modal .modal__container_big .profile-content h3 {
    font-size: 24px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .modal h3 {
    margin: 0 0 31px;
  }
}
.modal h3 span {
  color: var(--color-btn-submit);
}
.modal__authorization {
  max-width: 401px;
}
.modal__new-user {
  margin-bottom: 55px;
}
@media screen and (max-width: 767px) {
  .modal__new-user {
    margin-bottom: 38px;
  }
}
@media screen and (max-width: 767px) {
  .modal .modal__title_big {
    line-height: 120%;
    margin-bottom: 19px;
  }
}
@media screen and (min-width: 768px) {
  .modal .modal__title_big {
    width: 125%;
  }
}
.modal__text {
  font-weight: 500;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.01em;
  margin-bottom: 19px;
}
@media screen and (max-width: 767px) {
  .modal__text {
    font-size: 16px;
    margin-bottom: 49px;
  }
}
@media screen and (min-width: 768px) {
  .modal__text_big {
    width: 125%;
  }
}
.modal__cart {
  margin-top: 50px;
}
.modal__btn {
  margin-top: 11px;
  margin-bottom: 14px;
  max-width: 401px;
}
.modal__warning {
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--color-input-desc);
  max-width: 340px;
  margin: 0 auto;
}
.modal__img {
  width: 117px;
  height: 117px;
  margin-bottom: 18px;
  margin-left: 23px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .modal__img {
    width: 58px;
    height: 58px;
  }
}
.modal__img_small {
  width: 99px;
  height: 95px;
  margin-bottom: 23px;
}
.modal__img_cart {
  width: 60px;
  height: 58px;
}
.modal__img svg {
  width: 100%;
  height: 100%;
}
.modal__cart-quantity {
  position: absolute;
  top: -15px;
  right: -15px;
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: 0.01em;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--color-dark-tex);
  background: var(--color-bg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.modal__btn-next {
  font-weight: 600;
  font-size: 15px;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 401px;
}

.new-user {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px 22px;
}
.new-user__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 767px) {
  .new-user__title {
    font-size: 16px;
  }
}
.input-block {
  margin-bottom: 19px;
  position: relative;
}
.input-block:last-child {
  margin-bottom: 0;
}
.input-block__title {
  font-weight: 700;
  font-size: 13px;
  line-height: 110%;
  letter-spacing: -0.02em;
  margin-bottom: 9px;
}
.input-block__input {
  border: 1px solid var(--color-input-border);
  width: 100%;
  border-radius: 8px;
  padding: 0 26px;
  height: 50px;
  margin-bottom: 9px;
  font-weight: 600;
  font-size: 14px;
  line-height: 110%;
  letter-spacing: -0.02em;
  color: #000;
}
.input-block__input::-webkit-input-placeholder {
  color: var(--color-border);
}
.input-block__input::-moz-placeholder {
  color: var(--color-border);
}
.input-block__input:-ms-input-placeholder {
  color: var(--color-border);
}
.input-block__input::-ms-input-placeholder {
  color: var(--color-border);
}
.input-block__input::placeholder {
  color: var(--color-border);
}
.input-block__input[type=password]::-webkit-input-placeholder {
  -webkit-transform: translateY(3px);
          transform: translateY(3px);
}
.input-block__input[type=password]::-moz-placeholder {
  transform: translateY(3px);
}
.input-block__input[type=password]:-ms-input-placeholder {
  -ms-transform: translateY(3px);
      transform: translateY(3px);
}
.input-block__input[type=password]::-ms-input-placeholder {
  -ms-transform: translateY(3px);
      transform: translateY(3px);
}
.input-block__input[type=password]::placeholder {
  -webkit-transform: translateY(3px);
      -ms-transform: translateY(3px);
          transform: translateY(3px);
}
.input-block__input_error {
  border-color: var(--color-btn-submit);
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
}
.input-block__desc, .input-block__desc a {
  font-family: Tilda Sans;
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: var(--color-input-desc);
}
.input-block__desc a {
  text-decoration: underline;
}
.input-block__error {
  position: absolute;
  left: 0;
  bottom: -8px;
  font-weight: 500;
  font-size: 12px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: var(--color-btn-submit);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.modal-cart {
  border: 1px solid var(--color-border2);
  border-radius: 12px;
  padding: 22px 30px 28px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 16px;
  gap: 13px;
}
@media screen and (max-width: 767px) {
  .modal-cart {
    padding: 18px 16px;
  }
}
.modal-cart__img {
  width: 80px;
  height: 106px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 80px;
          flex: 0 0 80px;
}
@media screen and (max-width: 767px) {
  .modal-cart__img {
    width: 63px;
    height: 84px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 63px;
            flex: 0 0 63px;
  }
}
.modal-cart__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.modal-cart__content {
  width: 100%;
}
.modal-cart__title {
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.modal-cart__one-piece {
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
  margin-bottom: 19px;
}
.modal-cart__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .modal-cart__footer {
    gap: 12px;
  }
}
.modal-cart__total-cost {
  font-family: Tilda Sans;
  font-weight: 700;
  font-size: 18px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--color-btn-submit);
}
.modal-cart__del {
  margin-left: auto;
  cursor: pointer;
}
.modal-cart__del svg {
  width: 12px;
  height: 12px;
}

.product-quantity {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 17px;
}
.product-quantity__btn {
  background: none;
  border: none;
  padding: 0;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 24px;
          flex: 0 0 24px;
  height: 24px;
}
.product-quantity__btn svg {
  width: 24px;
  height: 24px;
}
.product-quantity__input {
  font-family: "Tilda Sans";
  font-weight: 600;
  font-size: 16px;
  line-height: 110%;
  letter-spacing: -0.02em;
  text-align: center;
}

.btn-white {
  border-radius: 10px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 22px;
  font-family: "Tilda Sans";
  font-weight: 700;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: -0.01em;
  color: #000;
  height: 40px;
}
.btn-white span {
  position: relative;
  top: -2px;
}

.hooks {
  background-color: var(--color-btn-submit);
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1500;
  width: 100%;
  padding: 16px 40px;
}
@media screen and (max-width: 767px) {
  .hooks {
    padding: 16px 15px;
  }
}
.hooks__container {
  position: relative;
  max-width: 1314px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 22px;
  margin: 0 auto;
  padding-right: 4%;
}
@media screen and (max-width: 767px) {
  .hooks__container {
    gap: 16px;
  }
}
.hooks__text {
  font-family: "Tilda Sans";
  font-weight: 600;
  font-size: 20px;
  line-height: 120%;
  letter-spacing: -0.01em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .hooks__text {
    font-size: 16px;
    text-align: left;
  }
}
.hooks__close {
  position: absolute;
  top: 32%;
  right: 0;
  cursor: pointer;
}
@media (max-width: 575px) {
  .hooks__close {
    display: none;
  }
}
.hooks__close svg {
  width: 12px;
  height: 12px;
}/*# sourceMappingURL=all.css.map */