/* Style the module of police */
.ModulePolice {
    display: none;
    flex-direction: row;
    align-items: center;
    justify-content: center;

    position: fixed;
    bottom: 17px;
    z-index: 777;

    width: 100%;

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

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

        background: url( '/wp-content/themes/sizif-app-version/assets/images/system/themes/sizif-themes-background-footer.svg' ), rgb(60, 64, 68);
        background-size: cover;
        background-position: left top;
        background-repeat: no-repeat;
        
        border-radius: 17px;

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

        padding: 17px;

        filter: drop-shadow(0px 0px 37px rgba(255, 237, 177, 0.7));
    }

        .ModulePoliceBlock__Context {
            display: block;
            border-bottom: 1px solid rgb(68, 72, 76);

            text-align: left;

            width: 100%;

            margin-bottom: 17px;
        }

            .ModulePoliceBlock__Context > span {
                font-weight: bold;
            }

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

            width: 100%;
        }

        @media screen and (max-width: 550px){
            .ModulePoliceBlock__Functions {
                flex-direction: column-reverse;
                align-items: center;
                justify-content: flex-start;
            }
        }

            .ModulePoliceBlock__Functions > a {
                margin-right: 27px;
            }

            @media screen and (max-width: 550px){
                .ModulePoliceBlock__Functions > a {
                    margin-right: unset;
                }

                .ModulePoliceBlock__Functions > button {
                    width: 100%;
                    max-width: unset;

                    margin-bottom: 17px;
                }

            }