html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--poppins) !important;
    font-size: 14px;
    font-weight: 500;
    background: var(--grey) !important;
    overflow-x: hidden;
    margin: 0px;
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
input,
button,
a,
li {
    font-family: var(--poppins) !important;
    -webkit-font-smoothing: antialiased;
    font-size: 14px;
    font-weight: 500;
}

ul {
    padding: 0;
    margin: 0;
    padding-left: 0;
}

ul li {
    list-style: none;
}

button {
    outline: none;
}

a,
a:hover,
a:active,
a:visited,
a:focus {
    text-decoration: none !important;
    transition: all .25s ease-in-out;
}

:root {
    --poppins: 'Poppins', sans-serif;
    --lato: 'Lato', sans-serif;

    --light: #fff;
    --blue: #01498f;
    --light-blue: #CFE8FF;
    --grey: #eee;
    --dark-grey: #AAAAAA;
    --dark: #342E37;
    --red: #DB504A;
    --yellow: #FFCE26;
    --light-yellow: #FFF2C6;
    --orange: #FD7238;
    --light-orange: #FFE0D3;
}

/* ************************************* CSC DASHBOARD SECTION CSS */

.cscdashboard-section .cscdashboard-leftside-bar img {
    margin: 0 auto;
    display: block;
    margin-bottom: 1em;
    width: 40%;
}

.cscdashboard-section .cscdashboard-leftside-bar {
    background: #f5f7f9;
    padding: 20px;
    border-right: 1px solid #eeeeee;
    height: 100vh;
    position: fixed;
    width: 16.66666667%;
}

.cscdashboard-section .cscdashboard-leftside-bar .tab {
    overflow: hidden;
}

.cscdashboard-section .cscdashboard-leftside-bar .tab button {
    background-color: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    border-radius: 10px;
    font-weight: 600;
    padding: 16px 20px;
    transition: 0.3s;
    font-size: 14px;
    display: flex;
    width: 100%;
    text-align: left;
    line-height: normal;
    align-items: center;
    color: #2b2b2b;
}

.cscdashboard-section .cscdashboard-leftside-bar .tab button.active {
    background-color: #1c213b;
    color: var(--light);
}

.cscdashboard-section .cscdashboard-leftside-bar .tab button i {
    font-size: 15px;
    margin-right: 10px;
}

.cscdashboard-section .cscdashboard-leftside-bar .tabcontent {
    display: none;
    padding: 6px 12px;
    border: 1px solid #ccc;
    border-top: none;
    -webkit-animation: fadeEffect 1s;
    animation: fadeEffect 1s;
}

/* Fade in tabs */
@-webkit-keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.cscdashboard-section .getpremium-plan-box {
    background: var(--light);
    margin-top: 50px;
    padding-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
}

.cscdashboard-section .getpremium-plan-box img {
    width: 40%;
    margin: 0 auto -40px;
    position: relative;
    top: -53px;
}

