﻿body {
    padding: 0 0 0 0;
}

.body-content {
    padding-left: 15px;
    padding-right: 15px;
}

.navbar {
    margin-bottom: 0px;
}

#layout-container {
    width: 100%;
}

.vertical-menu {
    background-color: #eee;
    display: inline-block;
    min-height: 100vh;
    width: 16%;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.vertical-menu a {
    color: black;
    display: block;
    padding: 12px;
    text-decoration: none;
}

.vertical-menu div {
    margin-bottom: 20px
}

.vertical-menu a:hover {
    background-color: #ccc;
}

.vertical-menu a.active {
    background-color: #044576;
    color: white;
}

#main {
    display: inline-block;
    width: 84%;
    float: right;
}

.top-pages {
    color: whitesmoke;
    width: 100%;
    padding: 10px 0 6px 20px;
    background-color: #044576;
}

.busca-simples {
    padding: 25px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
    color: white !important;
    border: 1px solid #2980B9 !important;
    background-color: #044576 !important;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #044576), color-stop(100%, #044576)) !important;
    background: -webkit-linear-gradient(top, #044576 0%, #044576 100%) !important;
    background: -moz-linear-gradient(top, #044576 0%, #044576 100%) !important;
    background: -ms-linear-gradient(top, #044576 0%, #044576 100%) !important;
    background: -o-linear-gradient(top, #044576 0%, #044576 100%) !important;
    background: linear-gradient(to bottom, #044576 0%, #044576 100%) !important;
}

.btn-primary {
    background-color: #044576 !important;
}





.loader {
    position: absolute;
    z-index: 9999;
    top: 50%;
    left: 50%;
    display: none;
    border: 10px solid #f3f3f3; /* Light grey */
    border-top: 10px solid #044576; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}