:root {

    --primary-color: #068667;
    /* Pink */
    --secondary-color: #030749;
    /* Dark Blue */
    --alternate-color: #b3afbf;
    /* Light Gray */
    --alternate-primary-color: #FFF7F2;
    /* Light pink */
    --primary-background: #068667;
    /* Dark Pink */
    --secondary-background: #f8f7f8;
    /* Light Gray */
    --alternate-background: #ECFBEC;
    /* Dark Gray */
    --alternate-primary-background: #004A3D;
    /* Dark Pink */
    --white-color: #fff;
    /* White */
    --light-primary-color: #FFDDC4;
    --light-orange: #FF7043;
    --light-gray: #BFBDBD;
    --dark-orange: #FF5915;
    --red: #D40303;

    --orange-rgb: 255, 165, 5;

}

@font-face {
    font-family: "Modernist Regular";
    src: url('../fonts/Sk-Modernist-Regular.otf');
}

@font-face {
    font-family: "Modernist Bold";
    src: url('../fonts/Sk-Modernist-Bold.woff');
}

@font-face {
    font-family: "Manrope Extrabold";
    src: url('../fonts/Manrope-ExtraBold.otf');
}

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

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

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

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

body {
    font-family: "Manrope Regular" !important;
    font-size: 20px;
    background-color: #f7f7f7;
}

.sidenav .nav-item .nav-link-title {
    font-family: "Manrope medium" !important;
}

.manrope-medium {
    font-family: "Manrope Medium";
}

.manrope-semibold {
    font-family: "Manrope Semibold";
}

.manrope-bold {
    font-family: "Manrope Bold";
}

.manrope-extrabold {
    font-family: "Manrope Extrabold";
}

.modernist-regular {
    font-family: "Modernist Regular";
}

.modernist-bold {
    font-family: "Modernist Bold";
}

.text-light-orange {
    color: var(--light-orange);
}

.text-dark-orange {
    color: var(--dark-orange);
}

.text-red {
    color: var(--red);
}

.text-light-gray {
    color: var(--light-gray);
}

.text-dark-gray {
    color: #898989;
}

.text-dark-blue {
    color: #091B3D;
    line-height: 27px;
}

.subject {
    padding: 5px 14px;
    transition: all 2s;
}

.subject span {
    color: #000000;
    font-family: "Manrope Semibold";
    line-height: 27px;
    transition: all 2s;
}

.bootbox-close-button {
    background-color: transparent;
    display: none !important;
}

.subject-active {
    background-color: #FFFFFF !important;
    border-radius: 10px !important;
    transition: all 1s;
}

.subject-active span {
    color: var(--dark-orange) !important;
    font-family: "Manrope Extrabold" !important;
    transition: all 1s;
}

.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
    color: var(--dark-orange);
    background-color: white;
    border: none;
    border-radius: 10px !important;
}

.nav-tabs .nav-link,
.nav-link {
    border: none;
    line-height: 34px;

}

.nav-pills .nav-link.active,
.nav-pills .show>.nav-link {
    color: var(--dark-orange);
    background-color: #fff;
    padding: 6px 18px;
    border-radius: 12px;
    line-height: 34px;
    font-family: "Manrope Extrabold" !important;
    transition: all 1s;
}

.option {
    width: 34px;
    height: 34px;
    background-color: #000000;
    border-radius: 50%;
    padding: 8px;
    gap: 8px;
}

.option span {
    font-family: "Manrope Bold";
    font-size: 17px;
    line-height: 23.22px;
    text-align: left;
    color: white;
}

.selected-option {
    background-color: #FF7C44 !important;
}

.pointer {
    cursor: pointer;
}

.outline-none {
    outline: none;
}

.input-div {
    position: relative;
    width: 100%;
    border: 1px solid #edebeb;
    border-radius: 16px;
    transition: all 2s;
}

.input-div:focus-within {
    border: 1px solid #dad0d0;
}

.input-label {
    position: absolute;
    left: 20px;
    background-color: #fff;
    top: -9px;
    padding: 0 8px;
    color: #b7b7b7;
    font-size: 12px;
}

.fs-20px {
    font-size: 20px;
    line-height: 28px;
    color: #252525;
}

.custom-checkbox {
    position: relative;
    display: inline-block;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox label {
    position: relative;
    cursor: pointer;
    padding-left: 25px;
    line-height: 20px;
    color: #333;
    user-select: none;
    font-family: "Modernist Bold";
}

.custom-checkbox label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #068667;
    border-radius: 4px;
    background: #fff;
    transition: background-color 0.3s;
}

.custom-checkbox input[type="checkbox"]:checked+label::before {
    background: #068667;
    border-color: #068667;
}

.custom-checkbox label::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    opacity: 0;
    transition: opacity 0.3s;
}

.custom-checkbox input[type="checkbox"]:checked+label::after {
    opacity: 1;
}

header#app_header {
    width: 100% !important;
    height: 5.43rem !important;
    z-index: 100 !important;
    position: fixed !important;
    bottom: 0;
    /* inset-block-start: 1 !important;
    inset-block-end: 0 !important;
    inset-inline: 0 !important; */
    background: var(--alternate-primary-background) !important;
    border-block-end: 1px solid var(--header-border-color) !important;
    transition: all .1s ease !important;
}

