#mainHeader {
    padding-bottom: 0;
}

.tv-ticker-wrapper {
    padding-top: 10px;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 70px;
    z-index: -1;
}

.tv-ticker-host {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.35s ease;
}

.tv-ticker-wrapper.is-ready .tv-ticker-host {
    opacity: 1;
}

.tv-ticker-placeholder {
    position: absolute;
    inset: 10px 56px 10px 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 14px;
    background: rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
}

.tv-ticker-spinner {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid rgba(203, 213, 225, 0.24);
    border-top-color: rgba(226, 232, 240, 0.95);
    animation: tvTickerSpinner 0.8s linear infinite;
}

.tv-ticker-loading-text {
    font-size: 12px;
    line-height: 1;
    color: rgba(226, 232, 240, 0.78);
    letter-spacing: 0.04em;
}

.tv-ticker-wrapper.is-ready .tv-ticker-placeholder {
    opacity: 0;
    pointer-events: none;
}

@keyframes tvTickerSpinner {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.tv-ticker-wrapper::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 27px;
    background: transparent;
    z-index: 10;
}

.tv-ticker-blocker {
    position: absolute;
    inset: 0;
    z-index: 20;
    background: transparent;
    pointer-events: all;
    cursor: default;
}

.tv-ticker-overlay {
    position: absolute;
    right: -3px;
    bottom: 2px;
    z-index: 999;
    display: flex;
    align-items: center;
    background: #121037;
    border-radius: 50%;
    overflow: hidden;
}

.tv-ticker-overlay img {
    height: 40px;
    width: auto;
    display: block;
}
