@import url("../../cdn_files/fancybox.css");
@import url("../../cdn_files/toastify.min.css");
@import url("../fontawesome-free-6.1.1-web/css/all.css");
@import url("../intlTelInput/intlTelInput.min.css");
@import url("../css/green-audio-player.min.css");

/*@font-face {*/
/*    font-family: "Bahij_TheSansArabic";*/
/*    src: url("../fonts/Bahij_TheSansArabic-Plain.ttf") format("truetype");*/
/*}*/

@font-face {
    font-family:Simplified Arabic;
    src: url("../../assets_v1/fonts/Simplified-Arabic/simpo.ttf");
}

@font-face {
    font-family:Simplified Arabic Bold;
    src: url("../../assets_v1/fonts/Simplified-Arabic/simpo-bold.ttf");
}
@font-face {
    font-family: "Almarai";
    src: url("../fonts/Almarai/Almarai-Regular.ttf") format("truetype");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: "Almarai";
    src: url("../fonts/Almarai/Almarai-Bold.ttf") format("truetype");
    font-weight: bold;
    font-style: normal;
}

:root {
    --color-theme: #068241;
    --color-theme-rgb: 6, 130, 65;
    --color-dark: #041637;
    --color-lgiht: #777E90;
    --color-yellow: #FFCB57;

    --color-ocean: #16A45C;
    --color-grass: #3dd28d;
    --color-snow: #FFFFFF;
    --color-salmon: #EC2028;
    --color-sun: #feee7d;
    --color-alge: #7999a9;
    --color-flower: #353866;
    --color-smoke: #e4e4e4;
}

/* Override Bootstrap font variable for RTL */
html[dir="rtl"] {
    --bs-font-sans-serif: "Almarai", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

/* Override Bootstrap font variable for LTR */
html[dir="ltr"] {
    --bs-font-sans-serif: "Simplified Arabic", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

.loader {
    position: fixed;
    left: 0px;
    top: 0px;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: url("../img/logo.svg") center center no-repeat #f9f9f9;
    opacity: 1;
    background-size: 50%;
    -webkit-animation: fontbulger 1s infinite;
    animation: fontbulger 1s infinite;
}

h1, h2, h3, h4, h5, h6 {
    /*font-family: "Simplified Arabic", Arial, sans-serif;*/
    font-weight: 800;
}
html, body {
    font-size: 14px;
    line-height: 1.5;
    counter-reset: section;
}
html[dir="ltr"], body[dir="ltr"] ,button{
    font-family: "Simplified Arabic", sans-serif !important;
}
html[dir="rtl"], body[dir="rtl"],button {
    font-family: "Almarai", sans-serif !important;;
}
    a {
    color: var(--color-theme);
    text-decoration: none;
}

a:hover {
    color: var(--color-dark);
    text-decoration: none;
}

section {
    padding: 60px 0;
}

form.disabled {
    pointer-events: none;
    opacity: .75;
}

.btn {
    position: relative;
    display: inline-block;
    box-sizing: border-box;
    border: none;
    padding: 0 16px;
    min-width: 64px;
    height: 46px;
    line-height: 50px;
    border-radius: 20px;
    vertical-align: middle;
    text-align: center;
    text-overflow: ellipsis;
    font-size: 16px;
    overflow: hidden;
    outline: none;
    cursor: pointer;
    transition: box-shadow 0.2s;
}

.btn::-moz-focus-inner {
    border: none;
}

/* Overlay */
.btn::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgb(255, 255, 255);
    opacity: 0;
    transition: opacity 0.2s;
}

/* Ripple */
.btn::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    padding: 50%;
    width: 32px; /* Safari */
    height: 32px; /* Safari */
    background-color: rgb(255, 255, 255);
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
    transition: opacity 1s, transform 0.5s;
}

/* Hover, Focus */
.btn:hover,
.btn:focus {
    /*
    box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
    */
    box-shadow: 0 3px 6px rgb(0, 0, 0, .16);
}

.btn:hover::before {
    opacity: 0.08;
}

.btn:focus::before {
    opacity: 0.24;
}

.btn:hover:focus::before {
    opacity: 0.3;
}

/* Active */
.btn:active {
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.btn:active::after {
    opacity: 0.32;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0s;
}

/* Disabled */
.btn:disabled {
    color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.38);
    background-color: rgba(var(--pure-material-onsurface-rgb, 0, 0, 0), 0.12);
    box-shadow: none;
    cursor: initial;
}

.btn:disabled::before {
    opacity: 0;
}

.btn:disabled::after {
    opacity: 0;
}

.btn-theme {
    background-color: var(--color-theme);
    border-color: var(--color-theme);
    color: #fff !important;
}

.btn-theme:hover,
.btn-theme:focus {
    background-color: var(--color-dark);
    border-color: var(--color-dark);
    color: #fff !important;
}

.text-theme {
    color: var(--color-theme);
}

/*===================================================
    Navbar
===================================================*/

.navbar {
    padding: 40px 0 0;
    width: 100%;
    background-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.navbar .navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: 100px;
    margin: auto;
    background-color: #fff;
    padding: 20px 60px;
    border-radius: 50px;
    box-shadow: 0 4px 0 rgb(var(--color-theme), .43);
    border: 3px solid #DEDEDE;
}

.navbar .navbar-container .navbar-main,
.navbar .navbar-container .navbar-action {
    display: flex;
    align-items: center;
}

.navbar .navbar-container .logo {
    height: 56px;
}

.navbar .navbar-container .logo img {
    height: 56px;
}

.navbar .navbar-container .navbar-nav {
    gap: 30px;
    align-items: center;
}

.navbar .navbar-container .navbar-nav .nav-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    height: 100px;
    color: var(--color-dark);
    text-transform: capitalize;
    transition: all .3s ease;
    white-space: nowrap;
    padding: 0;
}

.navbar .navbar-container .navbar-nav .nav-link:hover,
.navbar .navbar-container .navbar-nav .active .nav-link {
    color: var(--color-theme);
}

.navbar .navbar-container .navbar-nav .nav-link::after {
    position: absolute;
    content: "";
    width: 0;
    height: 3px;
    left: 50%;
    bottom: 0;
    background-color: var(--color-theme);
    transform: translateX(-50%);
    transition: all .3s ease;
}

.navbar .navbar-container .navbar-nav .active .nav-link::after,
.navbar .navbar-container .navbar-nav .nav-link:hover::after {
    width: 100%;
}

.navbar .navbar-container .navbar-nav .btn {
    min-width: 160px;
    height: 45px;
    line-height: 45px;
    padding: 0 1rem;
    text-align: center;
    justify-content: center;
    border-radius: 28px;
    transition: all .3s ease;
}

.navbar .navbar-container .navbar-nav .btn svg [fill] {
    transition: all .3s ease;
}

.navbar .navbar-container .navbar-nav .btn:hover svg [fill] {
    stroke: #fff
}