.cscdashboard-section .getpremium-plan-box h3 {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.cscdashboard-section .getpremium-plan-box p {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    margin: 0;
    color: #636363;
    line-height: 18px;
    padding: 4px 0 10px;
}

.cscdashboard-section .getpremium-plan-box button {
    margin: 0 auto;
    display: block;
    background: transparent;
    border: none;
    outline: none;
}

.cscdashboard-section .getpremium-plan-box button a {
    padding: 6px 20px;
    background: #1b253b;
    border-radius: 4px;
    color: var(--light);
}

.cscdashboard-header h2 {
    display: flex;
    align-items: center;
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    color: #000;
}

.cscdashboard-header h2 img {
    width: 10%;
    margin-left: 10px;
}

.cscdashboard-header h3 {
    margin: 0;
    font-size: 14px;
    padding-top: 10px;
    color: #777777;
    font-weight: 600;
}

.cscdashboard-header .cscdashboard-header-ul li {
    display: inline-block;
    margin-left: 20px;
}

.cscdashboard-header .cscdashboard-header-ul {
    display: flex;
    text-align: center;
    justify-content: end;
    margin: 0;
}

.cscdashboard-header .cscdashboard-header-ul .notification-bell button {
    background: transparent;
    border: none;
    padding: 0 0 0 0;
    font-size: 24px;
    border-radius: 4px;
    color: #1b253b;
    line-height: normal;
}

.cscdashboard-header .cscdashboard-header-ul .notification-bell .logout {
    display: block;
    line-height: normal;
    font-weight: bold;
    font-size: 10px;
}

.cscdashboard-header .cscdashboard-header-ul .notification-bell button i {
    color: #2d659c;
}

.cscdashboard-header .cscdashboard-header-ul .notification-bell button span {
    background: #ff0101;
    padding: 5px;
    border-radius: 50%;
    position: absolute;
    margin: 0 12px;
}

.cscdashboard-header .cscdashboard-header-ul .exemplar-btn button {
    background: transparent;
    border: none;
    padding: 0;
}

.cscdashboard-header .cscdashboard-header-ul .exemplar-btn button a {
    background: #1b253b;
    padding: 8px 12px;
    border-radius: 4px;
    margin-left: 10px;
    color: var(--light);
    display: inline-block;
    font-weight: 600;
}

.cscdashboard-header .cscdashboard-header-ul .ncert-btn button {
    background: transparent;
    border: none;
    padding: 10px 0;
}

.cscdashboard-header .cscdashboard-header-ul .ncert-btn button a {
    background: #f5f7f9;
    padding: 8px 12px;
    border-radius: 4px;
    margin-left: 10px;
    color: #1b253b;
    border: 1px solid #1b253b;
    font-weight: 600;
    font-size: 12px;
}

.cscdashboard-myplan-box {
    padding: 20px 14px;
    margin-top: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, #e2e8ff 18.54%, #bacfff 116.25%);
    display: flex;
    justify-content: space-between;
    height: 110px;
    align-items: center;
}

.rightside-header img {
    border-radius: 50%;
    width: 60%;
    min-width: 60%;
    max-width: 60%;
    margin: 0 auto;
    display: block;
    height: 160px;
    border: 6px solid #959595;
    padding: 2px;
    object-fit: cover;
    object-position: top;
}

.cscdashboard-myplan-box h5 {
    margin: 0;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.cscdashboard-myplan-box h5 .amount-span {
    background: #1b253bd6;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--light);
    padding: 4px 8px;
    line-height: revert;
    border-radius: 4px;
    border: 1px solid #1b253b;
    margin: 0;
    margin-top: 10px;
}

.cscdashboard-myplan-box h5 .date-span {
    font-size: 12px;
    font-weight: 600;
    color: #f04e1b;
    padding: 10px 0 0;
    display: block;
    margin-left: 10px;
}

.cscdashboard-myplan-box h2 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    line-height: 18px;
}

.cscdashboard-myplan-box ul {
    margin-top: 10px;
    padding-left: 20px;
}

.cscdashboard-myplan-box ul li {
    list-style: disc;
    color: #464646;
    font-size: 13px;
}

.cscdashboard-myplan-box ul li span {
    color: #000;
    font-weight: 600;
}

.cscdashboard-myplan-box button {
    border: none;
    font-size: 12px;
    background: #3781c7;
    color: var(--light);
    padding: 4px 14px;
    border-radius: 4px;
    font-weight: 600;
}

/***exams page***/
.cscexam-myplan-box {
    padding: 20px 14px;
    margin-top: 10px;
    border-radius: 10px;
    background: linear-gradient(90deg, #e2e8ff 18.54%, #bacfff 116.25%);
    display: block;
    justify-content: space-between;
}

.cscexam-myplan-box h5 {
    margin: 0;
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.cscexam-myplan-box h5 .amount-span {
    background: #3b465a;
    font-size: 14px;
    font-weight: 600;
    color: var(--light);
    padding: 4px 8px;
    border-radius: 4px;
    border: 1px solid #1b253b;
    margin: 0;
}

.cscexam-myplan-box h5 .date-span {
    font-size: 12px;
    font-weight: 600;
    color: #f04e1b;
    padding: 0;
    margin-left: 10px;
}

.cscexam-myplan-box h2 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
}

.cscexam-myplan-box ul {
    margin-top: 10px;
    padding-left: 20px;
}

.cscexam-myplan-box ul li {
    list-style: disc;
    color: #464646;
    font-size: 14px;
    font-weight: 600;
}

.cscexam-myplan-box ul li span {
    color: #000;
    font-weight: 600;
}

.cscexam-myplan-box button {
    border: none;
    font-size: 12px;
    background: green;
    color: var(--light);
    padding: 8px 14px;
    border-radius: 4px;
    font-weight: 600;
    line-height: normal;
}

.cscexam-myplan-box img {
    position: absolute;
    width: 128px;
    right: 0px;
    bottom: 0px;
}

/***exams page***/

.cscdashboard-header {
    padding: 10px 0;
    border-bottom: 1px solid #cacaca;
    margin-bottom: 20px !important;
    align-items: center;
    display: flex;
}

.dashboard-heading-txt {
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #000;
    border-bottom: 1px solid #dedede;
    padding-bottom: 10px;
}

.dashboard-heading-txt i {
    color: #1b253b;
    margin-right: 8px;
    font-size: 20px;
}

.profile-edits {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
}

.profile-edits-icons {
    display: grid;
    text-align: center;
    cursor: pointer;
}

.profile-edits-icons span {
    font-size: 10px;
}

.rightside-full-header {
    padding: 20px 10px;
    border-left: 1px solid #cacaca;
}

.rightside-header {
    border-bottom: 1px solid #cacaca;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.rightside-header .profile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
    font-size: 20px;
    font-weight: bold;
}

.rightside-header .pro-user {
    font-size: 36px;
    border: 2px solid #1b253b;
    border-radius: 50%;
    margin: 0 auto;
    display: table;
    padding: 14px;
    color: #1b253b;
    width: 70px;
    height: 70px;
    text-align: center;
    margin-top: 22px;
}

.rightside-header h3 {
    margin: 0;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    padding-top: 10px;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cscdashboard-leftside-bar button {
    display: none;
}

.rightside-header ul {
    margin-top: 10px;
    margin-bottom: 0;
}

.rightside-header ul li {
    padding: 6px 10px;
    font-weight: bold;
    text-align: center;
}

.rightside-header ul li span {
    font-size: 12px;
}

.rightside-header ul li i {
    background: #396a9c;
    padding: 6px 8px;
    border: 1px solid #3273b6;
    color: var(--light);
    margin-right: 4px;
    border-radius: 4px;
    font-size: 12px;
}

.rightside-header .fa-camera {
    background: #1b253b;
    color: var(--light);
    padding: 6px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    margin-left: 10px;
}

.rightside-header .update-profile-modal h4.modal-title {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0;
    font-weight: 800;
}

.rightside-header .update-profile-modal form input {
    border: 1px solid #a4a4a4;
    padding: 8px;
    border-radius: 4px;
    background: whitesmoke;
}

.rightside-header .update-profile-modal form .form-submit-btn {
    background: #1b253b;
    padding: 10px 22px;
    border-radius: 4px;
    color: var(--light);
    border: 1px solid #323232;
    margin-left: 20px;
}

.rightside-header .update-profile-modal form p {
    margin: 0;
    padding-top: 10px;
    color: #de3838;
    font-size: 12px;
    font-weight: 600;
}

.rightside-header .update-profile-modal form .form-submit-box {
    display: flex;
    align-items: center;
}

.rightside-full-header h4 {
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rightside-full-header table th {
    border-bottom: 1px solid #cecece;
    padding: 2px 10px;
    width: 22%;
    font-weight: 800;
    font-size: 12px;
    color: #000;
    background: #f4f4f4;
}

.rightside-full-header table td {
    border-bottom: 1px solid #cecece;
    padding: 10px;
    font-weight: 800;
    font-size: 11px;
    color: #000;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.rightside-full-header table td span {
    background: green;
    padding: 2px 4px;
    color: var(--light);
    font-size: 8px;
    border-radius: 4px;
}

.rightside-full-header table th .fa-check {
    color: green;
}

.rightside-full-header table {
    margin-bottom: 30px;
}

.student-profile-form {
    padding: 20px 10px;
    border-radius: 6px;
    background: #f5f7f9;
    border: 1px solid #e8e8e8;
    margin-top: 10px !important;
}

.student-profile-form label {
    font-size: 14px;
    font-weight: 500;
}

.student-profile-form h4 {
    margin: 0;
    font-size: 14px;
    padding-top: 8px;
    border-bottom: 1px solid #b4b4b4;
    padding-bottom: 8px;
    margin-bottom: 20px;
    color: #4e4e4e;
    font-weight: 600;
}

.fa {
    cursor: pointer;
}

.my-drive-box img {
    width: 100%;
}

.my-drive-box ul {
    margin-top: 20px;
    padding-left: 0;
}

.my-drive-box ul li {
    list-style: none;
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid #b2b2b2;
    padding: 10px 10px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    background: var(--light);
    justify-content: space-between;
    cursor: pointer;
}

/* mockTest Detail page */
.mockTest_container .nav-pills .nav-item {
    width: 150px;
}

.mockTest_container .nav-pills .nav-link {
    font-size: 13px;
    font-weight: 500;
    background-color: #dcdcdc57 !important;
    color: var(--blue);
    transition: all .2s ease-in-out;
    border-radius: 4px !important;
    justify-content: center;
}

.mockTest_container .nav-pills .nav-link.active,
.mockTest_container .nav-pills .show>.nav-link {
    box-shadow: 0 8px 12px #01498f63;
    background-color: var(--blue) !important;
}

.mockTest_container .nav-pills .nav-link:hover {
    transform: scale(1.05);
    transition: all .2s ease-in-out;
    color: var(--light);
    background-color: #01498fba !important;
    box-shadow: 0 8px 12px #01498f63;
}

.mockTest_container .MockTestBox .mock_headTitle h2 {
    font-size: 14px;
    font-weight: 600;
    color: var(--blue);
    margin: 0px;
}

.mockTest_container .MockTestBox .mock_headTitle i {
    font-size: 16px;
    border: 2px solid #01498f61;
    padding: 4px;
    border-radius: 4px;
    color: #01498fbf;
}

.mockTest_container .MockTestBox .card_box h5 {
    margin: 0px;
    font-size: 14px;
    font-weight: 600;
    color: #727272;
}

.mockTest_container .MockTestBox p {
    font-size: 14px;
    font-weight: 500;
    color: #676767;
    margin: 0px;
}

.mockTest_container .card_box {
    box-shadow: -1px 2px 7px #2834481f;
    border-radius: 4px;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
    transition: all .2s ease-in-out;
}

.mockTest_container .card_box:hover {
    transform: scale(1.05);
    opacity: 1;
    transition: all .2s ease-in-out;
}

.circle {
    position: absolute;
    right: -22px;
    top: -10px;
    width: 60px;
    height: 60px;
    background-color: #01498f1c;
    border-radius: 40px;
}

.small_circle {
    position: absolute;
    left: -22px;
    bottom: -10px;
    width: 50px;
    height: 50px;
    background-color: #01498f14;
    border-radius: 42px;
}

.small2_circle {
    position: absolute;
    right: 16px;
    top: -10px;
    width: 40px;
    height: 40px;
    background-color: #01498f1c;
    border-radius: 40px;
}

/* mock test button style */

.mock_startBtn,
.mock_disablebtn,
.mock_resumebtn,
.mock_reportbtn {
    position: relative;
    margin: 0px;
    padding: 3px 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: ease-out 0.5s;
    border-radius: 4px;
    background: transparent;
    width: 100px;
}

.mock_startBtn {
    color: var(--blue);
    border: 2px solid #01498f7d;
}

.mock_startBtn:hover {
    color: var(--light);
    background-color: var(--blue);
    transform: scale(1.05);
    box-shadow: 0 2px 2px #01498f63;
}

.mock_resumebtn {
    color: #4ba16d;
    border: 2px solid #4ba16d;
}

.mock_resumebtn:hover {
    color: var(--light);
    background-color: #4ba16d;
    transform: scale(1.05);
    box-shadow: 0 2px 2px #4ba16d;
}

.mock_reportbtn {
    color: #eb7d4c;
    border: 2px solid #eb7d4c;
}

.mock_reportbtn:hover {
    color: var(--light);
    background-color: #eb7d4c;
    transform: scale(1.05);
    box-shadow: 0 2px 2px #eb7d4c;
}

.mock_disablebtn {
    color: #42424278;
    border: 2px solid #5f5f5f3d;
    cursor: default;
}

/* mock test button style */

/* ------- */
.feature_card {
    display: block;
    position: relative;
    background-color: var(--light);
    border-radius: 4px;
    padding: 20px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    border-top: 5px solid #eb7d4c;
    transition: all 0.2s ease-out;
}

.feature_card:hover {
    transform: scale(1.05);
}

.feature_card .feature_cardImg {
    min-height: 100px;
    margin-bottom: 16px;
}

.feature_card .feature_cardImg img {
    width: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: flex;
    margin: 0 auto;
}

.feature_card h3 {
    font-size: 16px;
    font-weight: 500;
    color: var(--blue);
    margin: 0px 0px 6px;
}

.featured_list {
    padding: 0px;
    margin: 0px
}

.feature_card .featured_list li {
    font-size: 12px;
    font-weight: 500;
    color: #5c5a5a;
    border-bottom: 1px solid #f5dfd5;
    padding: 6px;
}

.feature_card .featured_list li i {
    font-size: 6px;
    color: #ed8659;
}

.burst-8 {
    background: #ec794729;
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 0px;
    right: -20px;
    text-align: center;
    -webkit-transform: rotate(20deg);
    -moz-transform: rotate(20deg);
    -ms-transform: rotate(20deg);
    -o-transform: rotate(20deg);
}

.burst-8:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 80px;
    width: 80px;
    background: #ec794729;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    -o-transform: rotate(135deg);
}

/* mock Test Plan */
.mockTestPlan {
    display: inline-block;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.mockTestPlan .hero-profile-img {
    height: 200px;
    width: 200px;
    object-fit: cover;
}

.mockTestPlan .hero-description-bk {
    background-image: linear-gradient(-20deg, var(--blue), #a7bfd7);
    border-radius: 30px;
    position: absolute;
    top: 70%;
    left: -5px;
    height: 40%;
    width: 106%;
    transform: skew(19deg, -9deg);
}

.mockTestPlan .hero-description {
    position: absolute;
    color: var(--light);
    font-weight: 900;
    left: 20px;
    bottom: 0px;
}

.mockTestPlan .hero-description h1 {
    font-size: 13px;
    font-weight: 600;
    margin: 0px 0px 4px;
}

.mockTestPlan .hero-description p {
    font-size: 10px;
    margin-bottom: 6px;
}

/* Mock Test Attempted style */
.timeline {
    margin: 20px auto;
    position: relative;
}

.timeline__event {
    margin-bottom: 20px;
    position: relative;
    display: flex;
    margin: 10px 0;
    border-radius: 6px;
    align-self: center;
    width: 50vw;
}

.timeline__event .timeline__event__date {
    border-radius: 0 6px 6px 0;
}

.timeline__event .timeline__event__content {
    border-radius: 6px 0 0 6px;
}

.timeline__event .timeline__event__icon:before {
    content: "";
    width: 2px;
    height: 100%;
    background: var(--blue);
    position: absolute;
    top: 0%;
    left: 50%;
    right: auto;
    z-index: -1;
    transform: translateX(-50%);
    -webkit-animation: fillTop 2s forwards 4s ease-in-out;
    animation: fillTop 2s forwards 4s ease-in-out;
}

.timeline__event .timeline__event__icon:after {
    content: "";
    width: 100%;
    height: 2px;
    background: var(--blue);
    position: absolute;
    left: 0;
    z-index: -1;
    top: 50%;
    right: auto;
    transform: translateY(-50%);
    -webkit-animation: fillLeft 2s forwards 4s ease-in-out;
    animation: fillLeft 2s forwards 4s ease-in-out;
}

.timeline__event__title {
    font-size: 1.2rem;
    line-height: 1.4;
    text-transform: uppercase;
    font-weight: 600;
    color: #426b93;
    letter-spacing: 1.5px;
}

.timeline__event__content {
    padding: 16px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    background: var(--light);
    width: calc(40vw - 84px);
    border-radius: 0 6px 6px 0;
}

.timeline__event__date {
    color: var(--light);
    font-size: 16px;
    font-weight: 600;
    background: #426b93;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 20px;
    border-radius: 6px 0 0 6px;
}

.timeline__event__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    padding: 20px;
    align-self: center;
    margin: 0 20px;
    background: #426b93;
    border-radius: 100%;
    width: 40px;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.25), 0 18px 36px -18px rgba(0, 0, 0, 0.3), 0 -12px 36px -8px rgba(0, 0, 0, 0.025);
    padding: 28px;
    height: 40px;
    position: relative;
}

.timeline__event__icon i {
    font-size: 22px;
}

.timeline__event__icon:before {
    content: "";
    width: 2px;
    height: 100%;
    background: #426b93;
    position: absolute;
    top: 0%;
    z-index: -1;
    left: 50%;
    transform: translateX(-50%);
    -webkit-animation: fillTop 2s forwards 4s ease-in-out;
    animation: fillTop 2s forwards 4s ease-in-out;
}

.timeline__event__icon:after {
    content: "";
    width: 100%;
    height: 2px;
    background: #426b93;
    position: absolute;
    right: 0%;
    z-index: -1;
    top: 50%;
    transform: translateY(-50%);
    -webkit-animation: fillLeftOdd 2s forwards 4s ease-in-out;
    animation: fillLeftOdd 2s forwards 4s ease-in-out;
}

.timeline__event__description {
    flex-basis: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timeline__event__description h5 {
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.timeline__event:last-child .timeline__event__icon:before {
    content: none;
}

@keyframes fillLeft {
    100% {
        left: 100%;
    }
}

@keyframes fillTop {
    100% {
        top: 100%;
    }
}

.timeline__event__description form {
    margin: 0px;
}

.mockStartDisable {
    border: 0px;
    padding: 4px 30px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    color: var(--light);
    background-color: #adc6df5c;
}

.que_screen_main {
    height: 460px;
    overflow-x: hidden;
}

.que_screen_main .Quiz_que table {
    width: 100%;
}

.que_screen_main .question-text {
    overflow-x: auto;
}


/* Quiz Model test */

#quiz_modal .swiper-button-prev.clear_previous,
#quiz_modal .swiper-button-prev.clear_previous:hover,
#quiz_modal .swiper-button-next.clear_next,
#quiz_modal .swiper-button-next.clear_next:hover {
    cursor: default;
    background-color: transparent !important;
    color: #afc6db !important;
    border: 2px solid #8aaaca7d !important;
    box-shadow: none !important;
    transform: none !important;
    pointer-events: none;
}

#quiz_modal .swiper-button-prev:after,
#quiz_modal .swiper-rtl .swiper-button-next:after,
#quiz_modal .swiper-button-next:after,
#quiz_modal .swiper-rtl .swiper-button-prev:after {
    content: '' !important;
}

#quiz_modal .modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #114679;
    text-align: center;
    width: 100%;
}

#quiz_modal .swiper-container {
    overflow: hidden;
}

#quiz_modal .swiper-wrapper {
    max-height: 450px !important;
}

