.hover-text {
    display: inline-block;
}

.hover-text span {
    display: inline-block;
    padding: 0 3px;
    cursor: pointer;
}

.hover-text span:hover {
    background: linear-gradient(
        106deg,
        var(--secondary-theme-color),
        var(--theme-color)
    );
    color: white;
    border-radius: 4px;
}

.header-right-icon-qbt img {
    width: 36px;
}

.header-right-icon-qbt {
    flex-direction: row;
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 15px;
}

.qbt_page-content .question-number {
    flex-direction: row;
    padding: 12px 25px;
    --rgbColorOpacity: 10%;
    background-color: rgb(var(--rgbColor) / var(--rgbColorOpacity));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.qbt_page-content span.titles-line {
    display: inline-block;
    padding: 15px 0px;
    font-size: 16px;
}
.qbt_page-content span.titles-line>*{
    font-size: inherit;
}
.qbt_page-content span.titles-line strong{
    font-weight: inherit !important;
}

.qbt_page-content .question-number-content {
    font-weight: 500;
    font-size: 18px;
}

.qbt_page-content .question-number-right a {
    font-size: 14px;
    padding: 8px 10px;
    border-radius: 7px;
    background: linear-gradient(
        106deg,
        var(--secondary-theme-color),
        var(--theme-color)
    );
    border-color: var(--btn-primary-bg);
    color: var(--btn-primary-color);
}

.qbt_page-content .question-number-right img {
    width: 22px;
}

.qbt_page-content .question-number-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.permission-row {
    flex-direction: row;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0px;
}

.permisssion-text-right .text-inner {
    background-color: rgb(var(--rgbColor) / var(--rgbColorOpacity));
    --rgbColorOpacity: 10%;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.permission-text-left .text-inner {
    font-size: 15px;
    font-weight: 600;
}

.question-container {
    border: 1px solid #01cdce;
    padding: 1rem;
    text-align: justify;
    border-radius: 15px;
}

.question-container .volume-icon-box {
    display: flex;
    margin-left: auto;
    align-items: center;
    background: linear-gradient(
        106deg,
        var(--secondary-theme-color),
        var(--theme-color)
    );
    border-radius: 60px;
    padding: 5px;
    width: fit-content;
}

.question-container .volume-icon svg {
    fill: #fff;
}

.select-dropdown-menu {
    padding-right: 10px;
}

.question-container .volume-icon {
    position: relative;
}

.select-dropdown-menu select {
    border: none;
    margin: 0px 3px 0px 10px;
    border-radius: 30px;
    padding: 2px 17px;
    height: 30px;
    font-weight: 600;
    font-size: 15px;
    color: var(--theme-color);
}

.select-dropdown-menu select option {
    font-weight: 600;
}

.volume-icon .volume-mute-line.show {
    background-color: #fff;
    height: 25px;
    width: 1px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.recording-section-main-wrap .recorder {
    width: 100%;
}

.recording-section-main-wrap .recorder .record-voice-user {
    flex-direction: column;
    display: flex;
    padding: 2rem 1.2rem 1.2rem 1.2rem;
    border-radius: 8px;
    gap: 2px;
    background-color: rgba(81, 218, 97, 0.2);
    height: 150px;
    position: relative;
    cursor: pointer;
}

.recording-section-main-wrap .recorder .record-voice-user.active {
    padding-right: 3.2rem !important;
}

.recording-section-main-wrap .middle-align-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.recording-section-main-wrap .middle-align-text span {
    font-size: 16px;
    font-weight: 600;
}

.recorder .record-timer {
    flex-direction: row;
    display: flex;
    flex: 1;
    gap: 15px;
    align-items: flex-end;
    justify-content: space-between;
}

.voice-recorder-icon {
    background: linear-gradient(
        106deg,
        var(--secondary-theme-color),
        var(--theme-color)
    );
    padding: 6px;
    border-radius: 50%;
}

.question-number-right .svg-container {
    cursor: pointer;
}

.record-timer .display-recording-timer {
    flex-direction: column;
    flex: 2;
    margin-right: 22px;
    display: flex;
    gap: 8px;
}

.recording-progressbar .progress {
    width: 100%;
    overflow: hidden;
    border-radius: 8px;
    height: 11px;
    background-color: #0000001a;
}

.recording-progressbar .progress .recording-progress-line {
    width: 0%;
    background: linear-gradient(
        106deg,
        var(--secondary-theme-color),
        var(--theme-color)
    );
}

.record-timer .recording-time-counter {
    display: flex;
    justify-content: space-between;
}

.record-timer .recording-time-counter span {
    font-weight: 600;
}

.recording-section-main-wrap .volume-meter {
    display: flex;
    position: absolute;
    right: 0;
    bottom: 1.3rem;
    height: 100px;
    width: 38px;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    gap: 2.5px;
    padding: 0;
    margin: 0% 1.5%;
}

.volume-meter {
    display: flex;
    flex-direction: column;
}

.volume-meter.hidden {
    display: none;
}

.volume-meter .volume_animation {
    height: 3px;
    width: 38px;
    margin-top: 0.5px;
    background-color: var(--theme-color);
    opacity: 1;
}

.volume-meter .volume_animation:nth-child(1) {
    opacity: 1;
}

.volume-meter .volume_animation:nth-child(17) {
    opacity: 0.1;
}

.volume-meter .volume_animation:nth-child(n + 2):nth-child(-n + 16) {
    --opacity: calc(1 - (0.9 / 15) * (var(--i) - 1));
    opacity: var(--opacity);
}

.volume-meter .volume_animation:nth-child(2) {
    --i: 2;
}

.volume-meter .volume_animation:nth-child(3) {
    --i: 3;
}

.volume-meter .volume_animation:nth-child(4) {
    --i: 4;
}

.volume-meter .volume_animation:nth-child(5) {
    --i: 5;
}

.volume-meter .volume_animation:nth-child(6) {
    --i: 6;
}

.volume-meter .volume_animation:nth-child(7) {
    --i: 7;
}

.volume-meter .volume_animation:nth-child(8) {
    --i: 8;
}

.volume-meter .volume_animation:nth-child(9) {
    --i: 9;
}

.volume-meter .volume_animation:nth-child(10) {
    --i: 10;
}

.volume-meter .volume_animation:nth-child(11) {
    --i: 11;
}

.volume-meter .volume_animation:nth-child(12) {
    --i: 12;
}

.volume-meter .volume_animation:nth-child(13) {
    --i: 13;
}

.volume-meter .volume_animation:nth-child(14) {
    --i: 14;
}

.volume-meter .volume_animation:nth-child(15) {
    --i: 15;
}

.recording-section-main-wrap .voice-recorder-icon img {
    width: 30px;
}

.submission-button-row button.submit-btn {
    color: #f47a7a;
    border: 1px solid #f47a7a;
    padding: 7px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.8s;
}

.submission-button-row button.submit-btn:hover {
    background-color: #f47a7a;
    color: #fff;
}

.submission-button-row button.restart-btn {
    color: var(--theme-color);
    border: 1px solid var(--theme-color);
    padding: 7px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.8s;
}

.submission-button-row button.restart-btn:hover {
    background-color: var(--theme-color);
    color: #fff;
}

.submission-button-row button.answer-btn {
    color: #0C5E15;
    border: 1px solid #0C5E15;
    padding: 7px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.8s;
}

.submission-button-row button.answer-btn:hover {
    background-color: #0C5E15;
    color: #fff;
}

.submission-button-row button.script-btn {
    color: #eb980a;
    border: 1px solid #eb980a;
    padding: 7px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 30px;
    transition: 0.8s;
}

.submission-button-row button.script-btn:hover {
    background-color: #eb980a;
    color: #fff;
}

.submission_wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.submission_wrapper .total-question-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 13px;
}

.submission_wrapper .total-question-list .free-clicks {
    background: rgb(236, 147, 95);
    display: flex;
    gap: 10px;
    padding: 5px 14px;
    border-radius: 14px;
    color: #fff;
    font-size: 17px;
}

.submission_wrapper .random-box-icon {
    background-color: #67b8fc;
    padding: 5px;
    border-radius: 50%;
}

.submission_wrapper .random-box-icon img {
    width: 23px;
}

.submission_wrapper .prev_nxt_btn {
    color: #fff;
    background-color: var(--theme-color);
    width: 33px;
    height: 33px;
    display: grid;
    place-content: center;
    border-radius: 50%;
}

.submission_wrapper .disabled {
    pointer-events: none;  /* Prevents clicks */
    opacity: 0.5;          /* Fades the button */
    cursor: not-allowed;   /* Shows a disabled cursor */
}

.total-question-list .total-question-dropdown-view {
    display: flex;
    align-items: center;
    background-color: var(--theme-color);
    padding: 5px;
    gap: 10px;
    border-radius: 30px;
}

.total-question-list .total-question-dropdown-view select {
    height: 31px !important;
    font-size: 15px;
    font-weight: 600;
    color: var(--theme-color);
    width: 120px;
    line-height: 1em;
    border-radius: 30px;
}

.total-question-list .total-question-dropdown-view option {
    font-size: 15px;
    font-weight: 600;
    color: var(--theme-color);
}

.total-question-list .total-ques {
    color: #fff;
    padding-right: 10px;
    font-weight: 500;
    font-size: 18px;
}

.prompt-instructions-wrap .instruction {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
}

.prompt-instructions-wrap .instruction-icon {
    display: flex;
    align-items: center;
}

.prompt-instructions-wrap .instruction-icon img {
    width: 20px;
}

.prompt-instructions-wrap {
    padding: 0px 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

span.learn-more {
    /* color: var(--theme-color); */
    color: #0d6efd;
}

/* player css starts from here */
.player_main-wrapper {
    width: 100%;
}

.player_main-wrapper .player-inner {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    border: 1px solid #01cdce;
    height: 150px;
    --rgbColorOpacity: 4%;
    background-color: rgb(var(--rgbColor) / var(--rgbColorOpacity));
}

.playing-section-main-wrap .progress_range_box {
    padding: 5px 0;
    min-height: 100px;
}

.playing-section-main-wrap .voice-player-footer {
    display: flex;
    width: 100%;
    height: 50px;
    padding-inline: 1rem;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #01cdce;
    font-size: 14px;
    font-weight: 600;
}

.playing-section-main-wrap .audio-play-icon img {
    width: 32px;
}

.playing-section-main-wrap .volume_play_slider {
    display: flex;
    gap: 15px;
    align-items: center;
    /* max-width: 190px; */
}

.volume_sound_progress {
    width: 110px;
}

.volume_sound_progress .sound-progress-outer-wrap {
    width: 100%;
    background-color: #deddf0;
    height: 6px;
    border-radius: 10px;
}

.volume_sound_progress .volume-progress-inner-line {
    position: relative;
    background-color: var(--theme-color);
    height: 6px;
    width: 0%;
    border-radius: 10px;
    max-width: 100% !important;
}

.volume_sound_progress .volume-progress-adjust-dot {
    background-color: #ffffff;
    box-shadow: 0 2px 6px 1px #00000024;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -3px;
    border-radius: 50%;
}

.progress_range_box {
    display: flex;
    align-items: center;
    padding: 0px 1.2rem !important;
}

.progress_range_box .volume_sound_progress {
    width: 100% !important;
}

.progress_range_box .sound-progress-outer-wrap {
    height: 8px !important;
}

.progress_range_box .volume-progress-inner-line {
    height: 8px !important;
}

/* player css ends from here */
/* tabs css starts from here */
.qbt-nav-tabs ul.nav-tabs {
    border: none !important;
}

.qbt-nav-tabs ul.nav-tabs button:hover {
    border-color: #fff !important;
}

.qbt-nav-tabs button.nav-link {
    font-size: 19px;
    font-weight: 500;
    width: 150px;
}

.qbt-nav-tabs button.nav-link.active {
    color: var(--theme-color);
}

.foram_list_wrap {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    /* margin-top: 30px; */
    border-radius: 16px;
    background-color: rgb(var(--rgbColor) / var(--rgbColorOpacity));
    --rgbColorOpacity: 10%;
}

.foram_list_wrap .comments-btn a {
    background-color: var(--theme-color);
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-block;
}

.foram_list_wrap .foram_view {
    display: flex;
    padding: 0.5rem;
    align-items: center;
    gap: 15px;
}

.foram_list_wrap .qbt-comment {
    border: 1px solid var(--theme-color);
    border-radius: 10px;
}

.foram_list_wrap .foram-user-img img {
    width: 55px;
    border-radius: 50%;
    border: 1px solid var(--theme-color);
}

.foram_view .user-detail-view {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 15px;
}

.foram_list_right .user-location-data {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 13px;
}

.user-data1 .user-location-data {
    padding-top: 2px;
}

.user-data1 .username {
    font-weight: 600;
}

.user-data1 .user-status {
    background-color: var(--theme-color);
    color: #fff;
    padding: 3px 7px;
    border-radius: 7px;
    font-size: 13px;
    line-height: 1.3;
}

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

.foram_list_right .like_comment_inner {
    display: flex;
    gap: 10px;
    align-items: center;
}

.icon-active path {
    fill: var(--theme-color) !important;
}

.qbt-nav-tabs .nav-tabs .nav-item .nav-link {
    font-size: 16px;
    padding: 10px 20px;
    line-height: 1.4;
    text-align: left;
    border: 1px solid #d7d7d7 !important;
    border-radius: 6px;
}

.qbt-nav-tabs .nav-tabs .nav-item .nav-link.active {
    background: var(--theme-color);
    color: #fff;
}

.qbt-nav-tabs .nav-tabs .nav-item .nav-link:hover {
    background: #d6d6d6;
}

.qbt-comment-reply {
    margin-left: 40px;
    /* margin-right: 15px; */
    padding: 2px 0;
    border-top: 1px solid #c3c3c3;
    margin-top: 10px;
}

.modal-header:has(.btn-close:not(:empty)) {
    align-items: center;
}

.btn-close:not(:empty) {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    background: none;
    position: relative;
    height: auto;
    font-size: 30px;
    color: #fff;
    opacity: 1;
}

.qbt-offcanvas-toggler {
    position: absolute;
    top: 50%;
    --offsetToggler: 32px;
    left: calc(var(--offsetToggler) * -1);
    width: var(--offsetToggler);
    height: 50px;
    background: var(--theme-color);
    display: grid;
    place-content: center;
    border-radius: 10px 0 0 10px;
}

.qbt-offcanvas-toggler svg {
    transition: 0.3s 0.4s;
}

.offcanvas.show .qbt-offcanvas-toggler svg {
    transform: rotate(180deg);
}

.qbt-offcanvas-toggler svg path {
    fill: #fff !important;
}

.qbt-canvas-width {
    width: 100%;
    --maxWidth: 70%;
    max-width: var(--maxWidth);
    visibility: visible !important;
}

.modal-backdrop  {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #000000b3;
    z-index: 99;
    top: 0;
    right: 0;
}

.text-underline {
    text-decoration: underline !important;
}

.hover-theme-lite:hover {
    --rgbColorOpacity: 8%;
    background-color: rgb(var(--rgbColor) / var(--rgbColorOpacity));
}
.view-more-btn a {
    background-color: var(--theme-color);
    color: #fff;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 500;
    padding: 10px 25px;
    border-radius: 5px;
    display: inline-block;
}
.hover_class {
    cursor: pointer;
}
/* .community_score_wrap .score-filter-container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
}
.community_score_wrap .score-filter-item {
    background-color: #fff;
    border: 1px solid var(--theme-color);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 30px;
    color: var(--theme-color);
}
.community_score_wrap .score-filter-item.active {
    background-color: var(--theme-color);
    border: 1px solid var(--theme-color);
    font-size: 15px;
    line-height: 1.3;
    font-weight: 600;
    padding: 8px 22px;
    border-radius: 30px;
    color: #fff;
    transition: 0.8s;
} */
@media (max-width: 1200px) {
    .qbt-canvas-width {
        --maxWidth: 80%;
    }
}
@media (max-width: 767px) {
    .qbt-canvas-width {
        --maxWidth: 90%;
    }
}

@media (max-width: 767px) {
    .qbt-nav-tabs .nav-tabs .nav-item .nav-link {
        text-align: center;
    }
}
.community_score_wrap button.nav-link {
    text-align: center !important;
}
.qbt-nav-tabs button.nav-link:hover {
    background-color: var(--theme-color) !important;
    color: #fff !important;
}
.community_score_wrap ul.nav-tabs {
    gap: 10px;
}
.community_list_wrap {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 20px;
    margin-top: 20px;
    border-radius: 16px;
    background-color: rgb(var(--rgbColor) / var(--rgbColorOpacity));
    --rgbColorOpacity: 10%;
}
.community_list_wrap .community-list {
    border: 1px solid var(--theme-color);
    border-radius: 10px;
    padding: 8px;
}
.community-user-img img {
    width: 55px;
    border-radius: 50%;
    border: 1px solid var(--theme-color);
}
.community_inner_wrap {
    display: flex;
    gap: 15px;
    align-items: center;
}
.community-detail-wrap {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 15px;
}
.community-detail-wrap-second {
    display: flex;
    gap: 10px;
    align-items: center;
    font-size: 15px;
}
.community-right {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.community-right .like_comment_inner {
    display: flex;
    gap: 10px;
    align-items: center;
}
.my_score_btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.my_score_btns .score-btn {
    display: flex;
    align-items: center;
    border-radius: 40px;
    width: 120px;
    height: 38px;
    padding: 3px;
    border: 1px solid var(--theme-color);
}
.my_score_btns .score-btn .score-inner-btn {
    width: 32px;
    height: 32px;
    border-radius: 100px;
    background-color: var(--theme-color);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #fff;
}
.my_score_btns .score-btn span {
    margin: auto;
    font-size: 15px;
    font-weight: 600;
    color: var(--theme-color);
}
.header-right-icon-qbt a:hover img {
    transform: scale(1.2);
}
.header-right-icon-qbt img {
    transition: 0.8s;
}
/* free_score_modal css strats here */
.free_score_modal {
    display: flex;
    align-items: center;
    justify-content: center;
}
.free_score_modal .modal-content {
    max-width: 400px;
    border-radius: 1rem;
    box-shadow: none;
    border: none;
}
.free_score_modal .modal_inner_content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
}
.free_score_modal .attention_icon {
    width: 100px;
}
.free_score_modal .attention_icon img {
    width: 100%;
}
.free_score_modal .attention_text {
    font-weight: 600;
}
.free_score_modal .attention-btns a.current-plan {
    background-color: var(--theme-color);
    color: #fff;
    padding: 8px;
    border-radius: 5px;
}
.free_score_modal .attention-btns a.upgrade-premium {
    background-color: rgb(var(--rgbColor) / var(--rgbColorOpacity));
    --rgbColorOpacity: 10%;
    color: var(--theme-color);
    padding: 8px;
    border-radius: 5px;
    font-weight: 600;
}
/* free_score_modal css ends here */
/* AI_score_modal css starts here */
.ai_score_modal {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.ai_score_modal .modal-content {
    min-width: 950px !important;
    border: none;
    box-shadow: none;
    border-radius: 0.8rem;
    padding: 0px !important;
    overflow: hidden;
}
.ai_score_modal .modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background-color: var(--theme-color);
    color: #fff;
    position: relative;
}
.ai_score_modal .modal-header-title img {
    width: 27px;
}
.ai_score_modal span.score_id {
    font-size: 18px;
}
.ai_score_modal .header-middle-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
}
.ai_score_modal .header-middle-title .center-title {
    font-size: 22px;
    font-weight: 600;
}
.ai_score_modal .header-middle-title .web-title {
    font-size: 12px;
}
.ai_score_modal button.btn-close {
    background-color: #ffffff !important;
    opacity: 1;
    border-radius: 50%;
    font-size: 10px;
}
.progress_card_ai_score {
    border: 1px solid var(--theme-color);
    border-radius: 7px;
    overflow: hidden;
}
.progress_card_ai_score .card-heading {
    background-color: var(--theme-color);
    color: #fff;
    padding: 8px;
}
.progress_card_ai_score .progress_pie_wrap {
    min-height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    padding: 7px 5px;
}
.progress_card_ai_score .score-circle-progress-bar-box {
    width: 70px;
    height: 70px;
}
.progress_card_ai_score .CircularProgressbar {
    width: 100%;
    vertical-align: middle;
}
.progress_card_ai_score path.CircularProgressbar-trail {
    stroke: rgba(76, 205, 205, 0.1);
    stroke-dasharray: 282.743px, 282.743px;
    stroke-dashoffset: 0px;
}
.progress_card_ai_score path.CircularProgressbar-path {
    stroke: var(--qbt-pie-progress-color) !important;
    stroke-dasharray: 282.743px, 282.743px;
    stroke-dashoffset: calc(282.743px / 100* calc(100 - var(--svgFillProgress)));
    transition: stroke-dashoffset 1s ease 0s;
    stroke-linecap: round;
}
.progress_card_ai_score .CircularProgressbar-text {
    font-size: 30px;
    font-weight: 600;
    color: var(--theme-color);
    transform: translateY(10px);
    text-anchor: middle;
}
.progress_card_ai_score .total-count-text {
    font-size: 14px;
    color: var(--theme-color);
    font-weight: 600;
}
.accordion-dd-detail-pt-wrap .accordion-dd-heading-inner {
    font-weight: 600;
    font-size: 14px !important;
}
.accordion-dd-detail-pt-wrap .accordion-dd-text-inner {
    font-size: 14px !important;
}
.ai_scoring_accordion .accordion-title-inner {
    font-size: 14px;
    font-weight: 600;
}
.ai_scoring_accordion span.heading_accordion {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.highlighted-content-inner .highlighted-content-text {
    font-size: 14px;
}
.time-taken-view-wrap {
    min-height: 115px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    padding: 0px 10px;
}
.minute-view .time-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--theme-color);
    letter-spacing: .5px;
}
.time-taken-view-wrap .time-view {
    display: flex;
    gap: 6px;
}
.time-taken-view-wrap .time-text {
    border-radius: 3px;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 16px;
    height: 30px;
    width: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.time-taken-view-wrap.alphabetic-answers .time-text {
    border-radius: 5px;
    background-color: var(--theme-color);
    color: #fff;
    font-size: 18px;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.time-taken-view-wrap.score-anlysis-card-container {
    padding: 15px !important;
}
/* .ai_score_modal .progress-circle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    flex-direction: column;
}
.ai_score_modal .progress-outer {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: grid;
    background: conic-gradient(var(--theme-color) 29%, rgb(255 255 255) 14%);
    place-content: center;
}
.ai_score_modal .progress-inner {
    width: 60px;
    background-color: #ffffff;
    height: 60px;
    display: grid;
    place-content: center;
    border-radius: 50%;
}
.ai_score_modal .progress_number {
    font-size: 25px;
    font-weight: 600;
    color: var(--theme-color);
}
.ai_score_modal .progress-range {
    color: var(--theme-color);
    font-weight: 600;
} */

/* .circlePercent {
    position: relative;
    top: 26px;
    left: 26px;
    width: 96px;
    height: 96px;
    border-radius: 50%;
    background: orange;
}
.circlePercent:before,
.circlePercent > .progressEnd {
    position: absolute;
    z-index: 3;
    top: 2px;
    left: 45px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: white;
    -ms-transform-origin: 3px 46px;
    transform-origin: 3px 46px;
    content: "";
}
.circlePercent:after,
.circlePercent > .progress {
    position: absolute;
    -ms-transform-origin: 48px 48px;
    transform-origin: 48px 48px;
    z-index: 0;
    top: 0;
    left: 0;
    width: 48px;
    height: 96px;
    border-radius: 48px 0 0 48px;
    background: orange;
    content: "";
}
.circlePercent.fiftyPlus:after {
    background: white;
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}
.circlePercent > .progress.progress {
    background: white;
}
.circlePercent > .counter {
    position: absolute;
    box-sizing: border-box;
    z-index: 2;
    width: 100px;
    height: 100px;
    margin-top: -2px;
    margin-left: -2px;
    border-radius: 50%;
    border: 4px solid orange;
}
.circlePercent > .counter:before {
    position: absolute;
    z-index: 1;
    top: 50%;
    margin-top: -13px;
    width: 100%;
    height: 26px;
    font-size: 26px;
    line-height: 26px;
    font-family: sans-serif;
    text-align: center;
    color: white;
    content: attr(data-percent) "%";
}
.circlePercent > .counter:after {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 6px;
    left: 6px;
    border-radius: 50%;
    background: orange;
    content: "";
}
.circlePercent > .counter[data-percent="100"] {
    background: white;
} */
.score_report {
    border: 1px solid var(--theme-color);
    border-radius: 7px;
    overflow: hidden;
}
.score_report .sr-header {
    background-color: var(--theme-color);
    color: #fff;
    padding: 8px;
    font-size: 16px;
}
.score_report .sr-internal-row {
    display: grid;
    grid-template-columns: 2fr 6fr 2fr;
    padding: 6px 10px;
    font-weight: 500;
    font-size: 14px;
}
.score_report .progress-root {
    background-color: #dbe3ff;
    height: 8px;
    border-radius: 10px;
    align-self: anchor-center;
    overflow: hidden;
}
.score_report .progress-root-inner {
    background-color: var(--qbt-ai-score-progress-color-first);
    height: 8px;
    width: 29%;
    border-radius: 10px;
}
.score_report .seperate-row-wrap {
    padding: 5px 0px;
}
/* .level-2 .progress-root-inner {
    background-color: #043e8f;
    width: 50%;
}
.level-3 .progress-root-inner {
    background-color: #5389d4;
    width: 80%;
} */
.voice_recorder_card {
    border: 1px solid var(--theme-color);
    border-radius: 8px;
    overflow: hidden;
}
.vc-header {
    background-color: var(--theme-color);
    padding: 10px;
    color: #fff;
    font-size: 17px;
}
.vc-card-body {
    padding: 10px;
}
.voice-record-footer {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px;
    border-top: 1px solid var(--theme-color);
}
.voice-record-footer * {
    font-size: 15px;
    font-weight: 500;
}
/* AI_score_modal css ends here */

/* Listening Audio Player - CSS Start */
.qbt-audio-player {
    flex-direction: row;
    display: flex;
    border: 1px solid rgb(var(--rgbColor) / var(--rgbColorOpacity, 100%));
    border-radius: 8px;
    padding: 0.7rem;
    text-align: justify;
    line-height: 25px;
    background-color: rgb(var(--rgbColor) / var(--rgbColorOpacity, 10%));
}

.qbt-audio-control svg {
    width: 28px;
    height: 28px;
}
.qbt-audio-control.play .player-play-icon{
    display: none !important;
}
.qbt-audio-control:not(.play) .player-pause-icon{
    display: none !important;
}
.qbt-audio-playspeed{
    border-radius: 8px;
    border: 0;
    background: rgb(var(--rgbColor)/ 100%);
    color: #fff;
    padding: 0 5px;
    font-size: 16px;
    line-height: 1;
    outline: none !important;
}
.qbt-progress-player-outer{
    height: 8px;
    width: 100%;
    background: rgb(var(--rgbColor) / 5%);
}
.volume_play_slider{
    width: 150px;
}
.qbt-progress-active{
    position: relative;
    background: rgb(var(--rgbColor) / 100%);
    border-radius: 12px;
    max-width: 100%;
    height: 8px;
    width: var(--qbt-progress-active);
}
.qbt-progress-activeDot {
    background-color: #ffffff;
    box-shadow: 0 2px 6px 1px #00000024;
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -3px;
    border-radius: 50%;
}
.qbt-player-timer {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 3px;
}
.qbt-volume-range-ui input[type="range"] {
    width: 100%;
    vertical-align: middle;
    appearance: none;
    height: 6px;
    border-radius: 10px;
    background-image: linear-gradient(90deg, rgb(var(--rgbColor)) var(--rangeValue), rgb(217, 209, 235) var(--rangeValue));
}
.qbt-volume-range-ui input[type="range"]::-webkit-slider-thumb{
    appearance: none;
    background-color: #fff;
    box-shadow: 0 2px 6px 1px #00000024;
    width: 15px;
    height: 15px;
    border-radius: 100px;
}
/* Listening Audio Player - CSS End */

/* Describe Image Module - CSS Start */
.img-type-test-module img{
    max-width: 100%;
    height: 450px;
}
/* Describe Image Module - CSS End */

/* Multi Choice Test - Reading & Listening - CSS Start */
.qbt-quesChoice-header {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border: 1px solid rgb(var(--rgbColor) / 100%);
    font-size: 16px;
    font-weight: 600;
}
.qbt-quesChoice-header, 
.qbt-quesChoice-header * {
    font-size: 16px !important;
    font-weight: 600 !important;
}
.qbt-quesChoice-body {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border: 1px solid #e4e4e4;
    background: rgb(var(--rgbColor) / 5%);
}
.qbt-quesChoice-group {
    display: grid;
    grid-template-columns: repeat(var(--quesChoice-grids), 1fr);
    gap: 15px 40px;
}
@media (max-width: 767px){
    .qbt-quesChoice-group {
        grid-template-columns: repeat(1, 1fr) !important;
    }
}
.qbt-quesChoice-item {
    display: flex;
    gap: 22px;
    margin-left: 15px;
    position: relative;
}
.qbt-quesChoice-item input {
    visibility: hidden;
}
.qbt-quesChoice-item input[type="checkbox"]::before, .qbt-quesChoice-item input[type="radio"]::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 2px solid rgb(var(--rgbColor) / 70%);
    border-radius: 4px;
    visibility: visible;
    top: 50%;
    transform: translateY(-50%);
}
.qbt-quesChoice-item input[type="radio"]::before{
    border-radius: 100px;
}
.qbt-quesChoice-item input[type="checkbox"]:checked::before {
    background: rgb(var(--rgbColor));
}
.qbt-quesChoice-item input[type="radio"]:checked::after{
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border: 5px solid rgb(var(--rgbColor));
    border-radius: 100px;
    visibility: visible;
    top: 50%;
    transform: translateY(-50%);
}
.qbt-quesChoice-item input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    visibility: visible;
    top: 50%;
    transform: translateY(-50%);
    background-image: url('data:image/svg+xml,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M5.29401%2013.998C4.85901%2013.998%204.44701%2013.795%204.18301%2013.445L0.610014%208.72402C0.499547%208.57823%200.4189%208.41209%200.372681%208.2351C0.326463%208.05812%200.315581%207.87376%200.340656%207.69256C0.365731%207.51137%200.426273%207.33689%200.51882%207.17911C0.611367%207.02133%200.734104%206.88334%200.880014%206.77302C1.02587%206.66225%201.19216%206.58134%201.36934%206.53495C1.54653%206.48856%201.73112%206.47759%201.91255%206.50267C2.09398%206.52776%202.26868%206.5884%202.42663%206.68112C2.58458%206.77384%202.72268%206.89683%202.83301%207.04302L5.18401%2010.147L11.095%200.655023C11.291%200.341622%2011.6034%200.118769%2011.9635%200.0353462C12.3236%20-0.0480768%2012.7021%200.0147419%2013.016%200.210023C13.669%200.616023%2013.87%201.47602%2013.462%202.13002L6.47801%2013.34C6.35879%2013.5322%206.19446%2013.6925%205.99929%2013.8068C5.80411%2013.9211%205.58399%2013.9861%205.35801%2013.996C5.33601%2013.998%205.31601%2013.998%205.29401%2013.998Z%22%20fill%3D%22%23FFFFFF%22%2F%3E%3C%2Fsvg%3E');
    background-size: 10px;
    background-position: center center;
    background-repeat: no-repeat;
}
.qbt-quesChoice-item label {
    display: flex;
    align-items: center;
    border: 1px solid rgb(var(--rgbColor));
    border-radius: 8px;
    margin: 0;
    font-size: 16px;
    font-weight: 500 !important;
    color: #333 !important;
    flex: auto;
}
.qbt-quesChoice-item.highlight-correct label, .qbt-quesChoice-item.highlight-wrong label{
    position: relative;
}
.qbt-quesChoice-item.highlight-correct label::before, .qbt-quesChoice-item.highlight-wrong label::before {
    content: '';
    background: #0c5e15;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    opacity: .15;
}
.qbt-quesChoice-item.highlight-correct label .ques-count{
    background-color: #0c5e15;
}
.qbt-quesChoice-item.highlight-wrong label .ques-count, .qbt-quesChoice-item.highlight-wrong label::before{
    background-color: #d50000;
}

.ques-count {
    width: 40px;
    height: 100%;
    display: grid;
    place-content: center;
    background: rgb(var(--rgbColor));
    color: #fff;
    border-radius: 6px 0 0 6px;
}
.qbt-quesChoice-item label .qbt-quesChoice-label {
    padding: 16px 14px;
    line-height: 1.5;
    background-color: #fff;
    border-radius: 0 8px 8px 0;
    flex: auto;
}
/* Multi Choice Test - Reading & Listening - CSS End */
/* Ques type - textarea - CSS Start */
.qbt-ques-textarea textarea{
    height: 150px;
}
.qbt-ques-textarea-word-count{
    display: flex;
    justify-content: flex-end;
    font-size: 15px;
    font-weight: 600;
    gap: 10px;
    color: var(--theme-color);
}
/* Ques type - textarea - CSS End */

/* Ques type - Fill in the blanks - CSS Start */
.qbt-ques-fillBlanks .qbt-fillBlank-wrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    row-gap: 10px;
}
.qbt-ques-fillBlanks .qbt-fillBlank-wrap span{
    padding: 0 5px;
}
.qbt-ques-fillBlanks .qbt-fillBlank-wrap input, .qbt-ques-fillBlanks .qbt-fillBlank-wrap select{
    border: 0;
    text-align: center;
    padding: 5px;
    border-bottom: 2px solid #000;
    outline: none !important;
    height: 40px;
}
div.fill-blank-input-text.highlight-wrong {
    margin: 0 5px;
    border-color: #d50000 !important;
    color: #d50000!important;
    height: 40px;
    border: 0;
    border-bottom-width: 2px;
    border-style: solid;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 600;
}
div.fill-blank-input-text.highlight-correct {
    margin: 0 5px;
    border-color: #0c5e15 !important;
    color: #0c5e15!important;
    height: 40px;
    border: 0;
    border-bottom-width: 2px;
    border-style: solid;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-weight: 600;
}
.fill-blank-input-text.highlight-correct, select.highlight-correct {
    border-color: #0c5e15 !important;
    color: #0c5e15 !important;
    font-weight: 600;
}
.fill-blank-input-text.highlight-wrong, select.highlight-wrong {
    border-color: #d50000 !important;
    color: #d50000 !important;
    font-weight: 600;
}
.qbt-ques-fillBlanks .qbt-fillBlank-wrap select{
    padding-left: 20px;
    padding-right: 20px;
    text-align: left;
    border-color: rgb(var(--rgbColor) / 100%);
    color: rgb(var(--rgbColor) / 100%);
}
.qbt-ques-fillBlanks .qbt-fillBlank-wrap span:hover:not(.qbt-fillBlank-dragged span){
    background-color: rgb(var(--rgbColor)/ 100%);
    color: #fff;
}
/* Prevent options from inheriting styles for both highlight-correct and highlight-wrong */
.fill-blank-input-text.highlight-correct,
.fill-blank-input-text.highlight-wrong,
select.highlight-wrong option {
    color: initial; /* Ensure option text color doesn't change */
    background-color: initial; /* Ensure background color stays unchanged */
}
/* Ques type - Fill in the blanks - CSS End */

