*, *::after, *::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Roboto';
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: auto;  
}

.backgroud-image {
    background-color: #060607;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url("../img/bg.jpg");
    background-image: -webkit-image-set(
        url("../img/bg.avif"),
        url("../img/bg.webp"),
        url("../img/bg.jpg")
    );
    background-image: image-set(
        url("../img/bg.avif"),
        url("../img/bg.webp"),
        url("../img/bg.jpg")
    );

    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;

}
.background-overlay {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #060607eb;
}

.base__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}

.container {
    max-width: 1150px;
    width: 100%;
    margin: 0 auto;
    padding-top: 30px;
   
}
.stages-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 150px);
}

.header{
    background-color: #060607;
}
.header__content {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main {
    background-color: #060607;
    position: relative;
}

.text-yellow {
    color: yellow;
    font-weight: 700;
}

.page-title {
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
    text-align: center;
    color: #fff;
}

.container {
    position: relative;
}

.stage-title{
    color: #fff;
    font-size: 30px;
    line-height: 1.2;
    max-width: 550px;
    font-weight: 600;
    letter-spacing: .35px;
    text-align: center;
    margin: 0 auto 50px;
}
.stage {
    opacity: 0;
    visibility: hidden;
    display: none;
    flex-direction: column;
    align-items: center;
    transition: all .4s cubic-bezier(.21,.67,.58,1) .15s;
}
.stage.active {
    opacity: 1;
    visibility: visible;
    display: flex;
    transition: all .4s cubic-bezier(.21,.67,.58,1) .15s;
}

.btn{
    border: none;
    background-color: #00872f;
    color: #fff;
    border-radius: 100px;
    padding: 12px 22px;
    max-width: 100%;
    cursor: pointer;
    transition: all .4s cubic-bezier(.21,.67,.58,1) .15s;
}
.btn:hover{
    background-color: #2f9452;
    transition: all .4s cubic-bezier(.21,.67,.58,1) .15s;
}

.btn.stage-prev {
    background-color: #122d1a;
    padding: 12px;
    display: none;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}
.btn.stage-prev.show{
    display: flex;
}
.icon-arrow{
    width: 18px;
    height: 18px;
}

.variants-image{
    display: flex;
    flex-wrap: wrap;
    align-items: start;
    justify-content: center;
    gap: 45px 40px;
    padding: 0 15px;
    transition: all .4s cubic-bezier(.21,.67,.58,1) .15s;
}

.variant-item__img{
    height: 250px;
    width: 250px;
    object-fit: cover;
}
.variant-item__input{
    display: none;
}
.variants-image .variant-item__label{
    display: flex;
    flex-direction: column;
    position: relative;
}
.variants-image .variant-item__title {
    display: block;
    text-align: center;
    color: #fff;
    user-select: none;
    font-size: 14px;
    line-height: 20px;
    margin-top: 22px;
    max-width: 250px;
}
.stages-action {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0;
}
.variants-image .variant-item__check-icon{
    width: 50px;
    height: 50px;
    opacity: 0;
    transition: opacity .35s ease;
}
.variants-image .variant-item__check-icon path {
    fill: #fff;
}

.variants-image .variant-item__check-icon circle {
    fill: #00872f;  
}
.variants-image .variant-item__check{
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(27,27,28,.5);
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity .35s ease;
}
.variant-item:hover .variant-item__label{
    cursor: pointer;
}
.variants-image .variant-item:hover .variant-item__check,
.variants-image .variant-item__input:checked + .variant-item__label .variant-item__check{
    opacity: 1;
    transition: opacity .35s ease;
}

.variants-image .variant-item__input:checked + .variant-item__label .variant-item__check-icon{
    opacity: 1;
    transition: opacity .35s ease;
}


/* variants-radio */

.variants-radio {
    display: flex;
    flex-direction: column;
    align-items: start;
}
.variants-radio .variant-item {
    margin-bottom: 20px;
    min-width: 175px;
    max-width: 550px;
}
.variants-radio .variant-item__label {
    display: flex;
    align-items: center;
}
.variants-radio .variant-item__check {
    border: 2px solid #fff;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.variants-radio .variant-item__input:checked + label .variant-item__check::before {
    content: "";
    display: block;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    border: 2px solid #fff;
}
.variants-radio .variant-item__title {
    font-size: 16px;
    color: #fff;
}

/* variants-checkbox */

.variants-checkbox {
    display: flex;
    flex-direction: column;
    align-items: start;
}
.variants-checkbox .variant-item {
    margin-bottom: 20px;
    min-width: 175px;
    max-width: 550px;
}
.variants-checkbox .variant-item__label {
    display: flex;
    align-items: center;
}
.variants-checkbox .variant-item__check {
    border: 2px solid #fff;
    height: 30px;
    width: 30px;
    border-radius: 4px;
    margin-right: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.5;
    transition: opacity .35s ease;
}
.variants-checkbox .variant-item__input:checked + label .variant-item__check,
.variants-checkbox label:hover .variant-item__check{
    opacity: 1;
    transition: opacity .35s ease;
}
.variants-checkbox .variant-item__input:checked + label .variant-item__check::before {
    border: 2px solid #fff;
    content: "";
    display: block;
    position: absolute;
    border: 2px solid #fff;
    border-top: 0;
    border-right: 0;
    box-sizing: border-box;
    height: 8px;
    width: 15px;
    transform: translateY(-2px) rotate(-45deg);
    transition: all .05s;
}
.variants-checkbox .variant-item__title {
    font-size: 16px;
    color: #fff;
}
.input-title {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
}
.form-row {
    display: flex;
    flex-direction: column;
    width: 100%;
}
.input-phone {
    font-size: inherit;
    line-height: 1.333;
    font-weight: 400;
    padding: 3px 15px 2px;
    word-break: keep-all;
    border-radius: 4px;
    min-height: 56px;
}
.stage.shake{
    animation: shake .5s ease 1 both .2s;
}
@keyframes shake {
    10%,90% {
        transform: translate3d(-1px,0,0)
    }

    20%,80% {
        transform: translate3d(2px,0,0)
    }

    30%,60% {
        transform: translate3d(-3px,0,0)
    }

    45% {
        transform: translate3d(3px,0,0)
    }
}
.no-scroll{
    overflow: hidden;
}
.modal{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s;
}
.modal.open{
    visibility: visible;
    opacity: 1;
}
.modal-content{
    background-color: #fff;
    padding: 30px 30px 50px;
    border-radius: 10px;
    position: relative;
}
.modal-title{
    text-align: center;
    margin-bottom: 20px;
}
.modal-text{
    text-align: center;
}
.modal-close{
    width: 20px;
    height: 20px;
    background-color: transparent;
    border: 0;
    position: absolute;
    top: 10px;
    right: 10px;
    transform: rotate(45deg);
    cursor: pointer;
}
.modal-close::before,
.modal-close::after{
    content: "";
    display: block;
    height: 2px;
    width: 16px;
    background-color: #000;
}
.modal-close::before{
    transform: rotate(90deg) translate(1px, 0px);
}
.modal-close::after{
    transform: translate(0px, -1px);
}

@media (max-width: 1024px){
    .container{
        padding: 30px 15px 15px;
    }
    .stage{
        max-width: 100%;
    }
    .variants.variants-image{
        max-width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 30px;
        justify-content: flex-start;
    }
    .variants.variants-image .variant-item{
        flex-shrink: 0;

    }
    .stage-title {
        font-size: 20px;
        max-width: 100%;
    }
}

.form-row.form-row--input-file {
    color: #fff;
    margin-bottom: 30px;
}
.input-text {
    font-size: inherit;
    line-height: 1.333;
    font-weight: 400;
    padding: 3px 15px 2px;
    word-break: keep-all;
    border-radius: 4px;
    min-height: 40px;
}
span.input-text__title {
    color: #fff;
    text-align: center;
    margin-bottom: 10px;
}