.navbar .navbar-container .navbar-nav .btn::after {
    display: none;
}

.navbar .navbar-container .navbar-nav .btn:hover,
.navbar .navbar-container .navbar-nav .btn:focus {
    background-color: var(--color-theme);
    border-color: var(--color-theme);
    color: #fff;
}

.navbar .navbar-container .dropdown-toggle {
    font-size: 14px;
    color: #fff;
    font-weight: 400;
    text-transform: capitalize;
}

.navbar .navbar-container .btn-user {
    display: flex;
    align-items: center;
}

.navbar .navbar-container .btn-user .user-name {
    font-size: 14px;
    color: #fff;
    text-transform: capitalize;
}

.navbar .navbar-container .btn-user .icon {
    min-width: 40px;
    width: 40px;
    height: 40px;
    overflow: hidden;
    display: inline-block;
    line-height: 50px;
    border-radius: 50%;
    background-color: var(--color-theme);
    color: #fff;
    font-size: 16px;
    text-align: center;
}

.navbar .navbar-container .btn-user .icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-menu {
    min-width: 220px;
    margin-top: 1rem;
    padding: 2rem 1rem;
    border-color: transparent;
    box-shadow: 10px 10px 30px rgb(var(--color-theme-rgb), .2);
    border-radius: 15px;
    margin-top: 1rem;
}

.dropdown-menu .dropdown-item {
    font-size: 14px;
    line-height: 30px;
}

.dropdown-menu .dropdown-item:hover {
    background-color: transparent;
    color: var(--color-theme);
}

.navbar .navbar-container .navbar-logo .navbar-close {
    color: #002044;
    font-size: 40px;
    width: 50px;
    text-align: center;
}

/*===================================================
   header-slider
===================================================*/

.header {
    position: relative;
    padding-top: 100px;
    background-color: var(--color-theme);
    background-image: url(../img/home-page.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    min-height: 1167px;
}

.intro-box {
    position: relative;
    max-width: 893px;
    width: 100%;
    height: 100vh;
    margin: auto;
    text-align: center;
    color: #fff;
    padding-top: 82px;
}

.intro-box .intro {
    color: var(--color-yellow);
    font-size: 20px;
    font-weight: 300;
    margin-bottom: 20px;
}

.intro-box .title {
    font-size: 65px;
    font-weight: 800;
    margin-bottom: 20px;
}

.intro-box .sub-title {
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 20px;
}

.intro-box .description {
    font-size: 16px;
    font-weight: 200;
    margin-bottom: 50px;
}

.intro-box .btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.intro-box .btns .btn {
    border-radius: 50px;
    min-width: 240px;
    height: 60px;
    line-height: 60px;
    width: 140px;
    font-size: 16px;
    font-weight: 800;
}

.intro-box .btns .btn img {
    margin-inline-end: 1rem;
}

.intro-box .btns .btn.btn-video {
    color: #fff;
}

/*
    .intro-box #timer{
        display: flex;
        justify-content: center;
        gap: 70px;
        margin-top: 50px;
    }
    .intro-box #timer #days,
    .intro-box #timer #hours,
    .intro-box #timer #minutes,
    .intro-box #timer #seconds{
        font-size: 60px;
        font-weight: 800;
        color: var(--color-theme);
    }
    .intro-box #timer span{
        display: block;
        margin-top: 20px;
        font-size: 16px;
        font-weight: 400;
        text-transform: capitalize;
        color: var(--color-dark);
    }
*/
/*
    .header-sub{
        position: relative;
        max-width: 1527px;
        width: 100%;
        height: 250px;
        margin: auto;
        background-image: url(../img/header-sub.png);
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        text-align: center;
        color: var(--color-dark);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 60px;
    }

    .header-sub .title{
        font-size: 20px;
        color: var(--color-theme);
        margin-bottom: 10px;
        font-weight: 400;
    }
    .header-sub .sub-title{
        font-size: 40px;
        color: var(--color-dark);
    }
*/


/*===================================================
    section-title
===================================================*/

.section-title {
    margin-bottom: 40px;
}

.section-title .info {
    color: var(--color-theme);
    font-size: 20px;
    margin-bottom: 10px;
}

.section-title .title {
    color: var(--color-dark);
    font-size: 35px;
    margin-bottom: 0;
}

/*===================================================
    level-section
===================================================*/

.level-section {
    padding: 100px 0;
    position: relative;
}

.level-section .level-vector {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: -1;
}

[dir="ltr"] .level-section .level-vector {
    right: auto;
    left: 0;
    transform: translateY(-50%) scale(-1);
}

.level-card {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    direction: ltr;
    margin-bottom: 60px;
}

.level-card .level-box {
    display: flex;
    align-items: center;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 40px;
    border: 2px solid transparent;
    padding: 5px;
    min-width: 200px;
    transition: all .3s ease;
}

.level-card .level-box .shortcut {
    text-transform: uppercase;
    font-weight: bold;
    width: 50px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    text-align: center;
    margin-inline-end: 1rem;
    font-size: 24px;
    transition: all .3s ease;
}

/*
    nth-child(1)
*/
.level-card .level-box:nth-child(1) {
    color: #DC3545;
    border-color: #DC3545;
}

.level-card .level-box:nth-child(1) .shortcut {
    color: #DC3545;
    background-color: rgb(220, 53, 69, .1);
}

/*
    nth-child(2)
*/
.level-card .level-box:nth-child(2) {
    color: #DCB04C;
    border-color: #DCB04C;
    background-color: rgb(220, 176, 76, .1);
}

.level-card .level-box:nth-child(2) .shortcut {
    color: #DCB04C;
    background-color: rgb(220, 176, 76, .2);
}

/*
    nth-child(3)
*/
.level-card .level-box:nth-child(3) {
    color: #2ECC71;
    border-color: #2ECC71;
    background-color: rgb(46, 204, 113, .1);
}

.level-card .level-box:nth-child(3) .shortcut {
    color: #2ECC71;
    background-color: rgb(46, 204, 113, .2);
}

/*
    nth-child(4)
*/
.level-card .level-box:nth-child(4) {
    color: var(--color-theme);
    border-color: var(--color-theme);
    background-color: rgb(34, 63, 153, .1);
}

.level-card .level-box:nth-child(4) .shortcut {
    color: var(--color-theme);
    background-color: rgb(34, 63, 153, .2);
}

/*
    nth-child(5)
*/
.level-card .level-box:nth-child(5) {
    color: #041637;
    border-color: #041637;
    background-color: rgb(4, 22, 55, .1);
}

.level-card .level-box:nth-child(5) .shortcut {
    color: #041637;
    background-color: rgb(4, 22, 55, .2);
}

/*
    nth-child(6)
*/
.level-card .level-box:nth-child(6) {
    color: #A77A18;
    border-color: #A77A18;
    background-color: rgb(167, 122, 24, .1);
}

.level-card .level-box:nth-child(6) .shortcut {
    color: #A77A18;
    background-color: rgb(167, 122, 24, .2);
}

/*===================================================
    price-section
===================================================*/

.price-section {
    padding: 100px 0 214px;
}

.price-section,
.price-section .container {
    position: relative;
}

.price-section::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: rgb(146, 173, 255, .1);
}

