.section-404 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.section-404 h1 {
    font-size: 66px;
    font-weight: bold;
}

.section-404 a {
    text-decoration: none;
    font-size: 18px;
    color: #394ff3;
}

.profile-picture img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}

.notification-block {
    display: flex;
    align-items: center;
    cursor: pointer;
    margin-left: 14px;
}

.profile-picture {
    margin-left: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.swal2-show, .swal2-container {
    z-index: 99999 !important;
}

.btn-back1 {
    padding: 15px 40px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 999px;
    background: #d9d9d9;
    color: #fff;
    font-family: Poppins;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.btn-back1:hover {
    background: #d9d9d9;
    color: #fff;
}

.option-item p {
    margin-bottom: 0 !important;
}

.result-modal h3 {
    color: #394ff3 !important;
    font-size: 20px !important;
}

.result-modal h4 {
    color: #394ff3 !important;
    font-size: 18px !important;
}

@media only screen and (max-width: 991px) {
    .section-404 h1 {
        font-size: 36px;
    }

    .section-404 a {
        font-size: 14px;
    }
}

@media only screen and (max-width: 575px) {
    .section-404 h1 {
        font-size: 24px;
    }

    .section-404 a {
        font-size: 12px;
    }
}

.pagination-class .page-link {
    color: #394ff3 !important;
    background-color: #fff !important;
    width: 33px !important;
    border-color: #394ff3 !important;
}

.pagination-class .active span {
    background-color: #394ff3 !important;
    border-color: #394ff3 !important;
    color: #fff !important;
}

.pagination .page-item.answered-item .page-link {
    background-color: #394ff3;
    color: white;
    border: none;
}

.pagination .page-item.active .page-link {
    background-color: #fff;
    color: #394ff3;
    border: 1px solid #394ff3;
    box-shadow: 0 0 10px rgba(57, 79, 243, 0.7);
}

.pagination .page-item.active.answered-item .page-link {
    background-color: #394ff3;
    color: white;
    border: 1px solid #394ff3;
    box-shadow: 0 0 10px rgba(57, 79, 243, 0.7);
}

.quiz-timer.blue {
    background: #d9e1ee;
    border-radius: 999px;
    padding: 10px;
}

.chatbot-icon {
    z-index: 9;
}

.chatbot.active {
    z-index: 9;
}

.header-logo-img {
    display: block;
    width: 160px
}

.footer-logo-img {
    display: block;
    width: 160px !important;
    height: auto;
}

.login-logo-img {
    width: 240px !important;
    height: auto !important;
}

.platform-metrics .platform-indicators .chart-legends .chart-legend.green::before {
    background-color: #394ff3;
}

.platform-metrics .exam-count .chart-legends .chart-legend.teal::before {
    background-color: #394ff3;
}

.profile-picture-dropdown {
    width: auto !important;
}

.exam-type-select, .exam-type-select:active, .exam-type-select:focus, .exam-type-select:hover {
    background: linear-gradient(45deg, #1525E9, #848CFF);
    font-size: 18px;
    padding: 5px 30px;
}

.exam-type-select option {
    background: #848CFF;
}

.exam-type-select option:hover {
    background: #1525E9;
}

.btn-back, .btn-go-back {
    background: #ff8a0b !important;
}

.page-no-click {
    pointer-events: none;
}

.form-check-input[type=checkbox] {
    border: 1px solid #394ff3 !important;
}

.profile-container-cover, .green-header {
    background: linear-gradient(45deg, #1525E9, #848CFF);
}

.profile-container-cover::before, .green-header::before {
    content: none;
}

.profile-container-cover::after, .green-header::after {
    content: none;
}

.btn-main, .btn-main:hover, .btn-main:active {
    background-color: #394ff3 !important;
    color: #fff !important;
    z-index: 90;
}

.text-main {
    color: #394ff3;
}

.custom-nav-tab .nav-link {
    color: #394ff3;
    font-size: 20px;
    background-color: #d4d4d4;
    white-space: nowrap;
    padding: 5px 30px;
    border-radius: 12px;
    z-index: 1;
    position: relative;
}

.code-text {
    font-size: 16px;
    color: #727376;
}

.custom-nav-tab {
    justify-content: end;
}

.first-nav-item {
    margin-right: -20px;
}

.custom-nav-tab .active {
    background: linear-gradient(45deg, #1525E9, #848CFF);
    color: #fff;
    z-index: 2;
    position: relative;
}

.notification-modal-body {
    padding: 30px 10px !important;
    font-size: 18px;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999999;
    transition: opacity 0.5s ease;
}

.preloader-logo {
    width: 300px;
    opacity: 0.3;
    animation: fadeIn 1.5s ease-in-out infinite alternate;
}

@keyframes fadeIn {
    from {
        opacity: 0.3;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.fa-question-circle {
    font-size: 13px;
    color: #ff8a0b;
}

.sidebar-menu-link p {
    color: #0A104F;
}

.success-rate-content .tab-panel-content .row.chart-legend-row .chart-legend.grey::before, .subjects-statistics-content .chart-legend-row .chart-legend.grey::before {
    background-color: #959595;
}

.analyse-loader {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9;
    background-color: #fff;
    width: 30%;
    height: 160px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 0 10px 0 lightgray;
}

.exam-imagex {
    width: 600px;
}

.add-comment p {
    color: #ff8a0b !important;
}

.left-arrow {
    transform: rotate(180deg);
}

.card-exam-not-found .card-title {
    font-size: 18px !important;
}

.exam-search-input {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.exam-search-input:focus {
    outline: none;
    box-shadow: none;
}

.exam-search-btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-color: #092BC8;
}

.exam-search-btn:hover {
    border-color: #092BC8;
}

.exam-search-btn i {
    color: #092BC8;
}

.exam-search-btn:hover > i {
    color: #fff;
}

@media only screen and (max-width: 991px) {
    .analyse-loader {
        width: 80%;
        height: 120px;
    }

    .analyse-loader .analyse-title {
        font-size: 14px;
    }

    .exam-imagex {
        width: 300px;
    }
}

.anevent-container {
    margin: 30px 0;
}

.green-btn {
    background: linear-gradient(45deg, #68D05F, #09B203) !important;
    border: 1px solid #2DA326;
}

.mr-15 {
    margin-right: 15px;
}

.notification-count {
    background-color: #FF8A09;
    border-radius: 50%;
    outline: 2px solid #fff;
    color: #fff;
    font-size: 9px;
    position: absolute;
    top: 7px;
    right: -3px;
    min-width: 14px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 13px;
    padding: 2px;
}

.mr-3 {
    margin-right: 30px;
}

.mr-1 {
    margin-right: 10px;
}

.parent-btns {
    justify-content: center !important;
    position: relative;
}

.parent-btns .btn-done {
    position: absolute;
    right: 0
}

@media only screen and (max-width: 768px) {
    .exam-flex-btn {
        flex-wrap: wrap;
    }

    .exam-flex-btn .btn-back {
        margin-bottom: 10px;
        margin-right: 0;
    }

    .parent-btns .btn-done {
        position: static;
    }

    .chatbot-icon {
        right: 15px;
    }

    .chatbot {
        right: 5px;
    }
}

.chatbot-messages .chatbot-choices .chatbot-choice-button, .chatbot-message .chatbot-out-message {
    background-color: #ff8a0b;
}

.balance-input {
    border: 1px solid #092BC8;
}

.balance-input:active, .balance-input:hover, .balance-input:focus {
    box-shadow: none;
    border: 1px solid #092BC8;
}

.custom-btn-back {
    background-color: transparent !important;
    color: #092BC8 !important;
    transition: .3s all ease-in-out;
}

.custom-btn-back:hover {
    background-color: #d2d2d2 !important;
}

.custom-btn-next {
    background: linear-gradient(45deg, #1525E9, #848CFF) !important;
    transition: .3s all ease-in-out;
}

.custom-btn-next:hover {
    box-shadow: 0 0 10px 0 #a1a1a1 !important;
}

.blink {
    animation: blinkAnimation 2s infinite;
}

@keyframes blinkAnimation {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: .2;
    }
}

.price-cross img {
    height: 30px !important;
}

.price-cross {
    font-size: 30px;
    position: relative;
    display: inline-block;
}

.price-cross::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -2px;
    width: 100%;
    height: 2px;
    background-color: #092BC8;
    transform: translateY(-50%);
    pointer-events: none;
}

.test-titles-swiper .swiper-slide a {
    border-radius: 20px;
}

.card-premium {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 20px;
    z-index: 9;
}

.green-btn {
    background-color: #1AB813;
}

.sidebar-icon {
    width: 16px;
}

.golden-border {
    border: 2px solid #FFD700;
}

.image-container {
    position: relative;
    display: inline-block;
}

.image-container img {
    width: 20px;
}

.image-container .tooltip {
    visibility: hidden;
    opacity: 0;
    background-color: #ffffff;
    color: #0B3C6B;
    text-align: center;
    padding: 5px 10px;
    border-radius: 4px;
    position: absolute;
    bottom: 100%;
    left: 0;
    transform: translateX(-50%);
    transition: opacity 0.2s;
    white-space: nowrap;
}

.image-container:hover .tooltip {
    visibility: visible;
    opacity: 1;
}

.parent-existing-header-overlay-title {
    text-transform: initial;
}

.instruction-card {
    padding: 15px !important;
}

.package-div {
    border-radius: 20px;
    padding: 10px;
    background-color: #E9EAFE;
    border: 1px solid #E3E2F1;
    margin-bottom: 20px;
    margin-top: 10px;
}

.package-div .radio-div {
    border: 1px solid #E3E2F1;
    background-color: #fff;
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

.package-div input, .package-div label {
    cursor: pointer;
}

.package-div .radio-div:last-child {
    margin-bottom: 0;
}

.balance-label {
    color: #585564;
    font-weight: 500;
}

.active-package {
    background-color: #E9EAFE !important;
    border: 1px solid #b9b2e7 !important;
}

.actual-card-title {
    color: #757575;
    font-weight: 500;
    padding-bottom: 10px;
    border-bottom: 1px solid #b9b2e7;
}

.quiz-container .pagination {
    max-width: 100%;
    overflow: auto;
    padding: 10px 0;
}

.quiz-timer-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.quiz-timer-text {
    margin-bottom: 0;
}

.quiz-timer {
    display: flex;
}

#educationSlider {
    margin-top: 24px;
}

#educationSlider .slider-img {
    width: 100%;
    border-radius: 20px;
}

#educationSlider .carousel-indicators {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0 0 20px 0;
}

.profile-username {
    color: #0B3C6B;
    font-size: 18px;
    line-height: 20px;
    font-weight: 600;
    font-family: Poppins;
}

#educationSlider .carousel-indicators [data-bs-target] {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 4px;
    opacity: 1;
}

#educationSlider .carousel-indicators .active {
    background-color: #333;
}

#educationSlider .carousel-item {
    position: relative;
}

#educationSlider .carousel-inner {
    border-radius: 20px !important;
}

.vent-count-inner .row {
    align-items: end;
}

.vent-count-inner .row .vent-col {
    height: 169px;
}

.orange-vent-col {
    height: 207px !important;
}

.vent-count-inner .row .vent-col .card, .test-titles-swiper .swiper-slide a, .tests-row .card .card-btn {
    background: rgba(11, 46, 202, 0.72);
    color: #fff;
}

.vent-count-inner .row .vent-col .card .card-header .rounded-pill {
    background: none;
    top: 0;
}

.orange-vent-col .card {
    background: #FF9C30 !important;
}

.vent-count-inner .row .vent-col .card .card-body .card-title {
    color: #fff;
    font-size: 36px !important;
    font-weight: 500 !important;
}

.vent-icon-white {
    width: 50px;
    margin-bottom: 10px;
}

.vent-count-inner .row .vent-col .card {
    border-radius: 30px;
}

.vent-count-inner .row .vent-col .card .card-body span {
    font-size: 24px;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
    margin-top: 20px;
}

.profile-container-details-inner {
    position: static;
    align-items: end;
    width: auto;
    transform: none;
}

.profile-container-details-class {
    font-size: 14px;
    line-height: 14px;
}

.profile-title {
    color: #0A104F !important;
}

.profile-inner-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
}

