.alert-block {
    position: fixed;
    right: 1.5rem;
    top: 1.5rem;
    z-index: 13000
}

@media(max-width:575.98px) {
    .alert-block {
        right: 1rem !important;
        top: 1rem !important;
        left: 1rem !important
    }
}

.sc-alert {
    background: #fff;
    -webkit-box-shadow: 0 2px 4px rgba(40, 41, 61, .04), 0 8px 16px rgba(96, 97, 112, .16);
    box-shadow: 0 2px 4px rgba(40, 41, 61, .04), 0 8px 16px rgba(96, 97, 112, .16);
    padding: 0;
    margin-bottom: 1.5rem;
    overflow: hidden
}

@media(min-width:420px) {
    .sc-alert {
        width: 370px;
        min-height: 100px
    }
    .sc-alert-content {
        min-height: 100px
    }
}

.sc-alert-success .sc-alert-icon {
    background-color: #09b83a
}

.sc-alert-danger .sc-alert-icon {
    background-color: #d73e3e
}

.sc-alert-warning .sc-alert-icon {
    background-color: #e57a00
}

.sc-alert-close {
    position: absolute;
    right: .5rem;
    top: .5rem;
    background: rgba(0, 0, 0, 0);
    padding: 0
}

.sc-alert-icon {
    max-width: 80px;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 80px;
    flex: 0 0 80px
}

.sc-alert-text {
    color: #1c1c28;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

.sc-alert-text a {
    color: #0063f7;
    text-decoration: underline
}

.sc-alert-text a:hover {
    text-decoration: none
}

.sc-alert [data-bs-dismiss=modal] {
    display: none !important
}

.animated {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

.modal {
    -webkit-transform: translateY(500px);
    -ms-transform: translateY(500px);
    transform: translateY(500px);
    -webkit-transition: opacity .3s, -webkit-transform .4s;
    transition: transform .4s, opacity .3s, -webkit-transform .4s;
    -o-transition: transform .4s, opacity .3s;
    opacity: 0;
    z-index: 12201
}

#cartModal {
    z-index: 12203
}

.modal-backdrop.show {
    opacity: .8
}

.modal.show {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    opacity: 1
}

.modal-dialog {
    max-width: 440px
}

.modal-dialog.wide {
    max-width: 1024px
}

.modal-content {
    border-radius: .75rem;
    border: 0;
    -webkit-box-shadow: 0 2px 8px rgba(40, 41, 61, .08), 0 20px 32px rgba(96, 97, 112, .24);
    box-shadow: 0 2px 8px rgba(40, 41, 61, .08), 0 20px 32px rgba(96, 97, 112, .24);
    overflow: hidden
}

.modal-content a {
    text-decoration: underline
}

.modal-content a:hover {
    text-decoration: none
}

.modal-content .sc-btn:not(.sc-btn-with-icon) {
    width: 100%
}

.modal-header {
    border-bottom: transparent;
    border-top-left-radius: .75rem;
    border-top-right-radius: .75rem
}

@media(max-width:767.98px) {
    .modal-dialog {
        margin: 0;
        padding-top: 60px;
        width: 100%;
        max-width: 100%
    }
    .modal-content {
        height: calc(100vh - 60px);
        border-bottom-left-radius: 0;
        border-bottom-right-radius: 0
    }
    .modal-header {
        padding: 1rem !important
    }
    .modal-title {
        font-size: 1rem !important
    }
}

.modal-header .btn-close {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    opacity: .7
}

.modal-header .btn-close:hover {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.modal-header .btn-close:focus {
    -webkit-box-shadow: none;
    box-shadow: none
}

.modal-title {
    line-height: 1.5rem;
    padding-right: 3.625rem
}

@media(max-width:767.98px) {
    .modal-body {
        overflow-y: auto
    }
}

@media(min-width:768px) {
    .modal-body {
        min-height: 300px
    }
}

.modal-body-text {
    line-height: 17px
}

.modal-body iframe {
    max-width: 100%
}

.modal-body-agree a {
    text-decoration: underline
}

.modal-body-agree a:hover {
    text-decoration: none
}

.modal-body-agree ol,
.modal-body-agree ul {
    padding-left: 1rem
}

.modal-body-agree ol+p,
.modal-body-agree p+ol,
.modal-body-agree p+p,
.modal-body-agree p+ul,
.modal-body-agree ul+p {
    padding-top: 1rem
}

.modal-body-cart-items {
    max-height: 320px;
    overflow-y: auto;
    border-bottom: 1px solid #f2f4f8
}

.modal-body-cart-items>* {
    margin-bottom: 1rem;
    -webkit-transition: border-color .3s ease-out;
    -o-transition: border-color .3s ease-out;
    transition: border-color .3s ease-out
}

.modal-body-cart-items>:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
    border-color: #eaeaea
}

.modal-body-product-img {
    border: 1px solid #f2f4f8;
    min-width: 64px
}

.modal-body-product-img img {
    height: 64px;
    width: auto
}

.modal-body-product:hover {
    -webkit-filter: none;
    filter: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

@media(max-width:370px) {
    .modal-body-product .sc-module-rating-box {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }
}

.modal-body-product .sc-module-rating-star {
    width: 1rem;
    height: 1rem;
    cursor: pointer
}

@media(min-width:413px) {
    .modal-body-product .sc-module-rating-star {
        width: 1.5rem;
        height: 1.5rem
    }
}

.modal-body-product .sc-module-rating-star+.sc-module-rating-star {
    margin-left: .5rem
}

@media(min-width:992px) {
    #back-top {
        right: 2.5rem;
        width: 3rem;
        height: 3rem;
        line-height: 3rem
    }
    .modal-body-quick-view-img {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 510px;
        flex: 0 0 510px;
        max-width: 510px
    }
}

.modal-body-quick-view-img .sc-module-sticker+.sc-module-sticker {
    margin-left: .25rem
}

.modal-body-quick-view .sc-product-actions {
    border: 1px solid #f2f4f8
}

.modal-body-quick-view .sc-product-content-attributes,
.modal-body-quick-view .sc-product-content-description {
    border-bottom: 0
}

.modal-body-quick-view .sc-product-content-text ol,
.modal-body-quick-view .sc-product-content-text ul {
    padding-left: 1rem
}

.modal-body-quick-view .sc-product-content-text ol+p,
.modal-body-quick-view .sc-product-content-text p+ol,
.modal-body-quick-view .sc-product-content-text p+p,
.modal-body-quick-view .sc-product-content-text p+ul,
.modal-body-quick-view .sc-product-content-text ul+p {
    margin-top: 1rem
}

@media(max-width:413px) {
    .modal-body-quick-view .sc-btn-text {
        display: none
    }
    .modal-body-quick-view .sc-product-buttons .sc-btn {
        padding: 0 !important;
        width: 40px !important;
        height: 40px
    }
}

.modal-backdrop {
    z-index: 12200;
    background-color: rgba(0, 0, 0, .4)
}

.modal-open {
    overflow: hidden
}

.modal textarea {
    height: 200px !important;
    line-height: 1 !important
}

#cartModal .sc-buy-one-click {
    padding: 0 !important
}