/* Ques type - Drag & Drop - CSS Start */
.qbt-drag-drop-wrapper {
    display: flex;
    gap: 15px
}
.qbt-drag-drop-wrapper .qbt-source-side, .qbt-drag-drop-wrapper .qbt-target-side{
    width: 45%;
}
.qbt-drag-drop-wrapper .qbt-dragDrop-direction{
    width: 10%;
    align-self: center;
}
.qbt-dragBox-header {
    border-radius: 15px 15px 0 0;
    text-align: center;
    font-size: 22px;
    line-height: 1;
    letter-spacing: 0.8px;
}
.qbt-dragBox-body {
    border: 1px solid rgb(var(--rgbColor) / 100%);
    border-radius: 0 0 15px 15px;
}
.qbt-dragDrop-count {
    border-radius: 5px 0 0 5px;
    width: 40px;
    flex: none;
}
.qbt-dragDrop-item .qbt-dragdrop-text{
    padding: 1rem;
}
.qbt-dragDrop-item {
    user-select: none !important;
    cursor: grab;
}
.qbt-dragDrop-direction img{
    max-width: 70px;
    display: block;
    margin: auto;
}
@media (max-width: 767px){
    .qbt-drag-drop-wrapper {
        flex-direction: column;
    }
    .qbt-drag-drop-wrapper>*{
        width: 100% !important;
    }
    .qbt-dragDrop-direction{
        height: 100px;
        display: grid;
    }
    .qbt-dragDrop-direction img{
        transform: rotate(90deg);
    }
    .qbt-dragBox-body{
        min-height: 400px;
    }
}
/* Ques type - Drag & Drop - CSS End */

