.carousel {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative
}

.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 {
    max-height: 100%;
    max-width: 100%;
    overflow: hidden;
    position: relative
}

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

.carousel__slide {
    -webkit-box-flex: 0;
    -ms-scroll-chaining: none;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1rem;
    position: relative;
    width: var(--carousel-slide-width, 60%)
}

.has-dots {
    margin-bottom: calc(.5rem + 22px)
}

.carousel__dots {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    left: 0;
    list-style: none;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    right: 0;
    top: calc(100% + .5rem);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.carousel__dots .carousel__dot {
    cursor: pointer;
    display: block;
    height: 22px;
    margin: 0;
    padding: 0;
    position: relative;
    width: 22px
}

.carousel__dots .carousel__dot:after {
    background-color: currentColor;
    border-radius: 50%;
    content: "";
    height: 8px;
    left: 50%;
    opacity: .25;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    -webkit-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out;
    width: 8px
}

.carousel__dots .carousel__dot.is-selected:after {
    opacity: 1
}

.carousel__button {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: var(--carousel-button-bg, transparent);
    border: 0;
    border-radius: var(--carousel-button-border-radius, 50%);
    -webkit-box-shadow: var(--carousel-button-shadow, none);
    box-shadow: var(--carousel-button-shadow, none);
    color: var(--carousel-button-color, currentColor);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: var(--carousel-button-height, 48px);
    justify-content: center;
    padding: 0;
    pointer-events: all;
    -webkit-transition: opacity .15s ease;
    transition: opacity .15s ease;
    width: var(--carousel-button-width, 48px)
}

.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 {
    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);
    height: var(--carousel-button-svg-height, 50%);
    pointer-events: none;
    width: var(--carousel-button-svg-width, 50%)
}

html.with-fancybox {
    scroll-behavior: auto
}

body.compensate-for-scrollbar {
    overflow: hidden !important;
    -ms-touch-action: none;
    touch-action: none
}

.fancybox__container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    --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, .4));
    bottom: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: var(--fancybox-color, #fff);
    direction: ltr;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    left: 0;
    margin: 0;
    outline: none;
    overflow: hidden;
    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);
    position: fixed;
    right: 0;
    top: 0;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    z-index: 1050
}

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

.fancybox__container :focus {
    outline: none
}

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 (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 {
    background: var(--fancybox-bg, rgba(24, 24, 27, .92));
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1
}

.fancybox__carousel {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    height: 100%;
    min-height: 0;
    position: relative;
    z-index: 10
}

.fancybox__carousel.has-dots {
    margin-bottom: calc(.5rem + 22px)
}

.fancybox__viewport {
    cursor: default;
    height: 100%;
    overflow: visible;
    position: relative;
    width: 100%
}

.fancybox__track {
    height: 100%
}

.fancybox__slide,
.fancybox__track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.fancybox__slide {
    -webkit-box-flex: 0;
    -ms-scroll-chaining: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    --carousel-button-width: 36px;
    --carousel-button-height: 36px;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0;
    max-width: 100%;
    outline: 0;
    overflow: auto;
    overscroll-behavior: contain;
    padding: 48px 8px 8px;
    position: relative;
    width: 100%
}

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

@media (min-width:1024px) {
    .fancybox__slide {
        padding: 64px 100px
    }
}

.fancybox__content {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    align-self: center;
    background: var(--fancybox-content-bg, #fff);
    color: var(--fancybox-content-color, #374151);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    margin: 0 env(safe-area-inset-right, 0) 0 env(safe-area-inset-left, 0);
    padding: 36px;
    position: relative;
    z-index: 20
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: thin dotted
}

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

.is-loading .fancybox__caption {
    visibility: hidden
}

.fancybox__container>.carousel__dots {
    color: var(--fancybox-color, #fff);
    top: 100%
}

.fancybox__nav .carousel__button {
    z-index: 40
}

.fancybox__nav .carousel__button.is-next {
    right: 8px
}

@media (min-width:1024px) {
    .fancybox__nav .carousel__button.is-next {
        right: 40px
    }
}

.fancybox__nav .carousel__button.is-prev {
    left: 8px
}

@media (min-width:1024px) {
    .fancybox__nav .carousel__button.is-prev {
        left: 40px
    }
}

.carousel__button.is-close {
    position: absolute;
    right: 8px;
    right: calc(env(safe-area-inset-right, 0px) + 8px);
    top: 8px;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    z-index: 40
}

@media (min-width:1024px) {
    .carousel__button.is-close {
        right: 40px
    }
}

.fancybox__content>.carousel__button.is-close {
    color: var(--fancybox-color, #fff);
    position: absolute;
    right: 0;
    top: -40px
}

.fancybox__no-click,
.fancybox__no-click button {
    pointer-events: none
}

.fancybox__spinner {
    color: var(--fancybox-color, currentColor);
    height: 50px;
    left: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 50px
}

.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;
    bottom: 0;
    height: 100%;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    width: 100%
}

.fancybox__spinner svg circle {
    fill: none;
    stroke-width: 2.75;
    stroke-miterlimit: 10;
    stroke-dasharray: 1, 200;
    stroke-dashoffset: 0;
    stroke-linecap: round;
    stroke: currentColor;
    -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
    animation: fancybox-dash 1.5s ease-in-out infinite
}

@-webkit-keyframes fancybox-rotate {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@keyframes fancybox-rotate {
    to {
        -webkit-transform: rotate(1turn);
        transform: rotate(1turn)
    }
}

@-webkit-keyframes fancybox-dash {
    0% {
        stroke-dasharray: 1, 200;
        stroke-dashoffset: 0
    }

    50% {
        stroke-dasharray: 89, 200;
        stroke-dashoffset: -35px
    }

    to {
        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
    }

    to {
        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: fancybox-fadeIn .15s ease backwards;
    animation: fancybox-fadeIn .15s ease backwards
}

.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: fancybox-fadeOut .15s ease both;
    animation: fancybox-fadeOut .15s ease both
}

.fancybox-fadeIn {
    -webkit-animation: fancybox-fadeIn .15s ease both;
    animation: fancybox-fadeIn .15s ease both
}

.fancybox-fadeOut {
    -webkit-animation: fancybox-fadeOut .1s ease both;
    animation: fancybox-fadeOut .1s ease both
}

.fancybox-zoomInUp {
    -webkit-animation: fancybox-zoomInUp .2s ease both;
    animation: fancybox-zoomInUp .2s ease both
}

.fancybox-zoomOutDown {
    -webkit-animation: fancybox-zoomOutDown .15s ease both;
    animation: fancybox-zoomOutDown .15s ease both
}

.fancybox-throwOutUp {
    -webkit-animation: fancybox-throwOutUp .15s ease both;
    animation: fancybox-throwOutUp .15s ease both
}

.fancybox-throwOutDown {
    -webkit-animation: fancybox-throwOutDown .15s ease both;
    animation: fancybox-throwOutDown .15s ease both
}

@-webkit-keyframes fancybox-fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fancybox-fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fancybox-fadeOut {
    to {
        opacity: 0
    }
}

@keyframes fancybox-fadeOut {
    to {
        opacity: 0
    }
}

@-webkit-keyframes fancybox-zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale(.97) translate3d(0, 16px, 0);
        transform: scale(.97) translate3d(0, 16px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1) translateZ(0);
        transform: scale(1) translateZ(0)
    }
}

@keyframes fancybox-zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale(.97) translate3d(0, 16px, 0);
        transform: scale(.97) translate3d(0, 16px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: scale(1) translateZ(0);
        transform: scale(1) translateZ(0)
    }
}

@-webkit-keyframes fancybox-zoomOutDown {
    to {
        opacity: 0;
        -webkit-transform: scale(.97) translate3d(0, 16px, 0);
        transform: scale(.97) translate3d(0, 16px, 0)
    }
}

@keyframes fancybox-zoomOutDown {
    to {
        opacity: 0;
        -webkit-transform: scale(.97) translate3d(0, 16px, 0);
        transform: scale(.97) translate3d(0, 16px, 0)
    }
}

@-webkit-keyframes fancybox-throwOutUp {
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -30%, 0);
        transform: translate3d(0, -30%, 0)
    }
}

@keyframes fancybox-throwOutUp {
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -30%, 0);
        transform: translate3d(0, -30%, 0)
    }
}

@-webkit-keyframes fancybox-throwOutDown {
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 30%, 0);
        transform: translate3d(0, 30%, 0)
    }
}

@keyframes fancybox-throwOutDown {
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 30%, 0);
        transform: translate3d(0, 30%, 0)
    }
}

