:root {
    --primary: #f4f4f5;
    --primaryDark: #605ca8;
    --primaryDark2: #555299;
    --primaryLight: #ecf0f5;
    --secondary: '';
    --secondaryDark: '';
    --secondaryLight: '';
    --white: #ffffff;
    --whiteFc: #fcfcfc;
    --grey: #dddddd;
    --greyLight: #f0f0f0;
    --greyLight2: #eeeeee;
    --black: #444444;
}

.boxLogoHomePage{
    min-height: 300px;
    padding: 40px 40px 40px 40px;
    text-align: center;
}

.LogoHomePage{
    max-height: 150px;
}

.TextHomePage{
    text-align: center;
}

.table-dashboard {
    width: 100%;
}

.btn-sky-blue {
    color: white;
    background-color: #27afcf;
    border-color: #27afcf;
}
.btn-sky-blue:hover {
    color: white;
    opacity: 70%;
}
.btn-sky-blue:focus {
    color: white;
}

.btn-outline-circle-primary {
    border: 1px solid;
    border-radius: 50%;
}

.btn-outline-circle-primary:hover {
    color: #72afd2;
    opacity: 70%;
}

.table-bordered > thead > tr > th, .table-bordered > tbody > tr > th, .table-bordered > tfoot > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > td {
    border: 1px solid rgb(118, 118, 118);
}

/* loader */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: var(--whiteFc);
    opacity: 50%;
    display: none;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primaryDark);

    -webkit-animation: spin 2s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 2s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primaryDark);

    -webkit-animation: spin 3s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
    animation: spin 3s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primaryDark);

    -webkit-animation: spin 1.5s linear infinite; /* Chrome, Opera 15+, Safari 5+ */
        animation: spin 1.5s linear infinite; /* Chrome, Firefox 16+, IE 10+, Opera */
}

@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(0deg);  /* IE 9 */
        transform: rotate(0deg);  /* Firefox 16+, IE 10+, Opera */
    }
    100% {
        -webkit-transform: rotate(360deg);  /* Chrome, Opera 15+, Safari 3.1+ */
        -ms-transform: rotate(360deg);  /* IE 9 */
        transform: rotate(360deg);  /* Firefox 16+, IE 10+, Opera */
    }
}
/* end loader */


@media (max-width: 1200px) {
    .table-dashboard {
        min-width: 900px;
        overflow-y: auto;
    }
}
