.carousel {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box
}

.container.shop-itm {
  display: inline;
}

.container.shop-car {
  display: block;
}

li > span {
  font-size: 14px;
  line-height: 1.6;
  font-family: "TT Lakes Medium";
  color: var(--gray-main-text);
}

.carousel *,.carousel :after,.carousel :before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit
}

.carousel.is-draggable {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab
}

.carousel.is-dragging {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing
}

.carousel__viewport {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  max-height: 100%
}

.carousel__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.carousel__slide {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: var(--carousel-slide-width,60%);
  max-width: 100%;
  padding: 1rem;
  position: relative;
  overflow-x: hidden;
  overflow-y: auto;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain
}

.has-dots {
  margin-bottom: calc(.5rem + 22px)
}

.carousel__dots {
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: calc(100% + .5rem);
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.carousel__dots .carousel__dot {
  margin: 0;
  padding: 0;
  display: block;
  position: relative;
  width: 22px;
  height: 22px;
  cursor: pointer
}

.carousel__dots .carousel__dot:after {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  background-color: currentColor;
  opacity: .25;
  -webkit-transition: opacity .15s ease-in-out;
  -o-transition: opacity .15s ease-in-out;
  transition: opacity .15s ease-in-out
}

.carousel__dots .carousel__dot.is-selected:after {
  opacity: 1
}

.carousel__button {
  width: var(--carousel-button-width,48px);
  height: var(--carousel-button-height,48px);
  padding: 0;
  border: 0;
  display: -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;
  pointer-events: all;
  cursor: pointer;
  color: var(--carousel-button-color,currentColor);
  background: var(--carousel-button-bg,transparent);
  border-radius: var(--carousel-button-border-radius,50%);
  -webkit-box-shadow: var(--carousel-button-shadow,none);
  box-shadow: var(--carousel-button-shadow,none);
  -webkit-transition: opacity .15s ease;
  -o-transition: opacity .15s ease;
  transition: opacity .15s ease
}

.carousel__button.is-next,.carousel__button.is-prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%)
}

.carousel__button.is-prev {
  left: 10px
}

.carousel__button.is-next {
  right: 10px
}

.carousel__button[disabled] {
  cursor: default;
  opacity: .3
}

.carousel__button svg {
  width: var(--carousel-button-svg-width,50%);
  height: var(--carousel-button-svg-height,50%);
  fill: none;
  stroke: currentColor;
  stroke-width: var(--carousel-button-svg-stroke-width,1.5);
  stroke-linejoin: bevel;
  stroke-linecap: round;
  -webkit-filter: var(--carousel-button-svg-filter, none);
  filter: var(--carousel-button-svg-filter, none);
  pointer-events: none
}

html.with-fancybox {
  scroll-behavior: auto
}

body.compensate-for-scrollbar {
  overflow: hidden!important;
  -ms-touch-action: none;
  touch-action: none
}

.fancybox__container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  direction: ltr;
  margin: 0;
  padding: env(safe-area-inset-top,0) env(safe-area-inset-right,0) env(safe-area-inset-bottom,0) env(safe-area-inset-left,0);
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  color: var(--fancybox-color,#fff);
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  z-index: 1050;
  outline: 0;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  --carousel-button-width: 48px;
  --carousel-button-height: 48px;
  --carousel-button-svg-width: 24px;
  --carousel-button-svg-height: 24px;
  --carousel-button-svg-stroke-width: 2.5;
  --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4))
}

.fancybox__container *,.fancybox__container ::after,.fancybox__container ::before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit
}

.fancybox__container :focus {
  outline: 0
}

body:not(.is-using-mouse) .fancybox__container :focus {
  -webkit-box-shadow: 0 0 0 1px #fff,0 0 0 2px var(--fancybox-accent-color,rgba(1,210,232,.94));
  box-shadow: 0 0 0 1px #fff,0 0 0 2px var(--fancybox-accent-color,rgba(1,210,232,.94))
}

@media all and (min-width: 1024px) {
  .fancybox__container {
    --carousel-button-width:48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 27px;
    --carousel-button-svg-height: 27px
  }
}

.fancybox__backdrop {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  background: var(--fancybox-bg,rgba(24,24,27,.92))
}

.fancybox__carousel {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  z-index: 10
}

.fancybox__carousel.has-dots {
  margin-bottom: calc(.5rem + 22px)
}

.fancybox__viewport {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: visible;
  cursor: default
}

.fancybox__track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%
}

.fancybox__slide {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 48px 8px 8px 8px;
  position: relative;
  -ms-scroll-chaining: none;
  overscroll-behavior: contain;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  outline: 0;
  overflow: auto;
  --carousel-button-width: 36px;
  --carousel-button-height: 36px;
  --carousel-button-svg-width: 22px;
  --carousel-button-svg-height: 22px
}

.fancybox__slide::after,.fancybox__slide::before {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 0px;
  flex: 0 0 0;
  margin: auto
}

@media all and (min-width: 1024px) {
  .fancybox__slide {
    padding:64px 100px
  }
}

.fancybox__content {
  margin: 0 env(safe-area-inset-right,0) 0 env(safe-area-inset-left,0);
  padding: 36px;
  color: var(--fancybox-content-color,#374151);
  background: var(--fancybox-content-bg,#fff);
  position: relative;
  -ms-flex-item-align: center;
  -ms-grid-row-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;
  z-index: 20
}

.fancybox__content :focus:not(.carousel__button.is-close) {
  outline: thin dotted;
  -webkit-box-shadow: none;
  box-shadow: none
}

.fancybox__caption {
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  align-self: center;
  max-width: 100%;
  margin: 0;
  padding: 1rem 0 0 0;
  line-height: 1.375;
  color: var(--fancybox-color,currentColor);
  visibility: visible;
  cursor: auto;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  overflow-wrap: anywhere
}

.is-loading .fancybox__caption {
  visibility: hidden
}

.fancybox__container>.carousel__dots {
  top: 100%;
  color: var(--fancybox-color,#fff)
}

.fancybox__nav .carousel__button {
  z-index: 40
}

.fancybox__nav .carousel__button.is-next {
  right: 8px
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-next {
    right:40px
  }
}

.fancybox__nav .carousel__button.is-prev {
  left: 8px
}

@media all and (min-width: 1024px) {
  .fancybox__nav .carousel__button.is-prev {
    left:40px
  }
}

.carousel__button.is-close {
  position: absolute;
  top: 8px;
  right: 8px;
  top: calc(env(safe-area-inset-top,0px) + 8px);
  right: calc(env(safe-area-inset-right,0px) + 8px);
  z-index: 40
}

@media all and (min-width: 1024px) {
  .carousel__button.is-close {
    right:40px
  }
}

.fancybox__content>.carousel__button.is-close {
  position: absolute;
  top: -40px;
  right: 0;
  color: var(--fancybox-color,#fff)
}

.fancybox__no-click,.fancybox__no-click button {
  pointer-events: none
}

.fancybox__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width: 50px;
  height: 50px;
  color: var(--fancybox-color,currentColor)
}

.fancybox__slide .fancybox__spinner {
  cursor: pointer;
  z-index: 1053
}

.fancybox__spinner svg {
  -webkit-animation: fancybox-rotate 2s linear infinite;
  animation: fancybox-rotate 2s linear infinite;
  -webkit-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 100%
}

.fancybox__spinner svg circle {
  fill: none;
  stroke-width: 2.75;
  stroke-miterlimit: 10;
  stroke-dasharray: 1,200;
  stroke-dashoffset: 0;
  -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
  animation: fancybox-dash 1.5s ease-in-out infinite;
  stroke-linecap: round;
  stroke: currentColor
}

@-webkit-keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@keyframes fancybox-rotate {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg)
  }
}

@-webkit-keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0
  }

  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px
  }

  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px
  }
}

@keyframes fancybox-dash {
  0% {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0
  }

  50% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -35px
  }

  100% {
    stroke-dasharray: 89,200;
    stroke-dashoffset: -124px
  }
}

.carousel__button.is-close,.carousel__dots,.fancybox__backdrop,.fancybox__caption,.fancybox__nav {
  opacity: var(--fancybox-opacity,1)
}

.fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close,.fancybox__container.is-animated[aria-hidden=false] .carousel__dots,.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop,.fancybox__container.is-animated[aria-hidden=false] .fancybox__caption,.fancybox__container.is-animated[aria-hidden=false] .fancybox__nav {
  -webkit-animation: .15s ease backwards fancybox-fadeIn;
  animation: .15s ease backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .carousel__button.is-close,.fancybox__container.is-animated.is-closing .carousel__dots,.fancybox__container.is-animated.is-closing .fancybox__backdrop,.fancybox__container.is-animated.is-closing .fancybox__caption,.fancybox__container.is-animated.is-closing .fancybox__nav {
  -webkit-animation: .15s ease both fancybox-fadeOut;
  animation: .15s ease both fancybox-fadeOut
}

.fancybox-fadeIn {
  -webkit-animation: .15s ease both fancybox-fadeIn;
  animation: .15s ease both fancybox-fadeIn
}

.fancybox-fadeOut {
  -webkit-animation: .1s ease both fancybox-fadeOut;
  animation: .1s ease both fancybox-fadeOut
}

.fancybox-zoomInUp {
  -webkit-animation: .2s ease both fancybox-zoomInUp;
  animation: .2s ease both fancybox-zoomInUp
}

.fancybox-zoomOutDown {
  -webkit-animation: .15s ease both fancybox-zoomOutDown;
  animation: .15s ease both fancybox-zoomOutDown
}

.fancybox-throwOutUp {
  -webkit-animation: .15s ease both fancybox-throwOutUp;
  animation: .15s ease both fancybox-throwOutUp
}

.fancybox-throwOutDown {
  -webkit-animation: .15s ease both fancybox-throwOutDown;
  animation: .15s ease both fancybox-throwOutDown
}

@-webkit-keyframes fancybox-fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@keyframes fancybox-fadeIn {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@-webkit-keyframes fancybox-fadeOut {
  to {
    opacity: 0
  }
}

@keyframes fancybox-fadeOut {
  to {
    opacity: 0
  }
}

@-webkit-keyframes fancybox-zoomInUp {
  from {
    -webkit-transform: scale(.97) translate3d(0,16px,0);
    transform: scale(.97) 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 fancybox-zoomInUp {
  from {
    -webkit-transform: scale(.97) translate3d(0,16px,0);
    transform: scale(.97) 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 fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(.97) translate3d(0,16px,0);
    transform: scale(.97) translate3d(0,16px,0);
    opacity: 0
  }
}

@keyframes fancybox-zoomOutDown {
  to {
    -webkit-transform: scale(.97) translate3d(0,16px,0);
    transform: scale(.97) translate3d(0,16px,0);
    opacity: 0
  }
}

@-webkit-keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0,-30%,0);
    transform: translate3d(0,-30%,0);
    opacity: 0
  }
}

@keyframes fancybox-throwOutUp {
  to {
    -webkit-transform: translate3d(0,-30%,0);
    transform: translate3d(0,-30%,0);
    opacity: 0
  }
}

@-webkit-keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0,30%,0);
    transform: translate3d(0,30%,0);
    opacity: 0
  }
}

@keyframes fancybox-throwOutDown {
  to {
    -webkit-transform: translate3d(0,30%,0);
    transform: translate3d(0,30%,0);
    opacity: 0
  }
}

.fancybox__carousel .carousel__slide {
  scrollbar-width: thin;
  scrollbar-color: #ccc rgba(255,255,255,.1)
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
  width: 8px;
  height: 8px
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
  background-color: rgba(255,255,255,.1)
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 4px rgba(0,0,0,.2);
  box-shadow: inset 0 0 4px rgba(0,0,0,.2)
}

.fancybox__carousel.is-draggable .fancybox__slide,.fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab
}

.fancybox__carousel.is-dragging .fancybox__slide,.fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing
}

.fancybox__carousel .fancybox__slide .fancybox__content {
  cursor: auto
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
  cursor: -webkit-zoom-in;
  cursor: zoom-in
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
  cursor: -webkit-zoom-out;
  cursor: zoom-out
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
  cursor: move;
  cursor: -webkit-grab;
  cursor: grab
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: grabbing
}

.fancybox__image {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: none;
  -o-transition: none;
  transition: none
}

.has-image .fancybox__content {
  padding: 0;
  background: rgba(0,0,0,0);
  min-height: 1px
}

.is-closing .has-image .fancybox__content {
  overflow: visible
}

.has-image[data-image-fit=contain] {
  overflow: visible;
  -ms-touch-action: none;
  touch-action: none
}

.has-image[data-image-fit=contain] .fancybox__content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.has-image[data-image-fit=contain] .fancybox__image {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain
}

.has-image[data-image-fit=contain-w] {
  overflow-x: hidden;
  overflow-y: auto
}

.has-image[data-image-fit=contain-w] .fancybox__content {
  min-height: auto
}

.has-image[data-image-fit=contain-w] .fancybox__image {
  max-width: 100%;
  height: auto
}

.has-image[data-image-fit=cover] {
  overflow: visible;
  -ms-touch-action: none;
  touch-action: none
}

.has-image[data-image-fit=cover] .fancybox__content {
  width: 100%;
  height: 100%
}

.has-image[data-image-fit=cover] .fancybox__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
  max-width: 100%;
  -ms-flex-negative: 1;
  flex-shrink: 1;
  min-height: 1px;
  overflow: visible
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content,.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
  width: 100%;
  height: 80%
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
  width: 960px;
  height: 540px;
  max-width: 100%;
  max-height: 100%
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,.fancybox__carousel .fancybox__slide.has-map .fancybox__content,.fancybox__carousel .fancybox__slide.has-pdf .fancybox__content,.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
  padding: 0;
  background: rgba(24,24,27,.9);
  color: #fff
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
  background: #e5e3df
}

.fancybox__html5video,.fancybox__iframe {
  border: 0;
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0,0,0,0)
}

.fancybox-placeholder {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0
}

.fancybox__thumbs {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  padding: 0 3px;
  opacity: var(--fancybox-opacity,1)
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
  -webkit-animation: .15s ease-in backwards fancybox-fadeIn;
  animation: .15s ease-in backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
  opacity: 0
}

.fancybox__thumbs .carousel__slide {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: var(--fancybox-thumbs-width,96px);
  margin: 0;
  padding: 8px 3px;
  -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;
  overflow: visible;
  cursor: pointer
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-width: 5px;
  border-style: solid;
  border-color: var(--fancybox-accent-color,rgba(34,213,233,.96));
  opacity: 0;
  -webkit-transition: opacity .15s ease;
  -o-transition: opacity .15s ease;
  transition: opacity .15s ease;
  border-radius: var(--fancybox-thumbs-border-radius,4px)
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
  opacity: .92
}

.fancybox__thumbs .carousel__slide>* {
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.fancybox__thumb {
  position: relative;
  width: 100%;
  padding-top: calc(100% / (var(--fancybox-thumbs-ratio,1.5)));
  background-size: cover;
  background-position: center center;
  background-color: rgba(255,255,255,.1);
  background-repeat: no-repeat;
  border-radius: var(--fancybox-thumbs-border-radius,4px)
}

.fancybox__toolbar {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  background: -webkit-gradient(linear,left bottom,left top,from(hsla(0deg,0%,0%,0)),color-stop(8.1%,hsla(0deg,0%,0%,.006)),color-stop(15.5%,hsla(0deg,0%,0%,.021)),color-stop(22.5%,hsla(0deg,0%,0%,.046)),color-stop(29%,hsla(0deg,0%,0%,.077)),color-stop(35.3%,hsla(0deg,0%,0%,.114)),color-stop(41.2%,hsla(0deg,0%,0%,.155)),color-stop(47.1%,hsla(0deg,0%,0%,.198)),color-stop(52.9%,hsla(0deg,0%,0%,.242)),color-stop(58.8%,hsla(0deg,0%,0%,.285)),color-stop(64.7%,hsla(0deg,0%,0%,.326)),color-stop(71%,hsla(0deg,0%,0%,.363)),color-stop(77.5%,hsla(0deg,0%,0%,.394)),color-stop(84.5%,hsla(0deg,0%,0%,.419)),color-stop(91.9%,hsla(0deg,0%,0%,.434)),to(hsla(0deg,0%,0%,.44)));
  background: -o-linear-gradient(bottom,hsla(0deg,0%,0%,0) 0,hsla(0deg,0%,0%,.006) 8.1%,hsla(0deg,0%,0%,.021) 15.5%,hsla(0deg,0%,0%,.046) 22.5%,hsla(0deg,0%,0%,.077) 29%,hsla(0deg,0%,0%,.114) 35.3%,hsla(0deg,0%,0%,.155) 41.2%,hsla(0deg,0%,0%,.198) 47.1%,hsla(0deg,0%,0%,.242) 52.9%,hsla(0deg,0%,0%,.285) 58.8%,hsla(0deg,0%,0%,.326) 64.7%,hsla(0deg,0%,0%,.363) 71%,hsla(0deg,0%,0%,.394) 77.5%,hsla(0deg,0%,0%,.419) 84.5%,hsla(0deg,0%,0%,.434) 91.9%,hsla(0deg,0%,0%,.44) 100%);
  background: linear-gradient(to top,hsla(0deg,0%,0%,0) 0,hsla(0deg,0%,0%,.006) 8.1%,hsla(0deg,0%,0%,.021) 15.5%,hsla(0deg,0%,0%,.046) 22.5%,hsla(0deg,0%,0%,.077) 29%,hsla(0deg,0%,0%,.114) 35.3%,hsla(0deg,0%,0%,.155) 41.2%,hsla(0deg,0%,0%,.198) 47.1%,hsla(0deg,0%,0%,.242) 52.9%,hsla(0deg,0%,0%,.285) 58.8%,hsla(0deg,0%,0%,.326) 64.7%,hsla(0deg,0%,0%,.363) 71%,hsla(0deg,0%,0%,.394) 77.5%,hsla(0deg,0%,0%,.419) 84.5%,hsla(0deg,0%,0%,.434) 91.9%,hsla(0deg,0%,0%,.44) 100%);
  padding: 0;
  -ms-touch-action: none;
  touch-action: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  --carousel-button-svg-width: 20px;
  --carousel-button-svg-height: 20px;
  opacity: var(--fancybox-opacity,1);
  text-shadow: var(--fancybox-toolbar-text-shadow,1px 1px 1px rgba(0,0,0,.4))
}

@media all and (min-width: 1024px) {
  .fancybox__toolbar {
    padding:8px
  }
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
  -webkit-animation: .15s ease-in backwards fancybox-fadeIn;
  animation: .15s ease-in backwards fancybox-fadeIn
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
  opacity: 0
}

.fancybox__toolbar__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.fancybox__toolbar__items--left {
  margin-right: auto
}

.fancybox__toolbar__items--center {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%)
}

