:root{
    ---theme-color :#673de6;
    ---bg-color :#5025D1;
    --white: #fff
}

@font-face {
    font-family: "DMSans-Regular";
    src: url("../css/fonts/DMSans-Regular.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "DMSans-Medium";
    src: url("../css/fonts/DMSans-Medium.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "DMSans-SemiBold";
    src: url("../css/fonts/DMSans-SemiBold.ttf");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "DMSans-Bold";
    src: url("../css/fonts/DMSans-Bold.ttf");
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DMSans-Regular";
    font-size: 14px;
    background: #f2f3f6;
}

body,
html,
.main-wrapper,
.login-wrapper,
#main-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.footer{
    margin-top: auto;
}
.theme-color{
    color: var(---theme-color);
}
.font-bold {
    font-family: 'DMSans-Bold';
}

.text-default {
    font-size: 14px;
    margin-bottom: 15px;
}

.font-bold-lg {
    font-size: 20px;
    font-family: 'DMSans-Bold';
}
.font-sm-color {
    color: #6d7081;
    font-size: 12px;
}
.text-default-bold {
    font-size: 14px;
    font-family: 'DMSans-Bold';
    margin-bottom: 15px;
}

.text-md {
    font-size: 16px;
}

.text-md-bold {
    font-size: 16px;
    font-family: 'DMSans-Bold';
    margin-bottom: 15px;
}

.page-title {
    font-size: 20px;
    line-height: 32px;
    font-family: 'DMSans-Bold';
    color: #1d1e20;
    margin-bottom: 16px;
}

.page-wrapper {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.page-container {
    width: calc(100% - 260px);
    margin-left: 260px;
    flex: 1;
    padding: 23px 60px;
    margin-top: 70px;
}

.butoon-success {
    background: #1dac6d;
    color: #fff;
    font-size: 12px;
    border-radius: 20px;
    padding: 2px 12px;
}

.login-wrapper {
    color: #2F1C6A;
    background-color: #F4F5FF;
}

.logologin-div {
    padding: 20px 40px;
    margin-bottom: 45px;
    width: 300px;
}

.login-outer {
    width: 457px;
    padding: 42px 40px;
    background-color: white;
    border: 1px solid #D8DAE0;
    border-radius: 16px;
    margin: auto;
}

.title-login {
    text-align: center;
    font-size: 36px;
    line-height: 40px;
    font-family: "DMSans-Bold";
    margin-bottom: 25px;
}

.social-login-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
}

.social-link {
    border-radius: 8px;
    border: 1px solid #dadce0;
    padding: 12px 24px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 25px;
}

.facebook-link {
    background-color: #1877f2;
}

.or-social-wrapper {
    margin-bottom: 35px;
    background-color: #dadce0;
    height: 1px;
    position: relative;
    margin-top: 35px;
}

.or-social-wrapper span {
    padding: 0 10px;
    background: #fff;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #2F1C6A;
    font-size: 16px;
}

label {
    width: 100%;
    color: #6D7081;
    line-height: 24px;
}

input {
    padding: .85em 1.15em;
    line-height: 1.25;
    background-color: #fff;
    font-size: 14px;
    vertical-align: middle;
    min-height: 48px;
    border: 1px solid #DADCE0;
    border-radius: 8px;
    width: 100%;

}
.dropdown-input-setting select{
        padding: .85em 1.15em;
    line-height: 1.25;
    background-color: #fff;
    font-size: 14px;
    vertical-align: middle;
    min-height: 48px;
    border: 1px solid #DADCE0;
    border-radius: 8px;
          appearance: none;           /* Removes default arrow (most browsers) */
  -webkit-appearance: none;   /* Safari/Chrome */
  -moz-appearance: none; 
  padding-right: 22px; 
}

input:focus-visible,
input:focus {
    outline: -webkit-focus-ring-color auto 1px !important;
}

.social-form-group {
    margin-bottom: 15px;
    position: relative;
}

.social-form-group:last-child {
    margin-bottom: 8px;
}

.social-form-group svg {
    top: 13px;
    right: 10px;
    cursor: pointer;
    position: absolute;
}

.social-forgot {
    color: #673DE6;
    font-size: 16px;
    font-family: "DMSans-Bold";
    margin-bottom: 22px;
    display: block;
}

.common-btn {
    border-radius: 8px;
    border: 1px solid transparent;
    padding: .7rem .9rem;
    min-height: 53px;
    font-size: 16px;
    line-height: 24px;
    /* background-color: #673DE6; */
    background-color: #5e0281;
    color: #fff;
    width: 100%;
    margin-bottom: 24px;
    font-family: "DMSans-Bold";
    transition: .5s;
}

.common-btn:hover {
    background-color: var(---bg-color);
}

.social-login-btn {
    border-radius: 8px;
    border: 1px solid transparent;
    padding: .7rem .9rem;
    min-height: 53px;
    font-size: 16px;
    line-height: 24px;
    background-color: #673DE6;
    color: #fff;
    width: 100%;
    margin-bottom: 24px;
    font-family: "DMSans-Bold";
}

.social-login-btn:hover {
    background-color: var(---bg-color);
}

.social-access {
    font-family: "DMSans-Bold";
    margin-bottom: 22px;
    font-size: 16px;
    text-align: center;
    text-align: center;
    display: block;
}

.social-access-link {
    color: #673DE6;
}

.loader {
    position: fixed;
    background-color: #f2f3f6;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}

.loader-div {
    width: 176px;
    height: 176px;
    border-radius: 50%;
    position: relative;
    background: conic-gradient(#673de6 0% 75%, #673de633 75% 100%);
    animation: spin 3s linear infinite;
    /* rotate loader */
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader-div::before {
    content: "";
    position: absolute;
    inset: 2px;
    background: #fff;
    border-radius: 50%;
}

.loader-text {
    font-size: 48px;
    font-weight: bold;
    color: #673de6;
    animation: spin-reverse 3s linear infinite;
    /* cancel rotation */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

.nav-item.dropdown:hover::after {
    position: absolute;
    left: 50%;
    content: attr(tooltip);
    background-color: #6d7081;
    color: #fff;
    font-size: 16px;
    padding: 4px 16px;
    border-radius: 4px;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.dropdown-menu-header {
    background-color: #ffffff;
    color: #3b3d4a;
    padding: 16px;
    border-bottom: 1px solid #d8dae0;
}

.dropdown-user {
    font-size: 16px;
    letter-spacing: 1px;
    padding-bottom: .5rem;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    font-family: "DMSans-Bold";
}

.dropdown-mail {
    font-size: 14px;
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
}

.dropdown-submenu {
    padding: 24px;
}

.dropdown-submenu .dropdown-item {
    text-align: left;
    background-color: transparent;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 24px;
    padding: 12px;
    color: currentColor;
    font-size: 14px;
}

.dropdown-submenu .dropdown-item:hover {
    border-radius: 8px;
    background-color: #f8f9fa;
}

.sidebar-link.sidebar-link.active {
    color: #673de6 !important;
}

.title-h5 {
    color: #5e0281;
    text-align: center;
    font-family: 'DMSans-Bold';
}

.title-para {
    text-align: center;
}

.verify-social-btn {
    background-color: #5e0281;
}

.verify-social-resend {
    color: #673DE6
}

.verify-social-resend:hover {
    color: #5e0281
}

.dropdown-card {
    border: 1px solid #d8dae0;
    background: #ffffff;
    border-radius: 8px;
    color: #1d1e20;
    margin-bottom: 15px;
}

.dropdown-card:last-child {
    margin-bottom: 0;
}

.dropdown-card-header {

    padding: 15px;
    font-family: 'DMSans-Bold';
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border-radius: 8px 8px 0 0;
}

.dropdown-card-header i {
    margin-left: auto;
    flex: none;
    color: #5e0281;
    font-size: 17px;
    transition: .5s;
    cursor: pointer;
}
.dropdown-close-div.rotated {
    transform: rotate(180deg);
}
.dropdown-card-body {
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}

.dropdown-card.active .dropdown-card-body {
    max-height: 5000px;
    opacity: 1;
    visibility: visible;
}

.dropdown-card.active .dropdown-card-header i {
    transform: rotate(180deg);
}

.dropdown-card-inner-body {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-top: 1px solid #d8dae0;
    padding-top: 15px;
}

.audioPlayer{
   padding:15px; 
}

.card-body-head {
    font-family: 'DMSans-Bold';
    /* font-size: 14px; */
}

.card-body-para {
    font-size: 12px;
    color: #6D7081;
}

.dropdown-listing {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dropdown-card-icon {
    width: 30px;
    height: 30px;
    background: #fef9dc;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    border-radius: 8px;
    flex: none;
    position: relative;
}

.dropdown-card-online {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: green;
    top: 3px;
    right: 3px;
}

.btn.btn-outer-common {
    border: 1px solid #673de6;
    border-radius: 4px;
    font-family: 'DMSans-Bold';
    color: #673de6;
    font-size: 12px;
    margin-left: auto;
    flex: none;
}

.btn.btn-outer-common:hover {
    background-color: var(---bg-color);
    color: #fff;
}

.title-badge {
    width: 18px;
    height: 18px;
    font-size: 9px;
    background-color: red;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    margin-left: 5px;
    transform: translateY(-4px);
}

.card-body-subhead {
    color: #6d7081;
    font-size: 12px;
}

.dropdown-search {
    width: 40px;
    height: 40px;
    color: #3b3d4a;
    display: flex;
    align-items: center;
    justify-content: center;
    display: none;
    cursor: pointer;
}

.header-search {
    width: 400px;
    position: relative;
    color: #262831;
    margin-left: auto;
}

.header-search input,
.header-search input:focus {
    border: 1px solid #d8dae0;
    min-height: 40px;
    padding: 10px 32px;
    box-shadow: none !important;
    outline: 0 !important;
    padding-right: 90px;
}
input:hover,input:focus{
        border-color: #5e0281 !important;
}
.header-search i,.input-search-div i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.input-search-div input{
    padding-left: 35px;
}
.header-search input::placeholder {
    color: #262831;
}
.select2-container .select2-search--inline .select2-search__field{
    font-size: 14px !important;
}
.select2-search__field::placeholder{
    color: #262831 !important;
    font-size: 12px;
    opacity: .4;
    font-family: 'DMSans-Medium';
}

.header-ctrlk {
    display: flex;
    align-items: center;
    gap: 5px;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.header-ctrl-text {
    background: #f2f3f6;
    color: #3b3d4a;
    border-radius: 8px;
    padding: 2px 8px;
    font-size: 12px;
    font-family: 'DMSans-Bold';
}

.search-cancel-btn {
    display: none;
    color: #673de6;
    background-color: #00000000;
    padding: 7px 23px;
    border-radius: 8px;
    transition: .5s;
    border: 1px solid transparent;
    font-family: 'DMSans-Bold';
}

.sidebar-bottom {
    margin-top: auto !important;
}

.sidebar-bottom svg {
    width: 20px;
    height: 20px;
}

.sidebar-bottom-link,
.sidebar-bottom-link:hover {
    padding: 12px;
    background: #f2f3f6;
    display: block;
    border-radius: 8px;
    color: #161718;
    font-family: "DMSans-Bold";
}

.close-svg {
    width: 25px;
    height: 25px;
    cursor: pointer;
    flex: none;
    border: 1px solid transparent;
    border-radius: 50%;
    padding: 4px;
    transition: .5s;
}

.close-svg:hover {
    border: 1px solid #d8dae0;
    color: #673de6;
}

tbody th {
    font-size: 14px !important;
}

.social-forgot:hover {
    color: #5e0281;
}

.arrow-custom-sort {
    flex-direction: column;
    gap: 3px;
    flex: none;
    background: #ddd;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-custom-up {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 8px solid var(---bg-color);
    cursor: pointer;
}

.arrow-custom-down {
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 8px solid var(---bg-color);
}

.arrow-outer-div {
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer
}

.sidebar-nav #sidebarnav .sidebar-item.selected>.sidebar-link::after {
    border-color: #161718 !important;
}

.sidebar-nav {
    width: 100%;
}

.sidebar-nav #sidebarnav .sidebar-item .first-level {
    position: relative;
    padding: 0;
    padding-left: 30px;
    margin: 10px 0;
}

.sidebar-nav #sidebarnav .sidebar-item .first-level::before {
    content: '';
    position: absolute;
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    background: #f2f3f6;
    left: 20px;
    top: 0;
}

.left-sidebar {
    height: calc(100% - 70px);
    top: 70px;
    padding-top: 0px;
}

.sidebar-nav #sidebarnav .sidebar-item .sidebar-link .hide-menu {
    white-space: normal;
}

.arrow-outer-div svg {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.card-default-primary {
    background-color: #1f1247;
}

.dropdown-card-default .dropdown-card-body {
    max-height: unset;
    opacity: 1;
    visibility: visible;
}

.btn-group-wrap {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-default {
    width: fit-content;
    margin-bottom: 0;
    min-height: unset;
    font-size: 12px;
    padding: 11px 30px;
    border: 1px solid transparent;
    border-radius: 4px;
    flex: none;
    background-color: #000;
    color: #fff;
    font-family: 'DMSans-Bold';
}

.bg-color-primary {
    background: #673ee5;
}

.bg-color-primary:hover {
    border: 1px solid #673ee5;
    background: transparent;
    color: #673ee5;
}

.bg-color-info {
    background-color: #18bcc8;
}

.bg-color-info:hover {
    border: 1px solid #18bcc8;
    background: transparent;
    color: #18bcc8;
}

.tab-outer-div {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.tab-outer-container {
    width: calc(100% - 280px);
}

.tab-default-div {
    width: 250px;
}

.card-box-div {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.card-left-box {
    width: calc(100% - 230px);
}

.card-right-box {
    width: 200px;
}

.tab-inner-div {
    position: relative;
}

.tab-inner-div::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: #ccc;

}

.tab-default-list {
    padding: 6px 15px;
    position: relative;
    cursor: pointer;
    color: #000;
        display: flex;
    align-items: center;
    gap: 10px;
    padding-right: 0;
    padding-left: 30px;
}
.tab-default-list .progress-border-outer{
    flex: none;
    margin-left: auto;
}
.tab-default-list.active {
    color: #673ee5;
}

.active-bar {
    position: absolute;
    left: 0px;
    width: 2px;
    height: 40px;
    background: #673ee5;
    transition: top 0.3s ease, height 0.3s ease;
    top: 0;
}

.audio-container .audio-player {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.audio-container .play-btn,
.audio-container .volume-btn,
.audio-container .speed-btn {
    background: none;
    border: none;
    color: #000;
    cursor: pointer;
}

.audio-container .timeline {
    flex: 1;
    height: 6px;
    background-color: #f2f3f6;
    border-radius: 3px;
    cursor: pointer;
    position: relative;
}

.audio-container .time {
    font-size: 12px;
    color: #000;
    min-width: 60px;
    text-align: right;
}

.audio-container .timeline .progress {
    height: 100%;
    background-color: #000;
    border-radius: 3px;
    width: 0%;
}

.prev-next-btn {
    padding: 6px 14px;
    background: none;
    border-radius: 6px;
    font-family: 'DMSans-Bold';
    position: relative;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: .5s;
    outline: 0;
    box-shadow: none;
}

.prev-next-btn:hover {
    color: #673de6;
    border-color: #673de6;
}

.prev-next-btn svg {
    width: 20px;
    height: 20px;
}

.tab-inner-single::before {
    background: #673de6;
}

.tab-inner-single svg {
    width: 20px;
}

.tab-default-card {
    background: #FFF;
    border-radius: 8px;
    margin-top: 5px;
    color: #000;
    font-family: 'DMSans-Bold';
}

.tab-default-inner-card {
    padding: 10px 15px;
    font-size: 12px;
    border-bottom: 1px solid #f2f3f6;
    cursor: pointer;
}

.tab-default-inner-card:last-child {
    border-bottom: 0;
}

.tab-default-inner-tab {
    padding-left: 16px;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: .5s;
}

.tab-default-inner-card.active .tab-default-inner-tab {
    max-height: 5000px;
    opacity: 1;
    visibility: visible;
}

.tab-inner-menu {
    padding: 4px 0;
    cursor: pointer;
}

.tab-inner-menu.active {
    color: #673de6;
}

.display-menu-none {
    display: none !important;
}

.progress-bar {
    height: 8px;
    background: #e4e4e4;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.progress {
    height: 8px;
    background: #4f46e5;
    width: 12.5%;
    /* update dynamically */
    transition: width 0.4s ease;
}

.question-text {
    margin-bottom: 20px;
}

.quiz-container .options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.quiz-container .option {
    border: 2px solid #e5e7eb;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s;
    background: #fafafa;
}

.quiz-container .option:hover {
    border-color: #4f46e5;
    background: #f3f4f6;
}

.quiz-container input[type="radio"] {
    display: none;
}

.quiz-container input[type="radio"]:checked+label {
    border-color: #4f46e5;
    background: #eef2ff;
}

.list-item-nav {
    list-style: decimal;
    padding-left: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.common-btn-fit {
        width: fit-content;
    padding: 6px 10px;
    min-height: unset;
    font-size: 14px;
}
.common-btn-fit svg{
    width: 20px;
    height: 20px;
}
#QuestionAnswer{
    display: none;
}
#Instructions ul li{
    padding-bottom:5px;
}
#Instructions .list-item-nav{
    list-style: disc;
}
.card-left-box p.text-md-color{
    color: #6b6e75 !important;
    font-weight: bold;
    font-size: 14px !important;
}
.card-left-box p{
    color:#636363;
    font-size: 15px;
    line-height: 24px;
}

    .audio-player-container {
      margin:0 auto;
      background-color: #fff;
      
      border-radius: 8px;
     /* box-shadow: 0 4px 12px rgba(0,0,0,0.05);*/
      /*border: 1px solid var(--border);*/
      width: 100%;
      max-width: 500px;
    }

    .audio-player {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .play-btn, .volume-btn, .speed-btn {
      background: none;
      border: none;
      color: #0056b3;
      font-size: 16px;
      cursor: pointer;
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .timeline {
      flex: 1;
      height: 6px;
      background-color: #e0e0e0;
      border-radius: 3px;
      cursor: pointer;
      position: relative;
    }

    .timeline .progress {
      height: 100%;
      background-color: 0056b3;
      border-radius: 3px;
      width: 0%;
    }

    .time {
      font-size: 12px;
      color: #666666;
      min-width: 60px;
      text-align: right;
    }
    .footer{
        font-weight:500;
    }
    .dropdown-card-inner-body .btn-group-wrap .btn-default.bg-color-primary:hover{
        color:#fff;
        border:1px solid #fff;
    }
    .tab-default-list.active-sub{
            color: #673ee5;
    }
    .tab-default-list-submneu{
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }
    .tab-default-list.active .tab-default-list-submneu{
        max-height: 5000px;
        opacity: 1;
        visibility: visible;
    }
    .tab-default-list-submneu::before{
    content: '';
    position: absolute;
    width: 2px;
    background: #673ee5;
    height: 100%;
    left: 0;
    top: 0;
    }
    .progress-border-outer {
    width: 20px;
    height: 20px;
    background-color: #555;
    border-radius: 50%;
    transform: rotate(-45deg);
    flex: none;
        outline: 5px solid #f2f3f6;
    box-shadow: inset 0 0 0 5px #f2f3f6;
}
.progress-border {
	width: 100%;
	height: 100%;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.inner-circle {
	width: calc(100% - 5px);
	height: calc(100% - 5px);
	border-radius: 50%;
	background-color:#fff;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	transform: rotate(45deg);
	color: #000;
}
.tab-default-list-submneu .tab-default-list{
        font-size: 12px;
}
.arrow-with-bar{
        display: flex
;
    align-items: center;
    flex: none;
    gap: 4px;
}
 .sub-menu-tab-style{
        align-items: initial;
    padding-left: 15px;
 }
.select-custom-div {
    padding: 10px 15px;
    border: 1px solid #ddd;
    font-family: 'DMSans-Bold';
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
    display: none;
}
.select-custom-div i{
    margin-left: auto;
    flex: none;
}

.card-left-box-default .coursecontent ul{
    padding-left:20px;
}
.card-left-box-default .coursecontent ul li{
    list-style:disc;
}
.card-left-box-default .coursecontent strong{
    font-weight:600;
}
.submitbtn{
    margin-top:80px;
}
.endmoduletitle{
    margin: 35px 0;
    text-align: center;
    font-size: 25px;
}
.btn-group-wrap.justify-content-between{
    display: flex;
    margin-bottom:15px;
}

.tab-default-listbtn{
    margin:15px 0;
    padding-left:30px;
}
.sidebar-nav ul{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.icon-color{
    color:#673de6;
}
.group-item-inner {
    padding: 16px 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #D8DAE0;
    cursor: pointer;
    transition: .5s;
}
.group-item-inner:hover{
    background-color: #f1ecff;
}
.group-item-change-inner{
        padding: 16px 24px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #D8DAE0;
}
.group-item-left {
    display: flex
;
    align-items: center;
    width: 100%;
}
.group-item-left div {
    width: 50%;
}
.group-item-right {
    flex: none;
}
.group-item-header{
     padding: 16px 24px;
     border-bottom: 1px solid #D8DAE0;
}
.group-item-div{
        border: 1px solid #d8dae0;
    background: #ffffff;
    border-radius: 8px;
    color: #1d1e20;
    margin-bottom: 15px;
}
.group-item-left div + div{
    font-family: 'DMSans-Medium';
}

.switch-input {
  position: relative;
  display: inline-block;
    width: 45px;
    height: 25px;
}

.switch-input input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.switech-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.switech-slider:before {
  position: absolute;
  content: "";
    height: 19px;
    width: 19px;
    left: 4px;
    bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .switech-slider {
  background-color: #673de6;
}

input:focus + .switech-slider {
  box-shadow: 0 0 1px #673de6;
}

input:checked + .switech-slider:before {
  -webkit-transform: translateX(18px);
  -ms-transform: translateX(18px);
  transform: translateX(18px);
}

/* Rounded sliders */
.switech-slider.round {
  border-radius: 34px;
}

.switech-slider.round:before {
  border-radius: 50%;
}

.bckground{
    background:#f15c43;
}
.settingsave{
    text-align: center;
    margin:25px 0;
}
.test-page #QuestionAnswer .dropdown-card-inner-body{
    padding: 25px 25px;
}
.learnpage .quiz-container{
    padding:0px 20px;
}
.show-details-div{
    cursor: pointer;
}
.flex-none{
    flex: none;
}
.progress-border-outer-div{
    width: 80px;
    height: 80px;
        outline: 5px solid #fff;
    box-shadow: inset 0 0 0 5px #fff;
}
.progress-border-outer-div .inner-circle{
    width: calc(100% - 20px);
    height: calc(100% - 20px);
    margin: auto;
}
.progress-value-outer {
    display: flex
;
    align-items: center;
    gap: 20px;
        padding: 10px;
}
.progress-show-value {
    flex: 1;
    display: flex
;
    align-items: center;
    flex-wrap: wrap;
}
.progress-show-inner-value {
        width: 50%;
    border-right: 1px solid #ddd;
    text-align: center;
}
.progress-show-inner-value:last-child{
    border-right: 0;
}
.dropdown-card-unset .dropdown-card-header i {
    color: #fff;
    transform: rotate(0deg) !important;
}
.notification-inner-list-item {

    border-bottom: 1px solid #ddd;
    padding: 8px 0;
}
.notification-inner-list-inner-item{
       display: flex;
    gap: 5px;
    align-items: baseline; 
}
.notification-inner-list-item:last-child{
    border-bottom: 0;
}
.notification-inner-list-right {
    flex: none;
}
.notification-inner-list-right .badge {
    
    border-radius: 8px;

}
.list-details-bottom{
    /* position: sticky; */
    bottom: 0;
    background-color: #5e0281;
    display: flex;
    padding: 10px;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
    border-radius: 8px;
    transition: .5s;
}
.list-details-bottom:hover{
    background-color: var(---bg-color);
}
.page-container{
    display: flex;
    flex-direction: column;
    flex: 1 !important;
}

.menu-change .left-sidebar {
    width: 70px;
}
.menu-change  .page-container{
    width: calc(100% - 70px);
    margin-left: 70px;
}
.menu-change .left-sidebar .hide-menu{
    display: none;
}
.menu-change .left-sidebar svg{
    margin-right: 0 !important;
}
.bg-color{
    background-color: var(---bg-color) !important;
    color: var(--white);
}
.form-row .input-group .dropdown-toggle{
    border-radius: 8px 0 0 8px;
        border: 1px solid #DADCE0;
        border-right: 0;
}
.form-row .input-group .dropdown-item {
    padding: 4px 10px;
    font-size: 12px;
    font-family: 'DMSans-Regular';
}



.select2-results__option {
  padding-left: 25px;
  position: relative;
}

.select2-results__option::before {
  content: "☐";
  position: absolute;
  left: 5px;
  top: 7px;
}

.select2-results__option[aria-selected="true"]::before {
  content: "☑";
}
/* 🧹 Remove background hover and checkbox-style appearance for optgroup labels */
.select2-results__group {
  background: none !important;
  color: #333;
  font-weight: 600;
  padding: 6px 10px;
  cursor: default !important;
}

/* 🧩 Prevent hover gray background */
.select2-results__group:hover {
  background: none !important;
}

/* Optional: make group label visually distinct */
.select2-results__group::before {
  content: '';
}

/* 🩶 If you want a light gray section background (optional) */
.select2-results__options--nested {
  background-color: #f9f9f9; /* optional light background for sub-items */
}
[aria-label="Essential Training Bundle"]::before,[aria-label="Advanced Training Bundle"]::before{
    display: none;
}
.select2-results__option{
    padding-left: 25px !important;
}
 .select2-container .select2-selection--multiple{
    padding: .85em 1.15em !important;
    line-height: 1.25;
    background-color: #fff !important;
    font-size: 14px;
    vertical-align: middle;
    min-height: 48px !important;
    border: 1px solid #DADCE0 !important;
    border-radius: 8px !important;
    width: 100%;
        font-size: 12px;
 }
 .nav-pills .nav-link{
    background: transparent;
    color: #5e0281;
    font-family: 'DMSans-SemiBold';
    font-size: 12px;
    text-transform: capitalize;
 }
 .nav-pills .nav-link.active, .nav-pills .show > .nav-link{
    background-color: #5e0281;
 }
 .nav-pills{
    border: 1px solid transparent;
    border-radius: 8px;
    background-color: transparent;
}

.circle-progress-outer{
    border-radius: 50%;
    padding: 10px;
    cursor: pointer;
}
.circle-progress {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border: 2px solid #fff;
}

.circle-progress::before {
  content: "";
  position: absolute;
  width: calc(100% - 25px);
  height:  calc(100% - 25px);
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.circle-progress .value {
  position: relative;
  z-index: 1;
}
.table-pagination {
    display: flex;
    align-items: center;
    gap: 15px;
    justify-content: end;
    padding-right: 15px;
    padding-bottom: 15px;
}
.table-pagination select{
    min-width: 70px;
    flex: none;
    min-height: 40px;
    border-radius: 8px;
      appearance: none;           /* Removes default arrow (most browsers) */
  -webkit-appearance: none;   /* Safari/Chrome */
  -moz-appearance: none;      /* Firefox */
    padding: 8px 5px;
    background:#fff;
    cursor: pointer;
     font-family: "DMSans-SemiBold";
}
.form-select-sm option{
     font-family: "DMSans-SemiBold";
}

.pagination-arrow {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: none;
}
.pagination-arrow i{
    font-size: 20px;
    cursor: pointer;
    color: #5e0281;
    transition: .5s;
}
.pagination-arrow i:hover{
    color: #5025D1;
}
.dropdown-tabs .dropdown-toggle::after {
    display: inline-block;
}

.dropdown.dropdown-tabs:first-child .dropdown-toggle{
    border-radius: 8px 0 0 8px;
}
.dropdown.dropdown-tabs:last-child .dropdown-toggle{
    border-radius: 0px 8px 8px 0px;
}
.dropdown.dropdown-tabs .dropdown-toggle{
    border-radius: 0;
}
.btn-default{
    background-color: #5e0281 !important;
    color: #fff !important;
    transition: .5s;
}
.btn-default:hover,.btn-default:active{
    background-color: #5025D1 !important;
    color: #fff !important;
}
.navbar-brand img{
    width: 250px;
}
table tbody tr:last-child td,table tbody tr:last-child th{
    border: 0;
}
.dropdown-btns .dropdown-toggle::after {
    display: inline-block;
}
.dropdown-btns .btn{
    border-radius: 0;
}
.dropdown-btns:first-child .btn{
    border-radius: 8px 0 0 8px;
}
.dropdown-btns:last-child .btn{
    border-radius: 0px 8px 8px 0px;
}
.dropdown-btns .btn-default:hover,.dropdown-btns .btn-default:active{
    background-color: #5025D1 !important;
    color: #fff !important;
}

 .custom-select {
      position: relative;
      width: 100%;
    }
    /* .select-box {
    padding: .85em 1.15em;
    background-color: #fff;
    font-size: 14px;
    vertical-align: middle;
    min-height: 48px;
    border: 1px solid #DADCE0;
    border-radius: 8px;
    width: 100%;
        opacity: .4;
        padding-left: 30px;
        transition: .5s;
        position: relative;
    }
    .select-box:hover{
        border: 1px solid #5e0281;
    } */
    .dropdown-group-label {
     display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 10px;
}
.dropdown-group-label input {
    width: 14px;
    height: 14px;
    line-height: 1.3;
    padding: 0;
    min-height: unset;
}
.dropdown-group-head {
    font-family: 'DMSans-Bold';
    background: #5e0281;
    color: #fff;
    transition: .5s;
}
.dropdown-group-head:hover{
    background-color: #5025D1;
}
.refer-div {
    color: #5e0281;
    display: flex;
    align-items: center;
    gap: 8px;
    flex: none;
}
.refer-div:hover{
    color: #5025D1;
}

.form-floating > .form-control, .form-floating > .form-control-plaintext{
    padding: .85em 1.15em !important;
    padding-left: 38px !important;
}
.form-floating > label{
    top: -5px;
    opacity: .4;
        left: 25px;
}
.form-floating i{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
        left: 10px;
    font-size: 18px;
}
table td input{
        padding: 6px 10px;
    min-height: unset;
}
table td input::placeholder{
    font-size: 12px;
}
.dropdown-toggle-unset::after{
    display: none !important;
}
/* 
.select-box::before {
  font-family: "Font Awesome 5 Free"; 
  font-weight: 900; 
  content: "\f002"; 
position: absolute;
    left: 10px;
} */
.page-tab-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 5px;
}
.page-tab-wrapper .page-title{
    margin-bottom: 0;
    border-right: 1px solid #d8dae0;
    padding-right: 15px;
}
.all-settings-tab{
    display: flex;
    align-items: center;
    justify-content: end;
    flex-wrap: wrap;
    margin-bottom: 5px;
}
.all-settings-tab .btn-default {
    padding: 6px 7px;
}
.floting-label-input {
position: absolute; 
    top: 50%;
    transform: translateY(-50%);
    left: 35px;
    transition: .5s;
    overflow: hidden;
    text-align: start;
    text-overflow: ellipsis;
    white-space: nowrap;
    pointer-events: none;
    transform-origin: 0 0;
    transition: opacity 0.1s 
ease-in-out, transform 0.1s 
ease-in-out;
    background: #fff;
    width: fit-content;
    padding-left: 4px;
    padding-right: 4px;
}
.floating-input-custom:focus + .floting-label-input{
    transform: scale(0.85) translateY(-35px) translateX(-30px);
    color: #5025D1;
    background: #f9fbfd;
}
.input-search-div .floating-input-custom:focus + .floting-label-input{
    transform: scale(0.85) translateY(-40px) translateX(-30px);
}
.input-search-div input{
    box-shadow: none !important;
    outline: 0 !important;
}
.pagination-select-div i,.dropdown-input-setting i {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}
.pagination-select-div select:focus + i{
        position: absolute;
    top: 50%;
    right: 10px;
      transform: translateY(-50%) rotate(180deg);
  pointer-events: none;
  transition: transform 0.3s ease;
}
.chart-progress-varlue {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-family: "DMSans-SemiBold";
    font-size: 18px;
}
.dropdown-tabs .dropdown-item{
    font-size: 12px;
}
.dropdown-default-body{
        max-height: unset;
    opacity: 1;
    visibility: visible;
}
.topbar .top-navbar,.navbar-expand-lg .navbar-nav {
    gap: 10px;
}
.edit-btn{
        width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #5e0281;
    color: #fff;
    transition: .5s;
}
.edit-btn:hover{
    background-color: #5025D1;
}
.dropdown-card-body .ql-toolbar{
    border: 0 !important;
    border-bottom: 1px solid #ddd !important;
}
.addnew-staff,.add-new-course-btn{
    display: flex;
}
.enter-course-name,.enter-module-name{
    flex: 1;
    margin-left: 50px;
}


.file_upload_outer {
	position: relative;
	width: 100%;
	border-radius: 0px;
	margin: 0;
	text-align: center;
	padding: 0px;
	background: var(--white);
	border-top: 1px dashed #8c8e90;
	-webkit-border-radius: 0px 0px 8px 8px;
}

.formBottom {
	overflow: auto;
	position: relative;
	width: auto;
	margin: 0 auto;
}

.upload-btn-wrapper {
    padding: 15px 20px;
    min-height: 100px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.upload-btn-wrapper input[type="file"] {
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}
.sidebar-bottom-link.btn-default.active{
        color: #fff !important;
}
.upload-btn-audio{
    width: fit-content;
    border: 1px solid #ddd;
    border-radius: 8px;
    position: relative;
}
.upload-audio-outer {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}
.upload-select-file {
    color: #fff;
    font-size: 12px;
    padding: 4px 14px;
    border-radius: 20px;
    background: #5e0281;
    text-transform: capitalize;
    position: relative;
}
.upload-select-file svg{
    position: absolute;
    color: red;
    top: -9px;
    right: -11px;
    font-size: 8px;
    width: 12px;
    stroke-width: 4;
    cursor: pointer;
}
.checkbox-with-label{
    display: flex;
    align-items: center;
    gap: 15px;
}
.checkbox-with-label .form-check-input{
width: 15px;
    height: 15px;
    min-height: unset;
    min-width: unset;
    padding: 0;
    border: 2px solid #5e0281;
    outline: 0;
    box-shadow: none;
}

.checkbox-with-label .form-check-label{
    color: #000;
    font-family: 'DMSans-Medium';
}
.dropdown-add-input-inner {
    display: flex;
    align-items: center;
    gap: 10px;
}
.dropdown-add-input {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.dropdown-input-count {
    background: #f3afd8;
    flex: none;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}
.btn.btn-trash {
background: #c4baf9;
    color: #000;
    flex: none;
    border-radius: 6px;
    padding: 4px 10px;
}
.btn-trash i{
    font-size: 12px;
}
.dropdown-input-setting{
    flex: none;
}
.dropdown-add-input-inner input{
    flex: 1;
}
/* .add-option {
    background: #c4baf9;
    border-radius: 4px;
    padding: 4px 10px;
    border: 0;
    outline: 0;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 5px;
    font-family: 'DMSans-Medium';
} */
.add-option i {
    font-size: 12px;
}


/* Search Results Styles */
.search-results {
    background: white;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-top: 5px;
    padding: 0;
}

.search-results-header {
    padding: 12px 15px;
    border-bottom: 1px solid #f0f0f0;
    background: #f8f9fa;
    border-radius: 8px 8px 0 0;
}

.search-results-header h6 {
    margin: 0;
    font-weight: 600;
    color: #495057;
}

.search-results-body {
    padding: 0;
    max-height: 300px;
    overflow-y: auto;
}

.search-result-item {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f8f9fa;
}

.search-result-item.active {
    background-color: #e9ecef;
}



.search-result-title {
    font-weight: 500;
    color: #212529;
    flex: 1;
}

.search-result-status {
    font-size: 0.75rem;
    padding: 2px 8px;
    border-radius: 12px;
    font-weight: 500;
}

.search-result-status.active {
    background-color: #d4edda;
    color: #155724;
}

.search-result-status.inactive {
    background-color: #f8d7da;
    color: #721c24;
}

.search-results-footer {
    padding: 8px 15px;
    border-top: 1px solid #f0f0f0;
    background: #f8f9fa;
    border-radius: 0 0 8px 8px;
    font-size: 0.8rem;
    color: #6c757d;
}

.no-results {
    padding: 20px 15px;
    text-align: center;
    color: #6c757d;
}


/* Search bar animation */
.header-search {
    transition: all 0.3s ease;
}

.search-cancel-btn {
    background: none;
    border: none;
    color: #5e0281;
    font-weight: 500;
    cursor: pointer;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.search-cancel-btn:hover {
    background-color: #f8f9fa;
}

/* Ctrl+K indicator */

.header-search .fa-search, .input-search-div i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
}
.menu-change .sidebar-link:hover::before{
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    background: #5e0281;
    left: 100%;
    transform: translate(-50%, -50%) rotate(45deg);
    top: 50%;
    margin-left: 10px;
}

.menu-change .sidebar-link:hover::after {
    position: absolute;
    content: attr(tooltip);
    background-color: #5e0281;
    color: #fff;
    font-size: 16px;
    padding: 4px 16px;
    border-radius: 4px;
    top: 50%;
    left: 100%;
    margin-left: 10px;
    transform: translateY(-50%);
    font-size: 14px;
    display: block !important; /* Add this */
    z-index: 9999 !important; /* Ensure it's on top */
    white-space: nowrap; /* Prevent line breaks */
}

.footer .righticon img{
    width:40px;
    height:40px;
    float:right;
    margin-right:40px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-search {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 10px;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
        z-index: 1000;
    }
    
    .search-results {
        position: fixed !important;
        top: 120px !important;
        left: 10px !important;
        right: 10px !important;
        width: auto !important;
    }
     #navbarSupportedContent #searchpopup{
        display:none !important;
    }
    .topbar .navbar-header .navbar-brand img {
        width: 190px !important;
    }
    .topbar .navbar-header .nav-toggler.waves-effect .ti-menu{
        font-size:16px !important;
        color: #5C6778;
    }
    .group-item-left div{
        width:100% !important;
    }
}
@media (max-width: 480px) {
    .footer .righticon img{
        height: 40px;
        width: 100%;
        margin-right: 0;
        
    }
}

#navbarSupportedContent .user-dd .dropdown-submenu .dropdown-item:hover{
    background: #5e0281;
    color: #fff;
}