/* 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 */

body {
    overflow-x: hidden;
}
.guide-item {
    width: auto;
    height: 135px;
    background-color: #00000040;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
.guide {
    margin-top: 2em;
    display: flex;
    width: 100%;
    flex-direction: column;
}
.guide-channel {
    width: 100%;
    height: 100%;
    text-align: center;
    position: relative;
    transition: .25s;
    background: linear-gradient(180deg, rgba(0,0,0,0) 67%, rgba(0,0,0,0.5) 100%);
}
.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);
    }
}