.fancybox__toolbar__items--right {
  margin-left: auto
}

@media (max-width: 640px) {
  .fancybox__toolbar__items--center:not(:last-child) {
    display:none
  }
}

.fancybox__counter {
  min-width: 72px;
  padding: 0 10px;
  line-height: var(--carousel-button-height,48px);
  text-align: center;
  font-size: 17px;
  font-variant-numeric: tabular-nums;
  -webkit-font-smoothing: subpixel-antialiased
}

.fancybox__progress {
  background: var(--fancybox-accent-color,rgba(34,213,233,.96));
  height: 3px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  -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;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform,-webkit-transform;
  -webkit-transition-timing-function: linear;
  -o-transition-timing-function: linear;
  transition-timing-function: linear;
  z-index: 30;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.fancybox__container:-webkit-full-screen::backdrop {
  opacity: 0
}

.fancybox__container:-ms-fullscreen::backdrop {
  opacity: 0
}

.fancybox__container:fullscreen::-webkit-backdrop {
  opacity: 0
}

.fancybox__container:fullscreen::backdrop {
  opacity: 0
}

.fancybox__button--fullscreen g:nth-child(2) {
  display: none
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
  display: none
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
  display: none
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
  display: block
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
  display: block
}

.fancybox__button--slideshow g:nth-child(2) {
  display: none
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
  display: none
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
  display: block
}


.row {
  margin-left: -15px;
  margin-right: -15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.row>* {
  padding: 0 15px
}

.section-wrap {
  padding: 35px 0
}

@media only screen and (max-width: 1023.98px) {
  .section-wrap {
    padding:20px 0
  }
}

.col {
  -webkit-box-flex: 1;
  -ms-flex: 1 0 0%;
  flex: 1 0 0%
}

[class^=col-] {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

.col-1 {
  width: 8.333333%
}

.col-2 {
  width: 16.666667%
}

.col-3 {
  width: 25%
}

.col-4 {
  width: 33.33333%
}

.col-5 {
  width: 41.666667%
}

.col-6 {
  width: 50%
}

.col-7 {
  width: 58.333333%
}

.col-8 {
  width: 66.66667%
}

.col-9 {
  width: 75%
}

.col-10 {
  width: 83.333333%
}

.col-11 {
  width: 91.666667%
}

.col-12 {
  width: 100%
}

@media only screen and (max-width: 1279.98px) {
  .col-lg-1 {
    width:8.333333%
  }

  .col-lg-2 {
    width: 16.666667%
  }

  .col-lg-3 {
    width: 25%
  }

  .col-lg-4 {
    width: 33.33333%
  }

  .col-lg-5 {
    width: 41.666667%
  }

  .col-lg-6 {
    width: 50%
  }

  .col-lg-7 {
    width: 58.333333%
  }

  .col-lg-8 {
    width: 66.66667%
  }

  .col-lg-9 {
    width: 75%
  }

  .col-lg-10 {
    width: 83.333333%
  }

  .col-lg-11 {
    width: 91.666667%
  }

  .col-lg-12 {
    width: 100%
  }
}

@media only screen and (max-width: 1023.98px) {
  .col-md-6 {
    width:50%;
    max-width: 50%
  }

  .col-md-12 {
    width: 100%
  }
}

@media only screen and (max-width: 767.98px) {
  .col-sm-12 {
    width:100%;
    max-width: 100%
  }

  .col-sm-6 {
    width: 50%
  }

  .col-5-sm {
    width: 41.666667%
  }

  .col-7-sm {
    width: 58.333333%
  }
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: 0!important
}

html {
  font-size: 16px
}

@media only screen and (max-width: 1023.98px) {
  html {
    font-size:14px
  }
}



@media only screen and (max-width: 1023.98px) {
  body.lock {
    overflow-y:hidden
  }
}

h1,h2,h3,h4 {
  margin-top: 0;
  font-family: "TT Lakes Medium";
}

ol,ul {
  margin-top: 0;
  padding: 0;
  list-style: none
}

p {
  margin-top: 0;
  line-height: 1.6
}

@media only screen and (max-width: 767.98px) {
  p br {
    display:none
  }
}

a {
  text-decoration: none;
  color: inherit;
  outline: 0;
  -webkit-tap-highlight-color: transparent
}

button,input {
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1
}

input::-webkit-input-placeholder,textarea::-webkit-input-placeholder {
  color: #a6a6a6;
  opacity: 1;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease
}

input:focus::-webkit-input-placeholder,textarea:focus::-webkit-input-placeholder {
  opacity: 0
}

input::-moz-placeholder,textarea::-moz-placeholder {
  color: #a6a6a6;
  opacity: 1;
  -moz-transition: opacity .3s ease;
  transition: opacity .3s ease
}

input:focus::-moz-placeholder,textarea:focus::-moz-placeholder {
  opacity: 0
}



.title {
  margin-bottom: 30px
}

@media only screen and (max-width: 767.98px) {
  .title {
    -ms-flex-wrap:wrap;
    flex-wrap: wrap;
    margin-bottom: 20px
  }
}

.title .h1,.title h1 {
  font-family: "TT Lakes Medium";
  margin-bottom: 0;
  font-size: 36px;
  line-height: 135%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

@media only screen and (max-width: 767.98px) {
  .title .h1,.title h1 {
    font-size:24px
  }
}

.title .h1 span,.title h1 span {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
  text-transform: uppercase;
  color: #3bf285
}

.title__page .h1,.title__page h1 {
  font-family: "TT Lakes Medium";
  margin-bottom: 0;
  font-size: 36px;
  line-height: 135%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

@media only screen and (max-width: 767.98px) {
  .title__page .h1,.title__page h1 {
    font-size:24px
  }
}

.title__page .h1:before,.title__page h1:before {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 6px;
  max-width: 6px;
  background-color: #3bf285;
  margin-right: 24px;
  display: block
}

.title .h2,.title h2 {
  font-family: "TT Lakes Medium";
  margin-bottom: 0;
  font-size: 36px;
  line-height: 135%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start
}

@media only screen and (max-width: 1023.98px) {
  .title .h2,.title h2 {
    font-size:28px
  }
}

@media only screen and (max-width: 767.98px) {
  .title .h2,.title h2 {
    -webkit-box-flex:0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px
  }
}

.title .h2:before,.title h2:before {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 6px;
  max-width: 6px;
  background-color: #3bf285;
  margin-right: 24px;
  display: block
}

.title a {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  font-family: "TT Lakes Medium";
  line-height: 135%;
  border-bottom: 1px solid #1f1f1f;
  -webkit-transition: color .3s ease-in-out,border-color .3s ease-in-out;
  -o-transition: color .3s ease-in-out,border-color .3s ease-in-out;
  transition: color .3s ease-in-out,border-color .3s ease-in-out
}

.title a:hover {
  color: #0cbb53;
  border-color: #0cbb53
}

.text-center {
  text-align: center
}

.text-600 {
  font-weight: 600
}

img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto
}

.cover {
  -o-object-fit: cover;
  object-fit: cover
}






@media only screen and (max-width: 1023.98px) {
  .header__burger {
    display:-webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-left: 8px
  }
}

.social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0
}

.social li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 48px;
  max-width: 48px;
  height: 48px
}

.social li:not(:last-child) {
  margin-right: 13px
}

.social li a {
  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: 2px solid #3bf285;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  -webkit-transition: background-color .3s ease-in-out,border-color .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out,border-color .3s ease-in-out;
  transition: background-color .3s ease-in-out,border-color .3s ease-in-out
}

.social li a:hover {
  background-color: #3bf285
}

.social li a:active {
  background-color: #0cbb53;
  border-color: #0cbb53
}

.social li a svg {
  fill: currentColor
}

.page-header {
  color: #fff;
  padding: 70px 0 120px;
  margin-bottom: 50px
}

@media only screen and (max-width: 1279.98px) {
  .page-header {
    padding:70px 0
  }
}

@media only screen and (max-width: 1023.98px) {
  .page-header {
    padding:40px 0;
    margin-bottom: 30px
  }

  .page-header img {
    margin: 20px auto 0
  }
}

.page-header:after {
  width: 569px;
  height: 592px;
  top: 60px;
  left: 15px;
  background-size: contain;
  background-color: #3bf285;
  -webkit-mask: url(../images/dest/green.svg) no-repeat;
  mask: url(../images/dest/green.svg) no-repeat;
  -webkit-mask-size: cover;
}
.page-header.background__dark.decor.relative {
  overflow: hidden;
}
@media only screen and (max-width: 1279.98px) {
  .page-header:after {
    width:50%;
    height: 80%;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
  }
}

@media only screen and (max-width: 1023.98px) {
  .page-header:after {
    display:none!important
  }
}

.page-header h1 {
  font-size: 48px;
  font-family: "TT Lakes Medium";
  line-height: 1.2;
  margin-bottom: 16px
}

@media only screen and (max-width: 767.98px) {
  .page-header h1 {
    font-size:34px
  }
}

.page-header .btn {
  color: #1f1f1f
}

.page-header .btn:hover {
  background-color: #3a3a3a
}

.accordion__wrap {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all .2s ease-out;
  -o-transition: all .2s ease-out;
  transition: all .2s ease-out
}

.faq .btn {
  width: 100%;
  max-width: 100%
}

.faq .btn:hover {
  background-color: #3a3a3a
}

.faq__wrap {
  padding: 70px 0
}

.faq__item {
  border-radius: 10px;
  background-color: #3a3a3a;
  -webkit-transition: background-color .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
  margin-bottom: 10px
}

.faq__item .icon-chevron_down {
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s,-webkit-transform .3s
}

.faq__item.active {
  background-color: #e4e8ec
}

.faq__item.active .faq__item-title {
  color: #1f1f1f
}

.faq__item.active .icon-chevron_down {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg)
}

.faq__item .faq__item-title {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 16px 20px;
  color: #fff;
  cursor: pointer
}

.faq__item .faq__item-title span {
  display: block;
  line-height: 1.6;
  font-weight: 600;
  cursor: pointer
}

.faq__item .faq__item-wrap {
  padding-left: 20px;
  padding-right: 20px
}

.faq__item .faq__item-wrap p {
  font-size: 14px;
  margin-bottom: 20px
}

.tabs__block {
  display: none
}

.tabs__block.active {
  display: block
}

@media only screen and (max-width: 767.98px) {
  .products__categories .card__categories-img {
    padding-left:15px;
    padding-right: 15px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
  }

  .products__categories .card__categories-link a {
    padding: 0 5px;
    height: 44px;
    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
  }

  .products__categories .row {
    margin-left: -5px;
    margin-right: -5px
  }

  .products__categories .row>* {
    padding: 0 5px
  }
}

.card__categories {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%
}

.card__categories-img {
  padding-top: 10px
}

.card__categories-img:after {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width: 216px;
  height: 243px;
  background: url(../images/dest/black.svg) 0 0 no-repeat
}

@media only screen and (max-width: 767.98px) {
  .card__categories-img:after {
    width:80%;
    height: 80%;
    background-size: contain;
    background-position: 50% 50%
  }
}

.card__categories-link a {
  display: block;
  text-align: center;
  padding: 14.5px 0;
  color: #fff;
  font-family: "TT Lakes Demi";
  background-color: #3a3a3a
}

.card__product {
  height: 100%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  box-shadow: 5px 5px 10px #0000001a;
}

.card__product:hover {
  box-shadow: 3px 3px 5px #0000001a;
}

.card__product-desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 auto;
  flex: 1 0 auto
}

