/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

main * :not(i), header ul * :not(i), .cart_shop span :not(i), .header-write-to-us, footer * :not(i) {
    font-family: 'Poppins'!important;
}
main {
    min-height: calc(100vh - 356px);
}
:root {
    --main-color: #EB5B2B;
    --hover-color: #DE3D1D;
    --border-radius: 10px;
}
#maincontent{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
header{
    background-color: #fff;
}
header .row{
    height: 80px;
}
.custom-logo{
    max-width: 150px!important;
}
.mb-60{
    margin-bottom: 60px;
}
/*.mobile-menu .navigation_header, .mobile-logo{*/
/*    display: none;*/
/*}*/
@media screen and (max-width: 1000px) {
    /*header .mobile-menu .navigation_header, header .mobile-logo.logo{*/
    /*    display: flex;*/
    /*}*/
    /*header .mobile-logo.logo{*/
    /*    justify-content: center;*/
    /*}*/
    /*header .navigation_header, header .logo{*/
    /*    display: none;*/
    /*}*/
    .navigation_header .toggle-nav.mobile-menu{
        text-align: left;
    }
    .main-topbar .logo{
        text-align: center;
    }

    .mobile-order-1{
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .mobile-order-2{
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2;
    }
    .mobile-order-3{
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3;
    }
}

/* custom animations */
@-webkit-keyframes cartBounce {
    0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
    50% { -webkit-transform: translateY(-8px); transform: translateY(-8px); }
}
@keyframes cartBounce {
    0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
    50% { -webkit-transform: translateY(-8px); transform: translateY(-8px); }
}

.cart-animate-bounce {
    -webkit-animation: cartBounce 0.5s ease;
    animation: cartBounce 0.5s ease;
}


@-webkit-keyframes cartShake {
    0%, 100% { -webkit-transform: translateX(0); transform: translateX(0); }
    25% { -webkit-transform: translateX(-5px); transform: translateX(-5px); }
    50% { -webkit-transform: translateX(5px); transform: translateX(5px); }
    75% { -webkit-transform: translateX(-3px); transform: translateX(-3px); }
}


@keyframes cartShake {
    0%, 100% { -webkit-transform: translateX(0); transform: translateX(0); }
    25% { -webkit-transform: translateX(-5px); transform: translateX(-5px); }
    50% { -webkit-transform: translateX(5px); transform: translateX(5px); }
    75% { -webkit-transform: translateX(-3px); transform: translateX(-3px); }
}

.cart-animate-shake {
    -webkit-animation: cartShake 0.4s ease;
    animation: cartShake 0.4s ease;
}

@-webkit-keyframes cartRotate {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    50% { -webkit-transform: rotate(15deg); transform: rotate(15deg); }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}

@keyframes cartRotate {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    50% { -webkit-transform: rotate(15deg); transform: rotate(15deg); }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}

.cart-animate-rotate {
    -webkit-animation: cartRotate 0.5s ease;
    animation: cartRotate 0.5s ease;
}

@-webkit-keyframes cartScale {
    0%, 100% { -webkit-transform: scale(1); transform: scale(1); }
    50% { -webkit-transform: scale(1.15); transform: scale(1.15); }
}

@keyframes cartScale {
    0%, 100% { -webkit-transform: scale(1); transform: scale(1); }
    50% { -webkit-transform: scale(1.15); transform: scale(1.15); }
}

.cart-animate-scale {
    -webkit-animation: cartScale 0.4s ease;
    animation: cartScale 0.4s ease;
}

@-webkit-keyframes rotateScale {
    0% { -webkit-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1); }
    50% { -webkit-transform: rotate(15deg) scale(1.2); transform: rotate(15deg) scale(1.2); }
    100% { -webkit-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1); }
}

@keyframes rotateScale {
    0% { -webkit-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1); }
    50% { -webkit-transform: rotate(15deg) scale(1.2); transform: rotate(15deg) scale(1.2); }
    100% { -webkit-transform: rotate(0deg) scale(1); transform: rotate(0deg) scale(1); }
}

.cart-animate-rotate-scale {
    -webkit-animation: rotateScale 0.5s ease-in-out;
    animation: rotateScale 0.5s ease-in-out;
}

