main * :not(i), header ul * :not(i) , .cart_shop span, .header-write-to-us, footer * :not(i){
    font-family: 'Manrope'!important;
}
main {
    min-height: calc(100vh - 356px);
}
:root {
    --main-color: #008CFF;
    --border-radius: 8px;
    --black-color: #111E28;
}
header{
    background-color: #fff;
}
header .row{
    height: 80px;
}
header .footer-menu-item{
    display: none!important;
}
.custom-logo{
    width: 120px;
}
#maincontent{
    display: flex;
    align-items: center;
}
/*.mobile-menu .navigation_header, .mobile-logo{*/
/*    display: none;*/
/*}*/
@media screen and (max-width: 1199px) {
    /*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{
        order: 1;
    }
    .mobile-order-2{
        order: 2;
    }
    .mobile-order-3{
        order: 3;
    }
}

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

.cart-animate-wiggle {
    animation: wiggle 0.4s ease-in-out;
}
.product-add-to-cart .icon{
    height: 14px;
    min-width: 14px;
    font-size: 14px;
}
.icon-cart:before{
    height: 14px;
    width: 14px;
    position: relative;
    display: inline-block;
    content: url("../../images/icon-cart.svg");
}

.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;
    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: var(--black-color);
    border-color: var(--black-color);
    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;
    transition: .3s;
    width: 0;
    background-color: var(--black-color);
    bottom: -10px;
}
header .header_hidden{
    display: none!important;
}
@media screen and (max-width: 1000px) {
    header .header_hidden{
        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/fb.png");
}
.hero-section .stk-block-hero__content:after{
    max-width: 160px;
    width: 25%;
    top: -15%;
    right: 2%;
    background-image: url("../../images/hero/stars.png");
}

.hero-buttons-wrap{
    grid-column-gap: .5rem;
    background-color: #0078DA;
    border-radius: 2rem;
    padding: .5rem;
    margin: 0 auto;
    display: flex;
    position: absolute;
    bottom: -85px;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
    min-width: 310px;
    width: max-content;
}
@media (max-width: 767px) {
    .hero-buttons-wrap{
        width: inherit;
    }
}

/*@media (max-width: 500px) {*/
/*    .hero-buttons-wrap{*/
/*        width: auto;*/
/*    }*/
/*}*/
.new-hero-buttons-wrap{
    margin: 0 auto;
    display: flex;
    position: absolute;
    bottom: -110px;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
    min-width: 210px;
    width: 980px;
    justify-content: center;
}
@media (min-width: 768px) and  (max-width: 991px) {
    .new-hero-buttons-wrap{
        bottom: -110px;
        max-width: 800px;
    }
}
@media (max-width: 767px) {
    .new-hero-buttons-wrap{
        width: 100%;
    }
}
@media (max-width: 767px) {
    .new-hero-buttons-wrap{
        position: relative;
        left: unset;
        transform: none;
        bottom: 0;
    }
}
.hero-buttons-wrap .wp-block-group__inner-container, .new-hero-buttons-wrap .wp-block-group__inner-container{
    display: flex;
    justify-content: center;
}
@media (max-width: 767px){
    .hero-buttons-wrap .wp-block-group__inner-container, .new-hero-buttons-wrap .wp-block-group__inner-container{
        flex-wrap: wrap;
    }
}
.new-hero-buttons-wrap .wp-block-group__inner-container{
    gap: 15px;
    width: 100%;
}
.new-hero-buttons-wrap p{
    padding: 20px 19px;
    margin: 0;
    width: calc(25% - 20px);
    background-color: #fff;
    border-radius: var(--border-radius);
    min-height: 117px;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-direction: column;
    gap: 20px;
    box-shadow: 0 12px 16px -12px rgba(70, 70, 82, .12);
}
@media (min-width: 768px) and  (max-width: 991px) {
    .new-hero-buttons-wrap p{
        min-height: auto;
        padding: 5px 15px;
    }
}
@media (max-width: 991px) {
    .new-hero-buttons-wrap p{
        gap: 10px;
    }
}
@media (max-width: 767px) {
    .new-hero-buttons-wrap p{
        width: calc(45% - 20px);
    }
}
@media (max-width: 500px) {
    .new-hero-buttons-wrap p{
        width: calc(50% - 8px);
        padding: 10px;
    }
}
.new-hero-buttons-wrap p img{
    max-width: 30px;
}
.hero-buttons-wrap p{
    color: #fff;
    font-size: 15px;
    line-height: 24px;
    padding: 6px 15px;
    margin: 0;
    width: max-content;
    white-space: nowrap;
    position: relative;
}
@media (max-width: 767px) {
    .hero-buttons-wrap p{
        font-size: 13px;
        width: 50%;
    }
}
@media (max-width: 450px) {
    .hero-buttons-wrap p{
        font-size: 12px;
        padding: 2px 5px;
        white-space: unset;
        line-height: 20px;
    }
}
.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: 767px) {
    .hero-buttons-wrap p:nth-child(2)::after, .hero-buttons-wrap p:last-child::after{
        display: none;
    }
}
@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;
}
.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;
    }
}



