:root {
    --termsColor: var(--colorAccent);
}
.terms {
    line-height: 120%;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    margin: 10px 0;
    text-align: left !important;
    input[type="checkbox"] {
        margin-top: 2px;
    }
    a {
        text-decoration: none;
        color: var(--termsColor);
    }
    input[type="checkbox"] {
        -webkit-appearance: none;
        appearance: none;
        background-color: transparent;
        margin: 0;
        border-radius: 0.25rem;
        width: 18px;
        min-width: 18px;
        height: 18px;
        padding: 0;
        border: 2px solid var(--termsColor);
        background-repeat: no-repeat;
        background-position: center;
        background-size: 100%;
        cursor: pointer;
    }
    input[type="checkbox"]:checked {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 -960 960 960' fill='%23ffffff'%3E%3Cpath d='M382-240 154-468l57-57 171 171 367-367 57 57-424 424Z'/%3E%3C/svg%3E");
        background-color: var(--termsColor);
    }
    @media (max-width: 767px) {
        justify-content: flex-start;
        text-align: left;
        font-size: .875rem;
    }
}
.terms-col {
    line-height: 130%;
}