/* webfonts */

@font-face {
    font-family: 'PlusJakartaSans-Bold';
    src: url('../fonts/PlusJakartaSans-Bold.ttf')
}

@font-face {
    font-family: 'PlusJakartaSans-ExtraBold';
    src: url('../fonts/PlusJakartaSans-ExtraBold.ttf')
}

@font-face {
    font-family: 'PlusJakartaSans-Regular';
    src: url('../fonts/PlusJakartaSans-Regular.ttf')
}

@font-face {
    font-family: 'PlusJakartaSans-ExtraLight';
    src: url('../fonts/PlusJakartaSans-ExtraLight.ttf')
}

@font-face {
    font-family: 'PlusJakartaSans-Medium';
    src: url('../fonts/PlusJakartaSans-Medium.ttf')
}

@font-face {
    font-family: 'PlusJakartaSans-Light';
    src: url('../fonts/PlusJakartaSans-Light.ttf')
}

@font-face {
    font-family: 'PlusJakartaSans-SemiBold';
    src: url('../fonts/PlusJakartaSans-SemiBold.ttf')
}

@font-face {
    font-family: 'times new roman';
    src: url('../fonts/times new roman.ttf')
}

/* webfonts end */

:root {
    --primary-color: #324DC7;
    --secondary-color: #F1F1F1;
    --border-color: #C3C3C3;
    --text-color: #252934;
    --font: 'PlusJakartaSans-Regular';
    --font-light: 'PlusJakartaSans-Light';
    --font-extralight: 'PlusJakartaSans-ExtraLight';
    --font-medium: 'PlusJakartaSans-Medium';
    --font-semibold: 'PlusJakartaSans-SemiBold';
    --font-bold: 'PlusJakartaSans-Bold';
    --font-extrabold: 'PlusJakartaSans-ExtraBold';
}

html {
    margin: 0;
}

* {
    box-sizing: border-box;
}

