/* Theme Setup Start */
:root {
    --primaryColor: #5d87ff;
    --primaryLightColor: #b3c7ff;
    --primaryRadius: 7px;
    --primaryColorHover: black;
    --headerLinks: #2a3547;
    --primaryHeading: #2a3547;
    --bodyText: #565656;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    /* min-height: 400vh; */
    background-color: transparent;
    min-height: 100vh;
    /* background-image: radial-gradient(at bottom left, #f5f5f5, transparent), radial-gradient(at right, #f7f7f7, transparent), radial-gradient(at bottom right, #f8f8f8 30%, transparent); */
    background-image: url('../images/bg-2.jpg');
    background-attachment: fixed;
    background-size: cover;
    color: #565656;
    font-size: 14px;
    background-position: center;
    position: relative;
}
body::before {
    content: '';
    height: 100%;
    inset: 0 0;
    position: absolute;
    z-index: -1;
    pointer-events: none;
    background-color: rgba(255,255,255,0.4);
    backdrop-filter: blur(15px) brightness(1.35);
}

@media only screen and (max-width: 575px) {
    body
    {
        font-size: 12px;
    }
}



button
{
    border: none;
    outline: none !important;
}

ul,
li {
    list-style: none;
}

a {
    color: var(--primaryColor);
}

a:hover {
    text-decoration: none;
}

.linkBox {
    text-align: right;
    color: var(--primaryColor) !important;
    text-transform: capitalize;
    width: 100%;
    display: block;
}

.whiteText {
    color: white !important;
}

ul,
li {
    list-style: none;
    margin: 0;
}

img
{
    max-width: 100%;
}

::-webkit-scrollbar
{
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-thumb
{
    width: 8px;
    height: 8px;
    background-color: var(--primaryLightColor);
}
::-webkit-scrollbar-track
{
    background-color: #f5f5f5;
}

/* Theme Setup End */



/* For Ease Start */

.fw100 
{
    font-weight: 100 !important;
}
.fw200 
{
    font-weight: 200 !important;
}
.fw300 
{
    font-weight: 300 !important;
}
.fw400 
{
    font-weight: 400 !important;
}
.fw500 
{
    font-weight: 500 !important;
}
.fw600 
{
    font-weight: 600 !important;
}
.fw700 
{
    font-weight: 700 !important;
}
.fw800 
{
    font-weight: 800 !important;
}
.fw900 
{
    font-weight: 900 !important;
}
.fwBold
{
    font-weight: bold !important;
}



.font10
{
    font-size: 10px !important;
}
.font11
{
    font-size: 11px !important;
}
.font12
{
    font-size: 12px !important;
}
.font13
{
    font-size: 13px !important;
}
.font14
{
    font-size: 14px !important;
}
.font15
{
    font-size: 15px !important;
}
.font16
{
    font-size: 16px !important;
}
.font17
{
    font-size: 17px !important;
}
.font18
{
    font-size: 18px !important;
}

.primaryText
{
    color: var(--primaryColor) !important;
}

/* For Ease End */



/* Misc Start */

.noDataFound
{
    width: 250px;
    max-width: 100%;
    margin: 0 auto;
    display: block;
}

/* Misc End */




/* Buttons Start */

.btn
{
    padding: 4px 12px;
    border: none;
    font-size: inherit;
    box-shadow: none !important;
    outline: none !important;
}
.btn-primary {
    background-color: var(--primaryColor);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primaryColorHover);
}

.btn-primary.bordered
{
    border:1px solid var(--primaryColor);
    background-color: transparent;
    color: var(--primaryColor);
}
.btn-primary.bordered .fa
{
    transition: inherit;
    color: var(--primaryColor);    
}
.btn-primary.bordered.active,
.btn-primary.bordered:hover
{
    color: white;
    background-color: #5d87ff !important;
    border: 1px solid transparent;
}
.btn-primary.bordered.active .fa,
.btn-primary.bordered:hover .fa
{
    color: white;
}
/* Buttons End */




/* Form Control Start */

.form-control
{
    box-shadow: none !important;
    outline: none !important;
}

/* Form Control End */






/* Modal Start */
.modal
{
    padding: 40px 12px;
}

.modal-dialog
{
    margin-top: 0;
    margin-bottom: 0;
}

.modal-content,
.modal-header,
.modal-footer
{
    border: none;
}
.modal-content {
    box-shadow: 0 10px 20px -4px rgba(0,0,0,0.16);
}

.modal-header 
{
    padding: 7px 32px 7px 12px;
}
.modal-title {
    font-weight: 600;
    font-size: 18px;
}
.modal-header .close {
    padding: 6px 9px;
    font-size: 16px;
    background: red;
    opacity: 1;
    color: white;
    margin: 0;
    position: absolute;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    top: 0;
    right: 0;
    border-top-right-radius: inherit;
    z-index: 2;
}
.modal-body {
    padding: 7px 12px 7px;
    font-size: 14px;
}
.modal-body p{
    opacity: 0.65;
}
.modal-body p:not(:last-child)
{
    margin-bottom: 7px;
}
.modal-body p:last-child
{
    margin-bottom: 0;
}

.modal-footer
{
    padding: 7px 12px 12px;
    justify-content: flex-start;
}
.modal-footer>*
{
    margin: 0;
}

.modal-backdrop.show {
    opacity: .5;
    background: #ffffff36;
    opacity: 1;
    backdrop-filter: blur(10px);
}

@media only screen and (min-width: 576px)
{
    .modal-dialog
    {
        max-width: 100%;
        width: 750px;
    }
}

/* Modal End */










