/***** | NODAL STUDENT | *****/

/***** | FONTS | *****/

@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;0,1000;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900;1,1000&display=swap");

/***** | BOOTSTRAP ICONS |*****/

@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.1/font/bootstrap-icons.css");

/***** | ROOT | *****/

:root {
    scroll-behavior: smooth;
    --body: #f4f4f5;
    --primary: #122b54;
    --secondary: #eabf09;
    --third: #173059;
    --dark: #000000;
    --grey: #f0f0f0;
    --white: #ffffff;
    --light-dark: #aeabab;
    --dropdown-bg: #f4f4f4;
    --paragraph: #262933;
    --coordinator-bg: #eef4fd;
    --pay-btn: #008124;
    --apply-btn: #ddede6;
    --download-icon: #ff0800;
    --footer: #e1e1e1;
}

/***** | SCROLL | *****/

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: var(--light-dark);
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: var(--dark);
    background-image: -webkit-linear-gradient(top, var(--primary) 0%, var(--primary) 50%, var(--primary) 51%, var(--primary) 100%);
}

hr {
    color: var(--light-dark);
}

/***** | MAIN SCREEN | *****/

#main {
    margin-top: 50px;
    transition: all 0.3s;
    overflow-x: hidden;
}

/***** | BODY | *****/

body {
    font-family: "Nunito", sans-serif !important;
    background-color: var(--body) !important;
}

/***** | LINK | *****/
a {
    text-decoration: none !important;
    color: var(--white);
}

    a:hover {
        text-decoration: none !important;
    }

/***** | LIST | *****/

ul li {
    list-style: none !important;
}

/***** | HEADINGS | *****/

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Nunito", sans-serif !important;
}

h1 {
    font-size: 22px !important;
    font-weight: 700 !important;
}

h3 {
    font-size: 18px !important;
    font-weight: 700 !important;
}

h4 {
    font-size: 16px !important;
    font-weight: 700 !important;
}

h5 {
    font-size: 20px !important;
    font-weight: 700 !important;
}

h6 {
    font-size: 15px !important;
    font-weight: 700 !important;
}

/***** | IMAGES | *****/

.banner-signin {
    background-image: url("/assets/images/SVU-Signin-Page-BG-Img.svg");
}

/***** | PLACEHOLDER | *****/

::placeholder {
    font-size: 14px;
}

/***** DROPDOWN *****/

.select {
    border: 1px solid var(--light-dark);
    background-color: var(--dropdown-bg);
    border-radius: 3px;
    height: 35px;
    min-width: 300px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 10px;
    font-size: 14px !important;
}

@media (min-width: 992px) {
    .select {
        min-width: 300px;
    }
}

/*****| ICONS |*****/

.fa-download {
    font-size: 18px;
    cursor: pointer;
    color: var(--download-icon);
}

/***** | SEARCH BOX |*****/

.search-box {
    border-radius: 0px;
    border: 1px solid var(--light-dark);
    height: 35px;
    width: 220px;
    outline: none;
    padding: 10px;
}

    .search-box:focus {
        border: 1px solid var(--primary);
        box-shadow: none;
    }

/***** | ACCORDIAN |*****/

.accordion .accordion-button {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border-radius: 5px 5px 0px 0px;
}

    .accordion .accordion-button:focus {
        box-shadow: none;
    }

.accordion-button::after {
    background-color: var(--white) !important;
}

.accordion ul li {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: justify;
}

    .accordion ul li span {
        display: inline-block;
        position: relative;
        font-size: 14px;
        font-weight: 500;
        width: 150px;
        margin-right: 25px;
    }

    .accordion ul li :after {
        content: ":";
        position: absolute;
        right: 0;
    }

/***** | NAVTAB |*****/

.nav-tabs {
    background-color: var(--grey) !important;
    padding: 5px !important;
    max-width: 650px;
    border-radius: 3px;
    justify-content: space-between;
}

    .nav-tabs button {
        height: fit-content;
        width: fit-content;
        padding: 6px;
        background-color: var(--grey) !important;
        border-radius: 0px !important;
        font-size: 14px;
        font-weight: 600;
    }

    .nav-tabs .nav-link.active {
        background-color: var(--primary) !important;
        color: var(--white) !important;
    }

/***** | FORM |*****/

/***** | Form Control | *****/

.form-control {
    border-radius: 3px;
    outline: none;
}

    .form-control:focus {
        border: 1px solid var(--dark);
        box-shadow: none;
    }

/***** | Form Label | *****/

.form-label {
    display: flex;
    justify-content: flex-start;
    font-size: 14px;
    font-weight: 500;
}

/***** | Signin Form | *****/

