/* Style the module of video player */
.ModuleGlobalVideoPlayer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 100%;
    max-width: 1200px;
}

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

        background: rgb(64, 68, 72);
        border: 1px solid rgba(255, 255, 255, 0.14);
        border-radius: 3px;

        position: relative;

        width: 100%;

        aspect-ratio: 16 / 9;

        overflow: hidden;

        transition: 0.4s;
        filter: drop-shadow(0px 0px 37px rgba(255, 237, 177, 0.1));
    }

    .ModuleGlobalVideoPlayer__Screen:hover {
        transition: 0.2s;
        filter: drop-shadow(0px 0px 37px rgba(255, 237, 177, 0.7));
    }

    .ModuleGlobalVideoPlayer[data-fullscreen="true"] .ModuleGlobalVideoPlayer__Screen,
    .ModuleGlobalVideoPlayer__Screen:fullscreen,
    .ModuleGlobalVideoPlayer__Screen:-webkit-full-screen {
        background: rgb(7, 7, 7);
        border: unset;

        filter: unset;
    }

        .ModuleGlobalVideoPlayer__Video {
            display: block;

            background: rgb(64, 68, 72);

            position: absolute;
            top: 0px;
            left: 0px;
            z-index: 1;

            width: 100%;
            height: 100%;

            object-fit: contain;
        }

        .ModuleGlobalVideoPlayer[data-fullscreen="true"] .ModuleGlobalVideoPlayer__Video,
        .ModuleGlobalVideoPlayer__Screen:fullscreen .ModuleGlobalVideoPlayer__Video,
        .ModuleGlobalVideoPlayer__Screen:-webkit-full-screen .ModuleGlobalVideoPlayer__Video {
            background: rgb(7, 7, 7);
        }

        .ModuleGlobalVideoPlayer__Poster {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-end;

            background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgb(57 61 65)), radial-gradient(circle at 72% 28%, rgba(255, 237, 177, 0.2), transparent 22%), linear-gradient(135deg, rgb(38, 38, 38) 0%, rgb(17, 17, 17) 55%, rgb(127 77 57) 100%);

            position: absolute;
            top: 0px;
            left: 0px;
            z-index: 1;

            width: 100%;
            height: 100%;

            padding: 34px;
            transition: 0.4s;
        }

        .ModuleGlobalVideoPlayer[data-started="true"] .ModuleGlobalVideoPlayer__Poster {
            opacity: 0.0;
            pointer-events: none;
        }

        @media screen and (max-width: 550px){
            .ModuleGlobalVideoPlayer__Poster {
                padding: 24px;
            }
        }

            .ModuleGlobalVideoPlayerPoster__Image {
                display: block;

                position: absolute;
                top: 0px;
                left: 0px;
                z-index: 1;

                width: 100%;
                height: 100%;

                object-fit: cover;
                opacity: 0.45;
                filter: grayscale(0.3);
            }

            .ModuleGlobalVideoPlayer__Poster::before {
                content: "";

                border: 1px solid rgba(255, 255, 255, 0.08);

                position: absolute;
                top: 10%;
                left: 10%;
                z-index: 2;

                width: 80%;
                height: 80%;

                transform: skewX(-8deg);
            }

            .ModuleGlobalVideoPlayerPoster__Lines {
                background: url( '/wp-content/themes/sizif-app-version/assets/images/system/themes/sizif-themes-background-fullhd-v1.svg' );
                background-size: cover;
                background-position: top right;
                background-repeat: no-repeat;

                position: absolute;
                top: 0px;
                left: 0px;
                z-index: 3;

                width: 100%;
                height: 100%;

                opacity: 0.18;
            }

        .ModuleGlobalVideoPlayer__BigPlay {
            display: grid;
            align-content: center;
            align-items: center;
            justify-content: center;
            justify-items: center;

            background: transparent;
            border: unset;

            color: rgb(255, 255, 255);

            position: absolute;
            top: 0px;
            left: 0px;
            z-index: 6;

            width: 100%;
            height: 100%;

            cursor: pointer;
            gap: 14px;
            pointer-events: none;
            transition: 0.4s;
        }

        .ModuleGlobalVideoPlayer[data-status="play"] .ModuleGlobalVideoPlayer__BigPlay {
            opacity: 0.0;
        }

        .ModuleGlobalVideoPlayer[data-status="play"] .ModuleGlobalVideoPlayerBigPlay__Icon {
            pointer-events: none;
        }

            .ModuleGlobalVideoPlayerBigPlay__Icon {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;

                background: rgb(247, 197, 47);
                border: 2px solid rgba(255, 255, 255, 0.92);
                border-radius: 100%;

                outline: none;

                width: 90px;
                height: 90px;
                min-width: 90px;
                min-height: 90px;

                cursor: pointer;
                transition: 0.4s;
                box-shadow: 0px 18px 52px rgba(0, 0, 0, 0.42);
                pointer-events: auto;
            }

            .ModuleGlobalVideoPlayer__BigPlay:hover .ModuleGlobalVideoPlayerBigPlay__Icon {
                background: rgb(255, 237, 177);

                transform: scale(1.06);
            }

            @media screen and (max-width: 550px){
                .ModuleGlobalVideoPlayerBigPlay__Icon {
                    width: 74px;
                    height: 74px;
                    min-width: 74px;
                    min-height: 74px;
                }
            }

                .ModuleGlobalVideoPlayerBigPlay__Icon > i {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: center;

                    color: rgb(57, 61, 65);
                    font-size: 36px;

                    margin-left: 4px;
                }

                @media screen and (max-width: 550px){
                    .ModuleGlobalVideoPlayerBigPlay__Icon > i {
                        font-size: 30px;
                    }
                }

        .ModuleGlobalVideoPlayer__Top {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: space-between;

            position: absolute;
            top: 16px;
            left: 16px;
            right: 16px;
            z-index: 3;

            gap: 12px;
            opacity: 1.0;
            transform: translateY(0px);
            transition: 0.4s;
        }

        .ModuleGlobalVideoPlayer[data-interface="hidden"][data-status="play"] .ModuleGlobalVideoPlayer__Top {
            opacity: 0.0;
            pointer-events: none;
            transform: translateY(-17px);
        }

        @media screen and (max-width: 450px){
            .ModuleGlobalVideoPlayer__Top {
                display: none;
            }
        }

            .ModuleGlobalVideoPlayerTop__Status,
            .ModuleGlobalVideoPlayerTop__Quality {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: center;

                background: rgba(57, 57, 57, 0.17);
                border: 1px solid rgba(255, 255, 255, 0.12);
                border-radius: 3px;

                color: rgba(255, 255, 255, 0.82);
                font-size: 12px;
                font-weight: 700;

                min-height: 34px;

                padding-top: 7px;
                padding-bottom: 7px;
                padding-left: 17px;
                padding-right: 17px;
                user-select: none;
            }

                .ModuleGlobalVideoPlayerTop__Status > span {
                    display: block;

                    background: rgb(247, 197, 47);
                    border-radius: 100%;

                    width: 7px;
                    height: 7px;

                    margin-right: 8px;
                    box-shadow: 0px 0px 0px 5px rgba(247, 197, 47, 0.14);
                }

                .ModuleGlobalVideoPlayerTop__Status {
                    justify-content: flex-start;

                    width: 100%;

                    overflow: hidden;
                    white-space: nowrap;
                }

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

            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 16px;
            z-index: 5;

            opacity: 1.0;
            transform: translateY(0px);
            transition: 0.4s;
        }

        .ModuleGlobalVideoPlayer[data-interface="hidden"][data-status="play"] .ModuleGlobalVideoPlayer__Bottom {
            opacity: 0.0;
            pointer-events: none;
            transform: translateY(17px);
        }

        @media screen and (max-width: 550px){
            .ModuleGlobalVideoPlayer__Bottom {
                left: 10px;
                right: 10px;
                bottom: 10px;
            }
        }

        @media screen and (max-width: 700px){
            .ModuleGlobalVideoPlayer__Bottom {
                left: 8px;
                right: 8px;
                bottom: 8px;
            }
        }

        .ModuleGlobalVideoPlayer__Controls {
            background: rgba(57, 57, 57, 0.17);
            border: 1px solid rgba(255, 255, 255, 0.14);
            border-radius: 3px;

            position: relative;
            z-index: 7;

            width: 100%;

            padding: 17px;
            user-select: none;
        }

        @media screen and (max-width: 550px){
            .ModuleGlobalVideoPlayer__Controls {
                padding: 10px;
            }
        }

        @media screen and (max-width: 700px){
            .ModuleGlobalVideoPlayer__Controls {
                padding: 8px;
            }
        }

            .ModuleGlobalVideoPlayerControls__Timeline {
                position: relative;

                height: 18px;

                margin-bottom: 9px;
                cursor: pointer;
            }

                .ModuleGlobalVideoPlayerControls__Timeline::before {
                    content: "";

                    background: rgba(255, 255, 255, 0.18);
                    border-radius: 3px;

                    position: absolute;
                    top: 7px;
                    left: 0px;
                    right: 0px;

                    height: 5px;
                    cursor: pointer;
                }

                .ModuleGlobalVideoPlayerControlsTimeline__Buffer,
                .ModuleGlobalVideoPlayerControlsTimeline__Progress {
                    border-radius: 3px;

                    position: absolute;
                    top: 7px;
                    left: 0px;

                    height: 5px;
                }

                .ModuleGlobalVideoPlayerControlsTimeline__Buffer {
                    background: rgba(255, 255, 255, 0.26);

                    width: 0%;
                }

                .ModuleGlobalVideoPlayerControlsTimeline__Progress {
                    background: rgb(247, 197, 47);

                    width: 0%;
                }

                .ModuleGlobalVideoPlayerControlsTimeline__Thumb {
                    background: rgb(247, 197, 47);
                    border: 3px solid rgb(17, 17, 17);
                    border-radius: 100%;

                    position: absolute;
                    top: 2px;
                    left: 0%;

                    width: 15px;
                    height: 15px;

                    transform: translateX(-50%);
                    box-shadow: 0px 0px 0px 3px rgba(247, 197, 47, 0.22);
                    cursor: pointer;
                }

                @media screen and (max-width: 700px){
                    .ModuleGlobalVideoPlayerControls__Timeline {
                        height: 10px;

                        margin-bottom: 6px;
                    }

                        .ModuleGlobalVideoPlayerControls__Timeline::before,
                        .ModuleGlobalVideoPlayerControlsTimeline__Buffer,
                        .ModuleGlobalVideoPlayerControlsTimeline__Progress {
                            top: 4px;

                            height: 3px;
                        }

                        .ModuleGlobalVideoPlayerControlsTimeline__Thumb {
                            border-width: 2px;

                            top: 0px;

                            width: 10px;
                            height: 10px;

                            box-shadow: 0px 0px 0px 2px rgba(247, 197, 47, 0.22);
                        }
                }

            .ModuleGlobalVideoPlayerControls__Bar {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;

                gap: 10px;
            }

            @media screen and (max-width: 550px){
                .ModuleGlobalVideoPlayerControls__Bar {
                    flex-wrap: wrap;
                    gap: 8px;
                }
            }

            @media screen and (max-width: 700px){
                .ModuleGlobalVideoPlayerControls__Bar {
                    gap: 5px;
                }
            }

                .ModuleGlobalVideoPlayerControlsBar__Button,
                .ModuleGlobalVideoPlayerControlsBar__Pill {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: center;

                    background: rgb(60, 64, 68);
                    border: unset;
                    border-radius: 3px;

                    outline: none;

                    width: 50px;
                    height: 50px;

                    color: rgb(97, 107, 117);
                    font-size: 13px;
                    font-weight: 700;

                    cursor: pointer;
                    transition: 0.4s;
                }

                @media screen and (max-width: 700px){
                    .ModuleGlobalVideoPlayerControlsBar__Button,
                    .ModuleGlobalVideoPlayerControlsBar__Pill {
                        width: 25px;
                        height: 25px;

                        font-size: 10px;
                    }
                }

                    .ModuleGlobalVideoPlayerControlsBar__Button:hover,
                    .ModuleGlobalVideoPlayerControlsBar__Pill:hover {
                        color: rgb(107, 117, 127);

                        box-shadow: -4px 4px 17px rgba(255, 237, 177, 0.3);
                    }

                .ModuleGlobalVideoPlayerControlsBar__Button > i,
                .ModuleGlobalVideoPlayerControlsBar__Pill > i {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: center;

                    color: rgb(97, 107, 117);
                    font-size: 18px;
                }

                @media screen and (max-width: 700px){
                    .ModuleGlobalVideoPlayerControlsBar__Button > i,
                    .ModuleGlobalVideoPlayerControlsBar__Pill > i {
                        font-size: 10px;
                    }
                }

                .ModuleGlobalVideoPlayerControlsBar__ButtonPlay > .icon-pause {
                    display: none;
                }

                .ModuleGlobalVideoPlayer[data-status="play"] .ModuleGlobalVideoPlayerControlsBar__ButtonPlay > .icon-play {
                    display: none;
                }

                .ModuleGlobalVideoPlayer[data-status="play"] .ModuleGlobalVideoPlayerControlsBar__ButtonPlay > .icon-pause {
                    display: flex;
                }

                .ModuleGlobalVideoPlayerControlsBar__ButtonSound > .icon-volume-off {
                    display: none;
                }

                .ModuleGlobalVideoPlayer[data-muted="true"] .ModuleGlobalVideoPlayerControlsBar__ButtonSound > .icon-volume-up {
                    display: none;
                }

                .ModuleGlobalVideoPlayer[data-muted="true"] .ModuleGlobalVideoPlayerControlsBar__ButtonSound > .icon-volume-off {
                    display: flex;
                }

                .ModuleGlobalVideoPlayerControlsBar__Time {
                    display: flex;
                    flex-direction: row;
                    align-items: center;
                    justify-content: center;

                    color: rgba(255, 255, 255, 0.82);
                    font-size: 13px;
                    white-space: nowrap;

                    min-width: 100px;

                    gap: 5px;
                }

                @media screen and (max-width: 700px){
                    .ModuleGlobalVideoPlayerControlsBar__Time {
                        font-size: 10px;

                        min-width: 66px;

                        gap: 3px;
                    }
                }

                    .ModuleGlobalVideoPlayerControlsBar__Time > em {
                        color: rgba(255, 255, 255, 0.38);
                        font-style: normal;
                    }

                .ModuleGlobalVideoPlayerControlsBar__Volume {
                    background: rgba(255, 255, 255, 0.18);
                    border-radius: 3px;

                    width: 86px;
                    height: 5px;

                    overflow: hidden;
                    cursor: pointer;
                }

                @media screen and (max-width: 700px){
                    .ModuleGlobalVideoPlayerControlsBar__Volume {
                        width: 43px;
                    }
                }

                @media screen and (max-width: 550px){
                    .ModuleGlobalVideoPlayerControlsBar__Volume {
                        display: none;
                    }
                }

                    .ModuleGlobalVideoPlayerControlsBar__Volume > span {
                        display: block;

                        background: rgb(247, 197, 47);
                        border-radius: 3px;

                        width: 74%;
                        height: 100%;
                        cursor: pointer;
                    }

                .ModuleGlobalVideoPlayerControlsBar__Pill {
                    padding-left: 13px;
                    padding-right: 13px;
                }

                @media screen and (max-width: 700px){
                    .ModuleGlobalVideoPlayerControlsBar__Pill {
                        width: auto;
                        min-width: 34px;

                        padding-left: 6px;
                        padding-right: 6px;
                    }
                }
