@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&display=swap');

:root {
    --primary-blue-color: #2A4290;
    --white-color: #FFFFFF;
    --black-bg: #000000;
    --dashboard-secondary-bg: #F0F4FF;
    --light-blue-bg: #7BD0E9;
    --light-grey-bg: #EEEEEE;
    --green-bg: #95CA60;
    --orange-bg: #F8A01B;
    --text-black: #000001;
}
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
.text-grey {
    color: #818181;
    margin: 0!important;
}
.primary-btn {
    background: var(--primary-blue-color);
    color: var(--white-color);
    border: 1px solid transparent;
}
.primary-btn:hover {
    background: transparent;
    border-color: var(--primary-blue-color);
    color: var(--primary-blue-color);
}
a {
    text-decoration: none;
    -webkit-transition: all 0.5ms ease;
    -moz-transition: all 0.5ms ease;
    -ms-transition: all 0.5ms ease;
    -o-transition: all 0.5ms ease;
    transition: all 0.5ms ease;
}
p {
    color: #7f8082;
    font-size: 14;
}
li {
    list-style: none;
}
html {
    overflow-x: hidden;
}
body {
    font-family: "DM Sans", sans-serif;
}
.wrapper {
    display: flex;
}
.main {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    overflow: hidden;
    transition: all .7s ease;
    background-color: var(--dashboard-secondary-bg);
    max-width: 100%;
    margin-left: 70px;
}
.main.active-main {
    transition: all .7s ease;
}
#sidebar,
#sidebar-2 {
    position: fixed;
    width: 70px;
    min-width: 70px;
    z-index: 1000;
    transition: all .25s ease-in-out;
    background-color: var(--primary-blue-color);
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    transition: all .7s ease;
}
#sidebar.expand,
#sidebar-2.expand {
    width: 260px;
    min-width: 260px;
    transition: all .7s ease;
}

.toggle-btn {
    background-color: transparent;
    cursor: pointer;
    border: 0;
    padding: 1rem;
}
.toggle-btn i {
    font-size: 1.5rem;
    color: var(--primary-blue-color);
    padding: 0.5rem;
    background: var(--white-color);
    border-radius: 0.3rem;
}

#sidebar .toggle-btn i {
    padding: 8px 7px 8px 9px;
}

#sidebar.expand .toggle-btn i {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.sidebar-logo {
    margin: auto 0;
}
.sidebar-logo a {
    color: #FFF;
    font-size: 1.15rem;
    font-weight: 600;
}
#sidebar:not(.expand) .sidebar-logo,
#sidebar-2:not(.expand) .sidebar-logo,
#sidebar:not(.expand) a.sidebar-link span,
#sidebar-2:not(.expand) a.sidebar-link span {
    display: none;
}
#sidebar.expand .sidebar-logo,
#sidebar.expand a.sidebar-link span,
#sidebar-2.expand a.sidebar-link span {
    animation: fadeIn .25s ease;
    margin: 0 1rem;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.sidebar-nav {
    padding: 2rem 0;
    flex: 1 1 auto;
    height: 100vh;
}
a.sidebar-link {
    padding: 0.25rem 0.9rem;
    color: #FFF;
    display: block;
    font-size: 1rem;
    white-space: nowrap;
    border-left: 3px solid transparent;
}
.sidebar-logo-2 img {
    width: 192px;
}
a.sidebar-link img {
    width: 30px;
}
.sidebar-link i,
.dropdown-item i {
    font-size: 1.1rem;
    margin-right: .75rem;
}
a.sidebar-link:hover {
    background-color: rgba(255, 255, 255, .075);
    border-left: 3px solid #3b7ddd;
}

