:root {
    --color-title: #9F5A17;
    --color-content: #013222;
    --color-action: #FFAB1E;
    --color-action-dark: #f0a625;
    --color-action-light: #FAC400;
    --color-action-text: #FFFFFF;
    --color-content-background: #E0FEFC;
    --color-content-background-dark: #4ef0ee;
    --color-content-background-light: #F9FFFD;
    --color-dark: #000000;
    --color-offset: #E5E5E5;
    --color-blue: #0034EE;
    --color-dark-gray: #454545;
    --color-gray: #E5E5E5;

    --border-radius-size: 2rem;
    --border-radius-size-sm: 0.65rem;

    --font-family-1: 'Shippori Mincho B1', serif;
    --font-family-2: 'Shippori Mincho B1', serif;
    ;


}

body {
    font-family: var(--font-family-1);
}

.fm-1 {
    font-family: var(--font-family-1);
}

footer div.copyright span {
    position: relative;
    color: var(--color-action-text) !important;
    text-transform: uppercase;
    font-size: 14px !important;
    margin-top: 1rem;
}

footer {
    margin-top: 1rem;
}

.sticky-footer {
    position: sticky;
    bottom: 20px;
}

input.form-control,
textarea.form-control,
select.form-control {
    background-color: transparent !important;
    border-radius: var(--border-radius-size);
    color: var(--color-content) !important;
    border: 1.5px solid var(--color-content) !important;
    font-size: 16px !important;
    padding: 8px 16px !important;
    font-style: italic;
    font-family: var(--font-family-1);
}

.input-label {
    text-align: right;
    padding-right: 15px;
    text-transform: uppercase;
}


.input-with-icon {
    position: relative;
}

.prepend-icon {
    position: absolute;
    top: 6px;
    left: 12px;
    font-size: 20px;
    color: var(--color-content);
}

.prepend-icon+input.form-control {
    padding-left: 40px !important;
}

.append-icon {
    position: absolute;
    top: 6px;
    right: 15px;
    font-size: 20px;
    color: var(--color-content);
}

.input-with-icon input.form-control {
    padding-right: 40px !important;
}

.card-container {
    border-radius: var(--border-radius-size);
    box-shadow: -1px 1px 2px rgba(0, 0, 0, 0.1);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    /* Adjust the blur radius as needed */
    background-color: rgba(183, 247, 247, 0.3);
    /* #B7F7F7 */
}

.login-container {
    max-width: 900px;
    font-family: var(--font-family-1);
}

.btn.btn-primary {
    background-color: var(--color-action) !important;
    box-shadow: -2px 2px 4px rgba(0, 0, 0, 0.3);
    color: var(--color-action-text);
    text-transform: uppercase;
    border-radius: var(--border-radius-size);
    font-family: var(--font-family-2);
    text-shadow: -2px 2px 4px rgba(0, 0, 0, 0.3);
}

.btn.btn-primary:hover {
    color: var(--color-action-text) !important;
}

.login-btn {
    position: relative;
    font-size: larger !important;
}

.login-btn img {
    position: absolute;
    /* Position the image absolutely inside the button */
    top: -27px;
    /* Adjust top position to move the image vertically */
    right: 55px;
    /* Adjust right position to move the image horizontally */
    width: 5rem;
    /* Adjust the width of the image as needed */
}

.register-btn {
    position: relative;
    font-size: larger !important;
}

.register-btn img {
    position: absolute;
    /* Position the image absolutely inside the button */
    top: -27px;
/* Adjust top position to move the image vertically */
    left: -25px;
    /* Adjust right position to move the image horizontally */
    width: 4rem;
    /* Adjust the width of the image as needed */
}

.signin-text {
    font-family: var(--font-family-2);
    color: var(--color-content)
}

#btn-forgot,
#btn-reset {
    text-transform: uppercase;
    cursor: pointer;
}

#btn-forgo
#btn-reset:hover {
    color: var(--color-content) !important
}

.login-logo-container {
    border-radius: var(--border-radius-size);
}