.signin form .form-control {
    border: 1px solid var(--light-dark);
    border-radius: 0px;
}

    .signin form .form-control:focus {
        border: 1px solid var(--primary);
        box-shadow: none;
    }

.signin form .form-label {
    font-size: 14px;
    font-weight: 600;
}

/***** | Form Check Input | *****/

.form-check-input {
    color: var(--dark);
    border: 2px solid;
}

    .form-check-input:focus {
        box-shadow: none;
    }

    .form-check-input:checked {
        border: none;
        background-color: var(--primary);
        color: var(--white);
    }

/***** | CARD | *****/

.card {
    width: 100%;
    /* box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 2px 0px !important; */
    outline: none;
    box-shadow: none;
}

/***** | Card Title |*****/

.card-title {
    background-color: var(--primary) !important;
    padding: 5px 15px;
    color: var(--white) !important;
    border-radius: 5px 5px 0px 0px;
}

/***** | TABLE |*****/

.table {
    border-radius: 5px;
    overflow: hidden;
}

    .table th {
        background-color: var(--primary) !important;
        color: var(--white) !important;
        padding: 10px 35px !important;
        font-size: 14px;
        font-weight: 500;
        text-transform: uppercase;
        text-align: justify;
    }

    .table td {
        background-color: var(--white) !important;
        padding: 10px 35px !important;
        font-size: 14px;
        color: var(--dark);
        text-align: justify;
    }

/***** | PAGINATION |*****/

.pagination span {
    background-color: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    padding: 6px 10px;
    margin: 20px 5px;
    cursor: pointer;
    height: fit-content;
    width: fit-content;
    text-align: center;
    border-radius: 3px;
}

/***** | BUTTONS | *****/

/***** | Signin Button |*****/

.signin-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    margin-bottom: 10px;
}

/***** | Back Button |*****/

.back-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    margin: 20px 0;
}

/***** | Next Buttons | *****/

.next-btn {
    background-color: var(--primary);
    color: var(--white) !important;
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 7px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    margin: 20px 0;
}

/***** | Filter Button |*****/

.filter-btn {
    background-color: var(--secondary);
    color: var(--dark);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
    letter-spacing: 1px;
}

/***** | Title Button |*****/

.university-title-btn {
    background-color: var(--secondary) !important;
    color: var(--dark);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
}

.dashboard-exam-app-btn,
.dashboard-term-fee-btn {
    background-color: var(--secondary) !important;
    color: var(--dark);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 4px 10px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
}

/***** | Download Button |*****/

.download-btn {
    background-color: var(--secondary) !important;
    color: var(--dark);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 6px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
}

/***** | Payment Page Button |*****/

.payment-page-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 4px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 5px;
}

.total-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 4px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
}

.close-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
}

/***** | Apply Button |*****/

.apply-btn {
    background-color: var(--apply-btn);
    color: var(--pay-btn);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 3px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
}

/***** | Pay Button |*****/

.pay-btn {
    background-color: var(--pay-btn);
    color: var(--white);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 4px 22px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
}

/***** | Done Button |*****/

.done-btn {
    background-color: var(--primary);
    color: var(--white);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 4px 15px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 3px;
}

/***** | Payment Button |*****/

.payment-btn {
    background-color: var(--pay-btn);
    color: var(--white);
    border: none;
    text-align: center;
    height: fit-content;
    width: fit-content;
    padding: 6px 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 3px;
    margin: 20px 0;
}

/***** | SIGNIN |*****/

/***** | Banner | *****/

.banner-signin,
.banner-main {
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center center;
    height: 100vh;
}

.banner-layer {
    background: rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    color: var(--white);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
    overflow: hidden;
}

.signin .card {
    min-width: 500px;
    border-radius: 5px;
}

@media (max-width: 600px) {
    .signin .card {
        min-width: 350px;
    }
}

.signin img {
    width: 100%;
    height: 60px;
    object-fit: contain;
}

/***** | HEADER |*****/

#header {
    transition: all 0.5s;
    z-index: 997;
    height: 60px;
    background-color: var(--primary);
}

    /***** | Header Welcome Name |*****/

    #header .welcome-name p {
        color: var(--white);
        font-size: 13px;
        font-weight: 500;
    }

    #header .welcome-name span {
        color: var(--secondary);
        font-size: 16px;
        font-weight: 700;
    }

@media (max-width: 576px) {
    #header .welcome-name p,
    #header .welcome-name span {
        display: none;
    }
}

/***** | Header Logo | *****/

#header .university-logo {
    height: 50px;
    margin-left: 20px;
    object-fit: contain;
}

/***** | Notification Icon | *****/

#header .notification-icon {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    background-color: var(--white);
    border: 2px solid var(--secondary);
}

    #header .notification-icon i {
        font-size: 26px;
    }