#quiz_modal .modal-body {
    padding: 1em 2em;
    background-color: #bbbbbb1a;
    overflow: hidden;
    position: relative;
}

#quiz_modal .dailyQuizMedi {
    margin-bottom: 10px;
    position: relative;
}

#quiz_modal .dailyQuizMedi h4 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    margin: 10px 0px;
    text-align: center;
    color: #114679;
    width: 100%;
}

#quiz_modal .medium_select_box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#quiz_modal .dailyQuizMedi .medium_select_box h6 {
    font-size: 14px;
    font-weight: 600;
    color: #2b67a1;
    margin: 0;
}

#quiz_modal .dailyQuizMedi .medium_select_box h6 span {
    font-size: 14px;
}

#quiz_modal .dailyQuizMedi .medium_select_box select {
    width: 110px;
    font-size: 13px;
    font-weight: 600;
    padding: 3px 10px;
    color: #3f668d;
    border: 2px solid #adc4db;
}

#quiz_modal .question-text p {
    font-size: 15px;
    font-weight: 600;
    color: #737373;
    margin: 0 0px 10px;
}

#quiz_modal .question-text p strong {
    color: #4b4b4b;
}

#quiz_modal .Quiz_options {
    display: grid;
    width: 100%;
    padding: 1em 2em;
}

