/* styles needed for interstitial structure */
.interstitialOverlay {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 1000;
    background-color: #000;
    text-align: center;
    width: 100%;
    height: 100%;
}
.interstitialContainer {
    overflow: hidden;
    position: fixed;
    z-index: 1001;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 0;
    border: none;
    background: #fff;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, .7);
    font-size: 13px;
    font-size: .75rem;
    line-height: 1.35em;
    margin: 9px auto;
    margin: .5rem auto;
    max-width: 810px;
    max-width: 45rem;
    padding: 18px;
    padding: 1rem;
    width: 90%
}
@media (min-width: 45em) {
    .interstitialContainer {
        font-size: 18px;
        font-size: 1rem;
        line-height: 1.5em;
        margin-top: 54px;
        margin-top: 3rem;
        padding: 36px;
        padding: 2rem
    }
}
.interstitialContainer .outline-button--red {
    margin: 0 9px;
    margin: 0 .5rem
}
@media (max-width: 30em) {
    .interstitialContainer .outline-button--red {
        display: block;
        margin: 9px 0;
        margin: .5rem 0;
        width: 100%
    }
}