body {
    padding: 0!important;
    font-family: 'Poppins';
}

.container:not(.-mobile):not(.-desktop) {
    width: 1350px;
    max-width: 100%;
}

.none {
    display: none;
}

img {
    max-width: 100%;
}

/* Header */

.nav-top,
.layout-header {
    display: none;
}

/* Footer */

.footer-main {
    float: left;
    width: 100%;
    padding-bottom: 140px!important;
}

/* Modal Rodapé */

.modalRodape {
    background-color: #F7CB15;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    padding: 15px 0;
    -webkit-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.39);
    -moz-box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.39);
    box-shadow: 0px 0px 16px 0px rgba(0,0,0,0.39);
}

.modalRodape p {
    float: left;
    width: 100%;
    text-align: center;
    color: #0F1B2E;
    font-size: 13px;
    margin: 0;
    line-height: 22px;
    font-weight: 600;
}

/* Modal Vídeo */

#modalVideo {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 999999999;
    display: none;
}

#modalVideo .boxFlex {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

#modalVideo .boxFlex .boxVideo {
    width: 800px;
    max-width: 90%;
    border-radius: 4px;
    background: #fff;
    padding: 30px;
    position: relative;
}

#modalVideo .boxFlex .boxVideo .fechaVideo {
    position: absolute;
    color: #A9ABBD;
    font-weight: bold;
    top: 4px;
    right: 4px;
    font-size: 20px;
    line-height: 100%;
    cursor: pointer;
}

#modalVideo .boxFlex .boxVideo .video-block {
    max-width: 100%;
}

#modalVideo .boxFlex .boxVideo iframe {
    width: 100%;
    float: left;
    height: 500px;
    border-radius: 4px;
}

@media only screen and (max-width: 768px) {

    #modalVideo .boxFlex .boxVideo iframe {
        height: 180px;
    }

    /* Modal Rodapé */

    .modalRodape {
        padding: 10px 0 5px 0;
    }

    .modalRodape .container {
        padding: 0 10px !important;
    }

    .modalRodape p {
        font-size: 13px;
    }

    .modalRodape .boxNumeros #clock .boxDados {
        padding: 6px 12px;
    }

    /* Modal Vídeo */

    #modalVideo .boxFlex .boxVideo {
        padding: 3px;
    }

    #modalVideo .boxFlex .boxVideo .fechaVideo {
        background: #fff;
        border-radius: 20px;
        top: -10px;
        right: -10px;
    }

}