* {
    font-family: 'Arial', 'Tahoma', 'Amiri', sans-serif;
}

html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
}

body {
    margin-bottom: 60px;
}

   
html, body {
    height: 100vh !important;
    margin: 0;
    display: flex;
    flex-direction: column;
}

.container {
    flex: 1;
}

footer {
/*    position: fixed;*/
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 1000;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
/*    padding: 0.5rem 2rem;*/
    border-top: 1px solid #dee2e6;
    color: #869099;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
}

.diraya {
    display: block;
    text-align: right;
    text-decoration: none;
    color: #999;
    font-size: 0.9rem;
    transition: .3s;
}

.diraya:hover {
    color: #0d6efd;
}

/*.container-fluid {
    margin: 0px !important
}*/

@media (max-width: 430px) {
    footer div:first-child {
        padding: 5px
    }

    footer *, .diraya {
        font-size: 8px;
    }
}


/* Fullscreen Loader */
/*#loader {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}*/
/* Spinner Animation */
/*.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #3498db;
    border-radius: 50%;
    animation: spin 0.5s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/
/* Hide content initially */
/*.hidden {
    display: none;
}*/
/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #ffc107 0%, #ff9800 100%);
    border-radius: 10px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    }