body {
    font-family: var(--font);
    overflow-x: hidden;
    color: var(--text-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    white-space: normal;
    word-break: break-word;
    font-family: var(--font-bold);
    line-height: 1.1;
    color: #252934;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 36px;
}

h3,
.h3 {
    font-size: 32px;
}

h4,
.h4 {
    font-size: 30px;
}

h5 {
    font-size: 26px;
}

h6 {
    font-size: 20px;
}

p.large-font {
    font-size: 20px;
}

a,
p,
button,
span {
    white-space: normal;
    word-break: break-word;
}

a {
    text-decoration: none !important;
}

a:focus-visible {
    outline: transparent;
}

.page-link:focus {
    box-shadow: none;
}

p {
    font-size: 18px;
    margin: 0;
}

ul {
    margin: 0;
}

button {
    transition: all 0.5s;
}

button:focus {
    box-shadow: none !important;
    outline: transparent;
}

.form-control:focus,
input {
    outline: 0;
    box-shadow: none !important;
    border-color: #324DC7;
}

.form-select:focus {
    border-color: #324DC7;
    box-shadow: none;
}

.form-check-input:focus {
    border-color: #C3C3C3;
}

.primary-btn {
    min-height: 42px;
    border: none;
    border-radius: 50px;
    background-color: var(--primary-color);
    color: #fff !important;
    font-family: var(--font-semibold);
    font-size: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
}

.secondary-btn {
    background-color: var(--secondary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    min-height: 42px;
    min-width: 145px;
    color: #949494 !important;
    font-family: var(--font-semibold);
    font-size: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.btn.focus,
.btn:focus {
    box-shadow: 0 0 0 0.2rem rgb(245 49 99 / 20%);
}

input [type="checkbox"]:focus {
    box-shadow: none;
}

.form-control::placeholder {
    font-size: 14px;
    color: #727272;
}

img {
    max-width: 100%;
}

::-webkit-scrollbar {
    width: 8px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    border-radius: 100px;
    background: #CECECE;
}

::-webkit-scrollbar-track {
    background: #F7F7F7;
    border-radius: 100px;
}

.form-control {
    min-height: 50px;
    border-color: #C3C3C3;
    border-radius: 5px;
    font-family: var(--font-semibold);
}

label {
    color: #252934;
    font-family: var(--font-medium);
    margin: 0 0 5px;
    font-size: 16px;
}

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

.full-width-btn {
    width: 100%;
}

.form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.logo img {
    width: 180px;
}

/*===================================================
                login scren Css Start
=====================================================*/

.login-main-section {
    height: calc(100vh - 70px);
    background: #EAEAEA;
    overflow-y: auto;
    padding: 80px 0 20px;
}

.login-main-section .container {
    background-image: url(../images/bg-icons-img.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.login-form-start {
    background: #FFFFFF;
    box-shadow: 0px 0px 18px rgba(224, 224, 224, 0.5);
    border-radius: 20px;
    max-width: 430px;
    margin: 0 auto;
    padding: 40px;
    text-align: center;
}

.logo.mobile-logo {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 0;
    background: #fff;
    box-shadow: 0px 0px 18px rgba(224, 224, 224, 0.5);
    position: relative;
}

.login-form-start h3 span {
    display: block;
    font-family: var(--font);
}

.login-form-start form {
    text-align: left;
    margin-top: 30px;
}

.invalid-feedbacks {
    font-size: 0.875em;
    margin-top: 0.25rem;
    color: #dc3545;
    width: 100%;
}

.login-form-start p {
    margin: 10px 0 10px;
}

.login-form-start p span {
    color: #212529;
    font-family: var(--font-medium);
}

.remember-me-sec .form-check input.form-check-input {
    width: 22px;
    height: 22px;
    margin: 0;
    cursor: pointer;
}

.remember-me-sec .form-check {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.remember-me-sec .form-check label {
    margin: 0;
    font-family: var(--font);
    cursor: pointer;
}

.forgot-password {
    text-align: center;
    margin-top: 12px;
}

.remember-me-sec {
    margin: 0px 0 20px;
}

.forgot-password a {
    color: #858585;
    font-size: 14px;
}

.create-account-row {
    border-top: 1px dashed #25293433;
    text-align: center;
    padding-top: 20px;
    margin-top: 20px;
    display: inline-block;
    width: 100%;
}

.create-account-row a {
    color: #252934;
    font-family: var(--font-semibold);
    text-decoration: underline !important;
}

/*===================================================
            Create Account scren Css Start
=====================================================*/
.create-account-section .login-form-start {
    max-width: 100%;
}

form.create-account-form .formfield {
    display: flex;
    align-items: center;
    gap: 10px;
}

form#register a.secondary-btn {
    background: transparent;
    color: #000 !important;
}

form.create-account-form .formfield label {
    width: 35%;
}

form.create-account-form .form-group {
    width: 50%;
}

.create-account-form .formfield .form-control {
    width: 100%;
}



.create-account-section .login-form-start h5 {
    text-align: left;
    margin: 27px 0 10px;
    border-bottom: 1px solid #E6E2E2;
    padding: 0 0 20px;
    display: inline-block;
    width: 100%;
}

form.create-account-form .form-group.create-form-button {
    width: 100%;
    border-top: 1px solid #E6E2E2;
    padding: 30px 0 0;
    margin-top: 20px;
    display: inline-block;
}

/*===================================================
            practice-test screen Css Start
=====================================================*/
.practice-test-main-section {
    height: calc(100vh - 110px);
    background: #EAEAEA;
    overflow-y: auto;
}

.practice-test-content {
    padding-top: 50px;
    padding-bottom: 20px;
}

.practice-test-content h1 {
    text-align: center;
    font-family: var(--font);
}

.practice-test-info {
    background: #FFFFFF;
    border-radius: 15px;
    max-width: 520px;
    margin: 0 auto;
    margin-top: 40px;
    padding: 40px 30px;
}

.practice-test-info ul li {
    display: flex;
    gap: 18px;
    padding: 0 0 20px;
}

.icon-column span {
    background-color: #d9d9d9;
    width: 32px;
    height: 32px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-column span svg {
    width: 21px;
    height: 21px;
}

.practice-test-info ul li:last-child {
    padding: 0;
}

.content-info h6 {
    margin: 0 0 10px;
}

.content-info p {
    line-height: 26px;
}

.content-info p strong {
    color: #252934;
    font-family: var(--font-bold);
}

.practice-test-main-section .fixed-botom-info-section {
    /* box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.10); */
    background-image: none;
}

.fixed-botom-info-section {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: #ffffff;
    padding: 30px 0;
    background-image: url(../images/line.png);
    background-position: top;
    background-repeat: no-repeat;
    z-index: 1;
    background-size: 100%;
}

.right-side {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.next-btn-row {
    text-align: right;
    width: 100%;
}

/*===================================================
            question-screen1 Css Start
=====================================================*/

.experthub-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 15px;
}

.experthub-icon h6 {
    color: var(--primary-color);
}

.experthub-hrader {
    padding: 17px 0;
    background-image: url(../images/line.png);
    background-position: bottom;
    background-repeat: no-repeat;
    z-index: 3;
    position: relative;
    background-color: #fff;
    background-size: 100%;
}

.section-module-row p.large-font {
    font-family: var(--font-semibold);
    color: #252934;
    margin: 0 0 9px;
    min-width: 450px;
    font-size: 18px;
}

.calculator-column span svg {
    width: 14px;
}

.reference-sheet-column span svg {
    width: 18px;
}

.section-2-font .section-module-row p.large-font {
    font-family: 'times new roman';
    font-size: 18px;
}

.directions-content .large-font {
    min-width: auto !important;
    font-family: var(--font) !important;
    color: var(--text-color) !important;
}

.directions-module {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.more-info {
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: flex-end;
    position: relative;
    align-items: end;
}

.make-select-column {
    background: #505050;
    border-radius: 10px;
    padding: 15px;
    position: absolute;
    right: 12px;
    max-width: 190px;
    top: 59px;
}

.make-select-column h6 {
    font-size: 15px;
    color: #fff;
    /* text-transform: uppercase; */
    text-align: left;
    margin: 0 0 4px;
}

.more-info .make-select-column p {
    color: #fff;
    text-align: left;
    line-height: 22px;
}

.make-select-column:after {
    content: ' ';
    background: #505050;
    position: absolute;
    left: 0;
    right: 0;
    top: -7px;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
    margin: 0 auto;
}

.directions-info {
    width: 100%;
    overflow: hidden;
}

.timer-column {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    min-height: 60px;
}

.directions-info summary {
    list-style: none;
    font-size: 16px;
    color: #252934;
    display: flex;
    align-items: baseline;
    gap: 4px;
    line-height: 22px;
    font-family: var(--font-medium);
}

.timer-column span {
    font-size: 18px;
    font-family: var(--font-bold);
    color: #252934;
}

body.directions-show .directions-info summary:after {
    content: ' ';
    background: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    left: 60px;
    margin: 0 auto;
    box-shadow: 0px -3px 17px rgba(0, 0, 0, 0.15);
    transform: rotate(45deg);
    bottom: -31px;
    z-index: 0;
}

.directions-bg {
    display: none;
    position: absolute;
    left: 0;
    top: 73px;
    z-index: 2;
    background: #FFFFFF;
    border-radius: 5px;
    padding: 25px 40px;
    max-width: 750px;
    justify-content: space-between;
    flex-direction: column;
    min-height: 450px;
}

.directions-bg .directions-content {
    max-height: 50vh;
    overflow-y: auto;
    padding-bottom: 20px;
    padding-right: 5px;
}

body.directions-show .directions-bg {
    display: flex;
}

.close-btn-row {
    text-align: right;
}

body.directions-show:before {
    content: ' ';
    background: #00000091;
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 2;
}

button.hide {
    background: transparent;
    border-radius: 50px;
    font-size: 12px;
    font-family: var(--font-bold);
    color: #252934;
    padding: 0px 7px;
    min-height: 23px;
    border: 1px solid;
    min-width: 50px;
}

button#pause-test {
    background: transparent;
    border-radius: 50px;
    font-size: 12px;
    font-family: var(--font-bold);
    color: #252934;
    padding: 0px 7px;
    min-height: 23px;
    border: 1px solid;
    min-width: 50px;
}

.timer-hide-show-btns button:hover {
    border-width: 2px !important;
    transition: inherit;
}

.directions-bg .close-btn-row {
    padding: 15px 0 0;
}

.timer-hide-show-btns {
    display: flex;
    gap: 10px;
}

.more-info div {
    text-align: center;
    cursor: pointer;
    border-bottom: 2px solid transparent;
}

.calculator-column.active,
.reference-sheet-column.active {
    border-bottom: 2px solid;
}

.more-info i {
    color: #252934;
    font-size: 20px;
}

.more-info p {
    font-size: 14px;
    font-family: var(--font-semibold);
}

.module-question-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding: 15px 0;
    position: relative;
    height: calc(100vh - 132px - 110px);
    justify-content: center;
}

.question-left-side-content {
    width: 50%;
    padding: 00px 30px 0 0px;
    border-right: 4px solid #D9D9D9;
    overflow-x: auto;
    max-width: 800px;
}

span.note {
    position: relative;
    /* background-color: unset!important; */
    /* border-bottom:1px dashed #000 !important;  */
    /* background-color:#f3ff3b ; */

}

.add-yellow-high-light {
    background-color: #FFE898 !important;
}

.add-blue-high-light {
    background-color: #B4DFFF !important;
}

.add-pink-high-light {
    background-color: #FECFF2 !important;
}

/* span.note:hover{
    background-color: #ffeb3b;
} */
.add-yellow-high-light-one {
    background-color: #FFE898 !important;
}

.add-blue-high-light-one {
    background-color: #B4DFFF !important;
}

.add-pink-high-light-one {
    background-color: #FECFF2 !important;
}

/* .selection-note:hover  {
    background-color: #ffeb3b !important;
}
.selection-note {
    border-bottom:1px dashed #000 !important ;
    background-color:#f3ff3b !important;
} */
.note-view {
    position: absolute;
    left: calc(50% - 10px);
    top: 22px;
    background: #fff;
    display: flex;
    z-index: 9;
    border-radius: 10px;
    min-width: 50px;
    padding: 3px 10px;
    max-width: 220px;
    width: max-content;
    font-weight: 400;
    border: 2px solid #000;
    padding: 10px;
    max-height: 200px;
    overflow-y: auto;
    word-break: break-word;

}

div#questionHtml {
    overflow-x: hidden;
}

span.note:hover .note-view {
    display: flex;
}

.section-2-font .single-question-inner-content p {
    font-size: 18px;
    color: #252934 !important;
}

.section-2-font .over-view-sec p,
.section-2-font .over-view-sec div {
    font-size: 18px;
    color: #252934 !important;
}

.over-view-sec p,
.over-view-sec div {
    font-size: 18px;
}

.single-question-inner-content div {
    font-size: 18px;
}

.over-view-sec {
    min-width: 360px;
    overflow-y: auto;
    height: calc(100vh - 300px);
    padding: 0px 0 20px;
    padding-right: 20px;
    font-size: 18px;
}

.form-check label .option-content span {
    position: static;
    display: inline;
}

.section-2-font .over-view-sec,
.section-2-font {
    font-family: 'times new roman';
    font-size: 18px;
    color: #252934 !important;
}

.question-right-side-content {
    width: 50%;
    padding: 0px 0 0 30px;
    overflow-x: auto;
    max-width: 800px;
}

.single-question-inner-content {
    min-width: 360px;
    overflow-y: auto;
    height: calc(100vh - 300px);
    padding: 0 10px 20px;
    padding-left: 20px;
}

.section-2-font .single-question-inner-content {
    font-family: 'times new roman';
    font-size: 18px !important;
    color: #252934 !important;
}

.MJX-TEX {
    font-size: 18px;
}

.TEX-I {
    font-size: 18px;
}

.mark-review-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #F1F1F1;
    min-height: 35px;
}

.mark-review {
    display: flex;
    gap: 15px;
    align-items: center;
}

.mark-review span {
    background: #252934;
    color: #fff;
    padding: 0;
    min-width: 31px;
    text-align: center;
    min-height: 35px;
    font-family: var(--font-bold);
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

.section-2-font .single-question-inner-content div,
.section-2-font p.answer-p input {
    font-family: 'times new roman';
    font-size: 18px;
    color: #252934 !important;
}

.section-2-font .check-your-work-section .heading h3 {
    font-family: 'times new roman';
    font-size: 38px;
    color: #252934 !important;
}

.section-2-font .heading-on-pagination h6 {
    font-family: 'times new roman';
    font-size: 25px;
    color: #252934 !important;
}

.section-2-font .check-your-work-section .question-pagination-popup-inner ul li a,
.section-2-font .type-info ul li span,
.section-2-font .check-your-work-section .heading p {
    font-family: 'times new roman';
    font-size: 18px;
    color: #252934 !important;
}

.tag .form-check input {
    position: absolute;
    left: 0;
    margin: 0;
    top: 6px;
    opacity: 0;
}

.tag .form-check {
    position: relative;
    padding: 0;
    margin: 0;
    line-height: normal;
}

.tag .form-check label.form-check-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    color: #252934;
    cursor: pointer;
    margin: 0;
    padding: 3px 0 0 0;
}

.mark-review label.form-check-label {
    font-family: var(--font) !important;
}

.tag .form-check input:checked+label {
    font-family: var(--font-semibold) !important;
}

.tag .form-check input:checked+label svg path {
    fill: #b71e35;
}

.tag .form-check input:checked+label svg:before {
    content: ' ';
    background: #000;
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 0;
}

.tag .form-check label.form-check-label i {
    font-size: 23px;
}

.tag .form-check label.form-check-label i.fa-solid.fa-bookmark {
    display: none;
}

.tag .form-check input:checked+label i.fa-regular.fa-bookmark {
    display: none;
}

.tag .form-check input:checked+label i.fa-solid.fa-bookmark {
    display: block;
    color: #b71e35;
}

.mark-review p {
    font-size: 15px;
    color: #252934;
}

.abc span {
    background: #fff;
    font-size: 12px !important;
    font-family: var(--font-bold);
    border: 1px solid #252934;
    border-radius: 4px;
    padding: 4px;
    color: #252934;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.abc {
    margin: 0 13px 0 0px;
    cursor: pointer;
}

.undo-data-show .abc span {
    background-color: var(--primary-color);
    color: #fff;
}

.abc span:before {
    content: ' ';
    position: absolute;
    background: #252934;
    width: 1px;
    height: 31px;
    font-family: var(--font);
    top: -3px;
    transform: rotate(50deg);
}

.undo-data-show .abc span:before {
    background: #fff;
}

p.question {
    margin: 15px 0 0;
}

.question-inner-row {
    margin-top: 10px;
    display: inline-block;
    width: 100%;
    /* overflow: hidden; */
    padding: 3px 2px;
}

.question-inner-row ul li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.question-inner-row ul li:last-child {
    margin-bottom: 0;
}

.crosing-text-undo {
    text-align: center;
    width: 0;
    opacity: 0;
    transition: 0.5s;
    overflow: hidden;
}

.undo-data-show .crosing-text-undo {
    opacity: 1;
    width: 60px;
}

.question-inner-row ul li.undo-show {
    overflow: visible;
}

.question-inner-row .crosing-text-undo span {
    background: #FFFFFF;
    border: 1px solid #252934;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20px;
    height: 20px;
    border-radius: 50px;
    color: #252934;
    font-family: var(--font-bold) !important;
    position: relative;
    margin: 0 auto;
    text-transform: uppercase;
    font-size: 12px !important;
    cursor: pointer;
}

.crosing-text-undo span.undo {
    display: none;
    font-size: 13px !important;
    text-decoration: underline;
    font-family: var(--font-bold);
    cursor: pointer;
    width: auto;
    height: auto;
    border: none;
    text-transform: capitalize;
    z-index: 0;
    margin-left: 1px;
}

.crosing-text-undo span.undo:before {
    opacity: 0;
}

.undo-show .crosing-text-undo span.undo {
    display: block;
}

.undo-show .crosing-text-undo span {
    display: none;
}

.undo-show .form-check:before {
    content: ' ';
    /* height: 2px;
    background: #000; */
    border-top: 2px solid #000;
    width: 102%;
    position: absolute;
    top: 50%;
    left: -7px;
    z-index: 1;
    pointer-events: none;
}

.undo-show label.form-check-label div {
    opacity: .3;
}

.crosing-text-undo span:before {
    content: ' ';
    background: #000;
    width: 30px;
    height: 1px;
    left: -6px;
    position: absolute;
}

.question-inner-row p.answer-p {
    border: 1px solid #777;
    display: inline-block;
    border-radius: 5px;
    padding: 10px;
    margin: 0 0 30px !important;
}

p.answer-p input:focus-visible {
    border-bottom: 1px solid #2f72dc;
}

p.answer-p input {
    border: none;
    border-bottom: 1px solid #777;
    padding: 0;
    width: 70px;
    color: #000;
    font-family: var(--font-semibold);
}

.question-inner-row p {
    color: var(--text-color);
    margin: 0 !important;
}

.section-2-font .question-inner-row p {
    font-size: 18px;
    color: #252934 !important;
}

.question-inner-row p span {
    position: static !important;
}

.question-inner-row .option-tag span {
    background: #FFFFFF;
    border: 2px solid #252934;
    display: flex !important;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    color: #252934;
    font-family: var(--font-semibold) !important;
    position: static !important;
}

.section-2-font .option-tag span {
    font-size: 15px !important;
    color: #252934 !important;
}

.question-inner-row ul li .form-check label.form-check-label {
    display: flex;
    gap: 13px;
    /* align-items: baseline; */
    margin: 0;
    border: 3px solid transparent;
    border-radius: 8px;
    padding: 8px 16px;
    cursor: pointer;
    font-family: var(--font);
    box-shadow: 0 0 0 1px #000;
}

/* .question-inner-row ul li input.form-check-input:focus+label.form-check-label {
    box-shadow: 0px 0px 0px 2px #e59700;
    border-width: 3px;
} */

/* .option-content ol {
    padding: 0;
}
.option-content li {
    position: relative;
    padding: 0 0 0 12px;
    margin: 0 !important;
}
.option-content li:after {
    content: ' ';
    position: absolute;
    left: 0px;
    top: 14px;
    font-size: 40px;
    background: #000;
    line-height: 20px;
    border-radius: 50px;
    width: 4px;
    height: 4px;
} */
.section-2-font .question-inner-row ul li .form-check label.form-check-label {
    font-family: 'times new roman';
    font-size: 18px;
    color: #252934 !important;
}

.question-inner-row ul li .form-check {
    margin: 0;
    padding: 0;
    position: relative;
    width: 100%;
}

.question-inner-row ul li input.form-check-input {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
}

.question-inner-row ul li input.form-check-input:checked+label {
    /* background-color: #EEF1FF; */
    border-color: var(--primary-color);
    border-width: 3px;
}

.question-inner-row ul li input.form-check-input:checked+label .option-tag span {
    background-color: var(--primary-color);
    color: #fff !important;
}

/* .option-content img {
    max-height: 250px;
    width: auto !important;
} */

/* .question-inner-row ul li.active {
    background-color: #EEF1FF;
    border-color: var(--primary-color);
} */
/* .question-inner-row ul li.active .option-tag span {background-color: var(--primary-color);border: none;color: #fff;} */
.bg-img-row {
    background-image: url(../images/line.png);
    background-repeat: no-repeat;
    height: 2px;
    width: 100%;
    margin: 2px 0 0;
}

.pagination-question-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pagination-question-row .next-btn-row {
    width: 33.333%;
}

.question-user-name {
    width: 33.333%;
}

.pagination-question {
    width: 33.333%;
    text-align: center;
    position: relative;
}

.question-user-name p {
    font-family: var(--font-bold);
    color: #252934;
}

.question-column button {
    background: #000;
    border-radius: 8px;
    font-family: var(--font-semibold);
    font-size: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 6px 12px;
    min-height: 35px;
    border: none;
    color: #fff;
    gap: 10px;
}

.question-pagination-popup {
    box-shadow: 0px -3px 17px rgba(0, 0, 0, 0.15);
    border-radius: 20px;
    max-width: 540px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 90px;
    min-width: 550px;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease all;
}

.pagination-show .question-pagination-popup {
    opacity: 1;
    visibility: visible;
}

.heading-on-pagination {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.heading-on-pagination h6 {
    width: 90%;
}

.heading-on-pagination button.close {
    background: transparent;
    border: none;
    padding: 0;
    font-size: 20px;
    line-height: normal;
}

.type-info {
    border-top: 1px solid #868686;
    border-bottom: 1px solid #868686;
    padding: 10px 0;
    margin: 20px 0;
}

.type-info ul {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    gap: 22px;
}

.type-info ul li {
    display: flex;
    align-items: center;
    gap: 10px;
}

span.box {
    border: 1px dashed #252934;
    width: 18px;
    height: 18px;
}

.type-info ul li span {
    font-size: 15px;
    color: #252934;
    font-family: var(--font-medium);
}

.type-info ul li i {
    color: #252934;
    font-size: 17px;
}

.question-pagination-popup i.fa-solid.fa-bookmark {
    color: #b71e35;
}

.pagination-data-info ul li a {
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border: 1px dashed;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-family: var(--font-medium);
    color: #252934;
}

.pagination-data-info ul {
    display: flex;
    gap: 19px;
    flex-wrap: wrap;
}

span.location-icon {
    position: absolute;
    top: -16px;
    left: 10px;
    display: inline-flex;
    font-size: 15px;
}

.pagination-data-info ul li {
    position: relative;
}

.pagination-data-info {
    display: inline-block;
    width: 100%;
    margin: 10px 0 0;
}

span.bookmark-icon {
    position: absolute;
    top: -7px;
    right: -4px;
    display: inline-flex;
    font-size: 12px;
    background: #fff;
    padding: 2px;
}

.go-review-btn button {
    border: 1px solid #252934;
    border-radius: 100px;
    background: #fff;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: #334DC8;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 30px;
    padding: 5px 20px;
    font-family: var(--font-semibold);
}

.go-review-btn {
    text-align: center;
    margin: 20px 0 0;
}

.pagination-data-info ul li.active a {
    border-color: var(--text-color);
    color: var(--primary-color);
}

.pagination-data-info ul li a:hover {
    background: #eee;
}

.pagination-data-info ul li a.active:hover {
    background-color: #1669af;
    color: #fff;
    border-color: var(--primary-color);
}

/* .pagination-data-info ul li.active span.location-icon {
    color: var(--primary-color);
} */

.pagination-data-info ul li a.active {
    background-color: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

span.location-icon:after {
    content: ' ';
    position: absolute;
    bottom: -25px;
    width: 10px;
    height: 1px;
    background: #fff;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
}

.question-pagination-popup-inner {
    padding: 25px 34px;
    background: #FFFFFF;
    border-radius: 20px;
    text-align: left;
}

.question-pagination-popup-inner:after {
    content: ' ';
    background: #fff;
    position: absolute;
    width: 50px;
    height: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    box-shadow: 0px -3px 17px rgba(0, 0, 0, 0.15);
    transform: rotate(45deg);
    bottom: -23px;
    z-index: -1;
}

/* .question-pagination-popup:after {content: ' ';
    background: #fff;
    position: absolute;
    width: 50px;
    height: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    box-shadow: 0px -3px 17px rgba(0, 0, 0, 0.15);
    transform: rotate(45deg);
    bottom: -23px;
    z-index: -1;
} */

/*===================================================
            congratulations page Css Start
=====================================================*/

.congratulations-page-header {
    background: #fff;
    padding: 25px 0;
    text-align: right;
}

.congratulations-page-header button.secondary-color {
    gap: 10px;
    color: #252934;
    font-size: 16px;
}

.practice-test-main-section.congratulations-main-section {
    height: 100vh;
}

.congratulations-main-section .practice-test-content p {
    text-align: center;
    margin: 10px 0 0;
}

.congratulations-main-section .practice-test-info {
    margin-top: 30px;
}

.emoji-img {
    text-align: center;
    background-image: url(../images/congratulations-img.png);
    background-repeat: no-repeat;
    background-position: center;
    min-height: 260px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.congratulations-content-inner {
    text-align: center;
}

strong {
    color: #252934;
}

.congratulations-content-inner h4 {
    font-family: var(--font-medium);
}

.view-score-btn {
    text-align: center;
    margin: 30px 0 0;
}

.view-score-btn button.primary-color {
    min-width: 220px;
}

.new-annotate-popup-section {
    background: #fafafa;
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    bottom: 0;
    display: none;
}

body.annotate-column-show .new-annotate-popup-section {
    display: block;
}

.top-annotate-close-btn-row {
    background: #252934;
}

.view-edit-close-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.view-edit-close-btn p {
    color: #fff;
}

.view-edit-close-btn button {
    background: transparent;
    color: #fff;
    border: none;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    padding: 0;
    min-width: 70px;
    justify-content: flex-end;
    text-transform: uppercase;
    font-family: var(--font-bold);
    font-size: 15px;
}

.annotate-inner-approach ul {
    display: flex;
    align-items: center;
    gap: 26px;
    margin: 0 0 6px;
}

.annotate-inner-approach .textarea {
    max-width: 750px;
}

.save-delete-btn button.close-pop-up.secondary-btn.cancel-btn {
    background: transparent;
    color: #000 !important;
    padding: 0;
    min-width: 100px;
}

.save-delete-btn button.close-pop-up.secondary-btn.cancel-btn:hover {
    text-decoration: underline;
}

.highlight-color label {
    color: #252934;
    font-family: var(--font-bold);
}

.color-code span {
    width: 24px;
    height: 24px;
    border-radius: 50px;
    background: #f3ff3b;
    display: flex;
    border: 2px solid #000;
}

.highlight-color {
    display: flex;
    align-items: center;
    gap: 10px;
}

.annotate-inner-approach {
    padding: 15px 0;
}

.textarea textarea.form-control {
    border: 1px solid #868686;
    border-radius: 5px;
}

.save-delete-btn {
    margin: 10px 0 0;
    display: flex;
    align-items: center;
    gap: 30px;
}

button.delete-btn {
    background: transparent;
    border: none;
    color: #C13145;
    font-size: 18px;
    font-family: var(--font-semibold);
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.more-dropdown-section ul li a:hover {
    background: #f1f1f1;
    text-decoration: underline !important;
}

.more-dropdown-section ul li a svg {
    width: 20px;
    height: 20px;
}

.more-dropdown-section {
    position: absolute;
    right: 0;
    top: 75px;
    display: none;
    min-width: 220px;
    background: #fff;
    box-shadow: 0px 5px 15px rgb(0 0 0 / 12%);
    border-radius: 10px;
    border: none !important;
    overflow: hidden;
}

.more-column.more-show .more-dropdown-section {
    display: block;
}

.more-dropdown-section ul li a {
    width: 100%;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #252934;
    font-family: var(--font-semibold);
    border-bottom: 1px solid #EBEBEB;
}

.more-dropdown-section ul li {
    text-align: left;
}

.more-dropdown-section ul li:last-child a {
    border: none;
}

/*===================================================
            check-your-work page Css Start
=====================================================*/

.check-your-work-section {
    max-width: 1050px;
    margin: 0 auto;
    height: calc(100vh - 132px - 110px);
}

.question-work-inner {
    overflow-y: auto;
    height: calc(100vh - 300px);
    padding: 0 30px 20px;
}

.check-your-work-section .heading {
    text-align: center;
    padding: 30px 0 20px;
}

.check-your-work-section .heading h3 {
    margin-bottom: 10px;
    font-family: var(--font-medium);
}

.check-your-work-section .heading p {
    padding: 10px 0 0;
}

.check-your-work-section .question-pagination-popup-inner {
    box-shadow: 0px 4px 17px rgba(0, 0, 0, 0.15);
    border-radius: 15px;
}

.question-work-inner .work-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #868686;
    padding: 0 0 15px;
    margin: 0 0 30px;
}

.question-work-inner .work-info .type-info {
    border: none;
    margin: 0;
    padding: 0;
}

.question-work-inner .work-info .type-info ul {
    gap: 20px;
}

.question-work-inner .work-info .heading-on-pagination {
    width: 60%;
}

.question-work-inner .pagination-data-info ul {
    gap: 30px;
}

.check-your-work-section .question-pagination-popup-inner i.fa-solid.fa-bookmark {
    color: #bb0606;
}

.check-your-work-section .question-pagination-popup-inner ul li a {
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-family: var(--font-bold);
    color: var(--primary-color);
}

.check-your-work-section .question-pagination-popup-inner ul li a.active {
    color: #fff !important;
}



/*===================================================
            purchase-tokens page Css Start
=====================================================*/
header.cust-header.blue-bg-header {
    background-color: var(--primary-color);
    padding: 25px 0;
    background-image: url('../images/Building.png');
    background-repeat: no-repeat;
    background-size: contain;
    position: relative;
}

.pro-bg-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.welcome-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 20px 0 10px;
}

.welcome-text h2 {
    color: #fff;
    line-height: 47px;
}

.welcome-text h2 span {
    font-family: var(--font-light);
}

.header-profile ul {
    display: flex;
    align-items: center;
    gap: 15px;
}

.header-profile ul p {
    color: #fff;
}

.header-profile ul li .head-user-profile {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.data-info-coin {
    background: #4E67DB;
    border-radius: 50px;
    padding: 2px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.data-info-coin img {
    max-width: 22px;
}

.data-info-coin span {
    color: #fff;
}

.head-user-profile span {
    background-color: #4E67DB;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
    min-width: 36px;
}

.head-user-profile span img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

header.cust-header.blue-bg-header:before {
    content: ' ';
    background-image: url('../images/Base_and_tree.png');
    position: absolute;
    width: 140px;
    height: 100px;
    right: 5px;
    bottom: 0;
    background-repeat: no-repeat;
}

.dropdown-profile-user {
    position: absolute;
    top: 45px;
    right: 0;
    background: #fff;
    box-shadow: 0px 5px 15px rgb(0 0 0 / 12%);
    border-radius: 10px;
    min-width: 200px;
    display: none;
    z-index: 9;
}

.head-user-profile.profile-show .dropdown-profile-user {
    display: block;
}

.dropdown-profile-user ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
}

.dropdown-profile-user ul li a {
    padding: 12px 20px;
    display: block;
    color: #252934;
    font-family: var(--font-semibold);
    border-bottom: 1px solid #EBEBEB;
}

.dropdown-profile-user ul li:last-child a {
    border: none;
}

.dropdown-profile-user ul li {
    width: 100%;
}

.purchase-tokens-container {
    max-width: 1200px;
    margin: 0 auto;
}

.purchase-tokens-container .heading {
    padding-bottom: 30px;
    text-align: center;
}

.purchase-tokens-container .heading h5 span {
    font-family: var(--font);
    color: #f70707;
    font-size: 20px;
}

.purchase-tokens-info {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 40px;
}

.purchase-tokens-left-sec {
    width: 60%;
    padding: 0 10px 0 0px;
}

.purchase-tokens-right-sec {
    width: 40%;
    padding: 0 0 0 30px;
}

.purchase-tokens-left-sec ul {
    display: flex;
    gap: 22px;
}

.purchase-tokens-left-sec ul li {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.plan-token {
    height: 100%;
    margin: 0 0 28px;
}

.plan-token .form-check {
    margin: 0;
    padding: 0;
    height: 100%;
    position: relative;
}

.plan-token label.form-check-label {
    background: #FFF4E1;
    border: 1px solid #F5CF8A;
    border-radius: 10px;
    margin: 0;
    height: 100%;
    width: 100%;
    padding: 32px;
    text-align: center;
    cursor: pointer;
}

/* .plan-token .form-check input.form-check-input {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: pointer;
} */
.plan-token-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.plan-token-inner h5 {
    font-size: 20px;
}

.plan-token-inner h6 span {
    font-family: var(--font);
}

.plan-token-inner ul {
    flex-direction: column;
    gap: 5px;
}

.plan-token-inner ul li {
    display: list-item;
    text-align: left;
    list-style: disc;
}

.plan-token-inner p {
    color: #6B6B6B;
    font-size: 16px;
}

.token-row label {
    font-size: 14px;
}

.token-summary {
    background: #F2F2F2;
    border-radius: 5px;
    padding: 25px;
}

.token-summary p {
    border-bottom: 1px solid #DDDDDD;
    padding: 0 0 20px;
    color: #252934;
    font-family: var(--font-semibold);
    margin: 0 0 10px;
}

.token-summary ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.token-summary ul li p.p {
    border: none;
    padding: 0;
    margin: 0;
    font-size: 16px;
}

.total-amount {
    background: #FFFFFF;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin-top: 10px;
}

.total-amount p.p {
    margin: 0;
    padding: 0;
    border: none;
    font-size: 16px;
}

.payment-details {
    background: #F2F2F2;
    border-radius: 5px;
    padding: 25px;
    margin-top: 12px;
}

.icon {
    position: absolute;
    right: 20px;
    top: 13px;
}

.icon i {
    color: #544f4f;
}

.payment-details form button.primary-btn.full-width-btn {
    margin-top: 10px;
    display: flex;
    gap: 6px;
}

#paymentDetail .form-control {
    justify-content: center;
}

#paymentDetail .form-control {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.payment-details p {
    padding: 0 0 15px;
    color: #252934;
    font-family: var(--font-semibold);
}

.payment-details .is-invalid {
    width: 100%;
    margin-top: .25rem;
    font-size: .875em;
    color: #dc3545;
}

/* .plan-token .form-check input.form-check-input:checked + label.form-check-label {
    background: #FFF4E1;
    border: 1px solid #F5CF8A;
    border-radius: 10px;
    box-shadow: none;
}

.plan-token .form-check input.form-check-input:checked + label.form-check-label {
    background: #FFF4E1;
    border: 1px solid #F5CF8A;
    border-radius: 10px;
    box-shadow: none;
}
.plan-token label.form-check-label:before {
    content: ' ';
    width: 22px;
    height: 22px;
    border-radius: 4px;
    position: absolute;
    right: 20px;
    top: 20px;
    border: 1px solid #ccc;
}
.plan-token .form-check input.form-check-input:checked + label.form-check-label:before {
    background: #324DC7;
    border-color: #324DC7;
}
.plan-token .form-check input.form-check-input:checked + label.form-check-label:after {
    content: ' ';
    position: absolute;
    right: 24px;
    top: 24px;
    width: 13px;
    height: 8px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    transform: rotate(-45deg);
} */
div#payment-successful .modal-content {
    background: #27A35A;
    box-shadow: 0px 0px 21px rgba(0, 0, 0, 0.09);
    border-radius: 10px;
    text-align: center;
    padding: 30px;
    border: none;
}

.payment-successful-popup-content h4 {
    font-family: var(--font-bold);
    color: #fff;
    margin: 15px 0px;
}

.payment-successful-popup-content p {
    color: #fff;
    font-family: var(--font);
    line-height: 20px;
}

.payment-successful-popup-content ul li {
    display: flex;
    justify-content: space-between;
    color: #fff;
    border-top: 1px solid #ffffff38;
    padding: 12px 0;
}

.payment-successful-popup-content ul li p {
    margin: 0;
    padding: 0;
    font-family: var(--font-semibold);
}

div#payment-successful button.close-btn.full-width-btn {
    background: #fff;
    color: #252934;
    font-size: 18px;
    font-family: var(--font-semibold);
    min-height: 50px;
    padding: 10px;
    border-radius: 50px;
    border: none;
    margin-top: 30px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}

div#payment-successful .modal-body button.btn-close {
    position: absolute;
    right: -10px;
    top: -20px;
    color: #fff;
    opacity: 1;
    font-size: 25px;
    padding: 0;
    background: transparent;
    width: auto;
    height: auto;
}

.payment-successful-popup-content ul li:last-child {
    border-bottom: 1px solid #ffffff38;
}

.modal-dialog {
    margin-top: 5%;
}


/*===================================================
                more-tests page Css Start
=====================================================*/

section.bg-color-gry {
    background: #EAEAEA;
}

.practice-tests-mian-outer {
    padding: 40px 0;
}

.sat-heading {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
}

.sat-heading ul li {
    display: flex;
    align-items: center;
    border: 1px solid #C9C9C9;
    border-radius: 6px;
    overflow: hidden;
}

.sat-heading ul li button {
    background: transparent;
    border: none;
    padding: 10px 10px;
    min-width: 95px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-family: var(--font-medium);
}

.sat-heading ul li button.active {
    background: #252934;
    color: #fff;
}

.sat-heading ul li button i {
    display: none;
}

.sat-heading ul li button.active i {
    display: block;
}

.practice-tests-column ul {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
}

.start-indication {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
}

.start-indication span {
    background: #3a4eca;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    color: #fff;
    cursor: pointer;
}

.sat-pratice .over-padding:nth-child(2) {
    border: none;
}

.sat-pratice {
    background: #FFFFFF;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.11), 0px 0px 55px rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    height: 100%;
    position: relative;
    min-width: 220px;
}

.view-all-btn {
    padding: 10px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.view-all-btn a {
    font-size: 16px;
    min-width: 120px;
    min-height: 45px;
}

.practice-tests-column {
    padding-top: 20px;
}

.practice-tests-column.past {
    display: none;
}

.practice-tests-mian-outer.show .practice-tests-column.past {
    display: block;
}

.practice-tests-mian-outer.show .practice-tests-column {
    display: none;
}

.practice-test-row {
    max-width: 500px;
    background: #FFFFFF;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.11), 0px 0px 55px rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    height: 100%;
    padding: 20px 30px 30px;
}

.practice-tests-column .sat-pratice h6 {
    margin: 0;
}

.more-tests-info-section .practice-test-row {
    padding: 30px;
}

.practice-test-row select.form-select {
    min-height: 50px;
    font-family: var(--font-semibold);
}

.practice-test-row p {
    color: #000;
    font-family: var(--font-semibold);
    margin: 0 0 10px;
}

.practice-test-row .token-row {
    margin-top: 20px;
}

.practice-test-row button.primary-btn {
    margin-top: 20px;
    float: right;
}

.over-padding {
    padding: 15px 20px;
    border-bottom: 1px solid #F5F5F6;
}

.sat-pratice h6 {
    font-size: 18px;
    margin-bottom: 10px;
}

.over-padding p {
    color: #252934;
    font-family: var(--font-semibold);
}

.over-padding span {
    font-family: var(--font);
    color: #252934;
    font-size: 16px;
    padding-right: 20px;
}

span.due-date {
    display: block;
    font-size: 14px;
    margin: 6px 0 0;
    padding-right: 20px;
}

.over-padding:last-child {
    border: none;
}

.more-tests-column ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.more-tests-column ul li {
    background: #FFFFFF;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.11), 0px 0px 55px rgba(0, 0, 0, 0.03);
    border-radius: 10px;
    padding: 21px;
    border: 1px solid transparent;
    min-width: 205px;
}

.more-tests-column ul li button.primary-btn {
    font-size: 14px;
    min-height: 35px;
    min-width: 117px;
    margin-top: 22px;
    color: #949494;
}

.more-tests-column {
    padding-top: 20px;
}

.more-tests-column ul li button.secondary-btn {
    font-size: 14px;
    min-height: 35px;
    min-width: 117px;
    margin-top: 22px;
    color: #949494;
}

.more-tests-info-section {
    padding-bottom: 40px;
}

.more-tests-column ul li:hover {
    background: #EEF1FF;
    border: 1px solid #D2D6E9;
}

.more-tests-column ul li:hover button.secondary-btn {
    background-color: var(--primary-color);
    color: #fff;
}

.more-tests-column ul li h6 {
    font-size: 16px;
}

.custom-pagination {
    display: flex;
    align-items: center;
    padding-top: 40px;
    justify-content: center;
    gap: 12px;
    padding-bottom: 40px;
}

.custom-pagination button.button {
    width: 46px;
    height: 46px;
    padding: 5px;
    min-height: 46px;
    border-radius: 50px;
    background: #fff;
    border: none;
}

.custom-pagination ul {
    display: flex;
    gap: 10px;
}

.custom-pagination ul li a {
    width: 46px;
    height: 46px;
    background: #FFFFFF;
    border-radius: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #131313;
    font-family: var(--font-bold);
    font-size: 16px;
    border: 1px solid #EAEAEA;
}

.custom-pagination ul li a.active {
    background-color: var(--primary-color);
    color: #fff;
}

section.university-bg {
    background-color: #EEF1FF;
    padding: 60px 0;
    background-image: url('../images/Frame-bg.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

.university-sec {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.university-sec p {
    font-size: 20px;
}

.university-sec h3 span {
    font-family: var(--font);
}

.university-sec h3 {
    line-height: 47px;
    margin-top: 20px;
}


/*===================================================
               test-score page Css Start
=====================================================*/

.score-sat-pratice {
    background: #FFFFFF;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 30px 40px;
    border-right: 60px solid #EAEAEA;
    position: relative;
}

.score-sat-pratice-new {
    background: #FFFFFF;
    box-shadow: 0px 1px 10px rgba(0, 0, 0, 0.25);
    border-radius: 15px;
    padding: 100px 40px;
    border-right: unset;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 150px;
    text-align: center;
    height: 100%;
}

/* .test-score-main-section {
    margin: 40px 0 0;
} */

/* .test-score-main-section .heading {
    margin: 0 0 30px;
} */

.test-total-score-row {
    border-top: 1px solid #DDDDDD;
    padding: 25px 0 0;
    margin-top: 25px;
}

.score-sat-pratice h6 {
    font-size: 22px;
    margin: 0 0 10px;
    font-family: var(--font-semibold);
}

.test-total-score-row h6 {
    font-size: 20px;
    white-space: nowrap;
}

.totle-score-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.totle-score-flex span {
    border-left: 1px solid #DDDDDD;
    padding: 0 0 0 15px;
    white-space: nowrap;
}

.test-total-score-row ul {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.reading-writing-score {
    background: #EAEAEA;
    border-radius: 10px;
    padding: 15px;
    min-width: 225px;
}

.reading-writing-score p {
    font-size: 16px;
    margin: 0 0 15px;
}

.score-sat-pratice .next-arrow a {
    background-color: var(--primary-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 20px;
}

.score-sat-pratice .next-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -20px;
}

.score-review-btn-row {
    margin: 25px 0 0;
    display: flex;
    align-items: center;
    gap: 20px;
}

.score-review-btn-row button {
    font-size: 16px;
}

.score-review-btn-row button.secondary-btn {
    background: #fff;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
}

.score-sat-pratice-row {
    margin: 0 0 50px;
}


/* module css */
.module-sec {
    height: 100vh;
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.module-sec h6 {
    color: #324DC7;
    margin: 0 0 10px;
    font-size: 30px;
}

.module-sec p {
    margin: 0 0 5px;
    color: #212529;
}

.spinner-border {
    margin-top: 20px;
}

/* remaining css */

.module-sec.remaining-time-main-section {
    flex-direction: inherit;
    flex-wrap: wrap;
    background: #000;
    overflow: auto;
}

.remaining-time-left-sec {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.remaining-time-right-sec {
    width: 50%;
    text-align: left;
    padding: 0 0 0 20px;
}

.remaining-time {
    border: 1px solid #fff;
    border-radius: 10px;
    display: inline-block;
    padding: 20px;
    margin: 0 0 25px;
}

.remaining-time p {
    color: #fff;
}

.remaining-time h1 {
    color: #fff;
}

.remaining-time-left-sec a {
    display: inline-block;
    color: #000;
    background: #ffc107;
    border-radius: 50px;
    padding: 12px 15px;
    font-family: var(--font-semibold);
}

.remaining-time-right-sec h3 {
    color: #fff;
    max-width: 450px;
    margin: 0 0 15px;
}

.remaining-time-right-sec p {
    max-width: 450px;
    color: #fff;
    margin: 0 0 25px;
    font-size: 16px;
}

.remaining-time-right-sec ul li {
    max-width: 450px;
    color: #fff;
    margin: 0 0 25px;
    padding: 0 0 0 5px;
}

.remaining-time-right-sec p strong {
    color: #fff;
}

span.space {
    display: block;
    margin: 40px 0;
    height: 1px;
    background: #fff;
    max-width: 450px;
}

.remaining-time-right-sec ul {
    list-style: auto;
    padding: 0 0 0 18px;
}

.bottom-text {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    bottom: 10px;
    width: 100%;
    text-align: left;
    padding: 10px 0;
}

.bottom-text p {
    color: #fff;
    font-family: var(--font-medium);
}

/* css */
.annotation-popup-content {
    text-align: center;
    padding: 50px 0;
}

.annotation-popup-content p {
    margin: 20px 0;
}

.annotation-popup-content h3 {
    /* text-transform: capitalize; */
    font-family: var(--font-medium);
}

.annotation-popup-content .d-flex {
    justify-content: center;
    align-items: center;
    gap: 40px;
    padding-top: 20px;
}

.delete-btn-annotation {
    background-color: #fedb00;
    border-radius: 50px;
    padding: 10px 20px;
    font-family: var(--font-semibold);
    min-height: 55px;
    border: 1px solid;
    text-transform: capitalize;
    color: var(--text-color) !important;
    display: inline-flex;
    align-items: center;
}

.save-exit-button {
    background-color: #fedb00;
    border-radius: 50px;
    padding: 10px 20px;
    font-family: var(--font-semibold);
    min-height: 55px;
    border: 1px solid;
    /* text-transform: capitalize; */
    color: var(--text-color) !important;
    display: inline-flex;
    align-items: center;
}

a.keep-annotation {
    font-family: var(--font-bold);
    text-transform: capitalize;
}

.pay-disable {
    background-color: #959fe2;
}

/* .is-invalid {
    font-size: 14px;
    color: #bb0606;
    margin-top: 2px;
} */

/*===================================================
               footer Css Start
=====================================================*/

footer {
    background: #252934;
}

.footer-section h5 {
    color: #fff;
    font-size: 22px;
    padding: 0 0 30px;
    border-bottom: 1px solid #ffffff33;
    margin: 0 0 20px;
}

.footer-section ul li a {
    color: #ffffff80;
    line-height: 36px;
    font-family: var(--font-medium);
    font-size: 16px;
}

.footer-section {
    padding-top: 50px;
}

.copyright {
    background: #1E232E;
    padding: 20px 0;
    text-align: center;
    border-top: 1px solid #ffffff33;
    margin-top: 50px;
}

.copyright p {
    color: #ffffff4d;
    font-size: 15px;
}

.footer-inner {
    padding: 0 15% 0 0px;
}

/*===================================================
               score-details Css Start
=====================================================*/
.breadcrumb {
    background: #EEF1FF;
    padding: 15px 0;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb ul li {
    padding: 0 35px 0 0px;
    position: relative;
}

.breadcrumb ul li:before {
    content: ' ';
    background: #545454;
    height: 16px;
    position: absolute;
    right: 18px;
    width: 1px;
    transform: rotate(28deg);
    top: 5px;
}

.breadcrumb ul li:last-child:before {
    opacity: 0;
}

.breadcrumb ul li a {
    font-size: 16px;
}

.score-details-main .heading h4 span {
    font-family: var(--font);
    font-size: 16px;
}

.score-data-tabs-content-bg {
    background-color: #EAEAEA;
    padding: 30px 0;
}

.score-data-tabs-sec .tab-content {
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
}

.score-data-tabs-sec nav {
    overflow-y: auto;
}

.score-data-tabs-sec div#nav-tab {
    border: none;
    gap: 60px;
    margin: 0 !important;
    width: 900px;
}

.score-data-tabs-sec div#nav-tab .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: #252934;
    font-size: 18px;
    font-family: var(--font-semibold);
    padding: 0 0 15px;
    margin: 0;
    line-height: 20px;
}

.score-data-tabs-sec div#nav-tab .nav-link.active {
    border-color: var(--primary-color);
}

.questions-overview-row ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: #FFFFFF;
    border-radius: 10px;
    padding: 35px 0;
    margin-top: 20px;
}

.questions-overview-row ul li {
    display: flex;
    gap: 25px;
    justify-content: center;
    align-items: center;
    width: 33.333%;
    border-left: 1px solid #ccc;
}

.questions-overview-row ul li:first-child {
    border: none;
}

.question-overview-content-info p {
    margin: 15px 0 0;
    line-height: 20px;
    font-family: var(--font-medium);
    color: #252934;
}

.question-overview-content-info.black h3 {
    color: #124be7;
}

.question-overview-content-info.green h3 {
    color: #279969;
}

.question-overview-content-info.red h3 {
    color: #DD3329;
}

table.table th {
    background: #212529;
    color: #fff;
    text-align: center;
    padding: 12px 20px;
    font-family: var(--font-semibold);
    text-transform: capitalize;
}

table.table td {
    text-align: center;
    padding: 12px 20px;
}

table.table {
    background: #FFFFFF;
    border-radius: 10px;
    overflow-y: hidden;
    min-width: 1300px;
    width: 100%;
}

table.table tr td {
    border-left: 1px solid #E8E8E8;
}

table.table tr th {
    border-left: 1px solid #4B5162;
}

a.review-btn {
    background: #F5F5F6;
    border: 1px solid #C3C3C3;
    border-radius: 100px;
    padding: 6px 15px;
    font-size: 14px;
    color: #454545;
    font-family: var(--font-semibold);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
}

a.review-btn:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

table.table tr td span.red {
    color: #DD3329;
}

table.table tr td span.green {
    color: #279969;
}

.questions-overview-table {
    margin-top: 15px;
    overflow-y: auto;
}


/* draggable */


#draggable {
    background: #fff;
    position: fixed;
    left: 80px;
    top: 130px;
    width: 100%;
    font-size: 2rem;
    max-width: 400px;
    border: 1px solid #262934;
    z-index: 99;
    display: none;
    cursor: move;
}

#keypad_only {
    background: #fff;
    position: fixed;
    right: 2%;
    top: calc(100vh - 380px);
    width: 100%;
    font-size: 2rem;
    max-width: 320px;
    border: 1px solid #262934;
    z-index: 99;
    /* display: none; */
    cursor: move;
}

#reference {
    background: #fff;
    position: fixed;
    right: 80px;
    top: 130px;
    width: 100%;
    font-size: 2rem;
    max-width: 1100px;
    border: 1px solid #262934;
    z-index: 99;
    display: none;
    cursor: move;
}

.reference-sheet.active {
    display: block !important;
}

.reference-sheet.expand-increase {
    max-width: 580px !important;
}

.draggable-data-show {
    display: block !important;
}

.no-select {
    user-select: none;
}

.draggable-data-info ul {
    display: grid;
    align-items: center;
    grid-template-columns: 1fr auto 1fr;
}

.draggable-data-info {
    background: #262934;
    padding: 10px 15px;
    cursor: move;
    pointer-events: none;
}

.draggable-data-info ul li.justify-content-end {
    z-index: 2;
    pointer-events: auto;
}

.draggable-data-info ul li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    width: auto;
}

.draggable-data-info span.dots-icon {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.draggable-data-info span.dots-icon i {
    line-height: 15px;
}

.draggable-data-info span.icon-bg {
    color: #000;
    background: #fff;
    border-radius: 5px;
    padding: 5px 5px;
    font-size: 23px;
    min-width: 33px;
    min-height: 33px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.draggable-data-info span.icon-bg svg {
    width: 26px;
    height: 26px;
}

.draggable-data-info ul p {
    font-family: var(--font-bold);
}

.draggable-data-info i.fa-solid.fa-xmark {
    font-size: 24px;
}

.draggable-data-info ul span {
    line-height: 20px;
}

.draggable-content {
    padding: 10px 15px;
    min-height: 200px;
    display: inline-block;
    width: 100%;
    overflow-y: auto;
    max-height: 80vh;
}

ul.reference-draggable-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px 0;
    gap: 40px;
}

ul.reference-draggable-content li {
    min-width: 13%;
    text-align: center;
    position: relative;
}

ul.reference-draggable-content li p {
    position: absolute;
    right: -80px;
    bottom: -30px;
    font-size: 16px;
    font-family: var(--font-bold);
    color: #262934;
}

.reference-sheet.expand-increase ul.reference-draggable-content li {
    width: 32%;
}

span.expand-data {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.expand-increase {
    max-width: 900px !important;
}

span.close-data,
span.close-reference-data {
    cursor: pointer;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 0 10px;
    border-radius: 5px;
}

span.close-data:hover,
span.close-reference-data:hover {
    background: #464646;
}

.data-hide {
    display: none;
}

.expand-increase span.expand-data.collapse {
    display: flex;
}

.expand-increase span.expand-data {
    display: none;
}

.expand-increase span.expand-data.collapse i {
    transform: rotate(90deg);
}

div#calculator {
    display: inline-block;
    width: 100%;
    height: 500px;
}

.expand-increase div#calculator {
    height: 700px;
}

div#question-data .modal-dialog {
    max-width: 750px;
}

.question-data-info-content h4 {
    max-width: 80%;
}

.question-data-info-content {
    padding: 30px;
    position: relative;
}

.question-data-info-content button.close {
    position: absolute;
    right: 20px;
    top: 20px;
    background: transparent;
    border: none;
    font-size: 30px;
    padding: 0;
}

div#question-data p.question {
    border-top: 1px solid #ddd;
    padding: 20px 0;
    margin-top: 30px;
}