@-webkit-keyframes pulsePop {
    0% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
    50% { -webkit-transform: scale(1.4); transform: scale(1.4); opacity: 0.6; }
    100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}

@keyframes pulsePop {
    0% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
    50% { -webkit-transform: scale(1.4); transform: scale(1.4); opacity: 0.6; }
    100% { -webkit-transform: scale(1); transform: scale(1); opacity: 1; }
}

.cart-animate-pulse-pop {
    -webkit-animation: pulsePop 0.4s ease-out;
    animation: pulsePop 0.4s ease-out;
}

@-webkit-keyframes slideBounce {
    0% { -webkit-transform: translateY(0); transform: translateY(0); }
    30% { -webkit-transform: translateY(-10px); transform: translateY(-10px); }
    50% { -webkit-transform: translateY(-5px); transform: translateY(-5px); }
    100% { -webkit-transform: translateY(0); transform: translateY(0); }
}

@keyframes slideBounce {
    0% { -webkit-transform: translateY(0); transform: translateY(0); }
    30% { -webkit-transform: translateY(-10px); transform: translateY(-10px); }
    50% { -webkit-transform: translateY(-5px); transform: translateY(-5px); }
    100% { -webkit-transform: translateY(0); transform: translateY(0); }
}

.cart-animate-slide-bounce {
    -webkit-animation: slideBounce 0.5s ease;
    animation: slideBounce 0.5s ease;
}

@-webkit-keyframes wiggle {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    25% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
    50% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); }
    75% { -webkit-transform: rotate(3deg); transform: rotate(3deg); }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}

@keyframes wiggle {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    25% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
    50% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); }
    75% { -webkit-transform: rotate(3deg); transform: rotate(3deg); }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}

.cart-animate-wiggle {
    -webkit-animation: wiggle 0.4s ease-in-out;
    animation: wiggle 0.4s ease-in-out;
}


.py-40{
    padding: 40px 0;
}
@media screen and (max-width: 575px) {
    body .home-page-header .main-topbar, .admin-bar .header-fixed .main-topbar{
        padding: 0!important;
    }
}
@media screen and (min-width: 1001px) {
    .header-sec-top{
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}
header .header-write-to-us a{
    border: 2px solid var(--main-color);
    color: var(--main-color);
    font-weight: 500;
    border-radius: var(--border-radius);
    padding: 10px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
@media screen and (max-width: 1000px) {
    header .header-write-to-us a{
        display: none;
    }
}
header .header-write-to-us a:hover{
    background-color: #000;
    border-color: #000;
    color: #fff;
}
#site-navigation .menu ul li a, .main-navigation .menu > li > a{
    position: relative;
}
#site-navigation .menu ul li a:before, .main-navigation .menu > li > a:before, body header .main-navigation .current_page_item.anchor-link a:before{
    content: "" !important;
    position: absolute!important;
    height: 2px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    width: 0;
    background-color: #000;
    bottom: -10px;
}
header .header_hidden{
    display: none!important;
}
@media screen and (max-width: 1000px) {
    header .header_hidden{
        display: -webkit-inline-box!important;
        display: -ms-inline-flexbox!important;
        display: inline-flex!important;
    }
}
body .main-navigation .current_page_item > a:before, body .main-navigation .current-menu-item > a:before{
    background-color: var(--main-color);
}

