
.agreement_block_cl {
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agreement_block_cl>main {
    padding: 40px;
    border-radius: 2vh;
    background-color: #1a1533;
    width: 65vw;
    height: 75%;
    transform: translateY(7.5vh);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.agreement_block_cl>main>div {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(128, 128, 128, 0.25);
}

.agreement_block_cl>main>div>div {
    width: 7.5vh;
    height: 7.5vh;
    background-image: url(./img/bot_icon.png);
    background-size: cover;
}

.agreement_block_cl>main>div>span {
    width: 75%;
    font-size: 2.5vh;
    font-weight: bold;
    color: white;
    text-align: center;
}

.agreement_block_cl>main>section {
    width: 100%;
    height: 70%;
    overflow-y: scroll;
}

.agreement_block_cl>main>section>section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;
    flex-wrap: wrap;
    gap: 7.5px;
}

.agreement_block_cl>main>section>section>span {
    font-size: 2vh;
    color: white;
    text-align: start;
    text-indent: 40px;
}

.agreement_block_cl>main>article {
    width: 80%;
    height: 7.5%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.agreement_block_cl>main>article>div {
    padding: 5px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 5px;
    border: 2px solid gray;
    font-size: 2vh;
    font-weight: bold;
    color: gray;
    transition: 300ms all;
}

.agreement_block_cl>main>article>div:hover {
    cursor: pointer;
    border-color: blue;
    color: blue;
}

@media (max-width: 800px) {
    .agreement_block_cl>main {
        width: 90%;
        height: 65%;
        padding: 15px;
        transform: translateY(10vh);
    }

    .agreement_block_cl>main>div {
        height: 22.5%;
    }

    .agreement_block_cl>main>div>div {
        display: none;
    }

    .agreement_block_cl>main>div>span {
        width: 100%;
        font-size: 2vh;
    }

    .agreement_block_cl>main>section {
        height: 60%;
    }
}