div#question-data .modal-content {
    border-radius: 10px;
    border: none;
    box-shadow: none;
}

div#question-data .footer-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 50px;
    gap: 20px;
}

div#question-data .footer-bottom-row button {
    padding: 10px;
    border: none;
    border-radius: 5px;
    width: 100%;
    min-height: 50px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 18px;
    font-family: var(--fomt-medium);
}

div#question-data button.red-btn {
    background: #D83535;
    color: #fff;
}

div#question-data button.green-btn {
    background: #279969;
}


/*===================================================
              Experthub Css Start
=====================================================*/
.gry-bg-color {
    background-color: #EAEAEA;
}

.back-btn a {
    color: #0d6efd;
    display: flex;
    align-items: center;
    gap: 5px;
}

.back-btn {
    padding: 15px 0;
    background-color: #EAEAEA;
}

.experthub-banner-section {
    border-radius: 10px;
    overflow: hidden;
}

.experthub-banner-section img {
    min-height: 150px;
    object-fit: cover;
}

.experthub-icon-text {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 90%;
    margin: 0 auto;
    margin-top: -70px;
}

.experthub-icon-text span {
    width: 150px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #324DC7;
    border: 5px solid #FFFFFF;
    border-radius: 90px;
    color: #fff;
    font-size: 70px;
}