.price-card {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
}

.price-card .price-box {
    display: block;
    min-width: 240px;
    border-radius: 32px;
    padding: 10px;
    margin-bottom: 20px;
    color: var(--color-dark);
    background-color: #fff;
    border: 2px solid #D9E3FD;
    text-align: center;
    transition: all .3s ease;
}

.price-card .price-box .title {
    padding-top: 30px;
    font-size: 20px;
    margin-bottom: 30px;
}

.price-card .price-box .price {
    font-size: 48px;
    margin-bottom: 30px;
}

.price-card .price-box .price-day {
    padding: 0 20px;
    border-radius: 32px;
    background-color: rgb(217, 227, 253, .5);
}

.price-card .price-box .price-day .day {
    padding-top: 40px;
    margin-bottom: 40px;
    font-size: 26px;
    font-weight: bold;
    /*direction: ltr;*/
    color: var(--color-theme);
    text-transform: uppercase;
    /*direction: ltr;*/
}

.price-card .price-box .price-day .btn {
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: var(--color-theme);
    font-size: 20px;
    border-radius: 50px;
    margin-bottom: 10px;
    transition: all .3s ease;
}

.price-card .price-box:nth-child(even) {
    transform: translateY(114px);
    color: #fff;
    background-color: var(--color-theme);
    border: 2px solid var(--color-theme);
}

.price-card .price-box:nth-child(even) .price-day {
    background-color: #0C277B;
}

.price-card .price-box:nth-child(even) .price-day .day {
    color: #fff
}

.price-card .price-box:nth-child(even) .price-day .btn {
    background-color: #0C277B;
    border: 2px solid #fff
}

.price-card .price-box:nth-child(even) .price-day .btn:hover {
    color: #0C277B !important;
    background-color: #fff;
    border: 2px solid #fff
}

/*===================================================
    Footer
===================================================*/

.footer-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-navbar .logo img {
    height: 56px;
}

.footer-navbar .nav {
    gap: 60px;
}

.footer-navbar .nav .nav-item {
    position: relative;
}

.footer-navbar .nav .nav-item::after {
    position: absolute;
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    left: -30px;
    background-color: #92ADFF;
}

[dir="ltr"] .footer-navbar .nav .nav-item::after {
    right: -30px;
    left: auto;
}

.footer-navbar .nav .nav-item:last-child::after {
    display: none;
}

.footer-navbar .nav .nav-link {
    padding: 0;
    font-size: 14px;
    color: var(--color-dark);
    transition: all .3s ease;
}

.footer-navbar .nav .nav-link:hover {
    color: var(--color-theme);
}

.footer-card {
    border-radius: 50px;
    min-height: 100px;
    padding: 0 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F4F7FF;
    margin-bottom: 30px;
    font-size: 16px;
    color: var(--color-dark);
}

.footer-card .footer-box:nth-child(2) {
    text-align: center;
    min-width: 50%;
    border-inline-start: 1px solid #92ADFF;
    border-inline-end: 1px solid #92ADFF;
}

.footer-card .footer-box .nav-social-media {
    justify-content: flex-end;
}

.footer-card .footer-box .nav-social-media li a {
    display: block;
    width: 40px;
    text-align: center;
    font-size: 20px;
    color: var(--color-dark);
}

.footer-card .footer-box .nav-social-media li a:hover {
    color: #92ADFF;
}

.footer-copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

.footer-copyright .text {
    font-size: 14px;
    color: var(--color-dark);
    transition: all .3s ease;
    direction: ltr;
}

.footer-copyright .nav {
    gap: 54px;
}

.footer-copyright .nav .nav-link {
    font-size: 14px;
    padding: 0;
    color: var(--color-dark);
    transition: all .3s ease;
}

.footer-copyright .nav .nav-link:hover {
    gap: 54px;
    font-size: 14px;
    color: var(--color-dark);
    transition: all .3s ease;
}


.student-page {
    background-color: #F4F7FF;
}

.student-page main {
    min-height: calc(100vh - 282px);
}

.student-page:not(.user-page) .navbar {
    position: relative;
    padding: 0;
    border-bottom: 1px solid #E5E6E8;
    background-color: #fff;
}

.student-page .footer-card {
    background-color: #fff;
}

.login-home {
    padding-top: 140px;
}

.login-home .section-title {
    margin-bottom: 70px;
}

.login-home .section-title img {
    margin: auto;
    margin-bottom: 40px;
    max-width: 270px;
}

