/* Contest Rules */

.contest-rules {
    margin: 78px 0 0 0;
}

.contest-rules-inner-wrapper {
    display: flex;
    flex-direction: column;
    gap: 51px;
    max-width: 500px;
    margin: 0;
}

.contest-rules-box {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 0 45px;
    margin: 98px 0 0 0;
}

.contest-rules__title {
    font-size: 64px;
    font-weight: 700;
    line-height: 70px;
    text-align: center;
    color: var(--white);
    margin: 0;
}

/* Form */
.registration {
	display: none;
}
.registration-form {
    width: 100%;
display: flex;
justify-content: center;
align-items: center;
    max-width: 504px;
    border-radius: 20px;
    border: 1px solid #FFF;
    background: linear-gradient(0deg, rgba(0, 54, 136, 0.30) 0%, rgba(0, 54, 136, 0.30) 100%), rgba(0, 0, 0, 0.30);
    padding: 53px 28px 120px;
    margin: 0;
}

.registration-form__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    text-align: center;
    color: var(--white);
    margin: 0;
}

.individual-promocode {
    padding: 55px 51px 130px;
    max-width: 514px;
    border-radius: 20px;
    border: 1px solid #FFF;
    background: linear-gradient(0deg, rgba(0, 54, 136, 0.30) 0%, rgba(0, 54, 136, 0.30) 100%), rgba(0, 0, 0, 0.30);
}

.individual-promocode__title {
    font-size: 32px;
    font-weight: 700;
    line-height: 38px;
    text-align: center;
    color: var(--white);
    margin: 0;
}

.individual-promocode__description {
    font-size: 24px;
    font-weight: 400;
    line-height: 31px;
    letter-spacing: 0.48px;
    text-align: center;
    color: var(--white);
    margin: 31px 0 0 0;
}

.individual-promocode__small-text {
    display: block;
    max-width: 350px;
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0.32px;
    text-align: center;
    color: var(--white);
    margin: 31px auto 0;
}

/* Rules */

.other-rules {
    max-width: 536px;
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 17px 0 0 0;
}

.other-rules__rule {
    border-radius: 20px;
    border: 1px solid #FFF;
    background: linear-gradient(0deg, rgba(0, 54, 136, 0.30) 0%, rgba(0, 54, 136, 0.30) 100%), rgba(0, 0, 0, 0.30);
    padding: 16px 10px 18px 151px;
}

.other-rules__rule-text {
    font-size: 24px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0.48px;
    color: var(--white);
}

/* Succes */

.success {
    width: 100%;
    position: relative;
    max-width: 1100px;
    border-radius: 20px;
    border: 1px solid #FFF;
    background: linear-gradient(0deg, rgba(0, 54, 136, 0.30) 0%, rgba(0, 54, 136, 0.30) 100%), rgba(0, 0, 0, 0.30);
    padding: 50px 0;
    margin: 56px auto 0;
}

.success__title {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    color: var(--white);
    margin: 0;
}

.stage--success::before {
    border: 1px solid #3BEC9F;
    content: '1';
    bottom: 50%;
    left: 17px;
    transform: translateY(50%);
}

@media(max-width: 1024px) {
    /* Contest Rules */

    .contest-rules {
        margin: 74px 0 0 0;
    }

    .contest-rules-box {
        gap: 15px;
        padding: 0;
        margin: 11px 0 0 0;
    }

    .contest-rules-inner-wrapper {
        width: 76%;
        gap: 16px;
        margin: 38px auto 0;
    }

    .contest-rules__title {
        font-size: 40px;
        line-height: 1;
    }

    /* Form */

    .registration-form {
        width: 99%;
        border-radius: 15px;
        padding: 28px 20px 80px;
        margin: 34px auto 0;
    }

    .registration-form__title {
        font-size: 24px;
        line-height: 28px;
    }

    /* Promo */

    .individual-promocode {
        padding: 28px 20px 0;
        max-width: 100%;
        height: 367px;
        border-radius: 15px;
    }
    
    .individual-promocode__title {
        font-size: 24px;
        line-height: 28px;
    }
    
    .individual-promocode__description {
        font-size: 16px;
        line-height: 21px;
        letter-spacing: 0.32px;
        margin: 23px 0 0 0;
    }
    
    .individual-promocode__small-text {
        max-width: 200px;
        font-size: 10px;
        line-height: 13px;
        letter-spacing: 0.2px;
        margin: 21px auto 0;
    }

    /* Rules */

    .other-rules {
        max-width: 536px;
        gap: 39px;
        margin: 31px 0 0 0;
    }

    .other-rules__rule {
        display: flex;
        align-items: center;
        border-radius: 15px;
        padding: 10px 5px 18px 80px;
        min-height: 93px;
    }

    .other-rules__rule-text {
        font-size: 16px;
        line-height: 21px;
        letter-spacing: 0.32px;
    }

    /* Succes */

    .success {
        border-radius: 15px;
        padding: 25px 0;
        margin: 34px auto 0;
    }

    .success__title {
        font-size: 24px;
    }

    .stage--success::before {
        border: 1px solid #3BEC9F;
        content: '1';
        bottom: 50%;
        right: 17px;
        transform: translateY(50%);
    }
}

@media(max-width: 767px) {

    .contest-rules {
        margin: 48px 0 0 0;
    }

    .contest-rules__title {
        font-size: 32px;
        line-height: 1;
    }

    .contest-rules-box {
        flex-direction: column;
        gap: 3px;
    }

    /* Form */

    .registration-form {
        width: 100%;
        max-width: 100%;
        padding: 26px 0 28px;
        margin: 56px auto 0;
    }

    .registration-form__title {
        font-size: 24px;
        line-height: 28px;
    }

    .contest-rules-inner-wrapper {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        margin: 30px auto 0;
        gap: 29px;
    }


    /* Promo */

    .individual-promocode {
        padding: 18px 20px 20px;
        max-width: 100%;
        height: auto;
        border-radius: 5px;
    }

    .individual-promocode__description {
        margin: 23px 0 0 0;
    }
    
    .individual-promocode__small-text {
        max-width: 200px;
        margin: 21px auto 0;
    }

    /* Rules */

    .other-rules {
        width: 100%;
        max-width: 100%;
        gap: 32px;
        margin: 0;
    }

    .other-rules__rule {
        border-radius: 5px;
        text-align: center;
        padding: 8px 10px 10px;
        min-height: auto;
    }

    .other-rules__rule-text {
        font-size: 16px;
        line-height: 21px;
        letter-spacing: 0.32px;
    }

        /* Succes */

        .success {
            border: 1px solid #3BEC9F;
        }
    
}