#site-navigation .menu ul li a:hover:before, .main-navigation .menu > li > a:hover:before, body header .main-navigation .current_page_item.anchor-link a:hover:before{
    width: 100%;
}
#how-to-buy{
    padding-top: 120px;
}
body .hero-section{
    margin-bottom: 60px!important;;
    overflow: visible!important;
}
body .hero-section .stk-block-hero__content:before, .hero-section .stk-block-hero__content:after{
    content: "";
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    max-width: 200px;
    aspect-ratio: 1;
    width: 25%;
    height: auto;
}
.hero-section .stk-block-hero__content:before{
    bottom: 10%;
    left: 2%;
    background-image: url("../../images/hero/reddit.png");
}
.hero-section .stk-block-hero__content:after{
    max-width: 280px;
    width: 25%;
    top: -5%;
    right: 2%;
    background-image: url("../../images/hero/like.png");
}
.hero-block > .wp-block-group__inner-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
}
.hero-block .white-text p{
    color: rgba(255, 255, 255, 0.8);
}
.hero-block .hero-first-block{
    max-width: 600px;
}
.hero-block .hero-second-block > .wp-block-group__inner-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}
.hero-block .hero-second-block{
    width: calc(100% - 645px);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    position: relative;
}
@media (max-width: 991px) {
    .hero-block .hero-second-block{
        width: 100%;
        min-height: 300px;
    }
}
.hero-block .background-image{
    position: absolute;
    z-index: 99;
}
.hero-block .background-image img{
    width: 100%;
}
.hero-block .hero-second-block .animated-image{
    z-index: 99;
}
.hero-block .hero-second-block .animated-image img{
    max-width: 250px;
    -webkit-animation: vibrate    4s infinite ease-in-out;
    animation: vibrate    4s infinite ease-in-out;
}
.hero-block .wp-block-button .wp-block-button__link:hover, .hero-block .wp-block-button .wp-block-button__link:focus{
    color: #fff !important;
}

.hero-buttons-wrap{
    grid-column-gap: .5rem;
    background-color: #DE3D1D;
    border-radius: 2rem;
    padding: .5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 9;
    min-width: 210px;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
}
@media (max-width: 500px) {
    .hero-buttons-wrap{
        width: auto;
    }
}
.hero-buttons-wrap .wp-block-group__inner-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.hero-buttons-wrap p{
    color: #fff;
    font-size: 15px;
    line-height: 24px;
    padding: 6px 15px;
    margin: 0;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    white-space: nowrap;
    position: relative;
}
@media (max-width: 767px) {
    .hero-buttons-wrap p{
        font-size: 13px;
    }
}

.hero-buttons-wrap p:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: calc(50% - 10px);
    width: 1px;
    height: 20px;
    background-color: rgba(255, 255, 255, 40%);
}
@media (max-width: 500px) {
    .hero-buttons-wrap p::after{
        display: none;
    }
}


.hero-buttons-wrap .wp-block-button{
    margin-bottom: 0!important;
}
.hero-buttons-wrap .wp-block-button a{
    background-color: transparent;
    border: none;
    font-size: 18px;
    line-height: 24px;
    padding: 6px 15px;
}
.lines-back{
    position: relative;
    overflow: hidden;
}
.lines-back:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-image: url("../../images/hero_bg.png");
    opacity: 0.90;
}
.mx-auto-group .wp-block-group__inner-container{
    margin: 0 auto;
}
.group-max-width-700 .wp-block-group__inner-container{
    max-width: 700px;
}
.group-max-width-800 .wp-block-group__inner-container{
    max-width: 800px;
}
.group-max-width-860 .wp-block-group__inner-container{
    max-width: 860px;
}
.centered-group .wp-block-group__inner-container{
    margin: 0 auto;
}
.new_products_group .wp-block-group__inner-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}
.new_products_group .wp-block-woocommerce-single-product.woocommerce{
    max-width: calc(34% - 30px);
}
@media (max-width: 767px) {
    .new_products_group .wp-block-woocommerce-single-product.woocommerce{
        max-width: 47%;
    }
}
.cart_shop{
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
    color: #020202;
    font-weight: bold;
}
.cart_shop *{
    color: #fff!important;
}
.cart_shop a{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 11px;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    background-color: var(--main-color);
}
.cart_shop a:hover{
    color: #020202!important;
}
.cart_shop a:focus, .cart_shop a:focus span{
    outline: none !important;
}
.cart-total-amount{
    position: absolute;
    color: #111620;
    top: 1px;
    right: 10px;
    font-size: 12px;
    font-weight: bold;
    z-index: 99;
    min-width: 15px;
    text-align: center;
}
.flex-group .wp-block-group__inner-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 20px;
}
.link-text-decoration-none, .link-text-decoration-none a{
    text-decoration: none!important;
}
#cart-total-wrapper{
    min-width: -webkit-max-content;
    min-width: -moz-max-content;
    min-width: max-content;
}
.divider-opacity-100 hr{
    opacity: 100;
}
/* running text */
.promo-text {
    /*   font-size: 16px; */
    /*   font-weight: bold; */
    overflow: hidden;
    /*   white-space: nowrap; */
}

