#ctb-banner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    color: white;
}

#ctb-banner.placement-over {
    position: fixed;
    top: 0;
    left: 0;
}

#ctb-banner.placement-above {
    position: relative;
}

#ctb-banner.scroll-fixed {
    position: fixed;
    top: 0;
    left: 0;
}

#ctb-banner.scroll-static {
    position: absolute;
    top: 0;
    left: 0;
}

#ctb-banner.placement-above.scroll-static {
    position: relative;
}

#ctb-message {
    margin-right: 20px;
    max-width: 50%;
}

#ctb-message img {
    max-height: 100%;
    width: auto;
}

#ctb-timer {
    font-family: inherit;
    font-size: inherit;
    font-weight: bold;
}

.ctb-digital {
    font-family: 'Courier New', monospace;
    letter-spacing: 2px;
}

#ctb-banner.timer-off {
    justify-content: center;
}

#ctb-banner.timer-off #ctb-message {
    margin-right: 0;
    max-width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    #ctb-banner {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    #ctb-message {
        margin-right: 0;
        margin-bottom: 10px;
        max-width: 100%;
        text-align: center;
    }

    #ctb-message img {
        max-height: 50%;
        display: block;
        margin: 0 auto;
    }

    #ctb-timer {
        text-align: center;
    }

    #ctb-banner.timer-off #ctb-message {
        margin-bottom: 0;
    }
}