.clock {
    position: fixed;
    width: 10rem;
    height: 4rem;
    
    display: flex;
    align-items: center;
    justify-content: center;
    
    inset: 50% 50%;
    z-index: 10000;
    
    font-size: 1.75rem;
    font-weight: var(--bolder);
    background-color: var(--black-color-lighten);
    border: 0.2rem solid var(--black-color-darken);
    border-bottom: 0.4rem solid var(--black-color-darken);
    
    &:hover {
        cursor: grab;
        background-color: var(--black-color-light);
    }
    
    &:active {
        transition: 150ms;
        border-bottom: 0.2rem solid var(--black-color-darken);
        background-color: var(--black-color-light);
        transform: translateY(0.2rem);
        height: 3.8rem;
        cursor: grabbing;
    }
}

#Schedule-section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 1rem;
    
    h1 {
        font-size: 3rem;
        font-weight: var(--font-regular);
        color: var(--gray-color);
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////// */
.Schetines-container {
    position: relative;
    min-width: 1150px;
    width: 100%;
    height: 1073.86px;
    max-height: 1073.86px;
    
    margin-bottom: 4rem;

    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: var(--black-color-light);

    .time {
        position: relative;
        width: 2%;
        display: flex;

        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 4rem;

        outline: 0.1rem solid var(--black-color-lighten);
        color: var(--gray-color);
        font-weight: var(--bolder);

        p::after {
            position: absolute;
            content: '';
            width: 100vw;
            height: 40px;
            left: 0;
            border-top: 0.1rem solid var(--black-color-lighten);
            border-bottom: 0.1rem dotted var(--black-color-lighten);
            opacity: 1;
            pointer-events: none;
        }
    }

    .time-bar {
        z-index: 10;
        position: absolute;
        width: 100%;
        border-bottom: 0.2rem dashed var(--sig-blue-light);
        opacity: 0.5;
        top: 985px;
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////// */
.Schetines-container section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;

    width: 14%;
    height: 100%;
    outline: 0.1rem solid var(--black-color-lighten);

    h2 {
        text-align: center;
        margin-top: 1rem;
        font-size: 1.25rem;
        color: var(--gray-color);
    }

    &:hover {
        width: 20%;

        h2 {
            color: var(--white-color);
        }
    }
}

.scr-card {
    position: absolute;
    z-index: 5;
    width: 95%;
    height: 477.2px;
    top: 278.95px;

    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: start;

    padding: 0.3rem 0.5rem;
    background-color: var(--black-color-light);
    border: 0.3rem solid var(--black-color-darken);
    border-bottom: 0.9rem solid var(--black-color-darken);

    
    &:hover {
        cursor: pointer;
        background-color: var(--black-color-darken);
    }

    #scrc-header {
        height: 1.25rem;
        display: flex;
        flex-direction: row;
        gap: 0.5rem;

        font-weight: var(--bolder);
        overflow: hidden;

        

        h1 {
            font-size: 1.25rem;
        }
        span{
            color: var(--gray-color);
            opacity: 0.5;
        }
    }
}

/* ////////////////////////////////////////////////////////////////////////////////////// */
.Schelan-container {
    width: 100%;
    height: 75vh;
    margin-bottom: 2rem;

    display: flex;
    flex-direction: row;
    justify-content: center;
    background-color: var(--black-color-light);

    section {
        width: 20%;
        height: 100%;
        outline: 0.1rem solid var(--black-color-lighten);

        &:hover {
            width: 40%;

        }
    }
}