/* default text */
.normal-text {
    display: block;
}
.marquee-text {
    display: none;
}
.cell-background{
    background-image: url('../../images/section_back.jpg');
    background-position: center;
}


/* animation */
.marquee {
    display: inline-block;
    white-space: nowrap;
    -webkit-animation: scroll-left 12s linear infinite;
    animation: scroll-left 12s linear infinite;
}

@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translateX(40%);
        transform: translateX(40%);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}

@keyframes scroll-left {
    0% {
        -webkit-transform: translateX(40%);
        transform: translateX(40%);
    }
    100% {
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}


@media screen and (max-width: 500px) {
    .normal-text {
        display: none;
    }
    .marquee-text {
        display: block;
    }
}


@-webkit-keyframes swing {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    50% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}


@keyframes swing {
    0% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    50% { -webkit-transform: rotate(5deg); transform: rotate(5deg); }
    100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
}

@-webkit-keyframes floatY {
    0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
    50% { -webkit-transform: translateY(-20px); transform: translateY(-20px); }
}

@keyframes floatY {
    0%, 100% { -webkit-transform: translateY(0); transform: translateY(0); }
    50% { -webkit-transform: translateY(-20px); transform: translateY(-20px); }
}

@-webkit-keyframes floatX {
    0%, 100% { -webkit-transform: translateX(0); transform: translateX(0); }
    50% { -webkit-transform: translateX(20px); transform: translateX(20px); }
}

@keyframes floatX {
    0%, 100% { -webkit-transform: translateX(0); transform: translateX(0); }
    50% { -webkit-transform: translateX(20px); transform: translateX(20px); }
}

@-webkit-keyframes pulse {
    0%, 100% { -webkit-transform: scale(1); transform: scale(1); }
    50% { -webkit-transform: scale(1.05); transform: scale(1.05); }
}

@keyframes pulse {
    0%, 100% { -webkit-transform: scale(1); transform: scale(1); }
    50% { -webkit-transform: scale(1.05); transform: scale(1.05); }
}

@-webkit-keyframes shake {
    0%, 100% { -webkit-transform: translateX(0); transform: translateX(0); }
    25% { -webkit-transform: translateX(-5px); transform: translateX(-5px); }
    75% { -webkit-transform: translateX(5px); transform: translateX(5px); }
}

@keyframes shake {
    0%, 100% { -webkit-transform: translateX(0); transform: translateX(0); }
    25% { -webkit-transform: translateX(-5px); transform: translateX(-5px); }
    75% { -webkit-transform: translateX(5px); transform: translateX(5px); }
}

@-webkit-keyframes tilt {
    0%, 100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    50% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); }
}

@keyframes tilt {
    0%, 100% { -webkit-transform: rotate(0deg); transform: rotate(0deg); }
    50% { -webkit-transform: rotate(-5deg); transform: rotate(-5deg); }
}

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

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

@-webkit-keyframes pendulum {
    0% { -webkit-transform: rotate(10deg); transform: rotate(10deg); }
    50% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); }
    100% { -webkit-transform: rotate(10deg); transform: rotate(10deg); }
}

@keyframes pendulum {
    0% { -webkit-transform: rotate(10deg); transform: rotate(10deg); }
    50% { -webkit-transform: rotate(-10deg); transform: rotate(-10deg); }
    100% { -webkit-transform: rotate(10deg); transform: rotate(10deg); }
}

@-webkit-keyframes breathe {
    0%, 100% { -webkit-transform: scale(1,1); transform: scale(1,1); }
    50% { -webkit-transform: scale(1.02, 0.98); transform: scale(1.02, 0.98); }
}

@keyframes breathe {
    0%, 100% { -webkit-transform: scale(1,1); transform: scale(1,1); }
    50% { -webkit-transform: scale(1.02, 0.98); transform: scale(1.02, 0.98); }
}

@-webkit-keyframes vibrate {
    0% { -webkit-transform: translate(0); transform: translate(0); }
    25% { -webkit-transform: translate(-10px, 10px); transform: translate(-10px, 10px); }
    50% { -webkit-transform: translate(10px, -10px); transform: translate(10px, -10px); }
    75% { -webkit-transform: translate(-10px, -10px); transform: translate(-10px, -10px); }
    100% { -webkit-transform: translate(0); transform: translate(0); }
}