.card__product-desc-name {
  margin-bottom: 20px
}

.card__product-desc-attr {
  padding-left: 30px;
  padding-right: 30px;
  margin-bottom: 20px
}

@media only screen and (max-width: 1023.98px) {
  .card__product-desc-attr {
    padding-left:15px;
    padding-right: 15px;
    margin-bottom: 15px
  }
}

.card__product-form {
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 30px
}

@media only screen and (max-width: 1023.98px) {
  .card__product-form {
    padding-left:15px;
    padding-right: 15px;
    padding-bottom: 20px
  }
}

.card__product-form .custom-variarion {
  margin-bottom: 20px
}

@media only screen and (max-width: 1023.98px) {
  .card__product-form .custom-variarion {
    margin-bottom:15px
  }
}

.card__product-form .custom-variarion .title {
  font-family: "TT Lakes Medium";
  margin-bottom: 10px;
  display: block
}

.card__product-form .btn {
  width: 100%
}

@media only screen and (max-width: 1023.98px) {
  .card__product-form .btn {
    max-width:100%
  }
}

.card__product-img {
  height: 285px;
  overflow: hidden;
  margin-bottom: 30px
}

@media only screen and (max-width: 767.98px) {
  .card__product-img {
    margin-bottom:20px;
    height: initial
  }
}

.card__product-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.card__product-link {
  padding-left: 30px;
  padding-right: 30px
}

@media only screen and (max-width: 1023.98px) {
  .card__product-link {
    padding-left:15px;
    padding-right: 15px
  }
}

.card__product-link a {
  font-size: 20px;
  max-height: 3.7em;
  overflow: hidden;
  display: block;
  -webkit-line-clamp: 2;
  display: box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: normal;
  -webkit-transition: color .3s ease-in-out;
  -o-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
  font-family: "TT Lakes Medium";

}

@media only screen and (max-width: 767.98px) {
  .card__product-link a {
    font-size:16px
  }
}

.card__product-link a:hover {
  color: #0cbb53
}

.card__product-price {
  margin-bottom: 20px
}

.card__reviews {
  padding: 30px;
  height: 100%
}

.card__reviews-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50px;
  max-width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 15px
}

.card__reviews-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover
}

.card__reviews-title {
  font-size: 12px
}

.card__reviews-title span {
  display: block;
  margin-bottom: 4px;
  font-family: "TT Lakes Demi";
  font-size: 20px
}

.card__reviews-content p {
  margin-bottom: 0;
  color: #757575
}

@media only screen and (max-width: 1023.98px) {
  .benefits .col-6>img {
    margin:0 auto
  }
}

.benefits .btn {
  width: initial;
  max-width: initial;
  padding-left: 40px;
  padding-right: 40px
}

.benefits__item {
  padding: 20px 30px
}

@media only screen and (max-width: 767.98px) {
  .benefits__item {
    padding:15px 10px
  }
}

.benefits__item:not(:last-child) {
  margin-bottom: 20px
}

@media only screen and (max-width: 767.98px) {
  .benefits__item:not(:last-child) {
    margin-bottom:10px
  }
}

.benefits__item-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 60px;
  max-width: 60px;
  margin-right: 15px
}

@media only screen and (max-width: 767.98px) {
  .benefits__item-img {
    width:36px;
    max-width: 36px;
    margin-right: 10px
  }
}

.benefits__item-content p {
  margin-bottom: 0;
  font-family: "TT Lakes Demi";
  font-size: 18px;
  line-height: 1.2
}

@media only screen and (max-width: 767.98px) {
  .benefits__item-content p {
    font-size:14px
  }
}

.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;
  border-radius: 10px;
  text-transform: uppercase;
  font-family: "TT Lakes Medium";
  border: 2px solid;
  -webkit-transition: color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out;
  -o-transition: color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out;
  transition: color .3s ease-in-out,background-color .3s ease-in-out,border-color .3s ease-in-out;
  cursor: pointer;
  gap:10px;
}

.btn svg {
  fill: currentColor;
  margin-right: 10px
}

.btn__lg {
  padding: 19px 0;
  line-height: 1.4;
  width: 362px;
  max-width: 362px;
  text-align: center
}

@media only screen and (max-width: 767.98px) {
  .btn__lg {
    max-width:100%
  }
}

.btn__md {
  padding: 14px 0;
  line-height: 1.4;
  width: 302px;
  max-width: 302px;
  text-align: center
}

@media only screen and (max-width: 767.98px) {
  .btn__md {
    max-width:100%
  }
}

.btn__sm {
  padding: 0 40px;
  height: 50px
}

.btn__primary {
  background-color: #3bf285;
  border-color: #3bf285
}

.btn__primary:hover {
  background-color: #1f1f1f;
  border-color: #1f1f1f;
  color: #fff
}

.btn__primary-outline:hover {
  border-color: #3bf285;
  background-color: transparent;
  color: #fff
}

.btn__outline {
  border-color: #3bf285;
  background-color: transparent
}

.btn__outline:hover {
  background-color: #3bf285
}

.btn__filter {
  border: none;
  font-family: "Open Sans",sans-serif;
  font-size: 16px;
  font-weight: 600;
  -webkit-transition: border-color .3s ease-in-out,background-color .3s ease-in-out;
  -o-transition: border-color .3s ease-in-out,background-color .3s ease-in-out;
  transition: border-color .3s ease-in-out,background-color .3s ease-in-out;
  border: 2px solid transparent;
  background-color: transparent
}

.btn__filter:hover {
  border-color: #d5dbe1
}

.btn__filter.active {
  background-color: #d5dbe1;
  border-color: #d5dbe1
}


.burger span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
  width: 100%;
  height: 2px;
  background-color: #3a3a3a;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
  border-radius: 10px
}

.burger.active span {
  width: 0;
  opacity: 0
}

.burger.active:before {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%) rotate(-45deg);
  -ms-transform: translate(-50%,-50%) rotate(-45deg);
  transform: translate(-50%,-50%) rotate(-45deg)
}

