* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto/static/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto/static/Roboto-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Roboto';
    src: url('/fonts/Roboto/static/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/static/Inter_24pt-Regular.ttf') format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/static/Inter_28pt-Medium.ttf') format('truetype');
    font-weight: 500;
}

@font-face {
    font-family: 'Inter';
    src: url('/fonts/Inter/static/Inter_28pt-Bold.ttf') format('truetype');
    font-weight: 700;
}

body,
html {
    font-family: 'Roboto', sans-serif;
    width: 100%;
    height: 100%;
    background: #211A3A;
    background-image: url('../image/bgsite.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.main {
    flex: 1;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 40px 20px;
}

.block_modal {
    position: fixed;
    inset: 0;
    display: none;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    place-items: center;
    gap: 40px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.75) 100%);
    z-index: 9998;
    padding: 0 20px;

    .modal_content {
        border-radius: 40px;
        background: #140E27;
        color: #fff;
        width: 100%;
        max-width: 400px;
        min-height: 400px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        gap: 10px;
        background-image: url('../image/bg.png');
        background-size: cover;

        h1 {
            color: #FFF;
            text-align: center;
            font-size: 28px;
            font-style: normal;
            font-weight: 900;
            line-height: 32px;
        }

        p {
            color: #898693;
            text-align: center;
            font-size: 17px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
        }

        h2 {
            color: #FEE7A1;
            font-size: 24px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
        }

        span {
            color: #FFF;
        }

        button {
            display: flex;
            padding: 18px 0px;
            width: 100%;
            justify-content: center;
            align-items: center;
            border-radius: 16px;
            background: linear-gradient(0deg, #982AFC 0%, #C74BF8 100%);
            cursor: pointer;
            color: #FFF;
            text-align: center;
            font-size: 21px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            border: none;
        }
    }
}

.block_logo {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin: 0px 0 20px 0;

    h1 {
        color: #FFF;
        font-family: 'Inter', sans-serif;
        text-align: center;
        font-size: 30px;
        font-style: normal;
        font-weight: 900;
        line-height: 32px;
    }
}