#header .notification-card {
    height: fit-content;
    width: 380px;
    margin: 10px;
    border-radius: 3px;
    box-shadow: rgba(0, 0, 0, 0) 2px !important;
    cursor: pointer;
    border: 1px solid var(--light-dark);
}

    #header .notification-card span {
        color: var(--light-dark);
    }

    #header .notification-card .notification-date {
        font-size: 13px;
    }

#header .dropdown-menu .badge {
    background-color: var(--primary);
    font-size: 12px;
    font-weight: 400;
}

#header .dropdown-footer u {
    font-size: 13px;
    color: var(--primary);
    padding: 0 0 0 10px;
}

/***** | Header Profile | *****/

#header .profile-pic {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
}

#header .header-nav .nav-profile li span {
    font-size: 14px;
    font-weight: 600;
}

#header .header-nav .dropdown-menu .dropdown-item {
    transition: 0.3s;
    background-color: var(--secondary);
    color: var(--white);
    border-radius: 3px;
    width: fit-content;
    padding: 4px 25px;
}

#header .header-nav .dropdown-menu {
    min-width: max-content !important;
    margin: 4px !important;
}

    #header .header-nav .dropdown-menu i {
        margin-right: 8px;
        font-size: 14px;
        line-height: 0;
    }

#menu-toggle {
    font-size: 34px;
    color: var(--white);
    cursor: pointer;
    display: flex;
}

/***** | SIDEBAR |*****/

/* Initially hide the sidebar and shift the main content */
#sidebar {
    right: 240px; /* Adjust the value to your desired hidden width */
    transition: all 0.3s;
}

#main {
    margin-left: 240px; /* Adjust the value to your desired main content position */
    transition: all 0.3s;
}

#footer {
    right: 0px; /* Adjust the value to your desired hidden width */
    left: 240; /* Set initial left position */
    transition: all 0.3s;
}

/* Show the sidebar and adjust the main content and footer when the 'active' class is added */
#sidebar.active {
    left: -240px;
}

#main.active {
    margin-left: 0;
}

#footer.active {
    right: 0;
    left: 0;
}

.sidebar {
    position: fixed;
    top: 60px;
    left: 0;
    bottom: 0;
    width: 240px;
    z-index: 996;
    overflow-y: auto;
    scrollbar-width: thin;
    transition: transform 0.3s ease;
    background-color: var(--primary);
}

@media (max-width: 1199px) {
    .sidebar.is-closed {
        transform: translateX(-19em);
    }
}

@media (min-width: 1200px) {
    #main,
    #footer {
        margin-left: 240px;
    }

    .header .toggle-sidebar-btn {
        display: none;
    }
}

.sidebar-nav .nav-item {
    margin: 0px 15px 15px 15px;
    background: var(--third);
    border-radius: 3px;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
}

.sidebar-nav .nav-link {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    transition: 0.3;
    padding: 8px 5px 8px 15px;
    border-radius: 3px;
}

    .sidebar-nav .nav-link i {
        font-size: 18px;
        margin-right: 15px;
        color: var(--white);
    }

.sidebar-nav .nav-item :hover {
    background-color: var(--secondary);
}

.sidebar .help,
.version {
    color: var(--secondary);
    font-size: 13px;
    font-weight: 700;
}

/***** | STUDENT OVERVIEW |*****/

.student-overview .card {
    box-shadow: rgba(0, 0, 0, 0.2) 0px !important;
    border: none;
    width: 100%;
    padding: 10px;
}

.student-overview img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
}

@media (max-width: 600px) {
    .student-overview img {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        border: 2px solid var(--secondary);
    }
}

@media (max-width: 600px) {
    .student-overview .card .contact p {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 3px;
    }
}

.student-overview .contact p,
.student-overview .about p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
}

.student-overview .about {
    border-left: 2px solid var(--grey);
    height: 100%;
}

/*****| PAYMENT PAGE |*****/

.payment-page input {
    max-width: 300px;
    height: 35px;
    border: 1px solid var(--light-dark);
}

.payment-page .expire-box {
    max-width: 95px;
}

.payment-page .form-check-input {
    color: var(--dark);
    border: 2px solid;
    height: 16px;
}

.payment-page .atm-card {
    height: 30px;
    width: 40px;
    object-fit: contain;
    border-radius: 0;
}

.payment-page .modal-content {
    min-width: 650px;
}

@media (max-width: 600px) {
    .payment-page .modal-content {
        min-width: 350px;
    }
}

.payment-page .card {
    margin: 0;
}

.fees-details ul li span {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    width: 120px;
    margin-right: 80px;
    text-align: justify;
}