.burger.active:after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%,-50%) rotate(45deg);
  -ms-transform: translate(-50%,-50%) rotate(45deg);
  transform: translate(-50%,-50%) rotate(45deg)
}

input[type=email], input[type=text] {
    border: 1px solid var(--greygrey-5);
    border-radius: 50px;
    width: 100%;
    height: 56px;
    padding: 0 30px;
    background-color: #fff;
    -webkit-transition: border-color .3s ease-in-out;
    -o-transition: border-color .3s ease-in-out;
    transition: border-color .3s ease-in-out;
    font-size: 15px;
}

input[type=email]:focus,input[type=text]:focus {
  border-color: #3bf285
}

input[type=radio] {
  display: none
}

input[type=radio]:checked+label:before {
  background: url(../images/dest/radio-checked.svg) 0 0 no-repeat
}

input[type=radio]+label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer
}

input[type=radio]+label:before {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 24px;
  max-width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url(../images/dest/radio.svg) 0 0 no-repeat
}

input[type=checkbox] {
  display: none
}

input[type=checkbox]:checked+label:before {
  background: url(../images/dest/checkbox-checked.svg) 0 0 no-repeat
}

input[type=checkbox]+label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer
}

input[type=checkbox]+label:before {
  content: "";
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 24px;
  max-width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url(../images/dest/checkbox.svg) 0 0 no-repeat
}

.form__row {
  margin-bottom: 20px
}

.form__row-input label {
  display: block;
  font-size: 14px;
  font-family: "TT Lakes Medium";
  line-height: 135%;
  margin-bottom: 10px
}

.custom-variarion ul {
  margin-bottom: 0
}

.custom-variarion ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

.custom-variarion ul li:not(:last-child) {
  margin-right: 10px
}

.custom-variarion ul li span {
  letter-spacing: .06em;
  font-weight: 600;
  background-color: #e4e8ec;
  border-radius: 10px;
  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: 56px;
  height: 40px;
  cursor: pointer;
  -webkit-transition: color .3s ease-in,background-color .3s ease-in-out;
  -o-transition: color .3s ease-in,background-color .3s ease-in-out;
  transition: color .3s ease-in,background-color .3s ease-in-out
}

.custom-variarion ul li.active span {
  background-color: #1f1f1f;
  color: #fff;
  cursor: default
}

.price bdi {
  font-size: 36px;
  font-family: "TT Lakes Medium";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

@media only screen and (max-width: 767.98px) {
  .price bdi {
    font-size:24px
  }
}

.price__uah bdi {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.price__uah bdi span {
  font-size: 16px;
  position: relative;
  top: 16px;
  margin-left: 4px
}

.attr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  width: calc(100% + 2px);
  margin: 0 -1px
}

.attr li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
  max-width: 50%;
  padding: 0 1px;
  margin-bottom: 2px;
  min-height: 56px
}

.attr__item {
  height: 100%;
  padding: 8px 4px
}

.attr__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 40px;
  max-width: 40px;
  margin-right: 4px
}

.attr__text {
  font-size: 10px
}

.attr__text span {
  display: block;
  font-size: 14px;
  font-family: "TT Lakes Demi"
}

.category ul {
  margin-bottom: 0
}

.category ul li {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  margin-bottom: 30px
}

@media only screen and (max-width: 767.98px) {
  .category ul li {
    width:100%;
    margin-bottom: 15px
  }

  .category ul li button {
    width: 100%;
    border-color: #d5dbe1
  }
}

.category ul li:not(:last-child) {
  margin-right: 12px
}

@media only screen and (max-width: 767.98px) {
  .category ul li:not(:last-child) {
    margin-right:0
  }
}

.filter h4 {
  display: none
}

.filter .woof_container {
  margin-right: 15px;
  margin-bottom: 15px
}

@media only screen and (max-width: 767.98px) {
  .filter .woof_container {
    margin-right:0;
    width: 100%
  }
}

.select__item {
  position: relative
}

.select__value {
  font-size: 16px;
  font-weight: 600;
  padding: 0 40px;
  height: 50px;
  border: 2px solid #d5dbe1;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer
}

@media only screen and (max-width: 767.98px) {
  .select__value {
    padding:0 30px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }
}

.select__options {
  display: none;
  position: absolute;
  z-index: 10;
  width: 100%;
  border-radius: 0 0 10px 10px;
  background-color: #fff;
  padding: 10px 0
}

.select__option {
  padding: 5px 20px;
  cursor: pointer
}

.select .icon-arrow_down {
  margin-left: 10px;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  -o-transition: transform .3s;
  transition: transform .3s;
  transition: transform .3s,-webkit-transform .3s
}

.select.active .select__options {
  display: block
}

.select.active .select__value {
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  border-color: transparent;
  border-bottom-color: #d5dbe1
}

.select.active .icon-arrow_down {
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg)
}

.woof_products_top_panel {
  margin-bottom: 10px
}

@media only screen and (max-width: 767.98px) {
  .woof_products_top_panel {
    margin-bottom:0
  }
}

.woof_products_top_panel .woof_products_top_panel_ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 0
}

.woof_products_top_panel .woof_products_top_panel_ul button {
  display: none
}

.woof_products_top_panel .woof_products_top_panel_ul>li {
  margin-bottom: 10px
}

.woof_products_top_panel .woof_products_top_panel_ul>li ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 0
}

.woof_products_top_panel .woof_products_top_panel_ul>li ul li {
  margin-right: 10px
}

.woof_products_top_panel .woof_products_top_panel_ul>li ul li:first-child {
  display: none
}

.woof_products_top_panel .woof_products_top_panel_ul>li ul li a {
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  background-color: #e4e8ec;
  border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse
}

.woof_products_top_panel .woof_products_top_panel_ul>li ul li a:after {
  content: "";
  background: url(../images/dest/close.svg) 0 0 no-repeat;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 11px;
  max-width: 11px;
  height: 11px;
  margin-right: 10px
}

.iti {
  width: 100%
}

.iti--separate-dial-code .iti__selected-flag {
  background-color: transparent!important
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1
}

.swiper-vertical {
  height: 100%
}

.swiper-vertical .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.swiper-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  transition-property: transform,height,-webkit-transform
}

.swiper-autoheight .swiper-slide {
  height: auto
}

.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;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform,-webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  -webkit-transform: translate3d(0,0,0);
  transform: translate3d(0,0,0)
}

.swiper-slide {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform,-webkit-transform
}

.swiper-button {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 1;
  cursor: pointer
}

.swiper-button-disabled {
  cursor: default
}

.swiper-button-prev {
  left: 0
}

.swiper-button-next {
  right: 0
}

.swiper-pagination {
  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: 100%;
  z-index: 10;
  margin-top: 15px
}

.swiper-pagination .swiper-pagination-bullet {
  cursor: pointer;
  margin: 0 4.5px;
  padding: 15px 0
}

.swiper-pagination .swiper-pagination-bullet:after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  display: block;
  -webkit-transition: background-color .3s;
  -o-transition: background-color .3s;
  transition: background-color .3s
}

.swiper-pagination .swiper-pagination-bullet-active:after {
  background-color: #3bf285
}

.reviews h2 {
  font-size: 36px;
  line-height: 135%;
  text-align: center;
  margin-bottom: 20px;
  font-family: "TT Lakes Bold"
}

@media only screen and (max-width: 1023.98px) {
  .reviews h2 {
    font-size:28px;
    margin-bottom: 10px
  }
}

.reviews__wrap .swiper-slide {
  height: auto
}

.reviews__wrap .swiper-button {
  width: 54px;
  height: 54px;
  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: 1px solid #d5dbe1;
  border-radius: 10px;
  top: calc(50% - 27.5px)
}

@media only screen and (max-width: 1279.98px) {
  .reviews__wrap .swiper-button {
    display:none
  }
}

.reviews__wrap .swiper-button-prev {
  left: -84px
}

.reviews__wrap .swiper-button-next {
  right: -84px
}

.product__slider-images .swiper-button {
  width: 34px;
  height: 34px;
  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;
  background-color: #e4e8ec;
  border-radius: 10px;
  top: 50%;
  z-index: 1
}

.product__slider-images .swiper-button-prev {
  left: 20px
}

@media only screen and (max-width: 767.98px) {
  .product__slider-images .swiper-button-prev {
    left:0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
  }
}

.product__slider-images .swiper-button-next {
  right: 20px
}

@media only screen and (max-width: 767.98px) {
  .product__slider-images .swiper-button-next {
    right:0;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
  }
}

.product__slider-thumbs .swiper-slide div {
  border: 2px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  opacity: 1;
  -webkit-transition: border-color .3s ease-in-out,background-color .3s ease-in-out;
  -o-transition: border-color .3s ease-in-out,background-color .3s ease-in-out;
  transition: border-color .3s ease-in-out,background-color .3s ease-in-out
}

.product__slider-thumbs .swiper-slide div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 1;
  -webkit-transition: opacity .3s ease-in-out;
  -o-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out
}

.product__slider-thumbs .swiper-slide-thumb-active div {
  background: rgba(31,31,31,.25);
  border: 2px solid #d5dbe1;
  border-radius: 10px;
  cursor: default
}