#quiz_modal .Quiz_options .quiz_label {
    margin-bottom: 16px;
    background: var(--light);
    border: 2px solid #2b67a163;
    padding: 6px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: .4s;
}

#quiz_modal .quiz_label .Wirisformula {
    background: var(--light);
}

#quiz_modal .Quiz_options .quiz_label.active {
    background: #2b67a1;
    border: 2px solid #2b67a1;
    box-shadow: 0 2px 2px #1e5991;
}

#quiz_modal .Quiz_options .quiz_label.active .quiz_optionNo {
    border: 2px solid #abcae8;
    color: #accced;
    box-shadow: 0 2px 2px #416e99;
}

#quiz_modal .Quiz_options .quiz_label:hover {
    scale: 1.04;
    box-shadow: 0 2px 2px #2b67a163;
}

#quiz_modal .Quiz_options .quiz_label.active .option_span p {
    color: var(--light);
}

#quiz_modal .Quiz_options .option_span {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
}

#quiz_modal .Quiz_options .option_span .quiz_optionNo {
    font-size: 15px;
    font-weight: 600;
    border-radius: 72%;
    border: 2px solid #0c5194;
    padding: 2px 8px;
    color: #0e5295;
}

#quiz_modal .Quiz_options .option_span p {
    font-size: 15px;
    font-weight: 500;
    margin: 0;
    color: #1e4061;
}

#quiz_modal .test_buttonArea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em 2em;
    position: relative;
    bottom: 0px;
}

#quiz_modal .swiper-button-prev,
#quiz_modal .swiper-button-next {
    background-color: transparent !important;
    color: var(--blue) !important;
    border: 2px solid #01498f7d !important;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    width: 80px !important;
    height: 32px !important;
    margin: -14px 0px;
    text-align: center;
    letter-spacing: 1px;
    transition: ease-out0.5s;
}

#quiz_modal .swiper-button-prev:hover,
#quiz_modal .swiper-button-next:hover {
    color: var(--light) !important;
    background-color: var(--blue) !important;
    transform: scale(1.05);
    box-shadow: 0 2px 2px #01498f63;
}

#quiz_modal .swiper-button-prev {
    left: 42% !important;
}

#quiz_modal .swiper-button-next {
    left: 54% !important;
}

#quiz_modal .testSubmit_btn {
    color: var(--light);
    background-color: #4ba16d;
    border: 2px solid #4ba16d;
    font-size: 13px;
    font-weight: 600;
    border-radius: 4px;
    width: 80px !important;
    height: 32px !important;
    margin: 0px;
    text-align: center;
    letter-spacing: 1px;
    transition: ease-out0.5s;
    cursor: pointer !important;
}

#quiz_modal .testSubmit_btn:hover {
    box-shadow: 0 2px 2px #4ba16d;
}

#quiz_modal .testcircle {
    width: 60px;
    height: 60px;
    background-color: #2b67a11a;
    border-radius: 50%;
    position: absolute;
    top: 22px;
    left: -22px;
}

#quiz_modal .lacircle2 {
    width: 70px;
    height: 70px;
    background-color: #2b67a11a;
    border-radius: 50%;
    position: absolute;
    bottom: 0px;
    right: -34px;
}