@keyframes vibrate {
    0% { -webkit-transform: translate(0); transform: translate(0); }
    25% { -webkit-transform: translate(-10px, 10px); transform: translate(-10px, 10px); }
    50% { -webkit-transform: translate(10px, -10px); transform: translate(10px, -10px); }
    75% { -webkit-transform: translate(-10px, -10px); transform: translate(-10px, -10px); }
    100% { -webkit-transform: translate(0); transform: translate(0); }
}



.faq-block{
    border-radius: var(--border-radius);
    max-width: 860px;
    margin: 0 auto;
    padding: 20px;
    background-color: #EB5B2B;
}
@media (max-width: 767px) {
    .faq-block{
        padding: 20px;
    }
}
.faq-block details{
    margin-bottom: 12px!important;
    border-radius: var(--border-radius);
    background-color: #fff;
    -webkit-box-shadow: 0px 12px 16px -12px rgba(70, 70, 82, .12);
    box-shadow: 0px 12px 16px -12px rgba(70, 70, 82, .12);
    /*  box-shadow: 3px 3px 8px #33415f; */
    /*     box-shadow: 0 4px 24px #111620;  */
}
.faq-block .stk-block-accordion__content{
    border-radius: var(--border-radius);
}
.faq-block details .stk-block-heading__text{
    font-size: 18px;
}
@media (max-width: 1047px) {
    .faq-block details .stk-block-heading__text{
        font-size: 15px;
    }
    .faq-block details .stk-block-accordion__content p{
        font-size: 14px;
    }
}
.faq-block details .stk-block-accordion__content .stk-column-wrapper{
    padding-top: 0!important;
}
.faq-block .stk-column-wrapper{
    margin: 0!important;
    -webkit-box-shadow: unset!important;
    box-shadow: unset!important;
    background-color: transparent!important;
}

/* steps block */

.steps-item .wp-block-group__inner-container{
    height: 50px;
    position: relative;
    overflow: hidden;
}
.steps-item .wp-block-group__inner-container:before, .steps-item .wp-block-group__inner-container:after{
    content: "";
    position: absolute;
}

@media (max-width: 767px) {
    .steps-item .wp-block-group__inner-container:before{
        left: 0;
        right: 0;
        margin: auto;
    }
}
.steps-item .wp-block-group__inner-container:before{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    top: calc(50% - 15px);
    background-image: url('../../images/basic_step.svg');
    background-position: center;
    background-repeat: no-repeat;
}

.steps-item .wp-block-group__inner-container:after{
    left: 40px;
    height: 2px;
    width: 100%;
    background-color: #C7CFD9;
    top: calc(50% - 1px);
}
.steps-item.first-item .wp-block-group__inner-container:before{
    background-image: url('../../images/first_step.svg');
    background-position: center;
    background-repeat: no-repeat;
}
.steps-item.first-item .wp-block-group__inner-container:after{
    background-color: var(--main-color);
}
@media (max-width: 767px) {
    .steps-item .wp-block-group__inner-container:after{
        display: none;
    }
}

.simple-btn{
    border: 2px solid var(--main-color);
    color: var(--main-color);
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--border-radius);
    padding: 4px 10px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
