/** DEFAULT SPEEDBUMP STYLES **/
.speedbump_back, .js-email_pop {
    background-color: rgba(0, 0, 0, 0.7) !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100000;
}
.speedbump_pop_inner, .email_pop_inner {
    display: inline-block;
    max-width: 600px;
    width: 90%;
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    transition: top .35s ease-in-out;
}
.sb-active .speedbump_pop_inner, .sb-active .email_pop_inner {
    top: 50%;
}
.speedbump_pop_content, .email_pop_content {
    background: white;
    padding: 3rem;
    border: 1px var(--tertiary-color) solid;
}
.speedbump_pop_header, .email_pop_header {
    margin: 0 auto 0.5em;
    font-size: 2rem;
    font-weight: var(--bold);
    color: var(--primary-color);
    line-height: 1.4;
    text-align: center;
}
.speedbump_pop_message, .email_pop_message {
    margin: 0 auto 1em;
    font-size: 1.5rem;
    font-weight: var(--regular);
    color: var(--body-font-color);
    line-height: 1.5;
    text-align: left;
}
.speedbump_pop_message p:last-child, .email_pop_message p:last-child {
    margin: 0 auto;
}
.speedbump_pop_btn, .email_pop_btn {
/*    margin: 0 auto;*/
/*    display: inline-block;*/
/*    font-size: .9em;*/
/*    border-radius: 5px;*/
/*    text-align: center;*/
}
.speedbump_pop_btn_ok, .email_pop_btn_ok {
    margin: 0 auto 1em;
    width: 100%;
}
.speedbump_pop_btn_cancel, .email_pop_btn_cancel {
    margin: 0 auto;
    width: 100%;
}