main * :not(i), header ul * :not(i) , .cart_shop span, .header-write-to-us, footer * :not(i){
    font-family: 'Mulish'!important;
}
main {
    min-height: calc(100vh - 310px);
}
:root {
    --main-color: #4876FF;
    --border-radius: 12px;
    --black-color: #0D1016;
    --swing-duration: 1.6s;
    --swing-ease: cubic-bezier(.22,.9,.29,1);
    --swing-angle: 8deg;
    --swing-translate: 4px;
}
header{
    background-color: #fff;
}
header .row{
    height: 80px;
}
header .footer-menu-item{
    display: none!important;
}
.custom-logo{
    width: 70px;
}
#maincontent{
    display: flex;
    align-items: center;
}
body.woocommerce-page #maincontent{
    padding-top: 70px;
}
/*.mobile-menu .navigation_header, .mobile-logo{*/
/*    display: none;*/
/*}*/
body:not(.woocommerce-page):not(.page-template-contact-page):not(.page-template-privacy-page) .main-topbar{
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 9;
}
body.woocommerce-page .main-topbar, body.page-template-contact-page .main-topbar, body.page-template-contact-page #maincontent,
body.woocommerce-page #maincontent,body.page-template-privacy-page .main-topbar{
    background-color: #000;
}
@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;
}
.animated-button a, .product-add-to-cart{
    position: relative;
    overflow: hidden;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.animated-button a:hover{
    transform: scale(1.04, 0.97) translate(0.5px, -0.5px);
}

/* animated button */
.animated-button a::before, .product-add-to-cart:before, .simple-btn:before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff1a;
    border-radius: 12px;
    transform: translateX(100%);
    transition: transform 1s ease!important;
    will-change: transform;
    pointer-events: none;
}

/* При наведении — центр */
.animated-button a::before, .product-add-to-cart:before, .simple-btn:before{
    transform: translateX(0);
}

/* При снятии наведения — вправо */
.animated-button a:not(:hover)::before, .product-add-to-cart:not(:hover)::before, .simple-btn:not(:hover)::before{
    transform: translateX(-100%);
    transition: transform 1s ease!important;
}


@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;
    }
    .main-topbar .header-sec-top{
        justify-content: start;
    }
}
header .header-write-to-us a{
    color: #fff;
    font-weight: 500;
    background: linear-gradient(135deg, #4876FF 0%, #2B58F6 100%);
    border-radius: var(--border-radius);
    padding: 11px 10px 12px 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;
}
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;
}

.hero-block-wrap{
    position: relative;
}
.hero-block-wrap .stk-block-hero__content{
    padding-bottom: 170px;
    padding-top: 170px;
}
.hero-block > .wp-block-group__inner-container{
    display: flex;
    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: flex;
    align-items: 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;
}
.hero-block .hero-second-block:before, .hero-block .hero-second-block:after{
    content: "";
    position: absolute;
    background: #a5cbff7d;
    opacity: 0.3;
    width: 100%;
    height: 100%;
}
.hero-block .hero-second-block:before{
    filter: blur(140px);
    inset-inline-end: -2em;
    top: -20px;
    transform: rotate(0);
}
.hero-block .hero-second-block:after{
    inset-inline-end: 4em;
    top: 12em;
    transform: rotate(0);
    filter: blur(180px);
}

@media (max-width: 991px) {
    .hero-block .hero-second-block{
        width: 100%;
        min-height: 300px;
    }
}