@media (max-width: 991px) {
    .simple-btn{
        font-size: 12px;
    }
}
.simple-btn:hover{
    background-color: #000;
    border-color: #000;
    color: #fff;
}
.support-group{
    background-color: #FFFFFF;
    border-radius: 10px;
    border: 1px solid #D4DEE5;
    padding: 40px;
}
@media (max-width: 767px) {
    .support-group{
        padding: 20px;
    }
}
.support-group > .wp-block-group__inner-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 25px;
}
.support-group > .wp-block-group__inner-container > .wp-block-group{
    width: calc(50% - 20px);
    /*background-color: #fff;*/
    /*border-radius: 27px;*/
    /*padding: 36px;*/
    /*width: 48%;*/
}
.support-group > .wp-block-group__inner-container .wp-block-group .wp-block-group__inner-container{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
@media (max-width: 767px) {
    .support-group > .wp-block-group__inner-container .wp-block-group{
        width: 100%;
    }
}

/* products block */
.product-price-block{
    min-width: 550px;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    position: relative;
    z-index: 9;
}
@media (max-width: 991px) {
    .product-price-block{
        min-width: 400px;
        gap: 12px;
    }
}
@media (max-width: 767px) {
    .product-price-block{
        min-width: unset;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        text-align: center;
        min-width: unset;

        width: 100%;
        border-top: 1px solid #E4E4E4;
        padding-top: 15px;
    }
}
.product-price-block, .product-buttons{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .product-price-block{
        width: 100%;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }
}
.product-buttons{
    gap: 8px;
}
.product-price del {
    color: #888;
    margin-right: 5px;
    text-decoration: line-through;
}

.product-price ins {
    color: #000;
    text-decoration: none;
}

.product-stock.stock-no {
    background-color: #ccc;
    color: #444;
}

.custom-product-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    border: 1px solid #D4DEE5;
    border-radius: 10px;
}
.custom-product-item .product-info{
    text-transform: uppercase;
    line-height: 1.4;
    font-size: 14px;
    font-weight: 700;
}
@media (min-width: 768px) {
    .custom-product-item .product-info{
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        max-height: 2.8em;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
    }
}
@media (max-width: 991px) {
    .custom-product-item .product-info{
        padding: 0!important;
        font-size: 12px;
    }
}
.custom-product-item .custom-product-category{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
@media (max-width: 767px) {
    .custom-product-item .custom-product-category{
        display: none;
    }
}
.custom-product-item .custom-product-category .category-label{
    font-weight: bold;
    font-size: 13px;
}
@media (max-width: 991px) {
    .custom-product-item .custom-product-category{
        display: none;
        /*font-size: 12px;*/
    }
    .custom-product-item .custom-product-category .category-label{
        font-size: 11px;
    }
}
.custom-product-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    /*grid-template-columns: 50px 1fr auto;*/
    border: 2px solid transparent;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 32px;
    gap: 10px;
    position: relative;
    /*border-radius: var(--border-radius);*/
}
.custom-product-item:first-child {
    border-radius: 10px 10px 0 0;
}
.custom-product-item:last-child {
    border-radius: 0 0 10px 10px;
}
.custom-product-item:nth-child(odd), .custom-product-item:nth-child(odd):before{
    background: #fff;
}
.custom-product-item:nth-child(even), .custom-product-item:nth-child(even):before {
    background: #f5f9fb;
    /*background: #f2f4f5;*/
}
.custom-product-item:before{
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    z-index: -1;
    -webkit-box-shadow: 0 0 0 rgba(0,0,0,0);
    box-shadow: 0 0 0 rgba(0,0,0,0);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}
.custom-product-item:hover:before{
    z-index: 9;
    top: -5px;
    bottom: -5px;
    left: -15px;
    right: -15px;
    -webkit-box-shadow: 0 0 1.25rem #7a929940;
    box-shadow: 0 0 1.25rem #7a929940;
}
@media (max-width: 991px) {
    .custom-product-item {
        padding: 16px;
    }
    .custom-product-item .product-price{
        font-size: 12px;
    }
}
@media (max-width: 767px) {
    .custom-product-item .product-price{
        font-size: 16px;
    }
}
.custom-product-item .product-top-block{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    z-index: 9;
}
@media (max-width: 767px) {
    .custom-product-item .product-top-block{
        width: 100%;
        /*padding-right: 98px;*/
    }
}
.custom-product-item .product-stock{
    border-radius: var(--border-radius);
}
.custom-product-item .product-add-to-cart{
    border-radius: var(--border-radius);
    background-color: var(--main-color);
    color: #fff;
    border-color: var(--main-color);
    min-width: 108px;
}

