.video-grid-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 10px;

    .load-content {
        width: 100%;
        background: none;
        border: 1px solid #fff;
        border-radius: 50px;
        color: #fff;
        padding: 10px;
        font-size: 16px;
        text-align: center;
    }

    .search-bar {
        display: flex;
        justify-content: center;
        width: 100%;
        padding: 5px;
        flex-direction: column;
        gap: 10px;
        max-height: 120px;
        overflow: hidden;

        input {
            width: 100%;
            background: none;
            border: 1px solid #fff;
            border-radius: 50px;
            color: #fff;
            padding: 10px;
            font-size: 16px;
        }

        .season-filter {
            display: flex;
            flex-direction: row;
            white-space: nowrap;
            gap: 10px;
            overflow: auto;
            -ms-overflow-style: none;
            scrollbar-width: none;
            padding: 10px;

            &::-webkit-scrollbar {
                display: none;
            }

            .filter {
                display: flex;
                transition: .3s ease-in-out;
                span {
                    color: #fff;
                    box-shadow: inset 0 4px 10px rgba(250, 250, 250, 0.2);
                    border-radius: 5px;
                    padding: 5px 10px;
                    font-size: 12px;
                }

                &.active {
                    box-shadow: 2px 2px 2px 0px rgba(250, 250, 250, 0.2);
                    border-radius: 5px;
                    transform: scale(1.1) translate(-2px, -2px);

                }
            }

        }
    }
}

.-boxed {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: fit-content;

    .video-grid {
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        scroll-snap-type: y mandatory;
        -ms-overflow-style: none;
        scrollbar-width: none;
        gap: 10px;

        &::-webkit-scrollbar {
            display: none;
        }

        &.active {
            height: 100%;
        }

        .video-container {
            display: flex;
            flex-direction: column;
            height: 100%;
            flex-shrink: 0;
            scroll-snap-align: center;
            justify-content: center;
            align-items: start;
            gap: 20px;
            border-radius: 10px;
            box-shadow: inset 0 4px 10px rgba(250, 250, 250, 0.2);
            padding: 10px;
            position: relative;

            img.resize {
                width: 20px;
            }

            &.hide {
                display: none;
            }

            video {
                border-radius: 0;
                width: 100%;
                height: fit-content;
                transition: .3s ease-in-out;
            }

            img.fullsize {
                width: 35px;
            }

            h2 {
                margin: 0;
                color: #fff;
                font-size: 20px;
                font-weight: 300;
            }

            span {
                color: #fff;
            }

        }
    }
}