#cartModal .sc-buy-one-click-title {
    font-size: 12px !important;
    -webkit-box-flex: 0 !important;
    -ms-flex-positive: 0 !important;
    flex-grow: 0 !important
}

#cartModal .sc-buy-one-click-title+form {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1
}

#modalCartBody p+p,
.sc-popup-success p+p {
    margin-top: 1rem
}

#blogCommentModal .form-control {
    max-width: 100%
}

.sc-location {
    -webkit-box-shadow: 0 0 2px rgba(40, 41, 61, .04), 0 4px 8px rgba(96, 97, 112, .16);
    box-shadow: 0 0 2px rgba(40, 41, 61, .04), 0 4px 8px rgba(96, 97, 112, .16)
}

.sc-location+.sc-location {
    margin-top: 1rem
}

.sc-location .sc-btn-secondary {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 20px;
    height: 20px
}

.sc-location .sc-btn-secondary .sc-btn-icon-chevron {
    -webkit-mask-image: url(../img/sprite.svg#include--location-chevron);
    mask-image: url(../img/sprite.svg#include--location-chevron);
    width: 10px;
    height: 10px
}

.sc-location-collapsed {
    max-height: 0;
    opacity: 0;
    -webkit-transition: max-height .3s ease-out, padding-top .3s ease-out, opacity .3s ease-out .15s;
    -o-transition: max-height .3s ease-out, padding-top .3s ease-out, opacity .3s ease-out .15s;
    transition: max-height .3s ease-out, padding-top .3s ease-out, opacity .3s ease-out .15s;
    overflow: hidden
}

.sc-location iframe {
    max-width: 100%;
    border-radius: .25rem !important;
    max-height: 320px !important
}

.sc-location.active .sc-btn-secondary .sc-btn-icon {
    background: #fff;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.sc-location.active .sc-location-collapsed {
    max-height: 800px;
    padding-top: 1rem;
    opacity: 1
}

@-webkit-keyframes pulsation {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }
    50% {
        opacity: .5
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@keyframes pulsation {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 1
    }
    50% {
        opacity: .5
    }
    to {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

@-webkit-keyframes iconOpacity {
    0%,
    100% {
        opacity: 0
    }
    40%,
    80% {
        opacity: .96
    }
    60% {
        opacity: 1
    }
}

@keyframes iconOpacity {
    0%,
    100% {
        opacity: 0
    }
    40%,
    80% {
        opacity: .96
    }
    60% {
        opacity: 1
    }
}

#sc_fixed_contact_button {
    position: fixed;
    right: 15px;
    bottom: 72px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    cursor: pointer;
    z-index: 1020
}

#sc_fixed_contact_button.clicked {
    z-index: 1041
}

#sc_fixed_contact_substrate {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 0;
    display: none
}

#sc_fixed_contact_substrate.active {
    z-index: 1020;
    display: block
}

.sc-fixed-contact-pulsation {
    width: 80px;
    height: 80px;
    border-radius: 50px;
    position: absolute;
    left: -15px;
    top: -15px;
    z-index: -1;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-animation: 2s infinite pulsation;
    animation: 2s infinite pulsation
}