a.sidebar-link.active {
    background-color: rgba(255, 255, 255, .075);
    border-left: 3px solid #3b7ddd;
}
.sidebar-item {
    position: relative;
    margin: 1rem 0;
}
#sidebar:not(.expand) .sidebar-item .sidebar-dropdown,
#sidebar-2:not(.expand) .sidebar-item .sidebar-dropdown {
    position: absolute;
    top: 0;
    left: 70px;
    background-color: #0e2238;
    padding: 0;
    min-width: 15rem;
    display: none;
}
#sidebar:not(.expand) .sidebar-item:hover .has-dropdown+.sidebar-dropdown,
#sidebar-2:not(.expand) .sidebar-item:hover .has-dropdown+.sidebar-dropdown {
    display: block;
    max-height: 15em;
    width: 100%;
    opacity: 1;
}
#sidebar.expand .sidebar-link[data-bs-toggle="collapse"]::after,
#sidebar-2.expand .sidebar-link[data-bs-toggle="collapse"]::after {
    border: solid;
    border-width: 0 .075rem .075rem 0;
    content: "";
    display: inline-block;
    padding: 2px;
    position: absolute;
    right: 1.5rem;
    top: 1.4rem;
    transform: rotate(-135deg);
    transition: all .2s ease-out;
}
#sidebar.expand .sidebar-link[data-bs-toggle="collapse"].collapsed::after,
#sidebar-2.expand .sidebar-link[data-bs-toggle="collapse"].collapsed::after {
    transform: rotate(45deg);
    transition: all .2s ease-out;
}

.sidebar-left-area.collapsed {
    width: 70px; /* Adjust as needed */
    overflow: hidden;
}

.sidebar-left-area.collapsed .col-9 {
    display: none;
}

.sidebar-left-area.collapsed .collapse-arrow {
    transform: rotate(180deg);
}

.sidebar-left-area.collapsed .link-text {
    display: none;
}
.navbar {
    background-color: #f5f5f5;
    box-shadow: 0 0 2rem 0 rgba(33, 37, 41, .1);
    display: none;
}
.navbar-expand .navbar-collapse {
    min-width: 200px;
}
.avatar {
    height: 40px;
    width: 40px;
}
.banner-img {
    padding: 5rem 4rem;
    background-image: url(/images/full-deshboard-banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    border-radius: 0.5rem;
    background-color: rgba(0, 0, 0, 0.5);
    background-blend-mode: overlay;
    position: relative;
    overflow: hidden;
    z-index: 0;
}
.banner-img::before {
    position: absolute;
    content: '';
    background: rgb(42, 66, 144);
    background: linear-gradient(266deg, rgb(42 66 144 / 72%) 12%, hsl(228deg 22% 49% / 33%) 55%, hsl(226deg 55% 36%) 100%);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
}
.banner-img h3 {
    color: var(--white-color);
}
.banner-img p {
    color: var(--white-color);
}

/* courses Section Styling */

.courses {
    background: var(--white-color);
    border-radius: 0.5rem;
}
.courses-cards .card {
    border: none;
}
.courses-cards .card .card-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 0px;
}
.card-head {
    background: var(--light-grey-bg);
}
.login-body-wrap {
    background-color: #0e1d3c;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login-body-wrap .form-wrap > img {
    width: 100%;
    max-width: 300px;
    margin: auto;
    display: flex;
}
.login-body-wrap .form-wrap {
    max-width: 700px;
    width: 100%;
}
.google-btn-option > a {
    display: flex;
    width: 100%;
    background: #fff;
    padding: 11.1px 20px;
    border-radius: 15px;
    margin-bottom: 12px;
    color: #fff;
    line-height: 0;
    align-items: center;
    font-size: 14px;
}
.google-btn-option > a img {
    max-width: 25px;
    width: 100%;
    margin-right: 10px;
}
.google-btn-option a:nth-child(3) img {
    filter: invert(1);
}
.google-btn-option a:nth-child(1) {
    background: #158cf4;
}
.google-btn-option a:nth-child(3) {
    background: #000;
}
.google-btn-option a:nth-child(2) {
    color: #000;
}
.form-wrap .form-group input,
.form-wrap .form-group button {
    padding: 12px 20px;
    border-radius: 15px;
    margin-bottom: 12px;
    width: 100%;
    font-size: 14px;
}
.form-wrap .form-group button,
.forgot-area > a {
    background: hsl(193.51deg 71.61% 69.61%);
    color: #2a4290;
    font-weight: 600;
    padding: 12.3px 20px;
}
.forgot-area > a {
    display: block;
    max-width: 305px;
    margin: auto;
    border-radius: 15px;
    color: #000;
    background: #95ca60;
    font-size: 14px;
}
.forgot-area p {
    color: #fff;
    font-size: 14px;
}
.forgot-area span {
    color: #fff;
    font-size: 12px;
    display: inline-block;
    margin-top: 30px;
}
.form-wrap .col-md-6:last-child {
    padding-left: 35px;
}
.form-wrap .col-md-6:first-child {
    padding-right: 35px;
}
.login-body-wrap form .row:nth-child(1)::before {
    position: absolute;
    content: '';
    width: 1px;
    height: 100%;
    background: #fff;
    left: 0;
    right: 0;
    margin: auto;
    top: -5px;
}
.search-area {
    background: #fff;
    border-radius: 30px;
    align-items: center;
    padding: 0 15px;
    box-shadow: 1px 1px 9px 0px rgb(0 0 0 / 18%);
}
.search-area input {
    border: none;
    background: no-repeat;
    padding: 13px 0 13px;
    font-size: 14px;
}
.search-area input::placeholder {
    color: #ccccccba;
}
.search-area input:focus,
.search-area input:hover {
    outline: none;
    box-shadow: none;
}
.search-area button.btn {
    padding: 0;
    line-height: 0;
}
i.mobile-toggle {
    margin-right: 15px;
    display: none;
}
button.toggle-btn i.lni.lni-close {
    display: none;
}
.sidebar-left-area {
    background: #0f1d3b;
    max-width: 280px;
    width: 100%;
    height: 100%;
    /*
    position: fixed;
    right: 0;
*/
}