.faq-block{
    border-radius: 32px;
    max-width: 860px;
    margin: 0 auto;
    padding: 90px;
    background-color: #f4f4f7;
}
@media (max-width: 767px) {
    .faq-block{
        padding: 20px;
    }
}
.faq-block details{
    margin-bottom: 24px!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;
}


.updated-faq details{
    border-bottom: 1px solid #d8d8d8;
}
.updated-faq .stk-block-accordion__heading .stk-column-wrapper{
    box-shadow: none;
    padding: 0;
    padding-top: 24px;
    padding-bottom: 24px;
    margin: 0!important;
}
.updated-faq .stk-block-accordion__heading .stk-column-wrapper:hover h3, .updated-faq .stk-block-accordion__heading .stk-column-wrapper:hover .stk--inner-svg{
    color: var(--main-color);
}
.updated-faq  .stk-block-accordion__content{
    transition: none !important;
}
.updated-faq  .stk-block-accordion__content .stk-column-wrapper{
    padding: 0;
    margin: 0!important;
    margin-bottom: 20px!important;
    transition: none !important;
}
.updated-faq .stk-block-accordion__heading .stk-column-wrapper h3{
    font-size: 24px;
}

.updated-faq .stk-block-accordion[open]>summary .stk--svg-wrapper:not(.stk--has-icon2){
    transform: rotate(135deg) !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;
    transition: .3s;
}
@media (max-width: 991px) {
    .simple-btn{
        font-size: 12px;
    }
}
.simple-btn:hover{
    background-color: var(--black-color);
    border-color: var(--black-color);
    color: #fff;
}

.support-group > .wp-block-group__inner-container{
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}
.support-group > .wp-block-group__inner-container .wp-block-group{
    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: flex;
    flex-direction: column;
    height: 100%;
    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: 640px;
    justify-content: space-between;
}
@media (max-width: 991px) {
    .product-price-block{
        min-width: 400px;
        gap: 12px;
    }
}
@media (max-width: 767px) {
    .product-price-block{
        min-width: unset;
        flex-wrap: wrap;
        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: flex;
    align-items: center;
    flex-wrap: wrap;
}
@media (max-width: 767px) {
    .product-price-block{
        width: 100%;
        justify-content: space-between;
    }
}
.product-buttons{
    gap: 8px;
}
.product-price del {
    color: #888;
    margin-right: 5px;
    text-decoration: line-through;
}

.product-price ins {
    color: var(--black-color);
    text-decoration: none;
}

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

.custom-product-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    background-color: #fff;
    padding: 20px;
    border-radius: 1rem;
}
.custom-product-item .product-info{
    text-transform: uppercase;
    line-height: 1.4;
    overflow: hidden;
    display: -webkit-box;
    /*-webkit-line-clamp: 2;*/
    /*-webkit-box-orient: vertical;*/
    /*max-height: 2.8em;*/
    /*text-overflow: ellipsis;*/
    font-size: 14px;
    font-weight: 700;
}
@media (max-width: 991px) {
    .custom-product-item .product-info{
        padding: 0!important;
        font-size: 12px;
    }
}
.custom-product-item .custom-product-category{
    display: flex;
    flex-direction: column;
    background-color: #fff;
    border-radius: 1rem;
    font-size: 14px;
    padding: 5px 10px 3px;
}
@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: flex;
    justify-content: space-between;
    align-items: center;
    background: #F2F5FA;
    padding: 16px;
    gap: 10px;
    border-radius: 1rem;
}
@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: flex;
    align-items: center;
    gap: 10px;
}
@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: 100px;
}

@media (max-width: 767px) {
    .custom-product-item .product-stock{
        position: absolute;
        top: 28px;
        right: 15px;
    }
    .custom-product-item {
        display: flex;
        flex-wrap: wrap;
        justify-content: start;
        position: relative;
    }

    .custom-product-item > .product-stock {
        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: #333;
    /*padding: 0 30px;*/
}

.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/check.png");
}

.product-price {
    color: var(--black-color);
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    background-color: #fff;
    border-radius: 1rem;
    padding: 5px 10px 3px;
}

.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;
}

.bordered-block{
    border: 1px solid #d3dce3;
    border-radius: var(--border-radius);
}

.advantages-group{
    background-color: var(--main-color);
}

.advantages-group-wrap .wp-block-group__inner-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.advantages-group-wrap p{
    /*color: #fff;*/
    font-size: 16px;
    line-height: 24px;
    padding: 12px 15px;
    margin: 0;
    /*white-space: nowrap;*/
    position: relative;
    width: calc(25% - 20px);
    border-radius: var(--border-radius);
    text-align: center;
    background-color: #fff;
    display: flex;
    align-items: center;
    gap: 15px;
}
.advantages-group-wrap p img{
    max-width: 30px;
    width: 100%;
}
@media (max-width: 991px) {
    .advantages-group-wrap p{
        width: calc(50% - 20px);
    }
}
@media (max-width: 767px) {
    .advantages-group-wrap p{
        padding: 12px 12px;
    }
}

@media (max-width: 500px) {
    .advantages-group-wrap p{
        width: 100%;
    }
}

/* 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;
}


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