@media(min-width:420px) {
    #sc_fixed_contact_button {
        right: 30px;
        width: 70px;
        height: 70px
    }
    .sc-fixed-contact-pulsation {
        width: 100px;
        height: 100px
    }
}

.sc-fixed-contact-icon {
    color: #fff;
    width: 100%;
    font-size: 20px;
    overflow: hidden
}

.sc-fixed-contact-icon .fa-envelope {
    -webkit-animation: 3s infinite iconOpacity;
    animation: 3s infinite iconOpacity;
    width: 20px;
    height: 20px
}

@media(min-width:420px) {
    .sc-fixed-contact-icon {
        font-size: 28px
    }
    .sc-fixed-contact-icon .fa-envelope {
        width: 28px;
        height: 28px
    }
}

.sc-fixed-contact-text {
    font-size: 7px;
    text-transform: uppercase;
    line-height: 9px;
    color: #fff
}

.sc-fixed-contact-dropdown {
    position: absolute;
    bottom: 60px;
    right: 36px;
    padding: 20px;
    border-radius: 6px;
    background: #fff;
    display: block;
    opacity: 0;
    z-index: -1;
    margin-bottom: 20px;
    -webkit-transition: margin-bottom .3s, opacity .3s;
    -o-transition: margin-bottom .3s, opacity .3s;
    transition: margin-bottom .3s, opacity .3s;
    -webkit-box-shadow: 5px 12px 30px rgba(0, 0, 0, .35);
    box-shadow: 5px 12px 30px rgba(0, 0, 0, .35);
    visibility: hidden;
    min-width: 250px
}

@media(min-width:420px) {
    .sc-fixed-contact-text {
        font-size: 8px;
        line-height: 10px
    }
    .sc-fixed-contact-dropdown {
        right: 60px
    }
}

.sc-fixed-contact-dropdown.expanded {
    margin-bottom: 0;
    opacity: .98;
    z-index: 1;
    visibility: visible
}

.sc-fixed-contact-item {
    color: #333;
    font-size: 14px
}

.sc-fixed-contact-item:hover {
    color: #0063f7
}

.sc-fixed-contact-item:not(:last-child) {
    margin-bottom: 18px
}

.sc-fixed-contact-item-icon {
    display: block;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 36px;
    flex: 0 0 36px;
    max-width: 36px;
    width: 36px;
    height: 36px;
    border-radius: 100%;
    margin-right: 10px;
    color: #fff
}

.sc-fixed-contact-item-icon svg {
    width: 20px !important;
    height: 20px
}

.sc-fixed-contact-messenger {
    background: #0084ff
}

.sc-fixed-contact-viber {
    background: #7c529d
}

.sc-fixed-contact-telegram {
    background: #2ca5e0
}

.sc-fixed-contact-skype {
    background: #31c4ed
}

.sc-fixed-contact-whatsapp {
    background: #25d366
}

.sc-fixed-contact-email {
    background: #50a8ff
}

.sc-fixed-contact-call {
    background: #3cba8b
}

.sc-fixed-contact-contacts {
    background: #141e1a
}

@media(max-width:991px) {
    .sc-fixed-contact-viber-desktop {
        display: none !important
    }
}

@media(min-width:768px) {
    #sc_fixed_contact_button {
        bottom: 30px
    }
}

.popover {
    font-family: Montserrat, sans-serif;
    border-color: transparent;
    border-radius: .5rem;
    -webkit-box-shadow: 0 2px 8px rgba(40, 41, 61, .04), 0 16px 24px rgba(96, 97, 112, .16);
    box-shadow: 0 2px 8px rgba(40, 41, 61, .04), 0 16px 24px rgba(96, 97, 112, .16);
    z-index: 1019
}

@media(min-width:360px) {
    .popover {
        min-width: 260px
    }
}

@media(min-width:992px) {
    .popover {
        z-index: 19999
    }
}

.popover-arrow:before {
    border-color: transparent !important
}

.popover-header {
    border-bottom: 0;
    background-color: rgba(0, 0, 0, 0);
    font-weight: 600;
    font-size: 1.075rem;
    padding: 1rem 1rem .5rem
}

.popover-header:before {
    border-color: transparent !important
}

.popover-body {
    padding: 0 1rem 1rem;
    font-size: .75rem;
    color: #555770
}

.popover-body p+p {
    margin-top: 1rem
}

.popover-body ul {
    padding: 1rem 0 1rem .75rem
}

/*********************************************************************************************/
nav#top #logo {
    display: none !important;
}
.bl-regist-login {display: flex;justify-content: flex-end;align-items: center;color: #FFF;font-family: Montserrat;font-size: 14px;font-style: normal;font-weight: 400;line-height: normal;text-decoration-line: underline;text-decoration-style: solid;text-decoration-skip-ink: auto;text-decoration-thickness: auto;text-underline-offset: auto;text-underline-position: from-font;}

.bl-regist-login button {
    color: #FFF;
    font-family: Montserrat;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 10;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    margin-bottom: 0px !important;
    padding: 0px 5px !important;
    /* padding-inline: 0px; */
    /* text-transform: uppercase; */
    display: flex !important;
    flex-direction: row !important;
    z-index: 1;
    height: 40px;
    justify-content: center !important;
    align-items: center !important;
}
.bl-regist-login button span{
    height: 30px;
    margin-top: -110px;
}
.bl-regist-login a {
    padding: 0 5px;
}

.sc-switcher {
    background: transparent !important;
    color: #ffffff;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    /* text-decoration-line: underline; */
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    display: flex;
}

.sc-switcher button.active {
    background: transparent;
    border: none;
    color: #8D6F49;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    margin-top: -5px;
}

.sc-switcher button {
    padding: 0 !important;
    line-height: normal !important;
}

.sc-switcher button:nth-child(2):before {
    content: "/";
    padding: 0 5px;
    color: #fff;
    text-decoration: none !important;
    text-decoration-line: underline;
}

div#oct_desktop_language {
    margin-right: 60px;
}
div#logo {
    padding-right: 15px;
}