/* Header Start */
.header {
    top: 0;
    position: sticky;
    z-index: 101;
    width: 100%;
    font-size: 14px;
    color: white;
    transition: 0.3s;
    color: var(--headerLinks);
    background-color: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

.header div[class*="col"] {
    position: initial;
}

.header .row.align-items-stretch {
    display: flex;
    align-items: stretch;
}
.headerSchoolDetails
{
    width: 100%;
    display: flex;
    align-items: center;
}

.headerSchoolNameContainer
{
    width: calc(100% - 115px);
    font-weight: bold;
    font-size: 18px;
}
.headerSchoolName
{
    color: var(--headerLinks);
    transition: 0.5s;
}
.headerSchoolName:hover
{
    color: var(--primaryColor);
}

@media only screen and (max-width: 1366px) and (min-width: 1141px)
{
    .headerSchoolNameContainer
    {
        font-size: 13px;
    }
    .header
    {
        font-size: 12px;
    }
}
@media only screen and (max-width: 575px)
{
    .headerSchoolNameContainer
    {
        display: none;
    }
}

.logoContainer {
    padding: 4px 0;
    width: 115px;
    height: 65px;
    max-width: 100%;
    position: relative;
}


.logoLink
{
    height: 100%;
    display: block;
    position: relative;
}
.logoContainer img {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    object-fit: contain;
    position: absolute;
    display: block;
}

.navigationLeft {
    display: flex;
    align-items: center;
}

.linksContainer {
    height: 100%;
    width: 100%;
    transition: 0.3s;
}

.navigationLinks {
    list-style: none;
    width: 100%;
    margin: 0;
    height: 100%;
    display: flex;
    align-items: stretch;
    gap: 4px;
    justify-content: flex-end;
}

.navigationLinkContainer {
    padding: 5px 0px;
    display: flex;
    align-items: center;
}

.navigationLinkContainer a {
    font-size: inherit;
    position: relative;
}

.navigationLinkContainer > a {
    color: inherit;
    padding: 6px 10px;
    position: relative;
    transition: 0.5s;
}

/* .navigationLinkContainer > a:not(.noLineBelow)::before
{
    content: '';
    position: absolute;
    bottom: 7px;
    left: 10px;
    height: 2px;
    width: 0;
    background-color: #206c6d;
    transition: width 0.33s linear;
    transform-origin: right;
}
.navigationLinkContainer:hover > a::before
{
    width: calc(100% - 20px);
    
} */
.navigationMenuOpen {
    display: none;
}


.haveDropDown,
.haveSubDropDown {
    position: relative;
}

.dropDown {
    font-weight: 400;
    top: 100%;
    left: 0;
    z-index: 1;
    width: 180px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    position: absolute;
    /* color: black; */
    background-color: white;
    transform: translateY(20px);
    /* border-radius: 4px; */
    /* padding: 5px 0; */
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
    pointer-events: none;
}

.haveSubDropDown .dropDown.left {
    right: 100%;
    left: unset;
    transform: translateX(-20px);
}

.haveDropDown:hover>.dropDown,
.haveSubDropDown:hover>.dropDown {
    opacity: 1;
    visibility: visible;
    pointer-events: initial;
    transform: translateY(0);
}

@media only screen and (min-width: 1140px)
{
    .dropDown
    {
        left: unset;
        right: -12px;
        width: 200px;
    }
    .dropDownContainer {
        max-height: 70vh;
        overflow-y: auto;
    }
}

.mobileNav {
    display: none;
}

.profileIconContainer
{
    position: relative;
}
.profileIconBox {
    padding: 7px;
}
.profileIcon {
    height: 38px;
    width: 38px;
    aspect-ratio: 1;
    border-radius: 70px;
    /* overflow: hidden; */
    position: relative;
    cursor: pointer;
    border: 3px solid white; 
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}
.hasNotification .profileIcon::before {
    content: "";
    height: 10px;
    width: 10px;
    bottom: calc(100% - 8px);
    left: calc(100% - 8px);
    border-radius: 10px;
    position: absolute;
    z-index: 1;
    box-shadow: inset 1px 1px 2px rgba(255,255,255,0.5), 1px 1px rgba(0,0,0,0.2);
    pointer-events: none;
    background: linear-gradient(45deg, #ff0000, #ff6a00);
}
.profileIcon img {
    height: 100%;
    width: 100%;
    inset: 0 0;
    border-radius: inherit;
    object-fit: cover;
    pointer-events: none;
    position: absolute;
}
.hasNotificationCountBox
{
    position: relative;
}
.hasNotificationCount {
    position: absolute;
    top: 0;
    right: 12px;
    font-size: 8px;
    transform: translateY(-50%);
    border-radius: 30px;
    background: linear-gradient(45deg, red, orange);
    height: 18px;
    width: 18px;
    align-items: center;
    justify-content: center;
    line-height: 1;
    color: white;
    font-weight: 600;
    display: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}
.hasNotification .hasNotificationCount
{
    display: flex;
}
.profileOptionsBox {
    position: relative;
}

.profileDropdown {
    width: 200px;
    position: absolute;
    right: 0;
    top: 100%;
    background: white;
    padding: 8px;
    transition: 0.3s opacity, 0.3s transform;
    border-radius: 8px;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    box-shadow: 0 0 20px rgb(93 135 255 / 6%);
}

.profileOptionsContainer:hover .profileDropdown
{
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.profileLinkItem a{
    padding: 6px 12px;
    display: block;
    border-radius: 4px;
    transition: 0.5s;
    margin-bottom: 5px;
    color: var(--headerLinks);
}
.logOutBtnBox
{
    /* padding: 7px 3px 6px; */
}
.logOutBtnBox .logOutBtn
{
    border-radius: 4px;
    padding: 4px 8px;
    color: var(--primaryColor);
    text-align: center;
    vertical-align: middle;
    margin: 0;
    border: 1px solid var(--primaryColor);
}
.logOutBtnBox .logOutBtn i
{
    font-size: 12px;
    margin-left: 2px;
}
.profileLinkItem a:hover,
.logOutBtnBox .logOutBtn:hover
{
    color: white;
    background-color: var(--primaryColor);
}

.navigationLinkContainer > a {
    display: flex;
    align-items: center;
    min-width: max-content;
}
.navigationLinkContainer > a i
{
    margin-right: 5px;
    display: none;
}
.haveDropDown .dropDownLinkBox > a img,
.navigationLinkContainer > a img
{
    height: 24px;
    width: 24px;
    object-fit: contain;
    margin-right: 5px;
}


@media only screen and (min-width: 1140px)
{
    .navigationLinkContainer > a {
        border-radius: 4px;
    }
    .navigationLinkContainer.current > a,
    .navigationLinkContainer:hover > a {
        color: var(--primaryColor);
    }
    .navigationLinkContainer > a::before {
        content: "";
        inset: 0;
        position: absolute;
        border-radius: inherit;
        z-index: -1;
        opacity: 0;
        transition: 0.5s;
        background: var(--primaryColor);
    }
    .navigationLinkContainer.current > a::before,
    .navigationLinkContainer:hover > a::before {
        opacity: 0.15;
    }

    .haveSubDropDown:hover > a
    {
        color: white;
        background-color: var(--primaryColor);
    }
    .haveSubDropDown .dropDown {
        top: 0;
        left: 100%;
        transform: translateX(20px);
    }
    .navigationLinkContainer.current > a
    {
        /* color: white; */
        /* background-color: var(--primaryColor); */
    }
    /*
    .navigationLinkContainer > a i
    {
        width: 24px;
        aspect-ratio: 1;
        font-size: 12px;
        margin-right: 7px;
        border-radius: 50%;
        display: flex;
        color: white;
        align-items: center;
        justify-content: center;
        background: var(--primaryColor);
    }
    */
    .haveDropDown > a::after
    {
        content: '\f107';
        margin-left: 4px;
        font-size: 12px;
        color: var(--primaryColor);
        font-family: 'fontAwesome';
    }

}


.dropDown a {
    font: inherit;
    color: inherit;
    transition: 0.3s;
}

.dropDown a:hover {
    color: white;
    background-color: var(--primaryColor);
}

.megaMenuRow {
    border-top: 2px solid #206c6d;
    background-color: white;
    padding: 12px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.16), 2px 2px 7px rgba(0, 0, 0, 0.2);
}

.dropDownContainer .dropDownLinkBox.hasSubMegaMenu>a {
    font-weight: bold;
}


.dropDownContainer .dropDownLinkBox:last-child {
    border: none;
}

.dropDownLinkBox a {
    display: flex;
    padding: 10px 12px;
}

.goBackBtn {
    display: none;
    background-color: #efefef;
}

@media screen and (max-width: 1140px) {
    .header {
        color: black;
    }

    .navigationMenuOpen {
        height: 32px;
        width: 30px;
        display: flex;
        align-items: center;
        font-size: 14px;
        justify-content: center;
        color: var(--primaryColor);
        cursor: pointer;
        border-radius: 3px;
        background-color: white;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    }
    .linksContainer {
        height: 100vh;
        top: 0;
        left: 0;
        width: 100%;
        position: fixed;
        pointer-events: none;
        opacity: 0;
        z-index: 1;
        backdrop-filter: blur(5px);
        background-color: rgba(0, 0, 0, 0.16);
    }

    .linksContainer.active {
        pointer-events: initial;
        opacity: 1;
    }

    .linksContainer div[class*="col"] {
        padding: 0;
    }

    .navigationLinkContainer a {
        transition: 0.5s;
        position: relative;
    }

    .navigationLinkContainer:hover>a {
        color: white;
        background-color: var(--primaryColor);
    }

    .navigationLinks {
        /* padding-top: 30px; */
        width: 80%;
        font-size: 12px;
        max-width: 280px;
        position: relative;
        justify-content: flex-start;
        flex-direction: column;
        background-color: white;
        transition: 0.5s;
        height: 100%;
        /* padding-top: 20px; */
        overflow-y: auto;
        transform: translateX(-100%);
    }

    .linksContainer.active .navigationLinks {
        transform: translateX(0);
        display: block;
    }

    .navigationProfile {
        display: block;
    }

    .mobileNav {
        display: block;
        background: #f9f9f9;
    }

    .dropDownContainer {
        margin-bottom: 0px;
    }

    .goBackBtn {
        height: 39px;
        width: 100%;
        top: 0;
        left: 0;
        transition: 0.3s;
        align-items: center;
        cursor: pointer;
        z-index: 1;
        background-color: #efefef;
        display: none;
        position: fixed;
        font-size: 16px;
        font-weight: bold;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow-x: hidden;
    }

    .hasSubMegaMenu .goBackBtn {
        z-index: 1;
    }

    .goBackBtn i {
        font-size: 13px;
        margin: 0 7px 0 10px;
    }

    .mobileNav .closeBtn {
        height: 39px;
        width: 32px;
        top: 0;
        right: 0;
        display: flex;
        transition: 0.3s;
        align-items: center;
        justify-content: center;
        position: absolute;
        cursor: pointer;
        z-index: 100;
        background-color: transparent;
    }

    .fixedNavigationPhoneText {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 80%;
        max-width: 280px;
        z-index: 1;
        display: block;
        line-height: 1.5;
        padding: 7px 12px;
        font-weight: 500;
        background-color: white;
    }

    .fixedPhoneLink {
        font-size: 1.3em;
        font-weight: bold;
    }

    .haveDropDown.active .goBackBtn,
    .haveSubDropDown.active .goBackBtn {
        display: flex;
    }

    .goBackBtn i {
        pointer-events: none;
    }

    .mobileNav .closeBtn:hover {
        color: white;
        background-color: #f00;
    }

    .navigationLinkContainer {
        padding: 0;
        position: relative;
        flex: initial;
    }

    .navigationLinkContainer a {
        padding: 9px 16px;
        display: block;
        width: 100%;
        font-size: 14px;
    }

    navigationLinkContainer .navigationLinkContainer:hover>a {
        color: white;
        background-color: var(--primaryColor);
    }

    .navigationLinkContainer a.viewMoreBtn {
        margin: 7px auto;
        text-align: center;
        width: calc(100% - 24px);
        color: #206c6d;
        padding: 7px 12px;
        border-radius: 6px;
        transition: 0.33s linear;
        border: 1px solid #206c6d;
    }

    .navigationLinkContainer a.viewMoreBtn:hover {
        background-color: #206c6d;
        color: white;
    }

    .navigationLinkContainer .haveDropDown a {
        padding: 7px 35px 7px 12px;
        display: block;
        width: 100%;
    }

    .navigationLinkContainer>a::before {
        display: none;
    }

    .dropDownLinkBox {
        position: relative;
    }

    .dropDownLinkBox:hover>a {
        color: white;
        background-color: var(--primaryColor);
    }

    .dropDownLinkBox.haveSubDropDown::before, .navigationLinkContainer.haveDropDown::before {
        content: "\f105";
        right: 0;
        padding-right: 15px;
        height: 100%;
        width: 100%;
        display: flex;
        position: absolute;
        font-family: 'fontAwesome';
        justify-content: flex-end;
        align-items: center;
        z-index: 2;
        font-size: 14px;
        color: var(--primaryColor);
        font-weight: bold;
        cursor: pointer;
    }

    .dropDownLinkBox.haveSubDropDown:hover::before,
    .navigationLinkContainer.haveDropDown:hover::before {
        color: white;
    }

    .dropDown {
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        color: #000;
        font-weight: 400;
        position: fixed;
        transition: 0.5s;
        z-index: 2;
        opacity: 1;
        visibility: visible;
        pointer-events: initial;
        padding-top: 39px;
        transform: translateY(0) translateX(-107%);
    }

    .dropDown .container {
        width: 100%;
    }

    .haveDropDown:hover>.dropDown,
    .haveSubDropDown:hover>.dropDown {
        transform: translateY(0) translateX(-107%);
    }

    .subMegaMenu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: white;
        z-index: 2;
        transition: 0.5s;
        padding-top: 50px;
        transform: translateY(0) translateX(-107%);
    }

    .hasSubMegaMenu.active .subMegaMenu {
        transform: translateY(0) translateX(0%);
    }

    .subMegaMenu .dropDownLinkBox {
        border: none;
    }

    .haveDropDown.active>.dropDown,
    .haveSubDropDown.active>.dropDown {
        transform: translateX(0);
    }

    .dropDown>div:first-child {
        height: 100vh;
        overflow-y: auto;
    }

    .dropDown>div::-webkit-scrollbar {
        width: 8px;
        height: 8px;
        background-color: #fff;
    }

    .dropDown>div::-webkit-scrollbar-thumb {
        background-color: #dfdfdf;
    }

    .megaMenuRow {
        padding: 0;
        padding-top: 50px;
        border: none;
        display: flex;
        height: 100vh;
        overflow-y: auto;
        flex-direction: column;
        align-content: flex-start;
    }

    .dropDownContainer .dropDownLinkBox.hasSubMegaMenu>a {
        font-weight: normal;
    }

    .modalBtn {
        display: none;
    }


    
    .profileOptionsContainer {
        margin-right: 7px;
    }

}

@media only screen and (max-width: 575px) {
    .profileOptionsBox,
    .profileIconContainer {
        position: static;
    }
    .profileOptionsContainer {
        margin-right: 7px;
        height: 100%;
        display: flex;
        align-items: center;
    }
    .profileDropdown
    {
        width: 250px;
        max-width: 100%;
        /* border-radius: 0 0 7px 7px; */
    }
}

/* Header End */


/* SideBar Start */

.dashboardSideBar
{
    position: relative;
}

.studentProfileContainer
{
    margin-bottom: 24px;
}

.studentCard
{
    padding: 12px;
    border-radius: var(--primaryRadius);
    background-color: white;
    box-shadow: rgb(0 0 0 / 20%) 0px 0px 2px 0px, rgb(0 0 0 / 10%) 0px 12px 24px -4px;
}
.studentProfile {
    aspect-ratio: 3.7/4;
    overflow: hidden;
    width: 100%;
    position: relative;
    margin-bottom: 12px;
    border-radius: 4px;
}
.studentProfile img
{
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
}
.studentDetailCard {
    width: 100%;
}
.studentDetailCard:not(:last-child)
{
    padding-bottom: 7px;
}

.studentDetailLabel
{
    font-size: 12px;
    font-weight: 700;
    color: black;
}
.studentDetailCard .btn
{
    width: 100%;
    font-size: 14px;
    display: block;
}


.feeInfoCard {
    font-size: 14px;
}
.feeInfoCard:not(:last-child) {
    padding-bottom: 14px;
}
.feeInfoCardBox {   
    box-shadow: 0 0 5px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
}
.feeInfoHeader
{
    background-color: #fcfcfc;
    cursor: pointer;
    transition: 0.3s;
}
.feeInfoHeader:hover
{
    background-color: var(--primaryColor);
    cursor: pointer;
    color: white;
}
.feeInfoHeader:hover .feeInfoBalBox,
.feeInfoHeader:hover .feeInfoBalBox.paid
{
    color: white;
}
.feeInfoHeaderBox {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4px 12px;
    cursor: pointer;
    font-weight: 700;
    flex-wrap: wrap;
}
.feeInfoBalBox {
    /* font-weight: 600; */
    color: red;
    transition: 0.3s;
}
.feeInfoBalBox.paid {
    color: green;
}

.feeInfoListBox
{
    padding: 6px 12px;
    background-color: white;
}

.feeInfoListCardBox {
    display: flex;
    align-items: center;
    padding: 0 0 2px;
    justify-content: space-between;
}

.feeInfoListCard:not(:last-child) {
    padding-bottom: 4px;
}
.feeInfoContent
{
    font-size: 12px;
    display: none;
}

.feeInfoListCard:not(:last-child) .feeInfoListCardBox {
    border-bottom: 1px dotted #dfdfdf;
}
.feeInfoListCard.balance
{
    color: red;
}
.feeInfoListCard.paid
{
    color: green;
}
.totalFeeCard .feeInfoHeader
{
    background-color: var(--primaryColor);
    cursor: pointer;
    color: white;
}
.totalFeeCard .feeInfoBalBox
{
    color: white;
}

.totalFeeCard .feeInfoHeaderBox
{
    padding: 7px 12px;
    font-size: 16px;
}

@media only screen and (max-width: 991px)
{
    
    .dashboardSideBar
    {
        display: none;
    }
    .dashboard .dashboardSideBar
    {
        display: block;
    }
    .studentCard
    {
        width: 100%;
        display: flex;
        gap: 10px;
        align-items: center;
    }
    .studentProfileBox
    {
        width: 150px;
        max-width: 100%;
    }
    .studentProfile {
        margin: 0;
    }
    .studentDeatilBox
    {
        width: calc(100% - 160px);
    }
    .studentDetail {
        display: grid;
        gap: 6px 12px;
        max-width: 100%;
        align-items: center;
        justify-items: start;
        grid-template-columns: auto auto;
    }
}
@media only screen and (max-width: 575px)
{
    .studentCard
    {
        flex-direction: column;
    }
    .studentDeatilBox
    {
        width: 100%;
    }
    .studentDetailLabel {
        font-size: 11px;
    }
    .studentDetail .studentDetailCard:last-child
    {
        grid-column-start: 1;
        grid-column-end: 3;
    }
    .studentDetailCard .btn {
        width: 100%;
        max-width: 180px;
        margin: auto;
    }
}
@media only screen and (max-width: 350px)
{
    .studentDetail {
        grid-template-columns: auto;
        gap: 4px 0;
    }
    .studentDetail .studentDetailCard:last-child
    {
        grid-column-start: 1;
        grid-column-end: 2;
    }
}

/* SideBar End */


/* Inner Page Start */

.mainPageContainer {
    padding: 24px 0px 0;
    min-height: 90vh;
}

.sectionContainer
{
    height: 100%;
    padding-bottom: 26px;
}
.fullHeight
{
    height: 100%;
}
.fullHeight .sectionBody {
    height: calc(100% - 44px);
}
.fullHeight .sectionContentBox,
.fullHeight .sectionContent
{
    height: 100%;
}
.sectionCard {
    height: 100%;
    background: linear-gradient(180deg, white, #ffffffbd);
    padding: 20px;
    backdrop-filter: blur(10px);
    border-radius: var(--primaryRadius);
    box-shadow: rgb(0 0 0 / 20%) 0px 0px 2px 0px, rgb(0 0 0 / 10%) 0px 12px 24px -4px;
}
.sectionHeader {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px 16px;
    justify-content: space-between;
    margin-bottom: 14px;
}
.sectionTitleBox
{
    display: flex;
    gap: 12px;
    color: var(--primaryHeading);
    align-items: center;
}
.sectionIcon
{
    width: 32px;
    height: 32px;
    font-size: 22px;
    line-height: 1;
    display: flex;
    color: var(--primaryColor);
    align-items: center;
    justify-content: center;
}
.sectionTitle
{
    font-size: 20px;
    font-weight: 600;
}
.sectionSubTitle
{
    font-size: 18px;
    font-weight: 600;
}

@media only screen and (max-width: 1140px)
{
    .mainPageContainer
    {
        padding: 24px 0;
        min-height: 90vh;
    }
    .sectionContainer
    {
        padding-bottom: 15px;
    }
    
}
@media only screen and (max-width: 991px)
{
    .sectionTitle {
        font-size: 18px;
    }
    .sectionSubTitle {
        font-size: 16px;
    }
}
@media only screen and (max-width: 991px)
{
    .sectionCard.p-3 {
        padding: 10px !important;
    }
    .sectionHeader {
        margin-bottom: 7px;
    }
    .sectionTitleBox {
        gap: 6px;
    }
    .sectionIcon {
        width: 28px;
        height: 28px;
        font-size: 18px;
    }
    .sectionTitle {        
        font-size: 16px;
    }
}
    
/* Inner Page End */



/* Inner Page Filter Start */

.filterContainer
{
    width: 100%;
    display: none;
}
.filterCards
{
    display: flex;
    gap: 8px 12px;
    font-size: 12px;
    flex-wrap: wrap;
    align-items: center;
}
.filterCardBox .form-group
{
    display: flex;
    gap: 5px;
    margin: 0;
    align-items: center;
}
.filterCardBox .form-label
{
    margin: 0;
    white-space: nowrap;
}
.filterCardBox .form-control
{
    font-size: inherit;
}
/* Inner Page Filter End */



/* Notices Start */

.fullHeight .notices
{
    height: 100%;
}
.noticesBox
{
    max-height: 450px;
    overflow-y: auto;
    padding: 6px;
}
.fullHeight .noticesBox
{
    height: calc(85vh - 28px);
    max-height: unset;
}
.noticesCard {
    color: inherit;
    display: block;
}
.noticesCard:not(:last-child) {
    padding-bottom: 20px;
}

.noticesCard:hover {
    color: inherit;
}
.noticesCard:not(:last-child)
{
}
.noticesCardBox {
    padding: 12px 12px 18px;
    background-color: white;
    box-shadow: 0 0 5px rgb(0 0 0 / 7%);
    border-radius: 7px;
    position: relative;
}
.noticeTitleBox
{
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    transition: 0.3s;
    cursor: pointer;
}
.noticesCard:hover .noticeTitleBox
{
    color: var(--primaryColor);
}
.noticeDescBox
{
    font-size: 14px;
}
.noticeDesc {
    cursor: pointer;
    opacity: 0.65;
    margin-bottom: 7px;
    overflow-x: hidden;
    text-overflow: ellipsis;
}
.noticeDateBox {
    font-size: 12px;
    position: absolute;
    width: max-content;
    max-width: 100%;
}
.noticeDateBox {
    font-size: 10px;
    position: absolute;
    width: max-content;
    max-width: 100%;
    bottom: 2px;
    right: 4px;
    color: var(--primaryColor);
    font-weight: bold;
}

.noticeAttachmentCards {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.noticeAttachment {
    display: flex;
    height: 28px;
    width: 28px;
    background: var(--primaryColor);
    color: white;
    transition: 0.3s;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.noticeAttachment:hover {
    background: black;
    color: white;
}

@media only screen and (max-width: 575px) {
    .noticeDesc
    {
        font-size: 12px;
    }
}

/* Notices End */



/* Table Work Start */
.table-responsive .table
{
    background-color: white;
    color: var(--bodyText);
}

.table-responsive:has( .table)
{
    border-radius: 7px;
    overflow: auto;
    border: 1px solid #dee2e6;
}
.table
{
    margin: 0;
    text-align: center;
}
.table thead tr th
{
    border: 1px solid #dee2e6;
    color: white;
    text-align: center;
    background-color: var(--primaryColor);
}
.table tr td
{
    border: 1px solid #dee2e6;
    /* padding: 20px 12px; */
    font-weight: 500;
}


.table tbody tr th:first-child
{
    background-color: #fafbff;
}

.table tr th, .table tr td {
    padding: 4px 8px;
    vertical-align: middle;
}
.table tr th
{
    padding: 12px 8px;
}

.table thead tr:first-child th,
.table tbody tr:first-child th
{
    border-top: 0;
}
.table tbody tr:last-child td
{
    border-bottom: 0;
}
.table tr th:first-child,
.table tr td:first-child
{
    border-left: 0;
}

.table tr:first-child th,
.table tr:first-child td
{
    border-top: 0;
}
.table tr:last-child th,
.table tr:last-child td
{
    border-bottom: 0;
}

.table tr th:last-child,
.table tr td:last-child
{
    border-right: 0;
}

.table.customTablePadded th,
.table.customTablePadded td
{
    padding: 10px 12px;
}

.table2.attendanceTable thead tr th,
.table2 thead tr th
{
    background: transparent;
    color: black;
}
.table2 thead
{
    background: linear-gradient(181deg, #fffdfa, #ffedcc);
}

/* Table Work End */



/* Attendance Start */

.table-responsive:has( .attendanceTable)
{
    border-radius: 7px;
    overflow: auto;
    border: 1px solid #dee2e6;
}
.attendanceTable
{
    margin: 0;
    text-align: center;
}
.attendanceTable thead tr th
{
    border: 1px solid #dee2e6;
    color: white;
    text-align: center;
    background-color: var(--primaryColor);
}
.attendanceTable tr td
{
    border: 1px solid #dee2e6;
    padding: 20px 12px;
    font-weight: 600;
}
.attendanceTable thead tr:first-child th
{
    border-top: 0;
}
.attendanceTable tbody tr:last-child td
{
    border-bottom: 0;
}
.attendanceTable tr th:first-child,
.attendanceTable tr td:first-child
{
    border-left: 0;
}
.attendanceTable tr th:last-child,
.attendanceTable tr td:last-child
{
    border-right: 0;
}

.p .attendanceNotationsCardColor,
.present {
    background-color: honeydew;
    background-color: #f5fff5;
    position: relative;
}
.a .attendanceNotationsCardColor,
.absent {
    background-color: #fff5f5;
    position: relative;
}
.hf .attendanceNotationsCardColor,
.halfday
{
    background-color: #fff8eb;
    position: relative;
}
.sun .attendanceNotationsCardColor,
.sunday
{
    background-color: #f0f4ff;
    position: relative;
}
.hol .attendanceNotationsCardColor,
.holiday
{
    background-color: #f7e5ff;
    position: relative;
}
.nu .attendanceNotationsCardColor
{
    background-color: white;
}

.halfday::after,
.absent::after,
.sunday::after,
.holiday::after,
.present::after {
    bottom: 2px;
    left: 2px;
    font-size: 12px;
    /* height: 18px; */
    /* width: 18px; */
    /* color: white; */
    border-radius: 50%;
    position: absolute;
    line-height: 1;
    display: flex;
    font-weight: 600;
    align-items: center;
    justify-content: center;
}
.p .attendanceNotationsCardColor::after,
.present::after {
    content: 'P';
    color: green;
}
.a .attendanceNotationsCardColor::after,
.absent::after {
    content: 'AB';
    color: red;
}
.hf .attendanceNotationsCardColor::after,
.halfday::after
{
    content: 'HF';
    color: orange;
}
.sun .attendanceNotationsCardColor::after,
.sunday::after
{
    content: 'Sun';
    color: var(--primaryColor);
}
.hol .attendanceNotationsCardColor::after,
.holiday::after
{
    content: 'HL';
    color: #a900ff;
}
.attendanceNotationsContainer
{
    margin-top: 8px;
    font-size: 12px;
}
.attendanceNotationsCardContainer
{
    display: flex;
    gap: 8px 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.attendanceNotationsCardBox
{
    display: flex;
    gap: 4px;
    align-items: center;
}
.attendanceNotationsCardColor
{
    height: 28px;
    width: 28px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    /* height: 15px; */
    /* width: 15px; */
    border-radius: 3px;
}
.nu .attendanceNotationsCardColor
{
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
}

@media only screen and (max-width: 575px) {
    .attendanceTable
    {
        font-size: 14px;
    }
    .attendanceTable thead tr th,
    .attendanceTable tr td {
        padding: 16px 7px;
    }
}

/* Attendance End */



/* Activity Calendar Start */

.calendarPill {
    display: block;
    background-color: var(--primaryColor);
    margin: 4px 0;
    border-radius: 3px;
    color: white;
    font-weight: 700;
    font-size: 12px;
    padding: 3px;
}

/* Activity Calendar End */





/* Custom Pills Start */

.customTabPills
{
    justify-content: flex-end;
    gap: 8px 12px;
    position: relative;
    margin: 0;
}
.customTabPills .nav-link
{
    padding: 5px 12px;
    background-color: white;
    box-shadow:  0 0 5px rgba(0,0,0,0.1);
}
.customTabPills .nav-link.active
{
    background: var(--primaryColor);
}

/* Custom Pills End */











/* Teacher & Student Card Start */

.profileCard
{
    padding: 12px;
    display: block;
    color: inherit;
}
.profileCard:hover
{
    color: inherit;
}
.profileCardBox {
    text-align: center;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 0 5px rgb(0 0 0 / 7%);
}

.profileImage
{
    width: 100%;
    aspect-ratio: 51/59;
    overflow: hidden;
    border-radius: 4px;
    position: relative;
    margin-bottom: 8px;
}

.profileImage img
{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
    top: 0;
    left: 0;
    position: absolute;
}


.profileCard:hover .profileImage img
{
    transform: scale(1.05);
}

.profileName
{
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s;
}
.profileName:hover
{
    color: var(--primaryColor);
}
.profileDesc
{
    font-size: 12px;
}


/* Teacher & Student Card End*/











/* Footer Start */

.copyrightText {
    padding: 6px 12px;
    background: var(--primaryColor);
    text-align: center;
    font-size: 12px;
    color: white;
    font-weight: bold;
}

/* Footer End */












/* Login Page Start */

.formPageContainer {
    min-height: 100vh;
    display: flex;
    padding-bottom: 30px;
    align-items: center;
    justify-content: center;
}
.formPageBox
{
    width: max-content;
    max-width: 100%;
}
.formBox {
    width: 550px;
    padding: 20px 18px;
    max-width: 100%;
    text-align: center;
    background: linear-gradient(#ffffff, #ffffff91);
    backdrop-filter: blur(25px);
    border: 1px solid white;
    box-shadow: 0 4px 25px -4px rgba(0,0,0,0.15);
    border-radius: calc(var(--primaryRadius) + 12px);
}

.formInputCard
{
    position: relative;
    filter: drop-shadow(2px 2px 10px rgba(0,0,0,0.07));
}
.formContent .form-label
{
    display: block;
    margin: 0;
    font-size: 12px;
    text-align: left;
    /* border: 1px solid #dfdfdf; */
    border-bottom: none;
    width: max-content;
    padding: 4px 8px;
    line-height: 1;
    position: relative;
    z-index: 2;
    font-weight: bold;
    border-radius: 4px 4px 0 0;
    background-color: white;
    transform: translateY(1px);
}
.formContent .form-control
{
    box-shadow: none;
    border: none;
    border-radius: 0;
    position: relative;
    z-index: 1;
    height: unset;
    color: inherit;
    padding: 12px 16px;
    border-radius: 0 4px 4px;
    /* border: 1px solid #dfdfdf; */
}
.passwordField .form-control
{
    padding-right: 36px;
}
.formContent .form-control::placeholder,
.formContent select.form-control
{
    color: #acacac;
}
.formContent select.form-control option:not(:first-child)
{
    color: var(--headerLinks);
}
.formContent select.form-control.valid
{
    color: inherit;
}
.logoBox {
    width: 220px;
    max-width: 100%;
    margin: auto;
    margin-bottom: 12px;
}
.formTitleBox {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}


.passwordEyeContainer {
    position: absolute;
    bottom: 6px;
    right: 6px;
    z-index: 1;
    height: 36px;
    width: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--primaryRadius);
    aspect-ratio: 1;
    background: white;
    box-shadow: 0 0 2px rgba(0,0,0,0.2);
    font-size: 18px;
    /* color: black; */
    cursor: pointer;
    transition: 0.3s;
}
.passwordEyeContainer:hover {
    color: white;
    background-color: var(--primaryColor);
}   

.forgetPassword
{
    color: #969696;
    text-align: right;
    font-size: 14px;
    display: block;
    transition: 0.3s;
}
.forgetPassword:hover
{
    text-decoration: underline;
    color: var(--primaryColor);
}

.formSubmitBtn
{
    margin-top: 16px;
    padding: 10px 32px;
    font-weight: 600;
    font-size: 16px;
}


/* Login Page End */



/* Student Profile Start */
.profileInfoTitle {
    font-size: 20px;
    font-weight: 700;
    margin: 14px 0 10px;
    padding: 5px 15px;
    border-radius: 4px;
    background: linear-gradient(166deg, #fffbf5, #ffe2ae);
}
.profileInfoCardTile
{
    padding-bottom: 12px;
}
.profileInfoCardTileBox {
    padding: 7px 0;
    display: flex;
    gap: 0px 8px;
    flex-wrap: wrap;
    align-items: center;
}
.profileInfoCardTileTitle {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
    padding-left: 8px;
}
.profileInfoCardTileTitle::first-letter{
    color: var(--primaryColor);
}
.profileInfoCardTileTitle::after {
    content: ":";
    margin-left: 4px;
}
.profileInfoCardTileData {
    min-height: 2rem;
    font-size: 16px;
    flex-grow: 1;
    padding: 4px;
    /* background: white; */
    color: var(--primaryHeading);
    border-bottom: 2px dotted #dfdfdf;
    /* box-shadow: 0 1px 4px -3px var(--primaryColor); */
}

/* Student Profile End */


/* Timetable Page Start */

.timetableSubject
{
    color: var(--primaryColor);
    font-weight: bold;
}
.timetableTeacher
{
    font-size: 90%;
    color: var(--primaryHeading);
}

/* Timetable Page End */



/* Loading Start */

.loadingContainer
{
    /* width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    background: rgba(255,255,255,0.8); */
    display: inline;
    margin: 0 5px;
    vertical-align: middle;
}
.loadingCards
{
    /* width: 75px; */
    display: inline-flex;
    align-items: center;
    justify-content: space-evenly;
}
.loadingCard
{
    width: 32px;
    height: 32px;
    border-top: 4px solid var(--primaryColor);
    border-right: 4px solid var(--primaryColor);
    border-left: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-radius: 50%;
    background: transparent;
    animation: loading 1s linear infinite;
}


@keyframes loading
{
    to
    {
        transform: rotate(360deg);
    }
}




/* Loading End */


/* Message Popup Start */

.messagePpopupContainer
{
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    position: fixed;
    display: none;
    backdrop-filter: blur(10px);
    background-color: rgba(255,255,255,0.85);
}
.messagePopupBox
{
    padding: 32px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    overflow-y: auto;
}
.messagePopup
{
    width: 350px;
    padding: 24px 12px 18px;
    max-width: 100%;
    text-align: center;
    position: relative;
    background-color: white;
    border-radius: var(--primaryRadius) 0 var(--primaryRadius) var(--primaryRadius);
    box-shadow: 0 0 4px rgba(0,0,0,0.1);
}
.messagePopupIcon
{
    font-size: 34px;
    height: 50px;
    width: 50px;
    line-height: 1;
    color: white;
    display: none;
    border-radius: var(--primaryRadius);
    align-items: center;
    justify-content: center;
    margin: 4px auto 12px;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.35);
    background-color: red;
}
.successIcon
{
    background-image: linear-gradient(135deg,lime, green);
}
.warningIcon
{
    background-image: linear-gradient(135deg, yellow, orange);
}
.failIcon
{
    background-image: linear-gradient(135deg, orange, red);
}
.messagePopupText
{
    font-size: 16px;
}

.messageSuccess .successIcon,
.messageWarning .warningIcon,
.messageFail .failIcon
{
    display: flex;
}

.messagePopupClose
{
    bottom: 100%;
    right: 7px;
    /* width: 35px; */
    padding: 2px 12px;
    position: absolute;
    color: white;
    transition: 0.3s;
    border-radius: 3px 3px 0 0 ;
    background-color: red;
    cursor: pointer;
}
.messagePopupClose:hover
{
    background-color: black;
}
/* Message Popup End */





/* Birthday Popup Start */
.birthdayCard .modal-dialog {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}
.birthdayCardContainer::before {
    content: "";
    position: fixed;
    height: 100vh;
    width: 100vw;
    top: 0;
    left: 0;
    transition: 0.5s;
    transition-delay: 0.5s;
    opacity: 0;
    /* background: #00000038; */
    z-index: -1;
    background-image: url('../images/celebration.gif');
    /* transform: scale(0); */
    background-size: cover;
    background-repeat: no-repeat;
    filter: blur(4px);
}
.show .birthdayCardContainer::before {
    opacity: 1;
    /* transform: scale(1); */
}
.studentImageContainer {
    position: absolute;
    bottom: 28%;
    height: 25%;
    left: 17%;
    aspect-ratio: 1;
    overflow: hidden;
    border: 4px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,0,0,0.2), inset 2px 2px 12px rgba(255,255,255,0.8);
}
.studentNameContainer {
    font-size: 22px;
    position: absolute;
    top: 75%;
    left: 6.5%;
    text-align: center;
    width: 40%;
    font-weight: bold;
}
.studentNameContainer::before,
.studentNameContainer::after {
    content: '';
    position: absolute;
    background: var(--primaryColor);
    bottom: 0;
    left: 50%;
}
.studentNameContainer::before
{
    height: 8px;
    width: 8px;
    transform: translate(-50%, 13px) rotate(45deg);
}
.studentNameContainer::after {
    height: 2px;
    width: 35px;
    transform: translate(-50%, 10px);
}
.studentName::first-letter
{
    color: var(--primaryColor);
    font-size: 120%;
}

@media only screen and (max-width: 575px)
{
    .studentNameContainer {
        font-size: 16px;
    }
}

@media only screen and (max-width: 400px)
{
    .studentNameContainer {
        font-size: 14px;
    }
    .studentNameContainer::before
    {
        height: 4px;
        width: 4px;
        transform: translate(-50%, 11.7px) rotate(45deg);
    }
    .studentNameContainer::after {
        height: 1px;
        width: 24px;
    }
    
}

@media only screen and (max-width: 300px)
{
    .studentNameContainer {
        font-size: 12px;
    }
}


/* Birthday Popup End */


/* Iframe On Pages Start */

iframe
{
    transition: 0.1s;
    min-height: 100%;
    width: 100%;
}

.hRestricted iframe {
    max-height: 79vh;
}

@media only screen and (max-width: 991px)
{
    iframe
    {
        min-height: 80vh;
    }
    .hRestricted iframe {
        max-height: unset;
        min-height: 90vh;
    }
}

/* Iframe On Pages End */

/* Video Modal Start */
.modal-body:has( .video-container)
{
    border-radius: inherit;
    padding: 8px !important;
}
.video-container
{
    border-radius: inherit;
    position: relative;
}
iframe.videoFrame {
    max-height: 100%;
    min-height: unset;
    height: 100%;
    border: none;
    border-radius: inherit;
}
/* Video Modal End */