.fancybox__carousel .carousel__slide {
    scrollbar-color: #ccc hsla(0, 0%, 100%, .1);
    scrollbar-width: thin
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
    height: 8px;
    width: 8px
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
    background-color: hsla(0, 0%, 100%, .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-transition: none;
    transition: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.has-image .fancybox__content {
    background: rgba(0, 0, 0, 0);
    min-height: 1px;
    padding: 0
}

.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-height: 100%;
    max-width: 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 {
    height: auto;
    max-width: 100%
}

.has-image[data-image-fit=cover] {
    overflow: visible;
    -ms-touch-action: none;
    touch-action: none
}

.has-image[data-image-fit=cover] .fancybox__content {
    height: 100%;
    width: 100%
}

.has-image[data-image-fit=cover] .fancybox__image {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

.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 {
    -ms-flex-negative: 1;
    flex-shrink: 1;
    max-width: 100%;
    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 {
    height: 80%;
    width: 100%
}

.fancybox__carousel .fancybox__slide.has-html5video .fancybox__content,
.fancybox__carousel .fancybox__slide.has-video .fancybox__content {
    height: 540px;
    max-height: 100%;
    max-width: 100%;
    width: 960px
}

.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 {
    background: rgba(24, 24, 27, .9);
    color: #fff;
    padding: 0
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
    background: #e5e3df
}

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

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

.fancybox__thumbs {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    opacity: var(--fancybox-opacity, 1);
    padding: 0 3px;
    position: relative
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
    -webkit-animation: fancybox-fadeIn .15s ease-in backwards;
    animation: fancybox-fadeIn .15s ease-in backwards
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
    opacity: 0
}

.fancybox__thumbs .carousel__slide {
    -webkit-box-flex: 0;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    justify-content: center;
    margin: 0;
    overflow: visible;
    padding: 8px 3px;
    width: var(--fancybox-thumbs-width, 96px)
}

.fancybox__thumbs .carousel__slide .fancybox__thumb:after {
    border-color: var(--fancybox-accent-color, rgba(34, 213, 233, .96));
    border-radius: var(--fancybox-thumbs-border-radius, 4px);
    border-style: solid;
    border-width: 5px;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transition: opacity .15s ease;
    transition: opacity .15s ease
}

.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 {
    background-color: hsla(0, 0%, 100%, .1);
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: var(--fancybox-thumbs-border-radius, 4px);
    padding-top: calc(100%/(var(--fancybox-thumbs-ratio, 1.5)));
    position: relative;
    width: 100%
}

.fancybox__toolbar {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(8.1%, rgba(0, 0, 0, .006)), color-stop(15.5%, rgba(0, 0, 0, .021)), color-stop(22.5%, rgba(0, 0, 0, .046)), color-stop(29%, rgba(0, 0, 0, .077)), color-stop(35.3%, rgba(0, 0, 0, .114)), color-stop(41.2%, rgba(0, 0, 0, .155)), color-stop(47.1%, rgba(0, 0, 0, .198)), color-stop(52.9%, rgba(0, 0, 0, .242)), color-stop(58.8%, rgba(0, 0, 0, .285)), color-stop(64.7%, rgba(0, 0, 0, .326)), color-stop(71%, rgba(0, 0, 0, .363)), color-stop(77.5%, rgba(0, 0, 0, .394)), color-stop(84.5%, rgba(0, 0, 0, .419)), color-stop(91.9%, rgba(0, 0, 0, .434)), to(rgba(0, 0, 0, .44)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0, rgba(0, 0, 0, .006) 8.1%, rgba(0, 0, 0, .021) 15.5%, rgba(0, 0, 0, .046) 22.5%, rgba(0, 0, 0, .077) 29%, rgba(0, 0, 0, .114) 35.3%, rgba(0, 0, 0, .155) 41.2%, rgba(0, 0, 0, .198) 47.1%, rgba(0, 0, 0, .242) 52.9%, rgba(0, 0, 0, .285) 58.8%, rgba(0, 0, 0, .326) 64.7%, rgba(0, 0, 0, .363) 71%, rgba(0, 0, 0, .394) 77.5%, rgba(0, 0, 0, .419) 84.5%, rgba(0, 0, 0, .434) 91.9%, rgba(0, 0, 0, .44));
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    left: 0;
    opacity: var(--fancybox-opacity, 1);
    padding: 0;
    position: absolute;
    right: 0;
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, .4));
    top: 0;
    -ms-touch-action: none;
    touch-action: none;
    z-index: 20
}

@media (min-width:1024px) {
    .fancybox__toolbar {
        padding: 8px
    }
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
    -webkit-animation: fancybox-fadeIn .15s ease-in backwards;
    animation: fancybox-fadeIn .15s ease-in backwards
}

.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 {
    left: 50%;
    position: absolute;
    -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 {
    -webkit-font-smoothing: subpixel-antialiased;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    line-height: var(--carousel-button-height, 48px);
    min-width: 72px;
    padding: 0 10px;
    text-align: center
}

.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;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 30
}

.fancybox__container:-webkit-full-screen::backdrop {
    opacity: 0
}

.fancybox__container:-ms-fullscreen::backdrop {
    opacity: 0
}

.fancybox__container:fullscreen::-ms-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:first-child {
    display: none
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:first-child {
    display: none
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:first-child {
    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:first-child {
    display: none
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
    display: block
}

.slick-slider {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.slick-list,
.slick-slider {
    display: block;
    position: relative
}

.slick-list {
    margin: 0;
    overflow: hidden;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-list,
.slick-slider .slick-track {
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0)
}

.slick-track {
    display: block;
    left: 0;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    top: 0
}

.slick-track:after,
.slick-track:before {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    border: 1px solid transparent;
    display: block;
    height: auto
}

.slick-arrow.slick-hidden {
    display: none
}

:root {
    --text: #121212;
    --accent: #0262ac;
    --accent-hover: #0f7dd1;
    --white: #fff;
    --black: #1b1b1b;
    --red: #0262ac;/*#e31e24;*/
    --red-hover: #0f7dd1;/*#c50208;*/
    --gray: #f7f7f7
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 100;
    src: url(../fonts/Inter-ThinBETA.woff2) format("woff2")
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 200;
    src: url(../fonts/Inter-ExtraLightBETA.woff2) format("woff2")
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 300;
    src: url(../fonts/Inter-LightBETA.woff2) format("woff2")
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 400;
    src: url(../fonts/Inter-Regular.woff2) format("woff2")
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 500;
    src: url(../fonts/Inter-Medium.woff2) format("woff2")
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 600;
    src: url(../fonts/Inter-SemiBold.woff2) format("woff2")
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 700;
    src: url(../fonts/Inter-Bold.woff2) format("woff2")
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 800;
    src: url(../fonts/Inter-ExtraBold.woff2) format("woff2")
}

@font-face {
    font-family: Inter;
    font-style: normal;
    font-weight: 900;
    src: url(../fonts/Inter-Black.woff2) format("woff2")
}

::-webkit-input-placeholder {
    color: #666
}

::-moz-placeholder {
    color: #666
}

:-ms-input-placeholder {
    color: #666
}

::-ms-input-placeholder {
    color: #666
}

::placeholder {
    color: #666
}

::-moz-selection {
    background-color: var(--accent);
    color: #fff
}

::selection {
    background-color: var(--accent);
    color: #fff
}

input,
textarea {
    outline: none
}

input:focus:required:invalid,
textarea:focus:required:invalid {
    border-color: red
}

input:focus:required:invalid:required:valid,
textarea:focus:required:invalid:required:valid {
    border-color: green
}

body {
    background-color: #fff;
    color: var(--text);
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    padding-top: 280px
}

@media (max-width:996px) {
    body {
        font-size: 14px;
        padding-top: 300px
    }
}

@media (max-width:879px) {
    body {
        padding-top: 300px
    }
}

@media (max-width:768px) {
    body {
        padding-top: 240px
    }
}

@media (max-width:650px) {
    body {
        font-size: 12px;
        padding-bottom: 40px;
        padding-top: 120px
    }
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

ul {
    list-style-type: none
}

a,
ul {
    text-decoration: none
}

.container {
    margin: 0 auto;
    max-width: 1368px;
    padding: 0 15px;
    width: 100%
}

@media (max-width:650px) {
    .container {
        padding: 0 10px
    }
}

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

.row.no-wrap {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.row.items-center {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.row.justify-between {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.page__title {
    font-size: 2.3em;
    font-weight: 700;
    margin-bottom: 34px
}

@media (max-width:650px) {
    .page__title {
        margin-bottom: 20px
    }
}

.pagenavigation {
    margin: 20px 0;
    width: 100%
}

.pagenavigation ul {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-end;
    margin: 0;
    padding: 0;
    width: 100%
}

.pagenavigation ul li {
    line-height: 1;
    margin: 0 2px
}

.pagenavigation ul li span {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background-color: var(--red);
    border-radius: 50%;
    color: #fff;
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 26px;
    justify-content: center;
    width: 26px
}

.pagenavigation ul li a {
    color: #545454
}

.banner {
    margin-top: 53px
}

@media (max-width:650px) {
    .banner {
        margin-top: 40px
    }
}

.banner__body {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background-color: var(--gray);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    padding: 5px 0;
    width: 100%
}

@media (max-width:650px) {
    .banner__body {
        padding: 15px
    }
}

.banner__body img {
    height: 115px
}

@media (max-width:768px) {
    .banner__body img {
        height: 90px
    }
}

@media (max-width:650px) {
    .banner__body img {
        height: 80px
    }
}

.banner__text {
    margin-left: 55px
}

@media (max-width:768px) {
    .banner__text {
        margin-left: 20px
    }
}

@media (max-width:650px) {
    .banner__text {
        margin-left: 10px
    }
}

.banner__title {
    font-size: 1.75em;
    font-weight: 700;
    margin-bottom: 2px
}

@media (max-width:768px) {
    .banner__title {
        font-size: 1.4em
    }
}

@media (max-width:650px) {
    .banner__title {
        font-size: 1.3em
    }
}

.banner p {
    font-size: 1.75em;
    font-weight: 300
}

@media (max-width:768px) {
    .banner p {
        font-size: 1.3em
    }
}

.basket__wrap {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    width: 100%
}

@media (max-width:996px) {
    .basket__wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.basket__left {
    width: 100%
}

.basket__header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px
}

.basket__header .page__title {
    margin-bottom: 0
}

.basket__header a {
    color: var(--red);
    font-size: 1.1em;
    text-decoration: underline
}

.basket__info {
    background: #f7f7f7;
    border-radius: 7px;
    margin-left: 30px;
    min-width: 350px;
    padding: 30px
}

@media (max-width:1048px) {
    .basket__info {
        min-width: 300px;
        padding: 20px
    }
}

@media (max-width:996px) {
    .basket__info {
        margin: 0 auto;
        min-width: 350px;
        padding: 30px;
        width: 100%
    }
}

.basket__info__title {
    font-size: 2.3em;
    margin-bottom: 35px
}

.basket__info__list {
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 20px;
    padding-bottom: 10px
}

.basket__info__list .basket__info__bottom,
.basket__info__list__item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.14em;
    justify-content: space-between;
    margin-bottom: 14px;
    position: relative
}

.basket__info__list .basket__info__bottom__title,
.basket__info__list__item__title {
    background: #f7f7f7;
    font-weight: 500;
    position: relative
}

.basket__info__list .basket__info__bottom__content,
.basket__info__list__item__content {
    background: #f7f7f7;
    position: relative;
    width: 100px
}

.basket__info__list .basket__info__bottom__content span,
.basket__info__list__item__content span {
    font-weight: 700
}

.basket__info__list .basket__info__bottom:before,
.basket__info__list__item:before {
    border-bottom: 1px dashed #cacaca;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: calc(100% - 4px);
    width: 100%
}

.basket__info__bottom {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.14em;
    justify-content: space-between;
    margin-bottom: 14px;
    position: relative
}

.basket__info__bottom__title {
    background: #f7f7f7;
    font-weight: 500;
    position: relative
}

.basket__info__bottom__content {
    background: #f7f7f7;
    position: relative;
    width: 100px
}

.basket__info__bottom__content span {
    font-weight: 700
}

.basket__info__bottom:before {
    border-bottom: 1px dashed #cacaca;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: calc(100% - 4px);
    width: 100%
}

.basket__info__total {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    margin-top: 30px
}

.basket__info__total__text {
    color: var(--red);
    font-size: 1.45em;
    font-weight: 700
}

.basket__info__total__price {
    font-size: 2.3em;
    font-weight: 700
}

.basket__info__button {
    margin-top: 20px;
    text-align: center
}

.basket__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 50px;
    max-width: 750px
}

@media (max-width:650px) {
    .basket__item {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.basket__item__images {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width:650px) {
    .basket__item__images {
        margin-bottom: 20px;
        width: 100%
    }
}

.basket__item__right {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%
}

@media (max-width:650px) {
    .basket__item__right {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: flex-start
    }
}

.basket__item__image {
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    height: 127px;
    margin-right: 10px;
    width: 115px
}

@media (max-width:650px) {
    .basket__item__image {
        margin: 0 auto
    }
}

.basket__item__image img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}

.basket__item__like svg {
    fill: #fff;
    stroke: #000;
    stroke-width: 2px;
    cursor: pointer;
    height: 20px;
    width: 20px
}

.basket__item__like.active svg {
    stroke: var(--red)
}

.basket__item__info {
    font-size: 1.15em;
    margin-left: 30px;
    width: 270px
}

.basket__item__info .basket__item__delete {
    display: inline-block
}

@media (max-width:768px) {
    .basket__item__info {
        width: 250px
    }
}

@media (max-width:650px) {
    .basket__item__info {
        margin-left: 0;
        width: 100%
    }

    .basket__item__info .basket__item__delete {
        display: none
    }
}

.basket__item__title {
    font-weight: 400;
    margin-bottom: 20px
}

.basket__item__status {
    font-weight: 600;
    margin-bottom: 10px
}

.basket__item__time {
    margin-bottom: 20px
}

.basket__item__time span {
    font-weight: 600
}

.basket__item__delete {
    color: var(--red);
    display: none;
    font-size: .9em;
    text-decoration: underline
}

@media (max-width:650px) {
    .basket__item__delete {
        display: block;
        font-size: 1.1em;
        margin-left: 30px;
        margin-top: 0;
        text-align: center
    }

    .basket__item__price {
        margin-right: 20px
    }
}

.basket__item__price__old {
    color: #b1b1b1;
    font-size: 14px;
    margin-bottom: 5px;
    text-decoration: line-through
}

.basket__item__price__new {
    font-size: 1.75em;
    font-weight: 700
}

.basket__item__counter {
    background: #f8f8f8;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 56px;
    max-width: 120px;
    width: 120px
}

.basket__item__counter input {
    text-align: center
}

.basket__item__counter input,
.basket__item__counter__button {
    background-color: transparent;
    border: none;
    height: 100%;
    width: 40px
}

.basket__item__counter__button {
    color: #8e8e8e;
    cursor: pointer;
    font-size: 1.3em;
    font-weight: 700
}

.breadcrumbs {
    margin: 20px 0 10px
}

@media (max-width:996px) {
    .breadcrumbs {
        margin-top: 5px
    }
}

@media (max-width:768px) {
    .breadcrumbs {
        margin-top: 0
    }
}

.breadcrumbs ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

@media (max-width:996px) {
    .breadcrumbs ul {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.breadcrumbs ul li {
    margin-bottom: 10px;
    margin-right: 10px;
    padding-left: 10px;
    position: relative
}

.breadcrumbs ul li:last-child:before {
    display: none
}

.breadcrumbs ul li:first-child {
    padding-left: 0
}

.breadcrumbs ul li:before {
    color: #747474;
    content: ">";
    position: absolute;
    right: -15px;
    top: 0
}

.breadcrumbs ul li a {
    color: #747474;
    position: relative
}

.breadcrumbs ul li a:before {
    background-color: #747474;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 100%;
    -webkit-transition: all .4s;
    transition: all .4s;
    width: 100%
}

.breadcrumbs ul li a:hover:before {
    width: 0
}

.catalog__top {
    margin-bottom: 30px
}

.catalog__button_filter {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background-color: #f5f5f6;
    border-radius: 50%;
    cursor: pointer;
    display: none;
    height: 30px;
    justify-content: center;
    width: 30px
}

.catalog__button_filter img {
    width: 17px
}

@media (max-width:996px) {
    .catalog__button_filter {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.catalog__filter {
    margin-right: 30px;
    min-width: 250px
}

.catalog__filter.active {
    display: block;
    margin-right: 0;
    max-width: 0;
    min-width: 0;
    width: 0
}

.catalog__filter.active .catalog__filter__wrapper {
    background-color: #fff;
    height: 100%;
    left: 0;
    min-width: 250px;
    padding: 20px;
    position: fixed;
    top: 0;
    z-index: 10
}

.catalog__filter.active .catalog__filter__bg {
    display: block
}

.catalog__filter__bg {
    background-color: rgba(0, 0, 0, .5);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 8
}

@media (max-width:996px) {
    .catalog__filter {
        display: none
    }
}

.catalog__filter h4 {
    font-size: 1.5em;
    font-style: normal;
    font-weight: 700;
    margin-bottom: 30px
}

.catalog__filter__item {
    margin-bottom: 20px
}

.catalog__filter__item.open .catalog__filter__item__header img {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
}

.catalog__filter__item.open .catalog__filter__item__content {
    display: block
}

.catalog__filter__item.open .catalog__filter__item__content.row {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.catalog__filter__item__header {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    align-items: center;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-style: normal;
    font-weight: 500;
    justify-content: space-between;
    margin-bottom: 20px
}

.catalog__filter__item__header img {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.catalog__filter__item__content {
    display: none
}

.catalog__filter__item__number {
    margin-right: 15px;
    position: relative
}

.catalog__filter__item__number:last-child {
    margin-right: 0
}

.catalog__filter__item__number input {
    background-color: #f8f8f8;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    font-size: 1em;
    padding: 17px 16px 10px 40px;
    width: 120px
}

.catalog__filter__item__number label {
    bottom: 10px;
    left: 16px;
    position: absolute
}

.catalog__filter__item__checkbox input {
    display: none
}

.catalog__filter__item__checkbox input:checked+label:after {
    opacity: 1
}

.catalog__filter__item__checkbox label {
    cursor: pointer;
    display: block;
    font-style: normal;
    font-weight: 300;
    height: 20px;
    margin: 7px 0;
    padding-left: 34px;
    position: relative
}

.catalog__filter__item__checkbox label:before {
    background: #f7f7f7;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    content: "";
    height: 18px;
    left: 0;
    position: absolute;
    top: -2px;
    width: 18px
}

.catalog__filter__item__checkbox label:after {
    background-image: url(/images/dist/icons/check-filter.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 15px;
    left: 3px;
    opacity: 0;
    position: absolute;
    top: 3px;
    -webkit-transition: all .4s;
    transition: all .4s;
    width: 15px
}

.catalog__content {
    width: 100%
}

.catalog__sort {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    width: 100%
}

.catalog__sort__list {
    position: relative
}

.catalog__sort__list.active .catalog__sort__list__bg,
.catalog__sort__list.active .catalog__sort__list__content {
    display: block
}

.catalog__sort__list__name {
    cursor: pointer;
    font-size: 1em
}

.catalog__sort__list__name img {
    height: 20px;
    margin-left: 5px
}

.catalog__sort__list__content {
    background-color: #fff;
    border-radius: 4px;
    -webkit-box-shadow: 0 .1rem 2rem rgba(4, 6, 28, .102);
    box-shadow: 0 .1rem 2rem rgba(4, 6, 28, .102);
    display: none;
    left: 0;
    min-width: 250px;
    padding: 12px 0;
    position: absolute;
    top: calc(100% + 10px);
    z-index: 12
}

.catalog__sort__list__content ul li {
    cursor: pointer;
    font-size: 1em;
    padding: 7px 12px
}

.catalog__sort__list__content ul li:hover {
    background-color: #f7f7f7
}

.catalog__sort__list__bg {
    background-color: transparent;
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10
}

.catalog__sort__view {
    background-color: #f5f5f6;
    border-radius: 6rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
    margin-left: 25px;
    padding: 3px
}

.catalog__sort__view img {
    height: 17px;
    width: auto
}

.catalog__sort__view button {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background-color: transparent;
    border: none;
    border-radius: 6rem;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 30px;
    justify-content: center;
    width: 36px
}

.catalog__sort__view button.active {
    background-color: #fff
}

.catalog__products {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -15px
}

.catalog__products .product {
    margin: 0 15px 30px;
    width: calc(33.33333% - 30px)
}

@media (max-width:650px) {
    .catalog__products .product {
        margin: 0 0 15px;
        width: calc(50% - 5px)
    }

    .catalog__products {
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        margin: 0
    }
}

.catalog__products.list {
    margin: 0
}

.catalog__products.list .product {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 0 30px;
    padding: 10px;
    width: 100%
}

.catalog__products.list .product__body {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 0;
    width: 100%
}

.catalog__products.list .product__body,
.catalog__products.list .product__title {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.catalog__products.list .product__images {
    height: auto;
    margin-right: 10px;
    width: 100px
}

.catalog__products.list .product__price {
    margin: 0 auto;
    width: 100%
}

.catalog__products.list .product__bottom {
    min-width: 140px
}

.detail {
    margin-top: 30px
}

.detail__title {
    font-size: 2.3em;
    font-weight: 700;
    margin-bottom: 34px
}

@media (max-width:650px) {
    .detail__title {
        margin-bottom: 20px
    }
}

.detail__tabs {
    margin: 0 -25px 36px
}

@media (max-width:1140px) {
    .detail__tabs {
        margin: 0 0 36px
    }
}

@media (max-width:768px) {
    .detail__tabs {
        margin: 0 0 36px
    }
}

@media (max-width:650px) {
    .detail__tabs {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        margin-bottom: 20px
    }
}

.detail__tabs__item {
    cursor: pointer;
    font-size: 1.1em;
    margin: 0 25px
}

@media (max-width:768px) {
    .detail__tabs__item {
        margin: 0 10px
    }
}

@media (max-width:650px) {
    .detail__tabs__item {
        margin-bottom: 10px
    }
}

.detail__tabs__item:hover {
    color: var(--red)
}

.detail__tabs__item.active {
    color: var(--red);
    font-weight: 700
}

.detail__tab {
    display: none
}

.detail__tab.active {
    display: block
}

.detail__wrap {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media (max-width:1090px) {
    .detail__wrap {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.detail__info {
    min-width: 350px;
    width: 350px
}

@media (max-width:1090px) {
    .detail__info {
        width: calc(100% - 370px)
    }
}

@media (max-width:768px) {
    .detail__info {
        margin-bottom: 20px;
        min-width: none;
        width: 100%
    }
}

.detail__info a {
    color: var(--red);
    position: relative
}

.detail__info a:before {
    background-color: var(--red);
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 100%;
    -webkit-transition: all .4s;
    transition: all .4s;
    width: 100%
}

.detail__info a:hover:before {
    width: 0
}

.detail__info p {
    font-weight: 400;
    line-height: 1.8
}

.detail__info__link {
    margin-top: 16px
}

.detail__info__link__item {
    margin-bottom: 14px
}

.detail__images {
    margin-right: 20px
}

.detail__images__body {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    height: 390px;
    margin-bottom: 16px;
    min-width: 350px;
    text-align: center;
    width: 350px
}

@media (max-width:650px) {
    .detail__images__body {
        min-width: none;
        width: 100%
    }
}

.detail__images__body img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 90%
}

.detail__images p {
    color: #9b9b9b;
    font-size: .9em;
    font-style: italic;
    font-weight: 500
}

@media (max-width:1090px) {
    .detail__images {
        margin-bottom: 20px;
        margin-right: 0;
        width: 100%
    }

    .detail__images__body {
        width: 100%
    }
}

.detail__list {
    margin-bottom: 30px
}

.detail__list ul li {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    border-bottom: 1px dashed #cacaca;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 13px;
    justify-content: space-between;
    margin-bottom: 16px;
    text-align: left
}

.detail__list__title span {
    text-wrap: wrap;
    font-weight: 700
}

.detail__list__content {
    width: 170px
}

.detail__list__content,
.detail__list__title {
    position: relative
}

.detail__list__content span,
.detail__list__title span {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 2
}

.detail__list__content span img,
.detail__list__title span img {
    margin-left: 7px
}

.detail__list__content span div,
.detail__list__title span div {
    margin-right: 5px
}

.detail__list__content:before,
.detail__list__title:before {
    background-color: #fff;
    content: "";
    height: 30px;
    position: absolute;
    width: 100%
}

.detail__card {
    background: #f7f7f7;
    border-radius: 7px;
    height: 350px;
    margin-left: 20px;
    min-width: 350px;
    padding: 30px;
    width: 350px
}

@media (max-width:768px) {
    .detail__card {
        margin-bottom: 20px;
        margin-left: 0;
        min-width: none;
        width: 100%
    }
}

.detail__card__price {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 20px
}

.detail__card__price__new {
    font-size: 2.6em;
    font-weight: 800;
    margin-right: 20px
}

.detail__card__price__old {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: #b1b1b1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.detail__card__price__old span {
    position: relative
}

.detail__card__price__old span:before {
    background-color: #b1b1b1;
    content: "";
    height: 1px;
    left: 0;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    width: 100%
}

.detail__card__price__old img {
    margin-left: 5px
}

.detail__card__info {
    background-color: #fff;
    background: #fff;
    border-radius: 5px;
    color: #464646;
    font-size: 12px;
    margin-bottom: 30px;
    padding: 9px 20px
}

.detail__card__list {
    margin-bottom: 30px
}

.detail__card__list__item {
    margin-bottom: 17px
}

.detail__card__list__item img {
    margin-right: 15px
}

.detail__card__action .btn.primary {
    margin-right: 10px;
    width: 195px
}

.section {
    margin-top: 66px
}

@media (max-width:650px) {
    .section {
        margin-top: 40px
    }
}

.section__title {
    font-size: 2.3em;
    font-weight: 700;
    margin-bottom: 36px;
    text-align: center
}

@media (max-width:650px) {
    .section__title {
        font-size: 2em;
        margin-bottom: 30px
    }
}

.btn {
    border: none;
    border-radius: 5px;
    color: var(--white);
    cursor: pointer;
    display: inline-block;
    font-size: 1.15em;
    font-weight: 700;
    line-height: 1;
    padding: 12px 30px;
    -webkit-transition: all .4s;
    transition: all .4s
}

.btn.primary {
    background-color: var(--red)
}

.btn.primary:hover {
    background-color: var(--red-hover)
}

.btn.white {
    background-color: #fff;
    border: 1px solid #747474;
    padding: 12px 15px;
    color: #747474;
}

.btn.white:hover {
    background-color: #EEE;
    color: var(--black)
}

.btn.white:hover svg path {
    fill: var(--red)
}

.btn.upper {
    text-transform: uppercase
}

.btn.full {
    width: 100%
}

.modal {
    background-color: var(--black);
    color: var(--white);
    display: none;
    text-align: center
}

.modal__title {
    font-size: 1.4em;
    font-weight: 700;
    margin-bottom: 10px
}

.modal__description {
    font-size: .9em
}

.modal__header {
    margin-bottom: 40px
}

.form__field {
    margin-bottom: 20px
}

.form__field input {
    border: none;
    font-family: Inter, sans-serif;
    font-size: .9em;
    font-weight: 400;
    height: 40px;
    padding: 0 10px;
    width: 100%
}

.form__field input::-webkit-input-placeholder {
    font-family: Inter, sans-serif;
    font-weight: 400
}

.form__field input::-moz-placeholder {
    font-family: Inter, sans-serif;
    font-weight: 400
}

.form__field input:-ms-input-placeholder {
    font-family: Inter, sans-serif;
    font-weight: 400
}

.form__field input::-ms-input-placeholder {
    font-family: Inter, sans-serif;
    font-weight: 400
}

.form__field input::placeholder {
    font-family: Inter, sans-serif;
    font-weight: 400
}

.mb-75 {
    margin-bottom: 75px
}

@media (max-width:650px) {
    .dots {
        display: none
    }
}

.dots ul {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    margin-top: 30px
}

.dots ul li {
    background-color: #d4d4d4;
    border-radius: 50%;
    height: 12px;
    margin: 0 9px;
    -webkit-transition: all .4s;
    transition: all .4s;
    width: 12px
}

.dots ul li button {
    display: none
}

.dots ul li.slick-active {
    background-color: var(--accent)
}

.info-toogle {
    cursor: pointer;
    height: 19px;
    position: relative
}

.info-toogle__body {
    background-color: #fff;
    border-radius: 3px;
    bottom: 110%;
    -webkit-box-shadow: 0 0 13px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, .1);
    color: var(--text);
    display: none;
    font-size: 12px;
    min-width: 150px;
    padding: 10px;
    position: absolute;
    right: 0
}

.info-toogle:hover .info-toogle__body {
    display: block
}

.header {
    background-color: #fff;
    left: 0;
    padding: 10px 0px 20px;
    position: fixed;
    top: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
    width: 100%;
    z-index: 3
}

@media (max-width:650px) {

    .header .header__top__phone,
    .header .logo {
        display: none
    }
}

.header.active {
    padding: 20px 0 5px
}

.header.active .header__top {
    margin-bottom: 10px
}

.header.active .buy-step {
    height: 0;
    opacity: 0;
    margin-top: 0px;
    padding-bottom: 0px;
}

@media (max-width:650px) {
    .header.active {
        padding: 10px 0
    }

    .header.active .header__top {
        margin-bottom: 0
    }
}

.header__burger {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: none;
    height: 25px;
    margin-right: 15px;
    width: 25px
}

@media (max-width:996px) {
    .header__burger {
        display: block
    }
}

.header__burger span {
    background-color: var(--text);
    display: block;
    height: 2px;
    position: relative;
    -webkit-transition: all .4s;
    transition: all .4s;
    width: 100%
}

.header__burger span:before {
    background-color: var(--text);
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: -7px;
    -webkit-transition: all .4s;
    transition: all .4s;
    width: 100%
}

.header__burger span:after {
    background-color: var(--text);
    content: "";
    height: 2px;
    left: 0;
    position: absolute;
    top: 7px;
    -webkit-transition: all .4s;
    transition: all .4s;
    width: 100%
}

.header__burger:hover span {
    background-color: var(--red)
}

.header__burger:hover span:after,
.header__burger:hover span:before {
    background-color: var(--red)
}

.header__burger.active span {
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg)
}

.header__burger.active span:before {
    left: 0;
    top: 0;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg)
}

.header__burger.active span:after {
    opacity: 0
}

@media (max-width:996px) {
    .header {
        padding: 20px 0
    }
}

@media (max-width:650px) {
    .header {
        padding: 10px 0
    }
}

.header__top {
    margin-bottom: 5px;
    -webkit-transition: all .4s;
    transition: all .4s
}

@media (max-width:996px) {
    .header__top {
        margin-bottom: 20px
    }
}

@media (max-width:650px) {
    .header__top {
        margin-bottom: 0
    }
}

.header__top__location {
    margin-right: 40px
}

@media (max-width:996px) {
    .header__top__location {
        margin-right: 20px
    }
}

.header__top__location a {
    color: #333
}

.header__top__location a img {
    height: 20px;
    margin-right: 5px;
    width: auto
}

.header__top__location a span {
    display: block;
    position: relative
}

.header__top__location a span:before {
    background-color: #333;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 100%;
    -webkit-transition: all .4s;
    transition: all .4s;
    width: 100%
}

.header__top__location a:hover span:before {
    width: 0
}

@media (max-width:879px) {
    .header__top__menu {
        display: none
    }
}

.header__top__menu ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header__top__menu ul li {
    margin: 0 20px
}

@media (max-width:996px) {
    .header__top__menu ul li {
        margin: 0 10px
    }
}

.header__top__menu ul li a {
    color: var(--text);
    font-size: 1.1em;
    -webkit-transition: all .4s;
    transition: all .4s
}

.header__top__menu ul li a:hover {
    color: var(--red)
}

.header__top__sale {
    border: 2px solid var(--red);
    border-radius: 54px;
    color: var(--red);
    font-weight: 600;
    line-height: 1;
    margin-left: 20px;
    padding: 7px 16px;
    -webkit-transition: all .4s;
    transition: all .4s
}

@media (max-width:996px) {
    .header__top__sale {
        margin-left: 10px
    }
}

.header__top__sale svg {
    margin-right: 9px
}

.header__top__sale svg path {
    -webkit-transition: all .4s;
    transition: all .4s
}

.header__top__sale:hover {
    background-color: var(--red);
    color: var(--white)
}

.header__top__sale:hover svg path {
    fill: var(--white)
}

.header__top__phone {
    color: var(--text);
    font-size: 1.3em;
    font-weight: 600;
    text-align: right;
    -webkit-transition: all .4s;
    transition: all .4s
}

.header__top__phone span {
    display: block
}

.header__top__phone__text span {
    font-size: .85em
}

.header__top__phone img {
    margin-right: 5px
}

.header__top__phone:hover {
    color: var(--red)
}

.header .logo {
    margin-right: 15px
}

.header .logo.mobile {
    display: none
}

@media (max-width:650px) {
    .header .logo.mobile {
        display: block
    }
}

@media (max-width:768px) {
    .header .logo {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }
}

@media (max-width:650px) {
    .header .logo {
        margin-right: 5px
    }
}

.header .logo img {
    height: 78px;
    width: auto
}

@media (max-width:650px) {
    .header .logo img {
        height: 50px
    }
}

.header__body__actions {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    width: 100%
}

.header__body__actions__left {
    padding-left: 30px;
    width: 100%
}

@media (max-width:1200px) {
    .header__body__actions__left {
        padding-left: 0
    }
}

@media (max-width:768px) {
    .header__body__actions__left {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        margin-top: 10px;
        order: 3
    }
}

.header__body__catalog {
    position: relative
}

.header__body__catalog__btn {
    background-color: var(--accent);
    border-radius: 4px 0 0 4px;
    color: var(--white);
    font-size: 1.2em;
    font-weight: 500;
    padding: 11px 14px
}

.header__body__catalog__btn img {
    margin-right: 10px
}

.header__body__catalog__menu {
    background-color: #fff;
    border-radius: 4px;
    -webkit-box-shadow: 0 0 13px 0 rgba(0, 0, 0, .27);
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, .27);
    display: none;
    left: 0;
    min-width: 320px;
    padding: 20px;
    position: absolute;
    top: 100%;
    z-index: 10
}

.header__body__catalog__menu ul li {
    margin-bottom: 15px
}

.header__body__catalog__menu ul li:last-child {
    margin-bottom: 0
}

.header__body__catalog__menu ul li a {
    color: var(--text);
    cursor: pointer;
    font-size: 1.1em;
    -webkit-transition: all .4s;
    transition: all .4s
}

.header__body__catalog__menu ul li a:hover {
    color: var(--red)
}

.header__body__catalog:hover .header__body__catalog__btn {
    background-color: var(--accent-hover)
}

.header__body__catalog:hover .header__body__catalog__menu {
    display: block
}

@media (max-width:996px) {
    .header__body__catalog__btn img {
        margin-right: 0
    }

    .header__body__catalog__btn span {
        display: none
    }
}

.header__body__search {
    margin-right: 12px;
    position: relative;
    width: 100%
}

.header__body__search:hover .header__body__search__list {
    display: block
}

.header__body__search__list {
    background-color: #fff;
    -webkit-box-shadow: 0 0 13px 0 rgba(0, 0, 0, .17);
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, .17);
    display: none;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%
}

@media (max-width:996px) {
    .header__body__search__list {
        max-height: 200px;
        overflow: hidden;
        overflow-y: auto
    }
}

.header__body__search__list ul li {
    border-bottom: 1px solid #e7e7e7;
    padding: 10px
}

.header__body__search__list ul li:last-child {
    border-bottom: none
}

.header__body__search__list ul li a {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--text);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.header__body__search__list ul li a:hover {
    color: var(--accent)
}

.header__body__search__list ul li a img {
    height: 50px;
    margin-right: 10px;
    -o-object-fit: contain;
    object-fit: contain;
    width: auto
}

.header__body__search__list ul li a span {
    display: block
}

.header__body__search h4 {
    font-size: 1.4em;
    margin-bottom: 20px;
    text-align: center
}

.header__body__search input {
    border: 2px solid var(--accent);
    font-size: 1.1em;
    height: 43px;
    line-height: 1.4;
    min-width: 370px;
    padding: 0 20px;
    width: 100%
}

@media (max-width:1070px) {
    .header__body__search input {
        min-width: 300px
    }
}

@media (max-width:996px) {
    .header__body__search input {
        min-width: 150px
    }
}

.header__body__search input::-webkit-input-placeholder {
    color: #7d7d7d;
    font-family: Inter, sans-serif;
    font-size: 1.2em;
    line-height: 1
}

.header__body__search input::-moz-placeholder {
    color: #7d7d7d;
    font-family: Inter, sans-serif;
    font-size: 1.2em;
    line-height: 1
}

.header__body__search input:-ms-input-placeholder {
    color: #7d7d7d;
    font-family: Inter, sans-serif;
    font-size: 1.2em;
    line-height: 1
}

.header__body__search input::-ms-input-placeholder {
    color: #7d7d7d;
    font-family: Inter, sans-serif;
    font-size: 1.2em;
    line-height: 1
}

.header__body__search input::placeholder {
    color: #7d7d7d;
    font-family: Inter, sans-serif;
    font-size: 1.2em;
    line-height: 1
}

.header__body__search button {
    background-color: var(--accent);
    border: none;
    border-radius: 0 4px 4px 0;
    color: var(--white);
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 500;
    height: 43px;
    padding: 11px 14px;
    -webkit-transition: all .4s;
    transition: all .4s
}

.header__body__search button:hover {
    background-color: var(--accent-hover)
}

@media (max-width:768px) {
    .header__body__search {
        margin-right: 0
    }
}

.header__body__personal__item {
    color: var(--text);
    font-size: 1em;
    margin: 0 12px;
    position: relative;
    text-align: center;
    -webkit-transition: all .4s;
    transition: all .4s
}

@media (max-width:650px) {
    .header__body__personal__item {
        margin: 0 5px
    }
}

.header__body__personal__item:last-child {
    margin-right: 0
}

.header__body__personal__item span {
    display: block
}

.header__body__personal__item img,
.header__body__personal__item svg {
    margin-bottom: 5px
}

.header__body__personal__item svg {
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8)
}

.header__body__personal__item svg path {
    -webkit-transition: all .4s;
    transition: all .4s
}

.header__body__personal__item__count {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background-color: var(--red);
    border-radius: 50%;
    color: var(--white);
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    font-size: 12px;
    height: 20px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 0;
    top: -13px;
    width: 20px
}

@media (max-width:650px) {
    .header__body__personal__item__count {
        font-size: 10px;
        height: 15px;
        width: 15px
    }
}

.header__body__personal__item.search {
    display: none
}

.header__body__personal__item.search svg {
    margin-bottom: 2px
}

@media (max-width:996px) {
    .header__body__personal__item.search {
        display: block
    }
}

.header__body__personal__item:hover {
    color: var(--red)
}

.header__body__personal__item:hover svg path {
    fill: var(--red)
}

@media (max-width:768px) {
    .header__body__personal {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }
}

@media (max-width:650px) {
    .header__body__personal {
        display: none
    }
}

@media (max-width:768px) {
    .header__body {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.cart:hover .header__body__personal__item_cartlist{
    display: block
}


.header__body__personal__item_cartlist {
    background-color: #fff;
    -webkit-box-shadow: 0 0 13px 0 rgba(0, 0, 0, .17);
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, .17);
    display: none;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%
}

@media (max-width:996px) {
    .header__body__personal__item_cartlist {
        max-height: 200px;
        overflow: hidden;
        overflow-y: auto
    }
}

.header__body__personal__item_cartlist ul li {
    border-bottom: 1px solid #e7e7e7;
    padding: 10px
}

.header__body__personal__item_cartlist ul li:last-child {
    border-bottom: none
}


.header__body__personal__item_cartlist ul li:hover {
    color: var(--accent)
}

.header__body__personal__item_cartlist ul li img {
    height: 40px;
    margin-right: 10px;
    -o-object-fit: contain;
    object-fit: contain;
}

.header__body__personal__item_cartlist ul li span {
    display: block
}


.mobile-menu {
    background-color: #fff;
    height: 100%;
    left: 0;
    left: -1000px;
    min-width: 400px;
    padding: 15px;
    position: fixed;
    top: 60px;
    -webkit-transition: all .4s;
    transition: all .4s;
    width: 50%;
    z-index: 20
}

.mobile-menu.active {
    left: 0
}

@media (min-width:996px) {
    .mobile-menu.active {
        display: none !important
    }
}

@media (max-width:650px) {
    .mobile-menu {
        min-width: 0;
        top: 50px;
        width: 70%
    }
}

.mobile-menu__bg {
    background-color: rgba(0, 0, 0, .27);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 60px;
    width: 100%;
    z-index: 19
}

@media (max-width:650px) {
    .mobile-menu__bg {
        top: 50px
    }
}

.mobile-menu__bg.active {
    display: block
}

@media (min-width:996px) {
    .mobile-menu__bg.active {
        display: none !important
    }
}

.mobile-menu__wrap {
    z-index: 3
}

.mobile-menu h4 {
    font-size: 1.2em
}

.mobile-menu h4,
.mobile-menu nav {
    margin-bottom: 15px
}

.mobile-menu ul li {
    margin-bottom: 7px
}

.mobile-menu ul li a {
    color: var(--text);
    cursor: pointer;
    font-size: 1.1em;
    -webkit-transition: all .4s;
    transition: all .4s
}

.mobile-menu ul li a:hover {
    color: var(--red)
}

.mobile-search .header__body__search__btn {
    margin-left: -3px
}

@media (max-width:650px) {
    .mobile-search {
        padding: 15px
    }

    .mobile-search .header__body__search input {
        min-width: 240px !important
    }

    .location {
        padding: 20px
    }
}

.location__header {
    margin-bottom: 40px;
    text-align: center
}

.location__header h4 {
    font-size: 1.5em
}

@media (max-width:650px) {
    .location__header {
        margin-bottom: 20px
    }
}

.location__form {
    margin-bottom: 20px
}

.location__form input {
    border: 2px solid var(--accent);
    font-size: 1.1em;
    height: 43px;
    line-height: 1.4;
    min-width: 370px;
    padding: 0 20px;
    width: 100%
}

@media (max-width:650px) {
    .location__form input {
        min-width: 250px;
        width: 100%
    }

    .location__form {
        margin-bottom: 5px
    }
}

.location ul li {
    background-color: #fff;
    cursor: pointer;
    font-size: 1.2em;
    margin-bottom: 2px;
    padding: 10px;
    -webkit-transition: all .4s;
    transition: all .4s
}

.location ul li:hover {
    background-color: #e7e7e7
}

.mobile_nav {
    background-color: #fff;
    bottom: 0;
    -webkit-box-shadow: 0 0 13px 0 rgba(0, 0, 0, .27);
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, .27);
    display: none;
    left: 0;
    padding: 20px 0 10px;
    position: fixed;
    width: 100%;
    z-index: 5
}

@media (max-width:650px) {
    .mobile_nav {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex
    }
}

.mobile_nav__item {
    color: var(--text);
    font-size: 1em;
    position: relative;
    text-align: center;
    -webkit-transition: all .4s;
    transition: all .4s;
    width: 20%
}

.mobile_nav__item:last-child {
    margin-right: 0
}

.mobile_nav__item span {
    display: block
}

.mobile_nav__item img,
.mobile_nav__item svg {
    margin-bottom: 0
}

.mobile_nav__item svg {
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8)
}

.mobile_nav__item svg path {
    -webkit-transition: all .4s;
    transition: all .4s
}

.mobile_nav__item__count {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background-color: var(--red);
    border-radius: 50%;
    color: var(--white);
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    font-size: 12px;
    height: 20px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: calc(50% - 20px);
    top: -10px;
    width: 20px
}

@media (max-width:650px) {
    .mobile_nav__item__count {
        font-size: 10px;
        height: 15px;
        width: 15px
    }
}

.mobile_nav__item:hover {
    color: var(--red)
}

.mobile_nav__item:hover svg path {
    fill: var(--red)
}

.personal__sidebar {
    margin-right: 40px;
    min-width: 240px;
    width: 240px
}

.personal__sidebar ul li {
    margin-bottom: 30px
}

.personal__sidebar ul li a {
    color: var(--text);
    font-size: 1.15em;
    font-weight: 300;
    -webkit-transition: all .4s;
    transition: all .4s
}

.personal__sidebar ul li a.active,
.personal__sidebar ul li a:hover {
    color: var(--red)
}

@media (max-width:768px) {
    .personal__sidebar ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        width: 100%
    }

    .personal__sidebar ul li {
        margin-bottom: 15px;
        margin-right: 15px
    }

    .personal__sidebar {
        margin-bottom: 30px;
        width: 100%
    }
}

.personal__body {
    margin-top: 40px
}

@media (max-width:768px) {
    .personal__body {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.personal__content {
    width: 100%
}

.personal__content h4 {
    font-size: 1.75em;
    font-weight: 700;
    margin-bottom: 40px
}

.personal__form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.personal__form__field {
    margin-bottom: 18px;
    margin-right: 30px;
    width: 60%
}

@media (max-width:996px) {
    .personal__form__field {
        margin-right: 0;
        width: 100%
    }
}

.personal__form__field:nth-child(2n) {
    width: calc(40% - 60px)
}

@media (max-width:996px) {
    .personal__form__field:nth-child(2n) {
        width: 100%
    }
}

.personal__form__field label {
    display: inline-block;
    font-size: 1.15em;
    font-weight: 500;
    position: relative
}

.personal__form__field label span {
    color: var(--red);
    position: absolute;
    right: -10px;
    top: 0
}

.personal__form__field input {
    background: #f8f8f8;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    font-size: 1.15em;
    height: 45px;
    margin-top: 12px;
    padding: 0 10px;
    width: 100%
}

.personal__form p {
    font-size: 1.15em;
    font-weight: 500;
    margin-bottom: 12px;
    position: relative;
    width: 100%
}

.personal__form__checkbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%
}

.personal__form__checkbox input {
    display: none
}

.personal__form__checkbox input:checked+label:after {
    opacity: 1
}

.personal__form__checkbox label {
    cursor: pointer;
    display: block;
    font-size: 1.15em;
    margin-right: 40px;
    padding-left: 37px;
    position: relative
}

.personal__form__checkbox label:before {
    background: #f7f7f7;
    border: 1px solid #dfdfdf;
    border-radius: 20px;
    content: "";
    height: 20px;
    left: 0;
    position: absolute;
    top: 0;
    width: 20px
}

.personal__form__checkbox label:after {
    background: var(--accent);
    border-radius: 20px;
    content: "";
    height: 11px;
    left: 5.7px;
    opacity: 0;
    position: absolute;
    top: 5.6px;
    -webkit-transition: all .4s;
    transition: all .4s;
    width: 11px
}

.personal__form__date {
    margin-top: 30px;
    width: 100%
}

.personal__form__date input {
    background: #f8f8f8;
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    font-size: 1.15em;
    height: 45px;
    margin-top: 12px;
    padding: 0 10px;
    width: 100%;
    width: 60%
}

@media (max-width:996px) {
    .personal__form__date input {
        width: 100%
    }
}

.personal__form__button {
    margin-top: 35px;
    width: 100%
}

.personal__form__button button {
    height: 50px
}

.personal__shop {
    width: 100%
}

.personal__shop__item {
    border-radius: 10px;
    -webkit-box-shadow: 0 0 13px 0 rgba(0, 0, 0, .17);
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, .17);
    margin-bottom: 30px;
    width: 100%
}

.personal__shop__item__header {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    background-color: #f5f6f9;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding: 20px 30px
}

.personal__shop__item__header__title {
    font-size: 1.3em;
    font-weight: 700;
    margin-bottom: 5px
}

.personal__shop__item__header__number {
    color: var(--accent);
    font-size: 1em
}

.personal__shop__item__header__price {
    font-size: 1.4em;
    font-weight: 700
}

.personal__shop__item__body {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: space-between;
    padding: 20px 30px
}

@media (max-width:996px) {
    .personal__shop__item__body {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.personal__shop__item__info {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 15px
}

.personal__shop__item__status {
    background-color: #99a4af;
    border-radius: 50px;
    color: #fff;
    font-weight: 700;
    margin-left: 20px;
    padding: 4px 7px
}

.personal__shop__item__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.personal__shop__item__images__item {
    border: 1px solid #dfdfdf;
    border-radius: 3px;
    height: 100px;
    margin: 0 5px;
    width: 90px
}

.personal__shop__item__images__item:last-child {
    margin-right: 0
}

.personal__shop__item__images__item img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}

@media (max-width:650px) {
    .personal__shop__item__images__item {
        margin-bottom: 10px
    }
}

.personal__favourites {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: -10px
}

.personal__favourites .product {
    margin: 10px;
    width: calc(25% - 20px)
}

@media (max-width:1200px) {
    .personal__favourites .product {
        width: calc(33.33333% - 20px)
    }
}

@media (max-width:996px) {
    .personal__favourites .product {
        width: calc(50% - 20px)
    }
}

@media (max-width:650px) {
    .personal__favourites .product {
        margin: 10px 0;
        width: 100%
    }

    .personal__favourites {
        margin: 0
    }
}

.tab-map {
    display: none
}

.tab-map.active {
    display: block
}

@media (max-width:650px) {
    .map__actions {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.map__tabs {
    background: #f7f7f7;
    border-radius: 7px;
    margin-right: 30px
}

@media (max-width:650px) {
    .map__tabs {
        margin-bottom: 10px;
        margin-right: 0;
        width: 100%
    }
}

.map__tabs__button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    font-size: 1.15em;
    min-width: 150px;
    padding: 13px 30px
}

.map__tabs__button.active,
.map__tabs__button:hover {
    color: var(--red)
}

.map__tabs__button.active svg path,
.map__tabs__button:hover svg path {
    fill: var(--red);
    stroke: var(--red)
}

.map__tabs__button svg {
    margin-right: 7px
}

.map__tabs__button svg path {
    fill: var(--text)
}

@media (max-width:650px) {
    .map__tabs__button {
        width: 50%
    }
}

.map__search {
    position: relative;
    width: 100%
}

.map__search input {
    background: #f7f7f7;
    border: none;
    border-radius: 7px;
    font-size: 1.15em;
    font-style: normal;
    font-weight: 400;
    height: 50px;
    padding-left: 60px;
    width: 100%
}

.map__search input::-webkit-input-placeholder {
    color: var(--text);
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: 400
}

.map__search input::-moz-placeholder {
    color: var(--text);
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: 400
}

.map__search input:-ms-input-placeholder {
    color: var(--text);
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: 400
}

.map__search input::-ms-input-placeholder {
    color: var(--text);
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: 400
}

.map__search input::placeholder {
    color: var(--text);
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: 400
}

.map__search img {
    left: 16px;
    position: absolute;
    top: 14px
}

.map__search__list {
    background-color: #fff;
    -webkit-box-shadow: 0 0 13px 0 rgba(0, 0, 0, .17);
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, .17);
    display: none;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 2
}

.map__search__list ul li {
    border-bottom: 1px solid #e7e7e7;
    cursor: pointer;
    padding: 10px
}

.map__search:hover .map__search__list {
    display: block
}

.map__sort {
    margin-top: 26px
}

.map__sort_item {
    margin-right: 30px
}

.map__sort_item span {
    font-size: 1.15em;
    font-style: normal;
    font-weight: 600;
    margin-right: 15px
}

.map__sort_item select {
    -moz-appearance: none;
    -webkit-appearance: none;
    background-color: transparent;
    border: none;
    font-size: 1.15em;
    outline: transparent;
    text-decoration: underline
}

.map__sort_item select::-ms-expand {
    display: none
}

@media (max-width:650px) {
    .map__sort_item {
        margin-bottom: 10px;
        margin-right: 0;
        width: 100%
    }

    .map__sort {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.map__table {
    font-size: 1.15em;
    margin-top: 16px;
    overflow: hidden;
    overflow-x: auto;
    width: 100%
}

@media (max-width:996px) {
    .map__table {
        font-size: 1em
    }
}

.map__table table {
    border-spacing: 0;
    width: 100%
}

.map__table table thead tr td {
    color: var(--accent);
    padding: 16px 20px
}

.map__table table thead tr td:first-child {
    padding-left: 30px
}

@media (max-width:650px) {
    .map__table table thead tr td:first-child {
        padding-left: 5px
    }
}

@media (max-width:996px) {
    .map__table table thead tr td {
        padding: 10px
    }
}

@media (max-width:650px) {
    .map__table table thead tr td {
        padding: 5px
    }
}

.map__table table tbody tr {
    background-color: #f9f9f9
}

.map__table table tbody tr:nth-child(2n) {
    background-color: #fff
}

.map__table table tbody tr td {
    padding: 16px 20px
}

@media (max-width:996px) {
    .map__table table tbody tr td {
        padding: 10px
    }
}

@media (max-width:650px) {
    .map__table table tbody tr td {
        padding: 5px
    }
}

.map__table table tbody tr td button {
    font-size: 1em;
    margin: 0 auto;
    min-width: 190px
}

@media (max-width:650px) {
    .map__table table tbody tr td button {
        min-width: 120px;
        padding: 10px
    }
}

.map__table table tbody tr td:first-child {
    font-weight: 600;
    min-width: 300px;
    padding-left: 30px
}

@media (max-width:650px) {
    .map__table table tbody tr td:first-child {
        min-width: 200px;
        padding-left: 5px
    }
}

.map__table table tbody tr td:nth-child(2) {
    min-width: 200px
}

@media (max-width:650px) {
    .map__table table tbody tr td:nth-child(2) {
        min-width: 170px
    }
}

.map__table table tbody tr td:nth-child(3) {
    font-size: 1.5em;
    font-weight: 600;
    min-width: 120px
}

@media (max-width:996px) {
    .map__table table tbody tr td:nth-child(3) {
        font-size: 1.3em
    }
}

@media (max-width:650px) {
    .map__table table tbody tr td:nth-child(3) {
        min-width: 100px
    }
}

.map__table table tbody tr td:last-child {
    padding-right: 30px;
    text-align: right
}

@media (max-width:650px) {
    .map__table table tbody tr td:last-child {
        padding-right: 5px
    }
}

.map__maps {
    margin-top: 16px
}

.more_sale {
    background-color: #f1f7fc;
    border-radius: 10px;
    padding: 40px
}

@media (max-width:996px) {
    .more_sale {
        margin-bottom: 30px
    }
}

@media (max-width:650px) {
    .more_sale {
        padding: 20px
    }
}

.more_sale__title {
    font-size: 1.5em;
    font-weight: 600;
    margin-bottom: 30px
}

.more_sale__item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    border-bottom: 1px solid #dfdfdf;
    justify-content: space-between;
    margin-bottom: 20px;
    padding-bottom: 20px
}

.more_sale__item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.more_sale__item__images {
    margin-right: 10px
}

.more_sale__item__images img {
    height: 80px;
    -o-object-fit: contain;
    object-fit: contain;
    width: 80px
}

@media (max-width:650px) {
    .more_sale__item__images img {
        height: 50px;
        width: 50px
    }
}

.more_sale__item__title {
    font-size: 1em;
    font-weight: 600;
    margin-right: 10px;
    text-transform: uppercase
}

.more_sale__item__price {
    font-size: 1.3em;
    font-weight: 700;
    margin-right: 15px;
    white-space: nowrap
}

.more_sale__item .btn {
    padding: 12px 20px
}

@media (max-width:650px) {
    .more_sale__item .btn {
        padding: 12px 7px
    }
}

.news-item {
    border: 1px solid #e7e7e7;
    border-radius: 3px;
    color: var(--text);
    padding: 27px 30px
}

.news-item,
.news-item span {
    display: block
}

.news-item__images {
    margin: 0 auto;
    text-align: center
}

.news-item__images img {
    height: 175px;
    margin: 0 auto;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    width: 256px
}

@media (max-width:650px) {
    .news-item__images img {
        width: 100%
    }
}

.news-item__title {
    font-weight: 700;
    height: 50px;
    margin-top: 33px;
    text-transform: uppercase
}

@media (max-width:768px) {
    .news-item__title {
        margin-top: 20px
    }
}

.news-item__date {
    color: #b1b1b1;
    margin-top: 5px
}

.order__wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

@media (max-width:996px) {
    .order__wrapper {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.order__left {
    width: 100%
}

.order__warning {
    background-color: #ffd8d9;
    border-radius: 7px;
    color: #b85c5d;
    font-size: 1em;
    margin-bottom: 20px;
    padding: 15px
}

.order__warning h6 {
    font-size: 1em;
    margin-bottom: 5px
}

.order__info {
    margin-left: 30px;
    min-width: 350px;
    width: 350px
}

@media (max-width:1048px) {
    .order__info {
        margin-left: 15px;
        min-width: 300px;
        width: 300px
    }
}

@media (max-width:996px) {
    .order__info {
        margin: 0 auto 0 0;
        min-width: 350px;
        width: 100%
    }
}

.order__info__contacts,
.order__info__list,
.order__info__total {
    background: #f7f7f7;
    border-radius: 7px;
    margin-bottom: 15px;
    padding: 30px;
    width: 100%
}

@media (max-width:1048px) {

    .order__info__contacts,
    .order__info__list,
    .order__info__total {
        padding: 20px
    }
}

@media (max-width:996px) {

    .order__info__contacts,
    .order__info__list,
    .order__info__total {
        padding: 30px
    }
}

.order__info__contacts h4 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px
}

.order__info__contacts__item {
    font-size: 1.17em;
    margin-bottom: 20px
}

.order__info__contacts__item:last-child {
    margin-bottom: 0
}

.order__info__contacts__item__title {
    font-weight: 600;
    margin-bottom: 10px
}

.order__info__contacts__item a {
    color: var(--text)
}

.order__info__contacts__item a:hover {
    color: var(--red)
}

.order__info__list__items {
    border-bottom: 1px solid #d3d3d3;
    margin-bottom: 20px;
    padding-bottom: 20px
}

.order__info__list__items:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0
}

.order__info__list__item {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 1.05em;
    justify-content: space-between;
    position: relative
}

.order__info__list__item:before {
    border-bottom: 1px solid #d3d3d3;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: calc(100% - 5px);
    width: 100%
}

.order__info__list__item__title {
    background: #f7f7f7;
    font-weight: 400;
    position: relative
}

.order__info__list__item__content {
    background: #f7f7f7;
    position: relative;
    width: 100px
}

.order__info__list__item__content span {
    font-weight: 600
}

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

.order__info__total__text {
    color: var(--red);
    font-size: 1.5em;
    font-weight: 600
}

.order__info__total__price {
    font-size: 2.5em;
    font-weight: 700
}

.order__info__total__button {
    margin-top: 30px;
    text-align: center
}

.product {
    border: 1px solid #e7e7e7;
    border-radius: 10px;
    overflow: hidden;
    padding: 23px;
    position: relative
}

.product__like {
    left: 23px;
    position: absolute;
    top: 20px
}

.product__like.active svg {
    fill: var(--red)
}

.product__like svg {
    stroke: var(--red);
    fill: #fff;
    stroke-width: 3px
}

@media (max-width:650px) {
    .product__like {
        left: 10px;
        top: 10px
    }
}

.product__images {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 214px;
    justify-content: center;
    width: 100%
}

.product__images img {
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    width: 100%
}

@media (max-width:650px) {
    .product__images {
        height: 150px
    }
}

.product__body {
    margin-top: 30px
}

.product__title {
    color: var(--text);
    display: block;
    font-weight: 700;
    height: 65px;
    margin-bottom: 5px;
    text-transform: uppercase
}

@media (max-width:650px) {
    .product__title {
        font-size: 1em
    }
}

.product__price {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.product__price__new {
    font-size: 1.45em;
    font-weight: 800;
    margin-right: 10px
}

@media (max-width:650px) {
    .product__price__new {
        font-size: 1.7em
    }
}

.product__price__old {
    color: #b1b1b1;
    position: relative;
    font-size: 0.9em;
    width: fit-content;
    margin: auto 0;
}

@media (max-width:650px) {
    .product__price__old {
        font-size: 1.4em
    }
}

.product__price__old:before {
    background-color: #b1b1b1;
    content: "";
    height: 1px;
    left: 0;
    margin-top: -1px;
    position: absolute;
    top: 50%;
    width: 100%
}

.product__action {
    margin-top: 16px;
    text-align: center
}

@media (max-width:650px) {
    .product__action button {
        padding: 12px;
        width: 100%
    }

    .product {
        padding: 10px
    }
}

.slider-news__body {
    position: relative
}

.slider-news .slick-slide {
    margin: 0 15px
}

@media (max-width:996px) {
    .slider-news .slick-slide {
        margin: 0 10px
    }
}

.slider-news .slider__arrow {
    margin-top: -10px
}

.slider-news .slider__arrow.prev {
    left: -10px
}

.slider-news .slider__arrow.next {
    right: -10px
}

.slider-products {
    overflow: hidden
}

.slider-products__body {
    position: relative
}

.slider-products .slick-slide {
    margin: 0 10px
}

@media (max-width:996px) {
    .slider-products .slick-slide {
        margin: 0 10px
    }
}

@media (max-width:768px) {
    .slider-products .slick-slide {
        margin: 0 4px
    }
}

.slider-products .slider__arrow {
    margin-top: -10px
}

.slider-products .slider__arrow.prev {
    left: -10px
}

.slider-products .slider__arrow.next {
    right: -10px
}

@media (max-width:650px) {
    .slider-products .slider__arrow {
        display: none !important
    }
}

@media (max-width:768px) {
    .slider-products .slick-list {
        margin: 0 -5px
    }
}

.footer {
    background-color: var(--gray);
    margin-top: 45px;
    padding: 45px 0
}

.footer__body {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

@media (max-width:768px) {
    .footer__body {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.footer__menus {
    width: 100%
}

@media (max-width:768px) {
    .footer__menus {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.footer__menus__col {
    margin-right: 50px
}

@media (max-width:996px) {
    .footer__menus__col {
        margin-right: 30px
    }
}

@media (max-width:650px) {
    .footer__menus__col {
        margin-bottom: 20px;
        margin-right: 0;
        width: 100%
    }
}

.footer__menus h6 {
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 16px
}

.footer__menus ul li {
    margin-bottom: 5px
}

.footer__menus ul li a {
    color: var(--text);
    font-size: 1.1em;
    font-weight: 300;
    -webkit-transition: all .4s;
    transition: all .4s
}

.footer__menus ul li a:hover {
    color: var(--red)
}

@media (max-width:768px) {
    .footer__info {
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        align-items: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: space-between;
        margin-top: 30px;
        width: 100%
    }
}

@media (max-width:650px) {
    .footer__info {
        margin-top: 0
    }
}

.footer__personal {
    color: var(--text);
    font-size: 1.2em;
    margin-top: 20px;
    -webkit-transition: all .4s;
    transition: all .4s
}

.footer__personal svg {
    margin-right: 8px
}

.footer__personal svg path {
    fill: var(--red)
}

.footer__personal:hover {
    color: var(--red)
}

.footer .social {
    margin-top: 45px
}

@media (max-width:768px) {
    .footer .social {
        margin-top: 0
    }
}

.footer .social a {
    margin: 0 14px
}

@media (max-width:650px) {
    .footer .social a {
        margin: 0 10px
    }

    .footer .social a img {
        height: 30px
    }
}

.footer .header__top__phone {
    font-size: 1.2em
}

.partners {
    margin-top: 10px
}

.partners img {
    height: 70px;
    margin: 0 auto;
    -o-object-fit: contain;
    object-fit: contain
}

@media (max-width:650px) {
    .partners img {
        height: 50px
    }
}

.partners__item {
    text-align: center
}

.buy-step {
    margin-top: 22px;
    overflow: hidden;
    padding-bottom: 15px;
    -webkit-transition: all .4s;
    transition: all .4s
}

@media (max-width:996px) {
    .buy-step {
        padding-bottom: 0
    }
}

.buy-step__item {
    line-height: normal;
    position: relative
}

.buy-step__item:last-child:before {
    display: none
}

.buy-step__item:before {
    background-image: url(/images/dist/icons/arrow.svg);
    background-repeat: no-repeat;
    background-size: contain;
    content: "";
    height: 16px;
    position: absolute;
    right: -30px;
    top: calc(50% - 8px);
    width: 16px
}

.buy-step__item__icon {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background-color: #f3f3f3;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-weight: 400;
    height: 55px;
    justify-content: center;
    margin-right: 8px;
    min-width: 55px;
    width: 55px
}

.buy-step__item__icon img {
    height: 28px;
    width: auto
}

@media (max-width:1110px) {
    .buy-step__item {
        font-size: 1em;
        padding-right: 10px
    }

    .buy-step__item__icon {
        height: 40px;
        min-width: 40px;
        width: 40px
    }

    .buy-step__item__icon img {
        height: 20px
    }

    .buy-step__item:before {
        display: none
    }
}

@media (max-width:996px) {
    .buy-step__item {
        margin-bottom: 20px;
        width: 33.33333%
    }
}

@media (max-width:650px) {
    .buy-step__item {
        width: 50%
    }
}

@media (max-width:996px) {
    .buy-step__body {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        justify-content: flex-start !important
    }

    .buy-step {
        margin-top: 0
    }
}

@media (max-width:768px) {
    .buy-step {
        display: none
    }
}

.head {
    margin-top: 20px
}

@media (max-width:996px) {
    .head {
        margin-top: 20px
    }
}

@media (max-width:650px) {
    .head {
        margin-top: 10px
    }
}

.head__body {
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end
}

@media (max-width:768px) {
    .head__body {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
}

.head__body_banner {
    position: relative;
    width: calc(100% - 353px)
}

@media (max-width:996px) {
    .head__body_banner {
        height: 350px;
        width: calc(100% - 303px)
    }
}

@media (max-width:768px) {
    .head__body_banner {
        width: 100%
    }
}

@media (max-width:650px) {
    .head__body_banner {
        height: 200px
    }

    .head__body_banner .slider__arrow {
        display: none !important
    }
}

.head__body_banner__dots {
    bottom: 15px;
    position: absolute;
    width: 100%
}

@media (max-width:650px) {
    .head__body_banner__dots {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        justify-content: center
    }

    .head__body_banner__dots ul li {
        margin: 0 5px
    }
}

.head__slider {
    width: 100%
}

.head__slider__item {
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    height: 400px
}

@media (max-width:996px) {
    .head__slider__item {
        height: 350px
    }
}

@media (max-width:650px) {
    .head__slider__item {
        height: 200px
    }
}

.head .slider__arrow.prev {
    left: 18px
}

@media (max-width:650px) {
    .head .slider__arrow.prev {
        left: -15px
    }
}

.head .slider__arrow.next {
    right: 18px
}

@media (max-width:650px) {
    .head .slider__arrow.next {
        right: -15px
    }
}

.head__sale {
    background-repeat: no-repeat;
    background-size: contain;
    background: #e3e2e9;
    border-radius: 3px;
    -webkit-box-shadow: 0 0 15px 0 hsla(0, 0%, 69%, .25);
    box-shadow: 0 0 15px 0 hsla(0, 0%, 69%, .25);
    cursor: pointer;
    display: block;
    height: 300px;
    width: 330px
}

.head__sale img {
    left: -6px;
    position: relative;
    top: -35px
}

@media (max-width:1148px) {
    .head__sale img {
        left: -5px;
        width: 100%
    }
}

@media (max-width:996px) {
    .head__sale {
        height: 250px;
        width: 280px
    }
}

@media (max-width:768px) {
    .head__sale {
        display: none
    }
}

.head__mini_banners {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 400px;
    justify-content: space-between;
    padding-left: 15px;
    position: relative;
    top: -3px;
    width: 100%
}

.head__mini_banners a {
    cursor: pointer;
    display: block
}

.head__mini_banners img {
    border-radius: 5px;
    height: 190px;
    max-width: 330px;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%
}

@media (max-width:996px) {
    .head__mini_banners {
        height: 350px;
        top: 0
    }

    .head__mini_banners img {
        height: 173px
    }
}

@media (max-width:768px) {
    .head__mini_banners {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        height: auto;
        margin-top: 20px;
        max-width: none;
        padding-left: 0;
        top: 0;
        width: 100%
    }

    .head__mini_banners a {
        width: calc(50% - 7px)
    }

    .head__mini_banners img {
        max-width: none
    }
}

@media (max-width:650px) {
    .head__mini_banners img {
        height: 90px
    }
}

.slider__arrow {
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    align-items: center;
    background-color: hsla(0, 0%, 100%, .58);
    border: none;
    border-radius: 50%;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 57px;
    justify-content: center;
    position: absolute;
    top: calc(50% - 30px);
    width: 57px;
    z-index: 2
}

.slider__arrow img {
    margin: 0;
    position: relative;
    right: -2px
}

.slider__arrow.prev {
    left: 0
}

.slider__arrow.prev img {
    right: 2px;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.slider__arrow.next {
    right: 0
}

@media (max-width:650px) {
    .slider__arrow {
        height: 40px;
        top: calc(50% - 20px);
        width: 40px
    }
}
