/* Appointment Discount Lightbox Start */
.twd-discount-popup-lightbox {
    /* Overlay entire screen */
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    align-items: center;


    /* A bit of padding around content */
    padding: 1em;

    /* Translucent background */
    background: rgba(0, 0, 0, 0.8);
    transition: all 1s ease-out;

    /* Make it scrollable */
    overflow-y: auto;
}

.twd-discount-popup-lightbox.active {
    display: flex;
}

.twd-discount-popup-lightbox span.popup-close {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 35px;
    padding: 5px 10px;
    cursor: pointer;
}

.twd-discount-popup-lightbox span.popup-close:before {
    content: '\D7';
}

.twd-discount-popup-lightbox > div {
    text-align: center;
    margin: 60px auto 20px;
    padding: 3em 3.5em;
    background-color: #222;
    max-width: 800px;
    width: 90%;
    position: relative;
    color: #fff;
    flex-wrap: wrap;
    display: flex;
    max-height: 250px;
}

.twd-discount-popup-lightbox h6,
.twd-discount-popup-lightbox strong {
    text-align: center;
    margin-bottom: 1rem;
    color: #fff;
}

.twd-discount-popup-lightbox h6 {
    font-size: 2rem;
    width: 100%;
}

.twd-discount-popup-lightbox strong {
    font-size: 1.25rem;
    line-height: 1.5;
}

.twd-discount-popup-lightbox p {
    line-height: 1.5;
    width: 100%;
    margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
    .twd-discount-popup-lightbox > div {
        width: 85%;
    }
}

@media only screen and (max-width: 768px) {
    .twd-discount-popup-lightbox > div {
        padding: 2em;
        width: 90%;
    }
    .twd-discount-popup-lightbox h6 {
        font-size: 2rem;
    }
    .twd-discount-popup-lightbox strong {
        font-size: 1.25rem;
    }
    .twd-discount-popup-lightbox p {
        font-size: 1rem;
    }
    .terms-acknowledgement {
        font-size: 16px;
    }
    .terms-acknowledgement button {
        padding: 1rem;
        font-size: 1rem;
    }
}

@media only screen and (max-width: 480px) {
    .twd-discount-popup-lightbox > div {
        padding: 1.5em;
        width: 95%;
    }
    .twd-discount-popup-lightbox h6 {
        font-size: 1.5rem;
    }
    .twd-discount-popup-lightbox strong {
        font-size: 1rem;
    }
    .twd-discount-popup-lightbox p {
        font-size: 0.875rem;
    }
}

@media only screen and (max-width: 320px) {
    .twd-discount-popup-lightbox > div {
        padding: 1em;
        width: 100%;
    }
    .twd-discount-popup-lightbox h6 {
        font-size: 1.25rem;
    }
    .twd-discount-popup-lightbox strong {
        font-size: 0.75rem;
    }
    .twd-discount-popup-lightbox p {
        font-size: 0.75rem;
    }
}
/* Appointment Discount Lightbox End */