.experthub-icon-text h4 {
    padding-top: 50px;
}

.about-experthub-section {
    display: flex;
    flex-wrap: wrap;
    margin: 30px 0 0;
    padding-bottom: 30px;
}

.left-section-about-experthub {
    width: 60%;
    padding: 0 40px 0 0;
}

.right-associate-teachers {
    width: 40%;
}

.left-section-about-experthub-inner {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 40px;
}

.left-section-about-experthub h6 {
    margin: 0 0 20px;
}

ul.graduation-icon-text li {
    display: flex;
    align-items: center;
    gap: 20px;
}

ul.graduation-icon-text i {
    color: #324DC7;
    font-size: 20px;
    width: 20px;
}

ul.graduation-icon-text {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

ul.graduation-icon-text li p {
    color: #252934;
    font-family: var(--font-semibold);
}

ul.graduation-icon-text p {
    line-height: 26px;
}

ul.college-board-info {
    margin: 20px 0 0;
    border: 1px solid #EBEBEB;
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

ul.college-board-info li p {
    color: #252934;
    font-family: var(--font-semibold);
    margin: 0 0 5px;
}

.contact-information-inner {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 40px;
}

.contact-information-section {
    margin: 26px 0;
}

.contact-information-inner ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-information-inner ul li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-information-inner ul li i {
    color: #324DC7;
    font-size: 16px;
    width: 20px;
}

.right-associate-teachers ul li {
    width: 33.333%;
    padding: 10px;
}

.associate-teachers-info {
    background: #FFFFFF;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    gap: 15px;
}

.right-associate-teachers ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
    margin-top: 10px;
}

.associate-teachers-info p {
    font-size: 16px;
    font-family: var(--font-bold);
    color: #252934;
}



/*===================================================
                teachers Css Start
=====================================================*/
.teachers-profile-details-sec {
    max-width: 650px;
    margin: 0 auto;
    padding-bottom: 60px;
}

.profile-image-row {
    text-align: center;
    margin: 0 0 13px;
}

.profile-image-row span {
    width: 70px;
    height: 70px;
    border-radius: 50px;
    border: 3px solid #fff;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.profile-image-row img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-image-row p {
    color: #252934;
    font-family: var(--font-bold);
}

.teachers-profile-details-inner {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 25px 28px;
}

.teachers-profile-details-info {
    background: #EEF1FF;
    border-radius: 10px;
    padding: 30px 40px;
    margin-top: 33px;
}

.teachers-profile-details-info ul {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.teachers-profile-details-info ul li {
    display: flex;
    gap: 20px;
    align-items: baseline;
}

.teachers-profile-details-info ul li i {
    color: #324DC7;
    font-size: 22px;
    width: 25px;
}

.teachers-profile-details-info ul li p {
    color: #252934;
    font-family: var(--font-semibold);
    margin: 0 0 5px;
}


/*===================================================
                teachers Css Start
=====================================================*/
.token-info-row-bg {
    background: #FFFFFF;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
}

.token-info-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

.regular-token-premium {
    background: #F5F5F6;
    border-radius: 8px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 20px;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 1rem
}

.purchased-token {
    width: 250px;
    padding: 10px;
}

ul.token-info-ul li {
    display: flex;
    gap: 15px;
}

.token-value p {
    margin: 10px 0 0;
    color: #252934;
}

.regular-token-premium .token-img img {
    max-width: 32px;
}

.token-img img {
    max-width: 50px;
}

.teachers-profile-details-sec.token-info-section h5 {
    text-align: center;
    margin-bottom: 27px;
}

.used-token-bg {
    width: 50%;
    background: #FFF7E3;
    border-radius: 8px;
    padding: 20px;
}

.unused-token-bg {
    width: 50%;
    background: #FFEAE3;
    border-radius: 8px;
    padding: 20px;
}

.token-used-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 15px;
    border-top: 1px solid #FAEAC3;
    padding-top: 14px;
    flex-wrap: wrap;
    row-gap: 1rem;
}

.token-used-row .token-img img {
    max-width: 32px;
}

.token-used-row .token-value p {
    margin: 0;
    font-size: 14px;
    font-family: var(--font-medium);
}

.token-used-row ul.token- liinfo-ul li {
    align-items: center;
}

.token-used-row ul.token-info-ul li {
    align-items: center;
    gap: 10px;
}

.unused-token-bg .token-used-row {
    border-color: #FFDDD1;
}

.purchase-more-btns {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin-top: 28px;
    margin-bottom: 15px;
}

.purchase-more-btns a {
    font-size: 16px;
    max-width: 180px;
    width: 100%;
}

.purchase-more-btns a.secondary-btn {
    color: #252934 !important;
}


/*===================================================
                edit-profile Css Start
=====================================================*/

.login-main-section.edit-profile-main {
    padding-top: 10px;
}

.edit-profile-form h3 {
    text-align: left;
}

.edit-profile-image {
    display: inline-block;
    margin: 30px 0 0;
    position: relative;
}

.edit-profile-form {
    text-align: left;
    margin-bottom: 50px;
    margin-top: 10px;
    max-width: 100%;
}

.edit-profile-image span {
    width: 98px;
    height: 98px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
}

.edit-profile-image span img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.edit-profile-image input.form-control {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    opacity: 0;
    z-index: 2;
    border-radius: 50px 50px 0px 50px;
}

.edit-icon {
    position: absolute;
    right: -6px;
    bottom: -6px;
}

.edit-icon span {
    background: #F8F8F8;
    border: 1px solid #FFFFFF;
    border-radius: 50px;
    width: 40px;
    height: 40px;
}


/*===========================================================
                  change password popup css
=============================================================*/
.change-password-dashboard {
    text-align: center;
    margin: 0 0 30px;
}

.change-password-dashboard h5 {
    margin: 10px 0 0;
}

div#change-password form.create-account-form .form-group {
    width: 100%;
}