.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;
    }
}
.hero-advantage-items .hero-advantage-item{
    padding: 4px;
    border-radius: 20px;
}
.hero-advantage-items .hero-advantage-item:nth-child(1){
    transform: rotate(353deg) translate3d(-60px, 10px, 0);
    background: linear-gradient(207.85deg, #9f5ff2 -1.42%, #fff0 82.71%), linear-gradient(.308turn, #fff 19.17%, #eef1f5 104.21%);
}
.hero-advantage-items .hero-advantage-item:nth-child(2){
    transform: rotate(7deg) translate3d(45px, 30px, 0);
    background: linear-gradient(212.2deg, #325dff -4.05%, #fff0 65.57%), linear-gradient(.308turn, #fff 19.17%, #eef1f5 104.21%), linear-gradient(0deg, #fff, #fff);
}
.hero-advantage-items .hero-advantage-item:nth-child(3){
    transform: rotate(358deg) translate3d(-25px, 50px, 0);
    background: linear-gradient(212.2deg, #60df77 -4.05%, #fff0 65.57%), linear-gradient(.308turn, #fff 19.17%, #eef1f5 104.21%), linear-gradient(0deg, #fff, #fff);
}
.hero-advantage-items .hero-advantage-item p{
    padding: 20px 28px;
    background: linear-gradient(.308turn, #fff 19.17%, #eef1f5 104.21%), #fff;
    border-radius: 20px;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    flex-direction: column;
    color: #000 !important;
}

.swing-offset-first {
    transform: rotate(353deg) translate3d(-60px, 10px, 0);
    animation: swingOffsetAnimFirst 2.5s ease-in-out infinite;
    will-change: transform;
}

@keyframes swingOffsetAnimFirst {
    0%   { transform: rotate(353deg) translate3d(-60px, 10px, 0); }
    50%  { transform: rotate(353deg) translate3d(-64px, 14px, 0); } /* смещаем на -2px X и +2px Y */
    100% { transform: rotate(353deg) translate3d(-60px, 10px, 0); }
}

.swing-offset-second {
    transform: rotate(7deg) translate3d(45px, 30px, 0);
    animation: swingOffsetAnimSecond 3.5s ease-in-out infinite;
    will-change: transform;
}

@keyframes swingOffsetAnimSecond {
    0%   { transform: rotate(7deg) translate3d(45px, 30px, 0); }
    50%  { transform: rotate(7deg) translate3d(52px, 34px, 0); } /* смещение вправо на 3px */
    100% { transform: rotate(7deg) translate3d(45px, 30px, 0); }
}

.swing-offset-third {
    transform: rotate(358deg) translate3d(-25px, 50px, 0);
    animation: swingOffsetAnimThird 4.5s ease-in-out infinite;
    will-change: transform;
}

@keyframes swingOffsetAnimThird {
    0%   { transform: rotate(358deg) translate3d(-25px, 50px, 0); }
    50%  { transform: rotate(358deg) translate3d(-33px, 55px, 0); } /* смещение влево на 3px */
    100% { transform: rotate(358deg) translate3d(-25px, 50px, 0); }
}
.hero-info-block{
    background-image: url("../../images/blue_block.svg");
    background-repeat: no-repeat;
    background-size: cover;
    padding: 70px 50px 50px 50px!important;
    border-radius: 0 0 50px 50px;
    position: absolute;
    bottom: -360px;
    left: 0;
    right: 0;
}
@media (max-width: 767px) {
    .hero-info-block{
        position: relative;
        padding: 40px!important;
        bottom: 0;
        top: 90px;
    }
}
.hero-info-items > .wp-block-group__inner-container{
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    /*gap: 40px;*/
}
@media (max-width: 767px) {
    .hero-info-items > .wp-block-group__inner-container{
        /*gap: 20px;*/
    }
}

.hero-info-items > .wp-block-group__inner-container > .wp-block-group{
    width: calc(34% - 24px);
    position: relative;
}
@media (max-width: 1400px) {
    .hero-info-items > .wp-block-group__inner-container > .wp-block-group{
        width: calc(34% - 24px);
    }
    .hero-info-items > .wp-block-group__inner-container .top-text p{
        font-size: 35px !important;
    }
}
@media (max-width: 991px) {
    .hero-info-items > .wp-block-group__inner-container > .wp-block-group{
        width: calc(36% - 24px);
    }
}
@media (max-width: 768px) {
    .hero-info-items > .wp-block-group__inner-container > .wp-block-group{
        width: 100%;
    }
}
.hero-info-items > .wp-block-group__inner-container > .wp-block-group:not(:last-child):before{
    content: "";
    position: absolute;
    background: radial-gradient(50% 50% at 50% 50%, #fff 0, #fff0);
    height: 100%;
    width: 1px;
    right: 0;
}
@media (max-width: 768px) {
    .hero-info-items > .wp-block-group__inner-container > .wp-block-group:not(:last-child):before{
        display: none;
    }
}
.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: linear-gradient(135deg, #4876FF 0%, #2B58F6 100%);
}
.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(--black-color);
    color: #fff;
    font-weight: 500;
    font-size: 14px;
    border-radius: var(--border-radius);
    padding: 4px 10px;
    transition: .3s;
    background-color: var(--black-color);
    position: relative;
    overflow: hidden;
}
.simple-btn:hover{
    color: #fff;
}

.support-glow{
    position: relative;
}
.support-glow:before, .support-glow:after{
    content: "";
    position: absolute;
    background: #a5cbff7d;
    opacity: 0.3;
    width: 100%;
    height: 100%;
}

.support-glow:before{
    filter: blur(140px);
    inset-inline-end: -2em;
    top: 0;
    transform: rotate(0);
    right: 0;
    width: 40%;
}
.support-glow:after{
    inset-inline-end: 4em;
    top: 12em;
    transform: rotate(0);
    filter: blur(180px);
    right: 20%;
    width: 30%;
}

.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: #12171e;
    border-radius: 16px;
    padding: 16px;
}
.support-group > .wp-block-group__inner-container > .wp-block-group > .wp-block-group__inner-container{
    display: flex;
    align-items: center;
    gap: 20px;
}
@media (max-width: 767px) {
    .support-group > .wp-block-group__inner-container .wp-block-group{
        width: 100%;
    }
}
.contact-group > .wp-block-group__inner-container{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* products block */
#fb-accounts{
    padding-top: 70px;
}
@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;
        width: 100%;
        border-top: 1px solid #E4E4E4;
        padding-top: 15px;
    }
}
.product-price-block, .product-buttons{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: end;
}
@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: #5079F6;
    text-decoration: none;
}

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

