/*============================================================================================*/


/* Your custom styles below */


/*============================================================================================*/

#loading {
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    display: grid;
    place-items: center;
    z-index: 99;
    text-align: center;
}

.loader {
    /* position: fixed; */
    /* top: 50%; */
    /* left: 50%; */
    z-index: 1;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #1A1E4F;
    border-right: 8px solid #1A1E4F;
    border-bottom: 8px solid #F05F22;
    border-left: 8px solid #F05F22;
    width: 70px;
    height: 70px;
    -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);
    }
}

thead tr th {
    font-weight: bold;
}

@media print {
    .no-print,
    .no-print * {
        display: none !important;
    }
}

@media screen {
    .no-screen,
    .no-screen * {
        display: none !important;
    }
}


/* New Panel and modal design */

.panel {
    border-left: 0.15rem solid #433B59;
    border-right: 0.15rem solid #433B59;
    border-bottom: 0.15rem solid #433B59;
}

.modal-dialog {
    border: 1px solid #433B59;
}

.panel-heading,
.modal-header {
    background-image: linear-gradient(-90deg, #433B59, #D36035);
}

.btn-skuuni {
    color: white;
    background-color: #433B59;
}

.btn-skuuni-light {
    color: white;
    background-color: #D36035;
}

.btn-skuuni-light:hover {
    color: #433B59;
}

.btn-skuuni:hover {
    color: #D36035;
}

.navbar-default,
.sidebar {
    background-color: #433B59;
}

.sidebar-nav {
    background-color: #2a2047;
}

.modal-close {
    color: white !important;
}

.btn-primary,
.btn-info {
    background-color: #433B59;
}

.btn-primary:hover,
.btn-info:hover {
    background-color: #D36035;
}

.btn-success {
    color: white;
    background-color: #D36035;
}

.btn-success:hover {
    background-color: #433B59;
}

.text-success {
    color: #433B59;
}

.text-info {
    color: #D36035;
}