/* Ques Type - Selected Text - CSS Start */
.selected-text{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.selected-text span:hover, .selected-text span.marked{
    background-color: rgb(var(--rgbColor) / 100%);
    color: #fff;
}
.selected-text span.highlight-wrong, .selected-text span.highlight-correct {
    color: var(--selectedAnsBorder, #000);
    font-weight: 600;
    border: 1px solid var(--selectedAnsBorder, #000);
    padding: 0 5px;
    border-radius: 5px;
}
.selected-text span.highlight-wrong{
    --selectedAnsBorder: #d50000;
    color: var(--selectedAnsBorder);
    font-weight: 600;
}
.selected-text span.highlight-correct{
    --selectedAnsBorder: #0c5e15;
}
.selected-text span+.highlighted-text{
    --selectedAnsBorder: rgb(var(--rgbColor)/ 100%);
    color: var(--selectedAnsBorder);
    font-weight: 600;
}
/* Ques Type - Selected Text - CSS End */

/* Ques type - Fill in blanks - drag - CSS Start */
.qbt-fillBlank-dragged input {
    padding: 10px;
    border: 1px solid var(--qbtFillBlank-border, #ACACAC) !important;
    border-radius: 5px;
    min-width: 150px;
    height: 36px !important;
    background: #F7F7F7;
    margin: 0 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--qbtFillBlank-border, #000);
    font-weight: 600;
    font-size: 14px;
}
.qbt-fillBlank-dragged.highlight-correct{
    --qbtFillBlank-border: #0c5e15;
}
.qbt-fillBlank-dragged.highlight-wrong{
    --qbtFillBlank-border: #d50000;
}
.qbt-fillBlank-dragged+.highlighted-text {
    height: 30px;
    border-bottom: 2px solid var(--qbtFillBlank-border, #000);
    color: var(--qbtFillBlank-border, #000);
    padding-left: 15px;
    padding-right: 15px;
    font-weight: 600;
    font-size: 14px;
}
.qbt-fillBlank-dragged.highlight-wrong+.highlighted-text{
    /* --qbtFillBlank-border: #d50000 !important; */
    --qbtFillBlank-border: #0C5E15 !important;
}
.qbt-fillBlank-dragged.highlight-wrong+.highlighted-text.highlight-correct{
    --qbtFillBlank-border: #0C5E15 !important;
}
.qbt-fillBlank-dragged-options{
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
}
.qbt-fillBlank-dragged-options input {
    border: 1px solid rgb(var(--rgbColor) / 100%);
    color: rgb(var(--rgbColor) / 100%);
    background-color: rgb(var(--rgbColor) / 5%);
    padding: 5px 10px;
    line-height: 1;
    margin: 0 5px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    cursor: grab;
    user-select: none;
    outline: none !important;
}
/* Ques type - Fill in blanks - drag - CSS End */
/* AnswerBox - CSS Start */
.qbt-answerBox-header {
    border-top-left-radius: 15px;
    border-top-right-radius: 15px;
    border: 1px solid rgb(var(--rgbColor) / 100%);
    font-size: 18px;
    font-weight: 600;
}
.qbt-answerBox-body {
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
    border: 1px solid #e4e4e4;
    background: #fff;
}
/* AnswerBox - CSS End */

/* AnswerBox Offcanvas - Start */
.answerBox-offcanvas{
    height: 70vh;
}
.answerBox-offcanvas>* {
    max-width: 1000px;
    margin: auto;
    width: 100%;
}
.answerBox-offcanvas .offcanvas-body p{
    margin-bottom: 15px !important;
}
/* AnswerBox Offcanvas - End */

/* QBT Mic Test Modal - Start */
.qbtMicDisabledModal{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    visibility: hidden;
}
.qbtMicDisabledModal.show{
    visibility: initial !important;
    z-index: 9999;
}
.qbtMicDisabledModal.show .modal-container{
    transform: translateY(0) scale(1);
}
.qbtMicDisabledModal::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
    opacity: .4;

}
.qbtMicDisabledModal .modal-container{
    position: relative;
    background: #fff;
    padding: 20px;
    max-width: 450px;
    margin: auto;
    border-radius: 15px;
    transform: translateY(-50px) scale(0);
    transition: .3s;
}
.qbtMicDisabledModal .qbtMicIcon{
    --fontSize: 60px;
    font-size: var(--fontSize);
    outline: 3px solid var(--theme-color);
    border-radius: 100px;
    outline-offset: 5px;
}
.qbtModalClose {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--theme-color);
    border: none;
    color: #fff;
    width: 28px;
    height: 28px;
    display: grid;
    place-content: center;
    border-radius: 100px;
    font-size: 22px;
}
@media (max-width: 767px){
    .qbtMicDisabledModal .qbtMicIcon{
        --fontSize: 45px;
    }
}
/* QBT Mic Test Modal - End */

/* B2B QBT */
.b2b-practice .custom-side-bar-main-wrap .menu-row1{
    display: grid;
    row-gap: 0px;
    column-gap: 3%;
    padding: 0% 2% 1% 2%;
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
}
.b2b-practice .close-drop-down-header .custom-side-bar-main-wrap .menu-row1{
    display: grid;
    row-gap: 0px;
    column-gap: 3%;
    padding: 0% 2% 1% 2%;
    grid-template-columns: repeat(4, 1fr);
    width: 100%;
}
.b2b-practice .custom-side-bar-main-wrap .menu-row1 .subject-menu{
    display: flex;
    margin: 20px auto 20px 0;
    gap: 1rem;
    padding: 0%;
    flex: 1;
    width: 100%;
}
.b2b-practice .custom-side-bar-main-wrap .subject-menu .subject-menu-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
}
.b2b-practice .custom-side-bar-main-wrap .speaking .subject-menu-links .sub-menu-header {
    font-size: 19px;
    font-weight: 600;
    color: rgb(245, 150, 102);
}
.b2b-practice .custom-side-bar-main-wrap .sub-menu-link-icon img, .b2b-practice .custom-side-bar-main-wrap .sub-menu-link-icon svg {
    height: 18px;
    width: 20px;
}
.b2b-practice .custom-side-bar-main-wrap .sub-menu-link a {
    font-size: 14px;
    font-weight: 300;
    color: black;
    font-family: poppins, sans-serif !important;
    font-weight: 500;
}
.b2b-practice .close-drop-down-header .custom-side-bar-main-wrap .sub-menu-link a{
    font-weight: 400;
}
.b2b-practice .custom-side-bar-main-wrap .speaking .subject-menu-links .sub-menu-link svg {
    color: rgb(245, 150, 102);
}
.b2b-practice .custom-side-bar-main-wrap .subject-menu .subject-menu-icon img {
    width: 45px;
    height: 45px;
}
.b2b-practice .custom-side-bar-main-wrap .speaking .subject-menu-links .sub-menu-divider {
    background-color: rgb(245, 150, 102);
    height: 2px;
    width: 100%;
    margin-bottom: 5%;
}
.b2b-practice .custom-side-bar-main-wrap .subject-menu-links .sub-menu-link {
    display: flex;
    gap: 7px;
}
.b2b-practice .custom-side-bar-main-wrap .writing .subject-menu-links .sub-menu-header {
    font-size: 19px;
    font-weight: 600;
    color: rgb(103, 184, 252);
}
.b2b-practice .custom-side-bar-main-wrap .writing .subject-menu-links .sub-menu-divider {
    background-color: rgb(103, 184, 252);
    height: 2px;
    width: 100%;
    margin-bottom: 5%;
}
.b2b-practice .custom-side-bar-main-wrap .writing .subject-menu-links .sub-menu-link svg {
    color: rgb(103, 184, 252);
}
.b2b-practice .custom-side-bar-main-wrap .reading .subject-menu-links .sub-menu-header {
    font-size: 19px;
    font-weight: 600;
    color: rgb(0, 163, 0);
}
.b2b-practice .custom-side-bar-main-wrap .reading .subject-menu-links .sub-menu-divider {
    background-color: rgb(0, 163, 0);
    height: 2px;
    width: 100%;
    margin-bottom: 5%;
}
.b2b-practice .custom-side-bar-main-wrap .listening .subject-menu-links .sub-menu-header {
    font-size: 19px;
    font-weight: 600;
    color: #1e5d92;
}
.b2b-practice .custom-side-bar-main-wrap .listening .subject-menu-links .sub-menu-divider {
    background-color: #1e5d92;
    height: 2px;
    width: 100%;
    margin-bottom: 5%;
}
.b2b-practice .custom-side-bar-main-wrap .listening .subject-menu-links .sub-menu-link svg {
    color: #1e5d92;
}

@media (max-width: 1200px) {
    .b2b-practice .custom-side-bar-main-wrap .menu-row1 {
        grid-template-columns: repeat(2, 1fr);
    }
    .b2b-practice .close-drop-down-header .menu-row1 {
        height: unset !important;
    }
}
@media (max-width: 767px) {
    .b2b-practice .custom-side-bar-main-wrap .menu-row1 {
        grid-template-columns: repeat(1, 1fr);
    }
    .b2b-practice .close-drop-down-header .menu-row1 {
    height: unset !important;
}
}
.b2b-practice .drop-down-wrap-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background-color: #991a990d;
    border-radius: 6px;
}
.b2b-practice .text-title_main {
    font-size: 20px;
    font-weight: 500;
}
.b2b-practice .page-header-dropdown-wrap .dropdown{
    text-align: right;
}
.b2b-practice .page-header-dropdown-wrap ul.dropdown-menu{
    transform: translate(0px, 20px) !important;
    width: 100%;
    position: relative !important;
    /* display: block !important; */
}
.b2b-practice .page-header-dropdown-wrap .dropdown-toggle::after{
    font-size: 18px !important;
    margin-bottom: -3px;
}
.b2b-practice .page-header-dropdown-wrap .dropdown-toggle.show::after{
    transform: rotate(180deg);
}
.b2b-practice .close-drop-down-header .menu-row1 {
    height: 70px;
    overflow: hidden;
    transition: all .3s ease-in-out;
}
.b2b-practice .close-drop-down-header{
    background-color: #fff;
}
.b2b-practice .close-drop-down-header:hover .menu-row1 {
    height: 400px;
    overflow: visible;
    transition: all .3s ease-in-out;
}
.b2b-practice .close-drop-down-header:hover .sub-menu-header svg{
    transform: rotate(180deg);
}
.b2b-practice .count-practice{
    color: #838383;
}
/* B2B QBT */