@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* {
    transition: all 0.5s linear;
    font-family: 'Poppins',
    sans-serif;
    font-weight: 400;
}

html, body {
    background: #FAFAFA;
    padding-bottom: 35px;
    overflow-x: hidden;
}

.flash-alert {
    position: fixed;
    top: 5rem;
    right: 5px;
    z-index: 500000000000000;
    animation: flash-anim 0.5s linear 0.5s;
    font-weight: 700;
}

.flash-alert.alert-warning {
    border-left: 10px solid #FDB813;
}

.flash-alert.alert-success {
    border-left: 10px solid #31A73B;
}

.flash-alert.alert-danger {
    border-left: 10px solid #F60109;
}

.flash-alert.alert-info {
    border-left: 10px solid #1BA8F0;
}

.login-title {
    font-size: 22px;
    font-weight: bold;
}

.login-box {
    background-color: #F3F7F8;
    padding: 1rem;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1),
    -1px -1px 5px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
    background-color: #FEFEFD;
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100;
    display: none;
}

@media (min-width: 992px) {
    .dashboard-header {
        display: block;
    }
    
    .mobile-show {
        display: none;
    }
}

@media (max-width: 991.98px) {
    body {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.mobile-navbar-fixed {
    display: flex;
    justify-content: center;
    background: #28a745;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 10000;
    padding: 5px 0;
    border-top: 2px solid #218838;
}

.mobile-navbar-fixed a {
    width: calc(100% / 4);
    text-align: center;
    color: #fff;
    font-size: 8px;
}

.mobile-navbar-fixed a:hover {
    text-decoration: none;
    color: #fff;
}

.mobile-navbar-fixed a img {
    width: 25px;
    display: block;
    margin: 0 auto 5px;
}

.mobile-topbar {
    background: #1E183D;
    margin: 0 -6px;
    padding: 6px 23px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 2px solid #007bff;
}

.mobile-topbar a {
    color: #fff;
    font-weight: bold;
}

.dashboad-avatar {
    width: 50px;
    border-radius: 50%;
}

.dropdown-toggle {
    border: none;
    outline: 0 !important;
    background: transparent;
    cursor: pointer;
    font-weight: 500;
}

.school-name {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    background: #1E183D;
    color: #fff;
    padding: 5px 0;
}

.navbar-toggler {
    outline: 0 !important;
}

.card {
    background: #F3F7F8 !important;
}

.card-img-top {
    display: block;
    width: 150px;
    height: 150px;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
    border: 1px solid #1e7e34;
    padding: 4px;
    margin: auto;
    margin-top: -3rem;
    background: #F3F7F8;
}

.preloading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 300000000000000;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.topbar-nav {
    background: #1E183D;
    color: #fff;
}

.topbar-nav a {
    color: #fff;
    font-size: 14px;
}

.invoice {
    position: relative;
}

.invoice .title {
    background: #218838;
    text-align: center;
    color: #fff;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    padding: 6px 0;
    border-radius: 20px;
    font-size: 16px;
}

.btn-group.d-flex button {
    width: 100% !important;
}

.openMobileMenu {
    cursor: pointer;
}

.menuSlider {
    background: #1E183D;
    width: 100%;
    height: 100vh;
    position:  fixed;
    top: 0;
    left: 0;
    z-index: 99999999999999999;
    padding: 75px 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    display: none;
}

.menuSlider a, .menuSlider span, .menuSlider small {
    color: #fff;
}