div#change-password .modal-dialog {
    max-width: 750px;
}

div#change-password .form-group.create-form-button .formfield {
    justify-content: center;
}

.modal-body {
    padding: 28px;
}

.modal-content {
    border-radius: 15px;
    background: #FFF;
    border: none;
}


.congratulations-page-header .primary-btn {
    gap: 7px;
}

.question-desc.question-promt {
    padding: 15px 0 0;
}

.question ul {
    list-style: unset;
    list-style-position: inside;
}

.option-content ol {
    list-style-type: auto !important;
    padding-left: 30px;
}

.option-content ul {
    list-style-type: disc !important;
    padding-left: 30px;
}

.question-inner-row ul {
    padding: 0;
}

.question-inner-row ul li ul {
    padding-left: 30px;
}

.option-content li {
    overflow: visible !important;
    display: list-item !important;
}

.filter-on-click {
    border: 1px solid #686868;
    padding: 9px 17px;
    border-radius: 5px;
    position: relative;
}

.filter-on-click input {
    position: absolute;
    right: 0;
    opacity: 0;
    cursor: pointer;
}

.filter-on-click form#searchForm {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #8A8A8A;

}

.filter-on-click form#searchForm i {
    color: #fff;
    padding-left: 11px;

}

li.student-checkall {
    display: flex;
    align-items: center;
}

#ui-datepicker-div {
    z-index: 11 !important;
}

.form-search-btn-box .btn:hover {
    background: transparent !important;
}



.table.table-bordered td,
.table.table-bordered th {
    border-color: #000000;
    border: 1px solid #000 !important;
}

table.table.table-bordered {
    overflow: visible;
    min-width: auto;
}

.table-responsive.rubric-table-main table th {
    border-left: none;
}

.alert-success button.close {
    position: absolute;
    top: -10px;
    right: -6px;
    background: #fff;
    border-radius: 50px;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: normal;
    padding: 0;
    border: 1px solid #bdbdbd;
}

.alert.alert-success {
    padding: 10px;
    padding-right: 40px;
    margin-top: 15px;
}

.close-btn-row button.primary-btn {
    background: #ffdf28;
    color: #000 !important;
    min-width: 100px;
    border: 1px solid;
    min-height: 40px;
}

/* .annotate-column.unselectable svg {
    width: 20px;
    height: 20px;
} */

.more-info div span {
    padding: 0 0 3px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.over-view-sec ul {
    list-style: unset;
    list-style-position: inherit;
}

.question ul {
    list-style: unset;
    list-style-position: unset;
    padding-left: 22px;
}

.directions-bg .directions-content .question ul {
    padding-left: 20px;
    margin-left: 20px;
}

.section-2-font .table-direction-font td span {
    font-family: var(--font) !important;
    /* background: #f0f0f0; */
    padding: 1px;
    font-size: 16px !important;
}

.section-2-font p {
    font-size: 18px;
}

.question-left-side-content .over-view-sec ul {
    padding-left: 20px;
}

.option-content {
    width: calc(100% - 30px);
    word-break: break-all;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.container-cust {
    padding: 0 3%;
}

.section-2-font span.large-font span,
.section-2-font span.large-font,
.section-2-font ul li font,
.section-2-font li span,
.section-2-font ul li p span,
.section-2-font ul li p,
.section-2-font p,
.section-2-font li,
.section-2-font p span,
.section-2-font p div,
.section-2-font span div,
.section-2-font .note-editable div,
.note-editable {
    font-size: 18px !important;
    font-family: 'times new roman' !important;
    color: #252934 !important;
    line-height: 24px !important;
}

.section-2-font ul li p h2 {
    font-size: 18px !important;
    margin-bottom: 0 !important;
    font-family: 'times new roman' !important;
    color: #252934 !important;
}

.section-2-font label {
    font-size: 18px !important;
    margin-bottom: 0 !important;
    font-family: 'times new roman' !important;
    font-weight: 400 !important;
    color: #252934 !important;
}

.MathJax.CtxtMenu_Attached_0 {
    margin: 0 !important;
}

.question-inner-row ul li .form-check li {
    margin-bottom: 0;
}

/* mjx-mn.mjx-n {
    font-size: 18px !important;
} */
p,
ul:not(.list-unstyled),
ol {
    line-height: 24px;
}

/* .section-2-font * {
    font-size: 18px !important;
    font-family: 'times new roman' !important; 
} */

mjx-container [size="s"] {
    font-size: inherit !important;
}

/* For fonts */
.section-2-font .question-inner-row p div {
    font-size: 18px !important;
    font-family: 'times new roman' !important;
}

.section-2-font .option-content div {
    font-size: 18px !important;
    font-family: 'times new roman' !important;
    color: #252934 !important;
}

.section-2-font .question-editor div,
.section-2-font .note-editing-area span {
    font-size: 18px !important;
    font-family: 'times new roman' !important;
    color: #252934 !important;
}

span#show-clock svg {
    width: 17px;
    height: 17px;
}

/* .make-select-column-abc {
    background: #505050;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    right: 8px;
    top: -62px;
    min-width: 200px;
    max-width: 240px;
    z-index: 9;
    box-shadow: 0px 4px 5px 0px #00000033;
    display: none;
}

.make-select-column-abc p {
    color: #fff;
    font-size: 16px !important;
    font-family: var(--font) !important;
}
.make-select-column-abc:after {
    content: ' ';
    background: #505050;
    position: absolute;
    right: 32px;
    bottom: -7px;
    width: 15px;
    height: 15px;
    transform: rotate(45deg);
}
.abc:hover .make-select-column-abc {
    display: block;
} */


/* .tooltip-inner {
    text-align: left;
    font-size:15px;
    background: #505050;
    border-radius: 10px;
    padding: 10px;
    position: absolute;
    right: -30px;
    top: -62px;
    min-width: 210px;
    max-width: 240px;
    box-shadow: 0px 4px 5px 0px #00000033;
    opacity: 1 !important;
    font-family: var(--font) !important;
} */
/* .tooltip.show {
    opacity: 1;
}  */

/* .tooltip.bs-tooltip-top .tooltip-arrow::before {
    border-top-color: #505050;
    content: ' ';
    background: #505050;
    position: absolute;
    right: 8px;
    bottom: 5px !important;
    top: inherit;
    width: 10px;
    height: 10px;
    transform: rotate(45deg);
    
} */

.timer-hide-show-btns button:active {
    text-decoration: underline;
}

.abc button.btn {
    padding: 0;
}

.clock_section {
    position: absolute;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 40px;
    z-index: 5;
    max-width: 200px;
}

label.cust-label-font {
    font-size: 16px !important;
    font-family: var(--font-bold) !important;
}

body.light-sidebar .modal-content button.close {
    margin: 0 !important;
    padding: 0 !important;
    opacity: 1;
}

body.light-sidebar .modal-content h4.modal-title {
    font-size: 20px;
}

.section-2-font h1,
.section-2-font h2,
.section-2-font h3,
.section-2-font h4,
.section-2-font h5,
.section-2-font h6 {
    font-size: 18px !important;
    font-family: 'times new roman' !important;
    line-height: normal !important;
    color: #252934 !important;
}

.section-2-font .note-editor ul,
.section-2-font .note-editor ol,
.section-2-font .over-view-sec ul,
.section-2-font .over-view-sec ol {
    padding-left: 22px;
    color: #252934 !important;
}

body.directions-show .directions-info summary i {
    transform: rotate(180deg);
}

.main-content .section-body .card .card-body .custom-select-font {
    font-size: 18px !important;
    font-family: 'times new roman' !important;
    color: #252934 !important;
}

/* ul dots hide in ul under ul********/
.note-editable ul li ul {
    list-style: none;
    padding: 0 !important;
}

.option-content ul li ul {
    list-style: none !important;
    padding: 0 !important;
}

.over-view-sec ul li ul {
    list-style: none !important;
    padding: 0 !important;
}

.question ul li ul {
    list-style: none;
    padding: 0 !important;
}

.note-editable ol li ol {
    list-style: none;
    padding: 0 !important;
}

.option-content ol li ol {
    list-style: none !important;
    padding: 0 !important;
}

.over-view-sec ol li ol {
    list-style: none !important;
    padding: 0 !important;
}

.question ol li ol {
    list-style: none;
    padding: 0 !important;
}

.question-editor ul li ul {
    padding: 0;
    list-style: none;
}

/* mjx-container[jax="CHTML"][display="true"] {
    text-align: left !important;
} */
mjx-container[jax="CHTML"][display="true"] {
    text-align: inherit !important;
}

div#question-data .question-inner-row ul li font,
div#question-data .question-inner-row ul li,
div#question-data .question-inner-row ul li span {
    color: #252934 !important;
    font-size: 18px !important;
    line-height: normal;
}

.section-2-font .question span {
    font-size: 18px !important;
    font-family: 'times new roman' !important;
    color: #252934 !important;
    line-height: 24px !important;
}