#card-register {
    height: 70vh;
    overflow-y: auto;
}

.col-form-label {
    color: var(--color-content) !important;
}

.custom-control-label {
    color: var(--color-content) !important
}

.form-check-input:hover input~.checkmark {
    background-color: var(--color-content) !important;
    /* Hover color */
}

.form-check-input:checked~.checkmark {
    background-color: var(--color-content) !important;
    /* Checked color */
}

/* Custom styles for radio buttons */
.custom-radio .form-check-input:checked~.form-check-label::before {
    background-color: var(--color-content) !important;
}

.custom-control-input:checked~.custom-control-label::before {
    border-color: var(--color-content) !important;
    background-color: var(--color-content) !important;
}

.sidebar,
.off-canvas-sidebar {
    /* width: 320px !important; */

}

.sidebar .nav {
    width: auto;
    /* padding-left: 2rem;
    padding-right: 2rem; */
}

.sidebar-wrapper {
    /* width: 300px; */
}

.sidebar .nav li>a,
.off-canvas-sidebar .nav li>a {
    color: var(--color-content);
    font-weight: bolder;
    text-transform: uppercase;
}

.sidebar .nav li>a p,
.off-canvas-sidebar .nav li>a p {
    font-size: 0.7rem;
}

.sidebar .nav li.active>a,
.off-canvas-sidebar .nav li.active>a {
    background-color: transparent;
    color: var(--color-content);
    box-shadow: none;
    border: var(--color-action) 2px solid;
    border-radius: var(--border-radius-size);
    width: 90%;
    z-index: 999;
}



.nav li a i.icon {
    background-size: 80%;
    color: var(--color-content) !important;
}

.sidebar .nav i,
.off-canvas-sidebar .nav i {
    width: 40px;
    height: 50px;
    top: -10px;
}

.icon-dashboard {
    background-image: url(/assets/images/sidebar/launch-icon.png) !important;
    background-size: 70% !important;
}

.icon-book {
    background-image: url(/assets/images/sidebar/book-icon.png) !important;
    background-size: 70% !important;
}

.icon-resources {
    background-image: url(/assets/images/sidebar/books-icon.png) !important;
    background-size: 70% !important;
}

.icon-activities {
    background-image: url(/assets/images/sidebar/certificate-icon.png) !important;
}

.icon-video {
    background-image: url(/assets/images/sidebar/video-icon.png) !important;
}

.icon-pencil-line {
    background-image: url(/assets/images/pages/PencilLine.png) !important;
}

.icon-profile {
    background-image: url(/assets/images/sidebar/id-icon.png) !important;
}

.icon-menu {
    background-image: url(/assets/images/sidebar/menu-icon.png) !important;
}

.icon-arrow-left {
    background-image: url(/assets/images/sidebar/ArrowLeft.png) !important;
}

.icon-phone {
    background-image: url(/assets/images/topbar/game_console_front.png) !important;
}

.icon-alarm {
    background-image: url(/assets/images/topbar/clock_front.png) !important;
}

.icon-bell {
    background-image: url(/assets/images/topbar/bell_front.png) !important;
}

.icon-question-mark {
    background-image: url(/assets/images/pages/quiz_question_mark.png) !important;
    background-size: 130% !important;
}

.icon-exclamation-mark {
    background-image: url(/assets/images/pages/quiz_exclamation_mark.png) !important;
    background-size: 130% !important;
}

.icon-trophy {
    background-image: url(/assets/images/pages/trophy.png) !important;
    /* background-size: 100% !important; */
}

.icon-pencil-border {
    background-image: url(/assets/images/sidebar/pencil-border.png) !important;
    background-size: 100%;
    background-position: center;
    height: 5px;
}


footer div.copyright span {
    color: var(--color-dark) !important;
}

.leap-logo {
    background-image: url(/assets/images/sidebar/leap1.png), url(/assets/images/sidebar/leap2.png);
    background-size: 60%, 35%;
    background-repeat: no-repeat, no-repeat;
    background-position: left, left 88% top 10px;
    height: 100%;
}