#quiz_modal .lacircle3 {
    width: 80px;
    height: 80px;
    background-color: #2b67a11a;
    border-radius: 50%;
    position: absolute;
    bottom: -10px;
    left: -20px;
}

#quiz_modal .swiper-wrapper::-webkit-scrollbar {
    width: 6px;
    border-radius: 10px;
}

#quiz_modal .swiper-wrapper::-webkit-scrollbar-track {
    background: rgba(36, 86, 133, 0.23);
}

#quiz_modal .swiper-wrapper::-webkit-scrollbar-thumb {
    background: #2b67a13b;
}

/****Fontawesome CSS***/
.fa,
.fab,
.fal,
.far,
.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
}

@font-face {
    font-family: 'FontAwesome5Brands';
    font-style: normal;
    font-weight: normal;
    font-display: swap;
    src: url(css/fonts/fa-brands-400.eot);
    src: url(css/fonts/fa-brands-400.eot?#iefix)format('embedded-opentype'), url(css/fonts/fa-brands-400.woff2)format('woff2'), url(css/fonts/fa-brands-400.woff)format('woff'), url(css/fonts/fa-brands-400.ttf)format('truetype'), url(css/fonts/fa-brands-400.svg#fontawesome)format('svg');
}

.fab {
    font-family: 'FontAwesome5Brands';
}

@font-face {
    font-family: 'FontAwesome5Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url(css/fonts/fa-solid-900.eot);
    src: url(css/fonts/fa-solid-900.eot?#iefix)format('embedded-opentype'), url(css/fonts/fa-solid-900.woff2)format('woff2'), url(css/fonts/fa-solid-900.woff)format('woff'), url(css/fonts/fa-solid-900.ttf)format('truetype'), url(css/fonts/fa-solid-900.svg#fontawesome)format('svg');
}

.fa,
.far,
.fas {
    font-family: 'FontAwesome5Free';
}

.fa,
.fas {
    font-weight: 900;
}

.fa-edit:before {
    content: '\f044';
}

.fa-bars:before {
    content: '\f0c9';
}


.fa-chevron-right:before {
    content: '\f054';
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-pen-square:before {
    content: "\f14b"
}

.fa-camera:before {
    content: "\f030"
}

.fa-calendar:before {
    content: "\f133"
}

.fa-user:before {
    content: '\f007';
}

.fa-clipboard-list:before {
    content: "\f46d"
}

.fa-pen-to-square:before {
    content: "\f044"
}

.fa-pen:before {
    content: "\f304"
}

.fa-bolt:before {
    content: "\f0e7"
}

.fa-circle-info:before {
    content: "\f05a"
}

.fa-circle:before {
    content: "\f111"
}

.fa-square-minus:before {
    content: "\f146";
}

.fa-square-plus:before {
    content: "\f0fe";
}

.fa-download:before {
    content: "\f019";
}

.fa-arrow-right:before {
    content: "\f061";
}

.fa-arrow-left:before {
    content: "\f060";
}

.fa-square-xmark:before {
    content: "\f2d3";
}

.fa-xmark:before {
    content: "\f00d";
}

.fa-book:before {
    content: "\f02d";
}

/****Fontawesome CSS***/

/* new dashboard style */
/* SIDEBAR */

#sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 220px;
    height: 100%;
    background: var(--light);
    z-index: 1;
    font-family: var(--lato);
    transition: .3s ease;
    overflow-x: hidden;
    scrollbar-width: none;
}

#sidebar::--webkit-scrollbar {
    display: none;
}

#sidebar.hide {
    width: 60px;
}

#sidebar .brand {
    font-size: 24px;
    font-weight: 700;
    height: 56px;
    display: flex;
    align-items: center;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 500;
    padding-top: 20px;
    box-sizing: content-box;
}

#sidebar .brand img {
    width: 46%;
    object-fit: contain;
    display: flex;
    margin: 0px auto;
}

#sidebar .side-menu {
    width: 100%;
    margin-top: 48px;
    padding-left: 0em;
}

#sidebar .side-menu li {
    height: 48px;
    background: transparent;
    margin-left: 6px;
    border-radius: 48px 0 0 48px;
    padding: 4px;
}

#sidebar .side-menu li.active {
    background: var(--grey);
    position: relative;
}

#sidebar .side-menu li.active::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    top: -40px;
    right: 0;
    box-shadow: 20px 20px 0 var(--grey);
    z-index: -1;
}

#sidebar .side-menu li.active::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    bottom: -40px;
    right: 0;
    box-shadow: 20px -20px 0 var(--grey);
    z-index: -1;
}

#sidebar .side-menu li a {
    width: 100%;
    height: 100%;
    background: var(--light);
    display: flex;
    align-items: center;
    border-radius: 48px;
    font-size: 16px;
    color: var(--dark);
    white-space: nowrap;
    overflow-x: hidden;
    font-weight: 600;
}

#sidebar .side-menu li a img {
    width: 25px;
    object-fit: contain;
    margin: 0px 8px;
}

#sidebar .side-menu.top li.active a {
    color: var(--blue);
    box-shadow: 0 3px 6px rgb(0 0 0 / 8%), 0 3px 6px rgb(1 73 143 / 25%);
}

#sidebar.hide .side-menu li a {
    width: calc(48px - (4px * 2));
    transition: width .3s ease;
}

#sidebar.hide .side-menu li a.buy_button span {
    display: none;
}

#sidebar.hide .side-menu li a.buy_button {
    padding-right: 0px;
    border-radius: 30px
}

#sidebar .side-menu li a.buy_button {
    color: var(--light);
    background-color: var(--blue);
    text-align: center;
    width: fit-content;
    padding-right: 30px;
    border-radius: 7px;
}

#sidebar .side-menu li a.buy_button span {
    font-size: 13px;
}

#sidebar .side-menu.top li a:hover {
    color: var(--blue);
}

#sidebar .side-menu.bottom li:nth-last-of-type(-n+2) {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
}

#sidebar .side-menu.bottom li:nth-last-of-type(2) {
    bottom: 40px;
}

/* SIDEBAR */

/* CONTENT */
#content {
    position: relative;
    width: calc(100% - 220px);
    left: 220px;
    transition: .3s ease;
}

#sidebar.hide~#content {
    width: calc(100% - 60px);
    left: 60px;
}

/* NAVBAR */
#content nav {
    height: 56px;
    background: var(--light);
    padding: 0 24px;
    display: flex;
    align-items: center;
    grid-gap: 24px;
    font-family: var(--lato);
    position: sticky;
    top: 0;
    left: 0;
    z-index: 1000;
}

#content nav::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -40px;
    left: 0;
    border-radius: 50%;
    box-shadow: -20px -20px 0 var(--light);
}

#content nav a {
    color: var(--dark);
}

#content nav .bx.bx-menu {
    cursor: pointer;
    color: var(--dark);
}

#content nav .nav-link {
    font-size: 16px;
    transition: .3s ease;
    font-weight: 600;
}

#content nav .nav-link:hover {
    color: var(--blue);
}