button#menuToggleButton {
    width: 181px !important;
    height: 31px;
    flex-shrink: 0;
    border-radius: 5px !important;
    background: #8D6F49;
    color: #FFF;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.col-md-3.d-none.d-xl-flex {
    align-items: center;
}
button#menuToggleButton span {
    color: #FFF;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-left: 10px;
}
.bl-fon-top a {
    color: #000;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    text-decoration: none;
}

.bl-messendger ul {
    display: flex;
}

.bl-messendger ul li {
    margin-right: 5px;
}

.text-messend {
    color: #9A9A9A;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.bl-fon-top {
    padding: 0 15px;
}

.bl-messendger {
    padding-right: 15px;
    z-index: 1000;
    position: relative;
}

.d-flex.align-items-center.header-search-box {
    height: 43px;
}

.header-buttons.d-flex.justify-content-between.justify-content-md-end.align-items-center.pe-md-3 {
    align-items: center;
}

button#cart {
    margin-top: 10px;
    /* border: none; */
}
div#slideshow-plus-0 .slick-slide {
    height: 507px !important;
    padding: 0;
}

div#slideshow-plus-0  .d-flex.flex-column.flex-md-row.justify-content-md-between.h-100 {
    background-position: CENTER;
    background-repeat: no-repeat;
    background-size: cover;
}
.sc-slideshow-plus-info.order-1.order-md-0.flex-grow-1.d-flex.flex-column {
    justify-content: flex-end;
    padding-left: 97px;
    padding-bottom: 97px;
    max-width: 80%;
}

.sc-slideshow-plus-info.order-1.order-md-0.flex-grow-1.d-flex.flex-column .h1 {
    color: #FFF !important;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.sc-slideshow-plus-info.order-1.order-md-0.flex-grow-1.d-flex.flex-column p {
    color: #FFF !important;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500 !important;
    line-height: normal;
}

.sc-slideshow-plus-info.order-1.order-md-0.flex-grow-1.d-flex.flex-column a {
    width: 258px;
    height: 62px;
    flex-shrink: 0;
    border-radius: 10px !important;
    background: #8D6F49 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF !important;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.sc-slideshow-plus-block .slick-dots {
    text-align: center;
    display: flex;
    width: 100%;
    justify-content: center;
}