.leap-logo-top {
    background-image: url(/assets/images/topbar/leap-logo.png);
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: left;
    height: 100%;
}

.page-title {
    font-family: var(--font-family-1);
    color: var(--color-content);
    font-weight: bolder;
}

.topbar-buttons .circle-button {
    display: inline-block;
    height: 50px;
    width: 50px;
    border-radius: var(--border-radius-size);
    background-color: var(--color-offset);
    margin-left: 0.5rem;
    cursor: pointer;
    background-size: 90%;
    background-position: center;
    background-repeat: none;
    position: relative;
}
.timer-display,
#notification-counter {
    position: absolute;
    background: #D00347;
    border-radius: 3rem;
    padding: 0px 3px;
    font-size: 11px;
    color: #fff;
    right: -10px;
    min-width: 1.5rem;
    text-align: center;
    display: none;
}

@media (min-width: 985px) {

    .sidebar .nav li>a p,
    .off-canvas-sidebar .nav li>a p {
        font-size: 0rem;
    }

    .sidebar .nav li>a div,
    .off-canvas-sidebar .nav li>a div {
        position: absolute;
        bottom: 0px;
        left: 0px;
        width: 100%;
        text-align: center;
    }

    .sidebar .nav li.active>a,
    .off-canvas-sidebar .nav li.active>a {
        width: 57%;
    }

    .sidebar .nav li>a,
    .off-canvas-sidebar .nav li>a {
        width: 57%;
        height: 60px;
    }

    .sidebar-menu .sidebar-wrapper ul.nav li:hover a {
        height: 75px;
    }

    .sidebar .nav a,
    .off-canvas-sidebar .nav a {
        left: 20%;
        /* top: 30px; */
    }

    .sidebar-menu .sidebar-wrapper ul.nav li:hover p {
        font-size: 0.5rem !important;
        z-index: 9999 !important;
    }

    /* .sidebar-menu .sidebar-wrapper ul.nav li:hover a{
        left: -10px;
    } */

    .sidebar .nav li.active>a:hover {
        /* width: 90%; */
    }

    .sidebar .nav li>a.menu-icon:hover {
        width: 37%;
        left: 20% !important;
        background-color: transparent !important;
    }

    .sidebar .nav li>a:hover {
        /* left: -10px; */
        background-color: var(--color-action-text) !important;
        border-radius: var(--border-radius-size);
    }

    .nav-background {
        position: absolute;
        width: 100px;
        background-color: var(--color-content-background);
        left: 25%;
        height: 950px;
        border-radius: var(--border-radius-size);
        top: 0px;
        border: var(--color-content-background-dark) 3px solid;
    }

    .sidebar .sidebar-wrapper,
    .off-canvas-sidebar .sidebar-wrapper {
        overflow: hidden !important;
        height: 75vh !important;
    }

    /* Side Drawer CSS */
    .side-drawer {
        position: fixed;
        top: 0;
        left: -500px;
        /* Start offscreen */
        width: 400px;
        height: 100%;
        box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
        transition: left 0.2s ease-in-out;
        background-color: rgba(0, 0, 0, 0);
        padding-left: 2rem;
        z-index: 9999;
    }

    .side-drawer.open {
        left: 0px;
    }

    .side-drawer-blur {
        position: fixed;
        top: 0px;
        background-color: rgba(51, 51, 51, 0.2);
        /* Adding a semi-transparent background color */
        -webkit-backdrop-filter: blur(10px);
        backdrop-filter: blur(10px);
        z-index: 9990;
    }

    .side-drawer-links .nav li.active>a {
        background-color: transparent;
        color: var(--color-content);
        box-shadow: none;
        border: var(--color-action) 2px solid;
        border-radius: var(--border-radius-size);
    }

    .side-drawer-links .nav li {
        width: 85%;
    }

    .side-drawer-links .nav li a {
        display: block;
        color: var(--color-content);
        font-weight: bolder;
        text-transform: uppercase;
        margin: 0px 35px 0;
        text-decoration: none;
        position: relative;
        text-transform: uppercase;
        cursor: pointer;
        font-size: 0.875rem;
        padding: 0.4062rem 1.25rem;
        width: 100%;
        transition: all 300ms ease 0s;
        box-sizing: border-box;
    }

    .side-drawer-links .nav li a i.icon {
        display: inline-block;
        height: 40px;
        width: 40px;
    }

    .side-drawer-links .nav li a p {
        position: absolute;
        top: 20px;
        left: 100px;
    }

    .side-drawer-links .nav li:hover {
        background-color: transparent;
    }

    #hideSideDrawer i {
        display: block;
        height: 50px;
        width: 50px;
        cursor: pointer;
    }

    #hideSideDrawer {
        background-color: transparent;
        border: none;

    }

    .side-drawer .side-drawer-container {
        background-color: var(--color-content-background);
        height: 100%;
    }

    .side-drawer .side-drawer-container .side-drawer-links {
        position: relative;
        top: 100px;
    }

    .side-drawer .side-drawer-container .side-drawer-links .nav {
        overflow-y: auto;
        /* margin-top: 170px; */
        height: calc(100vh - 400px);
    }

    #hiddenSideBar{
        margin-top: 170px;
    }

    .profile-container {
        position: absolute;
        width: 100%;
        top: 80px;
    }

    .s-profile-name {
        font-size: 2rem;
        font-family: var(--font-family-1);
        font-weight: bolder;
        margin-top: 2rem;
        margin-right: 150px;
        /* margin-left: 5rem; */
    }

    .s-profile-pic-bg {
        position: absolute;
        right: -100px;
        top: -80px;
        width: 220px;
        height: 220px;
        background-image: url(/assets/images/sidebar/profile-bg.png) !important;
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
    }

    .s-profile-pic {
        position: absolute;
        left: -10px;
        top: 5px;
        width: 215px;
        height: 215px;
        background-image: url(/assets/images/sidebar/sample-pic.png) !important;
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
        border-radius: 100%;
        border: #FFFFFF 1px solid;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.4);
    }

    .s-profile-pic-cloud {
        position: absolute;
        right: -10px;
        bottom: -135px;
        width: 180px;
        height: 180px;
        background-image: url(/assets/images/sidebar/cloud.png) !important;
        background-size: 100%;
        background-repeat: no-repeat;
        background-position: center;
    }

    .side-drawer-logo {
        position: absolute;
        width: 99%;
        height: 140px;
        left: 0px;
        background-color: rgba(255, 255, 255, 0.8);
    }

    .side-drawer-logo .icon-pencil-border {
        position: absolute;
        bottom: -3px;
        width: 65%;
    }

    .s-menu-icon {
        width: 25%;
        background-size: 45%;
        background-repeat: no-repeat;
        background-position: top 45% left 70%;
    }

    .side-drawer-logo .leap-logo {
        width: 73%;
    }

    .page-title-border {
        border-right: var(--color-content) 3px solid;
    }

    .acc-prog-container {
        background-size: contain;
    }


}