#sidebar-right #collapse-button i {
    color: #ffffff;
    font-size: 20px;
    margin-right: 6px;
}

#sidebar-right.collapsed #collapse-button i {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

/*
.sidebar-left-area.sticky {
    position: fixed;
    top: 0px;
    right: 1px;
}
*/

.user-left-area span.user-pro img {
    width: 100%;
    max-width: 40px;
    border-radius: 100%;
    height: 40px;
}
.user-left-area {
    justify-content: end;
    align-items: center;
}
.user-left-area .buget img {
    width: 25px;
    margin-right: 15px;
}
.collapse-area img.collapse-arrow {
    width: 20px;
    margin-right: 10px;
}
.collapse-area span {
    color: #fff;
    font-size: 14px;
}
.sidebar-left-area .search-area input {
    padding: 10px 0 10px;
}
.sidebar-left-area .btn-bulk-area a {
    background: #7ad0e9;
    display: block;
    border-radius: 10px;
    margin: 10px 0;
    padding: 10px;
    color: #fff;
    font-size: 14px;
}
.sidebar-left-area .btn-bulk-area a img {
    width: 18px;
    object-fit: contain;
    height: 18px;
    margin-right: 5px;
}
.time-tracker-wrap {
    background: #2a4290;
}
.time-tracker h5 {
    color: #fff;
    font-weight: 600;
}
button.btn.btn-plus {
    background: #7ad0e9;
    color: #fff;
    font-size: 20px;
    padding: 8px 8px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px;
}
.time-tracker .time-inner select {
    font-size: 12px;
    outline: none;
    border-radius: 5px;
    padding: 2px 5px;
}
.time-tracker .time-inner select option {
    font-size: 10px;
}
.counting-box .count-num {
    color: #fff;
    font-size: 35px;
    width: 100px;
    height: 100px;
    border: 2px solid #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}
.time-tracker-wrap .btn-move-area button {
    font-size: 14px;
    padding: 5px 20px;
}
.time-tracker-wrap .btn-move-area .btn-success {
    background: #95c95f;
}

/*
 *  STYLE 3
 */

#sidebar.expand {
    height: 100%;
}
#sidebar.expand::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #F5F5F5;
}
#sidebar.expand::-webkit-scrollbar {
    width: 5px;
    background-color: #F5F5F5;
}
#sidebar.expand::-webkit-scrollbar-thumb {
    background-color: #000;
}
.progress-main-wrap p {
    white-space: nowrap;
    margin: 0 0 0 25px;
    color: #2a4290;
    font-weight: 600;
}
.progress-main-wrap .progress-bar {
    background: #7ad0e9;
}
.progress-main-wrap .progress {
    background: #0f1d3b;
}
.status-circle {
    text-align: right;
    font-size: 14px;
    color: #808080;
}
.status-circle span {
    display: inline-block;
    width: 25px;
    height: 25px;
    background: #f89f1b;
    border-radius: 30px;
    margin-left: 5px;
}