.children-center-dropdown {
    inset: 0 auto auto auto !important;
}

.sidebar-menu-content {
    margin-top: 50px;
    margin-bottom: auto;
}

.header-menu-container {
    flex-direction: row;
    align-items: center;
    width: auto;
}

.profile-header-section {
    width: 100%;
    justify-content: space-between !important;
    align-items: center;
}

.header-menu-container .sidebar-menu-item {
    margin-right: 50px;
}

.header-menu-container .sidebar-menu-item:last-child {
    margin-right: 0;
}

.header-menu-container .active-item {
    border-radius: 0;
    background-color: #fff;
    border-bottom: 3px solid #FF8A0B;
}

.profile-children-dropdown {
    margin-left: auto;
    margin-right: 50px;
}

.sidebar-menu-inner {
    border-right: none;
    background-color: #fff;
}

.sidebar-menu-item.active-item path {
    stroke: none;
}

@media only screen and (max-width: 1300px) {
    .vent-count-inner .row .vent-col {
        height: 140px;
    }

    .orange-vent-col {
        height: 170px !important;
    }

    .vent-count-inner .row .vent-col .card .card-body .card-title {
        font-size: 32px !important;
    }

    .vent-count-inner .row .vent-col .card .card-body span {
        font-size: 18px;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 992px) {
    .main-header .hamburger-menu {
        margin-right: 0;
    }
}

@media only screen and (max-width: 768px) {
    .profile-container-details-class {
        display: block;
    }

    .profile-inner-navigation {
        flex-wrap: nowrap;
    }

    .children-profiles {
        display: block !important;
    }
}

@media only screen and (max-width: 375px) {
    .profile-inner-navigation {
        flex-wrap: wrap;
    }

    .profile-container-details-inner {
        align-items: start;
    }
}

.main-header {
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 99999;
    background-color: #fff;
}

.video-row {
    margin-bottom: 34px;
    row-gap: 20px;
}

.video-card {
    color: white;
    border-radius: 20px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    height: 170px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.video-card .btn {
    background-color: white;
    color: #5f6df5;
    border-radius: 20px;
    font-weight: 500;
    font-size: 14px;
    white-space: nowrap;
    border: 1px solid #1D2BDE;
}

.video-title {
    font-size: 20px;
    font-weight: bold;
    margin-left: 0;
    margin-right: auto;
}

.see-all-video {
    color: #7C8CFF;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    line-height: 31px;
}

.video-main-title {
    margin-bottom: 10px;
}

.single-video-card {
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    background-color: #fff;
    transition: transform 0.2s;
}

.single-video-card:hover {
    transform: translateY(-4px);
}

.single-video-image {
    position: relative;
}

.single-video-image img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

.single-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #99A4F6;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.single-play-button i {
    color: #524B6B;
}

.single-video-content {
    padding: 15px;
}

.single-video-title {
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 8px;
}

.single-video-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.single-btn-details {
    background: linear-gradient(to right, #1525E9, #848CFF);
    color: white;
    font-size: 13px;
    padding: 6px 14px;
    border-radius: 15px;
    border: none;
    text-decoration: none;
    margin-left: auto;
    margin-right: 0;
}

.single-btn-details:hover {
    background-color: #5b52da;
}

.video-input, .video-input i {
    color: #838383;
}

.topic-select-section .select2-container--default .select2-selection--single {
    border-radius: 4px !important;
    background: #fff;
    border: 1px solid #dee2e6;
    width: 100% !important;
    height: 38px !important;
    color: #838383;
    line-height: 38px;
}

.topic-select-section .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #838383;
    line-height: 20px !important;
}

.single-video-row {
    margin-top: 50px;
}

.single-video-row .single-video-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 6px;
}

.video-topic {
    color: #AAA6B9;
    font-size: 16px;
    margin-bottom: 4px;
}

.video-subject {
    color: #AAA6B9;
    font-size: 14px;
}

.single-video-section .video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 40px;
}

.single-video-section .video-thumbnail {
    width: 100%;
    height: auto;
    display: block;
    cursor: pointer;
}

.single-video-section .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #99A4F6;
    color: white;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.single-video-section .play-button i {
    color: #524B6B;
}

.single-video-section .video-element {
    width: 100%;
    height: auto;
    display: none;
}

.landing-header .overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.landing-header .overlay a {
    color: #394ff3;
    background-color: #fff;
}

.plyr--full-ui .plyr__control--overlaid {
    background-color: #394ff3;
    border-radius: 50%;
}

.plyr__progress--played,
.plyr__volume--display {
    background: linear-gradient(to right, #99A4F6, #394ff3);
}

.plyr__menu__list {
    width: 100px;
    padding: 10px;
}

.plyr__menu__item {
    cursor: pointer;
    list-style: none;
}

.text-premium {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 9;
    font-size: 12px;
    color: #394ff3;
    font-weight: 700;
}