/* end of large screen css */

.card {
    border-radius: .7rem;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.4);
}

.todo-title {
    color: var(--color-action-text);
    background-color: #CFAA7E;
    border-radius: var(--border-radius-size);
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    border: #c5ad8f solid 4px;
    font-family: var(--font-family-1);
    font-weight: 800;
    font-size: 20px;
}

.star-design {
    position: absolute;
    height: 40px;
    width: calc(100% - 30px);
}

.star-left {
    position: absolute;
    background-image: url(/assets/images/pages/star-left.png) !important;
    background-size: contain;
    /* float: inline-start; */
    left: 10px;
    height: 100%;
    width: 40px;
}

.star-right {
    position: absolute;
    background-image: url(/assets/images/pages/star-right.png) !important;
    background-size: contain;
    /* float: inline-end; */
    right: 10px;
    height: 100%;
    width: 40px;
}

.fc-toolbar-title {
    font-size: 1.2rem !important;
}

.fc .fc-button-primary {
    background-color: transparent !important;
    color: black !important;
    border-color: grey !important;
    border-radius: 0.65rem !important;
    /* transform: rotate(90deg); */
    padding: 3px !important;
    padding-bottom: 5px !important;
}

.fc .fc-button-primary:hover {
    color: black;
}

.fc .fc-button .fc-icon {
    font-size: 1.5rem !important;
}

