/* Style the module of order call */
.ModuleGlobalPhotoPlayer {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    background: rgba(57, 61, 65, 0.9);

    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 99;

    width: 100%;
    height: 100%;

    padding: 17px;

    opacity: 0.0;
    transition: 0.4s;
}

@media screen and (max-width: 650px){
    .ModuleGlobalPhotoPlayer {
        padding: 7px;
    }
}

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

        background: rgb(57, 61, 65);
        border-radius: 3px;

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

        padding: 17px;

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

    @media screen and (max-width: 1050px){
        .ModuleGlobalPhotoPlayer__Body {
            max-width: 85vh;
        }
    }

        @media screen and (max-width: 650px){
            .ModuleGlobalPhotoPlayer__Body {
                background: none;
                padding: unset;
            }
        }

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

            width: 100%;

            z-index: 2;

            margin-bottom: 17px;
        }

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

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

                width: 100%;
                height: 100%;

                padding-left: 17px;
                padding-right: 17px;
                margin-right: 17px;
            }

            @media screen and (max-width: 650px){
                .ModuleGlobalPhotoPlayerBodyHeader__Title {
                    opacity: 0.0;
                }
            }

            .ModuleGlobalPhotoPlayerBodyHeader__Functions {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: flex-end;
            }

            @media screen and (max-width: 650px){
                .ModuleGlobalPhotoPlayerBodyHeader__Functions {
                    margin-right: 7px;
                }
            }

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

            width: 100%;
            height: 100%;
        }

        @media screen and (max-width: 1050px){
            .ModuleGlobalPhotoPlayerBody__Block {
                flex-direction: column;
            }
        }

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

                position: relative;
                z-index: 1;

                width: 100%;
                height: 100%;
            }

            @media screen and (max-width: 1050px){
                .ModuleGlobalPhotoPlayerBodyBlock__View {
                    height: auto;
                }
            }

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

                    position: absolute;
                    z-index: 1;

                    width: 100%;
                    height: 100%;

                    padding: 17px;
                }

                    .ModuleGlobalPhotoPlayerBodyBlockView__Loading > img {
                        width: 100%;
                        height: auto;
                        max-width: 156px;
                    }

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

                    color: rgba(57, 61, 65, 0.3);
                    font-size: 32px;

                    position: absolute;
                    top: 17px;
                    left: 17px;
                    z-index: 1;
                }

                @media screen and (max-width: 650px){
                    .ModuleGlobalPhotoPlayerBodyBlockView__Number {
                        font-size: 22px;
                    }
                }

                .ModuleGlobalPhotoPlayerBodyBlock__View > img {
                    border-radius: 3px;

                    width: 100%;
                    height: auto;

                    cursor: pointer;
                }

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

                height: 100%;
                max-height: 725px;

                overflow-y: auto;

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

            .ModuleGlobalPhotoPlayerBodyBlock__Preview::-webkit-scrollbar { width: 7px; }
            .ModuleGlobalPhotoPlayerBodyBlock__Preview::-webkit-scrollbar-thumb { background: rgb(255, 237, 177, 0.1); }

            @media screen and (max-width: 1050px){
                .ModuleGlobalPhotoPlayerBodyBlock__Preview {
                    flex-direction: row;

                    width: 100%;
                    height: auto;

                    overflow-y: unset;
                    overflow-x: auto;

                    padding-left: unset;
                    padding-right: unset;
                    padding-top: 17px;
                    padding-bottom: 17px;
                }
            }

                @media screen and (max-width: 650px){
                    .ModuleGlobalPhotoPlayerBodyBlock__Preview {
                        padding-bottom: 47px;
                    }

                    .ModuleGlobalPhotoPlayerBodyBlock__Preview::-webkit-scrollbar { width: 0px; height: 0px; }

                }

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

                    position: relative;
                    
                    width: 100%;

                    margin-bottom: 17px;

                    cursor: pointer;
                }

                @media screen and (max-width: 1050px){
                    .ModuleGlobalPhotoPlayerBodyBlockPreview__Item {
                        margin-right: 17px;
                        margin-bottom: unset;
                    }
                }

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

                        color: rgba(245, 245, 245, 0.4);
                        font-size: 18px;

                        position: absolute;
                        top: 7px;
                        left: 7px;
                        z-index: 1;
                    }

                    .ModuleGlobalPhotoPlayerBodyBlockPreview__Item > img {
                        border-radius: 3px;

                        width: 100%;
                        height: auto;
                        max-width: 225px;

                        filter: grayscale(0.7);
                        transition: 0.4s;
                    }

                    @media screen and (max-width: 1050px){
                        .ModuleGlobalPhotoPlayerBodyBlockPreview__Item > img {
                            width: auto;
                            height: 100%;
                            max-height: 115px;
                        }
                    }

                        .ModuleGlobalPhotoPlayerBodyBlockPreview__Item > img:hover {
                            transition: 0.2s;
                            filter: grayscale(0.0) drop-shadow(0px 17px 17px rgba(255, 237, 177, 0.3));
                        }

                        @media screen and (max-width: 650px){
                            .ModuleGlobalPhotoPlayerBodyBlockPreview__Item > img:hover {
                                filter: grayscale(0.0);
                            }
                        }

                        .ModuleGlobalPhotoPlayerBodyBlockPreview__Item:last-child:hover > img {
                            transition: 0.2s;
                            filter: grayscale(0.0) drop-shadow(0px -17px 17px rgba(255, 237, 177, 0.3));
                        }

                        @media screen and (max-width: 650px){
                            .ModuleGlobalPhotoPlayerBodyBlockPreview__Item:last-child:hover > img {
                                filter: grayscale(0.0);
                            }
                        }