﻿/* ADALINE sistemas e tecnologia
   Versão 1.0.0
*/
/* alterando layout dos botões com a navegação por tab */
.dropdown-select:focus {
   /* background-color: #5F5DEE !important;*/
    text-decoration: underline !important;
    outline: none !important;
}

.btn-navigation:focus {
    background-color: #526f9e !important;
    text-decoration: underline !important;
    outline: none !important;
}

.img-center {
    position: absolute;
    overflow: hidden;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}

.rotate {
    animation: rotation 8s infinite linear;
}

@keyframes rotation {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(359deg);
    }
}

@media(max-width: 600px){
    .tableMobile, th, td {
        padding: 1px 20px 1px 0px;
        border-bottom: 1px solid #ddd;
    }
}

@media(min-width: 601px){
    .tableMobile, th, td {
        padding: 10px 15px 15px 10px;
        border-bottom: 1px solid #ddd;
    }
}
