@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

:root {
    --system_primary_color: #00c895;
    --system_primary_color_10: #00c8951a;
    --system_primary_color_20: #00c89533;
    --system_primary_color_30: #00c8954d;
    --system_primary_color_60: #00c89699;
    --system_primary_color_50: #00c89680;
    --system_primary_color_80: #00c896cc;
    --system_primary_color_90: #00c896e6;
}

/*==== BASE CSS ====*/
body {
    font-family: var(--system_text_font_family), sans-serif;
    font-size: 14px;
    line-height: 1.2857142857;
    font-weight: 400;
    color: #000000;
    background-color: #e9e9f1;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--system_title_font_family), sans-serif;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--system_secondary_color);
}

p {
    margin: 0 0;
}

img {
    max-width: 100%;
    height: auto;
}

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

a,
a:hover,
a:focus {
    text-decoration: none;
    transition: all 0.35s ease-in-out;
}

a:hover {
    color: var(--system_primary_color);
}

input,
textarea,
button {
    padding: 15px 20px;
    border: 1px solid #dfe1e1;
    outline: none;
    transition: all 0.35s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    input,
    textarea,
    button {
        padding: 10px 15px;
    }
}

@media only screen and (max-width: 767px) {
    input,
    textarea,
    button {
        padding: 10px 15px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 479px) {
    input,
    textarea,
    button {
        padding: 10px 12px;
    }
}

input::-moz-placeholder,
textarea::-moz-placeholder,
button::-moz-placeholder {
    position: relative;
    left: 0;
    -moz-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
}

input::placeholder,
textarea::placeholder,
button::placeholder {
    position: relative;
    left: 0;
    transition: all 0.35s ease-in-out;
}

input:focus,
textarea:focus,
button:focus {
    outline: none;
    border-color: var(--system_primary_color);
}

input:focus::-moz-placeholder,
textarea:focus::-moz-placeholder,
button:focus::-moz-placeholder {
    left: 5px;
    opacity: 0;
}

input:focus::placeholder,
textarea:focus::placeholder,
button:focus::placeholder {
    left: 5px;
    opacity: 0;
}

nav ul li {
    display: inline-block;
    position: relative;
    transition: all 0.35s ease-in-out;
}

/*Hide number spin button*/
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="number"] {
    -moz-appearance: textfield;
    -webkit-appearance: textfield;
    appearance: textfield;
}

/* section padding */
:root {
    --lms-section-padding: 20px;
    --lms-section-padding-medium: 70px;
    --lms-icon-width: 44px;
    --left-menu: 250px;
    --headerHeight: 86px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    :root {
        --left-menu: 250px;
    }
}