.fc-theme-standard td,
.fc-theme-standard th {
    border: none !important;
}

.fc-theme-standard .fc-scrollgrid {
    border: none !important;
}

/* Center day numbers in FullCalendar version 5 */
.fc .fc-daygrid-day-top {
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    font-size: 14px;
}

.fc .fc-toolbar.fc-header-toolbar {
    padding-bottom: 10px;
    border-bottom: var(--color-offset) 1px dashed;
}

.fc .fc-daygrid-day.fc-day-today {
    background-color: transparent !important;

}

.fc .fc-daygrid-day.fc-day-today .fc-daygrid-day-top {
    border: var(--color-blue) solid 0.15rem !important;
    border-radius: var(--border-radius-size-sm) !important;
    color: var(--color-blue) !important;
    /* font-weight: bolder; */
}

.custom-card-title {
    font-family: var(--font-family-1);
    color: var(--color-title);
    font-weight: 800;
}

.count-d-day {
    position: relative;
    background-color: var(--color-action-light);
    padding-bottom: 20px;
    margin-top: 20px;
    border: #FBEA00 3px solid;
    border-top: none;
    border-bottom-left-radius: var(--border-radius-size-sm);
    border-bottom-right-radius: var(--border-radius-size-sm);
}

.remaining-day .styled-letter {
    font-family: var(--font-family-1);
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #E6E4E5;
    color: #CE0045;
    margin-right: 10px;
    border-radius: 5px;
    font-weight: bolder;
    font-size: 5rem;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}

.countdown-pin {
    position: absolute;
    top: -15px;
    height: 30px;
    width: 10px;
    background-color: #E6E4E5;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.ranking-card {
    background-color: var(--color-action-light);
}

.ranking-title {
    border-radius: 10px;
    background-color: #E6E4E5;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
    padding: 10px;
    border: outset 3px white;
}

.top-users li img {
    display: inline-block;
    border-radius: 100%;
    border: ridge white 3px;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.3)
}

.top-users li .top-information {
    display: inline-block;
    margin-left: 1rem;
    height: 100%;
}

.top-name {
    font-weight: 800;
    font-size: 18px;
    font-family: var(--font-family-1);

}

.top-school {
    font-size: 16px;
}

.acc-prog-container {
    background-image: url('/assets/images/pages/account-bg.png');
    background-position: top;
    background-repeat: no-repeat;
    /* height: 75vh; */
    padding-top: 20px;
}

.acc-prog-image {
    position: relative;
    background-color: white;
    margin: 0px auto;
    height: 223px;
    width: 223px;
    border-radius: 100%;
    box-shadow: 0px 7px 7px rgba(0, 0, 0, 0.6);
    /* border: white solid 4px; */
    border-bottom: none;
}

.acc-prog-image div {
    position: relative;
    top: 5px;
    margin: 0px auto;
    height: 220px;
    width: 220px;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 100%;
}

.acc-prog-image img {
    position: absolute;
    bottom: -90px;
    right: -30px;
    height: 150px;
}

.acc-prog-name h2 {
    font-family: var(--font-family-1);
    font-weight: 800;
}

.small-text-custom {
    font-size: 12px;
    font-weight: 500;
}