.login-home .section-title .title {
    font-size: 30px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.login-home .section-title .info {
    font-size: 16px;
    font-weight: 400;
    color: #6D6D78;
    margin-bottom: 0;
}

.login-home .login-type {
    display: block;
    text-align: center;
    margin-bottom: 1rem;
    border-radius: 32px;
    padding: 30px;
    background-color: #fff;
    border: 1px solid #D9E3FD;
    transition: all .3s ease;
}

.login-home .login-type:hover {
    background-color: var(--color-theme);
}

.login-home .login-type .icon {
    margin: auto;
    margin-bottom: 24px;
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 20px;
    background-color: var(--color-theme);
    transition: all .3s ease;
    box-shadow: 5px 5px 10px rgb(146, 173, 255, .2);
}

.login-home .login-type .icon svg [fill] {
    fill: #fff;
}

.login-home .login-type:hover .icon {
    background-color: var(--color-yellow);
}

.login-home .login-type:hover .icon svg [fill] {
    fill: var(--color-dark);
}

.login-home .login-type .content {
    max-width: 336px;
    width: 100%;
    margin: auto;
}

.login-home .login-type .content .title {
    font-size: 20px;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 16px;
}

.login-home .login-type .content .info {
    font-size: 14px;
    line-height: 1.8;
    color: var(--color-dark);
    margin-bottom: 0;
}

.login-home .login-type:hover .content .title,
.login-home .login-type:hover .content .info {
    color: #fff;
}

.form-login .form-group {
    margin-bottom: 30px;
}

.form-login .form-control-icon {
    position: relative;
}

.form-login .form-control-icon .icon {
    position: absolute;
    top: 0;
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    z-index: 1;
}

.form-login .form-control-icon .form-label {
    font-size: 14px;
    margin-bottom: 1rem;
}

.form-login .form-control-icon .form-control {
    padding-inline-start: 65px;
    height: 65px;
    border-radius: 20px;
    border-color: #D9E3FD;
    text-align: center;
}

.form-login .form-control-icon .form-control:focus {
    border-color: #041637;
    box-shadow: none;
}

.form-login .form-control-icon [type="email"],
.form-login .form-control-icon [type="tel"],
.form-login .form-control-icon [type="url"] {
    padding-inline-end: 65px;
    padding-inline-start: 0;
}

[dir="lrt"] .form-login .form-control-icon [type="email"],
[dir="lrt"] .form-login .form-control-icon [type="tel"],
[dir="lrt"] .form-login .form-control-icon [type="url"] {
    padding-inline-start: 65px;
    padding-inline-end: 0;
}

.form-login .btn {
    width: 100%;
    height: 65px;
    line-height: 65px;
    border-radius: 20px;
    font-size: 18px;
}

.spinner-border {
    vertical-align: middle;
}

.forget-password-label {
    display: flex;
    align-content: center;
    justify-content: space-between;
}

.form-link {
    color: var(--color-theme);
    font-size: 18px;
    font-weight: 600;
}

.form-range {
    display: flex;
    align-items: center;
    padding-inline-end: 15px;
    padding-inline-start: 65px;
    height: 65px;
    border-radius: 20px;
    background-color: #fff;
    border-color: #D9E3FD;
    text-align: center;
}

.range-count {
    font-size: 18px;
    font-weight: bold;
    color: var(--color-theme);
}

[dir="ltr"] .form-control-icon.phone .icon {
    right: 0 !important;
}

.phone-input {
    text-align: left !important;
    padding-left: 100px !important;
    padding-right: 65px;
}

.iti__selected-flag {
    padding-left: 1rem;
    padding-right: 1rem;
}

/*
    user-home
*/

.user-home .login-type {
    display: flex;
    gap: 30px;
    padding: 50px;
}

.user-home .login-type .icon {
    background-color: transparent;
    box-shadow: none;
    min-width: 104px;
    width: 104px;
    margin: 0;
}

.user-home .login-type .icon svg [fill] {
    fill: var(--color-dark);
}

.user-home .login-type:hover .icon {
    background-color: transparent;
}

.user-home .login-type:hover .icon svg [fill] {
    fill: #fff;
}

.user-home .login-type .content {
    text-align: initial;
    margin: 0;
}

.btn-soft-danger {
    color: rgb(220, 53, 69) !important;
    background-color: rgb(220, 53, 69, .1);
}

.btn-soft-danger svg [fill] {
    fill: rgb(220, 53, 69);
}

.btn-soft-danger:hover,
.btn-soft-danger:focus {
    color: #fff !important;
    background-color: rgb(220, 53, 69, 1) !important;
}

.btn-soft-danger:hover svg [fill],
.btn-soft-danger:focus svg [fill] {
    fill: #fff !important;
}

.btn-soft-success {
    color: rgb(46, 204, 112) !important;
    background-color: rgb(46, 204, 112, .1);
}

.btn-soft-success svg [fill] {
    fill: rgb(46, 204, 112);
}

.btn-soft-success:hover,
.btn-soft-success:focus {
    color: #fff !important;
    background-color: rgb(46, 204, 112) !important;
}

.btn-soft-success:hover svg [fill],
.btn-soft-success:focus svg [fill] {
    fill: #fff !important;
}

.btn-soft-info {
    color: rgb(34, 63, 153) !important;
    background-color: rgb(34, 63, 153, .1);
}

.btn-soft-info svg [fill] {
    fill: rgb(34, 63, 153);
}

.btn-soft-info:hover,
.btn-soft-info:focus {
    color: #fff !important;
    background-color: rgb(34, 63, 153) !important;
}

.btn-soft-info:hover svg [fill],
.btn-soft-info:focus svg [fill] {
    fill: #fff !important;
}

.logout-box {
    text-align: center;
    padding: 3rem;
}

.logout-box .icon {
    width: 65px;
    height: 65px;
    line-height: 65px;
    border-radius: 50%;
    margin: auto;
    margin-bottom: 2rem;
    background-color: rgb(220, 53, 69, .1);
}

.logout-box .title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 2rem;
}

