html {
    font-size: 14px;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

html {
    position: relative;
    min-height: 100%;
}

body {
    margin-bottom: 60px;
    min-height: 100%;
    background-color: #ecf0f5;
    z-index: 800;
}

a {
    color: #337ab7;
    text-decoration: none;
    background-color: transparent;
}

.navbar {
    background-color: #292929 !important;
}

.nav-link {
    color: #eeee !important;
}

    .nav-link:hover {
        color: #cf2e2e !important;
    }


.nav-item {
    margin-left: 10px;
}

.loading2 {
    border: 16px solid #46aefc;
    border-radius: 50%;
    border-top: 16px solid white;
    border-bottom: 16px solid white;
    margin: auto;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

table.dataTable, table.dataTable thead, table.dataTable tr, table.dataTable tr {
    border-color: #9b9a9a !important;
    border-bottom-color: #9b9a9a !important;
}

    table.dataTable.no-footer {
        border-bottom: none;
    }
