
            .header-top-bar {
                display: none;
                overflow: hidden;
                background: var(--header-top-bg);
                color: #fff;
                transition: max-height .42s ease, opacity .42s ease;
                opacity: 0;
                max-height: 0;
                position: relative;
                z-index: 60;
            }

            .header-top-bar.hiding {
                max-height: 0 !important;
                opacity: 0 !important;
            }

            .header-top-inner {
                min-height: 42px;
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 14px;
                text-align: center;
                position: relative;
                padding: 8px 44px;
                flex-wrap: wrap;
            }
            .header-top-text {
                font-size: 14px;
                font-weight: 700;
                line-height: 1.9;
            }
            .header-top-icon {
                margin-left: 6px;
            }
            .header-top-cta {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                color: #fff;
                background: rgba(255,255,255,.18);
                border: 1px solid rgba(255,255,255,.25);
                border-radius: 999px;
                padding: 5px 14px;
                font-size: 12px;
                font-weight: 700;
                transition: .2s ease;
            }
            .header-top-cta:hover {
                color: #fff;
                background: rgba(255,255,255,.28);
            }
            .header-top-timer {
                display: inline-flex;
                align-items: center;
                gap: 5px;
                font-size: 12px;
                background: rgba(0,0,0,.16);
                border-radius: 999px;
                padding: 5px 12px;
            }
            .header-top-close {
                position: absolute;
                left: 12px;
                top: 50%;
                transform: translateY(-50%);
                width: 28px;
                height: 28px;
                border: 0;
                border-radius: 50%;
                background: rgba(255,255,255,.18);
                color: #fff;
                cursor: pointer;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: .2s ease;
            }
            .header-top-close:hover {
                background: rgba(255,255,255,.32);
            }
            .header-top-image-wrap {
                position: relative;
                width: 100%;
                line-height: 0;
                background: #fff;
                text-align: center;
            }
            .header-top-image-link {
                display: block;
            }
            .header-top-image {
                width: 100%;
                max-height: 74px;
                object-fit: cover;
                display: block;
            }
            .header-top-close-image {
                left: 10px;
                background: rgba(0,0,0,.45);
            }
            .header-top-close-image:hover {
                background: rgba(0,0,0,.7);
            }
            @media (max-width: 767.98px) {
                .header-top-inner {
                    min-height: 40px;
                    gap: 8px;
                    padding: 8px 38px;
                }
                .header-top-text {
                    font-size: 12px;
                }
                .header-top-cta, .header-top-timer {
                    font-size: 11px;
                    padding: 4px 10px;
                }
                .header-top-image {
                    max-height: 54px;
                }

                .header-top-close {
                    width: 25px;
                    height: 25px;
                    left: 8px;
                }
            }

