@charset "UTF-8";
/* CSS Document */

#interstitial-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 8998;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.85);
}
#interstitial-container {
    /*
    max-width: 600px;
    width: 90%;
    */
    background: #CCC;
    max-width: 840px;
    width: 80%;
    padding: 20px;
    text-align: center;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.5);
}
#interstitial-close {
    background: #E74C3C;
    position: absolute;
    cursor: pointer;
    color: white;
    height: 35px;
    width: 35px;
    top: -15px;
    right: -15px;
    font-size: 24px;
    font-weight: bold;
    line-height: 35px;
    border-radius: 50%;
}
#interstitial-content img {
    height: auto;
    max-width: 100%;
    border-radius: 5px;
}