.custom-product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.custom-product-list h2{
    width: 100%;
}
.custom-product-list h3 {
    font-size: 18px;
    width: 100%;
}
.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;
}
.custom-product-item .custom-product-category{
    display: flex;
    flex-direction: column;
    background-color: #ededed;
    border-radius: 12px;
    font-size: 11px;
    padding: 8px 10px 6px;
}
.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;
    flex-wrap: wrap;
    width: 100%;
    align-items: center;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 4px 23px #e6eaf3;
    padding: 16px;
    gap: 10px;
    margin-bottom: 12px;
    transition: .3s;
}
.custom-product-item:hover{
    box-shadow: 0 5px 25px -2px rgba(0, 0, 0, 0.27) !important;
}
@media (max-width: 991px) {
    .custom-product-item {
        width: 100%;
        padding: 16px;
    }
}
.product-details{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
}
@media (max-width: 450px) {
    .product-details{
        justify-content: center;
    }
}
.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;
    font-weight: bold;
    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-info b{
    color: #0a277e;
}

.product-stock {
    position: relative;
    color: #2fbb68;
    font-weight: bold;
    font-size: 14px;
    white-space: nowrap;
    padding-left: 22px;
}
/*@media (max-width: 991px) {*/
/*    .product-stock {*/
/*        font-size: 10px;*/
/*    }*/
/*}*/
.product-stock:before{
    content: "";
    position: absolute;
    left: 6px;
    top: calc(50% - 7px);
    background-repeat: no-repeat;
    width: 12px;
    height: 12px;
    z-index: 1;
    background-size: contain;
    background-image: url("../../images/check.png");
}

.product-price {
    color: #5079F6;
    font-weight: bold;
    font-size: 18px;
    white-space: nowrap;
    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) {
    .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: #000;
}