#content nav form {
    max-width: 400px;
    width: 100%;
    margin-right: auto;
}

#content nav form .form-input {
    display: flex;
    align-items: center;
    height: 36px;
}

#content nav form .form-input input {
    flex-grow: 1;
    padding: 0 16px;
    height: 100%;
    border: none;
    background: var(--grey);
    border-radius: 36px 0 0 36px;
    outline: none;
    width: 100%;
    color: var(--dark);
}

#content nav form .form-input button {
    width: 36px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--blue);
    color: var(--light);
    font-size: 18px;
    border: none;
    outline: none;
    border-radius: 0 36px 36px 0;
    cursor: pointer;
}

#content nav .notification {
    font-size: 20px;
    position: relative;
}

#content nav .notification .num {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid var(--light);
    background: var(--red);
    color: var(--light);
    font-weight: 700;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: blink 2s infinite;
}

@keyframes blink {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

/* Notification Dropdown */
#content nav .notification-menu {
    display: none;
    position: absolute;
    top: 56px;
    right: 0;
    background: var(--light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    width: 250px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 9999;
    font-family: var(--lato);
}

#content nav .notification-menu ul {
    list-style: none;
    padding: 10px;
    margin: 0;
}

#content nav .notification-menu li {
    padding: 10px;
    border-bottom: 1px solid var(--grey);
    color: var(--dark);
}

#content nav .notification-menu li:hover {
    background-color: var(--light-blue);
    color: var(--dark);
}

#content nav .notification-menu li:hover a {
    background-color: var(--dark-grey);
    color: var(--light);
}

#content nav .profile img {
    width: 36px;
    height: 36px;
    object-fit: cover;
    border-radius: 50%;
}

#content nav .profile-menu {
    display: none;
    position: absolute;
    top: 56px;
    right: 16px;
    background: #e4ecf4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    width: 180px;
    z-index: 9999;
    font-family: var(--lato);
}

#content nav .profile-menu .peofile_name {
    background: #e4ecf4;
    border-radius: 10px;
    padding: 4px 2px;
    margin: 10px 10px;
    box-shadow: -5px -5px 9px rgba(255, 255, 255, 0.45), 5px 5px 9px rgb(170 189 223 / 30%);
}

#content nav .profile-menu .peofile_name p {
    font-size: 12px;
    color: #4b4b4b;
}

#content nav .profile-menu .peofile_name .username_text {
    font-size: 14px;
    font-weight: 600;
    padding-top: 4px;
    margin: 0px;
    word-wrap: break-word;
}


#content nav .profile-menu ul {
    list-style: none;
    padding: 10px;
    margin: 0;
}

#content nav .profile-menu li {
    border-bottom: 1px solid var(--grey);
}

#content nav .profile-menu li:hover {
    background-color: var(--blue);
    color: var(--light);
    border-radius: 4px;
}

#content nav .profile-menu li a {
    color: var(--dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 10px;
    padding: 10px;
}

#content nav .profile-menu li:hover a {
    color: var(--light);
}

#content nav .profile-menu li a img {
    width: 22px;
    object-fit: contain;
}

/* Active State for Menus */
#content nav .notification-menu.show,
#content nav .profile-menu.show {
    display: block;
}

/* MAIN */
#content main {
    width: 100%;
    padding: 16px 24px;
    font-family: var(--poppins);
    max-height: calc(100vh - 56px);
    overflow-y: auto;
}

#content main .head-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    grid-gap: 16px;
    flex-wrap: wrap;
    border-bottom: 1px solid #01498f1c;
    margin-bottom: 1em;
}

#content main .head-title .left .breadcrumb {
    display: flex;
    align-items: center;
    grid-gap: 16px;
    margin-bottom: 8px;
}

#content main .head-title .left .breadcrumb li {
    color: var(--dark);
}

#content main .head-title .left .breadcrumb li a {
    color: var(--dark-grey);
    pointer-events: none;
}

#content main .head-title .left .breadcrumb li a.active {
    color: var(--blue);
    pointer-events: unset;
    font-weight: 600;
}

/* CONTENT */
#content main .menu,
#content nav .menu {
    display: none;
    list-style-type: none;
    padding-left: 20px;
    margin-top: 5px;
    position: absolute;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
    width: 200px;
}

#content main .menu a,
#content nav .menu a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 8px 16px;
}

#content main .menu a:hover,
#content nav .menu a:hover {
    background-color: #444;
}

#content main .menu-link,
#content nav .menu-link {
    margin: 5px;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    text-decoration: none;
    color: #007bff;
}

#content main .menu-link:hover,
#content nav .menu-link:hover {
    text-decoration: underline;
}

@media screen and (max-width: 576px) {

    #content nav form.show~.notification,
    #content nav form.show~.profile {
        display: none;
    }
}

/* model form */

.update-profile-modal form label {
    font-size: 14px;
    margin-bottom: 4px;
    font-weight: 600;
}

.update-profile-modal form input {
    font-size: 14px;
}

.update-profile-modal .upload_btn {
    font-size: 14px;
    font-weight: 500;
    background-color: var(--blue);
    color: var(--light);
    padding: 8px 12px;
}

.update-profile-modal .modal-title {
    font-size: 17px;
    color: var(--blue);
}

.update-profile-modal .note_text {
    font-size: 11px;
    color: #c52828;
}


/* Final-test page cards */

.final_testCard {
    padding: 6px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    margin-bottom: 1em;
}

.final_testCard .class_name {
    font-size: 12px;
    font-weight: 500;
    padding: 6px 20px;
    width: fit-content;
    background-color: #ee8151c2;
    border-radius: 22px;
    color: #fff;
    margin: 0px;
    position: absolute;
    right: 4px;
    top: 4px;
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgb(215 133 100 / 39%);
}

.final_testCard .img_box {
    position: relative;
}

.final_testCard .img_box img {
    width: 100%;
    object-fit: cover;
    height: 160px;
    box-shadow: 00 2px 2px rgba(0, 0, 0, 0.25), 0 0px 0px rgb(24 24 24 / 39%);
    border-radius: 10px;
}

.final_testCard .card_content {
    padding: 10px;
}

.final_testCard .card_head {
    font-size: 16px;
    font-weight: 500;
    margin: 0px 0px 4px;
    color: #01498f;
    line-height: 20px;
    text-align: center;
}

.final_testCard .divider_box {
    background-color: antiquewhite;
    padding: 9px;
    margin: 0px;
    border-radius: 10px;
    margin-bottom: 10px;
}

.final_testCard .divider_box .date_text {
    font-size: 10px;
    font-weight: 400;
    margin: 0px;
    color: #838383;
    line-height: 14px;
    margin-top: 6px;
}

.final_testCard .card_divide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0px;
}

.final_testCard .card_divide div {
    font-size: 12px;
    font-weight: 600;
    border-left: 1px solid #9f9f9f;
    padding-left: 30px;
    text-align: center;
    color: #342e37;
}

.final_testCard .card_divide div:first-child {
    border-left: none;
    padding-left: 0px;
}