.product__slider-thumbs .swiper-slide-thumb-active div img {
  opacity: .3
}

.breadscrumbs {
  padding: 30px 0
}

@media only screen and (max-width: 1023.98px) {
  .breadscrumbs {
    display:none
  }
}

.breadscrumbs {
  padding: 13px 0;
}

.breadscrumbs ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 0;
}

.breadscrumbs ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
  font-size: 14px;
  line-height: 1.6;
  color: var(--main-color);;
}
span.breadscrumbs-span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: color .3s;
  -o-transition: color .3s;
  transition: color .3s;
  font-size: 14px;
  line-height: 1.6;
  font-family: "TT Lakes Medium";
}
.breadscrumbs ul li a:after {
  content: ">";
  margin: 0 5px;
}

.footer {
  border-top: 1px solid #d5dbe1;
  padding: 40px 0
}

@media only screen and (max-width: 1023.98px) {
  .footer .row {
    -webkit-box-orient:vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }
}

.footer__logo {
  margin-bottom: 10px
}

.footer p {
  margin-bottom: 14px;
  font-size: 12px;
  line-height: 135%
}

.footer__nav {
  padding-left: 40px
}

@media only screen and (max-width: 1023.98px) {
  .footer__nav {
    padding-left:0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}

@media only screen and (max-width: 1023.98px) {
  .footer__nav-item {
    -webkit-box-flex:0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px
  }
}

.footer__nav-item .title {
  font-size: 18px;
  line-height: 135%;
  font-family: "TT Lakes Demi";
  margin-bottom: 14px;
  text-transform: uppercase
}

.footer__nav-item ul {
  margin-bottom: 0
}

.footer__nav-item ul li:not(:last-child) {
  margin-bottom: 16px
}

.footer__nav-item ul li a {
  -webkit-transition: color .3s ease-in-out;
  -o-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out
}

.footer__nav-item ul li a:hover {
  color: #0cbb53
}

@media only screen and (max-width: 1023.98px) {
  .product {
    padding-top:30px
  }
}

.product__summary {
  padding: 40px
}

@media only screen and (max-width: 1023.98px) {
  .product__summary {
    padding:30px 15px
  }
}

@media only screen and (max-width: 767.98px) {
  .product__summary {
    width:calc(100% + 30px);
    margin-left: -15px;
    border-radius: 0!important
  }
}

.product__summary h1 {
  margin-bottom: 15px;
  font-family: "TT Lakes Medium";
  font-size: 24px;
  line-height: 135%
}

.product__summary .price {
  margin-bottom: 15px;
  display: block;
  line-height: 1
}

.product__summary p {
  margin-bottom: 20px;
  line-height: 160%;
  color: #3a3a3a
}

@media only screen and (max-width: 1023.98px) {
  .product__summary .attr {
    margin-bottom:15px
  }
}

.product__summary .attr .background__primary {
  background-color: #fff
}

@media only screen and (max-width: 1023.98px) {
  .product__summary .attr .background__primary {
    background-color:#f1f3f5
  }
}

.product__summary .custom-variarion {
  margin-bottom: 20px
}

.product__summary .custom-variarion .title {
  font-family: "TT Lakes Medium";
  margin-bottom: 10px;
  display: block
}

.product__summary-btn {
  margin-top: 15px
}

.product__summary .btn {
  width: 100%;
  max-width: 100%
}

.product__description {
  margin-bottom: 35px
}

.tabs__content {
  background: #f1f3f5;
  padding: 5px 0px;
  border-radius: 10px;
  color: var(--gray-main-text);
  font-family: "TT Lakes Medium";
}

div#description {
  background: #f1f3f5;
  color: var(--gray-main-text);
  font-family: "TT Lakes Medium";
  padding: 10px;
}

@media only screen and (max-width: 1023.98px) {
  .product__description {
    margin-bottom:30px
  }
}

@media only screen and (max-width: 767.98px) {
  .product__description {
    margin-bottom:0
  }
}

.product__description-wrap {
  padding: 40px 0px;
}

@media only screen and (max-width: 767.98px) {
  .product__description-wrap {
    width:calc(100% + 30px);
    margin-left: -15px;
    border-radius: 0!important;
    margin-bottom: 20px;
    padding: 30px 15px 0
  }
}

.product__description-wrap .tabs__nav {
  margin-bottom: 30px
}

@media only screen and (max-width: 767.98px) {
  .product__description-wrap .tabs__nav {
    margin-bottom:20px
  }
}

.product__description-wrap .btn__filter {
  border-color: #d5dbe1;
  margin-right: 10px
}
button.btn.btn__sm.btn__filter.tabs__nav-item.active::after {
  content: none;
}
@media only screen and (max-width: 767.98px) {
  .product__description-wrap .btn__filter {
    font-size:14px;
    padding: 0 20px
  }
}

.product__description-wrap .tabs__block p {
  margin-bottom: 20px
}

.product__description-wrap .tabs__block p:last-child {
  margin-bottom: 0
}

@media only screen and (max-width: 767.98px) {
  .product__description-wrap .tabs__block p:last-child {
    padding-bottom:30px
  }
}

.table {
  margin-bottom: 0
}

div#specifications {
    background: #ffffff00;
}
.active:after {
    content: "";
}
@media only screen and (max-width: 767.98px) {
  .table {
    width:calc(100% + 30px);
    margin-left: -15px
  }
}

.table li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: #ffffff;
}

.table li:nth-child(odd) {
  background-color: #f1f3f5
}

.table li span {
  display: block;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: 50%;
  max-width: 50%;
  line-height: 160%;
  padding: 15px 24px
}

.products__wrap .section-wrap {
  padding-bottom: 5px
}

.products__categories .anchor {
  margin-right: 10px
}

@media only screen and (max-width: 767.98px) {
  .products__categories .anchor {
    margin-right:0;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    max-width: 100%
  }
}

.products__categories .anchor .btn {
  border-color: #d5dbe1;
  padding: 0 20px;
}

@media only screen and (max-width: 767.98px) {
  .products__categories .anchor .btn {
    width:100%
  }
}

.electro .filter {
  margin-bottom: 15px
}

.background__primary {
  background-color: #f1f3f5
}

.background__dark {
  background-color: var(--light-container-color);
  border-radius: 10px;
}

.background__white {
  background-color: #fff
}

.background__dark-muted {
  background-color: #3a3a3a
}

.decor {
  z-index: 1
}

.decor:after {
  content: "";
  display: block;
  position: absolute;
  z-index: -1
}

.section-wrap .section-wrap__inner {
  padding: 70px 0;
  min-height: 520px
}

@media only screen and (max-width: 1023.98px) {
  .section-wrap .section-wrap__inner {
    padding:40px 0;
    min-height: initial
  }

  .section-wrap .section-wrap__inner img {
    margin: 0 auto
  }
}

.section-wrap .section-wrap__inner .title {
  color: var(--gray-main-text);
  font-family: "TT Lakes Medium";
  font-size: 35px;
}

@media only screen and (max-width: 1023.98px) {
  .section-wrap .section-wrap__inner .title {
    font-size: 23px;
    padding: 15px;
  }
}

.section-wrap .section-wrap__inner:after {
  width: 398px;
  height: 448px;
  top: 30px;
  right: 15px;
  background-size: contain;
  background-color: #3bf285;
  -webkit-mask: url(../images/dest/green.svg) no-repeat;
  mask: url(../images/dest/green.svg) no-repeat;
  -webkit-mask-size: cover;
}

@media only screen and (max-width: 1023.98px) {
  .section-wrap .section-wrap__inner:after {
    width:96%;
    height: 96%;
    background-size: contain;
    top: 2%;
    left: 2%
  }
}

.r-4 {
  border-radius: 4px
}

.r-10 {
  border-radius: 10px
}

.d-block {
  display: block
}

.d-i-block {
  display: inline-block
}


.d-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex
}

.d-i-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex
}

.flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column
}

.align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center
}

.align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start
}

.align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end
}

.justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center
}

.justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between
}

.justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around
}

.row-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap
}


@media only screen and (max-width: 1279.98px) {
  .d-lg-none {
    display:none!important
  }

  .d-lg-block {
    display: block!important
  }

  .justify-lg-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .justify-lg-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
  }

  .flex-lg-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }

  .flex-lg-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .flex-lg-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .align-lg-start {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
  }

  .align-lg-end {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
  }

  .align-lg-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
  }
}

@media only screen and (max-width: 1023.98px) {
  .flex-md-column-reverse {
    -webkit-box-orient:vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }

  .d-md-none {
    display: none!important
  }

  .d-md-block {
    display: block!important
  }

  .justify-md-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }
}

@media only screen and (max-width: 767.98px) {
  .d-sm-none {
    display:none!important
  }

  .d-sm-block {
    display: block
  }

  .justify-sm-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
  }

  .flex-sm-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse
  }

  .justify-sm-start {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
  }

  .flex-sm-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .flex-sm-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .align-sm-stretch {
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch
  }
}

.fixed {
  position: fixed
}

.absolute {
  position: absolute
}

.relative {
  position: relative
}