.slick-dots li.slick-active button {
    background: #8d6f49 !important;
}
.bl-over-name {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.see-all a {
    color: #8D6F49;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.see-all a svg {
    margin-left: 10px;
}

.sc-module-header.fsz-22.dark-text.fw-700.text-center.text-md-start.mt-0.mt-md-2.mb-2 {
    color: #000;
    font-family: Montserrat;
    font-size: 32px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
}

.sc-module-header.fsz-22.dark-text.fw-700.text-center.text-md-start.mt-0.mt-md-2.mb-2:before {
    content: "";
    width: 100%;
    height: 2px;
    background: #8d6f49;
    position: absolute;
    display: flex;
    bottom: -5px;
}
.row.pt-3.pt-xl-4.sc-html-module {
    background: #06051c;
    margin-top: 50px;
}
.row.pt-3.pt-xl-4.sc-html-module:before {
    content:"";
    background: #06051c;
    position: absolute;
    left: 0;
    width: 100%;
    height: 723px;
    z-index: -1;
    margin-top: -24px;
}
.content-block.mt-3.mt-xl-4 {
    border: none;
    box-shadow: none;
    background: #06051C;
}

.zag-bl-about {
    color: #FFF;
    font-family: Montserrat;
    font-size: 48px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    position: relative;
    margin-bottom: 23px;
}

.bl-about p {
    color: #FFF;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.bl-preim-about {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.on-preim-about {
    width: 33.3%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 30px;
    min-height: 300px;
}

.cifra {
    color: #FFF;
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    color: #FFF;
    font-family: Montserrat;
    font-size: 46px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.cifra + div {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 45px;
}

.on-preim-about p {
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.zag-bl-about:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 2px;
    background: #fff;
    bottom: 0;
    left: 0;
}

.bl-about {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 60px;
    padding-bottom: 60px;
}

.on-preim-about:nth-child(1) {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='191' height='170' viewBox='0 0 191 170' fill='none'%3E%3Cg clip-path='url(%23clip0_1_139)'%3E%3Cpath d='M189.445 64.3941L181.941 56.8803C179.868 54.8051 176.509 54.8051 174.437 56.8803L170.686 60.6355L161.103 51.0398C162.97 43.9643 161.223 36.1316 155.682 30.5834L140.677 15.559C119.959 -5.18633 86.3645 -5.18633 65.643 15.559L95.6559 30.5834V36.809C95.6559 42.4436 97.8908 47.849 101.873 51.8334L118.168 68.1494C123.709 73.6977 131.531 75.4475 138.598 73.5781L148.181 83.1738L144.431 86.9291C142.358 89.0043 142.358 92.3678 144.431 94.443L151.935 101.957C154.007 104.032 157.366 104.032 159.439 101.957L189.451 71.9047C191.517 69.8328 191.517 66.4693 189.445 64.3941ZM94.3693 59.3473C93.1424 58.1188 92.1012 56.7607 91.103 55.3795L6.5126 134.459C-1.96634 142.388 -2.19514 155.772 6.00526 163.987C14.2057 172.201 27.5757 171.972 35.4942 163.479L114.457 78.7877C113.144 77.8215 111.838 76.8387 110.664 75.6633L94.3693 59.3473Z' fill='white' fill-opacity='0.15'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1_139'%3E%3Crect width='191' height='170' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E");
    background-repeat: no-repeat no-repeat;
    background-position: center center;
    /* background-size: cover; */
}
.on-preim-about:nth-child(2) {background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='270' height='270' viewBox='0 0 270 270' fill='none'%3E%3Cpath d='M117.967 68.9766L78.6272 4.09746C77.5725 1.55514 74.8303 0 71.8772 0H8.45352C1.62442 0 -2.37285 7.68867 1.54532 13.2785L60.2387 97.0734C75.885 82.4766 95.8186 72.4043 117.967 68.9766ZM135 84.375C83.716 84.375 42.1877 125.903 42.1877 177.188C42.1877 228.472 83.7424 270 135 270C186.258 270 227.813 228.472 227.813 177.188C227.813 125.903 186.311 84.375 135 84.375ZM183.779 167.326L163.804 186.838L168.484 214.392C169.341 219.27 164.133 223.093 159.714 220.72L134.992 207.737L110.268 220.693C105.851 223.066 100.644 219.243 101.498 214.365L106.178 186.812L86.2024 167.3C82.5822 163.793 84.6389 157.676 89.5959 156.938L117.218 152.917L129.569 127.881C130.623 125.64 132.799 124.519 134.974 124.519C137.149 124.519 139.324 125.666 140.379 127.881L152.772 152.93L180.394 156.951C185.414 157.676 187.418 163.793 183.779 167.326ZM261.088 0H198.123C195.159 0 192.412 1.55514 190.888 4.09746L151.991 68.4861C174.14 71.9139 194.115 81.9967 209.735 96.6357L268.429 12.8408C272.373 7.68867 268.365 0 261.088 0Z' fill='white' fill-opacity='0.15'/%3E%3C/svg%3E");background-repeat: no-repeat no-repeat;background-position: center center;/* background-size: cover; */}    
.on-preim-about:nth-child(3) {
    background-image: url("/catalog/view/theme/oct_showcase/image/ceab6f60-c8e1-434b-ac29-d64c66b27e6333a 1.png");
    background-position: center;
    background-repeat: no-repeat;
}
.button_roww {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sc-module-cart .sc-btn-primary .sc-btn-text{
    display:flex;
    color: #FFF;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    margin-left: 5px;
}

.sc-module-cart .sc-btn-primary {
    width: 110px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 5px;
    background: #8D6F49;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 39px;
    flex: 0 0 70px;
    max-width: 110px;
}
span.sc-module-price.fw-800.dark-text.mt-1 {
    color: #000;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    white-space: nowrap;
}
.sc-product-options .options-box {
    display: flex;
    width: 100%;
    gap: 15px;
}

div#sc-product-options {}

div#sc-product-options .form-group.d-flex.flex-column.flex-md-row.align-items-md-center.mb-3 {
    flex-direction: column !important;
    justify-content: flex-start;
    align-items: flex-start !important;
    margin-bottom: 35px !important;
}

.sc-product-options .radio label.radio-img {
    border-radius: 0;
    width: 95px;
    height: 96px;
    flex-shrink: 0;
    border: 1px solid rgba(141, 111, 73, 0.50);
    flex-direction: column !important;
    display: flex;
}

.sc-product-options .radio label.radio-img span {
    color: #000;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 8px;
}

.sc-product-options .sc-control-label {
    margin-bottom: 10px;
}

.sc-product-options .radio label.radio-img img {
    border-radius: 0;
}
div#cartModal .modal-dialog {
    max-width: 589px;
}

div#cartModal .modal-header.p-4 {
    border-radius: 0 !important;
    background: transparent;
    border-bottom: 1px solid #BFBFBF;
    display: flex;
    justify-content: center;
    align-items: center;
}

div#cartModal h5#cartModalLabel {
    width: 100%;
    display: flex;
    justify-content: center !important;
    align-items: center;
    padding: 0px !important;
}

div#cartModal .sc-module-quantity button {
    width: 25px;
    height: 25px;
    border-radius: 0px !important;
    background: #8D6F49;
}

