/* fix modal greyed out issue */

.modal-backdrop {
    display: none;
}

.modal {
    background: rgba(0, 0, 0, 0.5);
}

.clickable {
    cursor: pointer;
}

.custom-select-sm {
    width: 10% !important;
}

a.bg-holiday {
    background-color: gray;
    color: white !important;
}

.jumbotron-buttons {
    display: inline-block;
}

.modal-header .close[dir=rtl] {
    margin: 0 !important;
}

/* /fix modal greyed out issue */

/* Loader */
.loader {
    width: 60px;
    height: 60px;
    border: 10px solid #f3f3f3;
    border-radius: 50%;
    border-top: 10px solid var(--primary-color);
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    margin-left: auto;
    margin-right: auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@media print {
    .app-body .sidebar {
        display: none;
    }
}

@font-face {
    font-family: aptos;
    src: url(../fonts/aptos.ttf);
}

@font-face {
    font-family: aptos;
    src: url(../fonts/aptos-bold.ttf);
    font-weight: bold;
}

@font-face {
    font-family: aptos;
    src: url(../fonts/aptos-italic.ttf);
    font-style: italic;
}