.priority {
  z-index: 10
}

.top {
  top: 0
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 50px
}

.w-100 {
  width: 100%
}

.h-100 {
  height: 100%
}

.vw-100 {
  width: 100vw
}

.vh-100 {
  height: 100vh
}

.mb-0 {
  margin-bottom: 0
}

.mb-10 {
  margin-bottom: 10px
}

.mb-20 {
  margin-bottom: 20px
}

.mb-30 {
  margin-bottom: 30px
}

.mb-40 {
  margin-bottom: 40px
}

.mb-60 {
  margin-bottom: 60px
}

.mb-80 {
  margin-bottom: 80px
}

.pb-0 {
  padding-bottom: 0
}

.pt-0 {
  padding-top: 0
}

@media only screen and (max-width: 1279.98px) {
  .mb-lg-10 {
    margin-bottom:10px
  }

  .mb-lg-30 {
    margin-bottom: 30px
  }
}

@media only screen and (max-width: 1023.98px) {
  .mb-md-10 {
    margin-bottom:10px
  }

  .mb-md-20 {
    margin-bottom: 20px
  }

  .mb-md-30 {
    margin-bottom: 30px
  }
}

@media only screen and (max-width: 767.98px) {
  .pb-sm-0 {
    padding-bottom:0
  }

  .mb-sm-10 {
    margin-bottom: 10px
  }

  .mb-sm-15 {
    margin-bottom: 15px
  }

  .mb-sm-20 {
    margin-bottom: 20px
  }
}

/*# sourceMappingURL=../maps/app.min.css.map */

@media only screen and (max-width: 992px) {
  .row.products.columns-4 {
    display: grid;
    padding-bottom: 10px;
        margin-left: auto;
    margin-right: auto;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 100% !important;
  }
}
.row.products.columns-4 {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-start;
      margin-left: auto;
    margin-right: auto;
}
.term-description {
  padding: 10px 0px;
}
p.woocommerce-result-count {
  padding: 10px 0px;
}

.title.title__page.d-flex.justify-between.align-center {
  padding: 15px 0px;
}

.card__product-name {
  width: fit-content;
  margin-top: -1px;
  font-family: "Open Sans", Helvetica;
  color: var(--greygrey-1);
  font-size: 22px;
  line-height: 36px;
  font-weight: 700;
  min-height: 73px;
}
.col-xl-3 {
  flex: 0 0 auto;
  width: 32%;
}








/* Checkout start  */


    .wc-block-components-notice-banner__content {
       font-family: "TT Lakes Medium";
    }

    .heading {
       
        margin-left: auto;
        margin-right: auto;
        padding-top: 40px;
    }

    .content-checkout {
       
        margin-left: auto;
        margin-right: auto;
        padding-top: 20px;
        display: flex;
        gap: 8%;
    }

    .checkout-prod {
        display: inline-flex;
           gap: 10%;
    padding-top: 25px;
    padding-bottom: 25px;
    }

    .checkout-left {
        display: block;
        width: 50%;
    }

    tr.cart_item {
    display: inline-flex;
    padding-top: 15px;
    width: 100%;
    justify-content: space-between;
    }

    input.input-text.qty.text {
        padding: 5px;
        text-align: end;
    }

    button.qty-minus.minus.qty__button {
        border: 0px solid;
        border-color: var(--greygrey-3);
        background: #ffffff00;
    }

    button.qty-plus.plus.qty__button {
        border: 0px solid;
        border-color: var(--greygrey-3);
        background: #ffffff00;
    }

    th.total__zag {
        font-family: "TT Lakes Medium";
        font-weight: 600;
        color: var(--greygrey-1);
        font-size: 22px;
        letter-spacing: 0;
        line-height: 28px;
        white-space: nowrap;
    }

    td.total__sum {
        margin-top: -1px;
            font-size: 24px;
    text-align: right;
    font-family: "TT Lakes Medium";
    }


    tr.order-shipping {
    display: inline-flex;
    padding: 15px 0px;
    margin: 15px 0px;
    width: 100%;
    border-top: 1px solid;
    border-bottom: 1px solid;
    border-color: #10b452;
    justify-content: space-between;
    }

    th.order-shipping__zag {
        margin-top: -1px;
        font-weight: 400;
        color: var(--greygrey-2);
        font-size: 16px;
        line-height: 28px;
        white-space: nowrap;
       font-family: "TT Lakes Medium";
        letter-spacing: 0;
    }

    td.order-shipping__sum {
        margin-top: -1px;
        font-family: "TT Lakes Medium";
        font-weight: 700;
        color: #535353;
        font-size: 16px;
        letter-spacing: 0;
        line-height: 28px;
        white-space: nowrap;
    }

    tr.order-total {
          display: inline-flex;
    padding: 10px 0px;
    width: 100%;
    justify-content: space-between;
    font-family: "TT Lakes Medium";

    }

    .checkout-right {
    display: block;
    width: 50%;
    height: fit-content;
    background-color: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    padding: 30px;
    }

    form.checkout.woocommerce-checkout {
        padding-bottom: 30px;
    }
    .quantity.d-flex.product-quantity {
        width: 50px;
        display: inline-flex;
        height: 60px;
    }

    div#customer_details {
        display: grid;
        gap: 5px;
    }

    input#billing__ur {
        width: 10%;
        margin-right: 5px;
    }

    #billing__ur_field > label {
        padding: 15px 0px;
        display: inline-flex;
        width: 270px;
        font-weight: 400;
        color: var(--greygrey-2);
        font-size: var(--body-body-3-font-size);
        line-height: var(--body-body-3-line-height);
        white-space: nowrap;
        font-family: var(--body-body-3-font-family);
        letter-spacing: var(--body-body-3-letter-spacing);
        font-style: var(--body-body-3-font-style);
    }

    td.product-name {
        margin-top: -1px;
        font-family: "TT Lakes Medium";
        font-weight: 600;
        color: #535353;
        font-size: 16px;
        letter-spacing: 0;
        line-height: 24px;
        padding: 0px 10px;
    }

    td.actions {
        display: none !important;
    }

    span.heading__title {
        font-family: "TT Lakes Medium";
        font-weight: 700;
        color: #535353;
        font-size: 36px;
        letter-spacing: 0;
        line-height: 46px;
        white-space: nowrap;
    }

    form.woocommerce-cart-form {
        background-color: var(--whitewhite-1);
        border-radius: 15px;
        overflow: hidden;
        padding: 20px;
        display: grid;
        gap: 15px;
    }

    .form-row.place-order {
        padding: 40px 0px;
        display: inline-grid;
        gap: 30px;
    }

    tr.woocommerce-cart-form__cart-item.cart_item {
        display: inline-flex;
    }

    img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
       border: 2px solid;
    border-color: #10b452;
    border-radius: 10px;
    width: 65px;
    height: 65px;
    }

td.product-thumbnail {
    width: 15%;
}

    a.woocommerce-privacy-policy-link {
        color: #10b452;
    }

    td.product-name__ch {
           margin-top: -1px;
    font-family: "TT Lakes Medium";
    font-weight: 600;
    color: #535353;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 24px;
    padding: 0px 10px;
    width: 75%;
    }

td.product-remove {
    width: 5%;
}
    span.title-form {
        margin-top: -1px;
        font-family: "TT Lakes Medium";
        font-weight: 600;
        color: #535353;
        font-size: 24px;
        letter-spacing: 0;
        line-height: 36px;
        white-space: nowrap;
    }

    input {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 15px 20px;
    position: relative;
    align-self: stretch;
    width: 100%;
    flex: 0 0 auto;
    background-color: #ffffff;
    border-radius: 50px;
    border: 1px solid;
    border-color: var(--greygrey-5);
    font-family: "TT Lakes Medium";
    font-weight: 400;
    color: var(--greygrey-3);
    font-size: 15px;
    height: 56px;
    }

    .select {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 20px;
        position: relative;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        background-color: #ffffff;
        border-radius: 50px;
        border: 1px solid;
        border-color: var(--greygrey-5);
        font-family: "TT Lakes Medium";
        font-weight: 400;
        color: var(--greygrey-3);
        font-size: 18px;
        }

    textarea#order_comments {
        align-items: flex-start;
        gap: 10px;
        padding: 20px;
        align-self: stretch;
        width: 100%;
        flex: 0 0 auto;
        background-color: #ffffff;
        border-radius: 30px;
        border: 1px solid;
        border-color: var(--greygrey-5);
        font-family: "TT Lakes Medium";
        font-weight: 400;
        color: var(--greygrey-3);
        font-size: 18px;
        min-height: 143px;
        min-width: 200px;
    }

    span.checkout-title {
        font-family: "TT Lakes Medium";
        font-weight: 600;
        color: #535353;
        font-size: 24px;
        letter-spacing: 0;
        line-height: 36px;
    }

    p label {
        font-weight: 700;
        color: var(--greygrey-2);
        font-size: 18px;
        line-height: normal;
        font-family: "TT Lakes Medium";
        letter-spacing: 0;
        padding: 0px;
        margin: 0px 0px 5px 0px;
        display: block;
    }

    input[type=checkbox] {
        accent-color: #029a02;
    }

    input[type=radio] {
        accent-color: #029a02;
    }

    ul#shipping_method {
        display: inline-flex;
        width: 100%;
    }

    li.li-shipping {
        display: flex;
        padding: 10px 35px 0px 0px;
    }

    li.li-shipping input {
        width: 25%;
        margin: 0px 10px 0px 5px;
    }

    #shipping_method > li > label {
        font-weight: var(--body-body-3-font-weight);
        color: var(--greygrey-2);
        font-size: var(--body-body-3-font-size);
        line-height: var(--body-body-3-line-height);
        white-space: nowrap;
        font-family: var(--body-body-3-font-family);
        letter-spacing: var(--body-body-3-letter-spacing);
        font-style: var(--body-body-3-font-style);
    }

    li.li-shipping span {
        font-weight: var(--body-body-3-font-weight);
        color: var(--greygrey-2);
        font-size: var(--body-body-3-font-size);
        line-height: var(--body-body-3-line-height);
        white-space: nowrap;
        font-family: var(--body-body-3-font-family);
        letter-spacing: var(--body-body-3-letter-spacing);
        font-style: var(--body-body-3-font-style);
    }



    button#place_order {
        width: 330px;
        align-items: center;
        justify-content: center;
        padding: 10px 30px;
        background-color: var(--greengreen-2);
        border-radius: 50px;
        color: white;
        margin-top: -1px;
        font-family: "TT Lakes Medium";
        font-weight: 700;
        color: var(--whitewhite-2);
        font-size: 18px;
        line-height: 30px;
        border: 2px solid;
        border-color: var(--greengreen-2);
        margin-right: auto;
        margin-left: auto;
    }

    .woocommerce-privacy-policy-text {
        font-weight: 400;
        color: #61646b;
        font-size: 16px;
        line-height: 28px;
        font-family: "TT Lakes Medium";
        letter-spacing: 0;
    }
    /* Checkout end  */