@media (max-width: 767px) {
    /*.custom-product-item .product-stock{*/
    /*    position: absolute;*/
    /*    top: 28px;*/
    /*    right: 15px;*/
    /*}*/
    .custom-product-item {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: start;
        position: relative;
        /*     grid-template-columns: 1fr 1fr 1fr;
            grid-template-areas:
            "image  description  description"
            "stock  price        button"; */
    }

    .custom-product-item > .product-thumb   { grid-area: image; }
    .custom-product-item > .product-info   { grid-area: description; }
    .custom-product-item > .product-stock   { grid-area: stock; }
    .custom-product-item > .product-price  { grid-area: price; }
    .custom-product-item > .product-add-to-cart  { grid-area: button; }

    .custom-product-item > .product-stock {
        max-width: -webkit-max-content;
        max-width: -moz-max-content;
        max-width: max-content;
    }
    .custom-product-item .product-info{
        padding: 15px;

    }

}
/* @media (max-width: 500px) {
    .custom-product-item .product-price{
        font-size: 12px;
    }
} */

.product-thumb {
    width: 50px;
    min-width: 50px;
    height: 50px;
    background: #ddd;
    border-radius: 3px;
}

.product-info {
    font-size: 14px;
    color: #0C0D0D;
    padding: 0 30px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}
.custom-product-item:hover .product-info{
    color: var(--hover-main-color);
}
.product-stock {
    position: relative;
    background-color: #c5f0c5;
    color: #429f42;
    font-size: 14px;
    padding: 7px 10px 7px 20px;
    border-radius: 3px;
    white-space: nowrap;
}
@media (max-width: 991px) {
    .product-stock {
        font-size: 12px;
    }
}
.product-stock:before{
    content: "";
    position: absolute;
    left: 6px;
    top: calc(50% - 6px);
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    z-index: 1;
    background-size: contain;
    background-image: url("../../images/checkbox.svg");
}

.product-price span{
    color: #429f42;
    font-size: 18px;
    font-weight: bold;
    white-space: nowrap;
}

.product-add-to-cart {
    background: none;
    color: #e55530;
    border: 1px solid #e55530;
    padding: 6px 12px;
    font-size: 14px;
    cursor: pointer;
    border-radius: 3px;
    white-space: nowrap;
}
@media (max-width: 991px) {
    .product-add-to-cart {
        font-size: 12px;
    }
}



@media (max-width: 991px) {
    .custom-products .wc-block-product-template__responsive.columns-4{
        grid-template-columns: repeat(auto-fill, minmax(max(150px, calc(33% - .9375em)), 1fr));
    }
}
@media (max-width: 767px) {
    .custom-products .wc-block-product-template__responsive.columns-4{
        grid-template-columns: repeat(auto-fill, minmax(max(150px, calc(50% - .9375em)), 1fr));
    }
}