div#save-exit-popup .modal-dialog {
    max-width: 1000px;
    justify-content: center;
    align-items: center;
    display: flex;
    height: 100%;
    margin: 0 auto;
    padding: 20px 0;
}

.save-exit-popup-se h3 {
    font-size: 25px;
    font-family: var(--font-medium);
}

.save-exit-popup-se .d-flex {
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.save-exit-popup-se p {
    padding: 20px 0 30px;
}

.save-exit-popup-se button.btn {
    padding: 0;
    font-size: 20px;
    opacity: 0.6;
}

mjx-script [size] *:before {
    font-size: 70%;
}

span#wrongAnswerFormat {
    margin: -25px 0 0 0;
    font-family: var(--font-semibold);
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

span#wrongAnswerFormat span {
    width: 15px;
    height: 15px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #b71e35;
    color: #fff;
    font-size: 10px;
}


.cstm-tooltip-msg {
    display: none;
}

.cstm-tooltip {
    position: relative;
}

.cstm-tooltip:hover .cstm-tooltip-msg {
    display: block;
}

.cstm-tooltip-msg {
    position: absolute;
    top: 113%;
    width: 499px;
    background: #505050;
    color: #fff;
    padding: 16px 40px;
    border-radius: 10px;
    text-align: center;
    transform: translateX(-45%);
}

#time-over-alert .modal-content {
    background: #505050;
    color: #fff;
}

.time-over-alert-se {
    display: flex;
    gap: 20px;
}

#time-over-alert .modal-dialog {
    min-width: 700px;
    margin-top: 7%;
}

.time-alert-text h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 13px;
}

.btn.time-alert-close-btn {
    color: #fff;
    font-size: 25px;
    padding: 0;
}

.test-calculator .question-right-side-content {
    transform: translateX(200px);
}

.question-right-side-content {
    transform: translateX(0px);
    transition: all 0.6s ease;
}

#annotate-note-content {
    position: fixed;
    display: none;
}

/* 04-10-2023 */
.number-holder {
    display: inline-grid;
}

.number-holder span {
    background: none !important;
    line-height: normal;
}

.number-holder span:first-child {
    border-bottom: 1px solid #000;
}

.minus-value {
    position: relative;
    padding-left: 15px;
}

.minus-value:before {
    content: "";
    position: absolute;
    left: 2px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 1px;
    background: #000;
}

.section-2-font .table-direction-font td .number-holder span {
    font-family: 'times new roman' !important;
}

.three-items {
    margin-top: 5px;
    /* background: #f0f0f0; */
    display: inline-flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
}

.content-info select.form-control {
    background: url(../images/icon-down.svg) no-repeat;
    background-position: 94% 50%;
    padding-right: 30px;
    max-width: 270px;
}

.content-info {
    width: 100%;
}

/* 09-10-2023 */
#reference .draggable-content p span {
    font-size: 21px;
    font-family: 'times new roman';
}

.annotate-column.non-clickable {
    opacity: 0.6;
    pointer-events: none;
}

.test-show-table {
    min-width: 950px !important;
}

.remaining-time-right-sec a {
    display: inline-block;
    color: #000;
    background: #ffc107;
    border-radius: 50px;
    padding: 12px 15px;
    font-family: var(--font-semibold);
}

.pause-section-module {
    max-width: max-content;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.pause-section-module-para p {
    color: #fff;
    text-align: left;
    font-size: 14px;
    margin-bottom: unset;
    font-family: var(--font-bold);
}

.list-icon-outer {
    height: 32px;
    width: 31px;
    border: 1px solid #ffffff6e;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.list-icon-outer i {
    color: #fff;
    font-size: 14px;
}

/* 27-10-2023 */

/* 02-11-2023 */
.fields-ques {
    max-width: 1180px;
}

.dropdown-divider,
.card .card-header {
    border-color: #efefef;
}

.form-group.row.mb-4.image_question {
    flex-wrap: wrap;
    max-width: max-content;
}

.form-group.row.mb-4.image_question label.col-form-label {
    max-width: 100%;
    flex: 100%;
    text-align: left !important;
    padding-left: 16px;
}

.col-12.ques-wrapper .fields-ques .custom-select-font.selectric {
    font-family: 'PlusJakartaSans-Regular' !important;
    font-size: 16px !important;
}

.table-responsive.rubric-table-main {
    padding: 0;
}

ul.nav.nav-tabs.test-tabs {
    padding: 10px 25px 0px;
}

.card.edit-plan form {
    max-width: 600px;
}

.card.edit-plan label.col-form-label.text-left.col-md-3.col-lg-2 {
    padding-left: 0;
}

.card-header .float-right {
    margin-right: 0;
    margin-left: auto;
}

.gap-2.float-right {
    gap: 10px;
}

.card-header.token-card-header form#searchForm .input-group .input-group-btn button.btn.btn-primary.reset {
    border-radius: 20px !important;
    min-width: 60px;
    height: 35px;
}

.modal-footer.bg-whitesmoke.br {
    border-radius: 0 0 15px 15px;
}

.time-over-alert-se button.btn.time-alert-close-btn {
    position: absolute;
    right: 20px;
    top: 10px;
}

.practice-tests-column .sat-pratice .over-padding {
    border-top: 1px solid #efefef;
}

.practice-tests-mian-outer .sat-heading {
    justify-content: space-between;
}

.card.list-test td form {
    gap: 5px;
    display: flex;
    display: -webkit-flex;
}

table.table.table-striped td form .btn {
    min-width: 90px;
    margin: 0;
}

.ques-wrapper label.col-form-label.cust-label-font {
    display: block;
    text-align: left !important;
}

/* 15-11-2023 */
.duplicate-time .remaining-time-right-sec {
    max-width: max-content;
    border: 1px dashed #f00;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    gap: 10px
}

.duplicate-time .remaining-time-right-sec i {
    font-size: 66px;
    color: #f00;
}

.duplicate-time .remaining-time-right-sec h3 {
    margin: 0;
    color: #f00;
}

.test-passage {
    font-family: 'times new roman' !important;
}

.form-group.mcq-answer .section-2-font {
    min-width: 300px;
}

.table-responsive.rubric-table-main table.table {
    border-radius: 0;
}

.ques-wrapper .form-group .col-sm-4 {
    width: 100%;
    max-width: 390px;
    flex: 100%;
}

.card.show-student .card-body,
.card.editSubadmin .card-body,
.card-body.section-2-font,
.card.edit-institute .card-body,
.cbody-card .card-body,
.card-body.section-2-font.ques-wrapper,
.card.edit-test .card-body {
    padding-left: 10px;
    padding-right: 10px;
}

div#myTab3Content .card-body,
.row.show-test .card-body [class*="col-sm"] {
    padding: 0;
}

select#answer_type {
    height: 50px;
}

.theme-white .btn {
    font-family: var(--font-semibold);
    font-weight: normal;
}

.over-padding span b {
    font-weight: normal;
    font-family: var(--font-bold);
}

.practice-tests-column .sat-pratice .over-padding h6 {
    margin-bottom: 10px;
    font-family: var(--font-extrabold);
}

form#change_password .icon i {
    font-size: 14px;
}

.pause-section-module-para {
    display: flex;
    gap: 10px;
}

.test-passage h1 {
    font-size: 18px !important;
}

.draggable-content p,
ul.reference-draggable-content li p,
.test-qa-heading div,
.test-ques-cstm-wrapper .test-passage *:not(mjx-container *),
.explanation *:not(mjx-container *) {
    font-family: "times new roman" !important;
}


ul.reference-draggable-content li p {
    font-weight: 600;
}

.teacher-students-row {
    justify-content: flex-end;
    margin-top: 24px;
}


@media (max-width: 1440px) {
    .card.edit-test .col-sm-4 {
        width: 100%;
        flex: 100%;
        max-width: calc(100%/2);
    }
}

@media (max-width: 1365px) {

    .main-content .section-body .dashboard-main [class*="col-lg"],
    .edit-student .col-md-4 {
        max-width: calc(100%/2);
        width: 100%;
        flex: 100%;
    }

    .main-content .section-body .col-3 {
        max-width: 330px;
        width: 100%;
        flex: 1;
    }

    .card-body.section-2-font .col-sm-4,
    .institute-cstm .form-group.row.mb-4 [class*="col-md"],
    .card.show-student .form-group.row.mb-4 [class*="col-md"] {
        flex: 100%;
        width: 100%;
        max-width: calc(100%/3);
    }

    .card.show-student .card-body p,
    .institute-cstm .form-group.row.mb-4 [class*="col-md"] p,
    .card.show-student .form-group.row.mb-4 [class*="col-md"] p {
        font-size: 16px;
    }

    .institute-cstm .card-body,
    .card.show-student .card-body {
        padding: 10px 10px 0;
    }

    .ques-wrapper .fields-ques,
    .edit-test .form-group.row.mb-12 {
        gap: 10px;
    }

    .edit-teacher .form-group.row.mb-4,
    .col-12.ques-wrapper .form-group.row.mb-4,
    .edit-test .form-group.row.mb-4,
    .card.edit-institute .form-group.row.mb-4 {
        margin-bottom: 10px !important;
    }

    .question-left-side-content .over-view-sec,
    .question-right-side-content,
    .edit-teacher [class*="col-md"],
    .row.edit-student .form-group.row.mb-0 [class*="col-md"],
    .col-12.ques-wrapper .form-group.row.mb-0 [class*="col-sm"],
    .form-group.mcq-answer .section-2-font,
    .ques-wrapper .section-2-font.sat-editor1,
    form#question .sat-editor .col-md-7,
    .table-responsive.rubric-table-main,
    .ques-wrapper .col-md-4,
    .editSubadmin .form-group [class*="col-sm"],
    .card.subadmin-cstm .card-body [class*="col-md"],
    .col-12.ques-wrapper,
    .edit-test [class*="col-md"] {
        padding: 0;
    }

    .edit-teacher [class*="col-md"],
    .edit-test [class*="col-md"],
    .edit-institute [class*="col-md"],
    .card.subadmin-cstm .card-body [class*="col-md"],
    .sat-editor [class*="col-md"],
    body .sat-editor .note-editor.note-frame,
    .ques-wrapper [class*="col-md"],
    .card.edit-role .form-group [class*="col-lg"],
    .editSubadmin .form-group [class*="col-sm"],
    .ques-wrapper .sat-editor1 .note-editor.note-frame {
        width: 100%;
        max-width: 100%;
        flex: 100%;
    }

    .card.edit-role .section-title {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .score-sat-pratice {
        padding: 30px 20px;
    }

    table.table.table-striped th,
    table.table.table-striped td {
        font-size: 15px;
    }

    .state.p-success {
        font-size: 17px;
    }
}

@media (max-width: 1199px) {
    .directions-module .directions-info {
        word-break: break-all;
        max-width: 280px;
    }

    .directions-module .directions-info p.large-font {
        min-width: auto;
    }

    .question-work-inner .work-info .type-info ul {
        padding: 0;
    }

    #draggable.expand-increase,
    #reference {
        right: 0;
        left: 0;
        max-width: calc(100% - 80px) !important;
        margin: 0 auto;
    }

    .question-right-side-content,
    .card-body.section-2-font .form-group.row .question-editor {
        width: 100%;
        max-width: 100%;
        flex: 100%;
    }

    .score-data-tabs-sec div#nav-tab {
        width: auto;
    }

    .questions-overview-row ul li {
        max-width: calc(100%/2);
        flex: 100%;
        width: 100%;
    }

    .questions-overview-table {
        max-height: 650px;
    }

    table.table {
        min-width: 100%;
        white-space: nowrap;
    }

    .questions-overview-table a.review-btn {
        min-width: 100px;
    }

    .answer-options-wrapper .correct-answer-explation {
        margin-left: 0 !important;
        font-size: 14px;
        padding: 10px;
        width: 100%;
        max-width: max-content;
    }

    /* 02-11-2023 */
    .show-test-question .tool-tip {
        white-space: initial;
    }

    div#myTab3Content .card-body {
        padding: 0 10px;
    }

    .card.edit-plan label.col-form-label.text-left.col-md-3.col-lg-2 {
        max-width: 80px;
    }

    .question-left-side-content {
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
    }

    .modal-body {
        overflow: visible;
    }

    .section-2-font .single-question-inner-content {
        padding: 0;
    }

    div#question_preview {
        overflow: visible !important;
        padding: 10px;
    }

    .modal-body .module-question-wrapper.section-2-font {
        height: calc(100vh - 370px);
        overflow-y: auto;
        padding-right: 10px;
    }

    .question-left-side-content .over-view-sec {
        padding-bottom: 20px;
    }

    .over-view-sec,
    .single-question-inner-content {
        overflow: inherit !important;
        height: auto !important;
    }

    .question-left-side-content {
        width: 100%;
        max-width: 100%;
        margin-bottom: 30px;
        border-right: 0;
        padding-right: 0;
        border-bottom: 4px solid #D9D9D9;
    }

    .module-question-wrapper {
        height: 100%;
        padding-bottom: 140px !important;
    }

    .card.edit-test .col-sm-4 {
        max-width: 390px;
    }

    .ques-wrapper .col-sm-4.col-md-4 {
        max-width: 100%;
    }

    .questions-overview-row ul {
        gap: 30px 0px;
    }

    div#dynamicContent {
        /* height: calc(100vh - 200px); */
        height: unset;
        overflow-y: auto;
    }

    .text-ques-popup-wrapper .test-ques-content {
        overflow-y: auto !important;
        /* height: inherit; */
        height: 60vh;
        min-height: 420px;
    }

    .container.score-se .row .col-md-4 {
        max-width: 390px;
        width: 100%;
        flex: 100%;
    }

    .container.score-se .row .col-md-8 {
        max-width: calc(100% - 390px);
        width: 100%;
        flex: 100%;
    }

    .reading-writing-score p {
        font-size: 14px;
    }

    .test-total-score-row .reading-writing-score h6 {
        margin: 0;
        font-size: 14px;
    }

    .test-total-score-row .reading-writing-score span {
        font-size: 12px;
        padding-left: 5px;
        line-height: normal;
    }

    .totle-score-flex {
        gap: 5px;
    }

    .score-sat-pratice {
        border-right: 30px solid #EAEAEA;
    }

    .test-total-score-row ul {
        gap: 10px;
    }

    .test-total-score-row ul li {
        max-width: calc(100%/2 - 5px);
        width: 100%;
        flex: 100%;
    }

    .reading-writing-score {
        min-width: auto;
        max-width: 100%;
    }

    .totle-score-flex h3 {
        font-size: 18px;
    }

    .test-total-score-row {
        padding: 20px 0 0;
        margin-top: 20px;
    }

    div#save-exit-popup .modal-dialog {
        max-width: 90vw;
    }
}