div#cartModal .sc-module-quantity.d-flex.align-items-center.justify-content-center.py-1.br-12 {
    /* border: 0; */
    padding: 0 !important;
}
div#cartModal span.minus {
    background: none;
}

div#cartModal span.minus:before {
    content: "-";
    width: 15px;
    height: 15px;
    font-size: 20px;
    line-height: 19px;
    color: #fff;
}
div#cartModal span.plus {
    background: none;
}

div#cartModal span.plus:before {
    content: "+";
    width: 15px;
    height: 15px;
    font-size: 20px;
    line-height: 19px;
    color: #fff;
}

div#cartModal .sidebar-cart-item-price {
    color: #000;
    text-align: right;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px; /* 160% */
    margin-left: auto;
}

div#cartModal a.sc-btn.sc-btn-primary.br-4.w-100.mt-3.text-decoration-none {
    width: 325px !important;
    height: 59px;
    flex-shrink: 0;
    border-radius: 3px;
    background: #8D6F49;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: auto;
}

div#cartModal .modal-cart-bottom button {
    width: 325px !important;
    height: 59px;
    flex-shrink: 0;
    border-radius: 3px !important;
    background: #E7E7E7 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    color: #717171;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
div#cartModal .sc-btn-danger:not([disabled]) {
    background: #8d6f49;
    color: #FFF;
text-align: center;
font-family: Montserrat;
font-size: 14px;
font-style: normal;
font-weight: 400;
line-height: normal;
}
.ocf-container {
    border: none;
    box-shadow: none;
}
.sc-product-images-additional .slick-slide {
    background: #fff;
}
.sc-module-title {
    min-height: 95px;
    display: flex;
}
.sc-module-stickers.d-flex.align-items-center.mt-3 {
    min-height: 20px;
}
.sc-module-quantity.d-flex.align-items-center.justify-content-center.py-1.br-12 {
    display: none !important;
}
div#product .sc-module-quantity.d-flex.align-items-center.justify-content-center.py-1.br-12 {
    display: flex !important;
}
.sc-product-images-additional.mt-xxl-3.d-none.d-md-flex.align-items-stretch.slick-initialized.slick-slider {
    background: #fff;
}

.zag-dostavka {
    color: #000;
    font-family: Montserrat;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 140%; /* 25.2px */
    margin-bottom: 15px;
}

.ondostavka {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 490px;
    margin-bottom: 15px;
}

.lf-dostavka span {
    color: #000;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px; /* 140% */
    letter-spacing: -0.32px;
    margin-left: 15px;
}

.rg-dostavka div {
    color: #8D6F49;
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px; /* 140% */
    letter-spacing: -0.32px;
}

.rg-dostavka span {
    color: #242625;
    text-align: center;
    font-family: Montserrat;
    font-size: 15px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 140% */
    letter-spacing: -0.32px;
}

.lf-dostavka p {
    color: #777;
    font-family: Montserrat;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: 21px; /* 161.538% */
    letter-spacing: -0.32px;
    max-width: 310px;
}

.bl-dostavka {
    /* padding-bottom: 15px; */
    border-bottom: 2px solid #EDECEC;
    margin-bottom: 15px;
}
.sc-product-options .options-box {
    display: flex;
    width: 100%;
    gap: 10px;
}

.form-group.d-flex.flex-column.flex-md-row.align-items-md-center.mb-3 {
    flex-wrap: wrap;
}

.sc-product-options .radio label.radio-img img {
    width: 100px;
    height: 100px;
    border-radius: 0;
      border: 1px solid rgba(141, 111, 73, 0.50);
}

.sc-product-options .radio label.radio-img {
    width: 95px;
    height: auto;
    display: flex;
    flex-direction: column;
    border-radius: 0px !important;
    margin-right: 10px;
  border:none;
    background: transparent;
}

.sc-product-options .radio label.radio-img span {
    color: #000;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 6px;
    background: transparent !important;
}

.sc-product-options .sc-control-label {
    margin-bottom: 10px;
}
div#product button#button-cart {width: 142px;}

div#product button#button-ukrcredits {
    background: #8d6f49;
    border-color: #8d6f49;
    font-size: 14px;
    color: #FFF;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 162px;
    line-height: 5px;
    margin-left: 15px;
    display: flex;
    /* flex-direction: column; */
    flex-wrap: wrap;
    justify-content: center;
}
.bl-prott.col-lg-6.mt-md-3 a {
    height: 47px;
    border: 2px solid #8D6F49;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #8D6F49;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 15px;
}

.vide iframe {
    width: 100%;
    height: 425px;
}
button.sc-btn.sc-btn-outline.sc-btn-outline-primary.br-4.for_rewi {
    border: none;
    color: #8D6F49;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 20.8px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}

button.sc-btn.sc-btn-outline.sc-btn-outline-primary.br-4.for_rewi:hover {
    background: transparent;
}
.sc-product-content-attributes-list-item:nth-child(even) {
    background: transparent;
}

.sc-product-content-attributes-list-item>div {
    padding: 14px 0;
}

.sc-product-content-attributes-list-title {
    display: none;
}
section.product {
    color: #000;
    font-family: Montserrat;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 25px; /* 178.571% */
}

.sc-product-content-description .sc-product-content-text h1, .sc-product-content-description .sc-product-content-text p, .sc-product-content-description .sc-product-content-text span {
    color: #000;
    font-family: Montserrat;
    font-size: 14px !important;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}
.sc-product-content-attributes-list-item:nth-child(n+5) {
    display: none !important;
}

.sc-product-content-attributes-list.active .sc-product-content-attributes-list-item:nth-child(n+5) {
    display: flex !important;
}
a#all_har_descr {
    color: #8D6F49;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 20.8px */
    display: flex;
    margin-top: 30px;
}