.custom-products .wc-block-product{
    background-color: #fff;
    -webkit-filter: drop-shadow(0px 0px 10px rgb(0 0 0 / 0.2));
    filter: drop-shadow(0px 0px 10px rgb(0 0 0 / 0.2));
}
.custom-products .wc-block-product.outofstock{
    opacity: 1;
    pointer-events: none;
    position: relative;
}
.custom-products .wc-block-product.outofstock .wc-block-components-product-image, .custom-products .wc-block-product.outofstock .product-info{
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.custom-products .wc-block-product.outofstock:before{
    content: "Нет в наличии";
    background-color: #939292 !important;
    position: absolute;
    right: 4px;
    top: 4px;
    font-size: 10px !important;
    z-index: 999;
    border: 1px solid #43454b;
    border-radius: 4px;
    color: #fff;
    text-transform: uppercase;
    padding: .25em .75em;
}
.custom-products .wc-block-product.outofstock .wp-block-button{
    display: none;
}
.custom-products .wp-block-button__link{
    color: #111620!important;
    border-radius: 0;
}
.custom-products .wc-block-components-product-price{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
.custom-products ins{
    text-decoration: none;
}
.custom-products .woocommerce-Price-amount {
    color: #ed5d2a;
    font-size: 20px;
}
.custom-products .wc-block-components-product-price del{
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}
.custom-products .wc-block-components-product-price del .woocommerce-Price-amount{
    color: #bbb;
    font-size: 16px;
}
.custom-products .wc-block-components-product-sale-badge{
    background-color: #ed5d2a!important;
    font-size: 10px !important;
}
.advantage-product-icon{
    width: 16px!important;
    margin-right: 6px;
    margin-bottom: 1px;
}
@media (max-width: 600px) {
    .product-info{
        padding: 16px;
    }
}
.product-info p{
    font-size: 12px;
    margin-bottom: 0;
}


/* reviews */
.rating-bar-container {
    margin-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 10px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.rating-label {
    font-weight: bold;
}
.rating-bar {
    background-color: #e0e0e0;
    border-radius: 5px;
    height: 15px;
    position: relative;
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 95%;
}
.rating-fill {
    background-color: var(--main-color);
    height: 100%;
    width: 0;
    -webkit-transition: width 0.3s ease;
    -o-transition: width 0.3s ease;
    transition: width 0.3s ease;
}
.rating-percent {
    /*right: 10px;*/
    /*top: 0;*/
    height: 100%;
    line-height: 20px;
    font-size: 13px;
    color: #333;
    min-width: 35px;
}

.cta-font{
    color: var(--main-color);
}
.total-sales, .total-reviews{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 20px;
}
.big-number{
    font-size: 50px;
    font-weight: bold;
    color: #181B1B;
}
.total-sales-text{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
.reviews-block .reviews-block-wrap, .reviews-top-info{
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 16px;
}

.review-item{
    background-color: #fff;
    /*border: 2px solid var(--main-color);*/
    border-radius: 24px;
    padding: 16px 16px 16px 16px;
    max-width: 400px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 12px;
}
.reviews-top-info > div{
    max-width: calc(50% - 25px);
    width: 100%;
}
.reviews-top-info{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 50px;
}
@media (max-width: 767px) {
    .review-item, .reviews-top-info > div{
        max-width: 100%;
    }
}
.reviews-top-info .total-sales, .reviews-top-info .total-reviews{
    background-color: #fff;
    border: 2px solid var(--main-color);
    border-radius: 24px!important;
}
.review-item-top, .review-item-rating-block{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
}
.review-item-avatar{
    max-width: 40px;
    font-size: 14px;
}
.review-item-title{
    font-size: 18px;
    font-weight: bold;
}
.review-item-stars{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    color: var(--main-color);
    gap: 3px;
}
.review-item-stars .full-star .rating-full{
    fill: var(--main-color);
}
.review-item-stars .half-star .rating-half{
    fill: var(--main-color);
}
.review-item-stars svg{
    width: 20px;
    height: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 20px;
}
.review-item-text{
    font-size: 14px;
}
.review-item-avatar img{
    border-radius: 50%;
}
.review-item-verified{
    font-size: 12px;
    color: #069567;
    line-height: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 4px;
}
body .load-more{
    border-radius: var(--border-radius);
    color: #fff!important;
    background-color: var(--main-color) !important;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    border: none!important;
    position: relative;
    -ms-grid-column-align: center;
    justify-self: center;
    font-weight: bold !important;
}
#load-more-reviews{
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}
.load-more.loading{
    padding-left: 35px!important;
}
.load-more.loading:before{
    position: absolute;
    content: "";
    background-image: url("../../images/loader.gif");
    width: 20px;
    background-size: contain;
    height: 20px;
    z-index: 99999;
    left: 7px;
    top: calc(50% - 9px);
}
.bordered-block{
    border: 1px solid #d3dce3;
    border-radius: var(--border-radius);
}
/* checkout */
.wc-block-components-address-form__country{
    display: none;
}
.wc-block-checkout__contact-fields, .wc-block-checkout__contact-fields .wc-block-components-checkout-step__content>*{
    margin-bottom: 0!important;
}
body .wp-block-woocommerce-cart .wc-block-cart__submit-button, body .wc-block-components-checkout-place-order-button{
    color: #fff !important;
    -webkit-transition: .3s!important;
    -o-transition: .3s!important;
    transition: .3s!important;
}
body .wp-block-woocommerce-cart .wc-block-cart__submit-button:hover, body .wc-block-components-checkout-place-order-button:hover{
    background-color: var(--hover-color);
}

/* product list updates */
@media (max-width: 450px) {
    .custom-product-item .product-info{
        width: 100%;
        text-align: center;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .custom-product-item .product-top-block{
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        padding-right: unset;
    }
    .product-price-block{
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .product-buttons{
        width: 100%;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
    .custom-product-item .product-stock{
        position: relative;
        top: unset;
        right: unset;
    }
}