@media (max-width: 1023px) {
    .text-data-holder {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 10px;
    }

    .text-data-holder p,
    .text-data-head {
        font-size: 15px;
    }

    .questions-overview-row ul {
        gap: 0;
    }

    .questions-overview-row ul li:not(:nth-last-child(-n+2)) {
        border-bottom: 1px solid #ddd;
    }

    .questions-overview-row ul li {
        border: none;
    }

    .questions-overview-row ul li:nth-child(2n+1) {
        border-right: 1px solid #ddd;
    }

    .questions-overview-row ul li {
        padding: 10px;
    }

    div#save-exit-popup .modal-dialog {
        max-width: 95vw;
    }

    .question-overview-icon {
        max-width: 45px;
        width: 100%;
    }

    .question-overview-content-info {
        max-width: calc(100% - 50px);
        width: 100%;
        padding-left: 20px;
    }

    .modal-body {
        padding: 20px;
    }

    .score-sat-pratice-row {
        margin: 0;
    }

    .test-score-main-section .row [class*="col-sm"]:not(:last-child) .score-sat-pratice-row {
        margin: 0 0 50px;
    }
}

@media (max-width: 767px) {
    main.main .container.score-se .row :where(.col-md-8, .col-md-4) {
        max-width: 100%;
        width: 100%;
    }

    .container.score-se .test-score-main-section {
        margin-bottom: 10px;
        margin-top: 0;
    }

    .container.score-se .test-score-main-section .heading {
        margin-bottom: 0;
    }

    .container.score-se .text-data-wrapper {
        gap: 10px;
        margin-top: 10px;
        justify-content: flex-start;
    }

    .test-score-main-section.score-details-main h4 {
        font-size: 18px;
    }
}

.create-account-inputs {
    width: 100%;
}

.list-no-record {
    background: #fff;
    padding: 10px !important;
    text-align: center;
}

.class-no-record {
    background: #fff;
    padding: 10px !important;
    text-align: center;
    margin: 0 auto;
}

td.list-no-record {
    text-align: center !important;
}

.login-main-section.edit-profile-main .checkbox-form-row p {
    width: auto;
}

.login-main-section.edit-profile-main .checkbox-form-row {
    column-gap: 1rem;
    row-gap: 1rem;
    flex-wrap: wrap;
}

.satprep_hubNext_screen .purchase-tokens-container {
    padding: 1rem;

}



.payment-model .modal-dialog {
    max-width: 800px;
}

.payment-model .purchase-tokens-info {
    display: flex;
    flex-direction: column;
    margin: 0;
}

.payment-model .purchase-tokens-left-sec {
    width: 100%;
    padding: 0 10px 0 0px;
}

.payment-model .purchase-tokens-right-sec {
    width: 100%;
    padding: 0px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.payment-model .token-summary {
    width: 100%;
}

.payment-model .payment-details {
    margin-top: 0px;
    width: 100%;
}

.payment-model .payment-details button.btn.primary-btn {
    float: right;
    padding: 10px 30px;
}

.payment-model .payment-details .form-group .formfield .form-control {
    padding: 0.9rem 0.75rem;
}

.payment-model .plan-token label.form-check-label {
    padding: 10px 32px;
}

.payment-model .modal-body {
    padding: 15px 28px;
}

.txt-data-inner {
    display: flex;
    gap: 20px;
}

.form-with-icon {
    position: relative;
}



.blog-content-page .search-blog .search-input input {
    max-width: 500px;
    min-height: 48px;
    background-color: #ffffff2b;
    border-radius: 15px;
    border: 0;
    width: 100%;
    padding: 5px 50px 5px 10px;
    color: #000;
    margin-top: 3%;
    box-shadow: 1px 1px 14px -7px #00000091 !important;
}

.blog-content-page .search-blog .search-input {
    position: relative;
}

.blog-content-page .search-blog .search-cross-icon {
    position: absolute;
}

.blog-content-page .search-blog .search-input {
    position: relative;
    max-width: 500px;
    margin: 0 auto;
}

.blog-content-page .search-blog .search-cross-icon {
    position: absolute;
    top: 50%;
    /* transform: translateY(-50%); */
    right: 20px;
}

.search-cross-icon a {
    color: #000;
}

.blog-content-date {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.blog-content-date p {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 15em;
    line-height: 1.5;
}

.blog-search-btn {
    position: absolute;
    right: -95px;
    top: 18px;
}



.help-tooltip {
    position: relative;
    transform: translateZ(0);
    /* webkit flicker fix */
    -webkit-font-smoothing: antialiased;
    /* webkit text rendering fix */
    display: inline-block;
}

.help-tooltip .tooltip p {
    color: #000;
    font-size: 12px;
    line-height: 14px;
}

.help-tooltip .tooltip {
    background: #fff;
    bottom: 100%;
    border-radius: 8px;
    color: #fff;
    display: block;
    left: -90px;
    margin-bottom: 15px;
    opacity: 0;
    padding: 10px;
    pointer-events: none;
    position: absolute;
    width: 100%;
    min-width: 250px;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}

/* This bridges the gap so you can mouse into the tooltip without it disappearing */
.help-tooltip .tooltip:before {
    bottom: -20px;
    content: " ";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%;
}

/* CSS Triangles - see Trevor's post */
.help-tooltip .tooltip:after {
    border-left: solid transparent 10px;
    border-right: solid transparent 10px;
    border-top: solid #f2f2f2 10px;
    bottom: 18px;
    content: " ";
    height: 0;
    transform: rotate(89deg);
    left: 0px;
    margin-left: -13px;
    position: absolute;
    width: 0;
}

.help-tooltip:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    width: 100%;
    transform: translateY(51px) translateX(120px);
    width: 100%;
    min-width: 353px;
    background-color: #fff;
}

.students-table-row table tr th {
    opacity: 1 !important;
    color: #0000007a !important;
}

/* IE can just show/hide with no transition */
.help-tooltip .lte8 .wrapper .tooltip {
    display: none;
}

.help-tooltip .lte8 .wrapper:hover .tooltip {
    display: block;
}


.info-tooltip {
    position: absolute;
    right: 4px;
    top: -4px;
}

.info-tooltip .help-tooltip {
    position: relative;
    transform: translateZ(0);
    /* webkit flicker fix */
    -webkit-font-smoothing: antialiased;
    /* webkit text rendering fix */
    display: inline-block;
}

.info-tooltip .tooltip p {
    color: #000;
    font-size: 12px;
    line-height: 14px;
}

.info-tooltip .tooltip {
    background: #fff;
    bottom: 100%;
    border-radius: 8px;
    color: #fff;
    display: block;
    left: -99px;
    margin-bottom: 15px;
    opacity: 0;
    padding: 10px;
    pointer-events: none;
    position: absolute;
    width: 100%;
    min-width: 250px;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}

/* This bridges the gap so you can mouse into the tooltip without it disappearing */
.info-tooltip .tooltip:before {
    bottom: -20px;
    content: " ";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%;
}

/* CSS Triangles - see Trevor's post */
.info-tooltip .tooltip:after {
    border-left: solid transparent 10px;
    border-right: solid transparent 10px;
    border-top: solid #fff 10px;
    bottom: -10px;
    content: " ";
    height: 0;
    left: 44%;
    margin-left: -13px;
    position: absolute;
    width: 0;
}


.info-tooltip:hover .tooltip {
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    width: 100%;
    transform: translateY(10px);
    width: 100%;
    /* min-width: 353px; */
    background-color: #fff;
}

/* IE can just show/hide with no transition */
.info-tooltip .lte8 .wrapper .tooltip {
    display: none;
}

.info-tooltip .lte8 .wrapper:hover .tooltip {
    display: block;
}

.student-performance-table table {
    border-collapse: separate;
    border-spacing: 0 0;
    padding: 30px;
    margin: 0px;
    padding-top: 0;
}

/* .student-performance-table table.table th {
    background: transparent !important;
    border: none;
    color: #383D56;
    opacity: 0.6;
    font-size: 16px;
    text-align: left;
} */
.student-performance-table table.table th {
    background: transparent !important;
    border: none;
    color: #000000 !important;
    font-size: 16px;
    text-align: left;
}

.student-performance-table table.table tbody tr {
    background: #fff;
    /* box-shadow: 1px 17px 44px 0px rgba(3, 2, 41, 0.07); */
}

.student-performance-table table.table td {
    text-align: left;
    border: none;
    position: relative;
    vertical-align: middle;
    font-family: var(--font-medium);
    border: none !important;
}

.student-performance-table {
    padding: 50px 0;
}

.student-performance-table h3 {
    font-size: 25px;
    line-height: 30px;
    margin-bottom: 10px;
}

.student-performance-table h5 {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 10px;
}

.student-performance-table .performance-btn {
    text-align: right !important;
}

.sd-right-content .performance-btn {
    text-align: right !important;
}

.student-performance-table .performance-btn a {
    min-height: 46px;
    font-size: 14px;
    padding: 10px 23px;
}

.performance-submit-btn {
    min-height: 52px;
    font-size: 14px;
    padding: 14px 13px;
    height: 39px;
    width: 115px;
    margin-bottom: 10px;
}

.student-performance-topic-focus {
    border: none;
    border-bottom: 3px solid transparent;
    color: #252934;
    font-size: 15px;
    font-family: var(--font-semibold);
    padding: 10px 20px;
    margin: 0;
    line-height: 20px;
}

/* .student-performance-topic-focus:hover{
    color: #252934;
    text-decoration: none;
 } */




/****** multi select div css *******/
/* Custom Multi Select */
.modal-box-selct {
    width: 100%;
    max-width: 300px;
}

.sd-multiSelect {
    position: relative;
}

.sd-multiSelect .placeholder {
    opacity: 1;
    background-color: transparent;
    cursor: pointer;
}

.sd-multiSelect .ms-offscreen {
    height: 1px;
    width: 1px;
    opacity: 0;
    overflow: hidden;
    display: none;
}

.sd-multiSelect .sd-CustomSelect {
    width: 100% !important;
    min-width: 240px;
}

.sd-multiSelect .ms-choice {
    position: relative;
    text-align: left !important;
    width: 100%;
    border: 1px solid #e3e3e3;
    background: #ffff;
    box-shadow: none;
    font-size: 15px;
    height: 44px;
    font-weight: 500;
    color: #212529;
    line-height: 1.5;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    border-radius: 13px 13px;
}

.sd-multiSelect .ms-choice:after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(9px);
    font-size: 18px;
    border-left: 1px solid #000;
    width: 8px;
    height: 8px;
    background: transparent;
    border-top: 1px solid #000;
    rotate: 225deg;
}

.sd-multiSelect .ms-choice:focus {
    border-color: var(--theme-color);
}

.sd-multiSelect .ms-drop.bottom {
    display: none;
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 10px;
    position: absolute;
    width: 100%;
    z-index: 9;
    border-radius: 10px 10px;
    overflow: auto;
}

.sd-multiSelect .ms-drop li {
    position: relative;
    margin-bottom: 10px;
}

.sd-multiSelect .ms-drop li input[type="checkbox"] {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.sd-multiSelect .ms-drop li label {
    cursor: pointer;
    user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    -webkit-user-select: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.sd-multiSelect .ms-drop li label:before {
    content: "";
    -webkit-appearance: none;
    background-color: #d0d0d0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05),
        inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
    padding: 8px;
    display: inline-block;
    position: relative;
    vertical-align: middle;
    cursor: pointer;
    margin-right: 5px;
    border-radius: 50%;
}

.sd-multiSelect .ms-drop li input:checked+span:after {
    content: "";
    display: block;
    position: absolute;
    top: 8px;
    left: 4px;
    width: 8px;
    height: 8px;
    background: #324dc7;
    border-width: 0 2px 2px 0;
    border-radius: 50%;
}

.student-performance-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 10px;
}

.sd-multiSelect-inner {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    align-items: center;
}

.performance-submit-btn {
    margin-top: 12px;
}

.student-performance-table table tbody tr td {
    color: #555759 !important;
}

.ms-choice span {
    padding-right: 40px;
}

.student-performance-table table {
    min-width: 1200px;
}

.student-performance-table {
    overflow-x: auto;
}

a.ui-datepicker-next.ui-corner-all {
    background-image: url(../../img/calender/greather-than.svg) !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
}

a.ui-datepicker-prev.ui-corner-all {
    background-image: url(../../img/calender/less-than.svg) !important;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px;
}

.blog-detailPage-content p span {
    font-size: 19px !important;
    font-family: 'times new roman' !important;
}

.student-performance-table table tr td,
.student-performance-table table tr:nth-child(2) th {
    padding: 4px 20px;
}

.student-performance-table table tr td {
    font-size: 16px;
}

.student-performance-nav {
    padding: 10px 0px;
}

.score-data-tabs-sec nav {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    /* border-bottom: 1px solid #C3C3C3; */
}





.select-dropdow-box {
    border: 1px solid #000;
    text-align: left !important;
    width: 107%;
    border: 1px solid #e3e3e3;
    background: #ffff;
    box-shadow: none;
    font-size: 15px;
    height: 44px;
    font-weight: 500;
    color: #212529;
    line-height: 1.5;
    border-radius: 13px;
    padding: 10px 10px;
    position: relative;
    cursor: pointer;
}

.select-dropdow-box:after {
    content: "";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(9px);
    font-size: 18px;
    border-left: 1px solid #000;
    width: 8px;
    height: 8px;
    background: transparent;
    border-top: 1px solid #000;
    rotate: 225deg;
}

.custm-dropdown-menu {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 10px;
    position: absolute;
    width: 107%;
    z-index: 9;
    border-radius: 10px 10px;
    overflow: auto;
    display: none;
    max-height: 200px;
}

.custm-dropdown-menu.open {
    display: block;
}

.custm-dropdown-wrapper label {
    text-align: left;
    width: 100%;
}

.dropdown-test-list {
    text-align: left;
    display: flex;
    gap: 5px;
    align-items: center;
}

.dropdown-test-list label {
    margin: 0;
}

.perfomance-test-list {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr);
    /* max-height: 284px; */
    overflow: auto;
    padding: 10px;
}

.btn-box-outer {
    display: flex;
    justify-content: end;
}

.perfomance-test-outer {
    padding: 40px 0;
    /* max-width: 1315px; */
    margin: 0 auto;
}

.sat-pratice input[type=checkbox] {
    /* Double-sized Checkboxes */
    -ms-transform: scale(1.5);
    /* IE */
    -moz-transform: scale(1.5);
    /* FF */
    -webkit-transform: scale(1.5);
    /* Safari and Chrome */
    -o-transform: scale(1.5);
    /* Opera */
    transform: scale(1.5);
    padding: 10px;
}

/* .perfomance-test-outer-card {
    background-color: #fff;
    padding: 20px 40px;
    border-radius: 20px;
} */
/* .performance-row-data {
    margin-bottom: 20px;
} */
.performance-row-data {
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
}