.logout-box .info {
    font-size: 14px;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.logout-box .btn {
    border-radius: 30px;
    font-weight: 700;
    padding: 0 2rem;
    height: 50px;
    line-height: 40px;
}

.user-page .navbar {
    position: relative;
    padding-top: 0;
}

.user-page .navbar .badge {
    background-color: var(--color-theme);
    color: #fff;
    border-radius: 50%;
    margin-top: -1rem;
    margin-inline-start: .5rem;
}

.user-page-navbar .user-navbar {
    display: flex;
    justify-content: space-between;
    padding: 1rem 60px;
}

.user-box {
    display: flex;
    gap: 2rem;
}

.user-box .pic {
    min-width: 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.user-box .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-box .content .username {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 5px;
}

.user-box .content .info {
    font-size: 12px;
    color: #6D6D78;
    margin-bottom: 0;
}

.btn-lang {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50%;
    padding: 3px !important;
    background-color: #fff;
    border: 2px solid rgb(var(--color-theme-rgb), .1)
}

.btn-lang::after {
    display: none;
}

.btn-lang img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*
    levels
*/

.level-section {
    padding: 40px 0;
}

.level-section .section-title {
    margin-bottom: 36px;
}

.level-section .section-title .title {
    font-size: 20px;
    margin-bottom: 0;
}

.level-box {
    display: block;
    margin-bottom: 24px;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid transparent;
    transition: all .3s ease;
}

.level-box:hover {
    transform: translateY(-.5rem);
}

.level-box .pic {
    width: 100%;
    height: 140px;
    overflow: hidden;
}

.level-box .pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.level-box .content {
    padding: 2rem;
}

.level-box .content .last-login {
    font-size: 13px;
    margin-bottom: 20px;
}

.level-box .content .title {
    font-size: 14px;
    margin-bottom: 10px;
    text-align: center;
}

.level-box .content .title.ltr {
    direction: ltr;
}

.level-box .content .title span {
    font-weight: 800;
}

/*.level-section:not(#levels) .row div:nth-child(1) .level-box{*/
/*    border-color: #DC3545;*/
/*}*/
/*.level-section:not(#levels) .row div:nth-child(1) .level-box .content .title span{*/
/*    color: #DC3545;*/
/*}*/
/*.level-section:not(#levels) .row div:nth-child(2) .level-box{*/
/*    border-color: #DCB04C;*/
/*}*/
/*.level-section:not(#levels) .row div:nth-child(2) .level-box .content .title span{*/
/*    color: #DCB04C;*/
/*}*/
/*.level-section:not(#levels) .row div:nth-child(3) .level-box{*/
/*    border-color: #2ECC71;*/
/*}*/
/*.level-section:not(#levels) .row div:nth-child(3) .level-box .content .title span{*/
/*    color: #2ECC71;*/
/*}*/
/*.level-section:not(#levels) .row div:nth-child(4) .level-box{*/
.level-section:not(#levels) .row div .level-box {
    border-color: #068241;
}

/*.level-section:not(#levels) .row div:nth-child(4) .level-box .content .title span{*/
.level-section:not(#levels) .row div .level-box .content .title span {
    color: #068241;
}

/*.level-section:not(#levels) .row div:nth-child(5) .level-box{*/
/*    border-color: #041637;*/
/*}*/
/*.level-section:not(#levels) .row div:nth-child(5) .level-box .content .title span{*/
/*    color: #041637;*/
/*}*/
/*.level-section:not(#levels) .row div:nth-child(6) .level-box{*/
/*    border-color: #DCB04C;*/
/*}*/
/*.level-section:not(#levels) .row div:nth-child(6) .level-box .content .title span{*/
/*    color: #DCB04C;*/
/*}*/

/*
    Lessons
*/
.lessons-section {
    padding-top: 0;
}

.lessons-section .section-title {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background-color: rgb(var(--color-theme-rgb), .1);
    padding: 30px 50px;
    margin: 0 auto 60px;
    width: calc(100% - 120px);
    border-radius: 0 0 30px 30px;
}

.lessons-section .section-title .title {
    font-size: 18px;
    margin-bottom: 0;
}

.lessons-section .section-title .breadcrumb {
    margin-bottom: 0;
}

.lessons-section .section-title .breadcrumb-item,
.lessons-section .section-title .breadcrumb-item .active {
    font-size: 13px;
    color: #777E90;
}

.lesson-box {
    display: block;
    border-radius: 20px;
    border: 1px solid #D9E3FD;
    background-color: #fff;
    margin-bottom: 24px;
    transition: all .3s ease;
}

.lesson-box:hover {
    transform: translateY(-.5rem);
}

.lesson-box .pic {
    padding: 1rem;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.lesson-box .pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lesson-box .content {
    padding: 2rem;
    text-align: center;
}

.lesson-box .content .title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1rem;
}

.lesson-box .content .option {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: space-between;
}

.lesson-box .content .btn {
    border-radius: 30px;
}

.lesson-box .content .option .btn {
    border-radius: 30px;
    font-weight: 800;
    font-size: 14px;
    padding: 0 2rem;
    height: 45px;
    line-height: 45px;
}

/*
    exercise-card
*/

.exercise-card {
    position: sticky;
    max-width: 277px;
    top: 2rem;
    border-radius: 15px;
    padding: 2rem 60px;
    border: 1px solid #D9E3FD
}

.exercise-card .nav {
    flex-direction: column;
}

.exercise-card .nav .nav-item .nav-link {
    padding: 24px 0;
    text-align: center;
    border-bottom: 1px solid #D9E3FD;
}

.exercise-card .nav .nav-item:last-child .nav-link {
    border-bottom: none;
}

.exercise-card .nav .nav-item .nav-link .exercise-title {
    color: #041637;
    font-size: 16px;
    line-height: 1.8;
}

.exercise-card .nav .nav-item .nav-link.active .exercise-title {
    font-weight: bold;
}

.exercise-box {
    margin-bottom: 20px;
}

.exercise-box .exercise-box-header {
    /*display: flex;*/
    direction: ltr;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    border-radius: 15px;
    background-color: rgb(var(--color-theme-rgb), .1);
    border-color: 1px solid rgb(var(--color-theme-rgb), .1);
}

.exercise-box .exercise-box-header .icon svg [fill] {
    fill: var(--color-theme);
    transition: all .3s ease;
}

.exercise-box .exercise-box-header .number {
    font-weight: 800;
    font-size: 14px;
    color: var(--color-theme);
}

.exercise-box .exercise-box-header .title {
    font-weight: 800;
    font-size: 16px;
    color: var(--color-theme);
}

.exercise-box .exercise-box-body {
    background-color: #fff;
    padding: 15px 30px;
    border-radius: 15px;
}

.exercise-box .exercise-box-body .table tr td {
    font-size: 16px;
    color: var(--color-theme);
    vertical-align: middle;
    border-color: rgb(var(--color-theme-rgb), .1);
}

.exercise-box .exercise-box-body .table tr td:last-child {
    text-align: left;
}

[dir="ltr"] .exercise-box .exercise-box-body .table tr td:last-child {
    text-align: right;
}

.exercise-box .exercise-box-body .table tr td .play-and-listen svg [fill] {
    fill: var(--color-theme);
    transition: all .3s ease;
}

.exercise-box .exercise-box-body .table tr td .play-and-listen.active svg rect,
.exercise-box .exercise-box-body .table tr td .play-and-listen:hover svg rect {
    opacity: 1;
}

.exercise-box .exercise-box-body .table tr td .play-and-listen.active svg path,
.exercise-box .exercise-box-body .table tr td .play-and-listen:hover svg path {
    fill: #fff;
}

.video-box {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    margin: 15px 0;
}

.video-box img {
    width: 100%;
}

.video-box::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #041637;
    opacity: .5;
    z-index: 1;
}

.video-box .btn-video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}

.video-box .btn-video svg path {
    fill: var(--color-theme);
}

.video-box .btn-video:hover svg #Item,
.video-box .btn-video:hover svg #Item-2 {
    transition: all .3s ease;
}

.video-box .btn-video:hover svg #Item {
    opacity: .5;
}

.video-box .btn-video:hover svg #Item-2 {
    opacity: 1;
}


.exercise-question .title {
    text-align: center;
    padding: 30px 15px;
    font-size: 24px;
    color: var(--color-dark);
    border-bottom: 1px solid rgb(var(--color-theme-rgb), .1);
}

.exercise-question .exercise-question-data {
    padding: 30px 15px;
    border-bottom: 1px solid rgb(var(--color-theme-rgb), .1);
}

.exercise-question .exercise-question-data .info {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: var(--color-theme);
}

.exercise-question .exercise-question-data .note {
    text-align: center;
    font-size: 14px;
    color: var(--color-dark);
}


/*
    audio-player
*/

.audio-player {
    direction: ltr;
}

.audio-player {
    width: 100%;
    border-radius: 40px;
}

.audio-player .slider .gap-progress,
.audio-player .slider .gap-progress .pin {
    background-color: var(--color-theme);
}

.audio-player .volume .volume__button.open path {
    fill: var(--color-theme);
}

.audio-player .volume .volume__controls {
    background-color: #EAEAEA;
}

/*
    recorder-box
*/

.recorder-box {
    max-width: 720px;
    margin: auto;
    margin-top: 2rem;
}

.recorder-box .controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.recorder-box .timer,
.recorder-box .icon {
    min-width: 40px;
    height: 40px;
    background-color: #EAEAEA;
    border-radius: 25px;
    line-height: 40px;
    padding: 0 2rem;
    font-size: 14px;
    text-align: center;
    color: var(--color-dark);
    cursor: pointer;
    transition: all .3s ease;
}

.recorder-box .icon:hover {
    color: #fff;
    background-color: var(--color-theme);
}

.recorder-box .icon.remove-voice,
.recorder-box .icon.remove-voice:hover {
    background: #D54B65;
    color: #fff;
}

