/* i swear to god why does this not register if its not for an li element fuck this shit */
/* update: putting it inside an integrated stylesheet works how the fuck */
.gif-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 31%;
    height: auto;
    pointer-events: none;
}

.guide-item {
    width: auto;
    height: 135px;
    background-color: #00000040;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.guide-item:hover .gif-overlay {
    opacity: 1;
}
.guide {
    margin-top: 2em;
    display: grid;
}
.guide-channel {
    width: 100%;
    margin: 15px;
    height: 100%;
    text-align: center;
    position: relative;
    transition: .25s;
}
.guide-channel:hover {
    content-visibility: visible;
}
.guide-label {
    font-weight: normal;
    margin: 0;
    position: relative;
    top: 50%;
    transform: translate(0,-50%);
    text-align: center;
    color: var(--accent-white);
}
.guide-program {
    font-weight: normal;
    margin: 0 8px;
    text-align: left;
    position: absolute;
    top: 100px;
    text-decoration: underline;
    text-decoration-color: #6CE8F7;
    transition: .25s;
    width: 100%;
}
.guide-number {
    font-weight: normal;
    margin: 0;
    position: relative;
    top: 0%;
    transform: translate(0,-50%);
    text-align: left;
    padding: 0 4px;
    filter:grayscale(0%);
}

.Offline {
    filter:grayscale(100%);
    cursor: not-allowed;
}

.link_offline {
    cursor: not-allowed;
}

@media (min-width: 320px) and (max-width: 767px) {
    .guide-item {
        width: 100%;
        aspect-ratio: 16 / 9; /* Overridden by guide.css:6 */
        background-size: cover;
    }
}

.spinner {
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite, progres 4s linear infinite;
}

@keyframes progres {
    from {
        stroke-dashoffset: 1200;
    }
    to {
        stroke-dashoffset: -1200;
    }
}
@keyframes spin {
    to {
    transform: rotate(360deg);
    }
}