@media only screen and (min-width: 767px) and (max-width: 1439px) {
    :root {
        --left-menu: 120px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    :root {
        --lms-section-padding-medium: 60px;
        --headerHeight: 76px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    :root {
        --lms-section-padding-medium: 50px;
        --headerHeight: 66px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    :root {
        --lms-section-padding-medium: 40px;
        --headerHeight: 66px;
    }
}

@media only screen and (max-width: 767px) {
    :root {
        --lms-section-padding-medium: 25px;
        --left-menu: 44px;
        --headerHeight: 0;
    }
}

.section_padding {
    padding-top: var(--lms-section-padding);
    padding-bottom: var(--lms-section-padding);
}

.section_padding_bottom {
    padding-bottom: var(--lms-section-padding);
}

.section_padding_medium {
    padding-top: var(--lms-section-padding-medium);
    padding-bottom: var(--lms-section-padding-medium);
}

/* section title */
.section_title h5 {
    font-size: 36px;
    line-height: 1.1666666667;
    font-weight: 600;
    margin-bottom: 32px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .section_title h5 {
        font-size: 34px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section_title h5 {
        font-size: 32px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section_title h5 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .section_title h5 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 479px) {
    .section_title h5 {
        font-size: 22px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section_title h5 {
        margin-bottom: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .section_title h5 {
        margin-bottom: 24px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section_title .course_category {
        margin-top: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .section_title .course_category {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .section_title .course_category {
        display: none;
    }
}

.section_title .course_category input::-moz-placeholder {
    color: #687083 !important;
    display: block !important;
}

.section_title .course_category input,
.section_title .course_category input::placeholder,
.section_title .course_category label {
    color: #687083 !important;
    display: block !important;
}

.section_title .course_category .search_box {
    position: initial !important;
    transform: translate(0, 0);
}

.section_title .course_category .filter_dropdown {
    display: flex;
    align-items: center;
}

.section_title_filter {
    background: var(--system_primary_gradient);
    border-radius: 10px;
    margin-bottom: 35px;
    padding-right: 4px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .section_title_filter {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 991px) {
    .section_title_filter {
        margin-bottom: 20px;
    }
}

.section_title ul {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

@media only screen and (max-width: 767px) {
    .section_title ul {
        width: 100%;
        overflow-y: hidden;
        overflow-x: auto;
        padding-right: 50px;
    }
}

.section_title ul li {
    margin-left: 8px;
}

@media only screen and (max-width: 767px) {
    .section_title ul li {
        width: -moz-max-content;
        width: max-content;
        flex: 0 0 auto;
    }
}

.section_title ul li:first-child {
    margin: 0;
}

.section_title ul li:first-child a {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.section_title ul li a {
    display: block;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.6;
    color: #ffffff;
}

@media only screen and (max-width: 991px) {
    .section_title ul li a {
        padding: 10px 12px;
        font-size: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .section_title ul li a {
        line-height: 2.1428571429;
    }
}

.section_title ul li a:hover,
.section_title ul li a.active {
    background-color: var(--system_primary_dark);
}

.section_title ul li a.active {
    position: relative;
    z-index: 1;
}

.section_title ul li a.active::before {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    margin-top: -14px;
    background-color: var(--system_primary_dark);
    --width: 20px;
    width: var(--width);
    height: var(--width);
    border-radius: 4px;
    z-index: -1;
}

.section_title .search_box {
    /* flex: 0 0 auto; */
    width: 250px;
}

@media only screen and (min-width: 1581px) and (max-width: 1919px) {
    .section_title .search_box {
        width: 180px;
    }
}

@media only screen and (max-width: 1580px) {
    .section_title .search_box {
        position: absolute;
        top: 50%;
        right: 10px;
        transform: translateY(-50%);
        z-index: 3;
    }
}

@media only screen and (max-width: 767px) {
    .section_title .search_box {
        width: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .section_title .search_box label {
        width: 36px;
        height: 36px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-color: var(--system_primary_color);
        color: #ffffff;
        right: 0;
    }
}

.section_title .search_box input {
    background-color: var(--system_dark_20);
    border-color: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--system_text_font_family), sans-serif;
}

@media only screen and (max-width: 1580px) {
    .section_title .search_box input {
        display: none;
        background-color: #018060;
    }
}

@media only screen and (max-width: 767px) {
    .section_title .search_box input {
        font-size: 14px;
        padding: 5px 8px;
    }
}

.section_title .search_box input::-moz-placeholder {
    color: #ffffff;
}

.section_title .search_box input::placeholder {
    color: #ffffff;
}

.section_title .search_box .input-control-icon {
    color: #ffffff;
    cursor: pointer;
}

/* input form */
.input-control {
    position: relative;
}

.input-control:not(:first-child) {
    margin-top: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .input-control:not(:first-child) {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .input-control:not(:first-child) {
        margin-top: 15px;
    }
}

.input-control-label {
    display: block;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .input-control-label {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .input-control-label {
        font-size: 14px;
        margin-bottom: 10px;
    }
}

.input-control-label span {
    color: var(--system_primary_color);
}

.input-control-input {
    width: 100%;
    border-radius: 8px;
    background-color: transparent;
    color: var(--system_primary_color);
}

.input-control-submit {
    font-size: 16px;
    background-color: var(--system_primary_color);
    border-radius: 10px;
    color: #ffffff;
    width: auto;
    border-color: var(--system_primary_color);
}

.input-control-icon {
    padding: 0;
    border: none;
    position: absolute;
    top: 50%;
    right: 4px;
    transform: translateY(-50%);
    background-color: transparent;
    color: #000000;
    font-size: 19px;
    margin-right: 15px;
}

.input-control-icon:hover {
    color: var(--system_primary_color);
}

.input-control textarea {
    height: 300px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .input-control textarea {
        height: 250px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .input-control textarea {
        height: 250px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .input-control textarea {
        height: 200px;
    }
}

@media only screen and (max-width: 767px) {
    .input-control textarea {
        height: 150px;
    }
}

.d-flex .input-control {
    margin-top: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .d-flex .input-control {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .d-flex .input-control {
        margin-top: 15px;
    }
}

.search_box .input-control-input {
    padding: 10px 12px;
    line-height: 24px;
}

.search_box .input-control-submit {
    background-color: transparent;
    color: #000000;
    position: absolute;
    top: 0;
    right: 0;
    line-height: 18px;
}

.search_box .input-control-submit:hover {
    background-color: var(--system_primary_color);
    color: #ffffff;
}

/* site btn */
.site_btn {
    display: inline-block;
    background-color: var(--system_secondary_color);
    color: #ffffff;
    border-radius: 10px;
    padding: 15px 15px;
    font-size: 12px;
    line-height: 1.1428571429;
    font-weight: 500;
}

.site_btn[data-online] {
    background-color: #6ddc29;
}

.site_btn[data-offline] {
    background-color: #efb614;
}

.site_btn[data-compulsory] {
    background-color: #ed4c5c;
}

.site_btn[data-open] {
    background-color: #4f80e1;
}

.site_btn[data-live] {
    background-color: #fd5a5a;
}

.site_btn[data-participation] {
    background-color: #00916c;
}

.site_btn.bg-primary:hover {
    background-color: var(--system_secondary_color) !important;
}

.site_btn:hover {
    background-color: var(--system_primary_color) !important;
    color: #ffffff;
}

.bg-secondary {
    background-color: var(--system_secondary_color) !important;
}

.circle_read {
    display: inline-block;
    width: var(--lms-icon-width);
    height: var(--lms-icon-width);
    line-height: var(--lms-icon-width);
    border-radius: 100%;
    background-color: #687083;
    color: #ffffff;
    text-align: center;
    font-size: 20px;
}

.circle_read:hover {
    background-color: var(--system_primary_color);
    color: #ffffff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .circle_read {
        font-size: 18px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .circle_read {
        font-size: 18px;
    }
}

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

.enroll_btn {
    display: inline-block;
    background-color: #00916c;
    font-weight: 600;
    color: #ffffff;
    border: 1px solid #e2e3e5;
    border-radius: 100px;
    text-align: center;
    padding: 5px 35px;
}

.enroll_btn:hover {
    background-color: #005f46;
    color: #ffffff;
}

.circle-progress {
    --size: 40px;
    --dynamicColor: #e5f9f4;
    --pgPercentage: var(--value);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: #000000;
    margin-left: auto;
    margin-right: auto;
    --lms-cicrle-radial: radial-gradient(
        closest-side,
        var(--dynamicColor) 80%,
        transparent 85% 100%);
    position: relative;
}

@media only screen and (max-width: 991px) {
    .circle-progress {
        --size: 30px;
    }
}

.circle-progress-count {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000000 !important;
    font-size: 14px;
    line-height: 1;
    font-weight: 500;
}

.circle-progress.started {
    background: var(--lms-cicrle-radial),
    conic-gradient(#814bff calc(var(--pgPercentage) * 1%), #d3d7f6 0);
}

.circle-progress.not-started {
    background: var(--lms-cicrle-radial),
    conic-gradient(#ff5878 calc(var(--pgPercentage) * 1%), #eaccd1 0);
}

.circle-progress.completed {
    background: var(--lms-cicrle-radial),
    conic-gradient(#20da92 calc(var(--pgPercentage) * 1%), #b9e3f0 0);
}

.circle-progress.all {
    background: var(--lms-cicrle-radial), var(--system_primary_color);
}

/* load more */
.load_more {
    margin-top: 70px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .load_more {
        margin-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .load_more {
        margin-top: 40px;
    }
}

.load_more a {
    line-height: 20px;
    min-width: 290px;
}

@media only screen and (max-width: 767px) {
    .load_more a {
        min-width: 250px;
    }
}

.mt-25 {
    margin-top: 25px;
}

.mt-30 {
    margin-top: 30px;
}

@media only screen and (max-width: 767px) {
    .mt-30 {
        margin-top: 20px;
    }
}

.mt-35 {
    margin-top: 35px;
}

@media only screen and (max-width: 767px) {
    .mt-35 {
        margin-top: 24px;
    }
}

.mt-40 {
    margin-top: 40px;
}

@media only screen and (max-width: 767px) {
    .mt-40 {
        margin-top: 30px;
    }
}

.mt-50 {
    margin-top: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mt-50 {
        margin-top: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mt-50 {
        margin-top: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .mt-50 {
        margin-top: 24px;
    }
}

.bg-overlay {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 7;
    display: none;
}

.table {
    border: none !important;
}

.table.no-btn tr td {
    padding-top: 25px;
    padding-bottom: 25px;
}

@media only screen and (max-width: 991px) {
    .table.no-btn tr td {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

.table thead {
    background-color: var(--system_primary_color);
    color: #ffffff;
}

.table thead th {
    color: currentColor;
    padding: 19px !important;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 1279px) {
    .table thead th {
        padding: 15px !important;
    }
}

.table thead th:first-child {
    text-align: center;
}

.table tbody tr {
    border-color: rgba(130, 139, 178, 0.15);
}

.table tbody tr:hover {
    background-color: #f5f7fb;
}

.table tbody tr:hover td:first-child {
    border-left-color: #657480;
}

.table tbody tr td {
    vertical-align: middle;
    padding: 19px;
    font-size: 14px;
    font-weight: 500;
    color: #657480;
}

@media (max-width: 1279px) {
    .table tbody tr td {
        white-space: nowrap;
        padding: 15px;
    }
}

.table tbody tr td:first-child {
    text-align: center;
    border-left: 2px solid transparent;
}

.table tbody tr td a {
    border-radius: 100px;
    background-color: var(--system_primary_color);
    font-size: 12px;
    line-height: 1;
    padding: 10px 20px;
    min-width: 140px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1.5px;
}

.table tbody tr td a:hover {
    background-color: #018060 !important;
}

/* social */
.social-list {
    display: flex;
    align-items: center;
}

.social-list li {
    display: inline-block;
}

.social-list li:not(:last-child) {
    margin-right: 15px;
}

@media only screen and (max-width: 767px) {
    .social-list li:not(:last-child) {
        margin-right: 12px;
    }
}

.social-list a {
    --link: 50px;
    width: var(--link);
    height: var(--link);
    border-radius: 100%;
    background-color: #ffffff;
    display: flex !important;
    align-items: center;
    justify-content: center;
    color: #687083;
    box-shadow: 2px 4px 26px 10px rgba(0, 0, 0, 0.05);
}

@media only screen and (max-width: 991px) {
    .social-list a {
        --link: 40px;
    }
}

.social-list a i {
    transition: all 0.35s ease-in-out;
}

.social-list a .fa-facebook-f {
    color: #4b64ec;
}

.social-list a .fa-twitter {
    color: #17c7ff;
}

.social-list a .fa-youtube {
    color: #f81717;
}

.social-list a:hover {
    background-color: var(--system_primary_color);
    color: #ffffff !important;
}

.social-list a:hover i {
    color: #ffffff !important;
}

.star i {
    font-size: 16px;
    color: #feb74c;
}

.star span {
    color: #687083;
}

.star .four i:last-child {
    color: var(--system_primary_color_30);
}

.star .three i:nth-child(4),
.star .three i:nth-child(5) {
    color: var(--system_primary_color_30);
}

.star .two i:nth-child(3),
.star .two i:nth-child(4),
.star .two i:nth-child(5) {
    color: var(--system_primary_color_30);
}

.switch {
    display: inline-block;
    width: 50px;
    height: 20px;
    border-radius: 100px;
    overflow: hidden;
    position: relative;
    z-index: 1;
    cursor: pointer;
}

.switch input:checked + span {
    background-color: var(--system_primary_color);
}

.switch input:checked + span::before {
    left: calc(100% - var(--width) - 3px);
}

.switch span {
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--system_primary_color_60);
}

.switch span::before {
    content: "";
    --width: 15px;
    width: var(--width);
    height: var(--width);
    border-radius: 100%;
    background-color: #ffffff;
    position: absolute;
    top: 50%;
    left: 3px;
    transform: translateY(-50%);
    transition: all 0.35s ease-in-out;
}

.radio-btn {
    display: inline-flex;
    align-items: center;
    --width: 23px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.radio-btn:not(:last-child) {
    margin-bottom: 20px;
}

.radio-btn input:checked + .radio-mark::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.radio-mark {
    width: var(--width);
    height: var(--width);
    border-radius: 10px;
    flex: 0 0 auto;
    position: relative;
    border: 1px solid var(--system_primary_color_50);
    background-color: var(--system_primary_color_10);
}

.radio-mark::before {
    --width: 13px;
    content: "";
    width: var(--width);
    height: var(--width);
    background-color: var(--system_primary_color);
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s ease-in-out;
}

.radio-title {
    font-size: 18px;
    line-height: 1.5;
    color: #687083;
    flex: 0 0 auto;
    width: calc(100% - var(--width));
    padding-left: 18px;
}

.text-line-1 {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

/*==== HEADING CSS ====*/
.dashboard-left-logo {
    display: block;
    max-width: 100%;
    flex: 0 0 100%;
}

.dashboard-left-logo img {
    height: 84px;
    object-fit: contain;
}

@media only screen and (min-width: 767px) and (max-width: 1439px) {
    .dashboard-left-logo img {
        height: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .dashboard-left-logo img {
        max-width: 110px;
        height: 40px;
    }
}

.dashboard-left-close {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    background-color: var(--system_primary_color);
    color: #ffffff;
    justify-content: center;
    font-size: 18px;
    color: #ffffff;
    cursor: pointer;
    position: absolute;
    top: -35px;
    right: 20px;
    transition: all 0.35s ease-in-out;
    margin-right: -10px;
    display: none;
}

@media only screen and (max-width: 991px) {
    .dashboard-left-close {
        display: flex;
        align-items: center;
    }
}

.dashboard-left-menu {
    padding-top: 35px;
}

@media only screen and (min-width: 767px) and (max-width: 1439px) {
    .dashboard-left-menu {
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .dashboard-left-menu {
        padding: 0;
    }
}

.dashboard-left-menu li:not(:last-child) {
    margin-bottom: 1rem;
}

@media only screen and (max-width: 991px) {
    .dashboard-left-menu li:not(:last-child) {
        margin-bottom: 10px;
    }
}

.dashboard-left-menu li a {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 16px;
    line-height: 1.3125;
    background-color: transparent;
    padding: 13px 15px;
    padding-left: 40px;
    font-weight: 500;
    color: var(--system_secondary_color);
    font-family: var(--system_text_font_family), sans-serif;
}

@media only screen and (min-width: 767px) and (max-width: 1439px) {
    .dashboard-left-menu li a {
        justify-content: center;
        padding-left: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .dashboard-left-menu li a {
        padding: 10px 15px;
        font-size: 14px;
    }
}

.dashboard-left-menu li a.active,
.dashboard-left-menu li a:hover {
    background-color: var(--system_primary_color);
    color: #ffffff;
}

@media only screen and (min-width: 767px) and (max-width: 1439px) {
    .dashboard-left-menu li a:hover > span {
        background-color: var(--system_primary_color);
        color: #ffffff;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}

.dashboard-left-menu li a.active {
    background-color: var(--system_primary_color);
    color: #ffffff;
}

.dashboard-left-menu li a svg {
    width: 20px;
    flex: 0 0 auto;
}

.dashboard-left-menu li a span {
    padding-left: 18px;
    white-space: nowrap;
}

@media only screen and (max-width: 767px) {
    .dashboard-left-menu li a span {
        padding-left: 12px;
    }
}

@media only screen and (min-width: 767px) and (max-width: 1439px) {
    .dashboard-left-menu li a span {
        position: absolute;
        left: 80px;
        background-color: #ffffff;
        height: 100%;
        display: flex;
        align-items: center;
        padding-left: 0;
        padding-right: 20px;
        transition: all 0.35s ease-in-out;
        z-index: 8;
        min-width: 124px;
        border-radius: 4px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

.dashboard-right-top {
    padding: 10px 36px;
    background-color: #ffffff;
    padding-left: 0 !important;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 9;
    filter: drop-shadow(0px 4px 57px rgba(0, 0, 0, 0.1));
    transition: all .5s ease-in-out;;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .dashboard-right-top {
        padding: 8px 25px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dashboard-right-top {
        padding: 8px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .dashboard-right-top {
        padding: 8px 12px !important;
        position: sticky;
        top: 0;
        left: 0;
        width: 100%;
    }
}

.dashboard-right-top .top-logo {
    width: var(--left-menu);
    flex: 0 0 auto;
    padding-left: 60px;
    transition: all 0.3s ease-in-out;
}

@media only screen and (min-width: 767px) and (max-width: 1439px) {
    .dashboard-right-top .top-logo {
        padding-left: 0;
        text-align: center;
    }
}

@media only screen and (max-width: 767px) {
    .dashboard-right-top .top-logo {
        padding-left: 0 !important;
        text-align: left !important;
    }
}

@media only screen and (min-width: 767px) and (max-width: 1439px) {
    .dashboard-right-top .top-logo a:first-child {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .dashboard-right-top .top-logo a:first-child {
        display: none;
    }
}

.dashboard-right-top .top-logo a:last-child {
    display: none;
}

@media only screen and (min-width: 767px) and (max-width: 1439px) {
    .dashboard-right-top .top-logo a:last-child {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .dashboard-right-top .top-logo a:last-child {
        display: block;
    }
}

.dashboard-right-top .top-header {
    width: calc(100% - var(--left-menu));
    flex: 0 0 auto;
    transition: all 0.3s ease-in-out;
}

.dashboard-right-top-thum {
    cursor: pointer;
    padding: 10px;
    margin-left: -5px;
}

.dashboard-right-top-thum span {
    display: block;
    height: 2px;
    width: 22px;
    color: var(--system_secondary_color);
    background-color: var(--system_secondary_color);
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

.dashboard-right-top-thum span::before,
.dashboard-right-top-thum span::after {
    content: "";
    width: 100%;
    height: 100%;
    background-color: currentColor;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    margin-top: -6px;
}

.dashboard-right-top-thum span::after {
    margin-top: 6px;
}

.dashboard-right-top-cate {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #687083;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.35s ease-in-out;
}

@media (max-width: 380px) {
    .dashboard-right-top-cate {
        display: none;
    }
}

.dashboard-right-top-cate svg path,
.dashboard-right-top-cate svg rect {
    fill: #687083;
}

.dashboard-right-top-cate span {
    padding-left: 10px;
    position: relative;
    top: 1px;
}

.dashboard-right-top-cate-dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffffff;
    border: 1px solid #e2e3e5;
    width: -moz-max-content;
    width: max-content;
    padding: 10px 0px;
    width: 215px;
    margin-top: 20px;
    z-index: 9;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.03);
}

.dashboard-right-top-cate-dropdown::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    bottom: 100%;
    left: 10px;
    transform: rotate(45deg);
    border: 1px solid #e8ecf3;
    margin-bottom: -6px;
    border-right-width: 0;
    border-bottom-width: 0;
    background-color: #ffffff;
}

.dashboard-right-top-cate-dropdown-inner h6 {
    font-size: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e3e5;
    font-weight: 600;
}

.dashboard-right-top-cate-dropdown ul li.active > a {
    border-color: var(--system_primary_color);
}

.dashboard-right-top-cate-dropdown ul li.active > ul {
    display: block;
}

.dashboard-right-top-cate-dropdown ul li a {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: rgba(104, 112, 131, 0.8);
    padding: 10px 15px;
    border-right: 1px solid transparent;
}

.dashboard-right-top-cate-dropdown ul li a:hover {
    color: #687083;
}

.dashboard-right-top-cate-dropdown ul li > ul {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    background-color: #ffffff;
    border: 1px solid #e2e3e5;
    width: -moz-max-content;
    width: max-content;
    padding: 20px 20px;
    width: 250px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.03);
}

.dashboard-right-top-menu > ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.dashboard-right-top-menu .nice-select {
    border: 1px solid #c5c7cc;
    border-radius: 12px;
    padding: 18px 23px;
    min-width: 170px;
    color: #687083;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .dashboard-right-top-menu .nice-select {
        padding: 10px 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dashboard-right-top-menu .nice-select {
        padding: 10px 16px;
        min-width: 150px;
    }
}

@media only screen and (max-width: 767px) {
    .dashboard-right-top-menu .nice-select {
        display: none;
    }
}

.dashboard-right-top-menu .nice-select::after {
    display: none;
}

.dashboard-right-top-menu .nice-select::before {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 16px;
    color: currentColor;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%) scaleY(1);
}

.dashboard-right-top-menu .nice-select.open::before {
    transform: translateY(-50%) scaleY(-1);
}

.dashboard-right-top-menu .nice-select .current {
    font-size: 20px;
    line-height: 1.4;
    color: currentColor;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dashboard-right-top-menu .nice-select .current {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .dashboard-right-top-menu .nice-select .current {
        font-size: 18px;
    }
}

.dashboard-right-top-menu .nice-select .list {
    width: 100%;
}

.dashboard-right-top-menu .nice-select .list li {
    display: block;
    font-size: 16px;
}

.dashboard-right-top-menu .notify-box {
    border-radius: 12px;
    background-color: var(--system_primary_color);
    padding: 20px 12px;
    color: #ffffff;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .dashboard-right-top-menu .notify-box {
        padding: 15px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .dashboard-right-top-menu .notify-box {
        padding: 12px;
    }
}

@media only screen and (max-width: 991px) {
    .dashboard-right-top-menu .notify-box {
        padding: 11px 6px;
    }
}

@media only screen and (max-width: 413px) {
    .dashboard-right-top-menu .notify-box ul::before {
        right: 78px;
    }
}

.dashboard-right-top-menu .notify-box > li {
    display: inline-block;
}

.dashboard-right-top-menu .notify-box > li > a {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0px 18px;
    color: #ffffff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .dashboard-right-top-menu .notify-box > li > a {
        margin: 0 10px;
    }
}

@media only screen and (max-width: 991px) {
    .dashboard-right-top-menu .notify-box > li > a {
        margin: 0 8px;
    }
}

@media only screen and (max-width: 767px) {
    .dashboard-right-top-menu .notify-box > li > a svg {
        width: 20px;
    }
}

.dashboard-right-top-menu .notify-box > li > a.isNotify::before {
    --width: 6px;
    content: "";
    width: var(--width);
    height: var(--width);
    border-radius: 100%;
    background-color: #ffffff;
    position: absolute;
    top: -4px;
    right: 0;
}

.dashboard-right-top-menu-profile {
    background-color: var(--system_secondary_color);
    border-radius: 12px;
    padding: 10px 16px;
    color: #ffffff;
    text-align: left;
    position: relative;
    --lms-user-img: 46px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .dashboard-right-top-menu-profile {
        --lms-user-img: 36px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .dashboard-right-top-menu-profile {
        --lms-user-img: 36px;
        padding-top: 7px;
        padding-bottom: 7px;
        padding-left: 10px;
    }
}

@media only screen and (max-width: 991px) {
    .dashboard-right-top-menu-profile {
        --lms-user-img: 36px;
        padding: 6px 10px;
    }
}

.dashboard-right-top-menu-profile-dropdown {
    width: 100%;
    text-align: left;
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 9;
    background-color: #ffffff;
    border-radius: 12px;
    width: -moz-max-content;
    width: max-content;
    padding: 10px 20px;
    box-shadow: 0px 4px 57px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    border-bottom: 5px solid var(--system_primary_color);
}

@media only screen and (max-width: 767px) {
    .dashboard-right-top-menu-profile-dropdown {
        right: -8px;
        margin-top: 12px;
    }

    .lang-item a {
        font-size: 16px;
    }

}

.dashboard-right-top-menu-profile-dropdown::before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 100%;
    right: 20px;
    transform: rotate(45deg);
    margin-bottom: -12px;
    border-right-width: 0;
    border-bottom-width: 0;
    background-color: #ffffff;
    border-radius: 4px;
}

.dashboard-right-top-menu-profile-dropdown li {
    display: block;
}

.dashboard-right-top-menu-profile-dropdown li a:not(.actions a) {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: var(--system_secondary_color);
}

.dashboard-right-top-menu-profile-dropdown li a:not(.actions a):hover {
    text-decoration: underline;
}

.dashboard-right-top-menu-profile-dropdown.profile_dropdown {
    width: 260px;
    padding: 0;
    padding-bottom: 12px;
}

.dashboard-right-top-menu-profile-dropdown.profile_dropdown::before {
    background-color: var(--system_primary_color);
}

.dashboard-right-top-menu-profile-dropdown.lang-dropdown::before {
    background-color: #ffffff;
}


.dashboard-right-top-menu-profile-dropdown.profile_dropdown .head {
    padding: 12px 14px;
    color: #ffffff;
    border-top-left-radius: 11px;
    border-top-right-radius: 11px;
    margin-top: 0;
}

.dashboard-right-top-menu-profile-dropdown.profile_dropdown .head strong {
    color: currentColor;
    font-size: 15px;
    font-weight: 500;
}

.dashboard-right-top-menu-profile-dropdown.profile_dropdown li a {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    line-height: 2.5;
    color: var(--system_secondary_color);
    padding: 0 18px;
}

.dashboard-right-top-menu-profile-dropdown.profile_dropdown li a:hover {
    color: var(--system_primary_color);
}

.dashboard-right-top-menu-profile-dropdown.profile_dropdown
li
a.switch_instructor {
    background-color: var(--system_primary_color_60);
    color: var(--system_secondary_color);
}

.dashboard-right-top-menu-profile-dropdown.profile_dropdown li a svg {
    margin-right: 4px;
}

.dashboard-right-top-menu-profile a {
    display: flex !important;
    align-items: center;
    color: #ffffff;
}

.dashboard-right-top-menu-profile a > span {
    flex: 0 0 100%;
}

.dashboard-right-top-menu-profile a > span:last-child {
    max-width: calc(100% - var(--lms-user-img));
    padding-left: 10px;
    font-size: 15px;
    color: currentColor;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.35s ease-in-out;
}

@media only screen and (max-width: 991px) {
    .dashboard-right-top-menu-profile a > span:last-child {
        display: none;
    }
}

.dashboard-right-top-menu-profile a > span:last-child small {
    font-size: 13px;
    font-weight: 400;
    margin-top: 2px;
    display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dashboard-right-top-menu-profile a > span:last-child small {
        margin-top: 0;
    }
}

@media only screen and (max-width: 767px) {
    .dashboard-right-top-menu-profile a > span:last-child small {
        margin-top: 0;
    }
}

.dashboard-right-top-menu-profile-img {
    display: block;
    max-width: var(--lms-user-img);
    height: var(--lms-user-img);
    border-radius: 100%;
    font-size: 18px;
    color: #ffffff;
    overflow: hidden;
    background-color: var(--system_primary_color);
    border: 2px solid #ffffff;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .dashboard-right-top-menu-profile-img {
        font-size: 16px;
    }
}

.dashboard-right-top-menu-profile-img img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.dashboard-right-top-menu .notify {
    width: 400px;
    padding: 20px;
}

@media only screen and (max-width: 767px) {
    .dashboard-right-top-menu .notify {
        width: 280px;
        right: -12px;
    }
}

@media only screen and (max-width: 413px) {
    .dashboard-right-top-menu .notify {
        right: -70px;
    }
}

.dashboard-right-top-menu .notify .actions {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

@media only screen and (max-width: 767px) {
    .dashboard-right-top-menu .notify .actions {
        margin-top: 20px;
    }
}

.dashboard-right-top-menu .notify .actions a {
    text-align: center;
    width: calc(50% - 12px);
    flex: 0 0 auto;
    margin: 0 !important;
    padding: 13px 10px;
}

@media only screen and (max-width: 479px) {
    .dashboard-right-top-menu .notify .actions a {
        padding: 10px;
    }
}

.heading-clear {
    margin-top: var(--headerHeight);
}

.notify-list {
    max-height: 250px;
    overflow: auto;
}

.notify-list::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.notify-list::-webkit-scrollbar-track {
    background-color: var(--system_primary_color_20);
    border-radius: 100px;
}

.notify-list::-webkit-scrollbar-thumb {
    background-color: var(--system_primary_color);
    border-radius: 100px;
}

.notify-list li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 15px 0;
    margin-left: 15px;
    position: relative;
    z-index: 1;
}

.notify-list li:not(:last-child) {
    border-bottom: 1px solid var(--system_primary_color_10);
}

.notify-list li::before {
    content: "";
    --width: 4px;
    width: var(--width);
    height: var(--width);
    border-radius: 100%;
    background-color: var(--system_secondary_color);
    position: absolute;
    top: 50%;
    right: 100%;
    transform: translateY(-50%);
    margin-right: 10px;
}

.notify-list li a {
    width: 72%;
    flex: 0 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.notify-list li span {
    width: 28%;
    flex: 0 0 auto;
    font-size: 13px;
    color: var(--system_secondary_color);
    text-align: right;
}

/*==== DASHBOARD CSS ====*/
.white-box {
    padding: 40px 36px;
    background-color: #ffffff;
    border-radius: 20px;
    box-shadow: 0px 4px 57px rgba(0, 0, 0, 0.1);
}

@media only screen and (min-width: 992px) and (max-width: 1580px) {
    .white-box {
        padding: 30px 26px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .white-box {
        padding: 24px;
    }
}

@media only screen and (max-width: 767px) {
    .white-box {
        padding: 20px;
    }
}

.white-box.sm {
    padding: 20px;
}

.white-box.lg {
    padding: 50px 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .white-box.lg {
        padding: 54px 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .white-box.lg {
        padding: 40px 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .white-box.lg {
        padding: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .white-box.lg {
        padding: 24px;
    }
}

.white-box .section_title {
    margin-bottom: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .white-box .section_title {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .white-box .section_title {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .white-box .section_title {
        margin-bottom: 0;
    }
}

.white-box .section_title h3 {
    font-size: 36px;
    line-height: 1.1666666667;
    font-weight: 600;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .white-box .section_title h3 {
        font-size: 34px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .white-box .section_title h3 {
        font-size: 32px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .white-box .section_title h3 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .white-box .section_title h3 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 479px) {
    .white-box .section_title h3 {
        font-size: 22px;
    }
}

.white-box .section_title .collapse-btn {
    --width: 48px;
    width: var(--width);
    height: var(--width);
    border-radius: 10px;
    background-color: var(--system_primary_color);
    color: #ffffff;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    font-size: 34px;
}

@media only screen and (max-width: 767px) {
    .white-box .section_title .collapse-btn {
        font-size: 24px;
        --width: 40px;
    }
}

.white-box .section_title .collapse-btn:hover {
    background-color: #018060;
}

.dashboard_container_row {
    display: flex !important;
}

.dashboard_left {
    width: var(--left-menu);
    flex: 0 0 auto;
    background-color: #ffffff;
    height: calc(100vh - var(--headerHeight));
    overflow: auto;
    position: fixed;
    left: 0;
    z-index: 8;
    transition: all 0.35s ease-in-out;
}

.dashboard_left::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.dashboard_left::-webkit-scrollbar-track {
    background-color: var(--system_primary_color_20);
    border-radius: 100px;
}

.dashboard_left::-webkit-scrollbar-thumb {
    background-color: var(--system_primary_color);
    border-radius: 100px;
}

@media (min-width: 768px) and (max-width: 1439px) {
    .dashboard_left {
        height: auto;
        overflow: visible;
        position: unset;
    }
}

@media only screen and (max-width: 991px) {
    .dashboard_left {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100%;
        max-width: 70%;
        max-height: 100%;
        width: 100%;
        background-color: #ffffff;
        z-index: 9;
        opacity: 0;
        visibility: hidden;
        overflow: auto;
        transition: all 0.35s ease-in-out;
    }
}

.dashboard_left.mobile-menu {
    opacity: 1;
    visibility: visible;
    left: 0;
}

.dashboard_right {
    width: calc(100% - var(--left-menu));
    flex: 0 0 auto;
    margin-left: var(--left-menu);
    transition: all 0.35s ease-in-out;
}

@media (min-width: 768px) and (max-width: 1439px) {
    .dashboard_right {
        margin-left: 0;
    }
}

@media only screen and (max-width: 991px) {
    .dashboard_right {
        width: 100%;
        max-height: -moz-max-content;
        max-height: max-content;
        margin-left: 0;
    }
}

.dashboard_main_content {
    --bs-gutter-x: 30px;
    padding: var(--bs-gutter-x);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .dashboard_main_content {
        --bs-gutter-x: 20px;
        padding-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dashboard_main_content {
        --bs-gutter-x: 20px;
        padding-bottom: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .dashboard_main_content {
        --bs-gutter-x: 15px;
        padding-bottom: 30px;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .dashboard_main_content_main_body .col-xl-9 {
        width: 70%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .dashboard_main_content_main_body .col-xl-9 {
        width: 70%;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .dashboard_main_content_main_body .col-xl-3 {
        width: 30%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .dashboard_main_content_main_body .col-xl-3 {
        width: 30%;
    }
}

@media (min-width: 1280px) and (max-width: 1580px) {
    .dashboard_main_content_main_body .course .col-xl-4,
    .dashboard_main_content_main_body .quiz .col-xl-4 {
        width: 33.33333%;
    }
}

.dashboard_main_content_top {
    margin-top: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .dashboard_main_content_top {
        margin-top: 15px;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1580px) {
    .dashboard_main_content_top .col-xl-8 {
        width: 58.3333333333%;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1580px) {
    .dashboard_main_content_top .col-xl-4 {
        width: 41.6666666667%;
    }
}

.dashboard_main_content_top_banner_item {
    width: 100%;
    height: 346px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.dashboard_main_content_top_banner_item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .dashboard_main_content_top_banner_item {
        height: 336px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dashboard_main_content_top_banner_item {
        padding-bottom: 40%;
        height: auto;
    }
}

@media only screen and (max-width: 767px) {
    .dashboard_main_content_top_banner_item {
        padding-bottom: 50%;
        height: auto;
    }
}

.dashboard_main_content_top .calender-area {
    border: 1px solid #f2f0f9;
    background-color: #fefbff;
    border-radius: 10px;
    padding: 24px;
    padding-bottom: 0 !important;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .dashboard_main_content_top .calender-area {
        padding: 14px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .dashboard_main_content_top .calender-area {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .dashboard_main_content_top .calender-area {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .dashboard_main_content_top .calender-area {
        padding: 1rem;
    }
}

.dashboard_main_content_top .calender-area h5 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* recent activities */
.activities_card {
    padding-right: 8px !important;
}

.activities_card_title p {
    font-size: 16px;
    text-transform: uppercase;
    color: var(--system_secondary_color);
    font-weight: 700;
}

.activities_card_items {
    max-height: 400px;
    overflow: hidden;
    overflow-y: scroll;
    margin-top: 10px;
}

.activities_card_items::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.activities_card_items::-webkit-scrollbar-track {
    background-color: var(--system_primary_color_20);
    border-radius: 100px;
}

.activities_card_items::-webkit-scrollbar-thumb {
    background-color: var(--system_primary_color);
    border-radius: 100px;
}

.activities_card_items_item {
    display: flex;
    padding: 7px 0px;
    color: var(--system_secondary_color);
}

.activities_card_items_item:hover {
    color: var(--system_primary_color_60);
}

.activities_card_items_item > div {
    --lms-activities: 40px;
    flex: 0 0 100%;
}

@media only screen and (max-width: 767px) {
    .activities_card_items_item > div {
        --lms-activities: 50px;
    }
}

.activities_card_items_item > div:first-child {
    max-width: var(--lms-activities);
}

.activities_card_items_item > div:last-child {
    max-width: calc(100% - var(--lms-activities));
}

.activities_card_items_item_img {
    width: 100%;
    height: var(--lms-activities);
    border: 1px solid #adadad;
    border-radius: 100%;
    overflow: hidden;
}

.activities_card_items_item_img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.activities_card_items_item_content {
    padding: 0 12px;
}

.activities_card_items_item_content p {
    font-size: 14px;
    line-height: 1.4285714286;
}

.activities_card_items_item_content p strong {
    font-weight: 700;
}

.activities_card_items_item_content span {
    font-weight: 700;
    color: var(--system_primary_color);
}

.activities_card .view-all a {
    font-family: var(--system_text_font_family), sans-serif;
    font-weight: 600;
    text-decoration: underline;
    color: var(--system_primary_color);
}

.activities_card .view-all a:hover {
    color: var(--system_secondary_color);
}

/* badge */
.badges.activities_card {
    padding: 0 !important;
}

.badges.activities_card .activities_card_title {
    margin-bottom: 14px;
}

.badges .d-flex {
    gap: 12px;
}

.badges-card {
    border-radius: 10px;
    background-color: var(--system_primary_color);
    padding: 3px;
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    width: calc(50% - 6px);
}

.badges-card svg {
    color: #ffffff;
    width: 28px;
}

@media only screen and (min-width: 1280px) and (max-width: 1580px) {
    .badges-card svg {
        width: 24px;
    }
}

.badges-card .icon {
    width: 33.3333333333%;
    flex: 0 0 auto;
    text-align: center;
}

.badges-card .content {
    background-color: #ffffff;
    padding: 8px 10px;
    width: 66.6666666667%;
    flex: 0 0 auto;
    border-radius: 12px;
}

.badges-card .content span {
    font-size: 13px;
    font-weight: 500;
    color: var(--system_secondary_color);
    white-space: nowrap;
}

@media only screen and (min-width: 1280px) and (max-width: 1580px) {
    .badges-card .content span {
        font-size: 13px;
    }
}

.badges-card .content strong {
    color: var(--system_secondary_color);
    font-size: 18px;
}

.badges-content {
    padding: 20px;
    padding-right: 8px;
}

.badges-lists {
    max-height: 290px;
    padding-right: 8px;
    overflow: auto;
}

.badges-lists::-webkit-scrollbar,
.badge_modals::-webkit-scrollbar, .reward-leader-content::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.badges-lists::-webkit-scrollbar-track,
.badge_modals::-webkit-scrollbar-track, .reward-leader-content::-webkit-scrollbar-track {
    background-color: var(--system_primary_color_20);
    border-radius: 100px;
}

.badges-lists::-webkit-scrollbar-thumb,
.badge_modals::-webkit-scrollbar-thumb, .reward-leader-content::-webkit-scrollbar-thumb {
    background-color: var(--system_primary_color);
    border-radius: 100px;
}

.badges-list {
    display: flex;
    align-items: center;
}

.badges-list:not(:last-child) {
    margin-bottom: 20px;
}

.badges-list .left {
    width: 66.6666666667%;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
}

.badges-list .left strong {
    font-weight: 700;
    color: var(--system_secondary_color);
}

.badges-list .left .img {
    --img: 40px;
    max-width: var(--img);
    flex: 0 0 var(--img);
    height: var(--img);
    margin: 0 8px;
    border-radius: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.badges-list .left .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.badges-list .left .img.border {
    border-color: var(--system_primary_color) !important;
}

.badges-list .left span {
    font-weight: 500;
    color: #687083;
}

.badges-list .right {
    width: 33.3333333333%;
    flex: 0 0 auto;
}

.badges-list .right span {
    margin-right: 12px;
    color: var(--system_secondary_color);
}

.badges-list .right img {
    width: auto;
    display: inline-block;
}

.badges-footer {
    padding: 1rem;
    padding-right: 46px;
    box-shadow: 0px -2px 4px var(--system_primary_color_20);
}

.badges-footer .right {
    text-align: right;
}

.badges-slider {
    box-shadow: 0px 4px 57px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

.badges-slider .owl-dots {
    bottom: 84px;
    padding: 4px 11px;
}

.badges-slider .owl-dot {
    --width: 6px;
}

.badges-modal .modal-content {
    border-radius: 0;
    background-color: transparent;
}

.badges-modal .modal-header {
    border: none;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.badges-modal .modal-body {
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    background-color: #ffffff;
    padding: 28px 20px;
}

.badges-modal-list {
    margin-bottom: 28px;
}

.badges-modal-list p,
.badges-modal-list li {
    font-size: 14px;
    line-height: 1.1428571429;
    font-weight: 500;
}

.badges-modal-list p {
    margin-bottom: 10px;
    opacity: 0.8;
    text-transform: uppercase;
    color: #687083;
}

.badges-modal-list li {
    color: #35353f;
}

.badges-modal-list li:not(:last-child) {
    margin-bottom: 10px;
}

.badges-modal-list li i {
    font-size: 20px;
}

.badges-modal-list li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.badges-modal .left {
    width: 83.3333333333%;
    flex: 0 0 auto;
}

.badges-modal .right {
    width: 16.6666666667%;
    flex: 0 0 auto;
    text-align: right;
}

.badges-modal .right span {
    width: 41px;
    height: 31px;
    border: 1px solid #687083;
    border-radius: 4px;
    color: #687083;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.badges-modal-footer {
    border-top: 1px dashed #a9a9aa;
    padding-top: 28px;
}

.badges-modal-footer .left span {
    color: #a9a9aa;
}

.badges-modal-footer .right span {
    background-color: #687083;
    border-color: #687083;
    color: #ffffff;
}

/* news */
.news_box_items {
    margin-top: 15px;
    max-height: 400px;
    overflow: auto;
}

.news_box_items::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.news_box_items::-webkit-scrollbar-track {
    background-color: var(--system_primary_color_20);
    border-radius: 100px;
}

.news_box_items::-webkit-scrollbar-thumb {
    background-color: var(--system_primary_color);
    border-radius: 100px;
}

.news_box_items_item {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    --lms-news-img: 72px;
    color: var(--system_secondary_color);
}

.news_box_items_item:hover {
    color: var(--system_primary_color);
}

.news_box_items_item:not(:last-child) {
    margin-bottom: 15px;
}

.news_box_items_item .img {
    width: var(--lms-news-img);
    height: var(--lms-news-img);
    overflow: hidden;
    border-radius: 10px;
    flex: 0 0 auto;
}

.news_box_items_item .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.news_box_items_item .content {
    width: calc(100% - var(--lms-news-img));
    flex: 0 0 auto;
    padding-left: 15px;
}

.news_box_items_item .content span {
    display: block;
    font-size: 14px;
    line-height: 1;
    color: #687083;
}

.news_box_items_item .content span span {
    display: inline-block;
    color: var(--system_secondary_color);
}

.news_box_items_item .content strong {
    display: block;
    font-weight: 600;
    color: currentColor;
    margin-top: 5px;
    transition: all 0.35s ease-in-out;
}

/* enroll items */
@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .enroll .col-xxl-2 {
        width: 25%;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .enroll .col-xxl-10 {
        width: 75%;
    }
}

.enroll .input-control-input {
    padding: 10px 15px;
    line-height: 16px;
    border-color: var(--system_primary_color);
}

.enroll .input-control-icon {
    color: var(--system_primary_color);
}

.enroll_filter {
    background-color: #ffffff;
    padding-top: 20px;
    padding-bottom: 15px;
    margin-top: 20px;
    border-radius: 10px;
    max-height: 330px;
    overflow: auto;
    padding-right: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .enroll_filter {
        margin-top: 15px;
        padding-top: 15px;
        margin-bottom: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .enroll_filter {
        margin-top: 15px;
        padding-top: 15px;
        margin-bottom: 15px;
    }
}

.enroll_filter::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.enroll_filter::-webkit-scrollbar-track {
    background-color: var(--system_primary_color_20);
    border-radius: 100px;
}

.enroll_filter::-webkit-scrollbar-thumb {
    background-color: var(--system_primary_color);
    border-radius: 100px;
}

.enroll_filter li {
    display: block;
}

.enroll_filter li a {
    display: block;
    padding: 10px 15px;
    color: #000000;
}

.enroll_filter li a:hover {
    color: var(--system_primary_color);
}

.enroll_filter li a.active {
    background-color: var(--system_primary_color);
    color: #ffffff;
    border-radius: 4px;
}



.enroll_slider .owl-nav button, .enroll_slider_quiz .owl-nav button {
    --width: 42px;
    width: var(--width);
    height: var(--width);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--system_primary_color) !important;
    background-color: #ffffffcc !important;
    font-size: 20px !important;

}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .enroll_slider .owl-nav button, .enroll_slider_quiz .owl-nav button {
        --width: 80px;
    }
}

@media only screen and (max-width: 991px) {
    .enroll_slider .owl-nav button, .enroll_slider_quiz .owl-nav button {
        --width: 60px;
    }
}

.enroll_slider .owl-nav button:hover, .enroll_slider_quiz .owl-nav button:hover {
    color: #ffffff !important;
}

.enroll_slider .owl-nav button i, .enroll_slider_quiz .owl-nav button i {
    font-weight: 900 !important;

}

.enroll_slider .owl-nav button.disabled, .enroll_slider_quiz .owl-nav button.disabled {
    display: none;
}

.enroll .course-item, .enroll .quiz-item {
    margin-top: 0 !important;
}

/* login devices */
@media only screen and (max-width: 767px) {
    .login_info {
        overflow: hidden;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
}

.login_info_title h2 {
    font-size: 36px;
    line-height: 1.1666666667;
    margin-bottom: 40px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .login_info_title h2 {
        font-size: 34px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .login_info_title h2 {
        font-size: 32px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .login_info_title h2 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .login_info_title h2 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 479px) {
    .login_info_title h2 {
        font-size: 22px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .login_info_title h2 {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .login_info_title h2 {
        margin-bottom: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .login_info_title h2 {
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .login_info_title h2 {
        margin-bottom: 20px;
    }
}

.login_info_table {
    margin-top: -15px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .login_info_table {
        margin-top: -12px;
    }
}

@media only screen and (max-width: 767px) {
    .login_info_table {
        overflow-x: scroll;
        margin-top: -10px;
    }
}

.login_info_table table {
    width: 100%;
    border: none !important;
}

@media only screen and (max-width: 767px) {
    .login_info_table table {
        width: 500px;
    }
}

.login_info_table table tr {
    background-color: transparent !important;
}

.login_info_table table tr th {
    font-weight: 500;
    color: #000000 !important;
    border-bottom: none !important;
}

.login_info_table table tr th,
.login_info_table table tr td {
    font-size: 16px;
    line-height: 1.5;
    color: #687083;
    padding: 15px 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .login_info_table table tr th,
    .login_info_table table tr td {
        font-size: 14px;
        padding: 12px 0px;
    }
}

@media only screen and (max-width: 767px) {
    .login_info_table table tr th,
    .login_info_table table tr td {
        font-size: 14px;
        padding: 10px 0px;
    }
}

.login_info_table table tr th:not(:first-child),
.login_info_table table tr th:not(:last-child),
.login_info_table table tr td:not(:first-child),
.login_info_table table tr td:not(:last-child) {
    padding-left: 10px;
    padding-right: 10px;
}

.login_info_table table tr th:last-child,
.login_info_table table tr td:last-child {
    text-align: center;
}

.login_info_table table tr th .site_btn,
.login_info_table table tr td .site_btn {
    border-radius: 4px;
    text-transform: capitalize;
    background-color: var(--system_primary_color);
    color: #ffffff;
}

.login_info_table table tr th .site_btn:hover,
.login_info_table table tr td .site_btn:hover {
    background-color: #000000 !important;
}

.login_info_table table tr td {
    border-bottom: 1px solid #e2e3e5 !important;
}

/*==== RATING MODAL POPUP ====*/
.data_modal {
    --lms-rating-modal: 20px;
    width: 100%;
    max-width: 325px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 11;
    background-color: #ffffff;
    border-radius: 5px;
    padding: var(--lms-rating-modal) 0px;
    display: none;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.05);
}

@media only screen and (max-width: 767px) {
    .data_modal {
        --lms-rating-modal: 15px;
    }
}

.data_modal_close {
    font-size: 18px;
    color: #687083;
    cursor: pointer;
    transition: all 0.35s ease-in-out;
}

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

.data_modal_close:hover {
    color: var(--system_primary_color);
}

.data_modal_head {
    padding-left: var(--lms-rating-modal);
    padding-right: var(--lms-rating-modal);
}

.data_modal_wrapper {
    padding-left: var(--lms-rating-modal);
    padding-right: var(--lms-rating-modal);
}

.data_modal_wrapper p {
    font-size: 16px;
    color: #687083;
}

.data_modal_footer {
    margin-top: var(--lms-rating-modal);
    padding-top: var(--lms-rating-modal);
    border-top: 1px solid #e2e3e5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.data_modal_footer .site_btn {
    margin-left: 5px;
    margin-right: 5px;
    border-radius: 5px;
    background-color: var(--system_primary_color) !important;
    border-color: var(--system_primary_color);
}

.data_modal_footer .site_btn:hover {
    background-color: #000000 !important;
    border-color: #000000;
}

.report-card {
    padding-top: 34px !important;
}

@media only screen and (max-width: 767px) {
    .report-card {
        padding-top: 24px !important;
    }
}

.logOut .input-group {
    border: 1px solid #e2e3e5;
    overflow: hidden;
}

.logOut .input-group-text {
    border: none;
    color: #687083;
    background-color: #e9e9f1;
}

.logOut .form-control {
    border: none;
    padding: 12px 16px;
}

/* course css */
@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .course .col-xxl-6 {
        padding-right: 50px;
        width: 100%;
    }
}

.course_category {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

ul.course_category li select {
    padding-top: 0.9rem;
    padding-bottom: 0.9rem;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .course_category {
        margin-bottom: 10px;
        row-gap: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .course_category {
        margin-bottom: 0px;
        row-gap: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .course_category {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 10px;
    }
}

.course_category_item {
    display: flex;
    align-items: center;
    border: 1px solid var(--system_primary_color_60);
    background: var(--system_primary_color_10);
    border-radius: 8px;
    padding: 7px 15px;
    text-align: center;
    transition: all 0.35s ease-in-out;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: all 0.35s ease-in-out;
}

@media only screen and (max-width: 991px) {
    .course_category_item {
        padding: 6px 10px;
    }
}

.course_category_item:not(:last-child) {
    margin-right: 10px;
}

@media only screen and (max-width: 767px) {
    .course_category_item:not(:last-child) {
        margin-right: 0px;
    }
}

.course_category_item:hover,
.course_category_item.active {
    background: var(--system_secondary_color);
}

.course_category_item:hover span,
.course_category_item:hover p,
.course_category_item.active span,
.course_category_item.active p {
    color: #ffffff !important;
}

.course_category_item:hover .circle-progress,
.course_category_item.active .circle-progress {
    --dynamicColor: var(--system_secondary_color);
}

.course_category_item p {
    color: var(--system_secondary_color);
    font-size: 16px;
    font-weight: 500;
    margin-right: 10px;
    min-width: 34px;
    text-align: left;
}

@media only screen and (max-width: 991px) {
    .course_category_item p {
        font-size: 14px;
        min-width: 24px;
    }
}

.course_category .filter_dropdown {
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 1580px) {
    .course_category .filter_dropdown {
        display: none;
    }
}

.course_category .filter_dropdown label {
    white-space: nowrap;
    margin-right: 18px;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    color: var(--system_secondary_color);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course_category .filter_dropdown label {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .course_category .filter_dropdown label {
        font-size: 18px;
    }
}

.course_category .filter_dropdown .select2-selection--single {
    padding: 12px 16px;
    line-height: 20px;
    min-width: 155px;
}

.course_category .search_box {
    width: 250px;
    display: block;
}

@media only screen and (max-width: 767px) {
    .course_category .search_box {
        width: 230px;
    }
}

.course_category .search_box input {
    background-color: var(--system_primary_color_10);
    border-color: transparent;
    padding: 15px 12px;
}

@media only screen and (max-width: 767px) {
    .course_category .search_box input {
        padding: 12px;
    }
}

.course_category .search_box label {
    color: var(--system_primary_color);
}

.course-item {
    border: 1px solid #e2e3e5;
    overflow: hidden;
    border-radius: 10px;
    margin-top: 30px;
}

.course-item-top {
    position: relative;
    z-index: 1;
}

.course-item-top:hover .play-btn {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.course-item-top .wishlist {
    --width: 36px;
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    width: var(--width);
    height: var(--width);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: var(--system_primary_color);
}

.course-item-top .wishlist:hover,
.course-item-top .wishlist.wished {
    background-color: var(--system_primary_color);
    color: #ffffff;
}

.course-item-top .wishlist.wished path {
    fill: currentColor;
}

.course-item-top .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    --width: 70px;
    width: var(--width);
    height: var(--width);
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--system_secondary_color);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease-in-out;
    pointer-events: none;
}

.course-item-top .play-btn:hover {
    background-color: var(--system_primary_color);
    color: #ffffff;
}

.course-item-img {
    width: 100%;
    padding-bottom: 70%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.course-item-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

@media only screen and (max-width: 991px) {
    .course-item-img {
        padding-bottom: 50%;
    }
}

.course-item-content {
    padding: 30px 20px;
    padding-top: 0 !important;
    position: relative;
    z-index: 2;
    margin-top: -20px;
}

.course-item-info {
    margin-bottom: 1rem;
    gap: 6px;

}


.course-item-info li {
    --width: 48px !important;
    display: inline-block;
    width: var(--width);
    height: var(--width);
    flex: 0 0 auto;
    box-shadow: 0px 4px 57px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background-color: #ffffff;
    color: var(--system_primary_color);
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    font-size: 10px;
}

/*.course-item-info li:not(:last-child) {*/
/*    margin-right: 10px;*/
/*}*/

@media only screen and (min-width: 1580px) and (max-width: 1700px) {

    .course-item-info li {
        --width: 50px;
    }

    .course-item-info li svg {
        height: 15px;
        width: 15px;
    }

    .course-item-info li span {
        font-size: 12px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1579px) {
    .course-item-info li {
        --width: 44px;
    }

    .course-item-info li svg {
        height: 15px;
        width: 15px;
    }

    .course-item-info li span {
        font-size: 12px;
    }
}

@media only screen and (max-width: 479px) {
    .course-item-info li:not(:last-child) {
        margin-right: 6px;
    }

    .course-item-info li svg {
        height: 15px;
        width: 15px;
    }

    .course-item-info li span {
        font-size: 12px;
    }

}


@media only screen and (max-width: 400px) {
    .course-item-info li {
        --width: 44px;
    }

    .course-item-info li svg {
        height: 15px;
        width: 15px;
    }

    .course-item-info li span {
        font-size: 12px;
    }
}

.course-item-info li svg {
    margin-bottom: 4px;
}

.course-item-info li:hover {
    background: var(--system_primary_gradient);
    color: #ffffff;
}

.course-item-type {
    margin-bottom: 20px;
}

.course-item-type button {
    padding: 8px 15px;
    pointer-events: none;
}

/*.course-item-type button:not(:last-child) {
    margin-right: 10px;
}*/

.course-item-title {
    font-size: 16px;
    line-height: 1.1875;
    color: var(--system_secondary_color);
    font-weight: 500;
    margin-bottom: 24px;
    font-family: var(--system_title_font_family), sans-serif;
    min-height: 38px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media only screen and (max-width: 479px) {
    .course-item-title {
        margin-bottom: 18px;
    }
}

.course-item-title:hover {
    color: var(--system_primary_color);
}

.course-item-sortDetails {
    margin-bottom: 26px;
}

.course-item-sortDetails li {
    display: flex;
    align-items: center;
    font-size: 14px;
}

.course-item-sortDetails li:not(:last-child) {
    margin-bottom: 10px;
}

.course-item-sortDetails li strong {
    width: 29.1666666667%;
    flex: 0 0 auto;
    color: var(--system_secondary_color);
    font-weight: 700;
    display: flex;
    align-items: center;
}

.course-item-sortDetails li > span {
    width: 300px; /* Set a fixed width */
    white-space: nowrap; /* Prevent text from wrapping */
    overflow: hidden;
    text-overflow: ellipsis;
    color: #687083;
    font-weight: 400;
    padding-left: 20px;
}

.course-item-sortDetails li > span a {
    color: currentColor;
}

.course-item-sortDetails li > span a:hover {
    color: var(--system_primary_color);
}

.course-item-footer a {
    background: var(--system_primary_color);
    color: #ffffff;
    display: block;
    padding: 11px 20px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-item-footer a {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .course-item-footer a {
        font-size: 18px;
    }
}

.course-banner {
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 126px 50px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

@media (min-width: 1581px) {
    .course-banner {
        padding-left: 200px;
        padding-right: 200px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .course-banner {
        padding: 100px 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .course-banner {
        padding: 100px 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-banner {
        padding: 80px 30px;
    }
}

@media only screen and (max-width: 767px) {
    .course-banner {
        padding: 60px 30px;
    }
}

.course-banner::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.8);
    filter: blur(10px);
    z-index: -1;
}

.course-banner span {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    border-radius: 8px;
    padding: 10px 46px;
    display: inline-block;
    margin-bottom: 34px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-banner span {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .course-banner span {
        font-size: 18px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .course-banner span {
        margin-bottom: 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-banner span {
        margin-bottom: 20px;
        padding: 10px 36px;
    }
}

@media only screen and (max-width: 767px) {
    .course-banner span {
        margin-bottom: 16px;
        padding: 10px 16px;
    }
}

.course-banner h2 {
    color: #ffffff;
    margin-bottom: 0;
    font-size: 48px;
    line-height: 1.25;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .course-banner h2 {
        font-size: 44px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .course-banner h2 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-banner h2 {
        font-size: 34px;
    }
}

@media only screen and (max-width: 767px) {
    .course-banner h2 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 479px) {
    .course-banner h2 {
        font-size: 24px;
    }
}

.course-details {
    margin-top: 50px;
    padding-bottom: 100px;
}

@media only screen and (max-width: 767px) {
    .course-details {
        margin-top: 35px;
        padding-bottom: 50px;
    }
}

.course-details h4 {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .course-details h4 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-details h4 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .course-details h4 {
        font-size: 24px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .course-details h4 {
        margin-bottom: 24px;
    }
}

@media only screen and (max-width: 991px) {
    .course-details h4 {
        margin-bottom: 20px;
    }
}

.course-details-preview {
    display: block;
    height: 100%;
    padding-bottom: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    margin-bottom: 26px;
}

@media only screen and (max-width: 991px) {
    .course-details-preview {
        margin-bottom: 20px;
    }
}

.course-details-preview .img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.course-details-preview .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.course-details-content .tab-content {
    margin-top: 30px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .course-details-content .tab-pane .mb-md-5 {
        margin-bottom: 2rem !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-details-content .tab-pane .mb-md-5 {
        margin-bottom: 2rem !important;
    }
}

.course-details-content .tab-pane h3 {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .course-details-content .tab-pane h3 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-details-content .tab-pane h3 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .course-details-content .tab-pane h3 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 991px) {
    .course-details-content .tab-pane h3 {
        margin-bottom: 10px;
    }
}

.course-details-content .tab-pane p:not(:last-child) {
    margin-bottom: 15px;
}

@media only screen and (max-width: 767px) {
    .course-details-content .tab-pane p:not(:last-child) {
        margin-bottom: 10px;
    }
}

.course-details-content .tab-pane p,
.course-details-content .tab-pane li {
    color: var(--system_secondary_color);
    font-size: 16px;
    line-height: 1.875;
}

@media only screen and (max-width: 767px) {
    .course-details-content .tab-pane p,
    .course-details-content .tab-pane li {
        font-size: 14px;
    }
}

.course-details-content .tab-pane ul {
    padding-left: 10px;
}

.course-details-content .tab-pane ul li {
    position: relative;
    z-index: 1;
    padding: 5px 0px;
    display: flex;
    line-height: 1.5;
}

.course-details-content .tab-pane ul li::before {
    --width: 6px;
    content: "";
    width: var(--width);
    height: var(--width);
    flex: 0 0 auto;
    border-radius: 100%;
    background-color: var(--system_secondary_color);
    position: relative;
    top: 0px;
    margin-right: 16px;
}

.course-details-info {
    background-color: #ffffff;
    padding: 34px;
    border-radius: 15px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .course-details-info {
        padding: 24px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .course-details-info {
        margin-top: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-details-info {
        padding: 24px;
        margin-top: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .course-details-info {
        padding: 20px;
        margin-top: 30px;
    }
}

.course-details-info .site_btn {
    font-size: 18px;
    font-weight: 500;
}

.course-details-info ul {
    margin-top: 20px;
}

.course-details-info ul li {
    padding: 20px 0px;
    color: var(--system_secondary_color);
    border-bottom: 1px solid var(--system_primary_color_30);
    font-size: 14px;
}

.course-details-info ul li span svg {
    color: var(--system_primary_color);
}

@media only screen and (max-width: 767px) {
    .course-details-info ul li {
        padding: 12px 0px;
    }
}

.course-details-info ul li svg {
    margin-right: 8px;
}

.course-details-post {
    background-color: var(--system_primary_color_10);
    border-radius: 16px;
    padding: 16px 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .course-details-post {
        padding: 0;
        border-radius: 0;
        background-color: transparent;
        flex-wrap: wrap;
    }
}

@media only screen and (max-width: 767px) {
    .course-details-post {
        flex-wrap: wrap;
    }
}

.course-details-post .left {
    width: 50%;
    flex: 0 0 auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .course-details-post .left {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .course-details-post .left {
        width: 100%;
    }
}

.course-details-post .left > div {
    padding: 7px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .course-details-post .left > div {
        margin: auto;
    }
}

@media only screen and (max-width: 767px) {
    .course-details-post .left > div {
        margin: auto;
    }
}

.course-details-post .left > div .img {
    --width: 30px;
    width: var(--width);
    height: var(--width);
    border-radius: 100%;
    margin-right: 7px;
    overflow: hidden;
}

.course-details-post .left > div span {
    margin-right: 12px;
}

.course-details-post .right {
    width: 50%;
    flex: 0 0 auto;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .course-details-post .right {
        width: 100%;
        text-align: center !important;
        margin-top: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .course-details-post .right {
        width: 100%;
        text-align: center !important;
        margin-top: 15px;
    }
}

.course-details-post .right p {
    color: var(--system_secondary_color);
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
}

.course-curriculum .accordion-item:not(:last-child) {
    margin-bottom: 1rem;
}

@media only screen and (max-width: 767px) {
    .course-curriculum .accordion-item:not(:last-child) {
        margin-bottom: 12px;
    }
}

.course-curriculum .accordion-button span {
    font-size: 16px;
    line-height: 1.4;
    width: 66.6666666667%;
    flex: 0 0 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-curriculum .accordion-button span {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .course-curriculum .accordion-button span {
        font-size: 18px;
    }
}

@media only screen and (max-width: 479px) {
    .course-curriculum .accordion-button span {
        font-size: 14px;
    }
}

.course-curriculum .accordion-button div {
    font-size: 14px;
    font-weight: 300;
    width: 33.3333333333%;
    flex: 0 0 auto;
    text-align: end;
}

@media only screen and (max-width: 479px) {
    .course-curriculum .accordion-button div {
        font-size: 10px;
    }
}

.course-curriculum .accordion-body ul li {
    color: var(--system_secondary_color);
    padding: 10px 0px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-curriculum .accordion-body ul li {
        padding: 8px 0;
    }
}

@media only screen and (max-width: 767px) {
    .course-curriculum .accordion-body ul li {
        padding: 6px 0;
    }
}

@media only screen and (max-width: 479px) {
    .course-curriculum .accordion-body ul li {
        font-size: 14px;
    }
}

.course-curriculum .accordion-body ul li:hover .right a {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.course-curriculum .accordion-body ul li:hover .play {
    background-color: var(--system_primary_color);
}

.course-curriculum .accordion-body ul li .left {
    width: 66.6666666667%;
    flex: 0 0 auto;
}

@media only screen and (max-width: 767px) {
    .course-curriculum .accordion-body ul li .left {
        width: 60%;
    }
}

.course-curriculum .accordion-body ul li .left span {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.course-curriculum .accordion-body ul li .right {
    width: 33.3333333333%;
    flex: 0 0 auto;
}

.course-curriculum .accordion-body ul li .right a {
    color: var(--system_primary_color);
    text-decoration: underline !important;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.course-curriculum .accordion-body ul li .play {
    --width: 24px;
    width: var(--width);
    height: var(--width);
    flex: 0 0 auto;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--system_secondary_color);
    font-size: 8px;
    color: #ffffff;
}

.course-rating-count {
    border-radius: 20px;
    padding: 30px;
    background-color: var(--system_primary_color_60);
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .course-rating-count {
        padding: 20px;
    }
}

@media only screen and (max-width: 991px) {
    .course-rating-count {
        padding: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .course-rating-count {
        flex: 0 0 auto;
        width: 100%;
    }
}

.course-rating-count h4 {
    font-size: 48px;
    line-height: 1.25;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .course-rating-count h4 {
        font-size: 44px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .course-rating-count h4 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-rating-count h4 {
        font-size: 34px;
    }
}

@media only screen and (max-width: 767px) {
    .course-rating-count h4 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 479px) {
    .course-rating-count h4 {
        font-size: 24px;
    }
}

.course-rating-count p {
    font-size: 24px;
    line-height: 1.1666666667;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-rating-count p {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .course-rating-count p {
        font-size: 18px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .course-rating-count p {
        font-size: 18px;
    }
}

.course-rating .right {
    padding-left: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .course-rating .right {
        padding-left: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .course-rating .right {
        padding-left: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .course-rating .right {
        flex: 0 0 auto;
        width: 100%;
        padding-left: 0;
        margin-top: 1rem;
    }
}

.course-rating .right .progress {
    flex: 0 0 auto;
    width: 66.6666666667%;
    background-color: var(--system_primary_color_10);
    border: 1px solid var(--system_primary_color_30);
    height: 17px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .course-rating .right .progress {
        width: 58.3333333333%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .course-rating .right .progress {
        width: 50%;
    }
}

@media only screen and (max-width: 991px) {
    .course-rating .right .progress {
        width: 58.3333333333%;
    }
}

@media only screen and (max-width: 479px) {
    .course-rating .right .progress {
        width: 50%;
    }
}

.course-rating .right .progress-bar {
    background-color: var(--system_primary_color);
}

.course-rating .right .star {
    padding-left: 24px;
    flex: 0 0 auto;
    width: 33.3333333333%;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .course-rating .right .star {
        width: 41.6666666667%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .course-rating .right .star {
        padding-left: 14px;
        width: 50%;
    }
}

@media only screen and (max-width: 991px) {
    .course-rating .right .star {
        padding-left: 14px;
        width: 33.3333333333%;
    }
}

@media only screen and (max-width: 479px) {
    .course-rating .right .star {
        padding-left: 14px;
        width: 50%;
    }
}

.course-rating .right .star .rating {
    margin-right: 14px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .course-rating .right .star .rating {
        gap: 4px !important;
        margin-right: 10px;
    }
}

@media only screen and (max-width: 767px) {
    .course-rating .right .star .rating {
        margin-right: 4px;
    }
}

@media only screen and (max-width: 479px) {
    .course-rating .right .star .rating {
        gap: 0 !important;
    }
}

.course-rating .right .star .rating i:not(:last-child) {
    margin-right: 8px;
}

@media only screen and (max-width: 767px) {
    .course-rating .right .star .rating i:not(:last-child) {
        margin-right: 4px;
    }
}

.course-overview ul li::before {
    top: 10px !important;
}

.course-tabs .nav {
    --bs-nav-pills-border-radius: 8px;
    --bs-nav-link-padding-y: 9px;
}

@media only screen and (max-width: 767px) {
    .course-tabs .nav {
        --bs-nav-link-padding-x: 12px;
        --bs-nav-link-padding-y: 7px;
    }
}

@media only screen and (max-width: 479px) {
    .course-tabs .nav {
        --bs-nav-link-padding-x: 10px;
        --bs-nav-link-padding-y: 6px;
    }
}

.course-tabs .nav-pills {
    background-color: var(--system_primary_color) !important;
    border-radius: var(--bs-nav-pills-border-radius);
    padding: 3px;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.course-tabs .nav-link {
    font-size: 13px;
    line-height: 1.4285714286;
    color: #ffffff !important;
    border-radius: 6px !important;
    padding: 12px 13px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .course-tabs .nav-link {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.course-tabs .nav-link.active {
    background-color: var(--system_secondary_color) !important;
}

.instructor-card-inner {
    background-color: #ffffff;
    padding: 24px 40px;
    border-radius: 18px;
    overflow: hidden;
    border-bottom: 3px solid var(--system_primary_color);
    --image: 143px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .instructor-card-inner {
        --image: 123px;
        padding: 20px 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .instructor-card-inner {
        padding: 18px 24px;
    }
}

@media only screen and (max-width: 767px) {
    .instructor-card-inner {
        --image: 110px;
        padding: 16px 20px;
    }
}

.instructor-card-img {
    width: var(--image);
    height: var(--image);
    flex: 0 0 auto;
    border-radius: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    border: 3px solid rgba(var(--system_primary_color), 0.25);
}

.instructor-card-img img {
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.instructor-card-img img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.instructor-card-content {
    width: calc(100% - var(--image));
    flex: 0 0 auto;
    padding-left: 21px;
}

.instructor-card-content > a {
    font-size: 24px;
    line-height: 1.1666666667;
    font-weight: 500;
    color: var(--system_secondary_color);
    display: block;
    margin-bottom: 5px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .instructor-card-content > a {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .instructor-card-content > a {
        font-size: 18px;
    }
}

.instructor-card-content > a:hover {
    color: var(--system_primary_color);
}

.instructor-card-content p {
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0.005em;
    margin-bottom: 10px;
    color: #687083;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}

.instructor-card-content .social-list {
    padding-left: 0 !important;
}

.instructor-card-content .social-list li {
    padding: 0 !important;
}

.instructor-card-content .social-list li::before {
    display: none;
}

.instructor-card-content .social-list li a {
    --link: 35px;
    border: 1px solid var(--system_primary_color_30);
}

.instructor-card-wrapper {
    width: 66.6666666667%;
    flex: 0 0 auto;
    padding-right: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .instructor-card-wrapper {
        width: 62.5%;
    }
}

@media only screen and (max-width: 767px) {
    .instructor-card-wrapper {
        width: 100%;
        padding-right: 0;
    }
}

.instructor-card-info {
    width: 33.3333333333%;
    flex: 0 0 auto;
    padding-left: 30px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .instructor-card-info {
        width: 37.5%;
    }
}

@media only screen and (max-width: 767px) {
    .instructor-card-info {
        width: 100%;
        padding-left: 0;
    }
}

.instructor-card-info::before {
    content: "";
    height: 100%;
    width: 2px;
    position: absolute;
    position: absolute;
    top: 0;
    left: 0;
    background: radial-gradient(
        50% 50% at 50% 50%,
        rgba(0, 200, 149, 0.6) 0%,
        rgba(0, 200, 149, 0) 100%
    );
}

@media only screen and (max-width: 767px) {
    .instructor-card-info::before {
        display: none;
    }
}

.instructor-card-info ul {
    padding-left: 0 !important;
}

@media only screen and (max-width: 767px) {
    .instructor-card-info ul {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        margin-top: 14px;
    }
}

@media only screen and (max-width: 479px) {
    .instructor-card-info ul {
        display: block;
        margin-top: 14px;
    }
}

.instructor-card-info ul li {
    padding: 13px 0px !important;
    color: rgba(53, 74, 69, 0.8);
    font-size: 18px;
    line-height: 1.5555555556;
}

.instructor-card-info ul li::before {
    display: none;
}

@media only screen and (max-width: 991px) {
    .instructor-card-info ul li {
        font-size: 16px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .instructor-card-info ul li {
        padding: 10px 0px !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .instructor-card-info ul li {
        padding: 8px 0 !important;
    }
}

@media only screen and (max-width: 767px) {
    .instructor-card-info ul li {
        width: 50%;
        flex: 0 0 auto;
        padding: 8px 0px !important;
    }
}

@media only screen and (max-width: 479px) {
    .instructor-card-info ul li {
        width: 100%;
    }
}

.instructor-card-info ul li svg {
    margin-right: 12px;
}

.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    --width: 110px;
    width: var(--width);
    height: var(--width);
    border-radius: 100%;
    background-color: rgba(7, 7, 7, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: all 0.35s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .video-btn {
        --width: 80px;
    }
}

.video-btn:hover {
    background-color: var(--system_primary_color);
    color: #ffffff;
}

/* quiz css */
.quiz-item {
    margin-top: 25px;
    padding: 20px;
    border: 1px solid #e2e3e5;
    border-radius: 10px;
}

.quiz-item .actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    height: 24px;
    gap: 10px;
}

.quiz-item .actions a {
    padding: 8px;
    border-radius: 6px;
}

@media only screen and (min-width: 1200px) and (max-width: 1700px) {
    .quiz-item .site_btn {
        font-size: 11px;
    }

    .quiz-item .actions {
        gap: 6px;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .quiz-item .actions a {
        padding: 8px 5px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .quiz-item .actions a {
        padding: 8px 5px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-item .actions a {
        padding: 8px;
    }
}

@media (max-width: 410px) {
    .quiz-item .actions a {
        width: 100%;
        text-align: center;
    }
}

.quiz .course-item-type {
    margin-bottom: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--system_primary_color_10);
}

.quiz .course-item-type [data-participation] {
    padding-left: 10px;
    padding-right: 10px;
}

.quiz .course-item-type .site_btn {
    border-radius: 6px;
    pointer-events: auto;
}

.quiz .course-item-type .site_btn[disabled] {
    pointer-events: none;
}

@media (max-width: 350px) {
    .quiz .course-item-type .site_btn:not(:last-child) {
        margin-bottom: 8px;
    }
}

.quiz .course-item-info li {
    font-size: 12px;
    box-shadow: 0 0 0;
    border: 1px solid rgba(62, 84, 77, 0.1019607843);
}

.quiz .course-item-info li:hover {
    border: none;
}

.quiz-banner {
    background-image: var(--bg-img);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.quiz-banner::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: #000000;
    opacity: 0.8;
    filter: blur(6px);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.quiz-banner-content {
    padding: 44px 100px;
}

@media only screen and (max-width: 991px) {
    .quiz-banner-content {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.quiz-banner-content span {
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    border-radius: 8px;
    padding: 10px 46px;
    display: inline-block;
    margin-bottom: 12px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-banner-content span {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-banner-content span {
        font-size: 18px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-banner-content span {
        padding: 10px 36px;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-banner-content span {
        padding: 10px 16px;
    }
}

.quiz-banner-content h2 {
    font-size: 40px;
    line-height: 1.5;
    margin-bottom: 0;
    color: #ffffff;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .quiz-banner-content h2 {
        font-size: 36px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .quiz-banner-content h2 {
        font-size: 32px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-banner-content h2 {
        font-size: 28px;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-banner-content h2 {
        font-size: 26px;
    }
}

/* .quiz-qst {
    margin: 50px 0;
} */

@media (min-width: 1400px) {
    .quiz-qst .container {
        max-width: 1290px;
    }
}

.quiz-qst-main {
    /* border: 1px solid var(--system_primary_color); */
    /* border-radius: 12px; */
    overflow: hidden;
}

.quiz-qst-header {
    background-color: var(--system_primary_color);
    color: #ffffff;
    padding: 15px 45px;
    min-height: 70px;
}

.quiz-qst-header > div {
    flex: 0 0 auto;
}

/* .quiz-qst-header > div:first-child {
    width: 75%;
} */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .quiz-qst-header > div:first-child {
        width: 66.6666666667%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-qst-header > div:first-child {
        width: 62.5%;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-qst-header > div:first-child {
        width: 58.3333333333%;
    }
}

/* .quiz-qst-header > div:last-child {
    width: 25%;
} */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .quiz-qst-header > div:last-child {
        width: 33.3333333333%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-qst-header > div:last-child {
        width: 37.5%;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-qst-header > div:last-child {
        width: 41.6666666667%;
    }
}

.quiz-qst-header .progress {
    height: 28px;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 8px;
}

.quiz-qst-header .progress-bar {
    background-color: var(--system_secondary_color);
}

.quiz-qst-header p {
    font-weight: 500;
    font-size: 24px;
    line-height: 1.1666666667;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-qst-header p {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-qst-header p {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-qst-header p {
        font-size: 0;
    }
}

.quiz-qst-header p b {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 600;
    margin-left: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .quiz-qst-header p b {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-qst-header p b {
        font-size: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-qst-header p b {
        font-size: 24px;
    }
}

.quiz-qst-body {
    padding: 34px 45px;
    --width: 70px;
}

@media only screen and (max-width: 991px) {
    .quiz-qst-body {
        --width: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-qst-body {
        padding: 24px 26px;
    }
}

.quiz-qst-body h5 {
    font-size: 24px;
    line-height: 1.1666666667;
    font-weight: 500;
    color: #000000;
    margin-bottom: 18px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-qst-body h5 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-qst-body h5 {
        font-size: 18px;
    }
}

.quiz-qst-body .nav-link {
    width: 45px;
    height: 45px;
    font-size: 24px;
    line-height: 1.1666666667;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: var(--bs-secondary);
    border-radius: 0.3rem !important;
    border: 2px solid var(--bs-secondary);
    overflow: hidden;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-qst-body .nav-link {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-qst-body .nav-link {
        font-size: 18px;
    }
}

.quiz-qst-body .nav-link.active,
.quiz-qst-body .nav-link.fill {
    background-color: white !important;
}

.quiz-qst-body .nav-link.skipped {
    background-color: #ebf2f0;
}

.quiz-qst-body .tab-content {
    /* margin-top: 50px; */
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .quiz-qst-body .tab-content {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 991px) {
    .quiz-qst-body .tab-content {
        margin-top: 34px;
    }
}

.quiz-qst-body .tab-content h4 {
    font-size: 32px;
    line-height: 1.25;
    font-weight: 600;
    margin-bottom: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .quiz-qst-body .tab-content h4 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-qst-body .tab-content h4 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-qst-body .tab-content h4 {
        font-size: 24px;
    }
}

.quiz-qst-body .tab-content p {
    font-size: 18px;
    line-height: 1.875;
    margin-bottom: 20px;
    color: #5e5e5e;
}

.quiz-qst-body .tab-content ul {
    margin-bottom: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .quiz-qst-body .tab-content ul {
        margin-bottom: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-qst-body .tab-content ul {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-qst-body .tab-content ul {
        margin-bottom: 26px;
    }
}

.quiz-qst-body .tab-content ul li {
    display: block;
}

.quiz-qst-body .tab-content ul li:not(:last-child) {
    margin-bottom: 24px;
}

@media only screen and (max-width: 767px) {
    .quiz-qst-body .tab-content ul li:not(:last-child) {
        margin-bottom: 14px;
    }
}

.quiz-qst-body .tab-content .action button,
.quiz-qst-body .tab-content .action a,
.quiz-qst-body .tab-content .action input {
    border: none;
    font-weight: 700;
    font-size: 20px;
    line-height: 1.4;
    padding: 20px 40px;
    min-width: 220px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-qst-body .tab-content .action button,
    .quiz-qst-body .tab-content .action a,
    .quiz-qst-body .tab-content .action input {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-qst-body .tab-content .action button,
    .quiz-qst-body .tab-content .action a,
    .quiz-qst-body .tab-content .action input {
        font-size: 18px;
    }
}

.quiz-qst-body .tab-content .action button:not(:last-child),
.quiz-qst-body .tab-content .action a:not(:last-child),
.quiz-qst-body .tab-content .action input:not(:last-child) {
    margin-right: 16px;
}

@media only screen and (max-width: 767px) {
    .quiz-qst-body .tab-content .action button,
    .quiz-qst-body .tab-content .action a,
    .quiz-qst-body .tab-content .action input {
        padding: 15px 20px;
        min-width: 110px;
        font-size: 16px;
    }
}

.quiz-qst-body .owl-nav button {
    --lms-nav-btn: var(--width);
    --lms-nav-position: 0;
    background-color: var(--system_secondary_color) !important;
}

.quiz-qst-body .owl-nav button:hover {
    background-color: var(--system_secondary_color) !important;
    color: var(--system_primary_color) !important;
}

.quiz-qst-body .table-responsive {
    max-height: 400px;
    overflow: auto;
}

.quiz-qst-body .table-responsive::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.quiz-qst-body .table-responsive::-webkit-scrollbar-track {
    background-color: var(--system_primary_color_20);
    border-radius: 100px;
}

.quiz-qst-body .table-responsive::-webkit-scrollbar-thumb {
    background-color: var(--system_primary_color);
    border-radius: 100px;
}

.quiz-qst-body .table thead {
    background-color: #f5f7fb;
    color: var(--system_secondary_color);
}

.quiz-qst-body .table thead th {
    border: none;
    text-align: left;
}

.quiz-qst-body .table td {
    text-align: left !important;
}

.quiz-modal .modal-sm {
    max-width: 360px;
    margin: auto;
}

.quiz-modal .modal-header {
    background-color: var(--system_secondary_color);
    color: #ffffff;
    padding: 13px;
    border-radius: 10px;
}

.quiz-modal .modal-header h5 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 0;
    color: currentColor;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-modal .modal-header h5 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-modal .modal-header h5 {
        font-size: 18px;
    }
}

.quiz-modal .modal-header .profile_modal_close {
    top: -18px;
    right: -18px;
}

@media only screen and (max-width: 767px) {
    .quiz-modal .modal-header .profile_modal_close {
        right: -7px;
    }
}

.quiz-modal .modal-content {
    border-radius: 1rem;
}

.quiz-modal .modal-content h4 {
    font-size: 32px;
    line-height: 1.25;
    margin-bottom: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .quiz-modal .modal-content h4 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .quiz-modal .modal-content h4 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .quiz-modal .modal-content h4 {
        font-size: 24px;
    }
}

.quiz-modal .modal-content p {
    color: var(--system_secondary_color);
    margin-bottom: 20px;
    line-height: 1.5;
}

.quiz-modal .modal-content ul {
    padding-left: 1rem;
    list-style: auto;
}

.quiz-modal .modal-content ul li {
    line-height: 1.5;
}

.quiz-modal .modal-content ul li:not(:last-child) {
    margin-bottom: 5px;
}

.quiz-modal .modal-content .site_btn {
    min-width: 130px;
    text-align: center;
    border: none;
}

.quiz-modal .modal-content .action {
    margin-top: 30px;
}

.quiz-modal.startModal .modal-content {
    padding: 10px;
}

.quiz-modal.startModal .modal-content .actions {
    margin-top: 50px;
}

@media only screen and (max-width: 767px) {
    .quiz-modal.startModal .modal-content .actions {
        margin-top: 30px;
    }
}

.quiz-modal.startModal .modal-body {
    margin-top: 20px;
}

@media only screen and (max-width: 767px) {
    .quiz-modal.startModal .modal-body {
        margin-top: 10px;
        padding: 10px;
    }
}

.quiz-modal.startModal .modal-body p {
    color: #687083;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .only_course_page .col-xl-3.col-sm-6 {
        width: 33.3333333333%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .only_course_page .col-xl-3.col-sm-6 {
        width: 33.3333333333%;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .only_course_page .course-item-info li:not(:last-child) {
        margin-right: 0px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .only_course_page .course-item-info li:not(:last-child) {
        margin-right: 0px;

    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .only_course_page .course-item-info li:not(:last-child) {
        margin-right: 0px;

    }
}

/*==== PROFILE CSS ====*/
.profile.white-box {
    padding: 34px;
}

@media only screen and (max-width: 991px) {
    .profile.white-box {
        padding: 24px;
    }
}

.profile_left {
    width: 30%;
    flex: 0 0 auto;
}

@media (min-width: 1200px) and (max-width: 1580px) {
    .profile_left {
        width: 33.3333333333%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .profile_left {
        width: 33.3333333333%;
    }
}

@media only screen and (max-width: 991px) {
    .profile_left {
        width: 100%;
    }
}

.profile_right {
    width: 70%;
    flex: 0 0 auto;
    padding-left: 40px;
}

@media (min-width: 1200px) and (max-width: 1580px) {
    .profile_right {
        width: 66.6666666667%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .profile_right {
        width: 66.6666666667%;
    }
}

@media only screen and (max-width: 991px) {
    .profile_right {
        width: 100%;
        padding-left: 0;
        margin-top: 30px;
    }
}

.profile_user {
    background-color: var(--system_primary_color);
    color: #ffffff;
    border-radius: 17px;
    padding: 30px 60px;
}
.course_user {
    background-color: var(--system_primary_color);
    color: #ffffff;
    border-radius: 17px;
    padding: 30px 60px;
    margin-top: 10px;
    box-shadow: 2px 2px 2px 2px  rgb(228, 224, 224);
}

@media (min-width: 1200px) and (max-width: 1580px) {
    .profile_user {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .profile_user {
        padding: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .profile_user {
        padding: 20px 50px;
    }
}

@media only screen and (max-width: 767px) {
    .profile_user {
        padding: 20px;
    }
}

.profile_user button {
    width: 37px;
    height: 37px;
    border-radius: 11px;
    background-color: var(--system_secondary_color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    position: absolute;
    right: 0;
    bottom: 10px;
    z-index: 9;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .profile_user button {
        right: -4px;
        bottom: 0px;
    }
}

@media only screen and (max-width: 767px) {
    .profile_user button {
        bottom: 0;
    }
}

.profile_user button:hover {
    background-color: var(--system_primary_color);
    box-shadow: 3px 3px 10px rgba(255, 255, 255, 0.3);
}

.profile_user h4 {
    font-size: 21px;
    line-height: 1.1428571429;
    color: currentColor;
    margin-bottom: 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .profile_user h4 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .profile_user h4 {
        font-size: 18px;
    }
}

.profile_user p {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: currentColor;
    margin-bottom: 15px;
}

.profile_user p svg {
    width: 18px;
    flex: 0 0 auto;
}

.profile_user p span {
    opacity: 0.9;
    padding-left: 10px;
}

.profile_user_img {
    --width: 150px;
    width: var(--width);
    height: var(--width);
    border: 2px solid #ffffff;
    border-radius: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    overflow: visible !important;
    margin-bottom: 15px;
}

.profile_user_img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .profile_user_img {
        --width: 110px;
    }
}

@media only screen and (max-width: 767px) {
    .profile_user_img {
        --width: 120px;
    }
}

.profile_info h4 {
    color: var(--system_primary_color);
    font-size: 21px;
    line-height: 1.1428571429;
    margin-top: 5px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .profile_info h4 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .profile_info h4 {
        font-size: 18px;
    }
}

.profile_info form label {
    color: var(--system_secondary_color);
}

.profile_info form button {
    min-width: 370px;
}

.profile_info form button:hover {
    background-color: var(--system_secondary_color);
    border-color: var(--system_secondary_color);
}

@media only screen and (max-width: 767px) {
    .profile_info form button {
        min-width: -moz-max-content;
        min-width: max-content;
    }
}

.profile_info_email {
    margin-top: 50px;
    border-bottom: 1px solid #dfe1e1;
    padding-bottom: 35px;
    margin-bottom: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .profile_info_email {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .profile_info_email {
        margin-top: 25px;
        margin-bottom: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .profile_info_email {
        margin-top: 30px;
        padding-bottom: 20px;
        margin-bottom: 20px;
    }
}

.profile_info_email label {
    color: #000000 !important;
}

.profile_info .three-column > * {
    max-width: 33.33% !important;
    flex: 0 0 auto;
}

@media only screen and (max-width: 479px) {
    .profile_info .three-column > * {
        max-width: 100% !important;
    }
}

.profile_info .d-flex {
    flex-wrap: wrap;
    margin-right: calc(var(--bs-gutter-x) * -0.5);
    margin-left: calc(var(--bs-gutter-x) * -0.5);
}

.profile_info .d-flex .input-control {
    max-width: 50%;
    flex: 0 0 100%;
    padding-right: calc(var(--bs-gutter-x) * 0.5);
    padding-left: calc(var(--bs-gutter-x) * 0.5);
}

@media only screen and (max-width: 479px) {
    .profile_info .d-flex .input-control {
        max-width: 100%;
    }
}

.profile_info .input-control-input {
    border-color: #dfe1e1;
}

.profile_info .input-control-input.fill {
    background-color: var(--system_primary_color_20);
    border-color: var(--system_primary_color_20);
}


textarea::placeholder {
    color: var(--system_primary_color_50) !important;
  }



  textarea::-webkit-input-placeholder {
    color: var(--system_primary_color_50);
  }
  textarea::-moz-placeholder {
    color: var(--system_primary_color_50);
  }
  textarea:-ms-input-placeholder {
    color:var(--system_primary_color_50);
  }
  textarea:-moz-placeholder {
    color:var(--system_primary_color_50);
  }


.profile_info .input-control-label {
    font-family: var(--system_text_font_family), sans-serif;
    font-weight: 700;
}

.profile_info .input-control .select2 {
    display: block;
}

.profile_modal .modal-content {
    border-radius: 20px;
}

@media only screen and (max-width: 767px) {
    .profile_modal .modal-content {
        width: calc(100% - 20px);
        margin: auto;
    }
}

.profile_modal .modal-dialog {
    max-width: 750px;
}

.profile_modal .modal-body {
    padding: 50px;
    position: relative;
    z-index: 1;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .profile_modal .modal-body {
        padding: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .profile_modal .modal-body {
        padding: 20px;
    }
}

.profile_modal_close {
    width: 34px;
    height: 34px;
    border-radius: 100%;
    padding: 0;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--system_primary_color);
    color: #ffffff;
    font-size: 18px;
    position: absolute;
    top: -10px;
    right: -10px;
}

.profile_modal_close:hover {
    background-color: var(--system_secondary_color);
}

.profile_modal_alert {
    background-color: rgba(253, 90, 90, 0.2);
    border-bottom: 2px solid;
    color: #fd5a5a;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
    padding: 10px 18px;
    margin-bottom: 60px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .profile_modal_alert {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .profile_modal_alert {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .profile_modal_alert {
        margin-bottom: 40px;
    }
}

.profile_modal_img {
    border: 1px dashed #acbeb9;
    border-radius: 10px;
    padding: 30px;
    padding-bottom: 60px;
    width: 80%;
    margin: auto;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .profile_modal_img {
        padding: 20px;
    }
}

.profile_modal_img svg {
    color: var(--system_primary_color);
    margin-bottom: 10px;
}

.profile_modal_img span {
    font-size: 16px;
    margin-bottom: 5px;
}

.profile_modal_img p {
    font-size: 14px;
    margin-bottom: 8px;
}

.profile_modal_img .site_btn {
    margin-top: 18px;
    background-color: var(--system_secondary_color);
    padding: 11px;
    min-width: 130px;
    text-align: center;
    transition: all 0.35s ease-in-out;
}

.profile_modal_upload {
    margin-bottom: 70px;
}

@media only screen and (max-width: 767px) {
    .profile_modal_upload {
        margin-bottom: 40px;
    }
}

.profile_modal_upload > div {
    margin-bottom: 24px;
}

.profile_modal_upload label {
    cursor: pointer;
    padding: 10px 15px;
    transition: all 0.35s ease-in-out;
}

.modal-backdrop.show {
    opacity: 0.8;
}

/*---- CERTIFICATE CSS ----*/
.certificate.white-box {
    padding: 40px 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .certificate.white-box {
        padding: 30px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .certificate.white-box {
        padding: 24px 20px;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .certificate .col-xl-4 {
        width: 50%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .certificate .col-xl-4 {
        width: 50%;
    }
}

.certificate-item {
    border: 3px solid var(--system_primary_color);
    border-radius: 10px;
    overflow: hidden;
    margin-top: 24px;
    position: relative;
    min-height: 325px;
}

.certificate-item-img {
    padding-bottom: 70%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.certificate-item-img img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
}

.certificate-item-content {
    padding: 20px;
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.certificate-item-content::before {
    content: "";
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.certificate-item-title {
    font-size: 16px;
    line-height: 1.1875;
    color: #ffffff;
    margin-bottom: 12px;
    display: block;
    font-weight: 700;
    text-transform: uppercase;
}

.certificate-item-title:hover {
    /*color: var(--system_primary_color);*/
}

.certificate-item .d-flex {
    font-size: 14px;
    line-height: 1.1428571429;
    font-family: var(--system_text_font_family), sans-serif;
}

.certificate-item .d-flex > div {
    flex: 0 0 auto;
}

.certificate-item .d-flex > div:first-child {
    width: 25%;
}

.certificate-item .d-flex > div:nth-child(2) {
    border-left: 1px solid #9ca8a6;
    padding-left: 32px;
    padding-right: 26px;
}

.certificate-item .d-flex > div:last-child {
    width: 33.3333333333%;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .certificate-item .d-flex > div {
        width: 50% !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .certificate-item .d-flex > div {
        width: 33.3333333333% !important;
    }
}

@media only screen and (max-width: 479px) {
    .certificate-item .d-flex > div {
        width: 50% !important;
    }
}

.certificate-item span {
    font-weight: 700;
}

.certificate-item p {
    margin-top: 3px;
    color: #ffffff;
    font-weight: 400;
}

.certificate-item .site_btn {
    border-radius: 5px;
    min-width: 125px;
    text-align: center;
    line-height: 7px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .certificate-item .site_btn {
        margin-top: 16px;
    }
}

@media only screen and (max-width: 479px) {
    .certificate-item .site_btn {
        margin-top: 16px;
    }
}

/*---- LEARNING PATH CSS ----*/
.learning .section_title h5 {
    margin-bottom: 12px;
}

.learning .section_title_filter li a {
    min-width: 120px;
    text-align: center;
}

@media only screen and (max-width: 991px) {
    .learning .section_title_filter li a {
        min-width: 70px;
    }
}

@media only screen and (max-width: 1199px) {
    .learning .section_title .filter_dropdown {
        display: none !important;
    }
}

.learning .section_title .filter_dropdown label {
    white-space: nowrap;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.4;
    color: #ffffff;
    margin-right: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .learning .section_title .filter_dropdown label {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .learning .section_title .filter_dropdown label {
        font-size: 18px;
    }
}

.learning .section_title .filter_dropdown .select2-selection--single {
    border-color: transparent;
    background-color: var(--system_dark_20);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 10px;
    min-width: 155px;
}

.learning .section_title .filter_dropdown .select2-selection--single::before {
    color: currentColor;
}

.learning .section_title .search-box {
    flex: 0 0 auto;
    width: 250px;
}

@media only screen and (max-width: 767px) {
    .learning .section_title .search-box {
        display: none;
    }
}

.learning .section_title .search-box input {
    background-color: var(--system_dark_20);
    border-color: transparent;
    color: #ffffff;
    font-size: 16px;
    font-weight: 400;
    font-family: var(--system_text_font_family), sans-serif;
    padding: 10px 12px;
    line-height: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .learning .section_title .search-box input {
        font-size: 14px;
        line-height: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .learning .section_title .search-box input {
        font-size: 14px;
        padding: 5px 8px;
    }
}

.learning .section_title .search-box input::-moz-placeholder {
    color: #ffffff;
}

.learning .section_title .search-box input::placeholder {
    color: #ffffff;
}

.learning .section_title .search-box .input-control-icon {
    color: #ffffff;
    cursor: pointer;
}

@media only screen and (min-width: 1200px) and (max-width: 1580px) {
    .learning .col-xl-3 {
        width: 33.3333333333%;
    }
}

.learning-item {
    border: 1px solid #e2e3e5;
    overflow: hidden;
    border-radius: 16px;
    margin-bottom: 24px;
}

.learning-item-img {
    padding-top: 60%;
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
}

.learning-item-img img {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: auto;
    min-height: 100%;
    -o-object-fit: fill;
    object-fit: fill;
}

.learning-item-title {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 12px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}

.learning-item-title a {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    margin-bottom: 5px;
}

.learning-item-title a:hover {
    color: var(--system_primary_color);
}

.learning-item-title p {
    color: #ffffff;
    font-size: 12px;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.learning-item-content {
    padding: 1rem;
    padding-top: calc(1rem + 9px);
}

.learning-item-content .progress {
    margin-bottom: 12px;
}

.learning-item-content .progress + span {
    top: auto;
    bottom: 100%;
    margin-bottom: 3px;
}

.learning-item-content p {
    margin-bottom: 14px;
    font-size: 14px;
    color: #687083;
}

.learning-item-content ul li {
    gap: 4px;
    color: #000000;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .learning-item-content ul li {
        font-size: 12px;
    }
}

.learning-details-title {
    --icon: 118px;
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 34px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .learning-details-title {
        --icon: 60px;
    }
}

.learning-details-title .left {
    width: var(--icon);
    height: var(--icon);
    flex: 0 0 auto;
}

@media only screen and (max-width: 767px) {
    .learning-details-title .left {
        display: none;
    }
}

.learning-details-title .left img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

.learning-details-title .right {
    width: calc(100% - var(--icon));
    flex: 0 0 auto;
    padding-left: 50px;
}

@media only screen and (max-width: 991px) {
    .learning-details-title .right {
        padding-left: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details-title .right {
        width: 100%;
        padding-left: 0;
    }
}

.learning-details-title h3 {
    font-size: 36px;
    line-height: 1.1666666667;
    font-weight: 600;
    margin-bottom: 20px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .learning-details-title h3 {
        font-size: 34px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .learning-details-title h3 {
        font-size: 32px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .learning-details-title h3 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details-title h3 {
        font-size: 24px;
    }
}

@media only screen and (max-width: 479px) {
    .learning-details-title h3 {
        font-size: 22px;
    }
}

.learning-details-title .info {
    --icon: 42px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .learning-details-title .info {
        row-gap: 1rem;
    }
}

@media only screen and (max-width: 991px) {
    .learning-details-title .info {
        row-gap: 1rem;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details-title .info {
        --icon: 36px;
    }
}

.learning-details-title .info > .d-flex {
    margin-right: 30px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .learning-details-title .info > .d-flex {
        margin-right: 40px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .learning-details-title .info > .d-flex {
        margin-right: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .learning-details-title .info > .d-flex {
        margin-right: 34px;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details-title .info > .d-flex {
        margin-right: 16px;
    }
}

.learning-details-title .info > .d-flex:last-child {
    margin: 0;
}

.learning-details-title .info .icon {
    width: var(--icon);
    height: var(--icon);
    border-radius: 4px;
    background-color: var(--system_primary_color);
    color: #ffffff;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

@media only screen and (max-width: 767px) {
    .learning-details-title .info .icon svg {
        width: 18px;
        height: 18px;
    }
}

.learning-details-title .info .content {
    font-family: var(--system_text_font_family), sans-serif;
    color: var(--system_secondary_color);
}

.learning-details-title .info .content span {
    font-size: 16px;
}

.learning-details-title .info .content p {
    font-weight: 600;
    font-size: 14px;
    margin-top: 3px;
}

.learning-details-cardList {
    margin-top: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .learning-details-cardList {
        margin-top: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .learning-details-cardList {
        margin-top: 34px;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details-cardList {
        margin-top: 24px;
    }
}

.learning-details-cardList .collapsed .learning-details-cardHeader {
    background: var(--system_secondary_color);
}

.learning-details-cardList
.collapsed
.learning-details-cardHeader
.progress
+ span {
    background-color: var(--system_primary_color);
}

.learning-details-cardList .collapsed .learning-details-cardHeader .filter {
    display: block;
}

.learning-details-cardList .collapsed .learning-details-cardBody {
    display: block;
}

.learning-details-card {
    margin-bottom: 25px;
}

.learning-details-cardHeader {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 15px 22px;
    background: var(--system_primary_gradient);
    color: #ffffff;
    border-radius: 10px;
}

.learning-details-cardHeader .toggle-button {
    font-weight: 600;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    --width: 46px;
    width: var(--width);
    height: var(--width);
    background-color: #ffffff;
    border-radius: 10px;
    color: var(--system_primary_color);
    flex: 0 0 auto;
}

@media only screen and (max-width: 767px) {
    .learning-details-cardHeader .toggle-button {
        font-size: 24px;
        --width: 40px;
    }
}

.learning-details-cardHeader .left {
    width: 50%;
    flex: 0 0 auto;
}

@media only screen and (max-width: 991px) {
    .learning-details-cardHeader .left {
        width: 83.3333333333%;
    }
}

.learning-details-cardHeader .left h6 {
    font-size: 24px;
    font-weight: 500;
    color: currentColor;
    margin-bottom: 16px;
}

.learning-details-cardHeader .left h6 b {
    font-weight: 900;
}

.learning-details-cardHeader .left .progress {
    height: 18px;
    background-color: #ffffff;
    padding: 6px;
    margin-bottom: 5px;
}

.learning-details-cardHeader .left .progress-bar {
    background-color: var(--system_primary_color);
}

.learning-details-cardHeader .left .progress + span {
    padding: 6px 0;
    border-radius: 6px;
    min-width: 40px;
    font-size: 14px;
    margin-top: 0;
    top: 50%;
    transform: translateY(-50%);
}

.learning-details-cardHeader .left p {
    font-weight: 500;
    font-size: 12px;
    margin-top: 5px;
}

.learning-details-cardHeader .right {
    width: 50%;
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

@media only screen and (max-width: 991px) {
    .learning-details-cardHeader .right {
        width: 16.6666666667%;
    }
}

.learning-details-cardHeader .right .filter {
    display: none;
}

@media only screen and (max-width: 991px) {
    .learning-details-cardHeader .right .filter {
        display: none !important;
    }
}

.learning-details-cardHeader .right .filter > span {
    white-space: nowrap;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 500;
    color: currentColor;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .learning-details-cardHeader .right .filter > span {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details-cardHeader .right .filter > span {
        font-size: 18px;
    }
}

.learning-details-cardHeader .right .select2 {
    width: -moz-max-content !important;
    width: max-content !important;
    margin-left: 20px;
}

.learning-details-cardHeader .right .select2-selection--single {
    min-width: 155px;
    color: currentColor;
    padding: 11px 16px;
}

.learning-details-cardHeader
.right
.select2-selection--single[aria-expanded]::before {
    color: currentColor;
}

.learning-details-cardBody {
    display: none;
}

.learning-details-cardBody .course-item {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media only screen and (max-width: 767px) {
    .learning-details-cardBody .course-item {
        margin-top: 20px;
    }
}

.learning-details-cardBody .course-item-left {
    width: calc(45.8333333333% - 30px);
    flex: 0 0 auto;
    background-color: var(--system_primary_color_10);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .learning-details-cardBody .course-item-left {
        width: 50%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .learning-details-cardBody .course-item-left {
        width: 50%;
    }
}

@media (max-width: 1199px) {
    .learning-details-cardBody .course-item-left {
        width: 100%;
    }
}

.learning-details-cardBody .course-item-left .content {
    width: 55.8333333333%;
    flex: 0 0 auto;
    padding: 20px 26px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .learning-details-cardBody .course-item-left .content {
        padding: 15px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .learning-details-cardBody .course-item-left .content {
        padding: 15px;
    }
}

@media (max-width: 1199px) {
    .learning-details-cardBody .course-item-left .content {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details-cardBody .course-item-left .content {
        padding: 20px;
        padding-bottom: 30px;
        width: 100%;
    }
}

.learning-details-cardBody .course-item-right {
    width: calc(54.1666666667% + 30px);
    flex: 0 0 auto;
    padding: 20px 26px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .learning-details-cardBody .course-item-right {
        width: 50%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .learning-details-cardBody .course-item-right {
        width: 50%;
    }
}

@media (max-width: 1199px) {
    .learning-details-cardBody .course-item-right {
        width: 100%;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details-cardBody .course-item-right {
        padding: 1rem;
    }
}

.learning-details-cardBody .course-item-right h4 {
    font-size: 24px;
    line-height: 1.1666666667;
    margin-bottom: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .learning-details-cardBody .course-item-right h4 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details-cardBody .course-item-right h4 {
        font-size: 18px;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .learning-details-cardBody .course-item-right h4 {
        margin-bottom: 26px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .learning-details-cardBody .course-item-right h4 {
        margin-bottom: 26px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .learning-details-cardBody .course-item-right h4 {
        margin-bottom: 24px;
    }
}

@media only screen and (max-width: 991px) {
    .learning-details-cardBody .course-item-right h4 {
        margin-bottom: 20px;
    }
}

.learning-details-cardBody .course-item-right h4:hover {
    color: var(--system_primary_color);
}

.learning-details-cardBody .course-item-right .info {
    row-gap: 16px;
}

@media (min-width: 1581px) {
    .learning-details-cardBody .course-item-right .info {
        gap: 0 !important;
    }
}

.learning-details-cardBody .course-item-right .info > div {
    font-size: 14px;
    line-height: 1.1428571429;
    padding: 0 25px;
    border-left: 1px solid rgba(0, 0, 0, 0.2);
    flex: 0 0 auto;
    width: 50%;
}

@media (min-width: 1581px) {
    .learning-details-cardBody .course-item-right .info > div {
        width: -moz-max-content;
        width: max-content;
    }
}

@media only screen and (max-width: 991px) {
    .learning-details-cardBody .course-item-right .info > div {
        padding: 0 16px;
    }
}

.learning-details-cardBody .course-item-right .info > div:first-child {
    padding-left: 0;
    border: none;
}

.learning-details-cardBody .course-item-right .info > div:last-child {
    padding-right: 0;
}

.learning-details-cardBody .course-item-right .info > div:nth-child(3) {
    padding: 0;
    border-width: 0;
}

@media (min-width: 1581px) {
    .learning-details-cardBody .course-item-right .info > div:nth-child(3) {
        padding: 0 25px;
        border-width: 1px;
    }
}

@media only screen and (max-width: 991px) {
    .learning-details-cardBody .course-item-right .info > div:nth-child(3) {
        padding-right: 16px;
    }
}

.learning-details-cardBody .course-item-right .info > div b {
    font-weight: 700;
}

.learning-details-cardBody .course-item-right .info > div p {
    color: var(--system_secondary_color);
}

.learning-details-cardBody .course-item-img {
    padding-bottom: 98%;
    height: 100%;
}

@media (min-width: 1581px) {
    .learning-details-cardBody .course-item-img {
        padding-bottom: 65%;
    }
}

@media (max-width: 1199px) {
    .learning-details-cardBody .course-item-img {
        padding-bottom: 65%;
    }
}

.learning-details-cardBody .course-item-top {
    width: 44.1666666667%;
    flex: 0 0 auto;
}

@media (max-width: 1199px) {
    .learning-details-cardBody .course-item-top {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details-cardBody .course-item-top {
        width: 100%;
    }
}

.learning-details-cardBody .course-item-info li {
    --width: 50px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .learning-details-cardBody .course-item-info li {
        --width: 60px;
    }
}

.learning-details-cardBody .course-item-info li svg {
    width: 16px;
    height: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .learning-details-cardBody .course-item-info li svg {
        width: 24px;
        height: 24px;
        margin-bottom: 4px !important;
    }
}

.learning-details-cardBody .course-item-type {
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    padding: 13px 15px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.learning-details-cardBody .course-item-type > button {
    margin: 0;
    padding: 8px 12px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .learning-details-cardBody .course-item-type > button {
        padding: 6px 8px;
        font-size: 12px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .learning-details-cardBody .course-item-type > button {
        padding: 6px 8px;
        font-size: 12px;
    }
}

/*==== BOOKMARKS PAGE CSS ====*/
.bookmarks {
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .bookmarks_table {
        overflow-x: scroll;
    }
}

@media only screen and (max-width: 767px) {
    .bookmarks_table::-webkit-scrollbar {
        display: none;
    }
}

.bookmarks_table table {
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .bookmarks_table table {
        width: 550px;
    }
}

.bookmarks_table table tr th {
    font-weight: 600;
}

.bookmarks_table table tr th:first-child {
    padding-left: 55px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .bookmarks_table table tr th:first-child {
        padding-left: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .bookmarks_table table tr th:first-child {
        padding-left: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .bookmarks_table table tr th:first-child {
        padding-left: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .bookmarks_table table tr th:first-child {
        padding-left: 40px;
    }
}

.bookmarks_table table tr th,
.bookmarks_table table tr td {
    font-size: 14px;
    border-top: 1px solid #e2e3e5;
    border-bottom: 1px solid #e2e3e5;
    padding: 20px 30px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .bookmarks_table table tr th,
    .bookmarks_table table tr td {
        padding: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .bookmarks_table table tr th,
    .bookmarks_table table tr td {
        padding: 20px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .bookmarks_table table tr th,
    .bookmarks_table table tr td {
        padding: 15px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .bookmarks_table table tr th,
    .bookmarks_table table tr td {
        padding: 10px 15px;
    }
}

.bookmarks_table table tr th:first-child,
.bookmarks_table table tr td:first-child {
    border-left: 1px solid #e2e3e5;
}

.bookmarks_table table tr th:last-child,
.bookmarks_table table tr td:last-child {
    border-right: 1px solid #e2e3e5;
}

.bookmarks_table table tr td .d-flex > * {
    max-width: 100%;
    flex: 0 0 auto;
}

.bookmarks_table table tr td #close {
    display: inline-block;
    color: var(--system_primary_color);
    cursor: pointer;
    padding: 16px;
    padding-left: 0;
}

.bookmarks_table table tr td #close:hover {
    color: #000000;
}

.bookmarks_table table tr td #thumb {
    width: 160px;
    height: 100px;
    overflow: hidden;
    margin-right: 90px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .bookmarks_table table tr td #thumb {
        margin-right: 40px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .bookmarks_table table tr td #thumb {
        margin-right: 50px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .bookmarks_table table tr td #thumb {
        width: 130px;
        height: 80px;
        margin-right: 50px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .bookmarks_table table tr td #thumb {
        width: 100px;
        height: 60px;
        margin-right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .bookmarks_table table tr td #thumb {
        width: 100px;
        height: 60px;
        margin-right: 20px;
    }
}

.bookmarks_table table tr td #thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.bookmarks_table table tr td p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    width: 50%;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .bookmarks_table table tr td p {
        width: 59%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .bookmarks_table table tr td p {
        width: 62%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .bookmarks_table table tr td p {
        width: 60%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .bookmarks_table table tr td p {
        width: 58%;
    }
}

@media only screen and (max-width: 767px) {
    .bookmarks_table table tr td p {
        width: 55%;
    }
}

.boxed_btn {
    display: inline-block;
    border-radius: 4px;
    background-color: var(--system_primary_color);
    color: #ffffff !important;
    padding: 11px 25px;
    text-transform: capitalize;
    font-weight: 500;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .boxed_btn {
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .boxed_btn {
        padding: 8px 15px;
    }
}

.boxed_btn:hover {
    background-color: #000000;
}

/*---- CARTS CSS ----*/
.carts_item {
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #e2e3e5;
    border-radius: 4px;
    padding: 20px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carts_item {
        padding: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .carts_item {
        padding: 15px;
    }
}

.carts_item_content {
    display: flex;
    align-items: center;
    grid-gap: 15px;
}

@media only screen and (max-width: 479px) {
    .carts_item_content {
        grid-gap: 10px;
    }
}

.carts_item_content #close {
    display: inline-block;
    color: var(--system_primary_color);
    cursor: pointer;
}

.carts_item_content #close:hover {
    color: #000000;
}

.carts_item_content .thumb {
    --carts-thum: 115px;
    width: var(--carts-thum);
    flex: 0 0 var(--carts-thum);
    height: 80px;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .carts_item_content .thumb {
        --carts-thum: 100px;
        height: 65px;
    }
}

@media only screen and (max-width: 479px) {
    .carts_item_content .thumb {
        --carts-thum: 90px;
        height: 60px;
    }
}

.carts_item_content .thumb img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.carts_item_content h5 {
    margin-bottom: 0px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.carts_item_content h5 a {
    font-size: 16px;
    font-weight: 500;
    color: #000000;
}

.carts_item_content h5 a:hover {
    color: var(--system_primary_color);
}

@media only screen and (max-width: 767px) {
    .carts_item_content h5 a {
        font-size: 14px;
    }
}

.carts_item_price {
    padding-left: 20px;
    font-size: 16px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carts_item_price {
        padding-left: 15px;
    }
}

@media only screen and (max-width: 767px) {
    .carts_item_price {
        font-size: 14px;
        padding-left: 10px;
    }
}

.carts_bottom {
    margin-top: 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carts_bottom {
        margin-top: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .carts_bottom {
        margin-top: 15px;
    }
}

.carts_bottom .boxed_btn {
    padding: 15px 30px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .carts_bottom .boxed_btn {
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .carts_bottom .boxed_btn {
        padding: 10px 15px;
    }
}

/*---- CAROUSEL CONFIG ----*/
.owl-nav button {
    --lms-nav-btn: 42px;
    --lms-nav-position: 15px;
    width: var(--lms-nav-btn);
    height: var(--lms-nav-btn);
    line-height: var(--lms-nav-btn) !important;
    background-color: var(--system_primary_color_80) !important;
    color: #ffffff !important;
    box-shadow: 0px 4px 100px rgba(0, 0, 0, 0.5);
    border-radius: 100%;
    font-size: 20px !important;
    position: absolute;
    top: 50%;
    left: var(--lms-nav-position);
    transform: translateY(-50%);
}

.owl-nav button:hover {
    background-color: var(--system_primary_color) !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .owl-nav button {
        font-size: 18px !important;
        --lms-nav-btn: 35px;
    }
}

@media only screen and (max-width: 767px) {
    .owl-nav button {
        font-size: 16px !important;
        --lms-nav-btn: 30px;
    }
}

.owl-nav button:last-child {
    left: auto;
    right: var(--lms-nav-position);
}

.owl-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 100px;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 5px 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.owl-dot {
    --width: 10px;
    width: var(--width);
    height: var(--width);
    border-radius: 100%;
    background-color: #ffffff !important;
}

.owl-dot.active {
    background-color: var(--system_primary_color) !important;
}

/*---- BOOTSTRAP CONFIG ----*/
@media only screen and (min-width: 1581px) {
    .container {
        max-width: 1440px;
    }
}

.progress {
    height: 9px;
    padding: 3px 4px;
    background-color: var(--system_primary_color);
    border-radius: 100px;
    overflow: hidden;
}

.progress-bar {
    border-radius: 100px;
    background-color: #ffffff;
}

.progress + span {
    position: absolute;
    top: 100%;
    font-size: 10px;
    line-height: 1.1;
    color: #ffffff;
    font-weight: 400;
    border-radius: 2px;
    background-color: var(--system_secondary_color);
    padding: 2px;
    min-width: 30px;
    text-align: center;
    margin-left: -15px;
    transition: left 0.6s ease;
    margin-top: 3px;
}

/*---- FONTAWESOME CONFIG ----*/
.plus {
    position: relative;
    z-index: 1;
}

.plus::after {
    content: "\f067";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    color: #000000;
    font-size: 9px;
    padding-left: 2px;
    padding-bottom: 2px;
    background-color: #ffffff;
    position: absolute;
    right: -2px;
    top: -3px;
}

.plus.fa-user::after {
    top: auto;
    bottom: 0px;
    right: 0px;
    padding-left: 0;
    padding-bottom: 0px;
}

/*---- MENU CONFIG ----*/
.mini-menu {
    --left-menu: 120px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .mini-menu {
        --left-menu: 250px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .mini-menu {
        --left-menu: 250px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .mini-menu {
        --left-menu: 250px;
    }
}

@media only screen and (max-width: 767px) {
    .mini-menu {
        --left-menu: 44px;
    }
}

.mini-menu .dashboard-right-top .top-logo {
    text-align: center;
    padding-left: 0;
}

@media only screen and (max-width: 1439px) {
    .mini-menu .dashboard-right-top .top-logo {
        text-align: left;
        padding-left: 40px;
    }
}

.mini-menu .dashboard-right-top .top-logo a:first-child {
    display: none;
}

@media only screen and (max-width: 1439px) {
    .mini-menu .dashboard-right-top .top-logo a:first-child {
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .mini-menu .dashboard-right-top .top-logo a:first-child {
        display: none;
    }
}

.mini-menu .dashboard-right-top .top-logo a:last-child {
    display: block;
}

@media only screen and (max-width: 1439px) {
    .mini-menu .dashboard-right-top .top-logo a:last-child {
        display: none;
    }
}

@media only screen and (max-width: 767px) {
    .mini-menu .dashboard-right-top .top-logo a:last-child {
        display: block;
    }
}

.mini-menu .dashboard_left {
    height: auto;
    overflow: visible;
    position: unset;
}

@media (min-width: 768px) and (max-width: 1439px) {
    .mini-menu .dashboard_left {
        position: fixed;
        height: calc(100vh - var(--headerHeight));
        overflow: auto;
    }
}

@media only screen and (max-width: 991px) {
    .mini-menu .dashboard_left {
        opacity: 1;
        visibility: visible;
        overflow: auto;
        position: fixed;
        left: 0;
        z-index: 10;
        padding-top: 40px;
        height: 100%;
    }
}

.mini-menu .dashboard_right {
    margin: 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .mini-menu .dashboard_right {
        width: 100%;
        margin: 0;
    }
}

@media only screen and (max-width: 1439px) {
    .mini-menu .dashboard_right {
        width: 100%;
    }
}

.mini-menu .dashboard-left-menu li a {
    position: relative;
    justify-content: center;
    padding-left: 10px;
}

@media only screen and (min-width: 768px) and (max-width: 1439px) {
    .mini-menu .dashboard-left-menu li a {
        justify-content: flex-start;
        padding-left: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .mini-menu .dashboard-left-menu li a {
        justify-content: flex-start;
        padding-left: 24px;
    }
}

.mini-menu .dashboard-left-menu li a > span {
    position: absolute;
    left: 80px;
    background-color: #ffffff;
    height: 100%;
    display: flex;
    align-items: center;
    padding-left: 0;
    padding-right: 20px;
    transition: all 0.35s ease-in-out;
    z-index: 8;
    min-width: 124px;
    border-radius: 4px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media only screen and (max-width: 1439px) {
    .mini-menu .dashboard-left-menu li a > span {
        position: initial;
        padding-left: 18px;
        padding-right: 0;
        min-width: -moz-max-content;
        min-width: max-content;
        border-radius: 0;
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        background-color: transparent !important;
    }
}

.mini-menu .dashboard-left-menu li a:hover > span {
    background-color: var(--system_primary_color);
    color: #ffffff;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mini-menu .dashboard-left-menu li a.active {
    background-color: var(--system_primary_color);
    color: #ffffff;
}

/*---- SELECT 2 CONFIG ----*/
.select2 {
    display: inline-block;
    width: 100% !important;
}

.select2-dropdown {
    border-color: #e2e3e5 !important;
}

.select2-selection--single {
    padding: 15px 20px;
    border: 1px solid #e2e3e5;
    outline: none;
    height: auto !important;
    border-radius: 10px;
    color: #687083;
    font-size: 16px;
    font-weight: 400;
    transition: all 0.35s ease-in-out;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .select2-selection--single {
        padding: 10px 15px;
    }
}

@media only screen and (max-width: 767px) {
    .select2-selection--single {
        padding: 10px 15px;
    }
}

.select2-results__options::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.select2-results__options::-webkit-scrollbar-track {
    background-color: var(--system_primary_color_20);
    border-radius: 100px;
}

.select2-results__options::-webkit-scrollbar-thumb {
    background-color: var(--system_primary_color);
    border-radius: 100px;
}

.select2-results__option--selectable {
    color: var(--system_secondary_color) !important;
    font-size: 15px !important;
}

.select2 .select2-selection--single[aria-expanded]::before {
    right: 15px;
}

.select2-results__option--highlighted.select2-results__option--selectable {
    background-color: var(--system_primary_color) !important;
    color: #ffffff !important;
}

.select2-container--default .select2-results__option--selected {
    background-color: #e5f9f4;
    color: var(--system_secondary_color);
}

/*---- CALENDAR CONFIG ----*/
.jalendar {
    margin: 0;
}

.jalendar-pages {
    background: transparent !important;
    padding: 0 !important;
}

.jalendar-pages .days {
    overflow: visible !important;
}

.jalendar .header {
    text-align: left !important;
    overflow: visible !important;
}

.jalendar .header > a {
    color: #000000;
    font-size: 16px;
    line-height: 1.5;
    padding: 0px 2px;
    margin: 0 -5px;
    position: relative;
    top: 1px;
}

.jalendar .header > a i:first-child {
    margin-right: 5px;
}

.jalendar .header > a i:last-child {
    margin-left: 5px;
}

.jalendar .header h1 {
    color: var(--system_primary_color);
    margin-bottom: 0 !important;
    font-size: 16px;
    font-weight: bold;
}

.jalendar .header .day-names {
    margin-top: 24px;
}

.jalendar-events {
    position: absolute;
    right: 0;
    bottom: 100%;
    width: 52%;
    margin-bottom: -30px;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;

}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .jalendar-events {
        width: 45%;
        margin-bottom: -24px;
        margin-top: 20px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .jalendar-events {
        width: 50%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .jalendar-events {
        width: 50%;
        margin-bottom: -8px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .jalendar-events {
        width: 50%;
        margin-top: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .jalendar-events {
        position: initial;
        width: 100%;
        margin-bottom: 0;
    }
}

.this-month-events-info-inner > .jalendar-events-item {
    margin-right: 8px;
    margin-bottom: 3px;
    display: inline-block;
    padding: 10px 0px;
    font-size: 14px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .this-month-events-info-inner > .jalendar-events-item {
        margin-right: 4px;
        font-size: 14px;
    }
}

@media only screen and (min-width: 1440px) and (max-width: 1919px) {
    .jalendar-events {
        width: 62%;
    }
}


.jalendar-events-item::before {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 100%;
    background-color: #d6d6da;
    margin-right: 3px;
}

.jalendar-events-item[data-event-online-course]::before {
    background-color: #6ddc29;
}

.jalendar-events-item[data-event-offline-course]::before {
    background-color: #efb614;
}

.jalendar-events-item[data-event-live]::before {
    background-color: #fd5a5a;
}

.jalendar-events-item[data-event-online-quiz]::before {
    background-color: #4f80e1;
}

.jalendar-events-item[data-event-offline-quiz]::before {
    background-color: var(--system_primary_color);
}

.jalendar .this-month.jalendar-multi-events:hover .this-month-events-info,
.jalendar .this-month.jalendar-single-event:hover .this-month-events-info {
    opacity: 1;
    visibility: visible;
}


.jalendar .this-month-events {
    position: absolute;
    margin-top: -4px;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    line-height: 0 !important;
    display: flex;
    justify-content: center;
}

.jalendar .this-month-events-item {
    display: inline-block !important;
    width: 5px !important;
    height: 5px !important;
    border-radius: 100% !important;
    background-color: #d6d6da;
}

.jalendar .this-month-events-item:not(:last-child) {
    margin-right: 2px;
}

.jalendar .this-month-events-item[data-month-online-course] {
    background-color: #6ddc29;
}

.jalendar .this-month-events-item[data-month-offline-course] {
    background-color: #efb614;
}

.jalendar .this-month-events-item[data-month-live] {
    background-color: #fd5a5a;
}

.jalendar .this-month-events-item[data-month-online-quiz] {
    background-color: #4f80e1;
}

.jalendar .this-month-events-item[data-month-offline-quiz] {
    background-color: var(--system_primary_color);
}

.jalendar .this-month-events-info-inner::-webkit-scrollbar {
    background: var(--system_primary_color_10);
    border-radius: 100px;
    width: 5px;
}

.jalendar .this-month-events-info-inner::-webkit-scrollbar-thumb {
    background: var(--system_primary_color);
    border-radius: 100px;
}


.jalendar .this-month-events-info {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    color: #000000;
    width: 320px;
    z-index: 9;
    text-align: left;
    padding: 15px 20px;
    border-radius: 10px;
    /*display: none;*/
    box-shadow: 0px 4px 57px 0px rgba(0, 0, 0, 0.2);
    border-bottom: 5px solid var(--system_primary_color);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all ease-in-out;

}

@media (max-width: 567px) {
    .jalendar .this-month-events-info {
        width: 215px;
    }
}


@media (max-width: 400px) {
    .jalendar .this-month-events-info {
        width: 180px;
    }
}

.jalendar .this-month-events-info::before {
    content: "";
    width: 15px;
    height: 15px;
    background-color: #ffffff;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    margin-bottom: -9px;
}

.jalendar .this-month-events-info p {
    font-size: 14px;
}

.jalendar .this-month-events-info p b {
    font-weight: 700;
}

.jalendar .this-month-events-info-inner {
    margin-top: 5px;
    max-height: 200px;
    overflow: auto;
    overflow-x: hidden;

}


.jalendar .this-month-events-info-inner > div {
    display: block;
    margin-right: 0px;
    margin-bottom: 5px;
}

.jalendar-multi-events > span {
    border: 1px solid #687083;
}

.jalendar-single-event {
    /*background-color: #d6d6da;*/
    color: #ffffff !important;
}

.jalendar-single-event[data-month-online-course] {
    background-color: #6ddc29;
}

.jalendar-single-event[data-month-offline-course] {
    background-color: #efb614;
}

.jalendar-single-event[data-month-live] {
    background-color: #fd5a5a;
}

.jalendar-single-event[data-month-online-quiz] {
    background-color: #4f80e1;
}

.jalendar-single-event[data-month-offline-quiz] {
    background-color: var(--system_primary_color);
}

.jalendar-container .jalendar-pages .days .day:nth-child(7n+1) .this-month-events-info,
.jalendar-container .jalendar-pages .days .day:nth-child(7n+2) .this-month-events-info,
.jalendar-container .jalendar-pages .days .day:nth-child(7n+3) .this-month-events-info {
    left: 0;
    transform: translateX(0);
}


.jalendar-container .jalendar-pages .days .day:nth-child(7n+5) .this-month-events-info,
.jalendar-container .jalendar-pages .days .day:nth-child(7n+6) .this-month-events-info,
.jalendar-container .jalendar-pages .days .day:nth-child(7n+7) .this-month-events-info {
    right: 0;
    left: auto;
    transform: translateX(0);
}

.jalendar-container .jalendar-pages .days .day:nth-child(7n+1) .this-month-events-info::before,
.jalendar-container .jalendar-pages .days .day:nth-child(7n+2) .this-month-events-info::before,
.jalendar-container .jalendar-pages .days .day:nth-child(7n+3) .this-month-events-info::before {
    left: 10%;
    right: auto;
}


.jalendar-container .jalendar-pages .days .day:nth-child(7n+5) .this-month-events-info::before,
.jalendar-container .jalendar-pages .days .day:nth-child(7n+6) .this-month-events-info::before,
.jalendar-container .jalendar-pages .days .day:nth-child(7n+7) .this-month-events-info::before {
    right: 10%;
    left: auto;
}

/*==== data table config ====*/
.dataTables_paginate {
    margin-top: 35px !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .dataTables_paginate {
        margin-top: 25px !important;
    }
}

@media only screen and (max-width: 767px) {
    .dataTables_paginate {
        margin-top: 20px !important;
    }
}

.dataTables_paginate span {
    display: flex;
    align-items: center;
    gap: 13px;
}

.dataTables_paginate span .paginate_button:last-child {
    border-right: none !important;
}

.paginate_button {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    border: none !important;
    background-color: var(--system_primary_color);
    box-shadow: 0 0 0 !important;
    width: 42px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
}

.paginate_button:not(:last-child) {
    border-right: none;
}

.paginate_button:hover,
.paginate_button.current {
    background-color: var(--system_secondary_color);
    color: #ffffff;
}

/*==== data table config ====*/
/* cropme config start */
.cropme-container {
    background-color: rgba(255, 255, 255, 0.5);
}

/* cropme config end */
/* summernote start*/
.note-editor {
    border-color: #dfe1e1 !important;
}

.note-toolbar {
    background-color: var(--system_primary_color_10) !important;
    border-color: #dfe1e1 !important;
}

.note-btn {
    border: none !important;
    background-color: transparent !important;
    color: #212529 !important;
    box-shadow: 0 0 0 !important;
}

.note-resizebar {
    background-color: var(--system_primary_color) !important;
    color: #ffffff !important;
}

.note-icon-bar {
    border-color: #ffffff !important;
}

/* summernote end*/
.accordion-item {
    border-radius: 18px !important;
    overflow: hidden;
    border: none;
}

@media only screen and (max-width: 767px) {
    .accordion-item {
        border-radius: 12px !important;
    }
}

.accordion-item:not(:last-child) {
    margin-bottom: 25px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .accordion-item:not(:last-child) {
        margin-bottom: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .accordion-item:not(:last-child) {
        margin-bottom: 15px;
    }
}

.accordion-button {
    background-color: var(--system_primary_color) !important;
    color: #ffffff !important;
    border-radius: 0;
    padding: 17px 24px;
    padding-right: 46px;
    font-size: 24px;
    line-height: 1.1666666667;
    font-weight: 500;
    box-shadow: 0 0 0 !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .accordion-button {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .accordion-button {
        font-size: 18px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .accordion-button {
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .accordion-button {
        font-size: 18px;
        padding: 10px 16px;
        padding-right: 40px;
    }
}

.accordion-button::after {
    content: "\f107";
    color: #ffffff;
    font-family: "Font Awesome 5 Pro";
    font-weight: 500;
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%) scaleY(1) !important;
    background: none !important;
    width: auto;
    height: auto;
    margin: 0;
    font-size: 18px;
}

@media only screen and (max-width: 767px) {
    .accordion-button::after {
        right: 16px;
        font-size: 16px;
    }
}

.accordion-button[aria-expanded="true"]::after {
    content: "\f106";
}

.accordion-body {
    padding: 36px 43px 34px 24px;
    color: #687083;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .accordion-body {
        padding: 26px 43px 24px 24px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .accordion-body {
        padding: 20px 30px 20px 20px;
    }
}

@media only screen and (max-width: 767px) {
    .accordion-body {
        padding: 20px;
    }
}

@media only screen and (max-width: 479px) {
    .accordion-body {
        padding: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .accordion-body {
        font-size: 14px;
        line-height: 26px;
    }
}

.tooltip {
    z-index: 8;
}

.tooltip-inner {
    background-color: var(--system_primary_color);
    border-radius: 100px;
    font-size: 12px;
    line-height: 1.1666666667;
}

.tooltip.show {
    opacity: 1 !important;
}

.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: var(--system_primary_color) !important;
}

.bs-tooltip-bottom .tooltip-arrow::before {
    border-bottom-color: var(--system_primary_color) !important;
}

.bs-tooltip-start .tooltip-arrow::before {
    border-left-color: var(--system_primary_color) !important;
}

.bs-tooltip-end .tooltip-arrow::before {
    border-right-color: var(--system_primary_color) !important;
}

.dashboard-right-top-cate-dropdown {
    border: none;
    border-bottom: 5px solid var(--system_primary_color);
    border-radius: 11px;
    box-shadow: 0px 4px 57px 0px rgba(0, 0, 0, 0.2);
}

.dashboard-right-top-cate-dropdown > ul {
    max-height: 500px;
    overflow-y: auto;
}

.dashboard-right-top-cate-dropdown > ul::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.dashboard-right-top-cate-dropdown > ul::-webkit-scrollbar-track {
    background: var(--system_primary_color_10);
    border-radius: 100px;
}

.dashboard-right-top-cate-dropdown > ul::-webkit-scrollbar-thumb {
    background: var(--system_primary_color);
    border-radius: 100px;
}

.dashboard-right-top-cate-dropdown::after {
    left: 28px;
}

.dashboard-right-top-cate-dropdown ul li ul {
    background: #fff;
    box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
}

#cate-dropdown ul li a {
    padding: 12px 20px;
}

#cate-dropdown ul li a:hover {
    background-color: var(--system_primary_color_10);
}

.page_pagination ul {
    justify-content: flex-end;
    margin-top: 40px;
    gap: 4px;
}

.page_pagination .pagination .page-link,
.page_pagination .pagination .disabled .page-link {
    font-size: 14px;
    font-weight: 400;
    color: #ffffff;
    border: none !important;
    background-color: var(--system_primary_color);
    box-shadow: 0 0 0 !important;
    width: 42px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
}

.page_pagination .pagination .page-link:hover,
.page_pagination .pagination .active .page-link {
    background-color: #018060;
    color: #ffffff;
}

.select2-container--default
.select2-selection--single
.select2-selection__arrow
b {
    display: none;
}

/* forum css start */
.text-primary {
    color: var(--system_primary_color) !important;
}

.text-secondary {
    color: var(--system_secondary_color) !important;
}

.text-black {
    color: #000000 !important;
}

.text-danger {
    color: #c5241f !important;
}

.text-yellow {
    color: #efb614 !important;
}

.bg-primary {
    background-color: var(--system_primary_color) !important;
}

.course-video-preview-progress {
    background: var(--system_secondary_color);
}

.bg-yellow {
    background-color: #efb614 !important;
}

.currentColor {
    color: currentColor !important;
}

.checkbox {
    display: flex;
    cursor: pointer;
}

.checkbox:not(:last-child) {
    margin-bottom: 12px;
}

.checkbox input:checked ~ .checkbox-marker {
    background-color: var(--system_primary_color);
    border-color: var(--system_primary_color);
}

.checkbox input:checked ~ .checkbox-marker::before {
    display: block;
}

.checkbox-marker {
    --width: 20px;
    width: var(--width);
    flex: 0 0 auto;
    height: var(--width);
    border-radius: 4px;
    border: 2px solid #000000;
    display: inline-block;
    text-align: center;
}

.checkbox-marker::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    color: #ffffff;
    font-size: 12px;
    display: none;
}

.checkbox-title {
    font-size: 16px;
    font-weight: 400;
    padding-left: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.form-box:not(:last-child) {
    margin-bottom: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .form-box:not(:last-child) {
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 991px) {
    .form-box:not(:last-child) {
        margin-bottom: 20px;
    }
}

.form-box.d-flex {
    gap: 10px;
}

.form-box.d-flex input {
    width: calc(100% - 163px - 10px);
    flex: 0 0 auto;
}

@media only screen and (max-width: 767px) {
    .form-box.d-flex input {
        width: calc(100% - 120px - 10px);
    }
}

.form-label {
    display: block;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #687083;
}

.form-control {
    border-color: rgba(104, 112, 131, 0.3);
    border-radius: 8px;
    padding: 16px 20px;
    font-size: 16px;
    line-height: 1.5;
    border-radius: 100px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .form-control {
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .form-control {
        padding-top: 14px;
        padding-bottom: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .form-control {
        padding-top: 12px;
        padding-bottom: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .form-control {
        padding-top: 10px;
        padding-bottom: 10px;
    }
}

.form-control::-moz-placeholder {
    color: #c4c4c4;
}

.form-control::placeholder {
    color: #c4c4c4;
}

.form-control:focus {
    border-color: var(--system_primary_color);
    box-shadow: 0 0 0 !important;
}

.form-control[type="button"],
.form-control[type="submit"] {
    background-color: var(--system_primary_color);
    border-color: var(--system_primary_color) !important;
    color: #ffffff;
    min-width: 160px;
    transition: all 0.35s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .form-control[type="button"],
    .form-control[type="submit"] {
        padding-left: 10px;
        padding-right: 10px;
        min-width: 120px;
    }
}

.form-control[type="button"]:hover,
.form-control[type="submit"]:hover {
    background-color: transparent;
    color: var(--system_primary_color);
}

.site-btn {
    display: inline-block;
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 14px;
    line-height: 1.1428571429;
    color: #000000;
    font-weight: 400;
}

.site-btn.active,
.site-btn:hover {
    background-color: var(--system_primary_color);
    color: #ffffff;
}

.certificate-btn{
    display: inline-block;
    font-size: 20px;
    line-height: 1.4;
    border-radius: 1rem;
    width: 200px;
    padding: .8rem 1rem;
    font-weight: 700;
    background-color: var(--system_primary_color);
    color: white;
    transition: all .3s ease !important;
}

.certificate-btn:hover{
    color: white;
    background-color: var(--system_secondary_color);


}

.theme-btn {
    display: inline-block;
    font-size: 20px;
    line-height: 1.4;
    border-radius: 8px;
    padding: 12px 26px;
    font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .theme-btn {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .theme-btn {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .theme-btn {
        padding: 10px 20px;
        font-weight: 500;
    }
}

@media (max-width: 1339px) {
    .dashboard-left-menu li a:hover {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
    }
}

.forum {
    padding-right: 0px;
}

.forum .section_title .text-primary:hover {
    color: #ffffff !important;
}

.forum .section_title .nav {
    width: 100%;
}

.forum .section_title .nav-item {
    margin-bottom: 0 !important;
}

.forum .section_title .nav-item:not(:last-child) {
    margin-right: 20px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum .section_title .nav-item:not(:last-child) {
        margin-right: 16px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum .section_title .nav-item:not(:last-child) {
        margin-right: 12px;
    }
}

@media only screen and (max-width: 767px) {
    .forum .section_title .nav-item:not(:last-child) {
        margin-right: 8px;
    }
}

.forum .section_title .nav-link {
    padding: 12px 32px;
    border: 2px solid var(--system_primary_color);
    color: var(--system_primary_color);
    border-radius: 100px;
    font-size: 16px;
    line-height: 1;
    font-weight: 700;
}

@media only screen and (max-width: 767px) {
    .forum .section_title .nav-link {
        padding-left: 20px;
        padding-right: 20px;
        font-size: 14px;
        font-weight: 600;
        border-width: 1px;
    }
}

.forum .section_title .nav-link.active {
    background-color: var(--system_primary_color);
    color: #ffffff;
}

.forum-list {
    margin-top: 32px;
}

.forum-title {
    background-color: #d9d9d9;
    padding: 14px 19px;
    border-radius: 8px;
}

.forum-title h4 {
    font-size: 20px;
    line-height: 1.4;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-title h4 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-title h4 {
        font-size: 18px;
    }
}

.forum-search .form-control {
    border-radius: 8px;
    border-color: #687083;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-topic ul:first-child {
        display: none;
    }
}

.forum-topic ul:not(:first-child) {
    margin-left: 80px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-topic ul:not(:first-child) {
        margin-left: 0;
    }
}

@media only screen and (max-width: 991px) {
    .forum-topic ul:not(:first-child) {
        margin-left: 0;
    }
}

@media only screen and (max-width: 767px) {
    .forum-topic ul:not(:first-child) {
        display: none;
    }
}

.forum-topic ul li {
    display: inline-block;
}

.forum-topic ul li a {
    display: block;
}

.forum-topic .keywords li a {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #000000;
    padding: 0 14px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-topic .keywords li a {
        padding: 0 10px;
    }
}

.forum-topic .keywords li a:hover {
    color: var(--system_primary_color);
}

.forum-topic .keywords li a.active {
    color: var(--system_primary_color);
}

.forum-topic .keywords li a.active::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: currentColor;
    border-radius: 100%;
    margin-right: 8px;
}

.forum-filter {
    margin: 40px 0;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .forum-filter {
        margin: 30px 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-filter {
        margin: 26px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-filter {
        margin: 22px 0;
    }
}

@media only screen and (max-width: 767px) {
    .forum-filter {
        margin: 18px 0;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-filter ul {
        gap: 18px !important;
    }
}

@media only screen and (max-width: 767px) {
    .forum-filter ul {
        gap: 10px !important;
    }
}

.forum-filter .site_btn {
    background-color: transparent;
    box-shadow: 0px 0px 20px rgba(208, 244, 216, 0.8);
    border-radius: 16px;
    color: rgba(0, 0, 0, 0.81);
    font-weight: 700;
    padding: 17px 20px;
    min-width: 140px;
    text-align: center;
    font-size: 16px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .forum-filter .site_btn {
        padding: 17px 10px;
        min-width: 128px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .forum-filter .site_btn {
        padding: 14px 17px;
        min-width: 115px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-filter .site_btn {
        padding: 14px 18px;
        font-size: 14px;
        min-width: 80px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-filter .site_btn {
        padding: 14px 15px;
        min-width: 80px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-filter .site_btn {
        padding: 10px 13px;
        min-width: 75px;
        font-size: 14px;
        border-radius: 10px;
    }
}

.forum-filter .site_btn.acitve,
.forum-filter .site_btn:hover {
    color: #ffffff;
    background-color: var(--system_primary_color);
}

@media only screen and (max-width: 767px) {
    .forum-type li {
        width: calc(33.3333333333% - 11px);
        flex: 0 0 auto;
    }
}

.forum-type-item {
    box-shadow: 0px 0px 20px rgba(208, 244, 216, 0.8);
    border-radius: 16px;
    text-align: center;
    color: rgba(0, 0, 0, 0.81);
    padding: 16px 18px;
    padding-top: 25px;
    display: block;
    min-width: 140px;
    font-size: 16px;
    font-weight: 700;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .forum-type-item {
        padding: 16px 12px;
        min-width: 123px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .forum-type-item {
        padding: 14px 12px;
        padding-top: 20px;
        min-width: 134px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-type-item {
        padding-top: 16px;
        font-size: 14px;
    }
}

@media only screen and (max-width: 991px) {
    .forum-type-item {
        padding: 14px 15px;
        font-size: 14px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-type-item {
        min-width: 145px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-type-item {
        min-width: -moz-max-content;
        min-width: max-content;
    }
}

.forum-type-item svg {
    display: block;
    margin: 0 auto;
    margin-bottom: 12px;
    height: 26px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .forum-type-item svg {
        width: 22px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .forum-type-item svg {
        height: 24px;
        width: 24px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-type-item svg {
        height: 24px;
        width: 24px;
    }
}

@media only screen and (max-width: 991px) {
    .forum-type-item svg {
        height: 24px;
        width: 24px;
        margin-bottom: 8px;
    }
}

.forum-type-item span {
    color: rgba(0, 0, 0, 0.81);
}

.forum-item {
    box-shadow: 0px 0px 20px rgba(208, 244, 216, 0.8);
    border-radius: 16px;
    padding: 18px 28px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .forum-item {
        padding: 18px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-item {
        padding: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-item {
        padding: 18px;
    }
}

.forum-item:not(:first-child) {
    margin-top: 30px;
}

.forum-item-left {
    width: 66.6666666667%;
    flex: 0 0 auto;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .forum-item-left {
        width: 50%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .forum-item-left {
        width: 54.1666666667%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-item-left {
        width: 66.6666666667%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-item-left {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .forum-item-left {
        width: 100%;
    }
}

.forum-item-right {
    width: 33.3333333333%;
    flex: 0 0 auto;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .forum-item-right {
        width: 50%;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .forum-item-right {
        width: 45.8333333333%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-item-right {
        width: 33.3333333333%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-item-right {
        width: 50%;
    }
}

@media only screen and (max-width: 767px) {
    .forum-item-right {
        width: 100%;
        text-align: left !important;
        margin-top: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-item-right .d-flex {
        justify-content: flex-start !important;
    }
}

.forum-item .site_btn {
    line-height: 1;
    margin-top: 12px;
    padding: 10px 15px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-item .site_btn {
        font-size: 12px;
    }
}

@media only screen and (max-width: 991px) {
    .forum-item .site_btn {
        font-size: 12px;
    }
}

.forum-item .site_btn:not(:last-child) {
    margin-right: 12px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-item .site_btn:not(:last-child) {
        margin-right: 8px;
    }
}

.forum-item-title {
    font-size: 24px;
    line-height: 1.1666666667;
    margin-bottom: 0;
    font-weight: 400;
    color: #000000;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-item-title {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-item-title {
        font-size: 18px;
    }
}

.forum-item-action {
    margin-bottom: 12px;
}

.forum-item-action li:not(:last-child) {
    margin-right: 8px;
}

@media only screen and (max-width: 991px) {
    .forum-item-action li:not(:last-child) {
        margin-right: 4px;
    }
}

.forum-item-action li a {
    display: block;
    background-color: #efefef;
    color: rgba(104, 112, 131, 0.83);
    border-radius: 4px;
    font-size: 12px;
    line-height: 14px;
    padding: 5px 10px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-item-action li a {
        font-size: 11px;
        padding: 5px 8px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-item-action li a {
        font-size: 11px;
        padding: 5px 10px;
    }
}

.forum-item-action li a .fa-thumbtack {
    transform: rotate(45deg);
    margin-right: 4px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-item-head .forum-item-left {
        width: 100%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-item-head .forum-item-right {
        width: 100%;
        text-align: left !important;
        margin-top: 14px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-item-head .forum-item-right .d-flex {
        justify-content: flex-start !important;
    }
}

.forum-item-head .forum-item-right > p {
    font-size: 16px;
    color: #687083;
    display: inline-flex;
    align-items: center;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-item-head .forum-item-right > p {
        margin-bottom: 10px !important;
    }
}

@media only screen and (max-width: 767px) {
    .forum-item-head .forum-item-right > p {
        margin-bottom: 10px !important;
    }
}

.forum-item-head .forum-item-right > p span {
    --width: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--width);
    height: var(--width);
    border-radius: 100%;
    background-color: #687083;
    color: #ffffff;
    font-size: 12px;
    margin-left: 8px;
}

.forum-item-head .forum-item-right > ul li {
    padding: 0 8px;
}

.forum-item-head .forum-item-right > ul li:first-child {
    padding-left: 0;
}

.forum-item-head .forum-item-right > ul li:last-child {
    padding-right: 0;
}

.forum-item-head .forum-item-right > ul li a {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #687083;
}

.forum-item-head .forum-item-right > ul li a:hover {
    color: var(--system_primary_color);
}

.forum-item-head .forum-item-right > ul li a i {
    margin-right: 8px;
}

.forum-item-author {
    --img-width: 40px;
}

@media only screen and (max-width: 991px) {
    .forum-item-author {
        --img-width: 34px;
    }
}

@media (max-width: 991px) {
    .forum-item-author.mt-1 {
        margin-top: 14px !important;
    }
}

.forum-item-author .forum-item-left {
    width: 58.3333333333%;
}

@media only screen and (max-width: 479px) {
    .forum-item-author .forum-item-left {
        display: none !important;
    }
}

.forum-item-author .forum-item-right {
    margin-top: 0;
    width: 41.6666666667%;
}

@media only screen and (max-width: 479px) {
    .forum-item-author .forum-item-right {
        width: 100%;
    }
}

.forum-item-author .img {
    width: var(--img-width);
    height: var(--img-width);
    flex: 0 0 auto;
    border-radius: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.forum-item-author .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.forum-item-author .content {
    width: calc(100% - var(--img-width));
    flex: 0 0 auto;
    padding-left: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-item-author .content {
        padding-left: 10px;
    }
}

@media only screen and (max-width: 991px) {
    .forum-item-author .content {
        padding-left: 10px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-item-author .content.ps-0.pe-3 {
        max-width: -moz-max-content;
        max-width: max-content;
    }
}

.forum-item-author .content h6 {
    font-size: 14px;
    color: #000000;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.forum-item-author .content h6:hover {
    color: var(--system_primary_color);
}

.forum-item-author .content span {
    font-size: 12px;
    color: #687083;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

.forum-item-author .content p {
    color: #687083;
}

.forum-item-author-replay {
    margin-right: 32px;
    --img-width: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-item-author-replay {
        margin-right: 10px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-item-author-replay {
        margin-right: 14px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-item-author-replay {
        margin-right: 10px;
        --img-width: 34px;
    }
}

.forum-item-author-replay .content {
    padding-left: 0 !important;
    padding-right: 16px;
}

@media (max-width: 991px) {
    .forum-item-author-replay .content {
        padding-right: 10px;
    }
}

@media (max-width: 991px) {
    .forum-item-author svg {
        width: 25px;
        height: 26px;
        display: block;
    }
}

@media only screen and (max-width: 767px) {
    .forum-item-author svg {
        width: 20px;
        height: 21px;
    }
}

.forum-pagination {
    margin-top: 40px;
}

@media only screen and (max-width: 991px) {
    .forum-pagination {
        margin-top: 30px;
    }
}

.forum-pagination .page-item {
    margin: 0 5px;
}

.forum-pagination .page-item:last-child .page-link,
.forum-pagination .page-item:first-child .page-link {
    background-color: transparent !important;
}

.forum-pagination .page-item.active .page-link {
    background-color: var(--system_primary_color);
}

.forum-pagination .page-link {
    --width: 27px;
    border: none;
    width: var(--width);
    height: var(--width);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--system_primary_color);
    border-radius: 100%;
    box-shadow: 0 0 0 !important;
    font-size: 16px;
}

.forum-pagination .page-link:hover {
    background-color: var(--system_primary_color_10);
}

.forum-category {
    padding: 28px;
    box-shadow: 0px 0px 20px rgba(208, 244, 216, 0.8);
    border-radius: 16px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .forum-category {
        padding: 18px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-category {
        padding: 18px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-category {
        margin-top: 40px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-category {
        margin-top: 30px;
    }
}

.forum-category h4 {
    font-size: 21px;
    line-height: 1.1428571429;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-category h4 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-category h4 {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-category h4 {
        margin-bottom: 20px;
    }
}

.forum-category ul li:not(:last-child) {
    margin-bottom: 24px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .forum-category ul li:not(:last-child) {
        margin-bottom: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-category ul li:not(:last-child) {
        margin-bottom: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-category ul li:not(:last-child) {
        margin-bottom: 16px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-category ul li .checkbox-title {
        font-size: 14px;
        padding-left: 8px;
    }
}

.forum-category ul li ul {
    padding-left: 38px;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .forum-category ul li ul {
        padding-left: 18px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .forum-category ul li ul {
        padding-left: 18px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-category ul li ul {
        padding-left: 20px;
    }
}

.forum-single {
    box-shadow: 0px 0px 20px rgba(208, 244, 216, 0.8);
    border-radius: 16px;
    padding: 20px 28px;
}

@media only screen and (max-width: 767px) {
    .forum-single {
        padding: 16px 20px;
    }
}

.forum-single-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.forum-single-title .d-flex {
    gap: 12px;
}

@media only screen and (max-width: 767px) {
    .forum-single-title .d-flex {
        gap: 8px;
    }
}

.forum-single-title h4 {
    font-size: 24px;
    line-height: 1.1666666667;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-single-title h4 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-single-title h4 {
        font-size: 18px;
    }
}

.forum-single-left {
    width: 33.3333333333%;
    flex: 0 0 auto;
}

@media (min-width: 1581px) {
    .forum-single-left {
        width: 25%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-single-left {
        width: 41.6666666667%;
    }
}

@media only screen and (max-width: 767px) {
    .forum-single-left {
        width: 50%;
    }
}

.forum-single-right {
    width: 66.6666666667%;
    flex: 0 0 auto;
}

@media (min-width: 1581px) {
    .forum-single-right {
        width: 75%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-single-right {
        width: 58.3333333333%;
    }
}

@media only screen and (max-width: 767px) {
    .forum-single-right {
        width: 50%;
    }
}

.forum-single-right .site_btn {
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 21px;
}

.forum-single-card {
    margin-top: 28px;
    box-shadow: 0px 0px 10px rgba(204, 205, 204, 0.4);
    border-radius: 16px;
    padding: 24px 28px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-single-card {
        margin-top: 20px;
        padding: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-single-card {
        padding: 16px 20px;
        margin-top: 20px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-single-card .forum-item-head .forum-item-left {
        width: 41.6666666667% !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-single-card .forum-item-head .forum-item-left {
        width: 41.6666666667% !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-single-card .forum-item-head .forum-item-right {
        width: 58.3333333333% !important;
        margin-top: 0 !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-single-card .forum-item-head .forum-item-right {
        width: 58.3333333333% !important;
        margin-top: 0 !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-single-card .forum-item-head .forum-item-right .d-flex {
        justify-content: flex-end !important;
    }
}

.forum-single-card .forum-item-left {
    display: flex;
    flex-direction: column;
}

.forum-single-card .forum-item-left p {
    margin-top: 8px;
}

.forum-single-card .forum-item-title {
    margin-bottom: auto;
}

.forum-single-card .forum-item-author {
    margin-bottom: 12px;
}

.forum-single-card .forum-item-action {
    margin-top: 12px;
    margin-bottom: 0;
}

.modal-content {
    border: none;
}

.border-primary {
    border-color: var(--system_primary_color) !important;
}

.forum {
    --m-32: 32px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum {
        --m-32: 26px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum {
        --m-32: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .forum {
        --m-32: 16px;
    }
}

.forum .select2-selection {
    border-color: rgba(104, 112, 131, 0.3);
    border-radius: 100px !important;
    line-height: 26px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .forum .select2-selection {
        line-height: 22px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum .select2-selection {
        line-height: 22px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum .select2-selection {
        line-height: 28px;
    }
}

.forum .select2-selection__rendered[title="Select CLASS or LEARNING PATH *"],
.forum .select2-selection__rendered[title="Select Category *"] {
    color: #c4c4c4;
}

.forum .select2-selection--single[aria-expanded]::before {
    right: 25px;
}

.forum .select2-selection--single[aria-expanded="false"]::before {
    content: "\f063";
}

.forum .select2-selection--single[aria-expanded="true"]::before {
    content: "\f062";
}

.forum .container {
    max-width: 1140px;
}

.forum .note-editor {
    border-color: rgba(104, 112, 131, 0.3);
    border-radius: 1rem;
    overflow: hidden;
}

.forum .note-toolbar {
    background-color: #f3fcfa;
    padding: 16px 24px;
}

@media only screen and (max-width: 991px) {
    .forum .note-toolbar {
        padding: 10px 14px;
    }
}

.forum .note-btn {
    background-color: #ffffff;
    color: var(--system_primary_color);
    box-shadow: 0 0 0 !important;
}

.forum .note-btn:hover,
.forum .note-btn:focus,
.forum .note-btn.active {
    background-color: var(--system_primary_color);
    color: #ffffff;
    border-color: var(--system_primary_color);
}

.forum .note-icon-font {
    color: var(--system_primary_color) !important;
}

.forum .note-resizebar {
    background-color: #f3fcfa;
    height: 18px !important;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
}

.forum .note-statusbar {
    border-color: rgba(104, 112, 131, 0.3);
}

.forum .note-editable,
.forum .note-placeholder {
    padding: 26px 24px !important;
}

.forum-add .forum-title {
    margin-bottom: 30px;
}

.forum-add .form-box .forum-type-item {
    box-shadow: 0 0 0;
    border: 1px solid rgba(104, 112, 131, 0.3);
    padding-left: 14px;
    padding-right: 14px;
    min-width: 127px;
}

.forum-add .form-box .forum-type-item:hover,
.forum-add .form-box .forum-type-item.active {
    background-color: var(--system_primary_color);
    color: #ffffff;
}

.forum-add .form-box .forum-type-item:hover span,
.forum-add .form-box .forum-type-item.active span {
    color: #ffffff;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .forum-add .form-box .forum-type-item {
        padding-left: 8px;
        padding-right: 8px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-add .form-box .forum-type-item {
        min-width: -moz-max-content;
        min-width: max-content;
        padding-left: 5px;
        padding-right: 5px;
    }
}

.forum-add .form-box .forum-type-item span {
    transition: all 0.35s ease-in-out;
}

.forum-add .form-control::-moz-placeholder {
    color: #c4c4c4;
}

.forum-add .form-control::placeholder {
    color: #c4c4c4;
}

.forum-add .forum-category {
    padding: 28px 32px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-add .forum-category {
        padding: 22px 26px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-add .forum-category {
        padding: 22px 18px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-add .forum-category ul li ul {
        padding-left: 20px;
    }
}

.forum-add .theme-btn {
    min-width: 330px;
}

@media only screen and (max-width: 767px) {
    .forum-add .theme-btn {
        min-width: 200px;
    }
}

.forum-details h1,
.forum-details h2,
.forum-details h3,
.forum-details h4,
.forum-details h5,
.forum-details h6 {
    color: #687083;
}

.forum-details .meta_title,
.forum-details .forum-item-author,
.forum-details h3 {
    margin-bottom: var(--m-32);
}

.forum-details .meta_title {
    font-size: 34px;
    line-height: 1.1764705882;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-details .meta_title {
        font-size: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-details .meta_title {
        font-size: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-details .meta_title {
        font-size: 24px;
    }
}

@media only screen and (max-width: 479px) {
    .forum-details .meta_title {
        font-size: 22px;
    }
}

.forum-details h3 {
    font-size: 44px;
    line-height: 1.3636363636;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .forum-details h3 {
        font-size: 40px;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-details h3 {
        font-size: 36px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-details h3 {
        font-size: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-details h3 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 479px) {
    .forum-details h3 {
        font-size: 22px;
    }
}

.forum-details .forum-item-author .content h6 {
    color: #687083;
    margin-bottom: 2px;
}

.forum-details p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.forum-details-img {
    display: block;
    width: 100%;
    padding-bottom: 52%;
    background-color: var(--system_primary_color);
    margin: 33px 0;
    border-radius: 16px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-details-img {
        margin: 27px 0;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-details-img {
        margin: 25px 0;
    }
}

@media only screen and (max-width: 767px) {
    .forum-details-img {
        margin: 20px 0;
    }
}

.forum-details-img img {
    max-width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    left: 0;
}

.forum-details-actions {
    margin-top: var(--m-32);
}

.forum-details-actions ul {
    border-bottom: 1px solid #687083;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

@media only screen and (max-width: 767px) {
    .forum-details-actions ul {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }
}

.forum-details-actions ul li {
    padding: 0 8px;
}

.forum-details-actions ul li:last-child {
    padding-right: 0;
}

.forum-details-actions ul li a {
    display: flex;
    align-items: center;
    font-size: 16px;
    color: #687083;
}

.forum-details-actions ul li a:hover {
    color: var(--system_primary_color);
}

.forum-details-actions ul li a i {
    margin-right: 8px;
}

.forum-details-actions .site-btn {
    border-radius: 8px;
    min-width: 160px;
    font-size: 16px;
    line-height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.forum-details-actions .site-btn i {
    font-size: 22px;
    margin-right: 10px;
}

.forum-comment {
    margin-top: var(--m-32);
    --m-40: 40px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .forum-comment {
        margin-top: 30px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-comment {
        margin-top: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-comment {
        --m-40: 24px;
        margin-top: 24px;
    }
}

.forum-comment-head .site-btn {
    border-radius: 8px;
    background-color: #687083;
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    line-height: 20px;
    max-width: 100%;
    width: 100%;
    min-width: 250px;
}

.forum-comment-head .site-btn:hover {
    background-color: var(--system_primary_color);
}

@media only screen and (max-width: 767px) {
    .forum-comment-head .site-btn {
        margin-bottom: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-comment-head .pagination {
        justify-content: center !important;
    }
}

.forum-comment-lists .forum-comment-head {
    margin-top: var(--m-40);
}

.forum-comment-list {
    --img-width: 42px;
    margin-top: var(--m-40);
}

.forum-comment-list .forum-comment-list {
    margin-left: 66px;
    padding-left: 30px;
    border-left: 1px solid #687083;
    margin-top: 0;
    padding-top: 28px;
}

@media only screen and (max-width: 767px) {
    .forum-comment-list .forum-comment-list {
        margin-left: 56px;
        padding-left: 20px;
    }
}

@media only screen and (max-width: 479px) {
    .forum-comment-list .forum-comment-list {
        margin-left: 10px;
        padding-left: 10px;
    }
}

.forum-comment-list .forum-comment-list:nth-child(2) {
    margin-top: 28px;
    padding-top: 0;
}

.forum-comment-list.replay_box {
    display: none;
}

.forum-comment-list .img {
    width: var(--img-width);
    height: var(--img-width);
    flex: 0 0 auto;
    border-radius: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.forum-comment-list .img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.forum-comment-list .content {
    width: calc(100% - var(--img-width));
    flex: 0 0 auto;
    padding-left: 24px;
}

@media only screen and (max-width: 767px) {
    .forum-comment-list .content {
        padding-left: 14px;
    }
}

.forum-comment-list .content-wrap {
    background-color: #f2f4f7;
    padding: 24px;
    padding-right: 32px;
    border-radius: 8px;
    position: relative;
}

@media only screen and (max-width: 767px) {
    .forum-comment-list .content-wrap {
        padding: 18px;
        padding-right: 26px;
    }
}

.forum-comment-list .content-wrap > div.d-flex {
    margin-bottom: 12px;
}

@media only screen and (max-width: 767px) {
    .forum-comment-list .content-wrap > div.d-flex {
        margin-bottom: 10px;
    }
}

.forum-comment-list .content-wrap:hover .actions {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.forum-comment-list .content .actions {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -40px;
    gap: 16px;
    padding-left: 50px;
    transition: all 0.35s ease-in-out;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@media only screen and (max-width: 767px) {
    .forum-comment-list .content .actions {
        margin-top: -32px;
    }
}

.forum-comment-list .content .actions button {
    --width: 32px;
    width: var(--width);
    height: var(--width);
    flex: 0 0 auto;
    border-radius: 100%;
    background-color: #f2f4f7;
    color: var(--system_primary_color);
    border: none;
    box-shadow: 0px 0px 3px #cccdcc;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.forum-comment-list .content .actions button:hover {
    background-color: var(--system_primary_color);
    color: #ffffff;
    box-shadow: 0 0 0;
}

.forum-comment-list .content h6 {
    font-size: 14px;
}

.forum-comment-list .content h6 span {
    font-size: 12px;
    color: #687083;
    padding-left: 12px;
    font-weight: 400;
}

.forum-comment-list .content p {
    font-size: 16px;
    line-height: 1.1875;
}

.forum-comment-list .content .heart-count {
    bottom: -11px;
    right: 30px;
    font-size: 12px;
    line-height: 1.1666666667;
    font-weight: bold;
    padding: 4px 9px;
}

.forum-comment-list .content .heart-count i {
    font-size: 10px;
}

.forum-comment-list .content .replay-like {
    gap: 8px;
    margin-top: 12px;
}

@media only screen and (max-width: 767px) {
    .forum-comment-list .content .replay-like {
        margin-top: 10px;
    }
}

.forum-comment-list .content .replay-like button {
    padding: 0 !important;
    box-shadow: 0 0 0 !important;
    font-size: 16px;
    color: #687083;
    border: none !important;
}

.forum-comment-list .content .replay-like button:hover {
    color: var(--system_primary_color);
}

@media only screen and (max-width: 767px) {
    .forum-comment-list .content .replay-like button {
        font-size: 14px;
    }
}

.forum-comment-list .content .replay-like .dot {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background-color: #d9d9d9;
}

.forum-comment-list .note-statusbar {
    display: none;
}

.forum-comment-list .note-editor {
    flex-direction: column-reverse;
    background-color: #f2f4f7;
    border: none;
    overflow: visible;
}

.forum-comment-list .note-toolbar {
    border-bottom: none;
    border-top: 1px solid #ffffff;
    background-color: transparent !important;
}

.forum-comment-list .post-comment {
    margin-top: 24px;
}

@media only screen and (max-width: 767px) {
    .forum-comment-list .post-comment {
        margin-top: 18px;
    }
}

.forum-comment-list .post-comment button {
    border-radius: 8px !important;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
    background-color: transparent;
    border-color: rgba(0, 0, 0, 0.2);
    line-height: 32px;
    padding-left: 17px;
    padding-right: 17px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .forum-comment-list .post-comment button {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .forum-comment-list .post-comment button {
        font-size: 18px;
    }
}

.forum-comment-list .post-comment button:not(:last-child) {
    margin-right: 20px;
}

.forum-comment-list .post-comment button:hover {
    background-color: var(--system_primary_color);
}

/* forum css end */
.video-full > div {
    width: 100%;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    bottom: 0 !important;
}

.video-full .video-screen-right {
    display: none;
}

.video-full .video-wrapper {
    height: 100vh;
}

.video-screen {
    height: calc(100vh - 133px);
    display: flex;
    flex-wrap: wrap;
    padding: 24px 18px;
    transition: all .5s ease;
}

.video-screen-left {
    width: 77%;
    flex: 0 0 auto;
    background-color: #ffffff;
    padding: 14px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}


.hide{
    transform: translateY(-100px);

}
@media only screen and (max-width: 1279px) {
    .video-screen-left {
        width: 100%;
        height: 500px;
        overflow: scroll;
    }
}

.video-screen-right {
    width: 23%;
    flex: 0 0 auto;
    padding-left: 18px;
}

@media only screen and (max-width: 1279px) {
    .video-screen-right {
        width: 100%;
        padding: 0;
        margin-top: 30px;
        padding-bottom: 30px;
    }
}

.video-screen .tab-content {
    height: calc(100vh - 337px);
    overflow: hidden;
    overflow-y: auto;
}

.video-screen .tab-content::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.video-screen .tab-content::-webkit-scrollbar-track {
    background-color: var(--system_primary_color_20);
    border-radius: 100px;
}

.video-screen .tab-content::-webkit-scrollbar-thumb {
    background-color: var(--system_primary_color);
    border-radius: 100px;
}

@media only screen and (max-width: 1279px) {
    .video-screen .tab-content {
        height: auto;
    }
}

.video-screen .accordion-button {
    padding-top: 11px;
    padding-bottom: 11px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .video-screen .accordion-button span {
        width: 58.3333333333%;
        font-size: 18px;
    }
}


@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .video-screen .accordion-button div {
        width: 41.6666666667%;
        font-size: 12px;
    }
}

.video-screen .accordion-body {
    padding: 24px 18px;
}

.video-screen .accordion-body ul li a {
    color: var(--system_secondary_color);
}

.video-screen .accordion-body ul li a:hover,
.video-screen .accordion-body ul li a.active span.checkbox-title {
    color: var(--system_primary_color);
}

.video-screen .accordion-body ul li a.active span.play {
    background-color: var(--system_primary_color);
}

.video-screen .accordion-body ul li a:hover > span {
    text-decoration: underline;
}

.video-screen .accordion-body ul li a .play {
    text-decoration: none !important;
    transition: all 0.35s ease-in-out;
}

@media only screen and (max-width: 767px) {
    .video-screen .accordion-body ul li a .mt-1 {
        margin-top: 0 !important;
    }
}

.video-collapse {
    position: absolute;
    width: 55px;
    height: 64px;
    border-top-left-radius: 100px;
    border-bottom-left-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0;
    padding-right: 10px;
    top: 15px;
    right: 0;
    background-color: var(--system_primary_color);
    border: none;
    color: #ffffff;
}

.video-collapse:hover {
    background-color: var(--system_secondary_color);
}

@media only screen and (max-width: 1279px) {
    .video-collapse {
        display: none;
    }
}

.video-title {
    --icon-width: 70px;
    padding-right: 100px;
    margin-bottom: 10px;
}

@media only screen and (max-width: 1279px) {
    .video-title {
        padding-right: 0;
    }
}

@media only screen and (max-width: 767px) {
    .video-title {
        --icon-width: 54px;
    }
}

.video-title > div {
    width: var(--icon-width);
    height: var(--icon-width);
    flex: 0 0 auto;
    border-radius: 10px;
    padding: 7px;
}

.video-title .circle-progress {
    --size: 57px;
    --lms-cicrle-radial: radial-gradient(
        closest-side,
        var(--system_secondary_color) 80%,
        transparent 85% 100%
    );
}

@media only screen and (max-width: 767px) {
    .video-title .circle-progress {
        --size: 40px;
    }
}

.video-title .circle-progress.started {
    background: var(--lms-cicrle-radial),
    conic-gradient(
        var(--system_primary_color) calc(var(--pgPercentage) * 1%),
        #e1f5f0 0
    );
}

.video-title .circle-progress-count {
    color: #ffffff !important;
    font-weight: bold;
}

@media only screen and (max-width: 767px) {
    .video-title .circle-progress-count {
        font-size: 10px;
    }
}

.video-title h4 {
    padding-left: 15px;
    font-weight: 600;
    font-size: 32px;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box !important;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    width: calc(100% - var(--icon-width));
    flex: 0 0 auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .video-title h4 {
        font-size: 28px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .video-title h4 {
        font-size: 26px;
    }
}

@media only screen and (max-width: 767px) {
    .video-title h4 {
        font-size: 24px;
    }
}

.video-wrapper {
    position: relative;
    z-index: 1;
    height: calc(100vh - 288px);
    background-image: var(--img);
    background-size: cover;
    background-color: rgba(0, 0, 0, 0.2);
    background-blend-mode: multiply;
    background-position: center;
    border-radius: 6px;
    overflow: hidden;
}

@media only screen and (max-width: 767px) {
    .video-wrapper {
        height: calc(100vh - 400px);
    }
}

@media only screen and (max-width: 479px) {
    .video-wrapper {
        height: calc(100vh - 600px);
    }
}

.video-wrapper img,
.video-wrapper iframe {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    border-radius: 6px;
}

.video-action-title {
    background-color: var(--system_secondary_color);
    padding: 14px 26px;
    border-radius: 10px;
    margin-bottom: 18px;
}

.video-action-title .site_btn {
    position: relative;
    z-index: 1;
    background-color: #ffffff;
    color: var(--system_primary_color);
    padding: 9px 12px;
    min-width: 75px;
}

.video-action-title .site_btn:hover {
    color: #ffffff;
}

.video-action-title .site_btn:hover span {
    background-color: #ffffff;
    color: var(--system_primary_color);
}

.video-action-title .site_btn.next span {
    left: auto;
    right: -12px;
}

.video-action-title .site_btn span {
    --width: 32px;
    font-size: 24px;
    width: var(--width);
    height: var(--width);
    border-radius: 100%;
    background-color: var(--system_primary_color);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0px;
    left: -12px;
    transition: all 0.35s ease-in-out;
}

.video-action-title .autoplay {
    font-size: 13px;
    line-height: 1.4;
    font-weight: 500;
    font-family: var(--system_text_font_family), sans-serif;
    color: #ffffff;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .video-action-title .autoplay {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .video-action-title .autoplay {
        font-size: 18px;
    }
}

@media only screen and (max-width: 479px) {
    .video-action-title .autoplay {
        font-size: 12px;
    }
}

/* .video-action-title .autoplay .switch {
    margin-left: 16px;
} */

@media only screen and (max-width: 479px) {
    .video-action-title .autoplay .switch {
        width: 35px;
        height: 20px;
    }
}

.video-action-title .autoplay .switch span {
    background-color: #e9e9f1;
}

@media only screen and (max-width: 479px) {
    .video-action-title .autoplay .switch span::before {
        --width: 16px;
    }
}

.qa-card {
    --img: 40px;
    position: relative;
    /*z-index: 1;*/
}

@media only screen and (min-width: 1581px) and (max-width: 1919px) {
    .qa-card {
        --img: 30px;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1580px) {
    .qa-card {
        --img: 25px;
    }
}

@media only screen and (max-width: 767px) {
    .qa-card {
        --img: 36px;
    }
}

.qa-card:not(:first-child) {
    margin-top: 14px;
}

.qa-card::before {
    content: "";
    width: 100%;
    height: calc(100% - 100px);
    position: absolute;
    top: 10px;
    left: 22px;
    z-index: -1;
    border-left: 2px solid #909e9b;
}

#conversition_box > .d-flex {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 15px;
}

@media only screen and (min-width: 1581px) and (max-width: 1919px) {
    #conversition_box > .d-flex {
        padding: 10px;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1580px) {
    #conversition_box > .d-flex {
        padding: 10px;
    }
}

@media only screen and (max-width: 767px) {
    #conversition_box > .d-flex {
        padding: 10px;
    }
}

.qa-card .qa-card {
    margin-left: 50px;
}

.qa-card .qa-card::before {
    width: 100px;
    height: 55px;
    border-bottom-left-radius: 20px;
    position: absolute;
    top: -11px;
    right: calc(100% - 72px);
    left: auto;
    border-bottom: 2px solid #909e9b;
}

@media only screen and (min-width: 1581px) and (max-width: 1919px) {
    .qa-card .qa-card::before {
        height: 55px;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1580px) {
    .qa-card .qa-card::before {
        height: 50px;
    }
}

@media only screen and (max-width: 767px) {
    .qa-card .qa-card::before {
        height: 60px;
    }
}

.qa-img {
    width: var(--img);
    height: var(--img);
    flex: 0 0 auto;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.qa-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: -1;
}

.qa-content {
    width: calc(100% - var(--img));
    flex: 0 0 auto;
    padding-left: 16px;
    /* padding-top: 10px; */
}

@media only screen and (min-width: 1280px) and (max-width: 1580px) {
    .qa-content {
        padding-left: 10px;
        padding-top: 5px;
    }
}

@media only screen and (max-width: 767px) {
    .qa-content {
        padding-left: 10px;
        padding-top: 5px;
    }
}

.qa-content h4 {
    font-size: 20px;
    line-height: 1.25;
    font-weight: 500;
    color: #4f4b57;
    margin-right: 12px;
}

@media only screen and (min-width: 1581px) and (max-width: 1919px) {
    .qa-content h4 {
        font-size: 18px;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1580px) {
    .qa-content h4 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 767px) {
    .qa-content h4 {
        font-size: 16px;
    }
}

.qa-content span {
    border-radius: 100px;
    font-size: 12px;
    line-height: 1.75;
    min-width: 100px;
    height: 24px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

@media only screen and (min-width: 1581px) and (max-width: 1919px) {
    .qa-content span {
        height: 20px;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1580px) {
    .qa-content span {
        min-width: -moz-max-content;
        min-width: max-content;
        height: 20px;
        font-size: 8px;
        padding: 0 10px;
    }
}

@media only screen and (max-width: 767px) {
    .qa-content span {
        min-width: -moz-max-content;
        min-width: max-content;
        height: 20px;
        font-size: 8px;
        padding: 0 10px;
    }
}

.qa-content p {
    font-size: 16px;
    line-height: 1.5555555556;
    color: #8f9b9c;
    margin-top: 10px;
}

@media only screen and (min-width: 1280px) and (max-width: 1580px) {
    .qa-content p {
        font-size: 14px;
        margin-top: 5px;
    }
}

@media only screen and (max-width: 767px) {
    .qa-content p {
        font-size: 14px;
        margin-top: 5px;
    }
}

.qa-reply {
    margin-top: 50px;
}

@media only screen and (min-width: 1200px) and (max-width: 1439px) {
    .qa-reply {
        margin-top: 40px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .qa-reply {
        margin-top: 36px;
    }
}

@media only screen and (max-width: 767px) {
    .qa-reply {
        margin-top: 26px;
    }
}

.qa-reply h4 {
    font-size: 24px;
    line-height: 1.1666666667;
    font-weight: 600;
    margin-bottom: 24px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .qa-reply h4 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .qa-reply h4 {
        font-size: 18px;
    }
}

@media only screen and (min-width: 1280px) and (max-width: 1580px) {
    .qa-reply h4 {
        margin-bottom: 14px;
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .qa-reply h4 {
        margin-bottom: 14px;
        font-size: 18px;
    }
}

.qa-reply textarea {
    display: block;
    border-radius: 12px;
    border: 1px solid var(--system_primary_color_80);
    padding: 16px;
    font-size: 16px;
    line-height: 1.5;
    color: #687083;
    width: 100%;
    height: 130px;
    resize: none;
    margin-bottom: 20px;
}

.qa-reply button {
    display: block;
    padding: 20px 25px;
    width: 100%;
    border: none;
    font-size: 18px;
    line-height: 1.5555555556;
}

@media only screen and (max-width: 991px) {
    .qa-reply button {
        font-size: 16px;
    }
}

.learning-details-count {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 55px;
    overflow-x: auto;
}

.learning-details-count::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.learning-details-count::-webkit-scrollbar-track {
    background-color: var(--system_primary_color_20);
    border-radius: 100px;
}

.learning-details-count::-webkit-scrollbar-thumb {
    background-color: var(--system_primary_color);
    border-radius: 100px;
}

.learning-details-count li {
    flex: 0 0 auto;
    width: -moz-max-content;
    width: max-content;
    position: relative;
    z-index: 1;
}

.learning-details-count li:not(:last-child) {
    padding-right: 30px;
}

.learning-details-count li:not(:last-child)::before {
    content: "";
    width: 100%;
    height: 2px;
    background-color: var(--system_primary_color);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    z-index: -1;
}

.learning-details-count li a {
    display: flex;
    align-items: center;
    justify-content: center;
    --width: 64px;
    width: var(--width);
    height: var(--width);
    border-radius: 100%;
    background-color: var(--system_primary_color);
    color: #ffffff;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .learning-details-count li a {
        font-size: 18px;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details-count li a {
        font-size: 18px;
    }
}

.learning-details-count li a.active,
.learning-details-count li a:hover {
    background-color: var(--system_secondary_color);
}

/*.learning-details-cardBody .course-item-info li:not(:last-child) {*/
/*    margin-right: 8px !important;*/
/*}*/

@media only screen and (min-width: 1200px) and (max-width: 1920px) {
    .learning-details-cardBody .course-item-info li {
        --width: 54px !important;
    }

    .course-item-type button {
        padding: 8px 6px !important;
        font-size: 13px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1580px) {
    .course-item-type button {
        padding: 8px 6px !important;
        font-size: 12px;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .learning-details-cardBody .course-item-info li:not(:last-child) {
        margin-right: 0 !important;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details-cardBody .course-item-info li:not(:last-child) {
        margin-right: 2px !important;
    }
}

.learning-details .course-item {
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.25);
    border: none;
}

.learning-details .course-item.quiz {
    padding: 25px;
}

.learning-details .course-item.quiz .course-item-info {
    margin-bottom: 0;
    justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
    .learning-details .course-item.quiz .course-item-info {
        margin-top: 10px;
        justify-content: flex-start;
    }
}

.learning-details .course-item.quiz .top {
    margin-bottom: 8px;
}

.learning-details .course-item.quiz .top h4 {
    font-weight: 700;
    font-size: 24px;
    line-height: 1.1785714286;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .learning-details .course-item.quiz .top h4 {
        font-size: 22px;
    }
}

@media only screen and (max-width: 991px) {
    .learning-details .course-item.quiz .top h4 {
        font-size: 20px;
        -webkit-line-clamp: 2;
        line-clamp: 2;
    }
}

.learning-details .course-item.quiz .top .left {
    width: 66.6666666667%;
    flex: 0 0 auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .learning-details .course-item.quiz .top .left {
        width: 59.6666666667%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .learning-details .course-item.quiz .top .left {
        width: 58.3333333333%;
        padding-right: 20px;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details .course-item.quiz .top .left {
        width: 100%;
    }
}

.learning-details .course-item.quiz .top .right {
    width: 33.3333333333%;
    flex: 0 0 auto;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .learning-details .course-item.quiz .top .right {
        width: 40.3333333333%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .learning-details .course-item.quiz .top .right {
        width: 41.6666666667%;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details .course-item.quiz .top .right {
        width: 100%;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .learning-details .course-item.quiz .bottom {
        align-items: center !important;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details .course-item.quiz .bottom {
        margin-top: 20px;
        flex-direction: column-reverse;
    }
}

.learning-details .course-item.quiz .bottom .left {
    width: 41.6666666667%;
    flex: 0 0 auto;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .learning-details .course-item.quiz .bottom .left {
        width: 45.8333333333%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .learning-details .course-item.quiz .bottom .left {
        width: 45.8333333333%;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details .course-item.quiz .bottom .left {
        width: 100%;
    }
}

.learning-details .course-item.quiz .bottom .right {
    width: 58.3333333333%;
    flex: 0 0 auto;
}

@media only screen and (min-width: 1440px) and (max-width: 1580px) {
    .learning-details .course-item.quiz .bottom .right {
        width: 54.1666666667%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .learning-details .course-item.quiz .bottom .right {
        width: 54.1666666667%;
    }
}

@media only screen and (max-width: 767px) {
    .learning-details .course-item.quiz .bottom .right {
        width: 100%;
    }
}

.learning-details .course-item.quiz .bottom ul {
    justify-content: flex-end;
}

@media only screen and (max-width: 767px) {
    .learning-details .course-item.quiz .bottom ul {
        margin-bottom: 14px;
        justify-content: flex-start;
    }
}

.learning-details .course-item.quiz .bottom ul li:not(:last-child) {
    margin-right: 15px;
}

.learning-details .course-item.quiz .bottom ul li b {
    color: var(--system_secondary_color);
    font-weight: 600;
}

.wishlisted svg path {
    fill: var(--system_primary_color);
}

/*
@media (min-width: 1440px) and (max-width: 1580px) {
    .course-item-type button:not(:last-child) {
        margin-right: 8px;
    }
}*/

@media (min-width: 1280px) and (max-width: 1439px) {
    .course-item-type button:not(:last-child) {
        margin-right: 0px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .course_category .search_box {
        width: 160px;
    }

    .course_category .search_box input {
        padding: 10px 12px;
    }
}

@media (min-width: 1440px) and (max-width: 1580px) {
    .quiz-item .actions {
        gap: 6px;
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .quiz-item .actions {
        gap: 4px;
    }
}

.badges-card .content {
    border-radius: 8px;
}

.profile_new_img {
    --width: 252px;
    width: var(--width);
    height: var(--width);
    border-radius: 100%;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.profile_new_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 479px) {
    .profile_new_img {
        --width: 180px;
    }
}

.custom_preloader {
    z-index: 7;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffffb8;
    position: absolute;
    width: 100%;
    height: 100%;
}

.nav-pills .nav-link {
    border-radius: 6px;
}

.badge_modals {
    max-height: 115px;
    padding-right: 8px;
    overflow: auto;
}

.is_marked {
    width: 20px;
}

.checkbox-btn {
    display: inline-flex;
    align-items: center;
    --width: 20px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.checkbox-mark {
    width: var(--width);
    height: var(--width);
    border-radius: 4px;
    flex: 0 0 auto;
    position: relative;
    border: 1px solid var(--system_primary_color_50);
    background-color: transparent;
}

.checkbox-mark::before {
    content: "\f00c";
    font-family: "Font Awesome 5 Pro";
    font-weight: 400;
    font-size: 13px;
    color: var(--system_primary_color);
    border-radius: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.35s ease-in-out;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.checkbox-btn:not(:last-child) {
    margin-bottom: 20px;
}

.checkbox-btn input:checked + .checkbox-mark::before {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.checkbox-title {
    font-size: 15px;
    line-height: 1.5;
    color: #687083;
    flex: 0 0 auto;
    width: calc(100% - var(--width));
    padding-left: 12px;
}

/* leaderboard */

.badges-list:hover span {
    color: var(--system_primary_color);
}

.leader-board-tooltip .tooltip-inner {
    white-space: pre-wrap;
    border-radius: 10px !important;
}

.dashboard_footer_cq {
    margin-left: 30px;
    margin-right: 30px;
    border-radius: 20px !important;
    margin-bottom: 20px;
}

@media only screen and (min-width: 420px) and (max-width: 1199px) {
    .dashboard_footer_cq {
        margin-left: 20px;
        margin-right: 20px;
        border-radius: 20px !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1279px) {
    .badges-card .content span {
        font-size: 13px;
    }
}

.course-details-content .tab-pane ul li::before {
    display: none;
}

.course-item-top .wishlist_close {
    --width: 36px;
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    width: var(--width);
    height: var(--width);
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    color: var(--system_primary_color);
}

.course-item-content-wishlist {
    min-height: 385px;
}

input#course-input-search {
    font-size: 16px;
}

.leader-board-tooltip[data-popper-reference-hidden] {
    visibility: hidden;
    pointer-events: none;
}

.blog_read {
    font-weight: normal !important;
    color: gray !important;
}

.reward-leader-item {
    border: 1px solid #d0dce5;
    border-radius: 6px;
    padding: 10px;
    background-color: transparent;
    transition: all .3s ease-in-out;
    cursor: pointer;
    flex: 0 0 100%;
    max-width: calc(100% - var(--position-width) - 8px);
}

.reward-leader-position.one {
    background: linear-gradient(149.01deg, #65ffb5 7.24%, #18ad77 84.86%);
}

.reward-leader-position {
    max-width: var(--position-width);
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #5c6574;
    font-size: 18px;
    line-height: 1.35;
    color: #fff;
    font-weight: 700;
    border-radius: 6px;
}

.reward-leader-profile {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    --img: 50px;
}

#myLeaderBoard .reward-leader-content {
    --position-width: 64px;
}

.reward-leader-content {
    --position-width: 58px;
}

.reward-leader-content {
    text-align: right;
}

.reward-leader-profile .img {
    max-width: var(--img);
    flex: 0 0 var(--img);
    height: var(--img);
    border-radius: 100%;
    overflow: hidden;
    border: 1px solid var(--system_primary_color);
}

.reward-leader-profile .content {
    max-width: calc(100% - var(--img));
    flex: 0 0 100%;
    padding-left: 14px;
}

.reward-leader-content h4 {
    font-size: 15px !important;
}

.reward-leader-content p {
    margin-bottom: 0px !important;
}

.reward-leader-profile .content p {
    text-align: left;
}

.reward-leader-content {
    max-height: 450px;
    padding-right: 8px;
    overflow: auto;
}

.course-item-type.d-flex.flex-wrap.gap-2 button:first-child {
    margin-bottom: 0px;
}

.search_box input {
    font-size: 16px;
}

@media only screen and (max-width: 767px) {
    .course-item-type.d-flex.flex-wrap.gap-2 .site_btn {
        margin-bottom: 0px;
    }
}

.question_number_lists button.questionLink {
    background: #354a45 !important;
    border-radius: 50%;

}

.question_number_lists button.wait_for_confirm {
    color: var(--system_primary_color);
    background: transparent !important;
    border: 0px solid;
    border-radius: 50%;

}

.question_number_lists button.pouse_qus {
    /* color: var(--system_primary_color); */
    background: #fff !important;
    border-radius: 50%;
}

.question_number_lists button.skip_qus {
    color: var(--system_primary_color);
    background: transparent !important;
    border-radius: 50%;
}

.question_number_lists button.active {
    color: var(--system_primary_color);
    background: #354A45;
    border-radius: 50%;
}

.video-action-title .autoplay .switch span {
    background: #e9e9f1;
}

.video-action-title .autoplay .switch input:checked + span {
    background: var(--system_primary_color);
}

.lang-selector {
    position: relative;
}

.lang-selected {
    border: 1px solid #c5c7cc;
            border-radius: 12px;
            padding:  8px;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
}

.lang-selected::before {
    content: "\f107";
    font-family: "Font Awesome 5 Pro";
    font-weight: 900;
    font-size: 16px;
    color: #687083;
    transform: scaleY(1);
    margin-right: 10px;
}

.lang-selected.open::before {
    transform: scaleY(-1);
}

.lang-selected img {
    width: 40px;
    height: auto;
    border-radius: 5px;
}

.lang-selector .lang-dropdown {
    width: 220px;
    text-align: left;
    display: none;
    position: absolute;
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    background-color: #ffffff;
    border-radius: 12px;
    padding: 10px 0px;
    box-shadow: 0px 4px 57px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    border-bottom: 5px solid var(--system_primary_color);
}

.lang-selector .lang-dropdown::before {
    content: "";
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    margin-bottom: -12px;
    border-right-width: 0;
    border-bottom-width: 0;
    background-color: #ffffff;
    border-radius: 4px;
}

.lang-item {
    display: block;
}

.lang-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    color: #687083;
    cursor: pointer;
    font-weight: 400;
    line-height: 40px;
    list-style: none;
    min-height: 40px;
    outline: 0;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 18px;
    padding-right: 29px;
    text-align: left;
    -webkit-transition: all 0.2s;
    transition: all 0.2s;
    font-size: 16px;
}

.lang-item a:hover {
    background-color: #f6f6f6;
}

.lang-item img {
    width: 30px;
    border-radius: 5px;
}

@media (max-width: 567px) {
    .lang-selector .lang-dropdown {
        width: 180px;
    }
}

.video-action-title .autoplay .switch span {
    background: #e9e9f1;
}

.video-action-title .autoplay .switch input:checked + span {
    background: var(--system_primary_color);
}

.star_icon .full {
    color: var(--system_primary_color_30);
}

/* calendar popup alignment */

/* badges new design */
.badge-accordion-contaienr .accordion-item {
    margin-bottom: 20px;
    border-radius: 8px !important;
}

.badge-accordion-contaienr .accordion-item .accordion-button {
    padding: 10px;
    border-radius: 8px !important;
    background: var(--system_primary_color);
    color: #ffffff;
    font-family: Roboto;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.badge-accordion-contaienr .accordion-item .accordion-button::after {
    height: 18px;
    width: 18px;
}

.badge-accordion-contaienr .accordion-item .accordion-body {
    padding: 20px;
}

.badge-accordion-contaienr .accordion-item .accordion-body .row {
    row-gap: 24px;
}

.single-badge-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.single-badge-item .badge-info .badge-name {
    color: var(--system_secondary_color);
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 700;
    line-height: 140%;
}

.single-badge-item .badge-info .badge-numbering {
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 140%;
    color: var(--system_primary_color);
}

.badge-image-container {
    background: #d9d9d9;
    padding: 14px;
    border-radius: 10px;
}

.badge-image-container img {
    width: 55px;
    height: 55px;
}

.badge-image-container.inactive img {
    filter: grayscale(1);
    opacity: .5;
}

.accordion-button.collapsed::after {
    content: url('../../wetech/img/icons/accordion-right-arrow.svg');
}

.accordion-button:not(.collapsed)::after {
    content: url('../../wetech/img/icons/accordion-up-arrow.svg');

}

/* badges new design  */
.status-block{
    padding: 4px;
    background-color:#98a3ad;
    border-radius: .2rem;
    bottom: 0;
    width: 100%;
}

.question-content, .question-overview{
    border: 1px solid var(--system_primary_color);
    border-radius: 12px;
    overflow: hidden;
}

.question-content {
    padding: 2rem;

}

.question-overview{
    padding-top: 1rem;
}

.overview{
    padding-left: 1.2rem;
    height: 50vh;
    overflow-y: scroll;
    width: 97%;
    -webkit-mask-image: linear-gradient(180deg, #198754 85%, #a1a1a147);

}

.hint{
    padding:10px;
    font-size: 24px;
    position: relative;
    line-height: 1.1666666667;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    color: var(--system_dark_20) !important;
    border-radius: 0.3rem !important;
    border: 2px solid var(--system_dark_20);
    width: 20%;
    max-width: 20%;
    overflow: hidden;
}



.quiz-timer-container {
    background-color: #343a4096;
    border-radius: 0.5rem;
    padding: 15px;
    justify-content: center !important;

  }

.current {
    top: 3px;
    right: 3px;
    background-color: var(--system_primary_color);
    width: 5px !important;
    height: 5px;
    border-radius: 100%;
}
.hint-desc{
    font-weight: 600;
    font-size: 14px;
    text-align: center;
}

.quiz-qst-body .nav-link.skip_qus.active > .status-block{
    top: 0;
}


.quiz-qst-body .nav-link.skip_qus.active > .status-block {
    top: 3px;
    right: 3px;
    background-color: var(--system_primary_color);
    width: 5px !important;
    height: 5px;
    border-radius: 100%;
  }

  .hint-container{
    border-top: 1px solid var(--system_primary_color);
    padding: 15px;
  }

  .drawer{
    display: none;
    font-size:20px;cursor:pointer;

  }
  .drawer svg{
    height: 15px;
  }

  #arrow{
    transition: all 0.3s ease;
  }

  .flip{
    transform: rotate(180deg);
  }



  @media (max-width: 992px){
    .question-overview-container{
        padding: 0;
        position: absolute;
        left: 0;
        width: 0;
        background-color: white;
        z-index: 1;
        transition: 0.5s all ease;
    }

    .drawer{
        display: block ;
    }


  }

  .open-drawer{
    width: 50vw;
  }

  .selected_option, .flagged {
    border: 2px solid var(--bs-gray) !important;
    color: var(--bs-gray) !important;
  }

  .selected_option > .status-block{
    background-color: #00C895;
  }



  .flagged > .status-block{
    background-color:var(--bs-yellow);
  }

  .question-hint, .question-flag {
    fill: var(--system_dark_20) ;
  }

  .question-action {
    fill: var(--system_dark_20) ;
    transition: all 0.2s ease;
    background-color: transparent;
    border: none;
  }

  .question-action:hover{
    fill: var(--system_primary_color);
  }

  .flag-active{
    fill: var(--system_primary_color);
  }