.recorder-box .audio-player {
    max-width: 100%;
}

.recorder-box .audio-player .controls {
    margin-bottom: 0;
}

.textarea {
    position: relative;
    min-width: 520px;
    width: 100%;
    border: 1px dashed #D9D9DC;
    border-radius: 20px;
    overflow: hidden;
    padding: 10px;
    padding-inline-end: 20px;
    padding-bottom: 20px;
    margin-bottom: 1rem;
    height: auto;
}

.textarea textarea {
    border: none;
    box-shadow: none !important;
    resize: horizontal;
}

.btn-upload-file {
    border-radius: 20px;
    color: var(--color-theme);
    background-color: rgb(var(--color-theme-rgb), .1);
    border: 1px dashed var(--color-theme);
    transition: all .3s ease;
    padding: 0 2rem;
    min-width: 220px;
    font-size: 14px;
    font-weight: 400;
    line-height: 45px;
    font-weight: bold;
}

.btn-upload-file:hover,
.btn-upload-file:focus {
    border-radius: 20px;
    color: #fff;
    background-color: var(--color-theme);
    border: 1px solid var(--color-theme);
}

.btn-upload-file svg {
    transition: all .3s ease;
}

.btn-upload-file svg [fill] {
    fill: var(--color-theme)
}

.btn-upload-file:hover svg [fill],
.btn-upload-file:focus svg [fill] {
    fill: #fff
}

.files-upload-box {
    max-width: 520px;
    margin-top: 1rem;
    padding: 10px 20px;
    background: #fff;
    border: 1px dashed #D9D9DC;
    border-radius: 12px;
    margin-bottom: 1rem;
}

.files-upload-box .file-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0;
}

.files-upload-box .file-title .name {
    color: var(--color-dark);
    font-size: 14px;
    font-weight: 600;
    overflow-wrap: anywhere;
    margin-inline-end: 1rem;
}

.files-upload-box .file-title .action {
    display: flex;
    gap: .5rem;
}

.files-upload-box .file-size {
    font-size: 12px;
    color: var(--color-dark);
    opacity: .5;
}

.files-upload-box .file-title .action .btn-option {
    width: 30px;
    height: 30px;
    line-height: 28px;
    display: inline-block;
    text-align: center;
    font-size: 24px;
    border-radius: 50%;
    background: #E37281;
    color: #fff;
}

.profile-card {
    overflow: hidden;
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid rgb(var(--color-theme-rgb), .1);
    margin-bottom: 1rem;
}

.profile-card .profile-header {
    background: #F4F7FF;
    padding: 20px 40px;
    font-size: 16px;
    color: var(--color-dark);
    font-weight: 700;
}

.profile-card form {
    padding: 40px;
}

.profile-card .form-group {
    margin-bottom: 1rem;
}

.form-control.is-invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545;
    background-image: none;
}

.table-card {
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 1rem;
}

.table-card .table-header {
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid rgb(var(--color-theme-rgb), .1);
    background: #fff;
    padding: 20px 40px;
    font-size: 16px;
    color: var(--color-dark);
    font-weight: 700;
    text-align: center;
}

.table-card .table-responsive {
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid rgb(var(--color-theme-rgb), .1);
}

.table-card .table th,
.table-card .table td {
    border-color: rgb(var(--color-theme-rgb), .1);;
    vertical-align: middle;
    font-size: 14px;
    white-space: nowrap;
    padding: 1rem 2rem;
    text-align: center;
}

.table-card .table th {
    color: var(--color-theme);
    background-color: rgb(var(--color-theme-rgb), .05);
}

.table-card .table tr:last-child td {
    border: none;
}

.table-card .table .btn-option .btn {
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    font-weight: 600;
}

.table-card .table .btn-option .btn svg {
    margin-inline-end: 5px;
}

.table-card .table .btn-option .btn-review {
    color: rgb(131, 15, 139);
    background-color: rgb(131, 15, 139, .1);
}

.table-card .table .btn-option .btn-review svg [fill] {
    fill: rgb(131, 15, 139);
}

.table-card .table .btn-option .btn-review:hover {
    color: #fff;
    background-color: rgb(131, 15, 139);
}

.table-card .table .btn-option .btn-answer {
    color: rgb(var(--color-theme-rgb));
    background-color: rgb(var(--color-theme-rgb), .1);
}

.table-card .table .btn-option .btn-answer svg [fill] {
    fill: rgb(var(--color-theme-rgb));
}

.table-card .table .btn-option .btn-answer:hover {
    color: #fff;
    background-color: rgb(var(--color-theme-rgb));
}

.table-card .table .btn-option .btn:hover svg [fill] {
    fill: #fff
}

.table-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid rgb(var(--color-theme-rgb), .1);
    font-weight: bold
}

.list-inline-item {
    font-size: 16px;
}

/*---------------------------
    pagination
---------------------------*/

.pagination {
    gap: 8px;
    align-items: center;
    margin-bottom: 0;
}

.pagination .page-item .page-link {
    min-width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    padding: 0;
    border-radius: 5px;
    color: var(--color-dark);
    border: 1px solid rgb(var(--color-theme-rgb), .1);
}

.pagination .page-item .page-link:hover {
    color: var(--color-theme);
    background-color: rgb(var(--color-theme-rgb), .1);
}

.pagination .page-item.active .page-link,
.pagination .page-link:focus {
    color: #fff;
    background-color: rgb(var(--color-theme-rgb));
    box-shadow: none;
}

/*---------------------------
    Exam
---------------------------*/
.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 24px;
    line-height: 30px;
    font-weight: 800;
    gap: 1rem;
    background-color: rgb(var(--color-theme-rgb), .1);
    color: var(--color-theme);
}

.countdown .icon svg {
    width: 30px;
    height: 30px;
}

.countdown .icon svg [stroke] {
    stroke: var(--color-theme);
}

.exam-card .exam-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    border-radius: 20px;
    background-color: #fff;
    border: 1px solid rgb(var(--color-theme-rgb), .1);
    margin-bottom: 30px;
}

.exam-card .exam-header .content {
    padding: 1rem;
    text-align: center;
    margin-inline-start: 10%;
    padding-inline-start: 10%;
    border-inline-start: 1px solid rgb(var(--color-theme-rgb), .1);
}

.exam-card .exam-header .content .title {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 800;
    color: var(--color-theme);
}

.exam-card .exam-header .content .info {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 400;
    color: var(--color-dark);
}


.complete-answer .answer-list {
    display: flex;
    border-radius: 30px;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1rem;
    min-height: 60px;
    border: 1px solid rgb(var(--color-theme-rgb), .1);
    margin-bottom: 2rem;
}

.complete-answer .answer-range {
    background-color: rgb(var(--color-theme-rgb), .05);
    border: 1px dashed rgb(var(--color-theme-rgb));
}

