@use "../../../../../styles/abstracts/variables" as *; 

.terms {
    h2{
        color: $col-white;
        padding-bottom: 2rem;
        font-size: 1rem;
    }

    h4{
        color: $col-white;
        font-size: .85rem;
        opacity: .85;
    }

    &--note {
        background: #121214;
        border-radius: 6px; 
        padding: .7rem 1.3rem;
        color: $col-white;
        border: 1px solid $col-border-lining;
        font-size: .85rem;
        margin-top: .5rem;
        margin-bottom: 2rem;
        p{
            opacity: .8;
            line-height: 1.8;
        }
    }

    &--protection {
        margin-top: .5rem;
        display: flex;
        gap: 10px;
        color: $col-white;
        background: #0A100E;
        border-radius: 6px;
        border: 1px solid #085528;
        color: #05DF73;
        padding: 1rem 1.2rem;
        align-items: flex-start;
        margin-bottom: 1.5rem;

        h6{
            font-size: .9rem;
        }

        p{
            opacity: .8;
            line-height: 1.8;
            font-size: .78rem;
        }
    }

    &--support {
        @extend .terms--protection; 
        background: #0C0E1A;
        border: 1px solid #1C398E;
        color: #2B7FFF;
        @media only screen and (max-width: 1000px) {
            display: none;
        }
    }

    &--payouts {
        @extend .terms--protection; 
        background: #14091D;
        border: 1px solid #59168B;
        color: #C27BFF;
    }
}