.main-header-container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    height: 100% !important;
}

.main-content {
    padding-block-start: 0.75rem !important;
}

.btn-main {
    color: #fff !important;
    background-color: #068667 !important;
    padding: 12px;
    border-radius: 10px;
    font-family: "Manrope Bold";
    width: 100%;
}

.btn-neutral {
    color: #000000 !important;
    background-color: #F2F2F2 !important;
    padding: 14px;
    border-radius: 12px;
    font-family: "Manrope Bold";
    width: 100%;
}

.btn-light-main {
    color: #068667 !important;
    background-color: #0686671F !important;
    padding: 12px;
    border-radius: 10px;
    font-family: "Manrope Semibold";
    width: 100%;
}

.btn-red {
    color: #FF7043 !important;
    background-color: rgba(255, 112, 67, 0.12) !important;
    padding: 12px;
    border-radius: 10px;
}

.btn .btn-white {
    color: black !important;
    background-color: white !important;
}

.btn-main[disabled] {
    color: #fff !important;
    background-color: #068666db !important;
    padding: 12px;
    border-radius: 10px;
    font-family: "Manrope Bold";
    width: 100%;
    pointer-events: none;
}

.bg-main {
    background-color: #068667 !important;
}

.bg-light-main {
    background-color: #abf5e3 !important;
}

.text-main {
    color: #068667 !important;
}

.text-light-main {
    color: #05b488b7 !important;
}

.correct-answer-text {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: white;
    font-family: "Manrope Medium";
}

.offline {
    display: none;
}

/* .wrong-answer {
    background-color: #f44336; 
    color: white;
}

.omitted-answer {
    background-color: #bfbdbd; 
    color: white;
} */


.border-main {
    border-color: #068667 !important;
}

.border.border-orange {
    border: 1px solid rgb(var(--orange-rgb)) !important;
    opacity: 1
}

.bg-table {
    background-color: #F3F6F9 !important;
}

.btn-outline-main {
    color: #068667 !important;
    border: 1px solid #068667 !important;
}

.header-link.active {
    color: #FFE500 !important;
}

.text-nav {
    color: #FFE500 !important;
    font-size: 10.4px !important;
}

small {
    font-size: 10.4px !important;
}

.paragraph {
    padding: .5rem 0;
}

/* .scroll-container {
    overflow-x: auto;
    overflow: hidden;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
} */

.form-card {
    border-radius: 40px;
}

::-webkit-scrollbar {
    display: none;
}

.pt-40px {
    padding-top: 40px;
}

.pb-30px {
    padding-bottom: 30px;
}

.start-38 {
    left: 38%;
}

#carousel_card {
    background-image: url('../images/dashboard-pattern.png') !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}

.pattern-bg {
    background-image: url('../images/dashboard-pattern.png') !important;
    background-repeat: no-repeat !important;
    background-position: center;
    /* background-size: cover; */
}

.rounded-b-70 {
    border-bottom-left-radius: 70px;
    border-bottom-right-radius: 70px;
}

.rounded-t-40 {
    border-top-left-radius: 40px;
    border-top-right-radius: 40px;
}

.radio-wrapper {
    padding: 2px;
    border: 1px solid #6B7280;
    border-radius: 0.5rem;
    font-size: 13.7px;
    font-weight: 600;
    color: #6B7280;
}

.subject-wrapper {
    padding: 2px;
    border: 2px solid #f3f3f3;
    border-radius: 0.5rem;
    font-size: 13.7px;
    font-weight: 600;
    color: #6B7280;
}

.selected-subject {
    border: 2px solid #004A3D !important;
    border-radius: 0.5rem !important;
    font-size: 13.7px;
    font-weight: 800;
    color: #000000;
}

.question-number {
    cursor: pointer;
    padding: 3px 10px;
    border: 0.5px solid #f3f3f3;
    border-radius: 10px;
    font-size: 18px;
}

.active-question {
    background-color: #0686671F !important;
    color: #004A3D !important;
}

.answered-question {
    background-color: #068667;
    color: white;
}

.sbjprogressbg {
    background-color: #D9D9D9;
}

.sbjprogresstext {
    color: #D9D9D9;
}

.sbjprogressborder {
    border: 1px solid #D9D9D9;
}

@keyframes progressAnimation {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

.progress-bar-animated {
    animation: progressAnimation 1s linear infinite;
}


@keyframes fadeInOut {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0;
    }
}

.loading-animation {
    animation: fadeInOut 4.5s infinite;
}

.floating-timer {
    position: fixed;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #FFA500;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 10px;
    z-index: 1000;
}

.stickyTop {
    position: -webkit-sticky !important;
    position: sticky !important;
    top: 0 !important;
    /* z-index: 105 !important; */
}



@media (max-height: 700px) {
    .pt-40px {
        padding-top: 20px;
    }

    .pb-30px {
        padding-bottom: 15px;
    }

    .start-38 {
        left: 36%;
    }

}

@media (min-width: 320px) and (max-width: 1000px) {
    .form-card {
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    .auth-illustration {
        width: 295px;
        margin-bottom: -10px;
    }
}

@media (max-height: 990px) {
    /* .start-38 {
        left: 42%;
    } */
}