.complete-answer .answer-list .answer-box {
    background-color: #F5F5F5;
    border-radius: 30px;
    color: #6D6D78;
    font-size: 14px;
    font-weight: 700;
    padding: .75rem 2rem;
    cursor: pointer;
    transition: all .3s ease;
    border: 1px solid rgb(var(--color-theme-rgb), .1);
    white-space: nowrap;
}

.complete-answer .answer-list .answer-box:hover {
    background-color: rgb(var(--color-theme-rgb), .1);
    color: var(--color-theme);
}

.complete-answer .answer-range .answer-box,
.complete-answer .answer-list .answer-box:focus,
.complete-answer .answer-list .answer-box:active {
    background-color: rgb(var(--color-theme-rgb));
    color: #fff;
}

.btn-wizard {
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    /*padding: 2rem 0;*/
    flex-wrap: wrap;
}

.btn-wizard .btn {
    border-radius: 50px;
    height: 50px;
    line-height: 50px;
    min-width: 160px;
}

.btn-warning {
    color: #000;
    background-color: #ffcb57;
    border-color: #ffcb57;
}

.multi-choice-question,
.true-false-question {
    margin-top: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.multi-choice-question .answer-box label.option,
.true-false-question .answer-box label.option {
    cursor: pointer;
}

.true-false-question .answer-box svg circle {
    fill: #fff;
}

.true-false-question .answer-box label.option-true svg [fill] {
    stroke: #2ECC71;
}

.true-false-question .answer-box label.option-false svg [fill] {
    stroke: #DC3545;
}

.true-false-question .answer-box input:checked + label.option-true svg circle {
    fill: #2ECC71
}

.true-false-question .answer-box input:checked + label.option-false svg circle {
    fill: #DC3545
}

.true-false-question .answer-box input:checked + label svg [fill],
.true-false-question .answer-box input:checked + label svg line {
    stroke: #fff !important;
}

.multi-choice-question .answer-box .option {
    min-width: 180px;
    height: 60px;
    line-height: 60px;
    padding: 0 2rem;
    background-color: rgb(var(--color-theme-rgb), .1);
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
}

.multi-choice-question .answer-box input:checked + .option {
    background-color: rgb(var(--color-theme-rgb));
    color: #fff;
}

#questionListLink .questionListLinkItem {
    cursor: pointer;
    border: 1px solid;
}


.box-shado-question .question-list .question-item {
    /*padding: 0px 0px 80px;*/
    display: none;
}

.box-shado-question .question-list .question-item.active {
    display: block;
}

#questionListLink .questionListLinkItem {
    cursor: pointer;
    border: 1px solid;
}

#questionListLink .questionListLinkItem:hover, #questionListLink .questionListLinkItem.active {
    color: var(--color-theme) !important;
    background-color: #eff2fe !important;
}

.answer-list .answer-box,
.complete-answer-question .answers .anwer-box {
    background-color: rgb(32, 178, 170, .1);
    border: 1px dashed #20B2AA;
    color: #20B2AA;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 65px;
    border-radius: 10px;
    margin-bottom: 10px;
    font-size: 16px;
}

.answer-list-vertical {
    position: relative;
    padding: 1rem;
    border: 1px solid rgb(109, 109, 120, .5);
    font-size: 14px;
    color: #6D6D78;
    border-radius: 10px;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 65px;
    width: 100%;
}

.answer-list-vertical .answer-box {
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .question-pic {
        max-width: 420px;
    }
}

@media (max-width: 990px) {
    section {
        padding: 1rem 0;
    }

    .back-to-home {
        padding: 0;
    }

    .btn-back svg {
        width: 40px;
    }

    .assessment-step-header {
        margin-bottom: 20px;
    }

    .assessment-step-header .head {
        padding-top: 20px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .assessment-step-header .head .title {
        font-size: 16px;
    }

    .assessment-step-header .content {
        padding: 20px;
    }

    .assessment-step-header .content .info p {
        position: relative;
        font-size: 12px;
    }

    .assessment-step-header .content .info p::before {
        top: 6px;
        width: 6px;
        height: 6px;
        margin-inline-start: -14px;
    }

    .question-card {
        padding: 20px 0 0;
    }

    .question-card .head .title {
        font-size: 16px;
    }

    .question-card .content {
        padding: 20px;
    }

    .question-card .content .question-box {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-assessment-step-part .nav-link {
        line-height: 40px;
        min-width: 120px;
    }
}

.sortable2 {
    background: transparent;
    height: 200px;
    position: relative;
    color: #666;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.sortable2 li {
    background: transparent;
    border: 1px solid #f5f5f5;
    padding: 10px 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #666;
    cursor: pointer;
}

.sortable2.active li {
    color: #fff;
    background-color: #79B530;
    border-color: #79B530;
    padding: 10px 0;
}

.sortable2.textImage li {
    color: #fff;
    background-color: #79B530;
    border-color: #79B530;
    padding: 59px 0 !important;
}

.sortable2.imageOnly li {
    color: #fff;
    background-color: #79B530;
    border-color: #79B530;
    padding: 46px 0 !important;
}

.sortable2.sort_words {
    height: auto;
    min-height: 60px;
}

.sortable2.sort_words li {
    display: inline-block;
    float: right;
    padding: 10px;
    margin: 10px;
}

.sortable1 {
    background: #ffffff20;
    height: 60px;
    padding: 10px !important;
    position: relative;
    color: #666;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.05);
    border-color: #f5fbff !important;
    margin-bottom: 1.25rem;
}

.sortable1 li {
    background: #fafafa;
    border: #a7a9ab solid 2px !important;
    -webkit-box-shadow: none;
    box-shadow: none;
    color: #666;
    cursor: pointer;
    width: 40%;
    margin: 0 10px;
    height: 40px;
    line-height: 2;
}

.connectedNoSortable {
    background: #ffffff20;
    position: relative;
    color: #666;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
}

.connectedNoSortable li {
    position: relative;
    background: #fafafa;
    border: 1px solid;
    padding: 10px 20px;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-weight: 700;
    color: #662D91;
}

.ewewe {
    background: #ffffff20;
    /* height: 183px; */
    padding: 10px !important;
    position: relative;
    color: #666;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -ms-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    -webkit-box-shadow: 0px 0px 10px rgb(0 0 0 / 5%);
    box-shadow: 0px 0px 10px rgb(0 0 0 / 5%);
    border-color: #c6c7c7 !important;
    margin-bottom: 1.25rem;
    border: 2px solid;
}

.add-ansar li {
    width: 100%;
    height: 48px;
    background-color: #02e2e4;
    text-align: center;
    line-height: 2.5;
    color: #fff;
    margin-bottom: 9px;
}


@media (max-width: 767px) {

    .connectedNoSortable {
        height: -webkit-max-content !important;
        height: -moz-max-content !important;
        height: max-content !important;
        margin-bottom: 10px !important;
    }

    .connectedSortable {
        height: 160px;
        margin-bottom: 10px !important;
    }

    .textImage {
        height: 445px !important;
        margin-bottom: 10px !important;
    }

    .imageOnly {
        height: 365px !important;
        margin-bottom: 10px !important;
    }
}

@media all and (device-width: 1024px) and (device-height: 768px) and (orientation: landscape) {
    .connectedSortable {
        height: 160px;
        margin-bottom: 10px !important;
    }

    .textImage {
        height: 445px !important;
        margin-bottom: 10px !important;
    }

    .imageOnly {
        height: 365px !important;
        margin-bottom: 10px !important;
    }
}

@media (min-width: 992px) {
    .textImage {
        height: 445px !important;
        margin-bottom: 10px !important;
    }

    .imageOnly {
        height: 365px !important;
        margin-bottom: 10px !important;
    }
}

.breadcrumb-item+.breadcrumb-item::before {
     float: left;
    padding-right: 0.5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "/");
}

.dropdown-toggle{
    padding-inline-end: 1.5rem !important;
}
.dropdown-toggle::after{
    display: none;
}
.dropdown-toggle::before{
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f107";
    border: none;
    margin: 0;
    vertical-align: middle;
    transition: all .3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
}
[dir="ltr"] .dropdown-toggle::before{
    left: auto;
    right: 0;
}
.dropdown-toggle.show::before{
    transform: translateY(-50%) rotate(180deg);
}

/* change_pic */

.change_pic{
    position: relative;
    width: 180px;
    height: 180px;
    margin: auto;
    border: none;
    margin-bottom: 3rem;
}
.change_pic .profile-user-pic{
    display: block;
    width: 180px;
    height: 180px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem 0.5rem rgb(0 0 0 / 8%);
}
.change_pic img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.change_pic .btn{
    position: absolute;
    top: -10px;
    right: -10px;
    padding: 0;
    min-width: 40px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
    padding: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--color-dark);
    box-shadow: 0px 9px 16px 0px rgb(24 28 50 / 25%)
}
[ dir="rtl"] .change_pic .btn{
    right: auto;
    left: -10px;
}
.change_pic #remove_pic{
    top: auto;
    bottom: -15px;
    color: #fff;
    background: #DC3545 !important
}

