﻿/* NALN colors*/
.bg-blue {
    background-color: #1E90FF;
}

/* Spintiller Styles */
/*Add an overlay to the entire page blocking any further presses to buttons or other elements.*/
.spintiller-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100vh !important;
    background: rgba(0,0,0,.4);
    z-index: 999;
    opacity: 1;
    transition: all 0.5s;
}

.spintiller {
    display: inline-block;
    width: 80px;
    height: 80px;
}

    .spintiller:after {
        content: " ";
        display: block;
        width: 64px;
        height: 64px;
        margin: 24% auto;
        border-radius: 50%;
        border: 6px solid #fff;
        border-color: #fff transparent #fff transparent;
        animation: spintiller 1.2s linear infinite;
    }

.spintiller-hidden {
    display: none;
}

@keyframes spintiller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bg-theme-blue {
    background-color: #1c5493 !important;
    color: white !important;
}

.bg-lt-blue {
    background-color: #7698be !important;
    color: white !important;
}
/*
table.dataTable.no-footer {
    border-bottom: 0px solid #111;
}

table.dataTable thead th, table.dataTable thead td {
    padding: 10px 17px;
    border-bottom: 0px solid #111;
}*/

.table-bordered td, .table-bordered th {
    border: 1px solid #dee2e66b;
}

.table td, .table th {
    padding: 10px 17px;
    border-top: 1px solid #dee2e6;
    font-size: 14px;
}

.modal-xxl {
    max-width: 1300px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgb(247 247 249);
}

.table td {
    color: #53575afc;
}