.fees-details ul li {
    font-size: 14px;
    font-weight: 700;
}

.fees-details hr {
    margin: 10px 0px 10px 0px;
}

.fees-details ul li :after {
    content: ":";
    position: absolute;
    right: 0;
}

/***** | DASHBOARD |*****/

/*****| Student OverView |*****/

#dashboard .student-overview input {
    margin-bottom: 5px;
}

#dashboard .student-overview input {
    width: 390px;
    border-radius: 0px !important;
}

@media (max-width: 480px) {
    #dashboard .student-overview input {
        width: 320px;
    }
}

/*****| College News & Upcoming Events |*****/

.college-news img,
.upcoming-events img {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 10px;
    margin-right: 15px;
}

.college-news p:nth-child(1),
.upcoming-events p:nth-child(1) {
    font-size: 13px;
    margin-bottom: 0;
}

.college-news p:nth-child(2),
.upcoming-events p:nth-child(2) {
    margin-bottom: 0;
}

/*****| Exam Application Fees Preview |*****/

.payment-success {
    height: 80px;
    width: 150px;
    object-fit: contain;
}

.payment-slip-summary ul li span {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 600;
    width: 120px;
    margin-right: 40px;
    margin-bottom: 10px;
}

.payment-slip-summary ul li {
    text-align: justify;
    font-size: 14px;
    font-weight: 700;
}

    .payment-slip-summary ul li :after {
        content: ":";
        position: absolute;
        right: 0;
    }

.payment-slip-summary hr {
    margin: 0 0px 15px 0px;
}

.payment-slip .card {
    max-width: 350px;
    max-height: 310px;
    background-color: var(--coordinator-bg);
}

/***** |PROFILE |*****/

.profile .form-label {
    margin-bottom: 5px;
}

.profile .form-control {
    border: 0px;
}

.profile input {
    border-radius: 0;
    width: 350px;
}

@media (max-width: 600px) {
    .profile input {
        width: 300px;
    }
}

/***** | DOWNLOADS |*****/

/*****|Admit Card |*****/

.admit-card img {
    height: 200px;
    width: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.admit-card ul li span {
    display: inline-block;
    position: relative;
    font-size: 14px;
    font-weight: 500;
    width: 120px;
    margin-right: 25px;
}

.admit-card ul li {
    margin-bottom: 8px;
    text-align: justify;
    font-size: 14px;
    font-weight: 700;
}

    .admit-card ul li :after {
        content: ":";
        position: absolute;
        right: 0;
    }

.admit-card .table {
    border-radius: 5px;
    overflow: visible;
}

    .admit-card .table tr td {
        border: 1px solid;
    }

.admit-card .signature img {
    height: 40px;
    width: 120px;
    object-fit: contain;
}

/***** | Term Fees Receipt |*****/

.term-fees-receipt ul li {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
    text-align: justify;
}

    .term-fees-receipt ul li span {
        display: inline-block;
        position: relative;
        font-size: 14px;
        font-weight: 500;
        width: 120px;
        margin-right: 25px;
    }

    .term-fees-receipt ul li :after {
        content: ":";
        position: absolute;
        right: 0;
    }

/***** | NOTIFICATIONS |*****/

.notification .date-badge {
    background-color: var(--primary);
    border-radius: 5px;
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 500;
}

.notification .alert-badge {
    width: 60px;
    height: 23px;
    font-size: 11px;
    font-weight: 500;
    border-radius: 50px;
    padding: 6px;
}

/*****| CONTACT |*****/

.contact .card {
    max-width: 400px;
}

.contact .card-title {
    background-color: var(--primary);
    color: var(--white);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0px;
}

.contact .round-circle {
    height: 60px;
    width: 60px;
    border-radius: 50%;
}

.contact img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid var(--secondary);
}

.contact .details {
    line-height: 25px;
    font-size: 14px;
}

.contact .email {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
}

/***** | HELP |*****/

.help .accordion-button {
    font-size: 16px;
    padding: 10px;
    border-radius: 0 !important;
}

/***** | FOOTER |*****/

#footer {
    position: absolute;
    background-color: var(--footer);
    padding: 5px 5px;
    bottom: 0;
    clear: both;
    position: relative;
}

    #footer p {
        font-size: 13px;
        font-weight: 600;
        margin-bottom: 0;
    }

    #footer .designed {
        text-transform: uppercase;
        background-image: linear-gradient(-225deg, #231557 0%, #44107a 29%, #ff1361 67%, #fff800 100%);
        background-size: auto auto;
        background-clip: border-box;
        background-size: 200% auto;
        color: var(--white);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        animation: textclip 2s linear infinite;
        display: inline-block;
        font-size: 14px;
        font-weight: 600;
    }

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}