.big-small-text {
    margin-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

.rocket-ship img {
    width: 20rem;
}

.ts-header {
    position: relative;
    border-bottom: dashed 1px var(--color-offset);
}

.ts-header-text {
    display: inline-block;
}

.ts-header-img {
    position: relative;
    display: inline-block;
}

.ts-header-img img {
    position: absolute;
    top: -110px;
    left: -60px;
    max-width: 120px;
}

.ts-date {
    font-size: 12px;
    font-weight: 500;
}

.ts-title {
    font-size: 20px;
    font-weight: bold;
}

.ts-add-button {
    position: absolute;
    border: solid 1px var(--color-offset);
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    display: inline-block;
    border-radius: 10px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 2px;
    padding-top: 1px;
    right: 10px;
    bottom: 20px;
}



.ts-add-caret {
    border: none;
    background-color: transparent;
    cursor: pointer;
    padding: 0;
    display: inline-block;
    border-radius: 10px;
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 2px;
    padding-top: 1px;
    right: 10px;
    bottom: 20px;
}

.ts-add-caret img {
    width: 25px;
    height: 25px;
}

.ts-add-caret:first-child {
    float: left;
}

.ts-add-caret:last-child {
    float: right;
}

.ts-body {
    min-height: calc(100% - 100px);
}

.vb-title {
    position: relative;
}

.vb-title span {
    position: relative;
    display: inline-block;
    font-family: var(--font-family-1);
    font-size: 26px;
    font-weight: 800;
    background-color: var(--color-action);
    color: white;
    border-radius: var(--border-radius-size);
    border: var(--color-action) ridge 3px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
    padding-left: 60px;
    padding-right: 60px;
}

.vb-title img {
    position: absolute;
    top: -50px;
}

.vb-image {
    width: 100%;
    min-height: 100px;
    box-shadow: 0px 3px 2px rgba(0, 0, 0, 0.4);
    background-color: white;
    padding: 20px;
    padding-top: 10px;
    margin-top: 10px;
}

.vb-pin {
    width: 25px;
    height: 25px;
    background-image: url('/assets/images/pages/Pin.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 100%;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
}

.vb-image-content {
    width: 100%;
    height: 150px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    margin-top: 20px;
}

.jc-add-caret {
    position: absolute;
    border: none;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    padding: 0;
    display: inline-block;
    border-radius: 100%;
    padding: 10px;
    /* right: 10px; */
    bottom: 30%;
}

.jc-add-caret img {
    width: 50px;
    height: 50px;
}

.jc-add-caret:first-child {
    transform: rotate(180deg);
    left: -20px;
}

.jc-add-caret:last-child {
    right: -20px;
}

.jc-plant {
    background-image: url('/assets/images/pages/plant.png');
    background-position: left bottom;
    background-size: contain;
    background-repeat: no-repeat;
    /* height: calc(100% + 20px); */
}

.vl-card {
    border-radius: 2rem;
    border: var(--color-content-background) 3px solid;
    border-left: none;
    background-color: var(--color-content-background-light);
}

.vl-card-title {
    color: var(--color-content);
}

.vl-card-title .icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-position: center;
    background-size: content;
    background-repeat: no-repeat;
}

.pen-border {
    background-image: url('/assets/images/pages/border-pen.png');
    height: 7px;
    background-position: left;
    background-size: contain;
    background-repeat: no-repeat;
}

.vl-card-box {
    color: var(--color-content);
    background-color: transparent !important;
    background: none !important;
    text-align: left;
}

.vl-card-box:hover {
    color: var(--color-content);
}

.vl-card-box.active {
    color: var(--color-action);
    background-color: transparent !important;
    background: none !important;
    /* border-left: 5px solid var(--color-action-light); */
}

.vl-card-box span {
    font-size: 1rem;
}

.vl-videos {
    height: 58vh;
    overflow-y: auto;
}

.vl-video {
    cursor: pointer;
}

.vl-thumbnail {
    width: 100%;
    height: 140px;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: var(--border-radius-size-sm);
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
    padding-left: 10px;
    padding-right: 10px;
}

.vl-details span {
    color: var(--color-dark-gray);
}

.vl-thumbnail-icon {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    color: white;
    text-align: center;
    left: calc(50% - 25px);
    top: calc(50% - 25px);
}

.vl-thumbnail-icon span {
    font-size: 3rem;
    margin-top: 2px;
}

.vl-progress {
    position: absolute;
    max-width: 100%;
    height: 3px;
    background-color: #CD0044;
    bottom: 0px;
    border-radius: 20px;
}

.muse-video-player {

    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.4)
}

