body{
    height: 100%;
    overflow-x: hidden;
}
.cover-bg {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
}
.bb {
    border-bottom: 1px solid rgba(160, 160, 160, .2);
}
.bt {
    border-top: 1px solid rgba(160, 160, 160, .2);
}
.bl {
    border-left: 1px solid rgba(160, 160, 160, .2);
}
.br {
    border-right: 1px solid rgba(160, 160, 160, .2);
}

.area-lang-pt-br, .area-lang-en, .area-lang-es {
    display: none;
}

.imgfeedsocial {
    width: auto;
    max-width: 100%;
    max-height: 350px;
    margin: auto;
}

.area-borda {
    padding: 1.5rem 2rem 1.5rem 2rem;
    border: 1px solid #cfd8dc;
    border-radius: 6px !important;
}

.icon-align-center {
    position: relative !important;
    top: 6px !important;
    margin-right: 6px !important;
}

@media screen and (min-width: 720px) {
    #login-page, #register-page {
        margin-top: 3%;
    }
    .login-logo {
        margin-top: 3%;
    }
    .login-rodape {
        margin-top: 3%;
    }
    .login-rodape-img {
    }
}

@media screen and (max-width: 720px) {
    #login-page, #register-page {
        margin-top: 10%;
    }
    .login-logo {
        margin-top: 12%;
    }
    .login-rodape {
        margin-top: 8%;
    }
    .login-rodape-img{
        max-width: 60%;
    }
    .cover-bg-720 {
        -webkit-background-size: auto !important;
        background-size: auto !important;
    }
}

.loader-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #f2f4f8;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    overflow: hidden;
    visibility: hidden;
}

.loader {
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    border: 4px solid #aaa;
    animation: loader 2s infinite ease;
}

.loader-inner {
    vertical-align: top;
    display: inline-block;
    width: 100%;
    background-color: #aaa;
    animation: loader-inner 2s infinite ease-in;
}

::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

::-webkit-scrollbar {
    width: 12px;
    background-color: #969696;
}

::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
    background-color: #aaa;
}

@keyframes loader {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(180deg);
    }

    50% {
        transform: rotate(180deg);
    }

    75% {
        transform: rotate(360deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes loader-inner {
    0% {
        height: 0%;
    }

    25% {
        height: 0%;
    }

    50% {
        height: 100%;
    }

    75% {
        height: 100%;
    }

    100% {
        height: 0%;
    }
}

@media only screen and (max-width: 992px) {
    .pagination {
        width: 100%;
    }

        .pagination li.prev,
        .pagination li.next {
            width: 10%;
        }

        .pagination li.pages {
            overflow: hidden;
            width: 80%;
            white-space: nowrap;
        }
}