.advantages-group-wrap .wp-block-group__inner-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}
.advantages-group-wrap p{
    padding: 20px 28px;
    background: linear-gradient(.308turn, #fff 19.17%, #eef1f5 104.21%), #fff;
    border-radius: 20px;
    display: flex;
    font-size: 20px;
    font-weight: bold;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: center;
    color: #000 !important;
}
@media (max-width: 567px) {
    .advantages-group-wrap p{
        padding: 10px;
        font-size: 18px;
    }
}
.advantages-group-wrap .advantage-item{
    border-radius: 20px;
    padding: 4px;
}
.advantages-group-wrap .advantage-item:nth-child(1){
    transform: rotate(356deg) translate3d(-23px, 10px, 0);
    background: linear-gradient(207.85deg, #9f5ff2 -1.42%, #fff0 82.71%), linear-gradient(.308turn, #fff 19.17%, #eef1f5 104.21%);
}
.advantages-group-wrap .advantage-item:nth-child(2){
    transform: rotate(4deg) translate3d(-14px, 50px, 0);
    background: linear-gradient(212.2deg, #325dff -4.05%, #fff0 65.57%), linear-gradient(.308turn, #fff 19.17%, #eef1f5 104.21%), linear-gradient(0deg, #fff, #fff);
}
.advantages-group-wrap .advantage-item:nth-child(3){
    transform: rotate(357deg) translate3d(-15px, 26px, 0);
    background: linear-gradient(212.2deg, #60df77 -4.05%, #fff0 65.57%), linear-gradient(.308turn, #fff 19.17%, #eef1f5 104.21%), linear-gradient(0deg, #fff, #fff);
}
.advantages-group-wrap .advantage-item:nth-child(4){
    transform: rotate(366deg) translate3d(-5px, 55px, 0);
    background: linear-gradient(212.2deg, #df9560 -4.05%, #fff0 65.57%), linear-gradient(.308turn, #fff 19.17%, #eef1f5 104.21%), linear-gradient(0deg, #fff, #fff);
}

.swing-advantage-first {
    transform: rotate(353deg) translate3d(-60px, 10px, 0);
    animation: swingAdvantageFirst 2.5s ease-in-out infinite;
    will-change: transform;
}

@keyframes swingAdvantageFirst {
    0%   {  transform: rotate(356deg) translate3d(-23px, 10px, 0); }
    50%  {  transform: rotate(356deg) translate3d(-21px, 13px, 0); } /* смещаем на -2px X и +2px Y */
    100% {  transform: rotate(356deg) translate3d(-23px, 10px, 0); }
}

.swing-advantage-second {
    transform: rotate(4deg) translate3d(-14px, 50px, 0);
    animation: swingAdvantageSecond 3.5s ease-in-out infinite;
    will-change: transform;
}

@keyframes swingAdvantageSecond {
    0%   {  transform: rotate(4deg) translate3d(-14px, 50px, 0); }
    50%  {  transform: rotate(4deg) translate3d(-11px, 53px, 0); } /* смещение вправо на 3px */
    100% {  transform: rotate(4deg) translate3d(-14px, 50px, 0); }
}

.swing-advantage-third {
    transform: rotate(357deg) translate3d(-15px, 26px, 0);
    animation: swingAdvantageThird 4.5s ease-in-out infinite;
    will-change: transform;
}

@keyframes swingAdvantageThird {
    0%   { transform: rotate(357deg) translate3d(-15px, 26px, 0); }
    50%  { transform: rotate(357deg) translate3d(-17px, 23px, 0); } /* смещение влево на 3px */
    100% { transform: rotate(357deg) translate3d(-15px, 26px, 0); }
}

.swing-advantage-fourth {
    transform: rotate(366deg) translate3d(-5px, 55px, 0);
    animation: swingAdvantageFourth 4.5s ease-in-out infinite;
    will-change: transform;
}

@keyframes swingAdvantageFourth {
    0%   { transform: rotate(366deg) translate3d(-5px, 55px, 0); }
    50%  { transform: rotate(366deg) translate3d(-2px, 58px, 0); } /* смещение влево на 3px */
    100% { transform: rotate(366deg) translate3d(-5px, 55px, 0); }
}


.advantages-group-wrap p img{
    max-width: 30px;
    width: 100%;
}
@media (max-width: 991px) {
    .advantages-group-wrap .advantage-item{
        width: calc(50% - 20px);
    }
}
/*@media (max-width: 767px) {*/
/*    .advantages-group-wrap .advantage-item{*/
/*        padding: 12px 12px;*/
/*    }*/
/*}*/

@media (max-width: 500px) {
    .advantages-group-wrap .advantage-item{
        width: 95%;
    }
}

/* 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;
        flex-wrap: wrap;
    }
    .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;
    }
}



/* RANK MATH ACCORDION */
.rank-math-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease!important;
}
.rank-math-answer p{
    margin-bottom: 0;
}

.rank-math-answer.open {
    opacity: 1;
}

.rank-math-question {
    position: relative;
    padding-right: 20px;
    font-size: 18px;
}

.rank-math-question::after {
    content: "+";
    position: absolute;
    right: 0;
    transition: transform 0.3s;
}

.rank-math-answer.open + .rank-math-question::after {
    content: "–";
}
.rank-math-list-item{
    cursor: pointer;
    border: 1px solid #707a9705;
    border-radius: 24px;
    background-color: #fff;
    box-shadow: -3px 9px 25px -10px rgba(0, 0, 0, 0.2);
    padding: 20px 20px 12px;
    margin-bottom: 15px;
}


/* cart-checkout */
/* checkout */
body .wp-block-woocommerce-empty-cart-block *{
    color: #fff!important;
}
.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;
    background-color: #4876FF;
}
body a.wc-block-components-checkout-return-to-cart-button{
    border-radius: 12px;
}
body .wp-block-woocommerce-cart .wc-block-cart__submit-button:hover, body .wc-block-components-checkout-place-order-button:hover{

}
body .wp-block-woocommerce-empty-cart-block *{
    color: #fff!important;
}
body .wc-block-components-product-name, body .wc-block-cart-item__image a{
    pointer-events: none;
}
body .wc-block-cart-items, body .wp-block-woocommerce-cart-order-summary-block, body .wc-block-components-totals-coupon__button,
body .wc-block-components-form.wc-block-checkout__form, body .wc-block-components-form.wc-block-checkout__form p, body .wc-block-components-form.wc-block-checkout__form h2,
body .wp-block-woocommerce-checkout-order-summary-block, body .wp-block-woocommerce-checkout-order-summary-block p{
    color: #fff!important;
}
body table.wc-block-cart-items.wp-block-woocommerce-cart-line-items-block, body .wp-block-woocommerce-cart-order-summary-block,
body .wp-block-woocommerce-checkout-order-summary-block, body .wc-block-components-form.wc-block-checkout__form{
    background: #1c222c!important;
    border: none!important;
    border-radius: 12px;
}
body .wc-block-components-form.wc-block-checkout__form{
    padding: 20px;
}
body .wc-block-components-form.wc-block-checkout__form input, body .wc-block-components-totals-coupon__form input,
body .wc-block-components-form.wc-block-checkout__form .wc-block-components-textarea{
    color: #fff!important;
    background-color: #282d3e!important;
    border-color: #67728D!important;
}
body .wc-block-components-totals-coupon__form label{
    color: #fff;
}
body .wc-block-components-totals-coupon__form button, body .wc-block-components-totals-coupon__form input{
    border-radius: 0!important;
}
body .wc-block-components-totals-coupon__form button{
    background: linear-gradient(135deg, #4F72A8 0%, #7FC7D9 100%);
}
body .wc-block-components-form.wc-block-checkout__form input:focus{
    outline: none!important;
}
body .wc-block-components-form.wc-block-checkout__form .has-error input{
    border-color: #cc1818!important;
}
body .wc-block-components-form.wc-block-checkout__form label{
    color: #fff!important;
}
body .wc-block-components-form.wc-block-checkout__form .wc-block-components-checkbox .wc-block-components-checkbox__mark{
    fill: #fff;
}
body .wc-block-components-form.wc-block-checkout__form a{
    color: #A7C7E7;
}
body .wc-block-components-form.wc-block-checkout__form .wc-block-checkout__terms.wc-block-checkout__terms--with-separator{
    padding-top: 0;
}