/*
 *  STYLE 3
 */

.course_overview_wrap {
    background: #fff;
}
.course_overview_wrap .info:nth-child(1) {
    background: #7ad0e9;
}
.course_overview_wrap .info:nth-child(2) {
    background: #97c767;
}
.course_overview_wrap .info:nth-child(3) {
    background: #f8a019;
}
.course_overview_wrap .info {
    background: darkblue;
    color: #fff;
}
.course_overview_wrap .info p {
    color: #fff;
}
.course_overview_wrap .d-flex {
    gap: 15px;
    padding: 0 15px;
}
.course_overview_wrap ul li {
    margin-top: 27px;
    color: #808080;
    font-size: 14px;
    display: flex;
    align-items: center;
}
.course_overview_wrap ul li::before {
    position: absolute;
    content: '';
    width: 25px;
    height: 25px;
    background: red;
    left: -36px;
    border-radius: 30px;
}
.course_overview_wrap ul li:nth-child(1)::before {
    background: #7ad0e9;
}
.course_overview_wrap ul li:nth-child(2)::before {
    background: #97c767;
}
.course_overview_wrap ul li:nth-child(3)::before {
    background: #f8a019;
}

button.bt-color {
    background: #2a4290;
    border-color: #2a4290;
    font-size: 14px;
    padding: 5px 20px;
}
table.table-ct-area tr,
table.table-ct-area tr th {
    border-color: #2a4290;
}
table.table-ct-area tr th {
    text-align: center;
    font-weight: 400;
    font-size: 14px;
}
table.table-ct-area thead tr th:first-child,
table.table-ct-area tbody tr th:first-child {
    text-align: left;
    font-weight: 600;
    background: #f0f4fd;
}
.form-group.from-group-ct input {
    width: 100%;
    max-width: 115px;
    background: #f0f4fd;
    border: 1px solid #f0f4fd;
    outline: none;
    padding: 5px 5px;
    border-radius: 5px;
}
.form-group.from-group-ct label {
    white-space: nowrap;
    font-size: 14px;
}
.three-btn-area button {
    max-width: 135px;
    width: 100%;
    background: #7ad0e9;
    border-color: #7ad0e9;
    margin-right: 5px;
    margin-bottom: 15px;
    color: #000;
    font-weight: 600;
}
.three-btn-area p {
    margin: 0;
    font-size: 14px;
    font-style: italic;
}
button.bt-color.btn.btn-warning {
    background: var(--bs-btn-hover-bg);
    color: #fff;
    border-color: var(--bs-btn-hover-bg);
}
button.btn.save-quit {
    margin-top: 15px;
    text-align: center;
    display: flex;
    justify-content: center;
    margin: auto;
    margin-top: 3rem;
}
.course_overview_wrap hr {
    border-color: #2a4290;
}

.sidebar-logout-icon {
    bottom: 8.5%;
    position: absolute;
}
.sidebar-logout-icon-active {
    bottom: 1%;
    position: absolute;
}


/* Sticky progress/timer */

