:root {
    /* Brand */
    --brand: #112866;
    --brand-dark: #004bcc;
    --brand-light: #5ca9ff;

    /* Background */
    --background: #ffffff;
    --surface: #f5f5f5;
    --background-blue: #112866;

    /* Text */
    --text: #112866;
    --text-o: #fff;
    --text-secondary: #f7b718;

    /* Accent */
    --accent: #ff9800;

    /* Status */
    --success: #28a745;
    --warning: #ffc107;
    --error: #dc3545;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text) !important;
}
.page-title {
    margin-bottom: 2rem;
}

 .page-title h2 {
    margin: 0 0 1.5rem;
    color: var(--brand);
    font-size: 1.8rem;
    font-weight: 700;
}

.title-line {
    width: 120px;
    height: 4px;
    background: var(--text-secondary);
    border-radius: 10px;
}

.h-card {
    background: var(--brand);
    padding: 2%;
    text-align: center;
    color: var(--text-o);
}

.h-card h1 {

    font-size: 24px;
    color: var(--text-o) !important;
}

.h-card span {

    color: var(--text-secondary);
}

.container-1330 {
    max-width: 1330px;
}

/* Navbar */

.navbar {
    /* position: sticky;
    top: 0; */
    z-index: 1050;
}

.navbar-blue {
    background: var(--brand) !important;
    color: var(--text-o)
}

/* Sticky Sidebars */

.sticky-sidebar {
    position: sticky;
    top: 237px;
    align-self: flex-start;
    /* navbar height */
}

/* Demo */

.box {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

body {
    background: #f5f5f5;
    font-family: 'lato';
}

footer {
    margin-top: 20px;
}

.due {
    background-color: var(--text-secondary);
    text-align: right;
    padding: .2rem;
    color: #d50000;
    font-weight: bold;
}

/* Disable sticky on mobile */

@media (max-width:991.98px) {

    .sticky-sidebar {
        position: static;
    }


}

.header-sticky {
    position: sticky;
    top: 0;
    z-index: 1055;
    background: #fff;
}

ul.menu {

    background: var(--text);
    list-style-type: none;
    padding: 0;
}

ul.menu li {
    display: block;
    /* padding: 14px 18px; */
    border-left: 5px solid var(--background-blue);

    text-decoration: none;
    border-bottom: 1px solid #fff;
    font-family: Arial, sans-serif;
    font-size: 16px;
    transition: background 0.3s;
}

.navbar-blue li a,
ul.menu li a {
    color: var(--text-o);
    text-decoration: none;
    width: 100%;
    height: 100% !important;
    display: block;
    padding: 14px 18px;
}

.navbar-blue li a:hover,
ul.menu li:hover {
    background: #2d4a9b;
    cursor: pointer;
    color: white;
    font-weight: bold;

}

.navbar-blue li a.active {
    color: #ffcc00 !important;
    font-weight: bold;

}

ul.menu li.active {
    color: #ffcc00 !important;
    font-weight: bold;
    border-left: 5px solid #ffcc00;
}

#topBtn {
    display: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
    border: none;
    outline: none;
    background: #0d6efd;
    color: white;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 20px;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
}

#topBtn:hover {
    background: #0b5ed7;
    transform: translateY(-2px);
}

/* ===========================
   PAGE LOADER
=========================== */

#pageLoader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999999;
}

.loader-content {
    text-align: center;
}

#loaderLogo img {

    display: block;
    margin: auto;
}

#loaderLogo .h-card {
    opacity: 0;
}

#loaderLogo h1 {
    margin: 0;
    font-size: 1rem;
    color: #fff;
    font-weight: 700;
}

#loaderLogo span {
    font-size: 14px;
    color: var(--text-secondary);
}

.navbar-brand {
    color: var(--text-secondary) !important;
    font-weight: bold;
}


/* Extra Small (default) */
/* <576px */
/* No media query needed */
.is-menu {
    display: none;
}

.navbar-toggler {
    background-color: var(--text-secondary) !important
}

#monthlyCards img {
    border: 1px solid #ddd;
    border-radius:8px;
}

#monthlyCards .box.mb-3 {
    border-left: 5px solid #f7b718 !important;
    background: #f7f8fa;
}



/* Small */
@media (max-width: 576px) {}

/* Medium */
@media (max-width: 768px) {

    .due,
    .sign-up-btn {
        display: none;
    }

    .panel-logo {
        text-align: center;
    }
    .navbar-blue li a
    {
        padding:0 !important;
    }
}

/* Large */
@media (max-width: 992px) {

    .h-card h1 {
        font-size: 18px !important;
        margin: 0;
    }

    .h-card span {
        font-size: 12px
    }

    .is-menu {
        display: block;
    }

    #menu {
        display: none;
    }
}

/* Extra Large */
@media (max-width: 1200px) {}

/* Extra Extra Large */
@media (max-width: 1400px) {}


/* =========================================================
   ARCHIVE IMAGE
   ========================================================= */

.archive-image-wrapper {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: #f1f3f5;
}


.archive-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;

    transition: transform 0.3s ease;
}


.archive-card:hover .archive-image {
    transform: scale(1.05);
}


/* =========================================================
   NO IMAGE
   ========================================================= */

.archive-image-placeholder {
    width: 100%;
    height: 160px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f1f3f5;

    color: #6c757d;

    font-size: 35px;
}