.block_spin {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    width: 100%;

    p {
        color: #FFF;
        text-align: center;
        font-size: 16px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .block_roulette {
        border-radius: 30px;
        background: radial-gradient(100% 100% at 50.14% 0%, #FFF 2.88%, #FFF0DE 28.85%, #FEE590 53.37%, #C39975 100%);
        max-width: 500px;
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 12px;
        justify-content: center;
        align-items: center;
        overflow: hidden;
        padding: 16px 0;
    }

    .block_roulette p {
        color: #C39975;
        text-align: center;
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    .roulette-wrap {
        overflow: hidden;
        background-image: url('../image/Vector.svg');
        background-position: center;
    }


    .roulette {
        display: flex;
        will-change: transform;
        transition: transform 1000ms cubic-bezier(.15, .8, .2, 1);
    }

    .cell {
        width: 140px;
        height: 140px;
        border-radius: 12px;
        display: grid;
        grid-template-rows: 1fr auto;
        place-items: center;
        text-align: center;
    }

    .cell img {
        max-width: 140px;
        max-height: 140px;
        object-fit: cover;
    }

    /* Кнопки / статус */
    .controls {
        display: flex;
        gap: 12px;
        align-items: center;
        flex-direction: column;
    }

    button.spin {
        border-radius: 16px;
        background: linear-gradient(0deg, #982AFC 0%, #C74BF8 100%);
        display: inline-flex;
        padding: 18px 46px;
        justify-content: center;
        align-items: center;
        border: none;
        color: #FFF;
        text-align: center;
        font-size: 21px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        cursor: pointer;
    }

    .status {
        color: #896F61;
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;

        span {
            color: #211A3A;
        }
    }
}

/* Модалка */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-content: center;
    justify-content: center;
    place-items: center;
    background: rgba(0, 0, 0, .5);
    z-index: 9999;
    padding: 0 20px;
}

.modal.show {
    display: flex;
}

.modal-card {
    border-radius: 40px;
    background: #140E27;
    color: #fff;
    width: 100%;
    max-width: 400px;
    min-height: 400px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background-image: url('../image/bg.png');
    background-size: cover;

    span {
        color: #FFF;
    }
}

.modal-card header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.modal-card img {
    height: 140px;
}

.modal-card h3 {
    color: #FFF;
    text-align: center;
    font-size: 28px;
    font-style: normal;
    font-weight: 900;
    line-height: 32px;
}

.modal-card p {
    text-align: center;
    color: #898693;
}

.modal-card footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
    width: 100%;
}

.modal-card button {
    display: flex;
    padding: 18px 0px;
    width: 100%;
    justify-content: center;
    align-items: center;
    border-radius: 16px;
    background: linear-gradient(0deg, #982AFC 0%, #C74BF8 100%);
    cursor: pointer;
    color: #FFF;
    text-align: center;
    font-size: 21px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    border: none;
}

.block_info {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;

    p {
        color: #898693;
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-align: center;
    }

    .info {
        border-radius: 30px;
        background: #140E27;
        padding: 30px;
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        max-width: 500px;
        display: flex;
        flex-direction: column;
        gap: 10px;

        p {
            color: #fff;
            text-align: left;
        }

        span {
            color: #898693;
        }
    }
}

.block_info_svg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;

    svg {
        filter: drop-shadow(0 0 1px #FFF) drop-shadow(0 0 0 #FFF);
    }
}

.block_prizes,
.block_priz {
    border-radius: 30px;
    background: #FFF;
    display: flex;
    padding: 20px 10px 10px 10px;
    flex-direction: column;
    justify-content: flex-end;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;

    h1 {
        color: #140E27;
        text-align: center;
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }

    h2 {
        color: #898693;
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
        text-align: center;
    }

    .list {
        display: flex;
        flex-direction: column;
        margin-top: 10px;
    }

    .prizes_list {
        display: flex;
        align-items: center;
        gap: 12px;
        border-radius: 20px;
        background: #42BA74;
        padding: 12px;
        margin-top: 10px;


        img {
            height: 100px;
        }

        .prizes_info {
            display: flex;
            flex-direction: column;

            p {
                color: rgba(0, 0, 0, 0.50);
            }

            .prize_none {
                color: #FFD685;
                font-size: 17px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
            }

            span {
                color: #FFF;
            }

            p:last-child{
                margin-top: 6px;
            }
        }
    }
}

.block_priz{
    padding: 0;
}

.block_chat {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    width: 100%;
    margin: 0 auto;


    .header_chat {
        border-radius: 30px 30px 0px 0px;
        background: linear-gradient(158deg, #302365 0%, #512168 100%);
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 12px;

        p {
            color: #FFF;
            font-size: 17px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            max-width: 100px;
        }

        img {
            width: 40px;
            height: 40px;
            flex-shrink: 0;
            aspect-ratio: 1/1;
        }
    }

    .header_online {
        background: linear-gradient(158deg, #302365 0%, #512168 100%);
        display: flex;
        align-items: center;
        border-top: 1px solid rgba(255, 255, 255, 0.10);
        justify-content: center;
        padding: 8px;
        color: #9A90B2;
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: normal;
    }


    .chat {
        background: #FFF;
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 6px 20px 20px 20px;
        height: 400px;
        border-radius: 0px 0px 30px 30px;


        .block_message {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 12px;
            overflow-y: auto;

            .message {
                display: flex;
                gap: 10px;

                img {
                    width: 40px;
                    height: 40px;
                    flex-shrink: 0;
                    aspect-ratio: 1/1;
                    border-radius: 100px;
                }

                .text_message {
                    border-radius: 16px;
                    background: #F3F2F7;
                    padding: 12px 16px;
                    display: flex;
                    flex-direction: column;
                    gap: 12px;
                    font-size: 14px;

                    .username {
                        color: #6371F4;
                        font-style: normal;
                        font-weight: 500;
                        line-height: normal;
                    }

                    .content_message {
                        color: #333;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 19px;
                    }

                    .time_message {
                        color: #BBB;
                        font-style: normal;
                        font-weight: 400;
                        line-height: 19px;
                    }
                }
            }
        }

        .block_send {
            display: flex;
            gap: 10px;

            input {
                flex: 1;
                border-radius: 16px;
                background: #F3F2F7;
                padding: 12px 16px;
                font-size: 16px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
                border: none;
                width: 80%;
            }

            button {
                border-radius: 16px;
                background: #42BA74;
                display: inline-flex;
                width: 60px;
                height: 60px;
                justify-content: center;
                align-items: center;
                border: none;
                color: #FFF;
                text-align: center;
                font-size: 17px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
                cursor: pointer;
            }
        }

    }
}

footer {
    margin-top: 20px;
    text-align: center;
    color: #908C9C;
    text-align: center;
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    max-width: 400px;
    margin: 0 auto;
}


.block_wins_1,
.block_wins_2,
.block_wins_3,
.block_wins_4 {
    border-radius: 30px;
    background: #FFF;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 10px;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;

    h1 {
        font-size: 20px;
        color: #140E27;
    }

    p {
        font-size: 17px;
        color: #898693;
    }

    .info {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0 10px;

        img {
            width: 67px;
            height: 67px;
            margin: 0 auto;
        }

        p {
            span {
                color: #211A3A;
            }
        }

        p:last-child {
            text-align: center;
        }
    }

    .info_img {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;

        img {
            width: 220px;
            height: 220px;
        }
    }

    header {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        border-bottom: 1px solid #DDD;
        width: 100%;
        text-align: center;
        padding-bottom: 20px;
        margin-bottom: 10px;

        .img {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;

            .gif {
                width: 80px;
                height: 80px;
                position: absolute;
                top: 40%;
                transform: translateY(-50%);
            }
        }
    }

    .btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 10px;
        gap: 10px;
        width: 100%;

        button {
            display: flex;
            padding: 18px 0px;
            width: 100%;
            justify-content: center;
            align-items: center;
            border-radius: 16px;
            background: linear-gradient(0deg, #982AFC 0%, #C74BF8 100%);
            cursor: pointer;
            color: #FFF;
            text-align: center;
            font-size: 21px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            border: none;
        }
    }
}

.info_block {
    border-radius: 30px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 10px;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;

    h1 {
        font-size: 20px;
        color: #140E27;
    }

    p {
        font-size: 17px;
        color: #898693;
    }

    .info {
        display: flex;
        flex-direction: column;
        gap: 10px;

        img {
            width: 67px;
            height: 67px;
            margin: 0 auto;
        }

        p {
            span {
                color: #211A3A;
            }
        }

        p:last-child {
            text-align: center;
        }
    }

    .info_img {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;

        img {
            width: 220px;
            height: 220px;
        }

        span {
            color: #C54BF6;
        }
    }

    header {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        border-bottom: 1px solid #DDD;
        width: 90%;
        text-align: center;
        padding-bottom: 20px;

        .img {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;

            .gif {
                width: 80px;
                height: 80px;
                position: absolute;
                top: 40%;
                transform: translateY(-50%);
            }
        }
    }

    .btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0;
        gap: 10px;
        width: 100%;

        button {
            display: flex;
            padding: 18px 0px;
            width: 100%;
            justify-content: center;
            align-items: center;
            border-radius: 16px;
            background: linear-gradient(0deg, #982AFC 0%, #C74BF8 100%);
            cursor: pointer;
            color: #FFF;
            text-align: center;
            font-size: 21px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            border: none;
        }
    }
}

.block_operator {
    border-radius: 30px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    padding: 20px 10px;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;

    header {
        display: flex;
        align-items: center;
        gap: 20px;
        border-bottom: 1px solid #DDD;
        padding-bottom: 20px;

        img {
            width: 80px;
            height: 80px;
            border-radius: 999px;
        }

        h1 {
            color: #42BA74;
            font-size: 17px;
            font-style: normal;
            font-weight: 500;
            line-height: 22px;
            display: flex;
            justify-content: start;
        }

        p {
            color: #898693;
            font-size: 17px;
            font-style: normal;
            font-weight: 500;
            line-height: 22px;
        }

        span {
            color: #211A3A;
            font-size: 17px;
            font-style: normal;
            font-weight: 500;
            line-height: 22px;
        }
    }

    .operator_chat {

        padding: 10px;
        display: flex;
        flex-direction: column;
        gap: 10px;

        .message_operator {
            display: flex;
            flex-direction: column;
            gap: 10px;

            img {
                width: 40px;
                height: 40px;
                flex-shrink: 0;
                aspect-ratio: 1/1;
                border-radius: 100px;
            }

            .text_message_operator {
                border-radius: 16px;
                background: #F3F2F7;
                padding: 12px 16px;
                display: flex;
                flex-direction: column;
                gap: 12px;
                font-size: 14px;

                .username {
                    color: #6371F4;
                    font-style: normal;
                    font-weight: 500;
                    line-height: normal;
                }

                .content_message {
                    color: #333;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 19px;
                }

                .time_message {
                    color: #BBB;
                    font-style: normal;
                    font-weight: 400;
                    line-height: 19px;
                }
            }
        }
    }

    .btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 10px 10px 0px 10px;
        gap: 10px;
        width: 100%;
        border-top: 1px solid #DDD;

        button {
            display: flex;
            padding: 18px 0px;
            width: 100%;
            justify-content: center;
            align-items: center;
            border-radius: 16px;
            background: linear-gradient(0deg, #982AFC 0%, #C74BF8 100%);
            cursor: pointer;
            color: #FFF;
            text-align: center;
            font-size: 21px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            border: none;
        }
    }
}

.red {
    color: #EA336D !important;
}

.green {
    color: #42BA74 !important;
}

.dark {
    color: #211A3A !important;
}

.main_block {
    border-radius: 30px;
    background: #FFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 20px 0;
    max-width: 500px;
    margin: 0 auto;
    gap: 10px;
    overflow: hidden;

    hr {
        width: 100%;
        border: none;
        border-top: 1px solid #DDD;
    }

    h1 {
        font-size: 20px;
        color: #140E27;
        font-weight: 500;
    }

    h2 {
        font-size: 17px;
        color: #140E27;
        font-weight: 500;
    }

    p {
        font-size: 17px;
        color: #898693;
        font-weight: 500;

        span {
            color: #140E27;
        }
    }

    .img_center {
        width: 93px;
        height: auto;
        margin: 0 auto;
    }

    .info,
    .info_user {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding: 10px 20px;

        .greenBtn {
            background: linear-gradient(0deg, #42BA74 0%, #AADEBF 100%);
        }

        .block_que_user {
            border-radius: 16px;
            background: #F3F2F7;
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            min-height: 80px;
            padding: 0 10px;

            h1 {
                font-size: 17px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
            }

            .user_ava {
                border-radius: 60px;
                background: #898693;
                display: flex;
                align-items: center;
                justify-content: center;
                width: 40px;
                height: 40px;
            }

            .user_ava.you {
                background: #6371F4;
            }

            .user_info {
                display: flex;
                flex-direction: column;

                h1 {
                    span {
                        color: #6371F4;
                    }
                }
            }

            .loading_gif {
                width: 60px;
                height: 60px;
                margin-left: auto;
            }
        }

        .loading_gif2 {
            width: 60px;
            height: 60px;
            margin: 0 auto;
        }

        .btns {
            padding: 0;
        }

        .block_doc {
            padding: 0 20px;
            color: #898693;
            display: flex;
            flex-direction: column;
            gap: 6px;
            line-height: 20px;

            li::marker {
                color: #211A3A;
            }
        }
    }

    .info_user {
        overflow-y: scroll;
        scrollbar-width: none;
        /* Firefox */
    }

    .info_user::-webkit-scrollbar {
        display: none;
        /* Chrome, Safari */
    }


    .info_img_block {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        padding: 10px 20px;

        img {
            width: 50px;
            height: 50px;
        }

        h1 {
            text-align: center;
        }
    }

    .info_user {
        gap: 10px;
        padding: 0 20px 0 20px;
        max-height: 400px;
        overflow-y: auto;
    }

    .info_img {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 10px;

        img {
            width: 220px;
            height: 220px;
        }

        span {
            color: #C54BF6;
        }
    }

    header {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        border-bottom: 1px solid #DDD;
        width: 100%;
        text-align: center;
        padding-bottom: 20px;
        margin-bottom: 10px;

        .img {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;

            .gif {
                width: 80px;
                height: 80px;
                position: absolute;
                top: 40%;
                transform: translateY(-50%);
            }
        }

        .sbp_logo {
            width: 140px;
            height: auto;
        }

        h1,
        p {
            margin: 0 20px;
        }
    }

    .btns {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 0 20px;
        gap: 10px;
        width: 100%;

        button {
            display: flex;
            padding: 18px 10px;
            width: 100%;
            justify-content: center;
            align-items: center;
            border-radius: 16px;
            background: linear-gradient(0deg, #982AFC 0%, #C74BF8 100%);
            cursor: pointer;
            color: #FFF;
            text-align: center;
            font-size: 21px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
            border: none;
        }
    }

    .block_input {

        display: flex;
        flex-direction: column;
        gap: 6px;

        .input {
            display: flex;
            align-items: center;
            gap: 10px;
            width: 100%;
            border-radius: 16px;
            background: #F3F2F7;
            padding: 16px;
            box-sizing: border-box;

            input {
                flex: 1;
                border: none;
                min-width: 0;
                background: #F3F2F7;
                color: #898693;
                font-size: 21px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
                outline: none;
                width: 80%;
            }

            .cardSvg {
                width: 40px;
                height: 24px;
            }

            span {
                color: #211A3A;
                font-size: 21px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
            }
        }
    }

    .block_trust {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;

        img {
            width: 60px;
            height: auto;
        }
    }

    .information {
        background: #E8F4ED;
        margin-right: -20px;
        margin-left: -20px;
        padding: 20px 40px;
        color: #898693;
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;

        ol li::marker {
            color: #211A3A;
        }
    }

    .block_information {
        background: #E8F4ED;
        padding: 20px;
        color: #898693;
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        width: 100%;

        h1 {
            margin-bottom: 10px;
        }
    }

    .block_informatiom2 {
        background: #D3F2FF;
        padding: 20px;
        color: #898693;
        font-size: 17px;
        font-style: normal;
        font-weight: 500;
        line-height: 24px;
        width: 100%;
        margin-bottom: 10px;
    }

    .session_id {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        border-top: 1px solid #DDD;
        width: 100%;
        padding-top: 20px;

        p {
            color: #211A3A;
            font-size: 17px;
            font-style: normal;
            font-weight: 500;
            line-height: normal;
        }
    }

    .rflogo {
        background: #36377D;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 20px;
        margin-top: 10px;
        width: 100%;

        p {
            color: #FFF;
        }
    }

    .block_form {
        display: flex;
        flex-direction: column;
        padding: 10px 20px;
        width: 100%;
        gap: 10px;
        border-bottom: 1px solid #DDD;

        .block_input_form {
            display: flex;
            align-items: center;
            gap: 10px;

            input {
                border: none;
                border-radius: 16px;
                background: #F3F2F7;
                outline: none;
                color: #898693;
                font-size: 21px;
                font-style: normal;
                font-weight: 500;
                line-height: normal;
                width: 90%;
                padding: 20px;
            }
        }


        .block_date {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 10px;

            .date {
                display: flex;
                flex-direction: column;
                gap: 6px;
            }

            img {
                width: 130px;
                height: auto;
            }
        }
    }

    .block_fast {
        width: 100%;

        .fast_head {
            border-radius: 16px 16px 0 0;
            background: #FFD392;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 20px;
            margin-bottom: 10px;
        }
    }

    .block_slow {
        width: 100%;
        margin-top: 20px;

        .fast_head {
            border-radius: 16px 16px 0 0;
            background: #AFAEB5;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 20px;
            margin-bottom: 10px;
        }
    }

    .block_register {
        width: 100%;
        padding: 20px;
        border-top: 1px solid #DDD;
        display: flex;
        flex-direction: column;
        gap: 10px;

        h1 {
            font-size: 17px;
        }
    }

}

.text_center {
    text-align: center;
}

#blockPayouts {
    padding: 20px 0px 0px 0px;
}

.main_block.redirect {
    .green {
        display: flex;
        align-items: start;
        gap: 8px;
    }

    .center {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    svg {
        flex-shrink: 0;
    }
}

#s1,
#s2,
#s3 {
    display: none;
}

.img-wrap {
    position: relative;
    display: flex;
    /* как у тебя */
    /* не ставь overflow:hidden, иначе фон обрежется */
}

/* большой фон (показывается только при .glow) */
.img-wrap::before {
    content: "";
    position: absolute;
    inset: -50%;
    /* фон в 2 раза больше блока */
    background: url('/image/Vector.png') center/contain no-repeat;
    pointer-events: none;
    opacity: 0;
    /* скрыт по умолчанию */
    transition: opacity .3s ease;
    z-index: 2;
    /* фон за контентом */
}

/* светящийся круг в центре */
.img-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    /* подгони размер при желании */
    transform: translate(-50%, -50%);
    background: radial-gradient(circle,
            #FFF 2.88%,
            #FFF0DE 28.85%,
            #FEE590 53.37%,
            #C39975 100%);

    filter: blur(6px);
    /* мягкое свечение */
    pointer-events: none;
    opacity: 0;
    /* скрыт по умолчанию */
    transition: opacity .3s ease;
    z-index: 0;
    overflow: visible;
    border-radius: 999px;
}

/* активируем при нужном исходе */
.img-wrap.glow::before,
.img-wrap.glow::after {
    opacity: 1;
}

/* сам img поверх фона */
.img-wrap>img {
    position: relative;
    z-index: 999;
}

.typing_indicator {
    margin: 8px 0;
    font-family: inherit;
    font-size: 14px;
    color: #9E9DA2;
    opacity: 0.6;
    animation: typingBlink 2s infinite;
}

.flicker {
    opacity: 0.6;
    animation: typingBlink 2s infinite;
}

.hidden {
    display: none;
}

@keyframes typingBlink {
    0% {
        opacity: 0.2;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.2;
    }
}