:root {
  --greygrey-1: rgba(57, 57, 57, 1);
  --greygrey-2: rgba(97, 100, 107, 1);
  --greygrey-3: rgba(176, 178, 181, 1);
  --greygrey-4: rgba(227, 227, 227, 1);
  --greygrey-5: rgba(238, 238, 238, 1);
  --whitewhite-1: rgba(246, 246, 246, 1);
  --whitewhite-2: rgba(255, 255, 255, 1);
  --greengreen-1: rgba(0, 128, 51, 1);
  --greengreen-2: rgba(16, 180, 82, 1);
  --greengreen-3: rgba(58, 241, 133, 1);
  --head-head-1-font-family: "TT Lakes Medium";
  --head-head-1-font-weight: 700;
  --head-head-1-font-size: 56px;
  --head-head-1-letter-spacing: 0px;
  --head-head-1-line-height: 66px;
  --head-head-1-font-style: normal;
  --head-head-2-font-family: "TT Lakes Medium";
  --head-head-2-font-weight: 700;
  --head-head-2-font-size: 36px;
  --head-head-2-letter-spacing: 0px;
  --head-head-2-line-height: 46px;
  --head-head-2-font-style: normal;
  --head-head-3-font-family: "TT Lakes Medium";
  --head-head-3-font-weight: 700;
  --head-head-3-font-size: 24px;
  --head-head-3-letter-spacing: 0px;
  --head-head-3-line-height: 34px;
  --head-head-3-font-style: normal;
  --head-head-4-font-family: "TT Lakes Medium";
  --head-head-4-font-weight: 700;
  --head-head-4-font-size: 22px;
  --head-head-4-letter-spacing: 0px;
  --head-head-4-line-height: 28px;
  --head-head-4-font-style: normal;
  --body-body-1-font-family: "TT Lakes Medium";
  --body-body-1-font-weight: 400;
  --body-body-1-font-size: 22px;
  --body-body-1-letter-spacing: 0px;
  --body-body-1-line-height: 36px;
  --body-body-1-font-style: normal;
  --body-body-2-font-family: "TT Lakes Medium";
  --body-body-2-font-weight: 400;
  --body-body-2-font-size: 18px;
  --body-body-2-letter-spacing: 0px;
  --body-body-2-line-height: 30px;
  --body-body-2-font-style: normal;
  --body-body-3-font-family: "TT Lakes Medium";
  --body-body-3-font-weight: 400;
  --body-body-3-font-size: 16px;
  --body-body-3-letter-spacing: 0px;
  --body-body-3-line-height: 28px;
  --body-body-3-font-style: normal;
  --body-body-4-font-family: "TT Lakes Medium";
  --body-body-4-font-weight: 400;
  --body-body-4-font-size: 14px;
  --body-body-4-letter-spacing: 0px;
  --body-body-4-line-height: 24px;
  --body-body-4-font-style: normal;
  --text-single-200-regular-font-family: "TT Lakes Medium";
  --text-single-200-regular-font-weight: 400;
  --text-single-200-regular-font-size: 18px;
  --text-single-200-regular-letter-spacing: 0px;
  --text-single-200-regular-line-height: 18px;
  --text-single-200-regular-font-style: normal;
  --rich-text-text-link-regular-font-family: "TT Lakes Medium";
  --rich-text-text-link-regular-font-weight: 400;
  --rich-text-text-link-regular-font-size: 18px;
  --rich-text-text-link-regular-letter-spacing: 0px;
  --rich-text-text-link-regular-line-height: 30px;
  --rich-text-text-link-regular-font-style: normal;
}


span.optional {
    display: none;
}

@media only screen and (max-width: 992px) {

.checkout-prod {
    display: grid;
    gap: 1%;
    padding-top: 25px;
    padding-bottom: 25px;
}

button#place_order {
    width: auto;
}
.checkout-right {
    display: block;
    width: 100%;
    height: fit-content;
    background-color: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    padding: 30px;
}

.checkout-left {
    display: block;
    width: 100%;
}
}

.oferta-pop-cat {
    border-color: #3bf285;
    padding: 14px 0;
    line-height: 1.4;
    text-align: center;
    border: 2px solid #3bf285;
    border-radius: 10px;
    transition: color .3s ease-in-out;
    font-family: "TT Lakes Medium";
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    cursor: pointer;
}

.oferta-pop-cat:hover {
    background: #3bf285;
    color: #ffffff;
}

.intl-tel-input.allow-dropdown.separate-dial-code.iti-sdc-4 {
    margin-top: 10px;
}
span.fotm_title {
    font-family: "TT Lakes Medium";
    font-size: 14px;
    font-weight: 600;
    color: #23282d;
}
.form-c {
    display: grid;
    gap: 15px;
}
.intl-tel-input .selected-flag {
    padding: 0 0 0 0px;
    background: red;
    margin: 0 0 0 5px;
}
.flag-container {
    background: #ffffff;
}
.selected-dial-code {
    background: #ffffff;
}
.forms-title {
    text-align: center;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}
p.forms-zag {
    width: fit-content;
    /* font-size: 25px !important; */
    text-align: center;
    color: #23282d !important;
}
p.forms-des {
    font-size: 18px;
}
.forms-con {
    display: grid;
    justify-items: center;
    width: 95% !important;
}
input.wpcf7-form-control.wpcf7-text {
    min-width: 100%;
    border: 1px solid #efefef !important;
    border-radius: 8px !important;
}
input.wpcf7-form-control.wpcf7-text {
    font-family: "Open Sans", Helvetica;
    font-weight: 300;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    width: 100%;
    min-width: 100%;
    border: 1px solid #efefef !important;
    border-radius: 8px !important;
    padding: 4% 5%;
    font-family: "Open Sans", Helvetica;
    font-weight: 300;
    margin-top: 10px;
}
.form-c {
    display: grid;
    gap: 15px;
    width: 85%;
    border-bottom: 1px solid #efefef !important;
    padding-bottom: 30px;
}

p.forms-priv {
    font-size: 16px !important;
    display: grid;
    justify-items: center;
    gap: 10px;
}

a.forms-u {
    color: #38e680 !important;
    font-size: 16px;
    font-family: "Open Sans", Helvetica;
    width: fit-content;
    text-align: center;
    border-bottom: 1px solid #38e680 !important;
    padding-bottom: 3px;
}

input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: fit-content !important;
    padding: 0px 30px !important;
    border-radius: 5px !important;
    background: #2cbf68 !important;
    color: #040404 !important;
    font-weight: 500;
    font-size: 16px !important;
}
@media only screen and (max-width: 992px) {
    input.wpcf7-form-control.wpcf7-text {
        width: 100% !important;
    }
.forms-con {
       display: grid;
    justify-items: center;
    margin-left: 0px !important;
    margin-right: 0px !important;
    width: auto !important;
    flex-direction: column;
    align-items: center;
     width: 390px !important;
}


.pum-theme-684 .pum-container, .pum-theme-floating-bar .pum-container {
    padding: 0px 0px;
    border-radius: 10px;
    border: 1px none #000000;
    box-shadow: 1px 1px 3px 0px rgba(193, 193, 193, 0.23);
    background-color: rgba(255, 255, 255, 1.00);
}
}

.row.products.columns-4 {
    width: 100%;
}