.note_area .final_notes {
    padding-left: 0em;
    margin-bottom: 6px;
}

.note_area {
    padding: 16px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    margin-bottom: 1em;
}

.note_area h3 {
    font-size: 20px;
    font-weight: 600;
    color: #ee8151;
    border-bottom: 1px solid #ee815138;
    padding-bottom: 6px;
}

.note_area .final_notes li {
    margin-bottom: 16px;
    display: flex;
    justify-content: start;
    gap: 10px;
}

.note_area .final_notes li i {
    padding-top: 10px;
    color: #ee8151;
    font-size: 14px;
}

.note_area .final_notes li span {
    font-size: 13px;
    text-align: justify;
    font-weight: 500;
    line-height: 18px;
}

.final_testCard .card_bottomText {
    padding-left: 0em;
    margin-bottom: 0px;
}

.final_testCard .card_bottomText li {
    padding: 6px;
    font-size: 12px;
    line-height: 16px;
    border-radius: 4px;
    text-align: center;
}

.final_testCard .card_bottomText li.complete_test {
    color: #eb7d4c;
    border: 2px solid #eb7d4c;
}

.final_testCard .card_bottomText li.success_test {
    color: #4ba16d;
    border: 2px solid #4ba16d;
}

.modal-dialog .close {
    border: 2px solid #01498f;
    background-color: #01498f;
    color: #fff;
    border-radius: 4px;
}

.final_startBtn {
    background-color: #01498f;
    color: #fff;
    display: flex;
    margin: 0 auto;
    font-size: 13px;
    padding: 6px 10px;
    border-radius: 4px;
    border: none;
}

/* ************************************ MEDIA REESPONSIVE CSS */

@media only screen and (max-width: 768px) {
    .timeline__event {
        flex-direction: column;
        align-self: center;
    }

    .timeline__event__content {
        width: 100%;
    }

    .timeline__event__icon {
        border-radius: 6px 6px 0 0;
        width: 100%;
        margin: 0;
        box-shadow: none;
    }

    .timeline__event__icon:before,
    .timeline__event__icon:after {
        display: none;
    }

    .timeline__event__date {
        border-radius: 0;
        padding: 20px;
    }

    .timeline__even {
        flex-direction: column;
        align-self: center;
    }

    .timeline__even .timeline__event__date {
        border-radius: 0;
        padding: 20px;
    }

    .timeline__even .timeline__event__icon {
        border-radius: 6px 6px 0 0;
        margin: 0;
    }

    .timeline__event .timeline__event__date {
        border-radius: 0px;
    }

    .cscdashboard-section .cscdashboard-leftside-bar img {
        margin-bottom: 0;
        display: inherit;
    }

    .cscdashboard-myplan-box {
        margin-top: 10px;
    }

    .cscdashboard-header {
        padding: 10px 0 0;
    }

    .cscdashboard-leftside-bar button {
        padding: 0;
        background: transparent;
        border: none;
        outline: none;
        display: block;
        float: right;
    }

    .cscdashboard-section .cscdashboard-leftside-bar {
        height: auto;
        padding: 10px 40px;
        position: initial;
        width: 100%;
    }

    .cscdashboard-leftside-bar .dropbtn {
        background-color: #1c283b;
        color: white;
        font-size: 24px;
        border: none;
        cursor: pointer;
        padding: 6px 12px;
        border-radius: 4px;
    }

    .cscdashboard-leftside-bar .dropdown {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .cscdashboard-leftside-bar .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f1f1f1;
        min-width: 160px;
        overflow: auto;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }

    .cscdashboard-leftside-bar .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .cscdashboard-leftside-bar .dropdown a:hover {
        background-color: #ddd;
    }

    .cscdashboard-leftside-bar .show {
        display: block;
        top: 50px;
        position: relative;
        width: 90%;
        margin: 0 auto;
    }

    .cscdashboard-header .cscdashboard-header-ul .exemplar-btn button a,
    .cscdashboard-header .cscdashboard-header-ul .ncert-btn button a {
        display: block;
        font-weight: 600;
        padding: 8px;
        height: auto;
        margin-right: 10px;
        margin-left: 0;
    }

    .cscdashboard-header .cscdashboard-header-ul {
        justify-content: left;
    }

    .cscdashboard-header .cscdashboard-header-ul .exemplar-btn button a span,
    .cscdashboard-header .cscdashboard-header-ul .ncert-btn button a span {
        display: none;
    }

    .cscdashboard-header .cscdashboard-header-ul li {
        display: flex;
        align-items: center;
    }

    .cscdashboard-section .getpremium-plan-box img {
        margin: 0 auto -60px !important;
    }

    .cscdashboard-section .getpremium-plan-box button {
        float: none;
    }

    .rightside-full-header {
        border-top: 1px solid #cacaca;
        padding: 20px 10px;
        border-left: none;
        height: auto;
        margin-top: 20px;
    }

    /* mock test */

    .mockStartDisable {
        padding: 4px 14px !important;
    }

    .timeline__event__description h5 {
        font-size: 13px !important;
        padding-top: 10px;
    }


    .timeline__event__date {
        font-size: 18px !important;
        padding: 0 10px !important;
    }

    .cscdashboard-section .cscdashboard-leftside-bar .tab button {
        padding: 16px 6px !important;
    }

    .mockTest_container .MockTestBox .mock_headTitle h2 {
        font-size: 14px !important;
    }

    .feature_card h3 {
        font-size: 14px !important;
    }

    .images_box {
        height: 140px !important;
        width: 135px !important;
    }

    .mockTestPlan .hero-description {
        left: 10px !important;
    }

    .mockTestPlan .hero-description h1 {
        font-size: 8px;
    }

    .mockTestPlan .hero-description p {
        font-size: 7px;
        margin-bottom: 6px;
    }

    .feature_card {
        margin-bottom: 1em;
    }

    .mockTest_container .nav-pills .nav-item {
        width: fit-content;
    }

    .mockTest_container .nav-pills .nav-link {
        font-size: 11px;
        padding: 6px 8px;
    }

    .mockTest_container .MockTestBox p {
        font-size: 12px;
        margin: 0px 0px 10px;
    }

    .mockTest_container .MockTestBox .card_box h5 {
        font-size: 12px;
    }

    .timeline__event {
        width: 100%;
    }

    #quiz_modal .modal-body {
        padding: 12px;
    }

    #quiz_modal .test_buttonArea {
        padding: 1em 1em;
    }

    #quiz_modal .swiper-button-prev {
        left: 14% !important;
    }

    #quiz_modal .swiper-button-next {
        left: 42% !important;
    }

    #quiz_modal .swiper-button-prev,
    #quiz_modal .swiper-button-next {
        margin: -16px 0px;
    }

    .que_screen_main .question-text {
        padding: 0px 10px;
    }

    .mock_startBtn,
    .mock_disablebtn,
    .mock_resumebtn,
    .mock_reportbtn {
        float: right;
        margin-right: 4px;
    }

    .feature_card .feature_cardImg {
        display: none;
    }

    .student-profile-form h4 {
        margin: 0;
        font-size: 12px;
    }

    .student-profile-form label {
        font-size: 14px;
    }

    #content main .head-title .left .breadcrumb li a.active {
        font-size: 12px;
    }

    .cscexam-myplan-box h2,
    .cscexam-myplan-box ul li,
    .cscexam-myplan-box ul li span {
        font-size: 11px;
    }

    .cscexam-myplan-box button {
        font-size: 10px;
    }

    .final_testCard .card_head {
        font-size: 13px;
        line-height: 16px;
    }

    .final_testCard .card_divide div {
        font-size: 11px;
        padding-left: 10px;
    }

    .final_testCard .img_box img {
        height: 180px;
    }

    .final_testCard .card_bottomText li {
        font-size: 10px;
    }

    .note_area h3 {
        font-size: 16px;
    }

    .note_area .final_notes li span {
        font-size: 12px;
        line-height: 16px;
    }

    .mockTestPlan .hero-profile-img {
        width: 100%;
        height: 140px;
    }

    .rightside-header img {
        height: 130px;
    }

    .rightside-header h3 {
        font-size: 16px;
    }

    .rightside-header .fa-camera {
        font-size: 14px;
    }

    .rightside-header ul {
        padding-left: 0px;
    }

    .rightside-header ul li {
        padding: 0px 0px;
    }

    .mock_startBtn,
    .mock_disablebtn,
    .mock_resumebtn,
    .mock_reportbtn {
        font-size: 12px;
    }

    #quiz_modal .modal-title {
        font-size: 16px;
    }

    .timeline__event__description {
        flex-wrap: wrap;
    }

    .rightside-full-header table td {
        padding: 6px;
        font-size: 10px;
    }

    .rightside-full-header table th {
        padding: 2px 6px;
        font-size: 11px;
    }

    .final_startBtn {
        font-size: 12px;
        padding: 5px 10px;
    }

    .mobile-hide {
        display: none !important;
    }

    .highcharts-figure,
    .highcharts-data-table table {
        min-width: auto !important;
    }

    .rightnoti_area h3 {
        font-size: 14px;
    }

    .rightnoti_area .final_notes {
        margin-bottom: 0px;
    }

    .rightnoti_area .final_notes li {
        margin-bottom: 12px;
    }

    .rightnoti_area .final_notes li span {
        font-size: 12px;
    }

    .rightnoti_area .final_notes li i {
        font-size: 8px;
    }

    .cscexam-myplan-box position-relative img {
        width: 100px;
    }
}