/*===================================================
    Welcome / landing — hero glass + subjects + steps
===================================================*/
.intro-box .intro-glass {
    max-width: 720px;
    margin: 0 auto 44px;
    padding: 24px 32px;
    background: rgba(4, 40, 22, 0.34);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 22px;
    backdrop-filter: blur(14px) saturate(120%);
    -webkit-backdrop-filter: blur(14px) saturate(120%);
    box-shadow: 0 22px 55px rgba(0, 0, 0, 0.22);
}
.intro-box .intro-glass .sub-title { font-size: 19px; font-weight: 600; margin-bottom: 12px; color: #fff; }
.intro-box .intro-glass .description { font-size: 15px; font-weight: 300; margin-bottom: 0; color: rgba(255, 255, 255, 0.9); line-height: 1.8; }

/* Subjects */
.subjects-block { padding: 100px 0; background: #fff; }
.subjects-block .eyebrow { display: block; color: var(--color-theme); text-transform: uppercase; letter-spacing: 3px; font-size: 13px; font-weight: 700; margin-bottom: 10px; }
.subjects-block .head-title { color: var(--color-dark); font-size: 42px; font-weight: 800; margin: 0; }
.subjects-block .head-lead { max-width: 560px; margin: 16px auto 0; color: var(--color-lgiht); font-size: 16px; line-height: 1.7; }
.subject-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 26px; margin-top: 56px; }
.subject-tile {
    position: relative; text-align: start; padding: 34px 30px 30px; border-radius: 24px;
    background: #fff; border: 1px solid #eef1f4; box-shadow: 0 14px 34px rgba(4, 22, 55, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease; overflow: hidden;
}
.subject-tile:hover { transform: translateY(-8px); box-shadow: 0 26px 54px rgba(6, 130, 65, 0.16); border-color: rgba(6, 130, 65, 0.25); }
.subject-tile .ic {
    width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center;
    background: rgba(6, 130, 65, 0.09); color: var(--color-theme); margin-bottom: 22px; transition: all 0.3s ease;
}
.subject-tile .ic svg { width: 28px; height: 28px; stroke-width: 1.9; }
.subject-tile:hover .ic { background: linear-gradient(135deg, #16A45C, #056234); color: #fff; box-shadow: 0 10px 22px rgba(6, 130, 65, 0.3); }
.subject-tile h3 { font-size: 21px; font-weight: 800; color: var(--color-dark); margin: 0; }
.subject-tile .kicker { display: block; margin-top: 6px; color: var(--color-lgiht); font-size: 13px; font-weight: 600; }
.subject-tile .go { display: inline-flex; align-items: center; gap: 7px; margin-top: 22px; color: var(--color-theme); font-weight: 700; font-size: 14px; }
.subject-tile .go svg { width: 16px; height: 16px; transition: transform 0.25s ease; }
.subject-tile:hover .go svg { transform: translateX(4px); }
html[dir="rtl"] .subject-tile .go svg { transform: scaleX(-1); }
html[dir="rtl"] .subject-tile:hover .go svg { transform: scaleX(-1) translateX(4px); }

/* How it works */
.steps-block { padding: 96px 0; background: #f6faf7; }
.steps-flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 56px; position: relative; }
.step-item { position: relative; text-align: center; padding: 0 20px; }
.step-item:not(:last-child)::after {
    content: ""; position: absolute; top: 28px; inset-inline-start: calc(50% + 32px); width: calc(100% - 64px); height: 2px;
    background: repeating-linear-gradient(90deg, rgba(6,130,65,0.35) 0 8px, transparent 8px 16px);
}
html[dir="rtl"] .step-item:not(:last-child)::after { transform: scaleX(-1); }
.step-item .node {
    width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 22px; display: flex; align-items: center; justify-content: center;
    background: #fff; border: 2px solid rgba(6, 130, 65, 0.2); color: var(--color-theme); position: relative; z-index: 2;
}
.step-item .node svg { width: 26px; height: 26px; stroke-width: 1.9; }
.step-item .node b { position: absolute; top: -8px; inset-inline-end: -8px; width: 24px; height: 24px; border-radius: 50%; background: var(--color-theme); color: #fff; font-size: 12px; display: flex; align-items: center; justify-content: center; }
.step-item h4 { font-size: 18px; font-weight: 800; color: var(--color-dark); margin: 0 0 8px; }
.step-item p { font-size: 14px; color: var(--color-lgiht); margin: 0; line-height: 1.6; }

@media (max-width: 991px) {
    .steps-flow { grid-template-columns: repeat(2, 1fr); row-gap: 46px; }
    .step-item:not(:last-child)::after { display: none; }
    .subjects-block .head-title { font-size: 32px; }
}
@media (max-width: 575px) {
    .steps-flow { grid-template-columns: 1fr; }
}
