#vitals_popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .7);
    z-index: 1999999999;
    font-family: sans-serif;
}

.vitals-popup-content-wrapper {
    background-size: cover;
    background-position: center;
    background-color: #ffffff;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    margin: 150px auto 0 auto;
    max-width: 800px;
    max-height: 600px;
    position: relative;
}

#vitals_popup .vitals-popup-content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.vitals-popup-description {
    width: 100%;
}

#vitals_popup.type_clickthrough .vitals-popup-title {
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 37px;
    margin-bottom: 1rem;
    max-width: 100%;
    text-align: center;
    font-family: sans-serif;
}

#vitals_popup.type_clickthrough .vitals-popup-description {
    font-size: 91px;
    font-weight: bold;
    color: #fff;
    font-family: sans-serif;
    text-transform: uppercase;
    text-align: center;
    max-width: 100%;
    line-height: 55px;
}

#vitals_popup.type_discount_capture .vitals-popup-title,
#vitals_popup.type_lead_capture .vitals-popup-title {
    font-size: 50px;
    font-weight: bold;
    font-family: sans-serif;
    text-transform: uppercase;
    text-align: center;
}

#vitals_popup.type_discount_capture .vitals-popup-description,
#vitals_popup.type_lead_capture .vitals-popup-description {
    font-weight: 100;
    font-size: 18px;
    margin-bottom: 0;
    font-family: sans-serif;
    text-align: center;
}

#vitals_popup.type_discount_capture .vitals-popup-discount-code {
    background: #fff;
    padding: 15px 40px;
    text-align: center;
    margin: 2rem auto 0 auto;
    font-size: 2rem;
    border-radius: 3px;
}

.vitals-popup-cta {
    width: 100%;
    text-align: center;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-family: sans-serif;
    font-weight: 600;
}

.vitals-popup-cta:visited {
    color: #ffffff;
}

.vitals-popup-error-message {
    color: #ff0000;
    text-align: center;
}

.vitals-popup-form-container {
    width: 100%;
    margin-top: 2rem;
}

.vitals-popup-input {
    border: 1px solid #eaeaea;
    border-radius: 5px;
    width: 100%;
    margin: 1rem 0;
    padding: 1rem 2rem;
    font-style: italic;
    font-size: 14px;
    min-height: 56px;
    text-align: center;
    font-family: sans-serif;
    background-color: #FFFFFF;
}

.vitals-popup-input:hover {
    opacity: 1;
}

.vitals-popup-input::placeholder {
    color: #7c7c7c;
}

#vitals_popup .vitals-popup-content-container.vitals-popup-capture-finished {
    display: none;
}

#vitals_popup .vitals-popup-close {
    position: absolute;
    top: -35px;
    right: 5px;
    cursor: pointer;
}

#vitals_popup .vitals-popup-close svg {
    fill: #FFFFFF;
    opacity: 0.8;
}

#vitals_popup .vitals-popup-close:hover svg {
    fill: #FFFFFF;
    opacity: 1;
}

.vitals-popup-btn-dismiss {
    font-family: sans-serif;
}

.vitals-popup-cta-background {
    margin-top: 2rem;
    display: flex;
    width: 100%;
}

@media (max-width: 900px) {
    .vitals-popup-content-wrapper {
        max-width: 700px;
        max-height: 525px;
    }
}

@media (max-width: 750px) {
    .vitals-popup-content-wrapper {
        max-width: 600px;
        max-height: 450px;
    }

    #vitals_popup.type_discount_capture .vitals-popup-title,
    #vitals_popup.type_lead_capture .vitals-popup-title {
        font-size: 45px;
    }
}

@media (max-width: 650px) {
    .vitals-popup-content-wrapper {
        max-width: 500px;
        max-height: 375px;
    }

    #vitals_popup.type_discount_capture .vitals-popup-title,
    #vitals_popup.type_lead_capture .vitals-popup-title {
        font-size: 40px;
    }

    #vitals_popup.type_clickthrough .vitals-popup-description {
        font-size: 40px;
        line-height: 20px;
    }

    #vitals_popup.type_clickthrough .vitals-popup-title {
        font-size: 28px;
    }

    .vitals-popup-input {
        min-height: 40px;
        padding: 0.5rem 1rem;
        margin: 1rem 0 0.5rem 0;
    }

    .vitals-popup-cta {
        padding: 0.5rem 1rem;
    }

    .vitals-popup-form-container {
        margin-top: 1rem;
    }

    .vitals-popup-cta-background {
        margin-top: 1rem;
    }
}

@media (max-width: 550px) {
    .vitals-popup-content-wrapper {
        max-width: 400px;
        max-height: 300px;
    }

    #vitals_popup.type_discount_capture .vitals-popup-title,
    #vitals_popup.type_lead_capture .vitals-popup-title {
        font-size: 30px;
        margin-bottom: 0;
    }

    #vitals_popup.type_discount_capture .vitals-popup-description,
    #vitals_popup.type_lead_capture .vitals-popup-description {
        line-height: 1.2;
    }
}

@media (max-width: 450px) {
    .vitals-popup-content-wrapper {
        max-width: 90%;
    }

    #vitals_popup.type_discount_capture .vitals-popup-title,
    #vitals_popup.type_lead_capture .vitals-popup-title {
        font-size: 25px;
    }

    #vitals_popup.type_discount_capture .vitals-popup-description,
    #vitals_popup.type_lead_capture .vitals-popup-description {
        font-size: 16px;
    }

    #vitals_popup.type_clickthrough .vitals-popup-description {
        font-size: 45px;
    }

    #vitals_popup.type_clickthrough .vitals-popup-title {
        font-size: 20px;
    }
}

@media (max-width: 350px) {
    .vitals-popup-content-wrapper {
        max-width: 100%;
    }
}