.muse-video-player,
.video-container {
    border-radius: var(--border-radius-size);
}

.vl-footer-buttons div button {
    border: none;

}

.vl-footer-buttons div button span {
    font-weight: bold;
    margin-left: 0.5rem;
}

.vl-footer-buttons div button .vlfb-icon {
    height: 50px;
    width: 50px;
    background-position: center;
    background-size: 60%;
    background-repeat: no-repeat;
    border-radius: 50%;
    background-color: var(--color-gray);
}

#vl-handouts .vlfb-icon {
    background-image: url('/assets/images/pages/Newspaper.png');
}

#vl-takenotes .vlfb-icon {
    background-image: url('/assets/images/pages/PencilSimpleLine.png');
}

#vl-comments .vlfb-icon {
    background-image: url('/assets/images/pages/Question.png');
}

#notes-container {
    width: 100vw;
}

.popup {
    display: none;
    position: absolute;
    z-index: 9999;
    /* top: -55vh; */
    /* left: calc(-100vw + 280px); */
    bottom: -50px;
    right: 0px;
    width: 100%;
}

.start-quiz {
    font-weight: bolder;
    font-size: 1.5rem;
    text-transform: capitalize !important;
    padding-top: 2px;
    padding-left: 30px;
    padding-right: 30px;
    border: solid 3px var(--color-action-dark);
}

#btn-proceed {
    text-shadow: none;
    font-size: 2rem;
    text-transform: capitalize !important;
    padding-left: 30px;
    padding-right: 30px;
    border: solid 3px var(--color-action-dark);
    border-radius: 18px;
    font-weight: 800;
}




/* resources */
.resources-card {
    border-radius: var(--border-radius-size);
    border: none;
    /* box-shadow: 1px 1px 2px rgba(0, 0, 0, 0); */
    -webkit-box-shadow: inset -8px 8px 10px -9px rgb(0, 240, 238);
    -moz-box-shadow: inset -8px 8px 10px -9px rgba(0, 240, 238, 1);
    box-shadow: inset -8px 8px 10px -9px rgba(0, 240, 238, 1);
    background-color: var(--color-content-background);
    background-color: rgb(243, 255, 255);
    padding-left: 0px;
}

.resources-title {
    text-align: center;
    padding-top: 20px;
    padding-bottom: 30px;
    background-color: rgb(213, 254, 250);
    border-top-left-radius: var(--border-radius-size);
    border-top-right-radius: var(--border-radius-size);
    margin-top: 4px;
}

.resources-title .resources-nav {
    font-family: var(--font-family-1) !important;
    text-transform: uppercase;
    font-weight: 800;
    font-size: 2rem;
    color: #003423;
}

.resources-card .modal-body .card-folder,
.resources-card .modal-body .card-handouts {
    border-radius: .7rem;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0);
    padding: 0 5px;
    background-color: transparent;
    border: none;
}

.resources-card .modal-body .card-folder .card-body div,
.resources-card .modal-body .card-handouts small {
    color: #003423;
    font-weight: 800;
    font-size: 1rem;
}

.resources-card .modal-body .card-handouts.active .pen-border {
    display: block;
    background-position: center;
}

.resources-card .modal-body .card-handouts .pen-border {
    display: none;
}

