

#hintOverlayWrapper,
#hintOverlayOuter,
#hintOverlayInner {
    box-sizing: border-box;
    padding: 0;
    border: none;
}
#hintOverlayWrapper {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0;
    font-size: 14px;
    background-color: rgba(0, 0, 0, .8);
    z-index: 99999;
    overflow-y: auto;
}
#hintOverlayOuter {
    position: relative;
    width: 100%;
    margin: 0;
    text-align: center;
}
#hintOverlayInner {
    position: relative;
    width: 780px;
    display: block;
    margin: 5% auto;
    background: #fff;
    border: 6px solid #11408e;
    padding: 40px 50px;
    text-align: center;
}

/* Logo-Reihe */
.hintLogoRow {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
    overflow: hidden;
}
.hintLogoBild {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

/* Countdown-Overlay */
.hintCountdown {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    background: rgba(180, 180, 180, 0.55);
    pointer-events: none;
    transition: width linear;
}

/* Text */
.hintContentBox p {
    font-size: 15px;
    line-height: 1.6em;
    margin: 0 0 18px 0;
    color: #333;
}
.hintContentBox a {
    color: #11408e;
    text-decoration: none;
}
.hintContentBox a:hover {
    text-decoration: underline;
}

/* Schliessen-Kreuz */
#hintDismiss,
a#hintDismiss:hover {
    position: absolute;
    top: -2px;
    right: -2px;
    display: block;
    width: 32px;
    height: 32px;
    background: #11408e;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
}
#hintDismiss::before {
    font-family: Arial, sans-serif;
    content: "\00d7";
    display: block;
    color: #fff;
    padding: 4px 0 0 0;
    font-size: 20px;
    text-align: center;
}

@media screen and (max-width: 820px) {
    #hintOverlayInner {
        width: auto;
        margin: 3vw;
        padding: 25px 20px;
    }
    .hintContentBox p br {
        display: none;
    }
}
