* {
    box-sizing: border-box;
}

body {
    background-image: url("/assets/images/main/page-fon-l.webp");
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "TT Bluescreens Trial";


}

a{
    text-decoration: none;
}

button{
    background:none;
    border: none;
    cursor: pointer;
}


.width-container {
    max-width: 1632px;
    padding-left: 96px;
    padding-right: 96px;
    margin: 0 auto;
}

.rcc-section{
    padding: 50px 0 60px;
    display: flex;
    flex-direction: column;
    gap: 68px;
    color: #ffffff;
}

.logo-wrapper{
    width: 140px;
}

.logo-wrapper img{
    width: 100%;
}

.rcc-section__top{
    display: flex;
    align-items: center;
    gap: 88px;
}

.lang-wrapper{
    display: flex;
    gap: 16px;
}

.lang__item{
    font-size: 52px;
    font-style: italic;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    color: #99A7CF;
}

.lang__item.active{
    color: #ffffff;
    position: relative;
}

.lang__item.active:before{
    content: '';
    position: absolute;
    height: 8px;
    width: 8px;
    border-radius: 100%;
    background-color: #ffffff;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
}

.rcc-content__description{
    margin-top: 32px;
    font-size: 52px;
    font-style: italic;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
}
.start-date{
    color: #8BC63F;
}

.rcc-section__bottom{
    margin-top: 68px;
}

.bottom-logo__wrapper{
    width: 180px;
}

.voting-starting{
    margin-top: 44px;
    display: flex;
    align-items: center;
    gap: 44px;
}
.voting-label{
    font-size: 52px;
    font-style: italic;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    color: #ffffff;
}
.voting-buttons{
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.voting-button{
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-style: italic;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
    color: #231F1E;
    background-color: #8BC63F;
    padding: 0 44px;
}

.voting-button.disabled{
    background-color: #C6C6C6;
    color: #696969;
    pointer-events: none;
    cursor: default;
}

.voting__label{
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: 100%;
    text-transform: uppercase;
}

.voting-label__wrapper{
    display: flex;
    flex-direction: column;
    gap: 12px;
}






[data-container]{
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    width: 100%;
}

[data-container].active{
    height: auto;
    opacity: 1;
    visibility: visible;
}



@media (max-width: 992px) {
    body {
        background-image: url("/assets/images/main/page-fon-sn.webp");
    }

    .width-container {
        max-width: 1632px;
        padding-left: 24px;
        padding-right: 24px;
        margin: 0 auto;
    }
    .rcc-section{
        padding: 80px 0;
        gap: 32px;
    }
    .rcc-section__top{
        gap: 40px;
    }
    .rcc-content__description{
        margin-top: 40px;
        font-size: 40px;
    }

    .lang__item{
        font-size: 40px;
    }
    .lang-wrapper{
        gap: 12px;
    }

    .logo-wrapper{
        width: 77px;
    }
    .bottom-logo__wrapper{
        width: 100px;
    }
    .bottom-logo__wrapper img,
    .lang-wrapper img{
        width: 100%;
    }

    .voting-starting{
        margin-top: 32px;
        flex-direction: column;
        align-items: start;
        gap: 32px;
    }
    .voting-buttons{
        width: 100%;
        gap: 16px;
    }
    .voting-button{
        font-size: 22px;
        line-height: 100%;
        height: 46px;
        padding: 0 10px;
        width: 100%;
    }

    .voting-label{
        font-size: 40px;
    }
    .rcc-section__bottom{
        margin-top: 32px;
    }

    .voting__label{
        font-size: 20px;
    }

    .voting-label__wrapper{
        gap: 8px;
    }


}