.resources-content-card {
    -webkit-box-shadow: -1px 5px 5px -1px rgba(0, 0, 0, 1);
    -moz-box-shadow: -1px 5px 5px -1px rgba(0, 0, 0, 1);
    box-shadow: -1px 5px 5px -1px rgba(0, 0, 0, 0.3);
    border: none;
    background-color: #F3F5F4;
    background-image: url('/assets/images/pages/logo-back-drop.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}

.card-2 {
    border: none;
    box-shadow: 1px -4px 5px 0px rgba(250, 206, 233, .5) inset;
    -webkit-box-shadow: 1px -4px 5px 0px rgba(250, 206, 233, .5) inset;
    -moz-box-shadow: 1px -4px 5px 0px rgba(250, 206, 233, .5) inset;
    background-color: #F4F2F5;
}

.profile-outer {
    /* position: absolute; */
    height: 104px;
    width: 154px;

    border-radius: 50%;

}

.profile-inner {
    position: absolute;
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: red;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    top: 0px;
    right: 10px;
    border: 4px white solid;
    box-shadow: 0px 10px 13px -8px rgba(0, 0, 0, 0.5);
}

.q-account-profile {
    background-color: var(--color-content-background);
    border-top: var(--color-content-background-dark) 4px solid;
    padding: 5px;
    border-radius: var(--border-radius-size);
    /* border-top-right-radius: 20%;
    border-bottom-right-radius: 20%; */
    width: 100%;
}

.q-account-text {
    width: calc(100% - 150px);
}


thead th {
    font-family: var(--font-family-1);
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    font-weight: bolder !important;
    color: var(--color-action) !important;
    font-size: 1.2rem !important;
}

#notification-list {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 25px;
    border-top-right-radius: 0px;
    right: 50%;
}

.notification-list::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: rgba(255, 255, 255, .3);
    filter: blur(25px); */
    /* Adjust the blur amount as needed */
    z-index: -1;
}

.noti-title {
    position: relative;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.noti-title span {

    font-size: 1.2rem !important;
    font-weight: bolder;
    text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5) !important;
    border: #9E5B77 solid 2px;
    padding-left: 20px;
    padding-right: 20px;
}

.noti-title img {
    position: absolute;
    top: -15px;
    left: 7px;
}

#close-notification {
    position: absolute;
    font-size: 20px;
    cursor: pointer;
    top: -10px;
    right: 0px;
}

.fab-button {
    top: 80px;
    width: 500px;
    right: 200px;
}

.popovertext {
    border-radius: 5px;
    border-radius: 15px !important;
    background-color: rgba(255, 255, 255, .15);   
}

#pomodoro-container::before {
    border-radius: 15px !important;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 466px;
    background-color: rgba(0, 0, 0, .1);  
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    /* Adjust the blur amount as needed */
    z-index: -1;
    display: block;
}

#pomodoro-timer {
    left: 0;
    margin: 0 auto;
    width: 350px;
    height: 300px;
}

#pomodoro-timer>svg:nth-child(1) {
    /* display: block; */
    display: none !important;
    
}

#pomodoro-timer:before{
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(/assets/images/pages/tomato.png) !important;
    display: block;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

#pomodoro-timer .progressbar-text {
    color: rgba(255, 255, 255, 0.8) !important;
    font-family: var(--font-family-1);
    font-weight: bold;
    font-size: 3.5rem;
}

#pomodoro-clock-task {
    border-radius: 0px;
    border: #73C6BB 2px solid !important;
    width: 300px !important;
    margin: 0 auto;
    text-align: center;
}
#pomodoro-clock-task::placeholder {
    font-style: normal;
    color: black !important;
    text-align: center;
}

.timer-options label{
    font-size: 14px;
    color: #001912;
}

.pomodoro-top-button{
    position: absolute;
    width: 100%;
}

.pomodoro-top-button button{
    background-color: transparent;
}

#pomodoro-question{
    position: relative;
    border: black 2px solid;
    color: black;
    border-radius: 50%;
    font-size: 18px;
    font-weight: bolder;
    width: 30px;
    height: 30px;
}

#pomodoro-question:before{
    content: '';
    position: absolute;
    height: 50px;
    width: 50px;
    top: -11px;
    left: -12.5px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.1) !important;
    display: block;
}

#pomodoro-close{
    position: relative;
    border: #AC8C5B 2px solid;
    color: #AC8C5B;
    font-size: 18px;
    font-weight: bolder;
    width: 30px;
    height: 30px;
}

.pomodoro-guide{
    position: absolute;
    left: -500px;
}
@media (min-width: 985px) {
    .popup {
        width: 400px;
        right: 0px;
        bottom: 0px;
    }

    #notes-container {
        width: 500px;
    }
}