.nav li a {
    border: 1px solid red;
    border-radius: 10px;
    padding: 1%;
    box-shadow: 3px 4px 5px -2px #ccc;
}

.nav li:hover a {
    border: 1.5px solid red;
}

.nav li a p {
    font-size: 15px;
    text-align: left;
    color: #0000FF;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    /* cor do background que vai ocupar o body */
    z-index: 999;
    /* z-index para jogar para frente e sobrepor tudo */
}

#preloader .inner {
    position: absolute;
    top: 50%;
    /* centralizar a parte interna do preload (onde fica a animação)*/
    left: 50%;
    transform: translate(-50%, -50%);
}

.bolas>div {
    display: inline-block;
    background-color: #2144b6;
    ;
    width: 25px;
    height: 25px;
    border-radius: 100%;
    margin: 3px;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    animation-name: animarBola;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

.bolas>div:nth-child(1) {
    animation-duration: 0.75s;
    animation-delay: 0;
}

.bolas>div:nth-child(2) {
    animation-duration: 0.75s;
    animation-delay: 0.12s;
}

.bolas>div:nth-child(3) {
    animation-duration: 0.75s;
    animation-delay: 0.24s;
}

@keyframes animarBola {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
    16% {
        -webkit-transform: scale(0.1);
        transform: scale(0.1);
        opacity: 0.7;
    }
    33% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }
}


/*Login*/

.card-visita {
    margin-top: 40%;
}


/*Logotipo*/

.logotipo img {
    height: 8em;
}


/*Footer*/

footer {
    background: rgba(20, 17, 255, 1);
    color: #fff;
}


/*alert*/

.alert-warning {
    background: linear-gradient(90deg, rgba(20, 17, 255, 1) 0%, rgba(52, 110, 241, 1) 50%);
    color: #fff;
}

.alert-warning a {
    color: #ff0000;
    /*text-decoration: underline;*/
    background-color: #fff;
    padding: 0.5%;
    border-radius: 5px;
}

footer a {
    color: #fff;
    text-decoration: none;
    padding: 0.5%;
    border-radius: 5px;
}

footer a:hover {
    color: #ffffff;
}


/*resolver depois*/

.navbar-toggler {
    display: none;
}

@media(max-width: 600px) {
    .navbar.navbar-transparent a:not(.dropdown-item):not(.btn) {
        font-size: 1em;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        width: 210px;
    }
}


/*Relatorios*/

.fastrel {
    border: 1px dashed rgb(184, 50, 50);
    color: rgb(184, 50, 50);
    font-size: 0.5em;
    border-radius: 20px;
    padding: 1%;
    margin-top: -12%;
}

.fastrel:hover {
    border: 1px dashed rgb(184, 50, 50);
    color: #fff;
    background-color: rgb(184, 50, 50);
    font-size: 0.52em;
}


/*Barras de rolagem*/


/* Works on Firefox */

* {
    scrollbar-width: thin;
    scrollbar-color: rgb(184, 50, 50) #F4F3EF;
}


/* Works on Chrome, Edge, and Safari */

*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: #F4F3EF;
}

*::-webkit-scrollbar-thumb {
    background-color: rgb(184, 50, 50);
    border-radius: 20px;
    border: 3px solid #F4F3EF;
}