#guideBannerPopupModalContainer {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.8);
}

#guideBannerPopup {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    max-height: 1200px;
    max-width: 1200px;
    width: auto;
    height: auto;
    height: auto;
}

#guideBannerPopupModalDismiss {
    position: absolute;
    top: 0.3em;
    right: 0.3em;
    cursor: pointer;
    width: 0.75em;
    height: 0.75em;
    line-height: 0.75em;
    font-size: 3.2em;
    color: black;
    background-color: white;
    text-align: center;
}

.ad-guide-banner-mobile {
    display: none;
    width: 100%;
    height: auto;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
}
.ad-guide-banner-desktop {
    display: block;
    width: 100%;
    height: auto;
    max-width: 728px;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 600px) {
    #guideBannerPopup {
        width:90%;
    }
    .ad-guide-banner-mobile {
        display: block;
    }
    .ad-guide-banner-desktop {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    #guideBannerPopup {
        width:80%;
    }
}