#progressTimerContainer {
    background-color: #ffffff;
}

.progressTimerSticky {
    box-shadow: 0 4px 2px -2px rgba(0, 0, 0, 0.1);
    height: 110px;
    left: 14px;
    margin-top: 0!important;
    overflow: hidden;
    padding: 0 35px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 10;
}

.progressTimerSticky .courseOverviewTimer {
    text-align: right!important;
}

.progressTimerSticky .courseOverviewProgress,
.progressTimerSticky .courseOverviewTimer {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.progressTimerSticky .steps {
    margin-bottom: 0;
}

.progressTimerSticky .clock-title {
    font-size: 3rem;
}

.progressTimerSpacer {
    padding-top: 110px;
}




/* Assessment question holder */
.assessment-question-container {
    margin: auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.assessment-question-container select {
    display: inline;
    width: 100px
}

.assessment-question-container .table {
    overflow-y: hidden;
    padding-bottom: 25px;
}

.assessment-question-container .simplebar-track.simplebar-horizontal {
    background: #e6f9ff;
    height: 25px;
}

.assessment-question-container .simplebar-scrollbar.simplebar-visible:before {
    opacity: 1;
    background: #7ad0e9;
}

.assessment-question-container .simplebar-scrollbar:before {
    border-radius: 11px;
}

.assessment-question-container .simplebar-track.simplebar-horizontal:before {
    content: "";
    background-image: url(/images/ArrowLeftCircle.png);
    background-repeat: no-repeat;
    background-size: 25px 25px;
    position: absolute;
    left: 0;
    font-size: 16px;
    padding: 5px;
    width: 25px;
    height: 25px;
    z-index: 100;
  }

  .assessment-question-container .simplebar-track.simplebar-horizontal:after {
    content: "";
    background-image: url(/images/ArrowRightCircle.png);
    background-repeat: no-repeat;
    background-size: 25px 25px;
    position: absolute;
    right: 0;
    font-size: 16px;
    padding: 5px;
    width: 25px;
    height: 25px;
    z-index: 100;
  }

.assessment-question-container .table h4 {
    display: inline-block;
}

.assessment-question-container .table  .assessment-custom-input {
    width: 120px;
}

.assessment-question-number {
    font-size: 16px;
    font-weight: bold;
    color: #3b82f6;
    margin-bottom: 10px;
}

.assessment-question-text p {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.assessment-question-text ul li, .assessment-question-text ol ul li {
    list-style-type: disc;
}

.assessment-question-text ol li {
    list-style-type: decimal;
}

.assessment-options-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.assessment-option {
    display: flex;
    align-items: center;
    background-color: #f0f4fb;
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.assessment-option:hover {
    background-color: #e6effe;
}
/* Assessment question checkbox and radio questions */

.assessment-option input[type="radio"], .assessment-option input[type="checkbox"] {
    margin-right: 10px;
    cursor: pointer;
    width: 20px;
    height: 20px;
}

.assessment-option input[type="radio"]:checked + .label-text label, .assessment-option input[type="checkbox"]:checked + .label-text label{
    color: white!important;
}
.assessment-option input[type="radio"] + .label-text label p,.assessment-option input[type="checkbox"] + .label-text label p {
    margin-bottom: 0;
}
.assessment-option input[type="radio"]:checked + .label-text label p,.assessment-option input[type="checkbox"]:checked + .label-text label p {
    color: white!important;
    margin-bottom: 0;
}
.assessment-option:has(input[type="radio"]:checked), .assessment-option:has(input[type="checkbox"]:checked) {
    /* Add your desired styles for the parent element here */
    background-color: var(--primary-blue-color);
    padding: 10px;
    border: 2px solid #3b82f6;
    border-radius: 8px;
}

.assessment-option .label-text ul, .assessment-option .label-text ol {
    margin-bottom: 0;
}

.assessment-label-text {
    font-size: 16px;
    color: #333;
}
/* End of Assessment question checkbox and radio questions */

/* Assessment question table style */
.assessment-question-container table {
    width: 100%;
    /*border-collapse: separate;*/
    overflow: hidden;
    border: 3px solid #3b5fa6; /* Border color matching the header */
}

.assessment-question-container table th,
.assessment-question-container table td {
    padding: 12px 15px;
    text-align: left;
    border: 3px solid #3b5fa6;
}

.assessment-question-container table tr:first-child td {
    background-color: #4267b2; /* Header background color */
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.assessment-question-container table td {
    background-color: white;
    color: black;
    font-size: 16px;
}
/* End of Assessment question table style */

/* Assessment question Text input Fill blanks*/
.assessment-custom-input {
    padding: 10px;
    margin-left: 5px;
    background-color: #f0f4fb; /* Light grey background */
    border: 1px solid #d1d5db; /* Border color */
    border-radius: 4px; /* Slightly rounded corners */
    outline: none;
    font-size: 16px;
    color: #6b7280; /* Text color */
    transition: background-color 0.3s ease;
    box-sizing: border-box;
}

.assessment-custom-input::placeholder {
    color: #9ca3af; /* Placeholder text color */
}

.assessment-custom-input:hover {
    background-color: #e5e7eb; /* Slightly darker grey on hover */
    cursor: pointer; /* Hand cursor on hover */
}

.assessment-custom-input:focus {
    background-color: #e5e7eb; /* Keep the hover background when focused */
    border-color: #3b82f6; /* Optional: Add a different border color when focused */
}
/* End of Assessment question Text input Fill blanks*/

/* Assessment question draggable and droppable elements*/
.assessment-question-container .droppable_inner {
    /* width: 100%;
    max-width: 100%; */
    margin-top: 10px;
}

.assessment-label-container {
    display: flex;
    align-items: center;
    background-color: #f0f4fb; /* Light grey background */
    border-radius: 8px; /* Rounded corners */
    padding: 0;
    max-width: 600px; /* Adjust based on your need */
}

.assessment-label-side {
    background-color: #3b5fa6; /* Darker blue for the side section */
    border-radius: 8px 0 0 8px; /* Rounded corners on the left */
    padding: 7px 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.assessment-dots {
    padding: 7px 5px;
    display: grid;
    grid-template-columns: repeat(2, 4px);
    grid-gap: 4px;
}

.assessment-dots span {
    width: 4px;
    height: 4px;
    background-color: #a7c7e7; /* Light blue for the dots */
    border-radius: 50%; /* Make dots circular */
}

.assessment-label-text {
    color: #333; /* Text color */
    font-size: 16px;
    font-weight: bold;
    margin-right: 10px;
}

.connected_sortable .arrows li {
    height: 60px;
}
.match-items-title {
    position: relative;
    top: 10px;
}

.match-items-arrow .fa {
    position: relative;
    bottom: -15px;
}
/* End of Assessment question draggable and droppable elements*/


.debugAssessmentScores tr th,
.debugAssessmentScores tr td {
    border-bottom:1px solid black;
}

.debugAssessmentScores tr th:not(:first-child),
.debugAssessmentScores tr td:not(:first-child) {
    border-left:1px solid black;
}

.debugAssessmentScores p {
    margin-bottom: 0;
}

@media(max-width: 1326px) {
    .login-body-wrap {
        height: 100%;
        padding: 35px 15px;
    }
}
@media(max-width: 1024px) {
    .main,
    .main.active-main {
        max-width: 100%;
        margin-left: 70px;
    }
    .course_overview_wrap .from-group-ct {
        margin-bottom: 15px;
    }
    .form-group.from-group-ct input {
        width: 100%;
        max-width: 100%;
    }

    .progressTimerSpacer {
        padding-top: 65px;
    }

    .progressTimerSticky {
        height: 65px;
    }

    .progressTimerSticky > div {
        width: 50%;
    }

    .progressTimerSticky .courseOverviewProgress .row,
    .progressTimerSticky .courseOverviewTimer {
        margin-top: 0!important;
    }

    .progressTimerSticky h5 {
        display: none;
    }

    .progressTimerSticky .clock-title {
        font-size: 2rem;
    }
}
@media(max-width: 768px) {
    .login-body-wrap .form-wrap > img {
        max-width: 175px;
    }
    .xs-mt-5 {
        margin-top: 15px !important;
    }
    .main,
    .main.active-main {
        margin-left: 0;
    }
    i.mobile-toggle {
        display: block;
    }
    .head-area-mine h3 {
        font-size: 18px;
        font-weight: 600;
    }
    .head-area-mine p {
        font-size: 12px;
    }
    #sidebar {
        width: 0;
        min-width: 0;
    }
    .open-slide {
        max-width: 300px;
        min-width: 300px !important;
    }
    .open-slide ul.sidebar-nav li span {
        animation: initial !important;
        opacity: 1;
        display: inline-block !important;
        margin-left: 15px;
        font-size: 16px;
    }
    .open-slide button.toggle-btn i.lni.lni-arrow-up,
    .open-slide button.toggle-btn i.lni.lni-arrow-right {
        display: none;
    }
    aside#sidebar i.lni.lni-arrow-right,
    aside#sidebar i.lni.lni-arrow-up {
        display: none !important;
    }
    .sidebar-nav {
        padding-top: 0;
        height: 100vh;
    }
    .sidebar-item {
        margin: 1rem 0;
    }
    a.sidebar-link img {
        width: 25px;
    }
    button.toggle-btn i.lni.lni-close {
        display: block;
    }
    #sidebar.expand,
    #sidebar-2.expand {
        width: 0;
        min-width: 0;
    }
    .banner-img {
        padding: 1rem 1rem;
    }
    .courses.mt-5 .px-5 {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }
    .forum-slide-content img {
        width: 25px;
    }
    .forum-slide-content .forum-slide-title,
    .notes-slide-content .notes-slide-title {
        font-size: 14px;
        font-weight: 600;
    }
    .forum-slide-content img,
    .notes-slide-content img {
        width: 22px;
    }
    .notes-wrap {
        margin-top: 25px;
    }
    .inp-wrap {
        gap: 15px;
    }
    .form-control {
        padding: 10px 12px;
        font-size: 12px;
    }
    span.lni.lni-search-alt {
        right: 12px;
        top: 42%;
        transform: translateY(-50%);
    }
    .inp-wrap .add-btn {
        font-size: 14px;
    }
    .forum-content {
        margin-bottom: 25px;
    }
    .progress-main-wrap p {
        margin: 15px 0 12px 0px;
    }
    .course_overview_wrap ul li {
        margin-top: 20px;
    }
    .course_overview_wrap ul li::before {
        width: 20px;
        height: 20px;
        left: -30px;
    }

}
@media(max-width: 576px) {
    .form-wrap .col-md-6:first-child {
        padding-right: 13px;
        order: 2;
    }
    .form-wrap .col-md-6:last-child {
        padding-left: 13px;
        order: 1;
        margin-bottom: 50px;
    }
    .login-body-wrap form .row:nth-child(1)::before {
        width: 70%;
        height: 1px;
        top: 48%;
        transform: translateY(-50%);
    }
    .progress-main-wrap p {
        margin: 15px 0 12px 15px;
    }
    .course_overview_wrap .d-flex {
        margin-bottom: 15px;
    }
    .course_overview_wrap .from-group-ct {
        display: block !important;
        padding: 0;
    }
    .form-group.from-group-ct label {
        width: 100%;
    }
    .form-group.from-group-ct input {
        width: 100%;
        max-width: 100%;
    }
    table.table-ct-area tr th {
        white-space: nowrap;
    }
    h1,
    h2,
    h3,
    h5,
    h6,
    h6 {
        line-height: 36px;
    }


}
@media(max-width: 465px) {
    .login-body-wrap {
        height: 100%;
        padding: 35px 15px;
    }
}