.student-performance-data table {
    border-collapse: collapse;
}

.student-performance-table .student-performance-data table.table td {
    border: 1px solid !important;
}

.student-performance-data {
    padding: 30px;
    background: #FFFFFF;
    border-radius: 10px;
    max-width: 1150px;
    margin: 0 auto;
}

.student-performance-data .student-performance-content {
    flex-direction: column;
}

.student-performance-data .student-performance-table h3,
.performance-row-data {
    margin-bottom: 0;
}

.student-performance-table .table-bordered>:not(caption)>* {
    .table-bordered>: not(caption)>*;
    border-width: 0px !important;
}

/* .btn-box-outer {
    position: fixed;
    z-index: 99;
    right: 120px;
    bottom: 20px;
} */
.test-name-data {
    max-width: 734px;
}

a.btn.primary-btn.student-token-btn {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 15px;
}

.practice-test-row .token-row input::placeholder {
    color: #4d4b4baf;
}




.annotation-tools {
    background: white;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 100px;
    padding: 0;
    width: fit-content;
}

.tool-button {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #000000;
    background: white;
    margin: 0 2px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tool-button:hover {
    background: #f8f9fa;
}

.highlight-yellow {
    background: #fff3cd;
}

.highlight-blue {
    background: #cfe2ff;
}

.highlight-pink {
    background: #f8d7da;
}

.tools-container {
    display: flex;
    gap: 0.25rem;
    justify-content: center;
    padding: 0.5rem;
}



.underline-option {
    display: block;
    width: 100%;
    padding: 5px;
    border: none;
    background: none;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
}

.question-left-side-content:has(.annotation-text-show-bx) {
    display: flex;
    padding-right: 0;
}

.annotation-text-show-bx {
    min-width: 200px;
    border-left: 1px solid #d9d9d9;
    background: #eee;
    position: relative;
    transition: all 0.4s ease;
}

.annotation-text-show-bx-inner {
    height: calc(100vh - 263px);
    padding: 30px 10px;
    overflow: auto;
}

.annotation-text-show-bx.closer-annotation-text-show-bx {
    min-width: 10px;
    /* min-width: 0px; */
}

.annotation-text-show-bx.closer-annotation-text-show-bx .annotation-side-close > i{
    transform: rotate(180deg);
}

.annotation-text-show-bx.closer-annotation-text-show-bx .annotation-text-show-bx-inner {
    display: none;
}

.annotation-text-show {
    background: #fff;
    border: 1px solid #000;
    border-radius: 5px;
}

.annotation-side-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 8px;
    background: #324dc726;
    border-radius: 10px 10px 0px 0px;
    max-height: 35px;
}

.annotation-side-footer {
    padding: 8px 8px;

}

.annotation-iput-bx input {
    font-size: 16px;
    padding: 0;
    border: unset;
}

.annotation-iput-bx {
    overflow: hidden;
}

.btn-side-del-btn {
    background: transparent;
    border: unset;
    display: flex;
    align-items: center;
    justify-content: center;
}

.annotation-text-show+.annotation-text-show {
    margin-top: 15px;
}

/*
* 01-11-2023
*/
.annotation-tools {
    display: none;
    position: absolute;
    z-index: 1000;
}

.tools-container {
    display: flex;
    gap: 5px;
    align-items: center;
}

.tool-button {
    width: 30px;
    height: 24px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
}

.tool-button:hover {
    background-color: #f0f0f0;
}

.color-select {
    width: 33px;
    height: 33px;
    border: 1px solid #6b6b6b;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.color-select svg {
    transition: all 0.2s ease;
    opacity: 0;
}

.color-select:hover svg,
.color-select.already_hovered svg {
    opacity: 1;
}

.tool-button {
    height: 33px;
    width: 33px;
    border: 1px solid #6b6b6b;
    padding: 7px;
}

.color-select:hover {
    border-color: #999;
}

.color-select[data-color="#fffad7"] {
    background-color: #fffad7;
}

.color-select[data-color="#e7f5ff"] {
    background-color: #e7f5ff;
}

.color-select[data-color="#ffe5f8"] {
    background-color: #ffe5f8;
}

.underline-dropdown {
    position: relative;
    display: inline-block;
}

.annotation-tools .dropdown-menu {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 100px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 5px 0;
    z-index: 1001;
}

.annotation-tools .dropdown-menu.show {
    display: block;
}

.underline-dropdown a {
    position: relative;
    padding-right: 10px;
}

.underline-dropdown a::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.5581 1.05811C4.80225 0.813965 5.19873 0.813965 5.44287 1.05811L9.19287 4.80811C9.43701 5.05225 9.43701 5.44873 9.19287 5.69287C8.94873 5.93701 8.55225 5.93701 8.3081 5.69287L4.99951 2.38428L1.69092 5.69092C1.44678 5.93506 1.05029 5.93506 0.806152 5.69092C0.562012 5.44678 0.562012 5.05029 0.806152 4.80615L4.55615 1.05615L4.5581 1.05811Z' fill='black'/%3E%3C/svg%3E%0A");
    position: absolute;
    width: 10px;
    height: 7px;
    right: -2px;
    top: 9px;
    background-repeat: no-repeat;
    transform: rotate(180deg);
}

.underline-dropdown:has(.dropdown-menu.show) a::before {
    transform: rotate(0deg);
}

.underline-dropdown .dropdown-menu li {
    list-style: none;
    padding: 5px 10px;
    cursor: pointer;
    border-left: 2px solid transparent;

}

.section-2-font span div.underline-select {
    font-family: var(--font-semibold) !important;
    font-size: 14px !important;
}

.underline-dropdown .dropdown-menu li:hover {
    background-color: #f0f0f0;
    border-color: #2d2d2d;
}

.underline-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 5px 10px;
    cursor: pointer;
}

.underline-option[data-underline="solid"] {
    text-decoration: underline solid;
}

.underline-option[data-underline="dashed"] {
    text-decoration: underline dashed;
}

.high-not-bx:hover {
    background: #f0f0f0;
}

.underline-option[data-underline="dotted"] {
    text-decoration: underline dotted;
}

.annotation-side-close {
    position: absolute;
    bottom: 20px;
    background: #000;
    width: 26px;
    color: #FFF;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 0px;
    border-radius: 0px 35px 35px 0;
    opacity: 0.5;
    cursor: pointer;
}

.closer-annotation-text-show-bx .annotation-side-close {
    left: -26px;
    border-radius: 35px 0 0px 35px;
    opacity: 1;
}

.underline-select {
    white-space: nowrap;
    text-align: center;
    padding: 0;
}

.underline-dropdown .dropdown-menu.show {
    padding-left: 0;
    transform: translate(-15px, 38px) !important;
    min-width: 58px;
    border-radius: 0 0 13px 13px;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.1);
    padding: 0;
}

.show-keypad {
    display: flex;
    align-items: center;
    gap: 5px;
    background: #000;
    color: #fff;
    border-radius: 100px;
    padding: 2px 10px;
    font-family: var(--font-semibold);
    font-size: 15px;
}

/* 
 Keypad css starts 
*/
/* =================== cal-keyboard-box ============================== */

.calculator-keyboard {
    background-color: #fff;
    max-width: 400px;
    padding: 0px;
    border-radius: 0;
}

button.cal-key-btns svg {
    max-height: 20px;
}

button.cal-key-btns {
    border: 0;
    width: 100%;
    font-weight: 600;
    min-height: 36px;
    border-radius: 5px;
    padding: 5px;
    font-size: 22px;
    display: flex;
    line-height: 1;
    background-color: #fff;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.11) 0px 3px 6px, rgba(0, 0, 0, 0.1) 0px 3px 6px;
    align-items: center;
    justify-content: center;

    &:focus {
        box-shadow: 1px 2px 6px 4px #ddd !important;
    }

    &:hover {
        box-shadow: 1px 2px 6px 0px #ddd;
    }
}

/* =================== cal-keyboard-box ============================== */

/* 
 keypad css ends
*/

.yellow-highlighter {
    background-color: #fff1915e !important;
}

.blue-highlighter {
    background-color: #b4dfff52 !important;
}

.pink-highlighter {
    background-color: #ff9de563 !important;
}

/*
Hover color for highlighter 
*/
.yellow-highlighter:hover {
    background-color: #FFE898 !important;
}

.blue-highlighter:hover {
    background-color: #B4DFFF !important;
}

.pink-highlighter:hover {
    background-color: #FECFF2 !important;
}

.color-select:hover {
    width: 33px;
    height: 33px;
    border: 2px solid #6b6b6b;
    border-radius: 59%;
    cursor: pointer;
}

.already_hovered {
    width: 33px;
    height: 33px;
    border: 2px solid #6b6b6b;
    border-radius: 59%;
    cursor: pointer;
}

.module-question-wrapper.activated_highlighter span {
    cursor: url("data:image/svg+xml,%3Csvg width='23' height='18' viewBox='0 0 23 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M15.3921 12.9474L15.9592 12.1787L22.2591 3.63817L18.2779 0L10.4745 7.16657L9.77242 7.81139L9.77201 7.81101L9.52162 8.53045L8.46848 11.5565L11.639 14.4537L14.6712 13.2362L15.3916 12.9469L15.3921 12.9474ZM11.1785 7.80989L15.254 11.5343L20.9869 3.7625L18.2795 1.28838L11.1785 7.80989ZM5.70229 15.2827C5.68326 15.2333 5.67266 15.1822 5.67033 15.1309C5.66474 15.0063 5.7078 14.8822 5.79502 14.7869L8.32994 11.6473L11.8592 14.8724L10.6315 15.7978C10.531 15.9079 10.385 15.9646 10.2365 15.9515L6.10576 15.5856C5.9246 15.5696 5.7683 15.4521 5.70229 15.2827ZM11.7864 13.6402L14.0977 12.7121L10.084 9.04433L9.28121 11.3509L11.7864 13.6402ZM8.98968e-07 1.45876C0.000523894 1.73442 0.224427 1.95748 0.500086 1.95696L2.05197 1.95601L2.06396 8.30552H1.76985C1.47914 8.30552 1.24347 8.54119 1.24347 8.8319V8.99139C1.24347 9.2821 1.47914 9.51776 1.76985 9.51776H2.06625L2.08036 16.9968L0.528474 16.9977C0.252816 16.9982 0.0297564 17.2221 0.0302766 17.4978C0.0307969 17.7734 0.2547 17.9965 0.530359 17.996L5.63242 17.9922C5.90807 17.9917 6.13113 17.7678 6.13061 17.4921C6.13009 17.2165 5.90619 16.9934 5.63053 16.9939L4.07864 16.9949L4.06453 9.51776H4.35382C4.64453 9.51776 4.8802 9.2821 4.8802 8.99139V8.8319C4.8802 8.54119 4.64453 8.30552 4.35382 8.30552H4.06224L4.05025 1.95413L5.60214 1.95319C5.8778 1.95267 6.10086 1.72877 6.10034 1.45311C6.09982 1.17745 5.87592 0.954389 5.60026 0.954909L0.498201 0.958676C0.222543 0.959196 -0.000516698 1.1831 8.98968e-07 1.45876Z' fill='black'/%3E%3C/svg%3E%0A"), text;
}

    .annotation-text-show {
        position: relative;
        border-radius: 10px;
        overflow: hidden;
    }

.confirmation-wrapper {
    background-color: rgba(0,0,0,0.85);
    padding: 0.75rem 1rem;
    /* border-radius: 10px; */
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
}

.confirmation-wrapper h5 {
    color: #fff !important;
    font-size: medium !important;
    margin-bottom: 15px;
}

.confirmation-wrapper .btn {
    border: 2.5px solid transparent;
    border-radius: 40px !important;
    color: #fff !important;
    padding: 4px 10px;
}

.confirmation-wrapper .btn:hover{
    border-color: #fff;
    text-decoration: underline !important;
}
.confirmation-wrapper .btn.hover-effect {
    border-color: #fff;
    text-decoration: underline !important;
}

.high-not-bx:hover {
    background: #f0f0f0;
    border-bottom: 2px solid #000;
}

.high-not-bx.activated_highlighter {
    background: #f0f0f0;
    border-bottom: 2px solid #000 !important;
}

/* .high-not-bx.activated_highlighter{
    cursor: url(../../img/highlighter_pen.svg), auto;
} */

/* .annotation-text-show-bx:not(.annotation-text-show)  {
    min-width: 10px;
}
.annotation-text-show-bx:has(.annotation-text-show)  {
    min-width: 200px;

}
.annotation-text-show-bx:not(.annotation-text-show) .annotation-side-close{
    display: none;
}

.annotation-text-show-bx:has(.annotation-text-show)  .annotation-side-close{
    display:block;
}
 */
.close-keypad {
    cursor: pointer !important;
}

.annotation-side-head.note h3 {
    font-size: 14px !important;
    font-weight: 600;

}

textarea.custom_notes {
    width: -webkit-fill-available !important;
    height: auto !important;
    border: 0px !important;
    max-width: fit-content !important;
}

textarea.custom_notes:focus-visible {
    border: 0px !important;
}

textarea.custom_notes:active {
    border: 0px !important;
}
textarea.custom_notes:focus {
    border: 0px !important;
}

textarea.custom_notes:active {
    border: 0px !important;
}
    
/* .dashed-underline {
    position: relative !important;
    padding-bottom: 2px !important; 
}

.dashed-underline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    width: auto;
    height: 1.5px;
    padding-left: 50% !important;
    padding-right: 50%!important;
    background-image: linear-gradient(to right, black 50%, transparent 0%);
    background-size: 8px 3px !important;
    align-items: center;
    background-repeat: repeat-x;
    margin-left: 3px;
    margin-right: 3px;
} */

.dashed-underline {
    display: inline-block;
    position: relative;
}

.dashed-underline::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px; 
    width: 100%;
    height: 2px; 
    background: repeating-linear-gradient(90deg, black 0px, black 8px, transparent 8px, transparent 14px);
}


.dotted-underline {
    position: relative !important;
    padding-bottom: 2px !important; 
}

.dotted-underline::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px; /* Adjust position */
    width: auto;
    height: 1px; /* Thickness of the underline */
    padding-left: 1px !important;
    padding-right: 1px !important;
    background-image: linear-gradient(to right, black 50%, transparent 50%);
    background-size: 2px 3px !important; /* Dash size */
    align-items: center;
    border-radius: 50% !;
    background-repeat: repeat-x;
}

.solid-underline {
    text-decoration: underline 2px !important;
    text-underline-offset: 3px; 
}

.custom-design-center{
    position: absolute;
    top: 56%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0 12px;
}

.question-left-side-content .over-view-sec{
    width: 100%;
}