.sc-product-content-text.dark-text.fsz-14.mt-3 {
    max-height: 169px;
    overflow: hidden;
}
.sc-product-content-text.dark-text.fsz-14.mt-3.active{
    max-height: 10000px; 
}
a#all_har {
    color: #8D6F49;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 130%; /* 20.8px */
    margin-top: 20px !important;
    display: flex;
}
.sc-product-content-reviews-item.p-3 {
    background: rgba(248, 248, 248, 0.75);
}
div#product button#button-ukrcredits img {
    /* max-width: 15px !important; */
    margin-bottom: 10px;
    /* margin: auto; */
    margin: 0 5px;
    margin-bottom: 9px;
    max-height: 18px;
}
.top-left.d-flex.align-items-center .bl-fon-top {
    display: none;
}

.top-left.d-flex.align-items-center .bl-messendger {
    display: none;
}
.bl-messendger ul li svg {
    width: 25px;
    height: 25px;
}
.bl-diskout {
    border-radius: 10px;
    background: #F8F8F8;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    margin: 10px 5px;
}

.zag-discount {
    color: #000;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.sc-product-price-discount.fsz-12.mt-1 {
    display: flex;
    border-radius: 3px;
    border: 1px solid #E6E6E6;
    color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 16px !important;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    flex-direction: column;
    padding: 10px 25px;
}

.sc-product-price-discount.fsz-12.mt-1 span {
    color: #8D6F49;
    font-family: Montserrat;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}
.ikonkplat {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.ikonkplat div {
    width: 104px;
    height: 47px;
    border-radius: 10px;
    border: 1px solid #C4C4C4;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 0;
}

.textikonpl {
    color: #000;
    /* font-family: Montserrat; */
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 15px 0;
}
.sc-category-products .product-layout{
    order:10;
}
.sc-category-products .product-layout:nth-child(1),
.sc-category-products .product-layout:nth-child(2),
.sc-category-products .product-layout:nth-child(3),
.sc-category-products .product-layout:nth-child(4),
.sc-category-products .product-layout:nth-child(5){
    order:0;
}

div#banner1 {
    order: 1;
}
.sc-category-products .product-layout:nth-child(6),
.sc-category-products .product-layout:nth-child(7),
.sc-category-products .product-layout:nth-child(8),
.sc-category-products .product-layout:nth-child(9),
.sc-category-products .product-layout:nth-child(10){
    order:2;
}
div#banner2 {
    order: 3;
}
.sc-category-products .product-layout:nth-child(11),
.sc-category-products .product-layout:nth-child(12),
.sc-category-products .product-layout:nth-child(13),
.sc-category-products .product-layout:nth-child(14),
.sc-category-products .product-layout:nth-child(15){
    order:4;
}
div#banner3 {
    order: 5;
}

.sam-bannre {
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.sc-slideshow-plus-item:not(:first-child) {
    display: block !important;
}
    .sc-slideshow-plus-item-fullimg img{
        height: 550px;
    }
.content-top-box .row.mt-3.mt-xl-4.sc-slideshow-plus.with-megamenu {
    margin-left: 0;
    margin-bottom: 40px;
}
.swiper-pagination.swiper-pagination-0.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal.swiper-pagination-lock {
    display: flex;
    justify-content: center;
    align-items: center;
}

div#slideshow-plus-0 {
    padding-bottom: 40px;
}

.swiper-pagination-bullet {
    width: 20px;
    border-radius: 15px;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #8d6f49;
}
footer .col-md-4.col-xl-2.pt-md-4.pt-xl-0 {
    width: 22.666667%;
}
@media  (max-width: 992px){
    .bl-preim-about {
    flex-direction: column;
}

nav#top #logo {
    display: none !important;
}

nav#top #logo img {
    width: 100px;
}

.sc-slideshow-plus-info.order-1.order-md-0.flex-grow-1.d-flex.flex-column {
    padding: 15px;
}

.sc-slideshow-plus-info.order-1.order-md-0.flex-grow-1.d-flex.flex-column a {
    padding: 0;
    margin-top: 15px !important;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
}

