.site-msg.information {
    max-width: 1180px;
    margin: 12px auto;
    padding: 0 16px;

    background-image:
        linear-gradient(
            110deg,
            transparent 0%,
            transparent 35%,
            rgba(255, 255, 255, 0.08) 43%,
            rgba(255, 255, 255, 0.38) 50%,
            rgba(255, 255, 255, 0.08) 57%,
            transparent 65%,
            transparent 100%
        ),
        linear-gradient(
            135deg,
            #176b3a 0%,
            #24a75a 100%
        ) !important;

    background-size:
        35% 100%,
        100% 100%;

    background-position:
        -100% 0,
        0 0;

    background-repeat: no-repeat;

    border: 1px solid rgba(255, 255, 255, 0.18) !important;
    border-radius: 14px;

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);

    overflow: hidden;
    animation: banner-shine 5s linear infinite;
}

@keyframes banner-shine {
    /* Odlesk je po většinu času schovaný vlevo. */
    0%,
    70% {
        background-position:
            -100% 0,
            0 0;
    }

    /* Odlesk přeběhne přes banner. */
    92% {
        background-position:
            200% 0,
            0 0;
    }

    /* Zůstane schovaný vpravo až do restartu animace. */
    100% {
        background-position:
            200% 0,
            0 0;
    }
}

.site-msg.information .container {
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.site-msg.information .text {
    padding: 10px 42px;
    color: #fff !important;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    letter-spacing: 0.15px;
    text-align: center;
}

.site-msg.information .text a {
    color: #fff !important;
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

.site-msg.information .text a:hover {
    color: #fff !important;
    opacity: 0.8;
}

.site-msg.information .close {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    filter: brightness(0) invert(1);
    opacity: 0.75;
    transition:
        opacity 0.2s ease,
        transform 0.2s ease;
}

.site-msg.information .close:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.08);
}

@media (max-width: 767px) {
    .site-msg.information {
        margin: 8px 10px;
        padding: 0 8px;
        border-radius: 12px;

        /* Na mobilu je odlesk o něco širší. */
        background-size:
            55% 100%,
            100% 100%;

        background-position:
            -100% 0,
            0 0;

        animation-duration: 5.5s;
    }

    .site-msg.information .container {
        min-height: 52px;
    }

    .site-msg.information .text {
        padding: 10px 34px 10px 12px;
        font-size: 13px !important;
        line-height: 18px !important;
    }

    .site-msg.information .close {
        right: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .site-msg.information {
        animation: none;
        background-position:
            -100% 0,
            0 0;
    }
}
.site-msg.information {
    border: none !important;
    outline: none !important;
    box-shadow: 0 8px 24px rgba(0,0,0,.14) !important;
}