@media only screen and (min-width:769px) and (max-width:1294px) {
    .cscdashboard-section .cscdashboard-leftside-bar img {
        margin-bottom: 0;
        display: inherit;
    }

    .cscdashboard-leftside-bar button {
        padding: 0;
        background: transparent;
        border: none;
        outline: none;
        display: block;
        float: right;
    }

    .cscdashboard-section .cscdashboard-leftside-bar {
        height: auto;
    }

    .cscdashboard-leftside-bar .dropbtn {
        background-color: #1c283b;
        color: white;
        font-size: 24px;
        border: none;
        cursor: pointer;
        padding: 6px 12px;
        border-radius: 4px;
    }

    .cscdashboard-leftside-bar .dropdown {
        position: absolute;
        top: 10px;
        right: 10px;
    }

    .cscdashboard-leftside-bar .dropdown-content {
        display: none;
        position: absolute;
        background-color: #f1f1f1;
        min-width: 160px;
        overflow: auto;
        box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
        z-index: 1;
    }

    .cscdashboard-leftside-bar .dropdown-content a {
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
    }

    .cscdashboard-leftside-bar .dropdown a:hover {
        background-color: #ddd;
    }

    .cscdashboard-leftside-bar .show {
        display: block;
        top: 50px;
        position: relative;
        width: 90%;
        margin: 0 auto;
    }

    .cscdashboard-header .cscdashboard-header-ul .exemplar-btn button a,
    .cscdashboard-header .cscdashboard-header-ul .ncert-btn button a {
        display: block;
        font-weight: 600;
        padding: 8px;
        height: auto;
        margin-right: 10px;
        margin-left: 0;
    }

    .cscdashboard-header .cscdashboard-header-ul {
        justify-content: left;
    }

    .cscdashboard-header .cscdashboard-header-ul .exemplar-btn button a span,
    .cscdashboard-header .cscdashboard-header-ul .ncert-btn button a span {
        display: none;
    }

    .cscdashboard-header .cscdashboard-header-ul li {
        display: flex;
        align-items: center;
    }

    .cscdashboard-section .getpremium-plan-box img {
        margin: 0 auto -60px !important;
    }

    .cscdashboard-section .getpremium-plan-box button {
        float: none;
    }

    .rightside-full-header {
        border-top: 1px solid #cacaca;
        padding: 20px 10px;
        border-left: none;
        height: auto;
        margin-top: 20px;
    }

    .mockStartDisable {
        padding: 4px 16px;
    }

    .timeline__event__date {
        padding: 0 10px;
    }

    .timeline__event__icon {
        display: none;
    }

    .timeline__event {
        width: 100%;
    }

    .timeline__event__content {
        width: calc(44vw - 0px);
    }

    .images_box {
        height: 240px;
    }

    .mock_startBtn,
    .mock_disablebtn,
    .mock_resumebtn,
    .mock_reportbtn {
        float: right;
        margin-right: 4px;
    }

    #quiz_modal .swiper-button-prev {
        left: 22% !important;
    }

    #quiz_modal .swiper-button-next {
        left: 42% !important;
    }
}

.fa-xmark:before {
    content: "\f00d";
}

.rightnoti_area {
    padding: 16px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    margin-bottom: 1em;
}

.rightnoti_area h3 {
    font-size: 16px;
    font-weight: 600;
    color: #01498f;
    border-bottom: 1px solid #ee815138;
    padding-bottom: 6px;
}

.rightnoti_area .final_notes {
    padding-left: 0em;
    margin-bottom: 6px;
}

.rightnoti_area .final_notes li {
    margin-bottom: 16px;
    display: flex;
    justify-content: start;
    gap: 10px;
}

.rightnoti_area .final_notes li i {
    font-size: 10px;
    padding-top: 6px;
}

.rightnoti_area .final_notes li span {
    font-size: 13px;
}

.signuppage-details-form #userGrade {
    font-size: 16px;
    border: none;
}

@media screen and (max-width: 768px) {
    .signuppage-details-form #userGrade {
        width: 40%;
    }

    .signuppage-details-form .select_class,
    .signuppage-details-form .select_class label,
    .signuppage-details-form #userGrade {
        font-size: 14px;
    }
}

.profile-image-wrapper {
    position: relative;
}

.profile-image {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #ccc;
}

.file-input {
    display: none;
}

.camera-icon {
    position: absolute;
    bottom: 5px;
    right: 10px;
    color: white;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert_page_h3 {
    font-size: 15px;
    font-weight: 600;
    color: #01498f;
    border-bottom: 1px solid #ee815138;
    padding-bottom: 6px;
    padding-top: 20px;
}