.bl-over-name {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.see-all {
    margin-top: 20px;
}

.zag-bl-about {
    font-size: 31px;
}

.bl-about p {
    font-size: 14px;
}

.on-preim-about {
    width: 100%;
}

.bl-fon-top {
    display: none;
}

.bl-messendger {
    display: none;
}
.sidebar-cart-item-buttons.d-flex.align-items-center.justify-content-between.flex-grow-1.pt-3.mt-auto {
    margin-left: -110px;
}  
.sc-product-actions-top.d-flex.justify-content-between.p-3.pb-4.with-border {
    display: flex;
    flex-direction: column;
}

div#product .sc-module-quantity.d-flex.align-items-center.justify-content-center.py-1.br-12 {
    display: none !important;
}  
button.sc-btn.sc-btn-outline.sc-btn-outline-primary.br-4.for_rewi {
    display: flex;
    width: 100%;
    text-align: left !important;
    padding: 14px 0;
    display: flex;
    justify-content: flex-start;
}
.sc-product-content-reviews.pb-4.mb-md-4.pt-4.pt-md-0.px-3.px-lg-4 .sc-product-content-title.d-flex.align-items-center {
    flex-direction: column;
    align-items: flex-start !important;
}

.col-lg-6.col-xl-6.sc-product-content-right.p-3.px-md-0.p-lg-4.order-0.order-lg-1 .sc-product-content-title.d-flex.align-items-center {
    flex-direction: column;
    align-items: flex-start !important;
}  
.bl-prott.col-lg-6.mt-md-3 {
    margin: 0 15px;
    width: calc(100% - 30px);
}

.sc-product-content-reviews.pb-4.mb-md-4.pt-4.pt-md-0.px-3.px-lg-4 {
    padding: 0px !important;
}   
.ukrcreditsticker div {
    background-size: 17px !important;
} 
#top .sc-top-btn[aria-label="Account"] {
    display: none;
} 
.top-left .bl-fon-top {
    display: flex !important;
    flex-direction: column;
    padding: 0 5px;
    width: 52%;
}

.top-left .bl-messendger {
    display: flex !important;
    padding-right: 0;
    width: 40%;
}

.top-left  .bl-messendger ul {
    max-height: fit-content;
    padding: 0 5px;
}

.top-left  .tet-ess {
    color: #8D6F49;
    font-family: Montserrat;
    font-size: 9px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.top-left  .bl-messendger ul li {
    margin-right: 0px !important;
    margin-bottom: 0px !important;
    margin-left: 5px !important;
}

.top-left .bl-fon-top ul li {
    margin-bottom: 0px !important;
}

.top-left  .bl-fon-top a {
    font-size: 17px;
}
button#cart {
    margin-top: 0;
} 
.sidebar.active {
    top: 0;
    border-radius: 0;
}   
.sidebar div#logo {
    position: relative;
    left: 0;
    right: auto;
    order: 0 !important;
}


.sidebar div#logo img {
    width: 105px;
}

.sidebar .sc-switcher button:not(.active) {
    color: #000;
    margin-bottom: 3px;
}

.sidebar .sc-switcher button:nth-child(2):before {
    color: #000;
    top: 15px;
}  
.sidebar-messengers.d-flex.align-items-center {}

.sidebar-messengers.d-flex.align-items-center ul.list-unstyled.fsz-12.sc-footer-middle-info {
    max-height: fit-content;
    display: flex;
    padding: 0;
}

.sidebar-messengers.d-flex.align-items-center ul.list-unstyled.fsz-12.sc-footer-middle-info li {
    margin-right: 10px;
}  
 div#product-category .sc-module-cart-btn .sc-btn-text {
    display: none;
}

div#product-category [data-type=width50] .sc-module-cart .sc-btn-primary {
    width: 46px;
}

div#product-category span.sc-module-price-old.light-text.fsz-14 {
    font-size: 12px !important;
}

div#product-category span.sc-module-price.fw-800.dark-text.mt-1 {
    font-size: 13px;
}

div#product-category [data-type=width50] .sc-module-price-box {
    padding-bottom: 0px !important;
}

div#product-category .button_roww {
    align-items: flex-end;
}

div#product-category .sc-module-caption.d-flex.flex-column.justify-content-between.py-md-2.h-100 {
    justify-content: flex-end !important;
}
.bl-diskout {
    flex-wrap: wrap;
}

.zag-discount {
    width: 100%;
    text-align: center;
    margin: 15px;
    color: #000;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
}

.sc-product-price-discount.fsz-12.mt-1 {
    font-size: 12px !important;
    padding: 13px;
}

.sc-product-price-discount.fsz-12.mt-1 span {
    font-size: 12px !important;
}
.ikonkplat div {
    width: 63px;
    height: 32px;
    /* margin-right: 15px; */
    /* margin-bottom: 15px; */
}

.ikonkplat div img {
    width: 60%;
}

.textikonpl {
    font-size: 13px;
    color: #000;
    font-family: Montserrat;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.ikonkplat div:not(:last-child) {
    /* margin-bottom: 15px; */
}

.ikonkplat {
    gap: 10px;
}

div {}   
.sc-slideshow-plus-item-fullimg img {
    height: 360px;
}    
.kontekst {
    width: calc(100% - 25px);
    margin-left: 25px;
    margin-top: 20px;
    font-size: 13px;
}

footer .col-md-4.col-xl-2.pt-md-4.pt-xl-0 {
    width: 100%;
}
}
@media (max-width: 767.98px) {
    .sc-product-tabs-box {
        position: fixed;
        z-index: 1020;
        top: 63px;
        left: 0;
        right: 0;
        padding: 0;
    }
      .body-product {
        padding-top: 96px;
    }
}
/****************************************************************************************************/