:root{
    --yellow: #FED700;
    --black: #000;
    --dark: #262626;
    --dark-gray: #4F4F4F;
    --white: #fff;
    --gray: #f3f3f3;

    --radius-x: 20px;
    --radius-l: 15px;
    --radius-m: 10px;
    --radius-s: 5px;
}
body,
html{
    font-family: 'NunitoSans', sans-serif;
    color: #000;
    font-weight: 400;
    min-width: 390px;
}
body.fixed{
    overflow: hidden;
}
.preview.block-set{
    padding: 0;
}
.block-set{
    font-family: 'NunitoSans', sans-serif;
    color: #000;
    font-weight: 400;
}
.block-set:not(.block-set-editor){
    display: block!important;
}
.text-center{
    text-align: center;
}
.text-400{
    font-weight: 400;
}
.text-yellow{
    color: var(--yellow,#fed700);
}
.radius-l{
    border-radius: var(--radius-l,20px);
}
.radius-m{
    border-radius: var(--radius-m,10px);
}
.radius-s{
    border-radius: var(--radius-s,5px);
}
.bg-white{
    background: var(--white,#fff);
}
.bg-gray{
    background: var(--gray,#f3f3f3);
}
.bg-yellow{
    background: var(--yellow,#fed700);
}
.bg-yellow_gradient{
    background: linear-gradient(126.67deg, rgba(255, 255, 255, 0.4) 14.8%, rgba(255, 255, 255, 0) 67.8%), var(--yellow,#fed700);
}
.bg-black{
    background: var(--black,#000);
}
.bg-black_gradient{
    background: linear-gradient(126.67deg, rgba(255, 255, 255, 0.2) 14.8%, rgba(255, 255, 255, 0) 67.8%), var(--black,#000);
}
.bg-dark{
    background: var(--dark,#262626);
}
.bg-dark_gradient{
    background: linear-gradient(126.67deg, rgba(255, 255, 255, 0.2) 14.8%, rgba(255, 255, 255, 0) 67.8%), var(--dark,#262626);
}
.main-block{
    padding: 50px 0;
}
.main-container {
    position: relative;
    z-index: 5;
    max-width: 1200px;
    width: 100%;
    margin: auto;
    font-family: 'NunitoSans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.3;
}
.main-container b{
    font-weight: 800;
}
.main-title{
    font-size: 36px!important;
    font-weight: 800!important;
    line-height: 1.35!important;
    text-transform: uppercase;
    margin-top: 0!important;
}
.main-title b{
    font-weight: 800;
}
.main-btn{
    position: relative;
    z-index: 20;
    max-width: 600px;
    width: 100%;
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    text-align: center;
    text-decoration: none!important;
    color: #000 !important;
    background: var(--yellow,#fed700);
    border-radius: 10px;
    cursor: pointer;
    user-select: none;
    padding: 20px;
    transition: 0.3s;
}
.main-btn:hover{
    -webkit-animation: pulse 2s infinite;
    animation: pulse 1.5s infinite;
}
.timer-box{
    display: flex;
    align-items: stretch;
    gap: 15px;
}
.timer__item{
    width: 100%;
    height: 95px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--dark,#262626);
    color: var(--white,#fff);
    border-radius: 10px;
}
.timer__numb{
    font-size: 36px;
    font-weight: 800;
    line-height: 1.3;
}
.timer__text{
    font-size: 18px;
    font-weight: 400;
}
body:not(:has(.block-set-editor)) [animate-on-scroll] {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

body:not(:has(.block-set-editor)) [animate-on-scroll].animate {
    opacity: 1;
    transform: translate3d(0,0,0);
}
@media (min-width: 768px) {
    body:not(:has(.block-set-editor)) [animate-on-scroll] {
        transform: none;
    }
    body:not(:has(.block-set-editor)) [animate-from-right] {
        transform: translate3d(50px, 50px,0);
    }
    body:not(:has(.block-set-editor)) [animate-from-left] {
        transform: translate3d(-50px, 50px,0);
    }
    body:not(:has(.block-set-editor)) [animate-from-up] {
        transform: translate3d(0, -60px,0);
    }
    body:not(:has(.block-set-editor)) [animate-from-down] {
        transform: translate3d(0, 60px,0);
    }
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 #fed700;
    }
    70% {
        box-shadow: 0 0 0 10px rgb(218 103 68 / 0%);
    }
    100% {
        box-shadow: 0 0 0 0 rgb(218 103 68 / 0%);
    }
}
@keyframes infinityMove {
    0%{
        background-position-x: 96%;
    }
    50%{
        background-position-x: 5%;
    }
    100%{
        background-position-x: 96%;
    }
}
@media screen and (max-width: 1199px) {
    .main-container {
        max-width: 960px;
        padding: 0 15px;
    }
    .main-title{
        font-size: 32px!important;
    }
}
@media screen and (max-width: 991px) {
    .main-container {
        max-width: 720px;
    }
    .main-title{
        font-size: 28px!important;
    }
}
@media screen and (max-width: 767px) {
    .main-container {
        max-width: 540px;
        font-size: 16px;
    }
    .main-title{
        font-size: 24px!important;
        line-height: 1.25!important;
    }
}
@media screen and (max-width: 575px) {
    .main-container {
        max-width: 100%;
        padding: 0 20px;
    }

    .main-btn{
        min-height: 63px;
        font-size: 18px;
        line-height: 1.3;
    }
    .timer-box{
        gap: 5px;
    }
    .timer__item{
        height: 81px;
    }
    .timer__numb{
        font-size: 24px;
    }
}
