#sms-consent-modal {
    display: none !important;
}

#sms-consent-modal.is-open {
    display: block !important;
}

#sms-consent-modal[hidden] {
    display: none !important
}

#sms-consent-modal {
    position: fixed;
    inset: 0;
    z-index: 999999
}

.sms-consent-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .65)
}

.sms-consent-box {
    position: relative;
    width: min(560px, calc(100% - 32px));
    max-height: calc(100vh - 32px);
    overflow: auto;
    margin: 16px auto;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .25);
    box-sizing: border-box
}

.sms-consent-close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    cursor: pointer
}

.sms-consent-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 20px 0
}

.sms-consent-checkbox input {
    margin-top: 4px
}

#sms-consent-continue {
    min-width: 110px;
    font-family: "Arial", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background-color: #e42326;
    border-radius: 4px 4px 4px 4px;
    padding: 12px 24px 12px 24px;
    cursor: pointer;
    border: none;
    color: white;

    &:hover {
        background: #ffca00;
        color: #000000;
    }
}

#sms-consent-continue:disabled {
    cursor: not-allowed;
    opacity: .55;
    background-color: #e42326;
    color: white;

}

.sms-consent-error {
    margin-top: 14px;
    color: #e42326
}

.sms-consent-links {
    margin-top: -6px;

    a {
        color: #e42326;
        text-decoration: none;

        &:hover {
            text-decoration: underline
        }

        ;
    }
}

html.ez-sms-consent-open {
    overflow: hidden
}

.sms-consent-title {
    font-family: "Manrope", Sans-serif;
}

.sms-consent-text,
.sms-consent-checkbox span,
.sms-consent-links a {
    font-family: "Manrope", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}