@import url('https://fonts.googleapis.com/css2?family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Spirax&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sofia+Sans+Condensed:ital,wght@0,1..1000;1,1..1000&display=swap');

:root{
    --primary-color : #3490dc;
    --primary-dark : #09035b;
    --primary-light : #3490dc59;
    --bg-primary : #EFF7FD;
    --color-red : #ff0000;
    --secondary-color : #0E7900;
    --color-white : #ffffff;
    --color-dark :  #000000;
    --color-1: #969696;
    --color-3 :  #505763;
    --color-2: #339FD8;
    --border-color : #1e293b2a;
    --box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
   
  }


body {
    font-family: 'Poppins', sans-serif;
    background: var(--color-white);
}

a {
    color: #3e4246;
    text-decoration: none;
    font-family: 'Poppins', sans-serif !important;
}

p {
    color: #686c6f;
    font-family: 'Barlow', sans-serif;
}

/* @media (min-width: 1400px) {
    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1200px;
    }
} */

@media(min-width: 768px){
    header .container-fluid, 
    .categories-section .container-fluid,
    .free-exam-page .container-fluid{
        width: 95%;
    }
}

/* topbar */
header .topheader{
    background: linear-gradient(90deg, #201C59 0%, #3490DC 45%);

}
header .topheader .top-data{
    padding: 2px 1rem 3px;
}

header .topheader .top-data span{
    color: var(--color-white);
    font-size: 12px;
    padding-right: 1rem;
}

.topbar .site-logo {
    width: 200px;
}

.topbar .site-logo img {
    width: 100%;
}

.topbar {
    background: var(--color-white);
    padding: 5px 0;
    border-bottom: 1px solid #DDDDDD;
}

.topbar .search-area .btn {
    background: var(--color-white);
    color: var(--primary-color);
    border-color: #DDDDDD;
    border-left: 0;
}

.topbar .search-area input {
    background: rgb(255 255 255 / 5%);
    border: 1px solid #DDDDDD;
    border-right: 0;
}
.topbar .search-area input::placeholder {
    color: #DDDDDD; 
}
.topbar .search-area input:focus, .topbar .search-area .btn:focus {
    outline: none; 
    box-shadow: none;
}

.topbar .search-area .btn::before{
    content: "";
    display: block;
    width: 2.5px;
    height: 30px;
    background: var(--primary-color);
    position: absolute;
    top: 3px;
    left: 0;
    border-radius: 5px;
}

.search-icon {
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary-color); 
    border-radius: 50%;
    position: relative;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-icon .inner-circle {
    width: 12px;
    height: 12px;
    background-color: #b3d9f5; 
    border-radius: 50%;
    position: absolute;
    right: 0;
    bottom: 0;
  }

  .search-icon::after {
    content: "";
    position: absolute;
    width: 6px;
    height: 2px;
    background: var(--primary-color);
    bottom: -1px;
    right: -5px;
    transform: rotate(40deg);
    border-radius: 2px;
  }

.topbar .row {
    align-items: center;
    min-height: 36px;
}

.topbar .navbar {
    float: right;
}

.header-category{
    width: 155px;
    background: linear-gradient(90deg, #201C59 0%, #3490DC 90%);
    color: var(--color-white);
    border-radius: 5px;
    padding: 5px 20px 7px;
    cursor: pointer;
}

.topbar .login-user {
    color: var(--color-white);
    font-size: 16px;
    font-weight: 500;
}

.topbar .btn-login {
    color: var(--color-white);
    padding: 5px 20px;
    background: var(--primary-color);
    border-radius: 20px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
}

.topbar .btn-login:hover{
    color: var(--primary-color);
    background: var(--color-white);
}

.topbar .btn-register {
    color: var(--primary-color);
    padding: 5px 20px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    margin-left: 5px;
    font-weight: 600;
}

.topbar .btn-register:hover {
    color: var(--color-white);
    background: var(--primary-color);
}

.topbar #categories-list{
    display: none;
}

.topbar .side-navbar {
    position: absolute;
    width: 240px;
    background: var(--color-white);
    padding: 5px 0;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 99;
    border-radius: 10px;
}

@media (max-width:991px) {
    .topbar .side-navbar {
        display: none;
    }

    .main-banner{
        grid-template-columns: 100%;
    }

    .pustak-main-banner{
        grid-template-columns: 100%;
        grid-gap: 15px;
        grid-auto-flow: row;
    }

    .page-hero .pustak-main-banner .side-navbar {
        display: block;
    }
}

@media (min-width:801px) {
    /* tablet, landscape iPad, lo-res laptops ands desktops */
}

.topbar .side-navbar .course-nav {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 5px;
}

.topbar .side-navbar .course-nav li {
    line-height: 2;
    padding: 3px 15px;
    position: relative;
    border-bottom: 1px solid #f4f2f2;
}

.topbar .side-navbar .course-nav li:hover {
    background: #eff0f1;
}

.topbar .side-navbar .course-nav a {
    text-decoration: none;
    font-size: 14px;
    color: #3e444a;
    font-weight: 600;
    line-height: 1.8;
}

.subnav .subnav-content {
    display: none;
    position: absolute;
    right: -230px;
    top: 0;
    background-color: var(--color-white);
    width: 230px;
    z-index: 2;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    border-radius: 10px;
}

.subnav .subnav-content a {
    display: block;
    padding: 2px 10px;
    color: #3e444a;
    width: 100%;
}

.subnav .subnav-content a:hover {
    color: var(--primary-color);
    background: #eff0f1;
}

.subnav:hover .subnav-content {
    display: block;
}

.topbar .sidebar-see-more {
    line-height: 1;
    padding: 0;
    margin: 0;
    text-align: end;
}

.topbar .sidebar-see-more:hover {
    background: transparent !important;
}

.topbar .sidebar-see-more a {
    font-size: 12px;
    background: #c1d7e8;
    padding: 2px 5px;
    border-radius: 4px;
}

.topbar .sidebar-see-more a:hover {
    color: var(--primary-color);
}
.topbar .side-navbar .course-nav .subnavbtn {
    display: -webkit-box; 
    -webkit-box-orient: vertical; 
    -webkit-line-clamp: 1; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    position: relative;
    line-height: 2;
    padding-top: 2px;
    padding-bottom: 2px;
}

.topbar .side-navbar .course-nav li:hover .subnavbtn {
    color: var(--primary-color);
}

.topbar .side-navbar .course-nav .subnavbtn::after {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    position: absolute;
    right: 10px;
    font-size: 12px;
    top: 50%;
    z-index: 1;
    transform: translateY(-50%);
}

@media (min-width: 768px) and (max-width: 1200px) {
    header .container-fluid, 
    .categories-section .container-fluid,
    .free-exam-page .container-fluid{
        width: 99%;
    }
    .topbar .site-logo{
        width: 160px;
    }
  }
  

@media (min-width: 768px) {
    .topbar .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 20px;
        padding-left: 20px;
    }
    .manual-booking {
        display: none;
    }
}

@media (max-width: 767px) {
    .auth-navbar .navbar-nav {
        flex-direction: row;
    }
    .auth-navbar .nav-item {
        margin-left: 3px;
    }
    .auth-navbar .nav-link {
        font-size: 12px;
        padding: 0 5px !important;
    }
    .topbar .navbar {
        padding-top: 5px !important;
        padding-bottom: 0 !important;
    }
    .manual-booking {
        display: block;
    }
    .manual-booking a {
        padding: 5px 10px;
        background: transparent;
        border: 2px solid var(--color-white);
        border-radius: 2px;
        font-weight: 600;
    }
    .header-category{
        width: 135px;
        padding: 3px 10px 5px;
        float: right;
    }
    .topbar .side-navbar{
        top: 108px;
    }
}


/*====================== main navbar======================= */

.main-navbar {
    background: var(--color-white);
    padding-top: 0.1rem !important;
    padding-bottom: 0.1rem !important;
    border-bottom: 1px solid #DDDDDD;
}

.main-navbar .nav-item.active {
    border-bottom: 5px solid var(--primary-color);
    background: var(--bg-primary);
}

.main-navbar .nav-link {
    color: var(--color-dark);
    /* font-weight: 500; */
    font-size: 15px;
}
.main-navbar .navbar-nav{
    padding-top: 7px;
    padding-bottom: 0;
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.8rem;
        padding-left: 0.8rem;
    }
}


/* for mega menu */

.mega-dropdown {
    position: static !important;
}

.mega-dropdown-menu {
    padding: 20px 0px;
    width: 100%;
    right: 0;
    left: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    background: transparent !important;
    border: 0 !important;
    padding-top: 0 !important;
}

.mega-dropdown-menu .container {
    background: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    padding: 10px 15px 20px;
    border-top: 5px solid var(--primary-color);
}

.mega-dropdown-menu .megha-menu-ul {
    padding: 0;
    margin: 0;
    list-style-type: none !important;
}

.mega-dropdown-menu>li>ul>li {
    list-style: none;
}

.mega-dropdown-menu .megha-menu-ul a {
    display: block;
    color: #222;
    padding: 3px 5px;
    font-size: 14px;
}

.mega-dropdown-menu .megha-menu-ul a:hover {
    color: var(--primary-color);
}

.mega-dropdown-menu>li ul>li>a:hover,
.mega-dropdown-menu>li ul>li>a:focus {
    text-decoration: none;
}

.mega-dropdown-menu .dropdown-header {
    font-size: 16px;
    color: var(--primary-color);
    padding: 5px 60px 5px 5px;
    line-height: 30px;
    border-bottom: 1px solid #ddd;
    position: relative;
}

.mega-dropdown-menu .dropdown-header::before {
    content: '';
    width: 70px;
    height: 3px;
    background: var(--primary-color);
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 50px;
}


/*============ for banner ===============================*/

.page-hero {
    margin: 15px 0;
    background: #E1F6FF;
    height: 400px;
    max-height: 400px;
    overflow: hidden;
    margin-bottom: 35px;
}

.main-banner,
.pustak-main-banner {
    position: relative;
    display: grid;
    grid-template-columns: minmax(240px, 1fr);
    grid-gap: 10px;
    grid-auto-flow: column;
}

.pustak-main-banner{
    grid-template-columns: 74% 24% ;
}

.page-hero .single-item{
    padding: 15px 0;
    overflow: hidden;
}

.page-hero .hero-section {
    display: flex;
    justify-content: end; 
    align-items: center; 
    height: 350px;
}

.page-hero .hero-section img {
    display: block;
    width: auto;
    max-height: 340px;
}

.page-hero .slider-content{
    padding-top: 30px;
}

.page-hero .owl-nav {
    position: absolute;
    width: 100%;
    top: 42%;
    opacity: 0;
}

.page-hero .main-slider:hover .owl-nav {
    opacity: 1;
    display: none;
}

.page-hero .owl-nav button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.678);
    border: 1px solid #aaafad;
}

.page-hero .owl-nav i {
    padding: 10px;
    color: var(--primary-color);
    font-size: 16px;
}

.page-hero .owl-nav .owl-prev {
    margin-left: 20px;
}

.page-hero .owl-nav .owl-next {
    float: right;
    margin-right: 20px;
}

.page-hero .owl-nav button:hover {
    background: var(--primary-color);
}

.page-hero .owl-nav button:hover i {
    color: var(--color-white);
}

.page-hero .owl-dot {
    display: none;
}

.page-hero .slider-sub-heading{
    font-family: "Spirax", system-ui;
    color: #F6801C;
    font-size: 24px;
    text-transform: capitalize;
    font-weight: 600;
}

.page-hero .slider-title{
    color: var(--primary-dark);
    font-weight: 600;
    text-transform: uppercase;
    text-shadow: 1px 2px 2px var(--color-3);
}

.page-hero .slider-description{
    color: var(--color-dark);
}

.page-hero .course-link-btn{
    margin-top: 5rem;
}

.page-hero .course-link-btn .btn{
    background: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 5px;
    color: var(--color-white);
}

@media (max-width: 992px) {
    .page-hero .course-link-btn{
        margin-top: 2rem;
    }
    .page-hero .hero-section{
        height: 280px;
        justify-content: center; 
    }
    .page-hero .hero-section img {
        max-height: 270px;
    }
}

@media(max-width: 767px){
    .page-hero{
        height: auto;
        max-height: 1000px;
    }
    .single-item{
        padding: 0;
    }
    .page-hero .slider-content{
        padding-top: 10px;
    }
    .page-hero .course-link-btn{
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    .page-hero .hero-section{
        height: 200px;
        justify-content: center; 
    }
    .page-hero .hero-section img {
        max-height: 190px;
    }
}


/* submenu */

/* back to top */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none; /* Hidden by default */
    background: var(--primary-color);
    color: var(--color-white);
    padding: 5px 10px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid var(--primary-color);
    outline: 1px dashed var(--color-white);
    outline-offset: -3px;
    z-index: 9;
    box-shadow: rgba(52, 144, 220, 0.75) 0px 5px 15px;
    transition: opacity 0.3s;
}

.back-to-top span{
    font-size: 20px;
}
.back-to-top:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}


/*======================= page section ===================*/
.page-section{
    margin: 50px 0;
}

.page-section h2 {
    position: relative;
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-dark);
}

.page-section h2::before{
    content: "";
    width: 50px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 5px;
    position: absolute;
    top: -9px;
    left: 50%; 
    transform: translateX(-50%); 
}

/* ===================popular courses section =======================*/

.course-section .course-container {
    background: var(--color-white);
    padding: 10px;
}

.header-view-more {
    position: absolute;
    right: 10px;
    bottom: 20%;
}

.header-view-more a {
    font-size: 12px;
    padding: 5px 10px;
    color: var(--primary-color);
    background: #dfebf5;
    border-radius: 4px;
    font-weight: 600;
}

.course-section .header-view-more a:hover {
    background: var(--primary-color);
    color: var(--color-white);
}

.tutor-page-section .post-thumb {
    height: 220px !important;
}

.relative {
    position: relative;
}

.course-section .card-course {
    background: var(--color-white);
    margin: 5px 10px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    border-radius: 15px;
    border: 2px solid #a4a4a4;
    padding: 10px;
}

.course-section .card-course:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.course-section .card-course .header {
    position: relative;
}

.card-course .post-thumb {
    width: 100%;
    height: 160px;
    overflow: hidden;
}

.course-section .card-course .header img {
    width: 100%;
}

.course-section .card-course .post-category {
    position: absolute;
    bottom: 0;
    right: 2%;
    background: var(--color-white);
    padding: 5px 10px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.course-section .card-course .post-category a {
    color: var(--primary-color);
    font-size: 14px;
}

/* .course-section .card-course .body {
    padding: 10px 10px 15px;
} */

.course-section .card-course .post-title {
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.course-section .card-course .course-duration {
    float: right;
    font-size: 11px;
}

.course-section .card-course .course-price {
    background: #c1d7e8;
    color: var(--primary-color);
    padding: 2px 10px;
    border-radius: 3px;
    font-size: 14px;
}

.course-section .card-course .course-price:hover {
    background: var(--primary-color);
    color: var(--color-white);
}

.course-section .card-course .start-course {
    /* border-top: 1px solid #eae7e7; */
    font-size: 12px;
    margin-top: 5px;
}

.course-section .card-course .start-course span {
    padding-left: 20px;
    color: var(--primary-color);
}

.course_book_btn {
    padding: 5px;
    font-size: 14px;
    color: var(--color-white);
    background: var(--primary-color);
    border-radius: 5px;
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative; 
    border: 2px solid var(--primary-color);
}

.course_book_btn .button-text {
    flex-grow: 1;
    text-align: center; 
}

.course_book_btn iconify-icon {
    position: absolute;
    right: 5px;
    top: 50%; 
    transform: translateY(-50%);
}

.course_book_btn:hover {
    background: var(--color-white);
    color: var(--primary-color);
}

.swiper-wrapper-container {
    position: relative;
    padding-left: 31px;
    padding-right: 31px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.18) 0px 2px 4px;
}

.filter-swiper {
    position: relative;
    background: var(--color-white);
    width: 100%;
    border: 1px solid #DDDDDD;
    border-right: 0;
    border-left: 0;
    padding: 5px 0 !important;
    overflow: hidden;
}

.filter-swiper .swiper-slide {
    width: auto !important; 
}

.filter-btn {
    background: #fff;
    color: #333;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.filter-btn:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}

.filter-btn.active {
    background: var(--primary-dark);
    color: #fff;
    border-color: var(--primary-dark);
    box-shadow: 0 2px 6px rgba(0, 123, 255, 0.3);
}

/* Swiper arrows */
.filter-swiper .swiper-button-next,
.filter-swiper .swiper-button-prev {
    color: var(--primary-color);
    top: 35%;
}

.filter-swiper button {
    white-space: nowrap;
    padding: 6px 12px;
    border: 1px solid #f9f9f9;
    background: #f9f9f9;
    border-radius: 4px;
    margin-right: 5px;
    cursor: pointer;
}

.custom-swiper-nav .btn-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    border: 1px solid #DDDDDD;
    background: var(--color-white);
    padding: 0;
}

.custom-swiper-nav .btn-nav span{
    font-size: 30px;
    color: var(--primary-dark);
}

.custom-swiper-nav .btn-prev {
    left: 0; 
    border-right: 0;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.custom-swiper-nav .btn-next {
    right: 0; 
    border-left: 0;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.category-grid .course-card{
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.category-grid .course-thumb{
    height: 185px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}
.page-section .category-grid .course-thumb{
    height: 205px;
}
.course-card a{
    color: #3e4246;
    text-decoration: none;
}

.category-grid .course-card .course-title{
    font-size: 16px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.category-grid .course-card .course-body{
    padding: 10px;
    background: var(--color-white);
}
/*============ course owl nav=========== */

.course-section .course-container .owl-nav {
    position: absolute;
    width: 100%;
    top: 42%;
}

.course-section .course-container .owl-nav button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.678);
    border: 1px solid #aaafad;
}

.course-section .course-container .owl-nav i {
    padding: 10px;
    color: var(--primary-color);
    font-size: 16px;
}

.course-section .course-container .owl-nav .owl-next {
    float: right;
}

.course-section .course-container .owl-nav button:hover {
    background: var(--primary-color);
}

.course-section .course-container .owl-nav button:hover i {
    color: var(--color-white);
}

.course-carousel .owl-dots {
    display: none;
}
.course-section .card-course .body{
    padding-top: 5px;
}

/*============ orientation section=========== */
.orientation-section {
    margin: 15px 0;
}

.orientation-section .orientation-container{
    background: var(--color-white);
    padding: 10px;
}

.orientation-section .card-orientation{
    display: grid;
    grid-template-columns: 150px 1fr;
    margin: 5px 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;;
    border-radius: 10px;
    padding: 5px;
    column-gap: 10px;
}

.orientation-section .orientation-thumb{
    height: 200px;
    border-radius: 10px;
    overflow: hidden;
}

.orientation-section .orientation-thumb img{
    width: 100%;
    border-radius: 10px;
}

.orientation-section .ori-details{
    padding: 10px 0;
}

.orientation-section .ori-details h4{
    font-size: 17px;
    margin-bottom: 0;
    font-weight: 600;
    height: 40px;
}
.orientation-section .ori-details .ori-duration{
    font-size: 14px;
    color: var(--secondary-color);
}

.ori-details .ari-countdown{
    margin-top: 10px;
    font-size: 14px;
}

.ori-details .ari-countdown .ori-date{
    color: var(--color-red);
    font-size: 16px;
}

.ori-details .live_class_btn{
    background: var(--bg-primary);
    padding: 4px 10px;
    color: var(--primary-color);
    border-radius: 3px;
}

.ori-details .open-join-modal{
    background: var(--secondary-color);
    padding: 4px 10px;
    color: var(--color-white);
    border-radius: 3px;
}

@media(max-width:541px){
    .orientation-section .ori-details h4{
        height: auto;
    }
}

.orientation-slider .owl-nav{
    display: none;
}

/*============ is pupular=========== */

.popular-course-container {
    background: var(--color-white);
    width: 100%;
    padding: 15px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.popular-course-container h2 {
    font-size: 16px;
    border-bottom: 1px solid #eff0f1;
    padding-bottom: 10px;
}


/*======================= key offering section ==================*/

.key-offering-section {
    padding: 5px 0;
}

.key-offering-container {
    background: var(--color-white);
    padding: 15px 15px 0;
}

.home-sub-heading {
    color: var(--primary-color);
    font-size: 11px;
    text-transform: uppercase;
}

.key-offering-section .key-offering-images {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

@media(max-width:767px) {
    .key-offering-section .key-offering-images {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
    }
    .key-offering-section .card-key h3 {
        font-size: 13px !important;
    }
}

@media(max-width:576px) {
    .key-offering-section .key-offering-images {
        display: grid;
        grid-template-columns: 1fr 1fr;
        font-size: 13px !important;
    }
    .key-offering-section .header {
        padding-left: 30px !important;
        padding-right: 30px !important;
    }
}

.key-offering-section .card-key {
    padding: 0;
    border-right: 1px solid #f1ebeb;
    margin-bottom: 15px;
}

.key-offering-section .card-key:hover {
    background: rgb(240, 240, 243);
}

.key-offering-section .card-key3 {
    border-right: 0;
}

.key-offering-container img {
    width: 100%;
}

.key-offering-section .header {
    padding-left: 75px;
    padding-right: 75px;
}

.key-offering-section .body {
    text-align: center;
    margin-top: 5px;
}

.key-offering-section .card-key h3 {
    font-size: 16px;
    font-weight: 600;
    color: #4d5155;
}

.key-offering-section .header i {
    font-size: 22px;
    color: var(--color-white);
    padding: 15px;
}

.card-key .body p {
    line-height: 1.5;
    text-align: justify;
    font-size: 14px;
}


/* ========================how-does-work ==========================*/

.how-does-work {
    margin: 20px 0 15px;
    position: relative;
    background-image: url('../images/work-background.png');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: center;
}

.how-does-work .work-overlay {
    width: 100%;
    height: 100%;
    padding: 15px 0;
    display: block;
    background: transparent;
}

.how-does-work h2 {
    font-size: 18px;
    font-weight: 600;
    color: #3e4246;
}

.how-does-work .work-container {
    color: #3e4246;
}

.how-does-work .card-work img {
    width: 100%;
}

.how-does-work .card-work {
    position: relative;
}

.how-does-work .does-work-text {
    position: absolute;
    top: 49%;
    left: 20%;
}

.how-does-work .does-work-text h3 {
    font-size: 17px;
    font-weight: 600;
    color: #4d5155;
}

.how-does-work .work-container .card-work {
    padding: 0 10px;
}

@media(max-width: 767px) {
    .how-does-work .work-container .card-work {
        padding: 0 !important;
    }
    .how-does-work .does-work-text {
        left: 3% !important;
    }
    .how-does-work .does-work-text h3 {
        font-size: 7px !important;
        color: #000000 !important;
    }
    .how-does-work .col-3 {
        padding-left: 5px;
        padding-right: 5px;
    }
    .work-container {
        overflow: hidden;
        padding-left: 10px;
        padding-right: 10px;
    }
}

.work-container .body h3 {
    font-size: 22px;
}

.work-container .card-work .header {
    height: 60px;
}

.work-container .card-work .header h1:hover {
    padding-left: 10px;
    padding-right: 10px;
    width: 50px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.work-container .body p {
    color: var(--color-white);
    font-size: 15px;
    line-height: 1.5;
    text-align: justify;
}


/*======================= review section ===============================*/

.review-section .review-container {
    padding: 10px;
}

.review-section .review-container .reviw-item {
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 10px;
    padding: 10px 15px;
    background: var(--bg-primary);
    margin: 10px;
    border-radius: 20px;
    align-items: center;
}
.review-section .reviewer-bg{
    position: relative;
    background: var(--primary-color);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    /* overflow: hidden; */
    box-shadow: var(--box-shadow);

}

.review-section .reviewer-bg::after{
    content: "";
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    box-shadow: rgba(60, 64, 67, 0.4) -2px -1px 2px 0px, rgba(60, 64, 67, 0.25) 0px 2px 6px 2px;
    position: absolute;
    left: 0;
    top: -15px;
}

.review-section .profile-image {
    width: 56px;
    height: 56px;
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    margin: 7px auto;
    z-index: 1;
}

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

.review-container .review-content .image-quote img {
    width: 25px;
    height: 25px;
}

.quote-left img{
    margin-right: auto;
    margin-bottom: 5px;
}

.quote-right img{
    position: absolute;
    right: 10%;
    bottom: 15px;
}

.review-section .reviewer {
    display: grid;
    grid-template-columns: 1fr 3fr;
}
.review-content .review p{
    font-style: italic;
    height: 65px;
    font-size: 14px;
}

.review-section .profile-details {
    padding: 10px 0 0;
}

.review-section .profile-details h5 {
    font-size: 16px;
    margin-bottom: 5px;
}

.review-section .profile-details p {
    font-size: 14px;
    color: var(--primary-color);
    font-style: italic;
}

.review-section .owl-nav.disabled {
    display: block;
}

@media(max-width:767px) {
    .review-container .review-content p {
        min-height: 110px !important;
        height: auto !important;
    }
}


/*============ review owl nav=========== */

.review-section .review-container .owl-nav {
    position: absolute;
    width: 100%;
    top: 42%;
}

.review-section .review-container .owl-nav button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.678);
    border: 1px solid #aaafad;
}

.review-section .review-container .owl-nav i {
    padding: 10px;
    color: var(--primary-color);
    font-size: 16px;
}

.review-section .review-container .owl-nav .owl-next {
    float: right;
    margin-right: 22px;
}

.review-section .review-container .owl-nav button:hover {
    background: var(--primary-color);
}

.review-section .review-container .owl-nav button:hover i {
    color: var(--color-white);
}

/* career page */
.career-page{
    background: var(--bg-primary);
    padding: 1rem 0;
}
.career-page .career-list{
    position: relative;
    background: var(--color-white);
    padding: 10px 10px 20px;
    border-radius: 20px;
    box-shadow: var(--box-shadow);
}

.career-page .career-thumb{
    width: 100%;
}
.career-page .career-thumb img{
    width: 100%;
    border-radius: 10px;
}

.career-page .career-list h4{
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}
.career-page .vacancy-apply{
    background: var(--primary-dark);
    padding: 5px 20px;
    border-radius: 20px;
    color: var(--color-white);
    box-shadow: var(--box-shadow);
    font-size: 14px;
    font-weight: 500;
    border: 2px solid var(--primary-dark);
}

.career-page .vacancy-apply:hover{
    background: var(--color-white);
    color: var(--primary-dark);
}

.career-page .view_details-btn{
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.career-page .view_details-btn:hover{
    background: var(--color-white);
    color: var(--primary-color);
}

/*======================= top-tutor section ====================*/
.about-header{
    width: 40px;
    height: 6px;
    background: #339fd8;
    border-radius: 5px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
}

.top-tutors-section {
    margin: 15px 0;
}

.top-tutors-section .top-tutors-container .tutor-image {
    width: 200px;
    height: 180px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.top-tutors-section .top-tutors-container .tutor-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.top-tutors-section .top-tutors-container .slider-item {
    display: grid;
}

.top-tutors-section .top-tutors-container .tutor-details {
    padding: 20px 10px;
    background: var(--color-dark);
    color: var(--color-white);
    width: 200px;
    text-align: center;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.top-tutors-section .top-tutors-container .tutor-details .fa-star{
    font-size: 12px;
}

.top-tutors-section .top-tutors-container .tutor-details h5 {
    font-size: 18px;
    margin-bottom: 5px;
    height: 40px;
}

.top-tutors-section .top-tutors-container .tutor-details h5 a{
    color: var(--color-white);
}

.top-tutors-section .top-tutors-container .tutor-details p {
    font-size: 15px;
    color: var(--primary-color);
    font-style: italic;
}
.about-map{
    background: var(--color-white);
    padding: 2rem 0;
}
.etutor-location iframe{
    width: 100%;
}
.about-features {
    background-image: url('../images/about/feature-bg.png');
    background-repeat: no-repeat;
    background-size: 100%;
}

.about-features .feature-overlay{
    padding: 80px 0;
    background: rgba(0, 0, 0, .8);
    width: 100%;
    height: 100%;
    color: var(--color-white);
}

.about-features h1{
    font-size: 2.5rem;
    font-weight: 700;
}

.about-features .feature-content{
    display: grid;
    grid-template-columns: 50px 1fr;
}

.about-features .feature-content .feature-item{
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    padding: 10px 15px;
}

.about-features .feature-content .feature-item h6{
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.2rem;
}

.about-features .feature-content .feature-item p{
    color: var(--color-white);
    font-size: 14px;
}

.about-features .feature-content .featute-icon{
    background: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    padding: 3px 8px;
}

.about-features .feature-content i{
    font-size: 22px;
    color: var(--color-white);
}

.about-etutors{
    background: var(--color-white);
    padding: 80px 0;
}

.about-etutors .etutor-features .etutor-icon{
    width: 45px;
    height: 45px;
    border-radius: 10px;
    background: var(--primary-light);
    padding: 5px 10px;
    margin-bottom: 10px;
    border: 1px solid var(--primary-light);
}

.about-etutors .etutor-features .etutor-icon:hover{
    border-color: var(--primary-color);
}

.about-etutors .etutor-features .etutor-icon i{
    color: var(--primary-color);
    font-size: 1.5rem;
}

/*============ top tutor owl nav=========== */

.top-tutors-section .top-tutors-container .owl-nav {
    position: absolute;
    width: 100%;
    top: 30%;
}

.top-tutors-section .top-tutors-container .owl-nav button {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.678);
    border: 1px solid #aaafad;
}

.top-tutors-section .top-tutors-container .owl-nav i {
    padding: 10px;
    color: var(--primary-color);
    font-size: 16px;
}

.top-tutors-section .top-tutors-container .owl-nav .owl-next {
    float: right;
    margin-right: 22px;
}

.top-tutors-section .top-tutors-container .owl-nav button:hover {
    background: var(--primary-color);
}

.top-tutors-section .top-tutors-container .owl-nav button:hover i {
    color: var(--color-white);
}


/*====================== about page =========================*/
.about-banner{
    margin-top: 10px;
    background-image: url('../images/about/banner.png');
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding-bottom: 1rem;
}
.about-banner h1{
    font-weight: 700;
    font-size: 2rem;
    padding: 1rem 0 1rem;
}
.text-red{
    color: var(--color-red);;
}
.about-etutor p{
    margin-bottom: 0.5rem;
    color: var(--color-dark);
    font-size: 14px;
}
.about-banner img{
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.ceo-section{
    background: var(--color-white);
    padding: 1rem 0;
}
.ceo-section .ceo-detail{
    margin-top: 2rem;
}
.ceo-section h2{
    font-weight: 600;
    font-size: 1.8rem;
}
.ceo-section img{
    width: 100%;
}
.ceo-section p{
    color: var(--color-dark);
    font-size: 14px;
}
.etutor-breadcrumb {
    padding: 20px 0 10px;
}

@media(max-width:767px) {
    .etutor-breadcrumb {
        padding: 20px 0 10px;
    }
}

.etutor-breadcrumb h2 {
    font-size: 18px;
    font-weight: 600;
}

.etutor-breadcrumb li a,
.etutor-breadcrumb li {
    font-size: 14px;
}

.about-page .page-sub-heading {
    color: var(--primary-color);
    font-size: 13px;
    text-transform: uppercase;
}

.about-page .about-heading h2 {
    font-size: 22px;
}

.about-page .about-image {
    width: 100%;
    overflow: hidden;
    padding: 15px;
    background: var(--color-white);
    border-radius: 5px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.about-page .about-image img {
    width: 100%;
}

.about-page .about-details {
    margin-top: 10px;
    margin-bottom: 20px;
}

.about-page .about-details p {
    text-align: justify;
}


/*======================= course list page ======================*/

.course-page {
    margin-bottom: 2rem;
}

.course-page .courses-details {
    margin-bottom: 30px;
}

.course-page .side-navbar {
    background: var(--color-white);
    padding: 5px;
    border-radius: 10px;
    min-height: 520px;
}

.course-page .side-navbar h5 {
    padding: 10px 15px;
}

.course-page .side-navbar .course-nav {
    list-style-type: none;
    padding-left: 0;
    /* height: 370px;
    overflow-y: scroll; */
}

.course-page .side-navbar .course-nav::-webkit-scrollbar {
    width: 5px;
    /* width of the entire scrollbar */
}

.course-page .side-navbar .course-nav::-webkit-scrollbar-track {
    background: var(--color-white);
    /* color of the tracking area */
}

.course-page .side-navbar .course-nav::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    /* color of the scroll thumb */
    border-radius: 20px;
    /* roundness of the scroll thumb */
    /* border: 1px solid var(--color-white);  */
}

.course-page .side-navbar .course-nav li {
    line-height: 2;
    padding: 5px;
    position: relative;
}

.course-page .side-navbar .course-nav li:hover {
    background: var(--primary-color);
    border-radius: 10px;
}

.category-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.icon-circle {
    width: 25px;
    height: 25px;
    border-radius: 5px;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  }
  
  .mid-circle {
    width: 15px;
    height: 15px;
    background: linear-gradient(33deg, var(--primary-color) 0%, var(--primary-color) 50%, var(--secondary-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

.mid-circle::after {
    content: "";
    width: 9px;
    height: 9px;
    background: var(--color-white);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  }

.course-link {
  font-weight: 800;
  line-height: 1.5;
  color: #000;
  text-decoration: none;
}

.course-page .side-navbar .course-nav a {
    font-weight: 500;
    text-decoration: none;
}

.course-page .side-navbar .course-nav li:hover a {
    color: var(--color-white) !important;
}

.course-page .side-navbar .course-nav a::after {
    font-family: "Font Awesome 5 Free";
    content: "\f054";
    position: absolute;
    right: 10px;
    font-size: 12px;
    padding-top: 2px;
}

.all-course-list{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    padding: 10px 25px;
    border-radius: 10px;
    min-height: 520px;
}

.all-course-list .card-course {
    background: var(--color-white);
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    border-radius: 15px;
    border: 2px solid #a4a4a4;
    padding: 10px;
}

.all-course-list .card-course:hover {
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}

.all-course-list .card-course .header {
    position: relative;
    height: 210px;
    overflow: hidden;
}

.all-course-list .card-course .header img {
    width: 100%;
    height: 250px;
    object-fit: contain;
}

.all-course-list .card-course .body {
    padding: 5px 0 5px;
}
.all-course-list .card-course .body h4{
    padding: 10px 10px 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 60px;
}

.all-course-list .card-course .post-title a {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.all-course-list .card-course .course-duration {
    float: right;
    font-size: 11px;
}

.all-course-list .card-course .course-price {
    background: #c1d7e8;
    color: var(--primary-color);
    padding: 2px 10px;
    border-radius: 3px;
    font-size: 14px;
}

.all-course-list .card-course .course-price:hover {
    background: var(--primary-color);
    color: var(--color-white);
}

.all-course-list .card-course .start-course {
    font-size: 12px;
    margin-top: 5px;
}

.all-course-list .card-course .start-course span {
    padding-left: 20px;
    color: var(--primary-color);
}
.side-navbar .course-nav li.active {
    background-color: var(--primary-color); 
    border-radius: 10px;
}

.side-navbar .course-nav li.active .course-link {
    color: var(--color-white);
}

.notice-pages .side-navbar{
    padding: 10px 15px;
    background: var(--bg-primary);
}
.notice-pages .all-course-list{
    background: var(--bg-primary);
}

.notice-list{
    border: 2px solid var(--primary-color);
    padding: 5px 10px;
    background: var(--color-white);
    border-radius: 10px;
    margin-bottom: 10px;
}
.notice-list .short-updated-date{
    margin-right: 5px;
    border-right: 3px solid var(--primary-color);
    padding-right: 5px;
}

.etutor-btn-primary{
    background: var(--primary-color);
    color: var(--color-white);
    border-radius: 20px;
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.etutor-btn-primary:hover{
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: var(--color-white);
}
/*==================== course-details-page======================== */
@media (min-width: 992px) {
    .course-details-row .col-lg-8 {
        flex: 0 0 auto;
        width: 59.666667%;
    }
    .course-details-row .col-lg-4{
        flex: 0 0 auto;
        width: 40.333333%;
        padding-left: 0;
    }
    .course-details-page .booking-box{
        height: 357px;
        overflow-y: scroll !important;
        position: relative;
    }
}

@media (max-width:991px){
    .course-details-page .booking-box{
        margin-top: 1rem;
    }
}

.web-page-header h2{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 600;
}
.web-page-header h2 .page-header-icon{
    color: var(--primary-color);
    margin-right: 0.5rem;
}

.course-detail-image{
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
    border: 1rem solid var(--primary-dark);
}

.course-details-page .course-decs img {
    width: 100%;
}

.course-details-page .course-decs {
    padding: 1rem;
}

.course-details-page .course-decs img {
    width: 100%;
}

.course-details-page .booking-box{
    width: 100%;
    border-radius: 0.5rem;
    border: 1px solid #DDDDDD;
    padding: 0.9rem 1rem 0;

}

.course-details-page .course-decs h4,
.course-details-page .booking-box h4 {
    font-weight: 600;
    color: #1c252e;
    font-size: 17px;
    position: relative;
}

.course-details-page .pulse-div::after {
    content: '';
    width: 50px;
    height: 6px;
    background-color: var(--primary-color);
    border-radius: 5px;
    position: absolute;
    bottom: 0.3rem;
    left: 148px;
    animation: pulse 1.0s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.batch-card{
    width: 100%;
    padding: 1rem;
    box-shadow: var(--box-shadow);
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.booking-box .batch-price{
    margin-top: 0.8rem;
    color: var(--primary-dark);
    font-size: 1.4rem;
    font-weight: 600;
}

@media (min-width: 768px) and (max-width: 1400px){
    .booking-box .batch-price{
        font-size: 1.2rem;
    }
}

.course-details-page .course-decs p {
    text-align: justify;
    font-size: 15px;
}

.course-details-page .booking-box {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.course-details-page .booking-box h5 {
    font-weight: 600;
    display: inline-block; 
    font-size: 15px;
    max-width: 100%; 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis; 
    margin-bottom: 0;
}

.course-details-page .booking-btn {
    background: var(--primary-color);
    color: var(--color-white);
    width: 100%;
}

.course-details-page .more-decs {
    background: var(--color-white);
    margin-top: 20px;
    margin-bottom: 20px;
    padding-top: 15px;
    padding-bottom: 15px;
}

.batch-tutor-card{
    background: var(--bg-primary);
    width: 100%;
    padding: 0.7rem;
    box-shadow: var(--box-shadow);
    border-radius: 0.5rem;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.batch-tutor-card .b-img-container{
    background: var(--color-white);
    height: 80px;
    overflow: hidden;
}

.batch-tutor-card .b-img-container .tutor-icon{
    color: var(--primary-color);
}

.batch-tutor-details h5{
    font-size: 1.1rem;
    color: var(--color-dark);
    font-weight: 600;
}

.batch-tutor-details p{
    font-size: 0.9rem;
    margin-bottom: 0;
}
/* exam hall */

.exam-hall-list .exam-filter-btn{
    padding: 3px 30px;
    border-radius: 10px;
    background: #F0F0F0;
    border: 1px solid #F0F0F0;
    font-weight: 600;
    font-size: 14px;
}

.exam-hall-list .exam-filter-btn.active{
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: var(--color-white);
}

.exam-hall-list .exam-filter-btn:hover{
    color: var(--primary-color);
    background: var(--color-white);
    border-color: var(--primary-color);
}

.exam-hall-list #exam-container{
    background: var(--bg-primary);
    border-radius: 10px;
    padding: 20px 10px;
    box-shadow: var(--box-shadow);
    min-height: 500px;
}

#exam-container .exam-price{
    color: var(--secondary-color);
}

.exam-hall-list .card-exam{
    width: 100%;
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: 95px 1fr 135px;
    background-color: var(--color-white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding: 5px;
    border-radius: 10px;
    border: 2px solid var(--primary-color);
}
.exam-hall-list .card-exam .header img{
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--box-shadow);
}
.exam-hall-list .card-exam .body{
    padding: 10px 10px 20px;
}
.booking-box .card-date {
    display: block;
    font-size: 12px;
    color: #8c8c8c;
}

.student-classroomlist-section h6 {
    font-weight: 600;
}

.student-classroomlist-section ul {
    list-style-type: none;
    padding-left: 0;
}

.student-classroomlist-section ul li {
    padding: 5px 5px 10px;
}

.student-classroom-btn {
    float: right;
    margin-right: 15px;
    padding: 3px 10px;
    border-radius: 10px;
    background: var(--primary-color);
    color: var(--color-white);
    font-weight: 600;
    text-decoration: none;
}

.student-classroom-btn span {
    padding-right: 5px;
    font-size: 14px;
}

.student-classroom-btn:hover {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.favorite-tutors .tutor-thumb{
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #ccc;
}
.favorite-tutors .tutor_details a{
    text-align: center;
    text-decoration: none;
    color: #111111;
}
.tab-course-description .nav-link {
    padding-bottom: 10px;
    color: #3b3b3b !important;
    font-weight: 600;
    width: 170px;
}

.tab-course-description .nav-link.active {
    border: 3px solid !important;
    border-color: #ffffff #ffffff var(--primary-color) !important;
    color: var(--primary-color) !important;
}

.tab-course-description .nav-link:hover {
    color: var(--primary-color) !important;
    border-color: #fff #fff #e9ecef !important;
}

.tab-content .nav-feature-icon {
    display: grid;
    grid-template-columns: 30px auto;
    grid-column-gap: 0.5rem;
}

.tab-content .nav-feature-icon h5 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    align-self: center;
}

.tab-content .feature-detail-card {
    padding: 20px 15px 5px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    /* margin: 10px 15px; */
    background: var(--color-white);
    margin-bottom: 1rem;
}

.course-all-feature {
    display: block;
}
.course-all-feature h4{
    font-size: 16px;
    font-weight: 600;
}

.course-details-page .tab-content p,
.course-details-page .tab-content span,
.course-details-page .tab-content li,
.course-details-page .tab-content div,
.course-details-page .tab-content font {
    color: #5c5a5a !important;
    text-align: justify;
}

@media(max-width: 767px) {
    .tab-course-description .nav-link {
        width: auto !important;
        font-size: 14px;
        padding: .5rem 5px;
    }
    .course-all-feature {
        grid-template-columns: 1fr !important;
        row-gap: 15px;
    }
}

@media (min-width: 1700px){
    .student .category-grid .course-thumb{
        height: 245px;
    }
}

/*======================= for icomoon ================================*/

@font-face {
    font-family: 'icomoon';
    src: url('../fonts/icomoon.eot?eda2j3');
    src: url('../fonts/icomoon.eot?eda2j3#iefix') format('embedded-opentype'), url('../fonts/icomoon.ttf?eda2j3') format('truetype'), url('../fonts/icomoon.woff?eda2j3') format('woff'), url('../fonts/icomoon.svg?eda2j3#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-file-settings:before {
    content: "\e900";
}

.icon-folder-add:before {
    content: "\e901";
}

.icon-checkmark1:before {
    content: "\e902";
}

.icon-checkbox-checked:before {
    content: "\e903";
}

.icon-zoomin:before {
    content: "\e904";
}

.icon-email:before {
    content: "\e905";
}

.icon-image:before {
    content: "\e90d";
}

.icon-video-camera:before {
    content: "\e914";
}

.icon-bullhorn:before {
    content: "\e91a";
}

.icon-cart:before {
    content: "\e93a";
}

.icon-phone:before {
    content: "\e942";
}

.icon-pushpin:before {
    content: "\e946";
}

.icon-location2:before {
    content: "\e948";
}

.icon-compass:before {
    content: "\e949";
}

.icon-alarm:before {
    content: "\e950";
}

.icon-bell:before {
    content: "\e951";
}

.icon-laptop:before {
    content: "\e957";
}

.icon-mobile:before {
    content: "\e958";
}

.icon-tv:before {
    content: "\e95b";
}

.icon-drawer:before {
    content: "\e95c";
}

.icon-user-plus:before {
    content: "\e973";
}

.icon-user-check:before {
    content: "\e975";
}

.icon-user-tie:before {
    content: "\e976";
}

.icon-spinner11:before {
    content: "\e984";
}

.icon-zoom-in:before {
    content: "\e987";
}

.icon-zoom-out:before {
    content: "\e988";
}

.icon-key:before {
    content: "\e98d";
}

.icon-key2:before {
    content: "\e98e";
}

.icon-lock:before {
    content: "\e98f";
}

.icon-unlocked:before {
    content: "\e990";
}

.icon-wrench:before {
    content: "\e991";
}

.icon-cog:before {
    content: "\e994";
}

.icon-gift:before {
    content: "\e99f";
}

.icon-bin2:before {
    content: "\e9ad";
}

.icon-airplane:before {
    content: "\e9af";
}

.icon-switch:before {
    content: "\e9b6";
}

.icon-clipboard:before {
    content: "\e9b8";
}

.icon-upload2:before {
    content: "\e9c6";
}

.icon-upload3:before {
    content: "\e9c8";
}

.icon-attachment:before {
    content: "\e9cd";
}

.icon-point-right:before {
    content: "\ea04";
}

.icon-plus:before {
    content: "\ea0a";
}

.icon-minus:before {
    content: "\ea0b";
}

.icon-checkmark:before {
    content: "\ea10";
}

.icon-enter:before {
    content: "\ea13";
}

.icon-exit:before {
    content: "\ea14";
}

.icon-mail2:before {
    content: "\ea84";
}

.icon-google-plus:before {
    content: "\ea8b";
}

.icon-facebook:before {
    content: "\ea90";
}

.icon-instagram:before {
    content: "\ea92";
}

.icon-whatsapp:before {
    content: "\ea93";
}

.icon-twitter:before {
    content: "\ea96";
}

.icon-youtube:before {
    content: "\ea9d";
}

.icon-skype:before {
    content: "\eac5";
}

.icon-hackernews:before {
    content: "\eac7";
}

.icon-linkedin2:before {
    content: "\eaca";
}

.icon-file-pdf:before {
    content: "\eadf";
}

.icon-file-word:before {
    content: "\eae1";
}

.icon-file-excel:before {
    content: "\eae2";
}


/*======================= footer ===============================*/

.page-footer {
    position: relative;
    display: block;
    padding-top: 30px;
    padding-bottom: 16px;
    background-color: #1D1C2D;
    color: var(--color-white);
}

.page-footer .footer-logo {
    width: 80%;
    background: var(--color-white);
    border-radius: 10px;
}

.page-footer .footer-logo img {
    width: 100%;
}

.page-footer h5 {
    font-weight: 500;
    margin-bottom: 16px;
    color: #d4d5d6;
    font-size: 15px;
}

.page-footer hr {
    border-color: #4F5E5B;
}

.social-media-support {
    text-align: end;
}

.page-footer .info-email a {
    text-decoration: none;
}

.footer-sales-support {
    display: grid;
    grid-template-columns: 1fr 0.7fr 1fr 0.7fr;
}

.page-footer .footer-sales-support .info-mobile {
    font-size: 13px;
}
.footer-location-icon{
    background: var(--color-white);
    width: 50px; 
    height: 50px; 
    margin-right: 1rem;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-location-icon span{
    font-size: 2rem;
    color: var(--color-dark);
}

@media(max-width: 767px) {
    .footer-sales-support {
        grid-template-columns: 1fr 0.7fr !important;
    }
    .social-media-support {
        grid-template-columns: 1fr;
    }
    .page-footer .footer-support {
        grid-template-columns: 1fr !important;
    }
    .page-footer .info-email span {
        padding: 5px !important;
        margin-left: 5px !important;
    }
    .page-footer .footer-support div {
        margin-bottom: 5px;
    }
    .page-footer .info-name {
        border-bottom: 1px solid #4c4747;
        width: auto;
    }
    .footer-card-list {
        padding-left: 0;
    }
    .footer-card-list li img {
        margin-bottom: 10px;
        width: 90px !important;
    }
    .student-breadcrumb h2 {
        font-size: 16px !important;
        padding-top: 5px !important;
        margin-bottom: 0;
    }
    .student-breadcrumb {
        margin-top: 10px !important;
    }
    .student-main-container {
        margin-top: 10px !important;
    }
}

.page-footer .footer-support {
    display: grid;
    grid-template-columns: 1fr 1.5fr 2fr;
    margin-bottom: 10px;
}

.page-footer .footer-support .info-name {
    font-size: 15px;
}

.page-footer .footer-support .info-mobile {
    font-size: 13px;
}

.page-footer .info-email {
    font-size: 14px;
    font-style: italic;
}

.page-footer .info-email span {
    border: 1px solid #919090;
    padding: 7px;
    margin-left: 10px;
    border-radius: 3px;
}

.page-footer .info-email .icon-whatsapp,
.page-footer .info-email .icon-mail2 {
    font-size: 14px;
    width: 20px;
    height: 20px;
    color: #cccbcb;
}

.page-footer .info-email .viber-icon:hover {
    background: #59267c;
}

.page-footer .info-email .viber-icon img {
    width: 14px;
}

.page-footer .info-email .icon-whatsapp:hover {
    background: #25d366;
    color: var(--color-white);
}

.page-footer .info-email .icon-mail2 {
    margin-right: 10px;
}

.page-footer .info-email .icon-mail2:hover {
    background: var(--primary-color);
    color: var(--color-white);
}

.footer-menu {
    position: relative;
    list-style: none;
    padding-left: 0;
}

.footer-menu a,
.footer-link {
    display: inline-block;
    padding-top: 4px;
    padding-bottom: 4px;
    color: var(--color-white);
    transition: all .2s ease;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
}
.footer-menu a i {
    color: #9FD4FF;
    padding-right: 7px;
    font-size: 18px;
}

.footer-menu a:hover,
.footer-link:hover {
    text-decoration: none;
    color: var(--color-white);
}

.footer-link {
    padding: 0;
    margin-bottom: 16px;
}

.footer-sosmed a {
    position: relative;
    display: inline-block;
    width: 30px;
    height: 30px;
    line-height: 32px;
    border-radius: 10px;
    text-align: center;
    font-size: 18px;
    background-color: var(--color-white);
    color: #ffff;
    transition: all .2s ease;
    text-decoration: none;
}

.footer-sosmed a:hover {
    text-decoration: none;
}

.footer-sosmed a:hover i{
    color: var(--color-white);
}

.footer-sosmed .facebook-icon i{
    color: #1877F2;
}
.footer-sosmed .facebook-icon:hover {
    background: #1877F2;
}

.footer-sosmed .whatsapp-icon i{
    color: #25D366;
}
.footer-sosmed .whatsapp-icon:hover {
    background: #25D366;
}

.footer-sosmed .in-icon i{
    color: #0077B5;
}
.footer-sosmed .in-icon:hover {
    background: #0077B5;
}

.footer-sosmed .youtube-icon i{
    color: #FF0000;
}
.footer-sosmed .youtube-icon:hover {
    background: #FF0000;
}

.footer-sosmed .tiktok-icon i{
    color: #25F4EE; 
    text-shadow: -2px -2px 0 #FE2C55, 2px 2px 0 #000000;
}

.footer-sosmed .tiktok-icon:hover {
    background: #25F4EE;
}

.footer-sosmed .insta-icon i{
    background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #F77737, #FFDC80);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-sosmed .insta-icon:hover {
    background: linear-gradient(45deg, #405DE6, #833AB4, #C13584, #F77737, #FFDC80);
}

/* .footer-sosmed .insta-icon:hover i{
    background: none;
    color: var(--color-white);
} */

.etutor-footer-info{
    background: rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    padding: 30px 25px;
}
.footer-branch{
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 0.3rem;
  }

  .footer-branch > * {
    display: flex;
    align-items: center; 
    justify-content: start; 
}

.footer-card-section {
    width: 100%;
    padding-top: 5px;
}

.footer-card-list {
    list-style-type: none;
    float: right;
    margin-bottom: 0;
}

.download-app{
    font-size: 16px;
}
.footer-download-list{
    margin-top: 20px;
    list-style-type: none;
    display: flex;
    flex-direction: column; 
    align-items: end;
    justify-content: center;
}

.footer-card-list li {
    display: inline-block;
    margin-bottom: 5px;
}
.footer-download-list li {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.footer-card-list li img {
    width: 90px;
    border-radius: 5px;
}

.footer-download-list img{
    width: 160px;
    border-radius: 10px;
}

.lower-footer {
    background: var(--primary-color);
    padding: 8px 0 0;
}

.lower-footer p {
    margin-bottom: .5rem;
}

@media (min-width: 768px){
    .download-app{
        margin-top: 4rem;
    }
    .footer-sosmed{
        margin-left: 20px;
    }
}

@media (max-width: 1200px){
    .footer-card-list li, .footer-download-list li{
        margin-bottom: 5px;
    }
}
@media(max-width:767px){
    .etutor-footer-info{
        padding: 10px !important;
    }
    .footer-branch{
        grid-template-columns: 2fr 1fr !important;
    }
    .download-app{
        margin-top: 20px;
    }
    .footer-download-list {
        padding-left: 0;
        flex-direction: row;
        justify-content: start;
    }
    .footer-download-list li{
        margin-right: 5px;
    }
}

#copyright {
    color: #e9e9e9;
}

#copyright a {
    text-decoration: none;
    color: var(--color-white);
}

.freevideo-thumb {
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.freevideo-thumb img {
    transition: transform 0.3s ease;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.freevideo-thumb:hover .play-overlay {
    opacity: 1;
}

.freevideo-thumb:hover img {
    transform: scale(1.05);
}

.play-btn {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.play-btn:hover {
    background: #fff;
    transform: scale(1.1);
    color: #333;
    text-decoration: none;
}

.play-icon {
    width: 24px;
    height: 24px;
    margin-left: 2px; /* Slight offset to center the triangle visually */
}

.card-freevideo {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.card-freevideo:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.body-freevideo {
    padding: 15px;
}

.freevideo-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 0;
    color: #333;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


/*================= authentication section =========================*/
.main-auth{
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden !important;
    top: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.main-auth .auth-start-circle{
    position: absolute;
    top: 25%;
    left: -250px;
    width:400px;
    height: 400px;
    background: var(--primary-dark);
    border: 1px solid var(--primary-dark);
    border-radius: 50%;
}

.main-auth .auth-end-figure{
    position: absolute;
    top: 10%;
    right: -250px;
}

.main-auth .auth-end-figure1{
    position: relative;
    width: 420px;
    height: 420px;
    background: var(--color-2);
    border-radius: 45px;
    transform: rotate(45deg);
    z-index: 2;
}

.main-auth .auth-end-figure2{
    position: relative;
    width: 420px;
    height: 420px;
    background: #339FD828;
    border-radius: 45px;
    transform: rotate(45deg);
    z-index: 1;
    top: -210px;
}

.parent-container {
    display: grid;
    place-items: center; 
    min-height: 100vh;
  }

.main-auth::-webkit-scrollbar {
    display: none; 
}

.auth-footer-bg{
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
.auth-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    border-radius: 30px;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    /* margin-top: 100px; */
    /* background-image: url('../images/etutor_board.png'); */
    /* background-size: 50%;
    background-repeat: no-repeat; */
    position: relative;
    z-index: 3;
    /* background: var(--primary-color); */
}
.auth-container a{
    text-decoration: none;
    color: var(--primary-color);
}

.text-sm{
    font-size: 14px;
}
.auth-container .auth-overlay{
    width: 100%;
    height: 100%;
    /* background: rgba(50, 144, 220, 0.95); */
    background: linear-gradient(
        to bottom,
        #3490DC 30%,
        #07477C 100%
    );
    /* border-bottom-left-radius: 30px;
    border-top-left-radius: 30px; */
    border-radius: 30px
}

@media(min-width: 768px){
    .auth-container .auth-card{
        padding-left: 20px;
        margin-left: 3rem;
        width: 80%;
        border-top-right-radius: 30px;
        border-bottom-right-radius: 30px;
    }
}


.auth-register {
    margin-top: 10px;
}

.auto-right-top{
    width: 100%;
    text-align: center;
}

.auto-right-top h3{
    font-family: "Spirax", system-ui;
    color: #ffc831;
    font-size: 1.5rem;
}
.auto-right-top h2{
    box-sizing: border-box;
    font-size: 2.3rem;
    text-transform: uppercase;
    font-family: "Sofia Sans Condensed", sans-serif;
    color: #201c59;
    text-align: center;
    letter-spacing: -0.02em;
    font-weight: 900;
    position: relative;
    -webkit-text-stroke: 1px var(--color-white);
    text-shadow: 1px 2px 5px var(--color-dark);
}

.auth-logo{
    width: 65%;
    margin: 35px auto;

}

.auth-container .img-1 {
    width: 100%;
}

.auth-container .img-2 {
    width: 200px;
}

.auth-container .img-3 {
    width: 190px;
    margin-top: 10px;
}
.auth-main-btn{
    background: var(--primary-color);
    color: var(--color-white);
    border-radius: 40px;
    padding: 4px 30px;
    border: 2px solid var(--primary-color);
}

.auth-main-btn:hover{
    color: var(--primary-color);
    background: var(--bg-primary);
    border-color: var(--primary-color);
}

.login-with-phone{
    padding: 4px 20px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color) !important;
    background: var(--color-white);
    font-weight: 600;
    border-radius: 10px;
}

.or-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #666;
    font-weight: bold;
    margin: 5px 0;
    position: relative;
}

.or-divider::before,
.or-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ccc;
    margin: 0 10px;
}


.auth-register .card-body {
    padding-top: 0;
}

.auth-register .card-header {
    padding: 0.25rem 1.25rem;
}

.auth-register .form-group {
    margin-bottom: 5px;
}

.auth-register .col-form-label {
    padding-bottom: calc(0.125rem + 1px);
    padding-top: 5px;
    font-size: 12px;
    color: var(--color-dark);
}

.auth-register .register-btn {
    padding: 2px 15px;
    margin-top: 5px;
}

.btn-send-otp{
    padding: 4px 15px;
    border-radius: 30px;
    background: #09035b;
    color: var(--color-white);
}

.auth-register .form-control {
    padding: 0.125rem 0.75rem;
    height: 30px;
}

.auth-register input#interests {
    background: transparent;
    border: 0;
    box-shadow: none;
    font-size: 11px;
    padding-top: 0;
    padding-bottom: 0;
}

.auth-register .interest-form-group {
    display: grid;
    grid-template-columns: auto 50px;
}

.auth-container .card-header {
    border-bottom: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 1rem 1rem 0;
    text-align: center;
}

.auth-container .card {
    border: 1px solid rgb(0 0 0 / 0);
}

.auth-container .form-control {
    border: 1px solid #ececec;
    box-shadow: rgba(0, 0, 0, 0.10) 0px 1px 2px;
}

.auth-register .user-welcome {
    padding-top: 70px !important;
}

.auth-container .user-welcome {
    padding-top: 50px;
}

@media (max-width: 767px) {
    .auth-container {
        grid-template-columns: 1fr;
        margin-top: 25px;
    }

    .auth-container .auth-card{
        border-radius: 1.2rem;
    }
    .auth-container .user-welcome {
        display: none;
    }
    .f-sm{
        font-size: 14px;
    }
    .have-account-mo p{
        margin-bottom: 0.8rem !important;
    }

    .have-account-mo a{
        background: var(--bg-primary);
        color: var(--primary-dark);
        padding: 1px 8px;
        border: 1px solid var(--primary-dark);
        border-radius: 10px;
    }
}

.auth-container .dont-have-account p {
    color: #ffca09;
}

.auth-container .dont-have-account a {
    display: inline-block;
    color: var(--color-white);
    background: #ffffff3d;
    padding: 4px 10px;
    font-size: 14px;
    text-decoration: none;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.auth-container .dont-have-account a:hover {
    color: var(--primary-color);
    background: var(--color-white);
}

.toggle-password {
    background: transparent !important;
}
.toggle-password:focus{
    box-shadow: none;
}


/*============================= student breadcrumb ==================================*/

.student{
    background: var(--color-white);
}

.student-breadcrumb {
    width: 100%;
    background: #dfebf5;
    margin-top: 20px;
}

.student-breadcrumb h2 {
    color: #116cb7;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.5px;
    padding-top: 10px;
    padding-bottom: 5px;
    /* line-height: 2; */
}

.student-top-header {
    z-index: 2;
    position: relative;
}

.student-top-header h2 {
    font-size: 18px;
    color: var(--color-dark);
    margin-top: 8px;
    font-weight: 600;
}

.student-top-header h2 span i {
    font-size: 18px;
    color: var(--color-white);
    background: var(--primary-color);
    border-radius: 10px;
    padding: 10px;
}

.student-top-header .student-top-right {
    display: grid;
    grid-template-columns: 1fr 280px;
    padding: 0.5rem;
}

.student-top-header .student-notification-icon {
    display: flex;
    justify-self: end;
    align-self: center;
    align-items: center;
    gap: 0.5rem;
}

.student-top-header .student-notification-icon .dropdown-item i {
    font-size: 16px !important;
}

.student-top-header .student-notification-icon .student-user-setting {
    display: inline;
}

.student-top-header .student-notification-icon .student-user-setting a {
    text-decoration: none;
    margin-right: 25px;
}

.student-notification-icon .user-header-i {
    font-size: 20px;
    color: var(--color-dark);
    border: 1px solid #CCDFF2;
    padding: 8px;
    border-radius: 5px;
    display: flex;
    align-self: center;
}

.student-top-header .student-details {
    display: flex;
    justify-content: end;
}

.student-top-header .student-details span {
    display: block;
}

.student-top-header .student-image {
    width: 40px;
    height: 40px;
    overflow: hidden;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.student-top-header .student-image img{
    width: 100%;
    object-fit: cover;
}
.student-top-header .student-name{
    background: var(--color-white);
    height: 40px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    padding: 8px 15px 5px;
}

.student-top-header .student-name a{
    text-decoration: none;
}

.student-top-header .student-details h5 {
    color: #232738;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0;
    
}

.student-top-header .student-details span {
    font-size: 12px;
    line-height: 1.5;
}

.student-top-header .student-notification-mobile {
    display: none !important;
}

@media (max-width: 767px) {
    .student-top-header {
        padding-left: 0;
        padding-right: 0;
    }
    .student-top-header h2 span i {
        font-size: 16px;
        padding: 8px;
    }
    .student-top-header h2 {
        font-size: 14px;
    }

    .user-header-menu-i{
        padding-top: 6px;
        color: var(--primary-color);
    }
    /* .student-top-right {
        display: none !important;
    } */
    .student-top-header .mobile-view-student-btn {
        margin-top: 5px;
        width: 40px;
        height: 40px;
    }
    .student-top-header .mobile-view-student-btn img {
        width: 40px;
        height: 40px;
        margin-left: -6px;
        margin-top: -1px;
    }
    .student-top-header .student-notification-mobile {
        display: block !important;
    }
    .student-notification-mobile .position-relative {
        margin-right: 8px;
    }
    .mobile-view-student-btn {
        border: 0;
        background: transparent;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        display: inline;
        background: var(--primary-color);
        color: #ffff;
        font-size: 20px;
        text-transform: uppercase;
        margin-left: auto;
        margin-left: 10px;
    }
    .mobile-view-student-btn img {
        border-radius: 50%;
        width: 35px;
        height: 35px;
        margin-left: -6px;
        margin-top: -4px;
    }
}

.student-main-container {
    position: relative;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    align-items: flex-start;
    column-gap: 20px;
}

.student-main-container .student-side-navbar {
    background: var(--color-white);
    z-index: 1;
    border-right: 1px solid #e9e9e9;
    box-shadow: rgba(0, 0, 0, 0.05) 1.95px 1.95px 1.6px;
    display: block;
}

.student-side-navbar {
    padding-left: 0;
    padding-right: 0;
}

.student-side-navbar .side-nav-title{
    color: var(--color-1);
    text-transform: uppercase;
    padding-top: 15px;
    padding-bottom: 15px;
    font-weight: 500;
    font-size: 15px;
}

.dashboard-notification {
    text-decoration: none;
    font-size: 13px;
}

/* .dashboard-notification .user-header-i {
    animation: shake 30s infinite;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
    animation-delay: 10s;
} */

@keyframes shake {
    10%,
    90% {
        transform: translate3d(-1px, 0, 0);
    }
    20%,
    80% {
        transform: translate3d(2px, 0, 0);
    }
    30%,
    50%,
    70% {
        transform: translate3d(-4px, 0, 0);
    }
    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

.text-pink {
    color: #f312d5 !important;
}

.text-orange {
    color: #f75003 !important;
}

.student-side-navbar .student-sidebar-list li {
    padding: 10px 15px;
    background: var(--color-white);
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: rgba(0, 0, 0, 0.07) 0px -3px 0px inset;

}

/* .student-side-navbar .student-sidebar-list li:hover {
    background: rgb(52 144 220 / 27%)
} */

.student-side-navbar .student-sidebar-list li:hover a,
.student-side-navbar .student-sidebar-list li:hover i {
    color: #116cb7;
}

.student-side-navbar .student-sidebar-list li.active{
    background: var(--bg-primary);
    width: 100%;
}

.student-side-navbar .student-sidebar-list li.active a,
.student-side-navbar .student-sidebar-list li.active i {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.student-side-navbar .student-sidebar-list a {
    color: var(--color-1);;
    padding: 0;
    font-weight: 500;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.student-side-navbar .student-sidebar-list li i {
    /* padding-right: 5px; */
    color: #6c757d;
    width: 30px;
}

.student-side-navbar .student-sidebar-list .sub-menu li{
    padding: 5px 7px;
    box-shadow: none;
    margin-bottom: 5px;
}

.student-side-navbar .student-sidebar-list .sub-menu li a{
    font-size: 14px;
}

.student-side-navbar .student-sidebar-list .sub-menu li i{
    width: 20px;
    font-size: 14px;
}

@media(min-width: 768px) {
    .student-container {
        min-height: calc( 100vh - 250px);
        padding-top: 15px;
    }
}

@media(max-width: 767px) {
    .student-main-container {
        grid-template-columns: minmax(0, 1fr);
    }
    .student-main-container .student-side-navbar,
    .student-main-content {
        height: auto !important;
    }
    .student-main-container .student-side-navbar {
        margin-bottom: 15px;
        position: absolute;
        top: 0;
        left: -10px;
        overflow: hidden;
        width: 0;
        height: 100%;
        transition: .5s ease;
        z-index: 999;
    }
    .student-top-header .student-notification-icon{
        justify-self: start;
        align-self: center;
    }
    .file-main-content,
    .notification-conatainer {
        height: auto !important;
    }
    .batch-switch-container .switch-button{
        padding: 3px 5px;
    }
}

.batch-switch-container{
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: #CCDFF2;
    border-radius: 6px;
    padding: 0.3rem;
    align-self: center;
}

.batch-switch-container h6{
    margin-bottom: 0;
    min-width: 8rem;
}

.batch-switch-container .switch-button{
    background: var(--color-white);
    display: flex;
    align-items: center;
    font-size: 0.8rem;
    border: 0;
    padding: 4px 8px;
    border-radius: 6px;
    color: var(--primary-color);
}

/* student wallet */
.student-wallet-container .avail-balamce{
    position: relative;
    background: var(--color-2);
    border-radius: 10px;
    padding: 15px;
    color: var(--color-white);
    overflow: hidden;
    margin-bottom: 10px;
}

.student-wallet-container .avail-balamce::before{
    content: "";
    background: rgba(255, 255, 255, 0.40);
    width: 65px;
    height: 55px;
    position: absolute;
    top: 0;
    right: 0;
}

.student-wallet-container .avail-balamce::after{
    content: "";
    background: rgba(255, 255, 255, 0.10);
    width: 90px;
    height: 55px;
    position: absolute;
    bottom: 0;
    right: 50px;
}

.student-wallet-container .wallet-balances{
    position: relative;
    background: var(--color-2);;
    border-radius: 10px;
    padding: 25px 15px;
    color: var(--color-white);
    overflow: hidden;
}

.student-wallet-container .wallet-balances::after{
    content: "";
    background: rgba(255, 255, 255, 0.10);
    width: 300px;
    position: absolute;
    left: -40px;
    top: 0;
    height: 125%;
    border-radius: 0 30px 80px 0;
    transform: rotate(27deg);
}

.student-wallet-container .avail-balamce .actual-balance{
    font-size: 22px;
    font-weight: 600;
}

.student-wallet-container .wallet-activities{
    display: block;
    background: var(--color-white);
    color: var(--color-dark);
    border-radius: 10px;
    padding: 15px 5px;
    box-shadow: var(--box-shadow);
    margin-bottom: 10px;
    text-decoration: none;
    font-weight: 500;
}

.student-wallet-container .wallet-activities span{
    display: in;
    position: relative;
    font-size: 20px;
    background: var(--color-2);;
    color: var(--color-white);
    padding: 10px 15px;
    border-radius: 10px;
    margin-right: 10px;
    overflow: hidden;
}

.student-wallet-container .wallet-activities span::after{
    content: "";
    background: rgba(255, 255, 255, 0.10);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    bottom: -23px;
    right: -13px;
}
/* movile navbar */

@media (min-width: 768px) {
    .student-top-header {
        position: sticky;
        top: 0;
    }
    .student-side-navbar {
        padding: 10px;
        position: sticky;
        top: 5rem;
        height: calc(100vh - 80px);
    }
    .news-feeds-contact {
        position: sticky;
        top: 5rem;
        height: calc(100vh - 95px);
        overflow-y: auto;
    }
    .news-feeds-contact::-webkit-scrollbar {
        width: 5px;
    }
    .news-feeds-contact::-webkit-scrollbar-track {
        background: var(--color-white);
    }
    .news-feeds-contact::-webkit-scrollbar-thumb {
        background-color: #c1c1c1;
        border-radius: 20px;
    }
    .student-content-wrapper {
        padding: 0 0 20px;
    }
}


/* student news feeds area */

.news-feeds {
    display: grid;
    position: relative;
    align-items: flex-start;
}

.main-news-home .student-home-block {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    column-gap: 10px;
    row-gap: 15px;
}
@media(max-width:991px) and (min-width: 768px){
    .main-news-home .student-home-block {       
        grid-template-columns: 1fr !important;
    }
}
@media(max-width:1250px) and (min-width: 992px){
    .main-news-home .student-home-block > .block-fourth {
        grid-column: span 2;
        order: 99;
    }
}

.student-home-block .student-dashboard-card {
    padding: 15px;
    background: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    border-radius: 10px;
    position: relative;
    width: 100%;
    /* z-index: 1; */
}

.student-home-block .student-dashboard-card::before{
    content: "";
    width: 90%;
    height: 100%;
    background: var(--color-white);
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: absolute;
    bottom: -8px;
    left: 5%;
    z-index: -1;

}

.student-dashboard-card .first-row i {
    float: right;
    font-size: 22px;
}

.student-dashboard-card .first-row span {
    color: var(--color-dark);
    font-weight: 500;
}

.student-dashboard-card .second-row {
    margin-top: 20px;
}

.student-dashboard-card .second-row span {
    float: right;
    font-weight: 600;
    color: var(--color-dark);
    font-size: 16px;
    padding: 0 13px;
    border-radius: 20px;
}

.student-dashboard-card .second-row .btn {
    padding: 3px 10px;
    text-decoration: none;
    font-size: 14px;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
}


/* first-block */

.student-home-block .block-first .first-row i {
    color: #eb30a3;
}

.student-home-block .block-first .second-row .btn {
    background: #eb30a3;
    color: var(--color-white);
}

.student-home-block .block-first .dashboard-count{
    color: #eb30a3;
    background: #eb30a32a;
}


/* second-block */

.student-home-block .block-second .first-row i {
    color: #e45124;
}

.student-home-block .block-second .second-row .btn {
    background: #e45124;
    color: var(--color-white);
}

.student-home-block .block-second .dashboard-count{
    color: #e45124;
    background: #e451242a;
}


/* third-block */

.student-home-block .block-third .first-row i {
    color: #0d6efd;
}

.student-home-block .block-third .second-row .btn {
    background: #0d6efd;
    color: var(--color-white);
}

.student-home-block .block-third .dashboard-count{
    color: #0d6efd;
    background: #0d6efd2a;
}

/* fourth block */

.student-home-block .block-fourth .first-row i {
    color: #8e24e4;
}

.student-home-block .block-fourth .second-row .btn {
    background: #8e24e4;
    color: var(--color-white);
}

.student-home-block .block-fourth .dashboard-count{
    color: #8e24e4;
    background: #8e24e42a;
}

/* fifth block */

.student-home-block .block-fifth .first-row i {
    color: #198754;
}

.student-home-block .block-fifth .second-row .btn {
    background: #198754;
    color: var(--color-white);
}

.student-home-block .block-fifth .dashboard-count{
    color: #198754;
    background: #1987542a;
}

/* sixth-block */

.student-home-block .block-sixth .first-row i {
    color: #e42424;
}

.student-home-block .block-sixth .second-row .btn {
    background: #e42424;
    color: var(--color-white);
}

.student-home-block .block-sixth .dashboard-count{
    color: #e42424;
    background: #e424242a;
}

@media (max-width: 767px) {
    .news-feeds {
        grid-template-columns: minmax(0, 1fr);
        overflow: hidden;
    }
    .main-news-home .student-home-block {
        grid-template-columns: repeat(2, 1fr) !important;
        width: 100%;
    }
    .main-news-home .student-home-block > .block-fourth {
        grid-column: span 2;
        order: 99;
    }
    .student-home-block .student-dashboard-card {
        padding: 10px 5px !important;
    }
    .student-dashboard-card span {
        font-size: 14px;
    }
    .student-dashboard-card .btn {
        font-size: 14px;
        padding: 3px 6px;
    }
    .student-dashboard-card i {
        font-size: 18px !important;
    }
    .news-feeds-contact .home-booking-details {
        height: auto !important;
    }
    .comment-view-section a,
    .comment-view-section .post-share-student span {
        font-size: 14px;
    }
    .news-post .post-share-student {
        margin-left: 10px !important;
    }
    .news-post .post-share-option a {
        font-size: 22px !important;
    }
}

@media (min-width: 768px) {
    .news-feeds {
        grid-template-columns: 1fr 250px;
        grid-column-gap: 15px;
    }
}

.news-feeds-list {
    margin-top: 20px;
    border-top: 1px solid #cfcccc;
    padding-top: 10px;
}

.news-feeds-list .news-post {
    margin-top: 15px;
    margin-bottom: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background: var(--color-white);
    border-radius: 7px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
}

.news-feeds-list .post-tutor-user {
    padding-left: 15px;
    padding-right: 15px;
    display: grid;
    grid-template-columns: 50px 1fr;
}

.news-feeds-list .post-tutor-user span {
    font-size: 14px;
}

.news-feeds-list .post-tutor-user a {
    text-decoration: none;
    color: var(--color-dark);
    font-size: 17px;
    font-weight: 600;
    padding-right: 10px;
}

.news-feeds-list .post-tutor-user img {
    width: 45px;
    border-radius: 50%;
}

.news-feeds-list .student-post-dec {
    font-size: 14px;
    margin: 10px 15px 0;
    text-align: justify;
    /* max-height: 90px;
    display: block;
    overflow: hidden;
    padding-bottom: 10px; */
}

.news-feeds-list .student-post-dec a {
    word-break: break-all;
}

.news-feeds-list .student-post-dec video,
.news-feeds-list .student-post-dec img {
    width: 100% !important;
}

.news-feeds-list .news-post p {
    font-size: 14px;
    text-align: justify;
}

.news-feeds-list .tutor-post-title {
    font-size: 17px;
    margin: 10px 15px;
}

.news-feeds-list h3 {
    font-size: 16px;
}

.news-post .comment-view-section {
    padding: 5px 15px 10px 5px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

.comment-view-section .write-comment-on-post a {
    cursor: pointer;
    text-decoration: none;
    color: #5c5c5c;
}

.comment-view-section .write-comment-on-post i,
.post-comment-share i {
    color: #0d6efd;
}

.news-post .post-share-student {
    margin-left: 20px;
    cursor: pointer;
    display: inline;
    text-decoration: none;
    color: #1C252E;
}

.comment-view-section .post-comment-share {
    justify-self: end;
}

.news-feeds-contact{
    background: var(--color-white);
    border-radius: 20px;
    padding: 1.5rem 1rem;
    border: 1px solid #f0efef;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}

.news-feeds-contact .all-contact-details a{
    color: #3b3b3b;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.6rem;
}

.news-feeds-contact .all-contact-details .contact-icons{
    color: var(--primary-color);
}

.news-feeds-contact .home-booking-details {
    
}

.news-feeds-contact a {
    display: block;
    text-decoration: none;
    color: #111111;
    font-size: 14px;
    padding-bottom: 5px;
    font-weight: 600;
}

.news-feeds-contact a i {
    color: #116cb7;
}

.news-feeds-contact .wallet-details {
    display: grid;
    grid-template-columns: 120px 1fr;
}

.news-feeds-contact .wallet-details span {
    font-size: 13px;
}

.news-post .post-share-option {
    position: absolute;
    top: -113%;
    right: 0;
    padding: 5px 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    background: var(--color-white);
    border-radius: 5px;
    display: none;
}

.post-share-student:hover .post-share-option {
    display: block;
}

.news-post .write-comment-student {
    display: none;
    padding: 10px 15px;
}

.post-comment-textarea {
    display: grid;
    grid-template-columns: 1fr 10px 30px;
}

.post-comment-textarea .text-area textarea {
    width: 100%;
    padding: 3px 10px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.post-comment-share .comment-count-button {
    text-decoration: none;
    color: #1e1d1d;
}

.post-comment-textarea .comment-arrow button {
    background: var(--primary-color);
    border: var(--primary-color);
    color: var(--color-white);
    border-radius: 3px;
}

.tutor-comment-list{
    margin-top: 10px;
}

.tutor-comment-list .single-comment {
    display: grid;
    grid-template-columns: 55px 1fr;
    grid-column-gap: 10px;
    margin-bottom: 10px;
}

.tutor-comment-list .commentter .comment-box{
    display: inline-block;
    background: #F0F2F5;
    padding: 5px 15px;
    border: 1px solid #F0F2F5;
    border-radius: 20px;
}

.tutor-comment-list i {
    font-size: 50px;
    color: #198754;
}

.tutor-comment-list .commentter h5 {
    display: inline;
    text-transform: capitalize;
    font-size: 16px;
}

.tutor-comment-list .commentter .commentter-mail {
    font-style: italic;
    font-weight: 400;
    font-size: 14px;
    color: #7c7c7c;
}

.tutor-comment-list .commentter .commentter-date {
    font-size: 13px;
}

.tutor-post-date{
    font-size: 14px;
}

.formated-date{
    font-size: 14px;
    color: #5d5d5d;
}

.news-post .post-share-option a {
    padding: 2px 3px;
    font-size: 28px;
}

.news-post .post-share-option a i:hover {
    color: var(--color-white);
    border-radius: 50%;
}

.post-share-option a .fa-facebook-f {
    color: #4267B2;
    padding: 5px 10px;
}

.post-share-option a .fa-facebook-f:hover {
    background: #4267B2;
}

.post-share-option a .fa-twitter {
    color: #00acee;
    padding: 5px 5px;
}

.post-share-option a .fa-twitter:hover {
    background: #00acee
}

.post-share-option a .fa-reddit-alien {
    color: #FF4500;
    padding: 5px 5px;
}

.post-share-option a .fa-reddit-alien:hover {
    background: #FF4500;
}

.post-share-option a .fa-telegram-plane {
    color: #229ED9;
    padding: 5px 8px;
}

.post-share-option a .fa-telegram-plane:hover {
    background: #229ED9;
}

.post-share-option a .fa-whatsapp {
    color: #25D366;
    padding: 5px 7px;
}

.post-share-option a .fa-whatsapp:hover {
    background: #25D366;
}

.post-share-option a .fa-linkedin-in {
    color: #0077b5;
    padding: 5px 8px;
}

.post-share-option a .fa-linkedin-in:hover {
    background: #0077b5;
}

.post-share-option a .fa-pinterest-p {
    color: #E60023;
    padding: 5px 8px;
}

.post-share-option a .fa-pinterest-p:hover {
    background: #E60023;
}

@media (max-width:767px) {
    .tutor-comment-list .single-comment {
        grid-template-columns: 45px 1fr !important;
    }
    .tutor-comment-list i {
        font-size: 42px;
    }
    .tutor-comment-list .commentter .message {
        font-size: 14px;
    }
}
.tutor-comment-list .commentter .message{
    color: #5a5a5a;
    font-size: 15px;
}

/* student booking */
.student-enroll-courses{
    background: var(--color-white);
    border: 1px solid #DDDDDD;
    padding: 15px 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: row; 
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.student-enroll-courses:hover{
    background: #CFF0FF;
}

.student-enroll-courses > div:last-child {
    margin-left: auto;
}

.student-enroll-courses .mdi{
    color: var(--secondary-color);
    font-size: 20px;
    padding-bottom: 5px;
}

.student-enroll-courses .enroll-status{
    font-size: 14px;
    color: var(--primary-color);
}

/* exam */

.batch-exam-list{
    background: var(--color-white);
    border: 1px solid #DDDDDD;
    padding: 15px 10px;
    border-radius: 10px;
    display: flex;
    flex-direction: row; 
    align-items: center;
    gap: 5px;
    margin-bottom: 15px;
}

.batch-exam-list .mdi{
    color: var(--secondary-color);
    font-size: 20px;
    padding-bottom: 5px;
}

.batch-exam-list > div:last-child {
    margin-left: auto;
}

.batch-exam-list:hover{
    background: #CFF0FF;
}
.batch-exam-list .exam-status{
    font-size: 14px;
    color: var(--primary-color);
}

/*========================= student new dashboard =============================*/
.studnt-content-layout{
    display: grid;
    grid-template-columns: 1fr 280px;
    gap: 10px;
}

@media(max-width: 767px){
    .studnt-content-layout{
        grid-template-columns: 1fr !important;
    }
}
/* .student-dashboard-container{
} */

.student-section-card{
    position: relative;
    width: 100%;
    padding: 1rem;
    border: 1px solid #f5f5f5;
    margin-bottom: 1.4rem;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    border-radius: 12px;
    background: var(--color-white);
}

.student-section-card .student-section-header{
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.class-card-icon{
    color: var(--primary-color);
}

.student-section-header h6{
    font-weight: 600;
}

.class-card-count{
    font-weight: 700;
    font-size: 15px;
    padding: 2px 15px;
    color: var(--primary-color);
    background: var(--bg-primary);
    border-radius: 20px;
}

.student-section-card .student-classrooms{
    padding: 10px 15px;
    box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px;
    margin-bottom: 10px;
    background: var(--color-white);
    border-radius: 12px;
}

/* student-classroom */

.main-student-classroom .student-classrooms {
    padding: 10px 15px;
    box-shadow: rgb(50 50 93 / 25%) 0px 2px 5px -1px, rgb(0 0 0 / 30%) 0px 1px 3px -1px;
    /* display: grid;
    grid-template-columns: 150px 1fr; */
    margin-bottom: 10px;
    background: #FAFAFA;
    border-radius: 3px;
    border: 1px solid #e3ecf5;
}

.student-classrooms .student-classroom-batch h5 {
    font-size: 14px;
    font-weight: 400;
}

.class-schedule{
    width: 100%;
    background: #FAFAFA;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
    padding: 10px 15px;
    border-radius: 5px;
    flex: 0 0 100%;
}

@media (min-width: 768px) {
    .class-schedule {
      flex: 0 0 calc(50% - 0.75rem);
    }
  }

.schedule-border{
    height: 1px;
    width: 98% !important;
    background: #DDDDDD;
    margin-top: 0.5rem !important;
    margin-left: auto;
    margin-right: auto;
}

.schedule-join-btn .btn{
    padding: 2px 10px;
}

.student-classrooms .student-classroom-batch h4 {
    font-size: 16px;
}

.student-classrooms .s-classroom-btn .btn {
    padding: 1px 3px;
    font-size: 13px;
    background: var(--primary-color);
    color: var(--color-white);
    border-radius: 5px;
    border: 1px solid var(--primary-color);
}
.student-classrooms .due-clear-btn{
    padding: 2px 5px;
    font-size: 14px;
    background: var(--color-red);
    color: var(--color-white);
    border-radius: 5px;
    border: 1px solid var(--color-red);
    text-decoration: none;
}

/* student enrolled section */

.student-enroll-section {
    margin-top: 5px;
}

.student-enroll-section .student-enroll-btn {
    padding: 3px 10px;
    background: var(--primary-color);
    color: var(--color-white);
    border-radius: 5px;
    text-decoration: none;
}

.student-enroll-section .btn {
    padding: 2px 7px;
    font-size: 13px;
}

@media(max-width:767px) {
    .main-student-classroom .student-classrooms {
        grid-template-columns: 1fr !important;
    }
    .student-main-container th,
    .student-main-container td {
        font-size: 14px !important;
        padding: 5px 5px !important;
    }
    .student-classroomlist-section {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }
    .student-main-content .container {
        padding-left: 0;
        padding-right: 0;
    }
    .student_verify_card {
        padding: 10px 0 !important;
    }
}


/* student exam card */

.student_exam_card {
    width: 100%;
    border: 0 !important;
}

.student_exam_card .card-header {
    padding: 10px 15px;
    text-align: center;
}

.student_exam_card .card-header h4 {
    font-size: 18px;
    text-align: center;
}

.student_exam_card .card-header h5 {
    font-size: 16px;
    text-align: center;
}

.student_exam_card .ul-list li label {
    font-size: 14px;
}

.student_exam_card .exam-submit-button {
    background: var(--primary-color);
    border: var(--primary-color);
    border-radius: 3px;
    color: var(--color-white);
    font-weight: 500;
    padding: 3px 15px;
}

.question-solution-remarks {
    font-size: 14px;
}

.question-solution,
.question-solution p,
.question-solution span {
    text-align: justify;
}

.show-result-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.show-result-header p {
    font-size: 14px;
    color: #1a1919;
    margin-bottom: 5px;
}

.view-evaluation {
    border-bottom: 1px solid #d8d8d8;
    padding-bottom: 5px;
}

.answer-details {
    margin-top: 15px;
}

.mcq-solution-sheet {
    border-bottom: 1px solid #d8d8d8;
    padding: 10px;
    margin-bottom: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    background: var(--color-white);
}

.mcq-solution-sheet .mcq-solution {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

.mcq-solution-sheet .correct-answer {
    border-right: 1px solid #a1a1a1;
}

.mcq-solution-sheet .correct-answer .icon-checkbox-checked {
    font-size: 20px;
    padding-right: 7px;
}

.mcq-solution-sheet h5 {
    font-size: 16px;
}

.MCQ-exam .mcq-question p img {
    max-width: 100%;
}

.MCQ-exam {
    width: 100%;
}

.MCQ-exam .owl-nav {
    position: absolute;
}

.MCQ-exam .owl-nav button span {
    background: var(--color-white);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 5px;
}

.MCQ-exam .owl-nav .owl-prev span{
    margin-right: 5px;
}

.mcq-submit-btn {
    position: absolute;
    right: 1rem;
    font-weight: 600;
    padding: 3px 10px;
    background: var(--secondary-color);
    color: var(--color-white);
    font-size: 15px;
    border: 1px solid var(--secondary-color);
    border-radius: 5px;
}

.mcq-submit-btn:hover{
    color: var(--color-white);
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.exam-submit-button {
    position: absolute;
    right: 2%;
    top: 3.5rem;
}

@media(min-width:768px) {
    .mcq-question-list {
        margin-top: 0 !important;
    }
    .mcq-check-option {
        overflow-y: auto;
        overflow-x: hidden;
        height: 315px;
    }
    .MCQ-exam .owl-item {
        height: 325px;
    }
    .MCQ-exam .mcq-question {
        overflow-y: auto;
        overflow-x: hidden;
        height: 315px;
        background: var(--bg-primary);
        padding: 10px 15px 0;
        border-radius: 10px;
    }
    .MCQ-exam .owl-nav {
        bottom: 2%;
        right: 0.1rem;
    }
    .MCQ-exam .owl-nav button span {
        padding: 5px 20px !important;
        font-size: 16px;
        font-weight: 600;
    }
    .MCQ-exam .owl-nav .owl-prev i {
        margin-right: 10px;
    }
    .MCQ-exam .owl-nav .owl-next i {
        margin-left: 10px;
    }
    .mcq-submit-btn {
        top: 1.5rem;
    }
    .exam-section .mcq-submit-btn {
        top: 1rem;
    }
    .mcq-countdown {
        text-align: right;
        color: var(--color-red);
    }
    /* mcq-dots */
    .MCQ-exam .owl-dots {
        position: absolute;
        margin-top: 10px;
        counter-reset: dots;
        text-align: center;
        height: 60px;
        bottom: -90px;
        left: 0;
        right: 0;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
    }
    .MCQ-exam .owl-dot:before {
        counter-increment: dots;
        content: counter(dots);
    }
    .MCQ-exam .owl-dots .owl-dot {
        width: 30px;
        height: 30px;
        border-radius: 5px;
        background: var(--primary-color);
        color: var(--color-white);
        margin-right: 5px;
        margin-bottom: 5px;
    }
    .MCQ-exam .owl-dots .active {
        background: var(--primary-dark);
    }
    /* mcq-dots */
    /* .mcq-question {
        border-right: 2px solid var(--primary-color);
    } */
}


/* @media(max-width:1099px) and (min-width:576px) {
    .mcq-check-option {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 10px;
    }
} */

@media(max-width:767px) {
    .mcq-question-list {
        /* margin-left: 2rem;
        margin-right: 2rem; */
        margin-top: 1.5rem !important;
    }
    /* .mcq-check-option {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        grid-gap: 10px;
    } */
    .MCQ-exam .owl-item {
        height: auto;
    }
    .MCQ-exam .owl-nav {
        top: 0;
        width: 100%;
    }
    .MCQ-exam .owl-nav .owl-next {
        float: right;
    }
    .MCQ-exam .owl-nav button span {
        padding: 5px 10px !important;
        font-size: 16px;
    }
    .MCQ-exam .owl-nav i {
        font-size: 16px;
        padding: 3px;
    }
    .mcq-submit-btn {
        top: 10rem;
    }
    .mcq-countdown {
        text-align: left;
    }
    .student_exam_card .card-header h4 {
        font-size: 16px;
    }
    .student_exam_card .card-header h5 {
        font-size: 14px;
    }
}

@media(max-width:576px) {
    .mcq-question-list h6 p audio,
    .mcq-question-list h5 p audio {
        width: 100%;
    }
}

.mcq-question {
    /* max-height: 300px; */
    overflow: hidden;
}

.mcq-question p img {
    overflow-y: scroll;
}

.mcq-check-option .mcq-qstn-row {
    display: grid;
    grid-template-columns: 30px 1fr 20px;
    border: 1px solid #A6A6A6;
    padding: 10px 10px;
    border-radius: 10px;
    margin-bottom: 10px;

}

.mcq-check-option .mcq-qstn-row p {
    margin-bottom: 0;

}

.mcq-check-option .mcq-option {
    font-weight: 500;
    text-transform: uppercase;
}

.mcq-question-list h6 p,
.mcq-question-list h5 p,
.mcq-solution-sheet h5 p,
.solution-ans-list p{
    display: inline;
}

.mcq-question-list {
    /* border-bottom: 1px solid #d8d8d8; */
    padding: 10px;
    margin-top: 1rem;
    margin-bottom: 15px;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
}

.mcq-question-list h6 p audio,
.mcq-question-list h5 p audio {
    display: block;
}

.mcq-check-option .mcq-qstn-row audio {
    width: 100%;
    height: 35px;
}

@media(max-width:767px) {
    .mcq-solution-sheet .mcq-solution {
        grid-template-columns: 1fr;
    }
    .show-result-header {
        grid-template-columns: 1fr 1fr;
    }
    .mcq-solution-sheet .correct-answer {
        border-right: 0;
    }
    .public-question-list .public-question-header .d-flex {
        display: block !important;
    }
    .public-question-list .public-question-header .d-flex span {
        display: block;
    }
}

@keyframes click-wave {
    0% {
        height: 25px;
        width: 25px;
        opacity: 0.35;
        position: relative;
    }
    100% {
        height: 200px;
        width: 200px;
        margin-left: -80px;
        margin-top: -80px;
        opacity: 0;
    }
}

/* .mcq-check-option input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    top: 13.33333px;
    right: 0;
    bottom: 0;
    left: 0;
    height: 25px;
    width: 25px;
    transition: all 0.15s ease-out 0s;
    background: #cbd1d8;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    display: inline-block;
    margin-right: 0.5rem;
    outline: none;
    position: relative;
    z-index: 1000;
    border-radius: 50%;
    margin-top: -12px;
}

.mcq-check-option input:hover {
    background: #9faab7;
}

.mcq-check-option input:checked {
    background: var(--primary-color);
    border-radius: 50%;
}

.mcq-check-option input:checked::before {
    height: 25px;
    width: 25px;
    position: absolute;
    content: '✔';
    display: inline-block;
    font-size: 18px;
    text-align: center;
    line-height: 25px;
}

.mcq-check-option input:checked::after {
    -webkit-animation: click-wave 0.65s;
    -moz-animation: click-wave 0.65s;
    animation: click-wave 0.65s;
    background: var(--primary-color);
    content: '';
    display: block;
    position: relative;
    z-index: 100;
    border-radius: 50%;
} */

.mcq-check-option input {
    appearance: none;
    position: relative;
    height: 20px;
    width: 20px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    display: inline-block;
    margin-right: 0.75rem;
    outline: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    margin-top: -2px;
    vertical-align: middle;
}

.mcq-check-option input::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: #a2a5a8;
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: checkmark-appear 0.2s ease-out forwards;
}

.mcq-check-option input:hover {
    background: linear-gradient(135deg, #f1f5f9 0%, #cbd5e1 100%);
    border-color: #94a3b8;
    transform: scale(1.05);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), 0 2px 4px rgba(0, 0, 0, 0.06);
}

.mcq-check-option input:focus {
    border-color: var(--primary-color, #3b82f6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.mcq-check-option input:checked {
    background: linear-gradient(135deg, var(--primary-color, #3b82f6) 0%, var(--primary-color-dark, #2563eb) 100%);
    border-color: var(--primary-color, #3b82f6);
    transform: scale(1);
}

.mcq-check-option input:checked::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 8px;
    height: 8px;
    background: var(--color-white);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    animation: checkmark-appear 0.2s ease-out forwards;
}

.mcq-check-option input:checked:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.mcq-check-option input:active {
    transform: scale(0.95);
}

/* Smooth appear animation for the inner dot */
@keyframes checkmark-appear {
    0% {
        transform: translate(-50%, -50%) scale(0);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
    }
}

/* Modern ripple effect animation */
@keyframes click-wave {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
    100% {
        transform: scale(1);
        opacity: 0;
        box-shadow: 0 0 0 10px rgba(59, 130, 246, 0);
    }
}

.mcq-check-option input:checked::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    animation: click-wave 0.6s ease-out;
    pointer-events: none;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .mcq-check-option input {
        background: var(--color-white);
        border-color: #a2a5a8;
    }
    
    .mcq-check-option input:hover {
        background: var(--bg-primary);
        border-color: var(--primary-color);
    }
}

/* achivement  */
.achivement-container .achivement-card{
    background: var(--bg-primary);
    padding: 5px 10px;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.achivement-container .achivement-card .achive-intro{
    display: grid;
    grid-template-columns: 100px 1fr;
    grid-gap: 5px;
}

.achive-feedback{
    background: var(--color-white);
    border-radius: 10px;
    padding: 5px 8px;
}

.achive-thumb img{
    width: 100%;
}

.achive-feedback p{
    background: var(--color-white);
    margin-top: 0;
    font-size: 14px;
}

.achive-info{
    margin-top: 1rem;
}

.achive-info .achiver-name{
    font-weight: 600;
}

.achivement-details {
    display: flex;
    justify-content: space-between; 
}

.achive-info .achivement-on{
    font-size: 14px;
    color: var(--secondary-color);
}

.achive-info .achivement-in{
    font-size: 14px;
    color: var(--primary-dark);
}

/* public exam system */

.public-exam-section, .exam-section {
    position: relative;
    background: var(--color-white);
    padding: 20px 15px;
    margin-bottom: 70px;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
}

.public-exam-section .public-question-header, .exam-section .exam-header{
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px solid #dadcdd;
}
.public-exam-section .public-question-header .user-details{
    display: flex;
    justify-content: space-between;
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 768px) { 
    .public-exam-section .public-question-header .user-details {
        flex-direction: column; 
        align-items: flex-start; 
    }

    .public-exam-section .public-question-header .user-details > span {
        width: 100%; 
        margin-bottom: 5px;
    }
}

.public-exam-section .public-result-list {
    padding: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.public-exam-section .notice-card {
    width: 100%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    background: var(--color-white);
    border-radius: 5px;
}

.public-exam-section .notice-card {
    text-decoration: none;
    font-size: 20px;
}

.public-set-list{
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    padding: 10px;
    border: 1px solid #DDDDDD;
    box-shadow: var(--box-shadow);
    border-radius: 10px;
    margin-bottom: 15px;
}

.public-set-list h6 {
    flex: 1;             
    text-align: left;    
    margin: 0;           
}

.exam-start-btn{
    background: var(--secondary-color);
    color: var(--color-white);
    padding: 3px 15px;
    border: 2px solid var(--secondary-color);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}
.exam-start-btn:hover{
    background: var(--color-white);
    color: var(--secondary-color);
}

/* show booking courses */

.show-booking-courses {
    padding: 10px;
}

.show-booking-courses .single-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 5px 10px;
}

.show-booking-courses .single-details:nth-child(even) {
    background: #3490dc1c;
}

.enroll_form .form-group {
    margin-bottom: 5px;
}

.enroll_form .form-control {
    border: 0;
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
}

.enroll_form .enroll-form-control {
    width: 100%;
    border: 0;
    box-shadow: rgb(0 0 0 / 16%) 0px 1px 4px;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    border-radius: 0.25rem;
    font-weight: 400;
    line-height: 1.5;
}

.enroll_form select.enroll-form-control:focus {
    color: var(--primary-color);
    border: 0;
}

/* iframe style */
.embed-responsive {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
  }
  
  .embed-responsive::before {
    display: block;
    content: "";
  }
  
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
  }
  
  /* Aspect ratio classes */
  .embed-responsive-21by9::before {
    padding-top: 42.8571%; /* 9 / 21 * 100 */
  }
  
  .embed-responsive-16by9::before {
    padding-top: 56.25%; /* 9 / 16 * 100 */
  }
  
  .embed-responsive-4by3::before {
    padding-top: 75%; /* 3 / 4 * 100 */
  }
  
  .embed-responsive-1by1::before {
    padding-top: 100%; /* 1 / 1 * 100 */
  }
  


/* booking processing */

.processing {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 5px;
}

.processing .point {
    width: 15px;
    height: 15px;
    border-radius: 50%;
}

.processing .line {
    width: 100%;
    height: 8px;
    margin-top: 3px;
    border-radius: 3px;
}

.processing-classroom {
    text-align: end;
    display: inline;
    margin-left: -60px;
}

.processing-verify {
    margin-left: -30px;
}

.processing .first-step {
    display: grid;
    grid-template-columns: 15px auto 15px;
    column-gap: 5px;
}

.processing .second-step {
    display: grid;
    grid-template-columns: auto 15px;
    column-gap: 5px;
}

.booking-processing .first-step .f-point {
    background: var(--primary-color);
}

.booking-processing .point,
.booking-processing .line {
    background-color: #d9d9d9;
}

.verify-processing .first-step div {
    background: var(--primary-color);
}

.verify-processing .second-step div {
    background: #d9d9d9;
}


/* student dashboard */
@media(min-width: 768px){
    .page-footer .container-fluid, 
    .categories-section .container-fluid,
    .free-exam-page .container-fluid{
        width: 95%;
    }
}


.dashboard-card {
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 4px;
    font-weight: 700;
}

.dashboard-card h2 {
    margin: 20px 0;
    font-weight: 700;
    color: var(--color-white);
    font-size: 40px;
}

.dashboard-card p {
    margin: 20px 0;
    font-weight: 700;
    color: var(--color-white);
    opacity: .8;
}

.dashboard-card h2 a {
    color: var(--color-white);
    font-weight: 700;
    text-decoration: underline;
    font-size: 14px;
    float: right;
}

.block-1 {
    background: #8798cc;
    border-top: 6px solid #526394;
}

.block-2 {
    background: #55607e;
    border-top: 6px solid #3c455a;
}

.block-3 {
    background: #81ccb8;
    border-top: 6px solid #5aaf95;
}

.block-4 {
    background: #cc66a5;
    border-top: 6px solid #9a4d7d;
}

.block-5 {
    background: #e88043;
    border-top: 6px solid #f5610a;
}

.block-6 {
    background: #ed4842;
    border-top: 6px solid #ed1811;
}


/* profile section */

.show-student-profile {
    padding: 10px;
}

.show-student-profile .single-details {
    display: grid;
    grid-template-columns: 1fr 2fr;
    padding: 5px 10px;
}

.show-student-profile .single-details:nth-child(even) {
    background: #3490dc1c;
}


/* chatroom section */

.chatroom-section {
    position: relative;
}

.chatroom-section .chatroom-header {
    margin-bottom: 20px;
}

.chatroom-section h6 {
    font-weight: 600;
    margin-left: 15px;
}

.chatroom-section .chatroom-header a {
    color: #3b3b3b;
    display: inline;
    font-weight: 600;
    text-align: center;
}

@media(max-width:767px) {
    .chatroom-section .chatroom-header a {
        padding: 5px 2px !important;
        font-size: 12px !important;
    }
    .col-xs-hidden {
        display: none !important;
    }
    .chatroom-section h6 {
        margin-left: 0 !important;
        font-size: 15px !important;
    }
    .student_verify_card {
        height: auto !important;
    }
}

.chatroom-section .chatroom-header a.active {
    border-bottom: 5px double var(--primary-color);
    color: var(--primary-color);
}

.chatroom-section .chatroom-title {
    padding: 4px 10px;
    background: #3490dc94;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}

.chatroom-section .chatroom-title h6 {
    color: var(--color-white);
}

.chatroom-section .only-chatroom {
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    position: relative;
}

.chatroom-section .chat-box {
    overflow-y: scroll;
    width: 100%;
    padding: 10px 20px 0;
    max-height: calc( 45vh);
    background: #eee;
}

.chatroom-section .chat-box::-webkit-scrollbar {
    width: 1px;
}

.chatroom-section .chat-box::-webkit-scrollbar-track {
    background: var(--color-white);
}

.chatroom-section .chat-box::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 20px;
}

.chatroom-section .posted-chat {
    margin: 15px 0;
    align-items: flex-end;
}

.chatroom-section .posted-chat .chat {
    margin: 15px 0;
    width: 80%;
    float: bottom;
}

.chatroom-section .chat-from-self {
    margin-left: auto !important;
    margin-right: 0;
}

.chatroom-section .chat-from-self .user-message {
    background: #0d6efd24;
    border-bottom-right-radius: 0;
}

.chatroom-section .chat-from-other .user-message {
    border: 1px solid #eff0f1;
    border-bottom-left-radius: 0;
}

.chatroom-section .user-message {
    padding: 10px 15px;
    background: var(--color-white);
    border-radius: 8px;
    overflow-wrap: break-word;
}

.chatroom-section .your-message .message-send {
    border: 0;
    background: transparent;
}

.chatroom-section .your-message .message-send i {
    color: var(--primary-color);
}

.your-message select {
    width: 100%;
    padding: 5px 4px;
    border-color: rgb(182, 178, 178);
    border-radius: 5px;
    font-size: 13px;
    margin-top: 5px;
}

.your-message select:focus {
    border-color: #eff0f1;
}

@media(max-width: 678px) {
    .your-message .col-3 {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .your-message .col-3 select {
        font-size: 12px !important;
        padding: 3px 1px !important;
    }
}


/* video player model section */

#videoModal .modal-header .modal-title {
    margin-left: 2rem;
}

#videoModal .modal-header .close {
    padding: 0;
    margin: -1rem 2rem -1rem auto;
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #eee;
    text-shadow: 0 1px 0 var(--color-white);
    opacity: .7;
    background-color: transparent;
    border: 0;
}

#videoModal .modal-header .close:hover {
    opacity: .9;
}

#videoModal .modal-dialog .modal-content {
    background: rgba(0, 0, 0, .7);
}

.chatroom-section .create-new-file {
    padding: 30px 40px;
    font-size: 35px;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    position: relative;
    margin-top: 20px;
}

.chatroom-section .file-upload-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    color: var(--color-white);
    font-size: 15px;
    padding-top: 40px;
    opacity: 0;
}

.chatroom-section .create-new-file:hover .file-upload-hover {
    opacity: 1;
}

.chatroom-section .single-file .user-files {
    /* height: 32px; */
}

.chatroom-section .single-file .user-files h4 {
    font-size: 16px;
    margin-bottom: 0;
}

.chatroom-section .single-file .user-files h4 a {
    color: #1c252e;
}

.chatroom-section .single-file .user-files h4 a:hover {
    color: var(--primary-color);
}

.chatroom-section .single-file .user-name-time {
    font-size: 14px;
}

.chatroom-section .single-file .user-name-time span {
    font-size: 10px;
    font-weight: 400;
}

.chatroom-section .demo-file {
    overflow-y: hidden;
    width: 100%;
    height: 120px;
    border: 1px solid #ccccce;
    display: block;
    overflow-x: hidden;
}

.chatroom-section .hidden-lx {
    display: none;
}

@media(max-width:767px) {
    .chatroom-section .single-file {
        margin-top: 5px;
        margin-bottom: 10px;
    }
    .chatroom-section .demo-file {
        display: none;
    }
    .chatroom-section .user-files {
        text-align: center;
        height: auto !important;
    }
    .chatroom-section .user-name-time {
        padding-left: 10px;
        text-align: center;
        font-size: 12px !important;
        line-height: 1;
    }
    .chatroom-section .hidden-lx {
        display: block;
        text-align: center;
    }
    .chatroom-section .hidden-lx span {
        font-size: 50px;
        color: rgb(238, 67, 67);
    }
    .chatroom-section .single-file .user-files h4,
    .chatroom-section .video-btn h5 {
        font-size: 14px !important;
    }
    .chatroom-section .classroom-videos .upload-user {
        font-size: 12px !important;
    }
    .chatroom-section .upload-user span {
        font-size: 10px !important;
    }
}

.messanger-section {
    overflow-y: scroll;
    width: 100%;
    height: calc( 70vh - 100px);
    border-right: 1px solid #ccc;
    box-shadow: rgba(0, 0, 0, 0.15) 1.95px -1.05px 2.6px;
    padding-top: 10px;
    padding-bottom: 15px;
}

@media(max-width: 767px) {
    .messanger-section {
        width: 100%;
        height: auto !important;
        max-height: 100%;
    }
}

.messanger-section::-webkit-scrollbar {
    width: 2px;
}

.messanger-section::-webkit-scrollbar-track {
    background: var(--color-white);
}

.messanger-section::-webkit-scrollbar-thumb {
    background-color: #3490dc96;
    border-radius: 20px;
}

.student-messenger-group {
    padding: 5px 15px;
}

.student-messenger-section img {
    border-radius: 50%;
}

.student-messenger-list {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    color: var(--color-dark);
}

.messenger-start-message {
    padding: 200px 50px;
    text-align: center;
    display: block;
}

.student-sidebar-list {
    padding-top: 0 !important;
}

@media (max-width:767px) {
    .messenger-start-message {
        display: none;
    }
}


/* .chatroom-section .demo-file::-webkit-scrollbar {
    width: 1px;
}

.chatroom-section .demo-file::-webkit-scrollbar-track {
    background: var(--color-white);
}

.chatroom-section .demo-file::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 20px;
} */

.chatroom-section .classroom-videos .upload-user {
    color: #3f50f6;
    font-size: 14px;
}

.chatroom-section .upload-user span {
    font-size: 11px;
    color: #686c6f;
    display: block;
}

.chatroom-section .video-btn {
    /* border: 1px solid #eee; */
    padding: 20px;
    padding-bottom: 0;
    width: 100%;
    /* height: 150px; */
    text-align: center;
}

.chatroom-section .video-btn a {
    text-decoration: none;
}

.chatroom-section .video-btn .view-video span {
    font-size: 50px;
    color: var(--primary-color);
}

.chatroom-section .video-btn h5 {
    font-size: 16px;
    margin-top: 10px;
}

.chatroom-section .chatroom-video-action {
    text-align: center;
}

.student-notification {
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 4px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    display: grid;
    grid-template-columns: 50px 1fr;
    background: var(--color-white);
}

.student-notification .notification-icon {
    padding-top: 10px;
}

.student-notification .notification-icon span {
    font-size: 28px;
    color: var(--primary-color);
    padding-top: 5px;
}

.student-notification h3 {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 600;
}

.student-notification span {
    font-size: 12px;
}

.student-notification .notification-message {
    color: #767676;
    width: 100%;
    font-size: 14px;
    overflow: hidden;
    line-break: auto;
    height: 20px;
}


/* .student-notification .notification-message p,
.student-notification .notification-message span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
} */

.student-notification .notification-message img,
.student-notification .notification-message iframe {
    width: 70% !important;
}

.notification-detail-message img,
.notification-detail-message iframe {
    width: 70% !important;
}

@media(max-width:767px) {
    .student-notification .notification-message img,
    .student-notification .notification-message iframe {
        width: 100% !important;
    }
    .notification-detail-message img,
    .notification-detail-message iframe {
        width: 100% !important;
    }
}

.notification-detail-title h4 {
    font-size: 16px;
    font-weight: 600;
}

.notification-detail-message {
    font-size: 14px;
    text-align: justify;
}

.notification-detail-group {
    padding-top: 5px;
    border-top: 1px solid #dfdfdf;
    font-size: 14px;
}

.notification-detail-group span {
    padding-left: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
}

.notification-detail-date span {
    font-size: 11px;
    color: var(--primary-color);
}

.search-area-container {
    background: var(--color-white);
    height: calc( 100vh - 220px);
    padding: 15px 20px;
}

.search-area-container .single-search-area {
    margin-bottom: 10px;
    border-bottom: 1px solid #eff0f1;
    padding-bottom: 10px;
}

.search-area-container .single-search-area li a {
    color: var(--primary-color);
    font-weight: 500;
}


/*===================== inquiry section ====================*/

.inquiry-section {
    position: fixed;
    top: 305px;
    /* left: 0; */
    /* left: -300px; */
    overflow: hidden;
    display: grid;
    grid-template-columns: 300px 37px;
    z-index: 999;
}

.inquiry-section .inquiry-seen-btn {
    background: var(--color-red);
    padding: 10px 8px;
    cursor: pointer;
    height: 120px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.inquiry-section .inquiry-seen-btn i {
    font-size: 22px;
    -webkit-animation: infiniteRotate 3s linear infinite; /* Safari */
}
 /* Safari 4.0 - 8.0 */
 @-webkit-keyframes infiniteRotate {    
    0% { color: #ffd700; }
    50% { color: rgb(100, 242, 255); }
    100% { color: #ffd700; }
}
   
.inquiry-section .inquiry-seen-btn span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: block;
    padding-top: 5px;
    color: var(--color-white);
    font-size: 14px;
    letter-spacing: 1px;
    -webkit-animation: infiniteRotate 3s linear infinite; /* Safari */
}

.inquiry-section .inquiry-details {
    width: 300px;
    background: #f0efef;
    padding: 10px;
    border: 1px solid var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}


/* .inquiry-section:hover {
    right: 0;
} */

.inquiry-section .inquiry-input {
    width: 100%;
    border: 1px solid #ddd;
    background: var(--color-white);
    border-radius: 5px;
    margin-bottom: 6px;
    padding: 3px 10px;
}

.inquiry-section .inquiry-input::placeholder {
    font-size: 14px;
}

textarea.inquiry-input,
select.inquiry-input {
    font-size: 14px;
    color: #3b3b3b;
}

.inquiry-section button {
    width: 100%;
    color: var(--color-white);
    /* background: var(--primary-color); */
    padding: 3px;
    /* border: 1px solid var(--primary-color); */
    border-radius: 4px;
}

@media(max-width:767px) {
    .inquiry-section .inquiry-seen-btn i,
    .call-us-section .call-us-seen-btn i {
        font-size: 12px !important;
    }
    .inquiry-section .inquiry-seen-btn span,
    .call-us-section .call-us-seen-btn span {
        font-size: 10px !important;
        padding-top: 1px !important;
    }
    .inquiry-section {
        grid-template-columns: 300px 25px !important;
        top: 245px !important;
    }
    .call-us-section {
        display: none !important;
        visibility: hidden !important;
        /* top: 165px !important; */
        /* grid-template-columns: 180px 25px !important; */
    }
    .inquiry-section .inquiry-seen-btn,
    .call-us-section .call-us-seen-btn {
        padding: 1px 3px !important;
        height: 85px !important;
    }
}


/*==================== call us section ========================*/

.call-us-section {
    position: fixed;
    top: 175px;
    /* left: 0; */
    /* left: -180px; */
    overflow: hidden;
    display: grid;
    grid-template-columns: 180px 37px;
    z-index: 999;
}

.call-us-section .call-us-seen-btn {
    background: var(--primary-color);
    padding: 10px 8px;
    cursor: pointer;
    height: 120px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.call-us-section .call-us-seen-btn i {
    font-size: 22px;
    -webkit-animation: infiniteColor 3s linear infinite; /* Safari */
}
@-webkit-keyframes infiniteColor {    
    0% { color: rgb(170, 247, 107); }
    50% { color: rgb(255, 167, 116); }
    100% { color: rgb(170, 247, 107); }
}

.call-us-section .call-us-seen-btn span {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: block;
    padding-top: 5px;
    color: var(--color-white);
    font-size: 14px;
    letter-spacing: 1px;
    -webkit-animation: infiniteColor 3s linear infinite; /* Safari */
}

.call-us-section .call-us-details {
    width: 180px;
    background: #f0efef;
    padding: 5px;
    border: 1px solid var(--primary-color);
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    transition: 1s;
    animation-delay: 2s;
}

.call-us-section .call-us-details ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 0;
}

.call-us-section .call-us-details ul li {
    padding: 3px 10px;
}

.call-us-section .call-us-details ul li a {
    text-decoration: none;
    font-size: 14px;
}


/* .call-us-section:hover {
    right: 0;
} */

.call-us-section .call-us-details span {
    color: var(--primary-color);
    padding-right: 5px;
}


/* blog */
.blog-banner{
    position: relative;
    background-image: url(../images/blog-banner.png);
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    padding: 3rem 0;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.half-moon {
    position: absolute;
    width: 500px;
    height: 500px;
    background: rgba(149, 157, 165, 0.2);
    border-radius: 50%;
    transform: rotate(325deg);
    top: -100px;
    right: -76px;
}
.half-moon::after {
    content: "";
    width: 500px;
    height: 500px;
    background: rgba(0, 0, 0, .4);
    border-radius: 50%;
    transform: rotate(90deg);
    position: absolute;
    left: 35%;
}

.blog-banner h1{
    font-size: 15px;
    color: var(--color-white);
    text-transform: uppercase;
}

.blog-banner .nepal-first{
    font-family: "Bitter", serif;
    color: #F6801C;
    font-size: 48px;
    font-weight: 800;
    -webkit-text-stroke: 1px var(--color-white);
    text-shadow: 2px 2px 2px var(--color-white);
}

.blog-banner .eturor-tutoring{
    font-family: "Bitter", serif;
    color: var(--color-white);
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 2rem;
}

.blog-banner .blog-view-more{
    background: var(--color-white);
    padding: 5px 20px;
    color: var(--color-dark);
    text-decoration: none;
}

.blog-container {
    padding: 0 0 20px;
    margin-bottom: 30px;
    font-family: "Bitter", serif;
}

.blog-section-header{
    font-family: 'Poppins', sans-serif;
    position: relative;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-dark);
}
.blog-section-header::before {
    content: "";
    width: 50px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 5px;
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
}
.blog-card{
    position: relative;
}

.b-publish-date{
    position: absolute;
    background: #1D1C2D;
    color: var(--color-white);
    padding: 10px 20px;
}
.b-publish-date .b-day {
    font-size: 28px;
    font-weight: bold;
    display: block;
    line-height: 1;
}

.b-publish-date .b-month {
    font-size: 14px;
    text-transform: capitalize;
    display: block;
    text-align: center;
}

.blog-card .blog-img{
    width: 100%;
    height: 230px;
    overflow: hidden;
}


.blog-card img{
    width: 100%;
}

.blog-container .popular-blog-container{
    padding-bottom: 0.8rem;
    box-shadow: rgba(33, 35, 38, 0.1) 0px 10px 10px -10px;
}

.blog-card .blog-details {
    background: var(--color-white);
    padding: 5px 0;
    position: relative;
}

.blog-card .blog-details h4 {
    font-size: 20px;
    font-weight: 500;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;       
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card .btn-read-more{
    background: var(--color-dark);
    padding: 5px 15px;
    border-radius: 20px;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-white);
}

.all-blog .all-blog-bg{
    position: relative;
}
.blog-filters{
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
}
.blog-filters .blog-search-btn{
    background: var(--primary-color);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border: 1px solid var(--primary-color);
}

.all-blog .blog-card{
    margin-bottom: 15px;
}

.all-blog-header{
    width: 100%;
    position: absolute;
    background: rgba(32, 28, 89, .54);
    padding-top: 5rem;
    padding-bottom: 5rem;
    bottom: -17%;
}

.all-blog-header h2{
    font-family: 'Poppins', sans-serif;
    position: relative;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--color-white);
}

.all-blog-header h2::before {
    content: "";
    width: 50px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 5px;
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
}

.blog-all-list{
    background: var(--color-white);
    padding: 20px;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    position: relative;
    z-index: 1;
}

.blog-full-description {
    padding-left: 10px;
    padding-right: 10px;
}

.top-right-section {
    float: right; 
    width: 40%;
    margin-left: 20px; 
    margin-bottom: 20px; 
    margin-top: 30px;
    border-radius: 20px;
    overflow: hidden;
}

.blog-excerpt{
    background: var(--bg-primary);
    padding: 10px 20px;
    border-radius: 10px;
    width: 59%;
}

.blog-full-description p,
.blog-full-description span {
    text-align: justify;   
    color: #726767;
    font-size: 16px;
}

.blog-full-description img,
.blog-full-description iframe {
    width: 70%;
}

@media(max-width:991px) and (min-width:576px){
    .blog-card .blog-img{
        height: 163px;
    }
}

@media(max-width:767px) {
    .blog-banner{
        padding: 1.5rem 0;
    }

    .half-moon{
        display: none;
    }

    .blog-banner .nepal-first{
        font-size: 32px;
        font-weight: 700;
    }
    
    .blog-banner .eturor-tutoring{
        font-size: 32px;
        margin-bottom: 1rem;
    }

    .blog-card{
        margin-bottom: 15px;
    }

    .blog-full-description img,
    .blog-full-description iframe {
        width: 100%;
    }
}

.blogs-details-container {
    padding: 20px 0;
}

.blogs-comment-container{
    padding: 5px 30px;
}

.blogs-comment-container h3{
    font-size: 1.5rem;
    font-weight: 700;
}

.blogs-comment-container .form-control{
    background: #F3F3F3;
    border-radius: 10px;
}

.comment-wrapper{
    display: grid;
    grid-template-columns: 70px 1fr;
    grid-column-gap: 10px;
    align-items: center;
}

.comment-wrapper .commenter-img{
    width: 70px;
    height: 70px;
    overflow: hidden;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    text-align: center;
    display: flex;             
    align-items: center;   
    justify-content: center;  
}

.comment-wrapper .commenter-img span{
    font-size: 3rem;
    color: var(--primary-color);
}

.comment-wrapper textarea{
    padding-right: 6.5rem;
}

.blog-submit-btn{
    position: absolute;
    background: var(--primary-color);
    color: var(--color-white);
    padding: 5px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
    right: 20px;
    bottom: 10px;
    z-index: 1;
}

.blogs-comment-container .single-comment {
    background: var(--bg-primary);
    padding: 10px 15px;
    border-radius: 10px;
}

.blogs-comment-container .commentter h5 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    margin-right: 10px;
    display: inline;
}

.blogs-comment-container .commentter span {
    font-style: italic;
    font-size: 14px;
    color: #b3b3b3;
}

.blogs-comment-container .commentter p {
    font-size: 13px;
}

.blogs-comment-container .message {
    font-size: 14px;
    color: #4e4d4d;
    line-break: auto;
}

.reply-item{
    margin-left: 40px;
    margin-top: 10px;
    background: white;
    border-left: 3px solid var(--primary-color);
    border-radius: 10px;
}

.reply-button {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
    font-size: 14px;
    padding: 0;
    margin-top: 2px;
}

.comment-reply{
    position: absolute;
    right: 20px;
    bottom: 10px;
    z-index: 1;
}

.comment-reply .comment-reply-btn{
    background: var(--secondary-color);
    color: var(--color-white);
    padding: 5px 20px;
    border: 1px solid var(--secondary-color);
    border-radius: 20px;
    font-size: 14px;
}

.comment-reply .comment-reply-cancel{
    background: var(--color-red);
    color: var(--color-white);
    padding: 5px 20px;
    border: 1px solid var(--color-red);
    border-radius: 20px;
    font-size: 14px;
}

.reply-button:hover {
    color: var(--primary-dark);
}

.reply-form {
    display: none;
    margin-top: 15px;
    padding: 15px;
    background: white;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.reply-form.show {
    display: block;
}

.blogs-comment-container .comment-input {
    width: 100%;
    border: 1px solid rgb(236, 236, 236);
    padding: 2px 5px;
    border-radius: 3px;
    margin-bottom: 5px;
}

.blogs-comment-container .comment-submit {
    border: 1px solid var(--primary-color);
    color: var(--color-white);
    background: var(--primary-color);
    border-radius: 4px;
    padding: 3px 15px;
}

.leave-comment {
    margin-bottom: 20px;
}

.text-13 {
    font-size: 13px;
}


/*========== for study materials and syllabus ============*/

.syllabus-study-page {
    background: var(--color-white);
    padding: 15px 10px;
    margin-bottom: 20px;
}

.syllabus-study-page .study-materials {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 10px;
}

.syllabus-study-page .study-materials span {
    padding-right: 6px;
    color: #fa3131;
}

.syllabus-study-page .study-materials a {
    text-decoration: none;
    font-weight: 600;
}


/*==================== for tutor review ======================*/

.tutor-review-container {
    margin-top: 20px;
}

.tutor-review-container h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}

.tutor-rev-whole-container {
    background: var(--color-white);
    padding: 15px 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    /* margin-top: 10px; */
    margin-bottom: 20px;
}

.tutor-review-container .t-single-review {
    background: var(--color-white);
    padding: 10px 5px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
    margin: 10px;
}

.tutor-review-container .t-review-header {
    display: grid;
    grid-template-columns: 50px auto;
}

.tutor-review-container .t-single-review .reviewer-icon {
    font-size: 25px;
    color: var(--primary-color);
    border-radius: 50%;
    border: 1px solid;
    overflow: hidden;
    padding: 5px;
}

.tutor-review-container .t-single-review h4 {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 600;
    text-transform: capitalize;
    margin-right: 10px;
    display: inline;
}

.tutor-review-container .t-single-review .reviewr-email {
    font-size: 14px;
    font-style: italic;
    color: #b3b3b3;
}

.tutor-review-container .t-review-header p {
    font-size: 13px;
    margin-bottom: 0.5rem;
}

.tutor-review-container .t-review {
    font-size: 14px;
    color: #4e4d4d;
    line-break: auto;
}

.leave-review .comment-input {
    width: 100%;
    border: 1px solid rgb(236, 236, 236);
    padding: 2px 5px;
    border-radius: 3px;
    margin-bottom: 5px;
}

.leave-review .comment-submit {
    border: 1px solid var(--primary-color);
    color: var(--color-white);
    background: var(--primary-color);
    border-radius: 4px;
    padding: 3px 15px;
}

.leave-review {
    margin-bottom: 20px;
}

.color-review {
    color: #FFDF00
}

.color-empty {
    color: rgb(209, 208, 208);
}

.review-add-btn {
    float: right;
    font-size: 13px;
    border: 0;
    background: var(--primary-color);
    color: var(--color-white);
    padding: 2px 10px;
    border-radius: 1px;
    font-weight: 600;
}

.review-submit {
    border: 0;
    border-radius: 4px;
    padding: 3px 15px;
}


/** rating **/

div.stars {
    display: inline-block;
}

input.star {
    display: none;
}

label.star {
    float: right;
    padding: 10px;
    font-size: 30px;
    color: #444;
    transition: all .2s;
}

input.star:checked~label.star:before {
    content: "\f005";
    color: #FFDF00;
    transition: all .25s;
    font-family: "Font Awesome 5 Free";
}

input.star-5:checked~label.star:before {
    color: #FFDF00;
    text-shadow: 0 0 5px #7f8c8d;
}

input.star-1:checked~label.star:before {
    color: #FFDF00;
}

label.star:hover {
    transform: rotate(-15deg) scale(1.3);
}

label.star:before {
    font-family: "Font Awesome 5 Free";
    font-weight: 400;
    content: "\f005";
}

.horline>li:not(:last-child):after {
    content: " |";
}

.horline>li {
    font-weight: bold;
    color: #FFDF00;
}

/** end rating **/

.tutor-top-header {
    background: var(--color-white);
    /* margin-top: 10px; */
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    padding: 5px 10px;
    z-index: 2;
    position: relative;
}

.tutor-top-header h2 {
    font-size: 16px;
    color: var(--primary-color);
    margin-top: 8px;
}

.tutor-top-header h2 span i {
    font-size: 25px;
    color: var(--color-white);
    background: var(--primary-color);
    border-radius: 50%;
    padding: 10px;
}

.tutor-top-header .tutor-top-right {
    display: grid;
    grid-template-columns: 1fr 70px;
    padding: 0.5rem;
}

.tutor-top-header .tutor-details {
    text-align: end;
    align-self: center;
}

.tutor-top-header .tutor-image {
    text-align: center;
    border-radius: 50%;
    overflow: hidden;
    width: 50px;
    height: 50px;
    margin-left: 5px;
}

.tutor-top-header .tutor-details h5 {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 0;
}

.tutor-top-header .tutor-details span {
    font-size: 12px;
    line-height: 1.5;
}

.tutor-main-container {
    display: grid;
    grid-template-columns: 270px 1fr;
    position: relative;
    align-items: flex-start;
}

.tutor-side-navbar {
    padding: 10px 0;
    background: rgb(255, 255, 255);
    background: linear-gradient(90deg, rgb(246 246 246) 0%, rgb(255, 255, 255) 100%);
    z-index: 1;
    border-right: 1px solid #ddd;
    box-shadow: 5px 0 5px -2px #cfcfcf;
    display: block;
}
.post-intro{
    align-self: center;
}
.comment-date{
    font-size: 14px;
    color: #817e7e;
}
@media (min-width: 768px) {
    .tutor-side-navbar {
        position: sticky;
        top: 0;
        height: calc(100vh);
        min-height: 620px;
    }
}

.tutor-side-navbar .nav-link {
    color: #1c252e;
}

.tutor-side-navbar .nav-link i {
    /* padding-right: 10px; */
    color: var(--primary-color);
    width: 30px;
}

.tutor-container {
    padding: 10px;
    min-height: calc(100vh - 250px);
}

.tutor-dashboard-card {
    padding: 15px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    margin-bottom: 15px;
}

.tutor-dashboard-card p {
    margin-bottom: 0;
    font-size: 12px;
}

.tutor-dashboard-card .btn:hover {
    color: var(--color-white);
}

.tutor-dashboard-card .grid-item-1 {
    grid-area: left;
}

.tutor-dashboard-card .grid-item-2 {
    grid-area: right;
    text-align: center;
}

.tutor-dashboard-card .grid-item-3 {
    grid-area: bottom;
}

.tutor-dashboard-card {
    background: var(--color-white);
    display: grid;
    grid-gap: 10px;
    grid-template-areas: 'left right' 'bottom right';
}

.tutor-dashboard-card .grid-item-2 i {
    justify-self: end;
    font-size: 24px;
}

@media (min-width: 768px) {
    .tutor-top-header .mobile-view-student-btn {
        display: none;
    }
}

@media (max-width: 767px) {
    .tutor-top-header {
        padding-left: 0;
        padding-right: 0;
    }
    .tutor-main-container {
        grid-template-columns: 1fr !important;
    }
    .tutor-side-navbar {
        margin-bottom: 15px;
        position: absolute;
        top: 0;
        right: 0;
        overflow: hidden;
        width: 0;
        height: 420px;
        transition: .5s ease;
        z-index: 999;
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    }
    .tutor-top-header h2 span i {
        font-size: 16px;
        padding: 8px;
    }
    .tutor-top-header h2 {
        font-size: 14px;
    }
    .tutor-container {
        padding-left: 0;
        padding-right: 0;
    }
    .tutor-content-wrapper {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .tutor-top-right {
        display: none !important;
    }
    .tutor-top-header .mobile-view-student-btn {
        margin-top: 5px;
        width: 40px;
        height: 40px;
    }
    .tutor-top-header .mobile-view-student-btn img {
        width: 40px;
        height: 40px;
        margin-left: -6px;
        margin-top: -1px;
    }
}


/* first block */

.first-block {
    border-left: 5px solid #0bb909;
}

.first-block .btn {
    background: #4fc54e;
    color: var(--color-white);
}

.first-block .grid-item-2 i {
    color: #4fc54e;
}


/* second block */

.second-block {
    border-left: 5px solid #f5610a;
}

.second-block .btn {
    background: #ef7f3d;
    color: var(--color-white);
}

.second-block .grid-item-2 i {
    color: #ef7f3d;
}


/* second block */

.third-block {
    border-left: 5px solid #3b1abf;
}

.third-block .btn {
    background: #503aa9;
    color: var(--color-white);
}

.third-block .grid-item-2 i {
    color: #503aa9;
}

.tutor-content-wrapper {
    padding: 10px;
}


/* classroom */

.tutor-classrooms {
    padding: 10px 15px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
    /* display: grid;
    grid-template-columns: 1fr 150px; */
    margin-bottom: 10px;
    background: var(--color-white);
    border-radius: 3px;
}

.tutor-classrooms .tutor-classroom-batch h5 {
    font-size: 14px;
    font-weight: 400;
}

.tutor-classrooms .tutor-classroom-batch h4 {
    font-size: 16px;
}

.tutor-classroom-batch .tutor-classroom-time {
    text-align: right;
    font-size: 16px;
    font-weight: 600;
    color: #4fc54e;
}

.t-classroom-btn {
    justify-self: end;
    align-self: center;
}

.tutor-classrooms .tutor-classroom-btn {
    background: #4fc54e;
    color: var(--color-white);
    text-decoration: none;
    border-radius: 4px;
    padding: 4px 10px;
    font-weight: 600;
}


/* tutor post */

.tutor-post-list {
    position: relative;
    padding: 10px 15px 0;
    background: var(--color-white);
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
    /* margin-bottom: 15px; */
    display: grid;
    grid-template-columns: 1fr 65px;
}

.tutor-post-list .post-heading h3 {
    font-size: 18px;
}

.tutor-post-list .post-heading span {
    font-size: 13px;
}

.tutor-post-dropdown {
    justify-self: end;
}

.tutor-post-dropdown button {
    border: 0;
    background: transparent;
    color: var(--color-dark);
}

.tutor-post-body p {
    margin-top: 0;
}

.create-post-tutor {
    background: var(--color-white);
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
    display: grid;
    grid-template-columns: 70px 1fr;
}

.create-post-tutor a input {
    width: 100%;
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #d1cdcd;
    border-radius: 5px;
}


/* home page pup up */

#pup-up-container {
    width: 100%;
    height: 100vh;
    background: #0008;
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    z-index: 999;
}

#pop-up {
    text-align: center;
    /* width: 400px;
    height: 300px; */
    background: #03a9f4;
    box-sizing: border-box;
    /* padding: 20px; */
    position: absolute;
    /* top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); */
}

@media (min-width: 768px) {
    #pop-up {
        width: 60%;
        height: auto;
        top: 10%;
        left: 20%;
    }
}

@media (max-width: 767px) {
    #pop-up {
        width: 90%;
        height: auto;
        top: 10%;
        left: 5%;
    }
}

#pop-up #close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
}

#pop-up img {
    width: 100%;
}


/* chapter slider */

.chapter-file-carousel .file-slide-item {
    width: 100%;
    height: 100%;
}

.chapter-file-carousel .file-slide-item img {
    width: 100%;
}

.chapter-file-carousel .owl-nav {
    position: absolute;
    width: 100%;
    top: 42%;
    opacity: 0;
}

.chapter-file-carousel .owl-nav {
    opacity: 1;
}

.chapter-file-carousel .owl-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.678);
    border: 1px solid #aaafad;
}

.chapter-file-carousel .owl-nav i {
    padding: 10px;
    color: var(--primary-color);
    font-size: 24px;
}

.chapter-file-carousel .owl-prev {
    margin-left: 10px;
}

.chapter-file-carousel .owl-next {
    float: right;
    margin-right: 10px;
}


/* .chapter-file-carousel .owl-nav button:hover {
    background: var(--primary-color);
}

.chapter-file-carousel .owl-nav button:hover i {
    color: var(--color-white);
} */

.chapter-file-carousel .owl-dots {
    counter-reset: dots;
    text-align: center;
    margin-top: 10px;
}

.chapter-file-carousel .owl-dot:before {
    counter-increment: dots;
    content: counter(dots);
}

.chapter-file-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    background: var(--color-dark);
    color: var(--color-white);
    margin-right: 5px;
    margin-bottom: 5px;
}

.chapter-file-carousel .owl-dots .active {
    background: green;
}


/* student video section */

.student-video-card .student-vid-dec {
    background: var(--color-white);
    padding: 10px;
    border: 1px solid #dfdddd;
    border-top: 0;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
}

.student-video-card .student-vid-status {
    display: grid;
    grid-template-columns: 70px 1fr;
}

.vid-card-img-container {
    height: 195px;
    overflow: hidden;
}

.student-vid-chapter {
    background: var(--color-white);
    padding: 10px 15px;
    box-shadow: rgb(0 0 0 / 4%) 0px 3px 5px;
    border-radius: 3px;
}

.student-vid-chapter .student-vid-cpt-action {
    padding-top: 1rem;
}

.student-video-list {
    /* width: 100%;
    height: 200px;
    display: table; */
    position: relative;
}


/* .student-video-list div {
    display: table-cell;
    vertical-align: middle;
} */

.student-video-list a {
    display: none;
    width: 100%;
    height: 95%;
    background: #00000080;
    z-index: 99;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    vertical-align: middle;
}

.student-video-list:hover a {
    display: block;
}

.student-video-list a i {
    font-size: 50px;
    color: var(--primary-color);
    padding-top: 70px;
}

.student-show-video iframe {
    height: 400px;
}

@media (max-width: 767px) {
    .student-show-video iframe {
        height: 100%;
    }
}


/* front public videos */

.rcmd-single-vid {
    position: relative;
}

.rcmd-single-vid a {
    width: 100%;
    height: 95%;
    background: #00000080;
    z-index: 99;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    vertical-align: middle;
    display: none;
}

.rcmd-single-vid a i {
    font-size: 40px;
    color: var(--primary-color);
    padding-top: 30px;
}

.rcmd-single-vid:hover a {
    display: block;
}

.public-vid-show iframe {
    height: 350px;
}

@media(max-width:767px) {
    .public-vid-show iframe {
        height: 200px;
    }
}

.ebook-search-homepage .form-control{
    border-bottom-left-radius: 20px;
    border-top-left-radius: 20px;
}

.ebook-search-homepage .btn{
    border-bottom-right-radius: 20px;
    border-top-right-radius: 20px;
    background: #0077b5;
    color: var(--color-white);
}


.pdf-container {
    position: relative;
    /* height: 600px;  */
    width: 100%;
    overflow: hidden;
    background-color: #1375b9;
}

.pdf-inner-container {
    height: 100%;
    width: 100%;
    overflow: auto;
    scrollbar-width: thin;
    scrollbar-color: #ccc transparent;
}

.pdf-inner-container::-webkit-scrollbar {
    width: 8px;
}

.pdf-inner-container::-webkit-scrollbar-track {
    background-color: transparent;
}

.pdf-inner-container::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 4px;
}

.pdf-pages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 10px;

}

.pdf-page {
    width: 100%;
    margin: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    transform-origin: center;
}


@media (max-width: 767px){
    
    .discussion-chatroom-section .center {
        left: 0 !important;
    }
    .discussion-chatroom-section .chat{
        width: 100% !important;
        height: 29rem !important;
    }
}
.discussion-chatroom-section .chatroom-only{
    position: relative;
}
.discussion-chatroom-section .center {
    position: absolute;
    top: 50%;
    left: calc(5% + 5rem);
}
.discussion-chatroom-section .chat {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 21rem;
    z-index: 2;
    box-sizing: border-box;
    border-radius: 1rem;
    background: white;
    box-shadow: 0 0 8rem 0 rgba(0, 0, 0, 0.1), 0rem 2rem 4rem -3rem rgba(0, 0, 0, 0.5);
}

.discussion-chatroom-section .chat .contact.bar {
    flex-basis: 3.5rem;
    flex-shrink: 0;
    margin: 1rem;
    box-sizing: border-box;
}

.discussion-chatroom-section .chat .messages {
    background: #F7F7F7;
    flex-shrink: 2;
    overflow-y: auto;
    box-shadow: inset 0 2rem 2rem -2rem rgba(0, 0, 0, 0.05), inset 0 -2rem 2rem -2rem rgba(0, 0, 0, 0.05);
}
.discussion-chatroom-section .chat .messages::-webkit-scrollbar {
    width: 1px;
}

.discussion-chatroom-section .chat .messages::-webkit-scrollbar-track {
    background: var(--color-white);
}

.discussion-chatroom-section .chat .messages::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 20px;
}

.discussion-chatroom-section .chat .messages .time {
    font-size: 0.8rem;
    background: #EEE;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    color: #999;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}

.discussion-chatroom-section .chat .messages .message {
    box-sizing: border-box;
    padding: 0.5rem 1rem;
    margin: 0 1rem 1rem;
    background: var(--color-white);
    border-radius: 1.125rem 1.125rem 1.125rem 0;
    min-height: 2.25rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 66%;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.075), 0rem 1rem 1rem -1rem rgba(0, 0, 0, 0.1);
}

.discussion-chatroom-section .chat .messages .message.parker {
    margin: 0 1rem 1rem auto;
    border-radius: 1.125rem 1.125rem 0 1.125rem;
    background: #333;
    color: white;
}
.discussion-chatroom-section .chat .user-name-time {
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
}

.discussion-chatroom-section .chat .user-name-time span {
    font-size: 12px;
    font-weight: 400;
    color: #686c6f;
}
.discussion-chatroom-section .chat .your-message {
    box-sizing: border-box;
    flex-basis: 4rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 0.5rem 0 1.5rem;
}

.discussion-chatroom-section .chat .your-message i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #666;
    cursor: pointer;
    transition: color 200ms;
}

.discussion-chatroom-section .chat .your-message i:hover {
    color: #333;
}

.discussion-chatroom-section .chat .your-message input {
    border: none;
    background-image: none;
    background-color: white;
    padding: 0.5rem;
    border-radius: 1.125rem;
    flex-grow: 2;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1), 0rem 1rem 1rem -1rem rgba(0, 0, 0, 0.2);
    font-family: var(--color-red) hat Display, sans-serif;
    font-weight: 400;
    letter-spacing: 0.025em;
}

.discussion-chatroom-section .chat .your-message input:placeholder {
    color: #999;
}


@media (max-width: 767px){
    
    .team-chatroom-section .center {
        left: 0 !important;
    }
    .team-chatroom-section .chat{
        width: 100% !important;
        height: 29rem !important;
    }

    .team-chatroom-section{
        grid-template-columns: 1fr !important;
    }
    .team-chatroom-section .tutor-list{
        display: none !important;
    }
}
.team-chatroom-section{
    display: grid;
    grid-template-columns: 0.6fr 1.4fr;
}
.team-chatroom-section .tutor-list{
    width: 100%;
    display: block;
}
.team-chatroom-section .chatroom-only{
    position: relative;
}
.team-chatroom-section .center {
    position: absolute;
    top: 0%;
    left: 0;
    width: 100%;
}
.team-chatroom-section .chat {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    height: 25rem;
    z-index: 2;
    box-sizing: border-box;
    border-radius: 1rem;
    background: #f4f4f4;
    box-shadow: 0 0 8rem 0 rgba(0, 0, 0, 0.1), 0rem 2rem 4rem -3rem rgba(0, 0, 0, 0.5);
}

.team-chatroom-section .chat .contact.bar {
    flex-basis: 3.5rem;
    flex-shrink: 0;
    margin: 1rem;
    box-sizing: border-box;
}

.team-chatroom-section .chat .messages {
    background: #F7F7F7;
    flex-shrink: 2;
    overflow-y: auto;
    box-shadow: inset 0 2rem 2rem -2rem rgba(0, 0, 0, 0.05), inset 0 -2rem 2rem -2rem rgba(0, 0, 0, 0.05);
}
.team-chatroom-section .chat .messages::-webkit-scrollbar {
    width: 1px;
}

.team-chatroom-section .chat .messages::-webkit-scrollbar-track {
    background: var(--color-white);
}

.team-chatroom-section .chat .messages::-webkit-scrollbar-thumb {
    background-color: var(--primary-color);
    border-radius: 20px;
}

.team-chatroom-section .chat .messages .time {
    font-size: 0.8rem;
    background: #EEE;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    color: #999;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
}

.team-chatroom-section .chat .messages .message {
    box-sizing: border-box;
    padding: 0.5rem 1rem;
    margin: 0 1rem 1rem;
    background: var(--color-white);
    border-radius: 1.125rem 1.125rem 1.125rem 0;
    min-height: 2.25rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 66%;
    box-shadow: 0 0 2rem rgba(0, 0, 0, 0.075), 0rem 1rem 1rem -1rem rgba(0, 0, 0, 0.1);
}

.team-chatroom-section .chat .messages .message.parker {
    margin: 0 1rem 1rem auto;
    border-radius: 1.125rem 1.125rem 0 1.125rem;
    background: #333;
    color: white;
}
.team-chatroom-section .chat .user-name-time {
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 0;
    padding-bottom: 0;
}

.team-chatroom-section .chat .user-name-time span {
    font-size: 12px;
    font-weight: 400;
    color: #686c6f;
}
.team-chatroom-section .chat .your-message {
    box-sizing: border-box;
    flex-basis: 4rem;
    flex-shrink: 0;
    align-items: center;
    padding: 0.8rem 0.5rem 0 1.5rem;
    background: var(--color-white);
}

.team-chatroom-section .chat .your-message i {
    font-size: 1.5rem;
    margin-right: 1rem;
    color: #666;
    cursor: pointer;
    transition: color 200ms;
}

.team-chatroom-section .chat .your-message i:hover {
    color: #333;
}

.team-chatroom-section .chat .your-message input {
    border: none;
    background-image: none;
    background-color: white;
    padding: 0.5rem;
    border-radius: 1.125rem;
    flex-grow: 2;
    box-shadow: 0 0 1rem rgba(0, 0, 0, 0.1), 0rem 1rem 1rem -1rem rgba(0, 0, 0, 0.2);
    font-family: var(--color-red) hat Display, sans-serif;
    font-weight: 400;
    letter-spacing: 0.025em;
}

.team-chatroom-section .chat .your-message input:placeholder {
    color: #999;
} 

/*=======================find tutor list ================================*/
.tutors-container{
    margin-top: 20px;
    margin-bottom: 20px;
}
.tutor-card{
    margin-bottom: 20px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.tutor-intro{
    background: #f6f6f6;
    padding: 10px 15px;
    display: grid;
    grid-template-columns: 140px minmax(0, 1fr);
    border: 1px solid #eeeeee;
}
.tutor-intro .tutor-thumb{
    width: 130px;
    height: 130px;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #dfdfdf;
}
.tutor-intro .tutor-thumb img{
    width: 100%;
}
.tutor-intro .tutor-experience{
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.tutor-available-list{
    background: var(--color-white);
}

/* tutor details page  */
.tutor-detail-intro{
    width: 100%;
    /* padding: 10px 15px; */
    background: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;  
    /* display: grid;
    grid-template-columns: 200px 1fr;   */
    border-radius: 5px;
    padding-bottom: 20px;
    
}
.tutor-detail-intro .tutor-cover-image{
    width: 100%;
    height: 250px;
    overflow: hidden;
}
.tutor-detail-intro .tutor-cover-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.tutor-detail-intro .tutor-profile{
    display: grid;
    grid-template-columns: 200px 1fr 40px;
}
.tutor-detail-intro .tutor-detail-thumb{
    width: 170px;
    height: 170px;
    overflow: hidden;
    border-radius: 50%;
    border: 1px solid #dfdfdf;
    margin-left: 20px;
    margin-top: -50px;
    background: var(--color-white);
}
.tutor-detail-thumb img{
    width: 100%;
}
.tutor-detail-intro .tutor-profile .tutor-name{
    margin-top: 10px;
}

.tutor-detail-intro .tutor-profile .add-to-favorite{
    margin-top: 10px;
}
.tutor-detail-intro .tutor-profile .add-to-favorite a{
    font-size: 24px;
}
.commenter_image{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #ccc;
}
.commenter_image img{
    width: 100%;
}
.commenter_image i{
    text-align: center;
}
.book-details .add-to-favorite{
    position: absolute;
    top: 10px;
    right: 30px;
}
.book-details .add-to-favorite a{
    font-size: 24px;
}
.tutor-detail-info{
    padding-top: 1rem;
}
.tutor-detail-info .tutor-details{
    text-align: justify;
    margin-top: 0.5rem;
}
.tutor_details_show_tab{
    background: var(--color-white);
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    /* padding: 10px 15px; */
    min-height: calc(100vh - 130px);
    position: relative;
    border-radius: 5px;
}
.tutor-detail-batch{
    padding: 10px;
    border-radius: 3px;
    border: 1px solid #c1d7e8;
}
.tutor-detail-batch .col-image{
    overflow: hidden;
    width: 100%;
    height: 150px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
}
.tutor-detail-batch .col-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.tutor-detail-batch .col-details{
    line-height: 1;
}
.tutor_details_show_tab .seller-rating{
    font-size: 14px;
}
.send-message-to-tutor{
    background: var(--color-white);
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
    border-radius: 5px;
}
.send-message-to-tutor .form-control{
    margin-bottom: 5px;
}
.send-message-to-tutor .m-send-btn{
    background: var(--primary-color);
    color: var(--color-white);
    width: 100%;
}
.hidden {
    display: none !important;
}
.find-other-tutors{
    background: var(--color-white);
    border-radius: 5px;
    padding: 10px;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 3px 0px, rgba(0, 0, 0, 0.06) 0px 1px 2px 0px;
}
.other-tutor-item{
    display: grid;
    grid-template-columns: 100px minmax(0, 1fr);
    margin-bottom: 10px;
}
.other-tutor-item .tutor-thumb{
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #ccc;
}
.other-tutor-item .tutor-thumb img{
    width: 100%;
}
.other-tutor-item .tutor-experience {
    font-size: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
@media(max-width:767px) and (min-width: 592px){
    .tutor-detail-intro .tutor-profile {       
        grid-template-columns: 160px 1fr 40px;
    }
    .tutor-detail-intro .tutor-cover-image{
        height: 180px;
    }
    .tutor-detail-intro .tutor-detail-thumb{
        width: 130px;
        height: 130px;
        margin-top: -40px;
    }
    .order-track-line{
        height: 70px !important;
    }
}
@media(max-width:591px){
    .tutor-detail-intro .tutor-profile {       
        grid-template-columns: 120px 1fr 30px;
    }
    .tutor-detail-intro .tutor-cover-image{
        height: 140px;
    }
    .tutor-detail-intro .tutor-detail-thumb{
        width: 100px;
        height: 100px;
        margin-top: -30px;
        margin-left: 10px;
    }
    .tutor-detail-info{
        text-align: center;
    }
    .order-track-line{
        height: 90px !important;
    }
}

/* appointment schedule page */
.appointment-slot-list{
    padding: 10px;
    border: 1px solid #d4d5d6;
    border-radius: 5px;
}
.tutor-available-list .tutor-features{
    display: grid;
    grid-template-columns: 160px 1fr;
    border-bottom: 1px solid #e5e9ef;
    padding: 2px 10px;
}
.tutor-available-list .tutor-features:last-child{
    border-bottom: 0;
}
.tutor-banner{
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
}
.tutor-banner-overlay{
    width: 100%;
    background: rgb(0 119 181 / 80%);
}

/* custom datalist */
.tutors-container{
    min-height: calc(100vh - 200px);
}
.customInput{
    width: 100%;
    padding: 7px 10px;
    border: 1px solid var(--primary-color);
    /* border-radius: 4px;                                   */
}     
.customDropdown {
    position: relative;
    width: 100%;
}

.customOptions {
    width: 100%;
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    background-color: var(--color-white);
    border: 1px solid var(--primary-color);
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: none; /* Initially hide the dropdown */
    max-height: 300px;
    overflow-y: auto;
}

.customOptions li {
    padding: 8px 12px;
    cursor: pointer;
}

.customOptions li:hover {
    background-color: #f0f0f0;
}
.tutor-not-found{
    text-align: center;
    font-weight: 600;
    margin-top: 50px;
    font-size: 18px;
}
.find-tutor-btn{
    background: var(--primary-color);
    border: var(--primary-color);
    padding: 7px 15px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    margin-top: 1px;
}
@media(max-width:767px){
    .customDropdown{
        margin-bottom: 10px;               
    }
    .customOptions{
        z-index: 2;
    }
    .find-tutor-btn{
        width: 100%;
    }
}

/* custom alert */
#modalContainer {
    background-color:rgba(0, 0, 0, 0.3);
    position:absolute;
    top:0;
    width:100%;
    height:100%;
    left:0px;
    z-index:10000;
    /* background-image:url(tp.png); */
}

#alertBox {
    position:relative;
    width:33%;
    min-height:100px;
    max-height:400px;
    margin-top:50px;
    border:1px solid var(--color-white);
    background-color:var(--color-white);
    background-repeat:no-repeat;
    top:30%;
}

#modalContainer > #alertBox {
    position:fixed;
}

#alertBox h1 {
    margin:0;
    font:bold 1em Raleway,arial;
    background-color:var(--primary-color);
    color:var(--color-white);
    border-bottom:1px solid var(--primary-color);
    padding:10px 0 10px 5px;
}

#alertBox p {
    height:50px;
    padding-left:5px;
    padding-top:30px;
    text-align:center;
    vertical-align:middle;
}

#alertBox #closeBtn {
    display:block;
    position:relative;
    margin:10px auto 10px auto;
    padding:7px;
    border:0 none;
    width:70px;
    text-transform:uppercase;
    text-align:center;
    color:var(--color-white);
    background-color:var(--primary-color);
    border-radius: 0px;
    text-decoration:none;
    outline:0!important;
}

    /* unrelated styles */

#mContainer {
    position:relative;
    width:600px;
    margin:auto;
    padding:5px;
    border-top:2px solid var(--color-white);
    border-bottom:2px solid var(--color-white);
}

@media (max-width: 600px) {
    #alertBox {
        position:relative;
        width:90%;
        top:30%;
    }
    #alertBox p {
        height: auto;
    }
}

.tutormessagemenu-count{
    position: absolute;
    width: 22px;
    height: 22px;
    right: 20px;
    top: 10px;
    padding: 2px;
    background: var(--color-red);
    border-radius: 50%;
    color: var(--color-white);
    font-size: 12px;
    text-align: center;
}
.text-14{
    font-size: 14px;
}
.user-details-dropdown{
    display: none;
    position: absolute;
    right: 10px;
    background: rgb(255 255 255 / 80%);
    top: 50px;
    border: 1px solid #cccc;
    padding: 5px 10px 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    border-radius: 15px;
    z-index: 99;
}
.user-details-dropdown ul{
    list-style-type: none;
    padding-left: 0;
    padding-bottom: 0;
    margin-bottom: 0;
}
.user-details-dropdown .nav-item{
    background: var(--color-white);
    margin-bottom: 5px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.04) 0px 3px 5px;
}
.user-details-dropdown ul .nav-link{
    padding: 7px 12px;
    color: var(--color-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-details-dropdown .user-d-icon{
    font-size: 16px;
}
.dashboard-profile-arrow{
    font-size: 16px;
}

.user-name-i{
    background: var(--bg-primary);
    width: 50px;
    height: 50px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
    
}

@media(min-width:768px){
    .md-dispaly-none{
        display: none !important;
    }
}
@media(max-width:767px){
    .display-mo-none{
        display: none !important;
    }
    .order-track .track-status-text{
        font-size: 14px;
    }
    .student-top-header .student-top-right{
        grid-template-columns: 35px 1fr 50px;
        padding: 5px 0;
        grid-column-gap: 3px;
    }
    .student-notification-icon .user-header-i {
        padding: 2px;
    }

    .student-details .user-icon-mo{
        width: 50px;
        height: 50px;
        border-radius: 50%;
        overflow: hidden;
    }
    .batch-switch-container{
        gap: 0.2rem;
    }
    .batch-switch-container h6{
        min-width: auto;
    }

}
.post-like{
    display: inline;
    margin-right: 7px;
}

.user-profile-info div{
    line-height: 2;
}
.order-details-show{
    background: var(--color-white);
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
.order-details-show h6{
    font-weight: 600;
}
.order-track-circle{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #a5a1a1;
    margin-left: auto;
    margin-right: auto;
}
.order-track-line{
    width: 5px;
    height: 50px;
    background: #d5d1d1;
    margin-left: auto;
    margin-right: auto;
}
.order-track:last-child .order-track-line{
    display: none;
}
.order-offer-list{
    background: var(--color-white);
    padding: 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.message-group-icon{
    display: inline-block;
    background: #0077b5;
    width: 40px;
    height: 40px;
    padding-top: 7px;
    border-radius: 50%;
    color: #ffffffff;
    text-align: center;
    font-weight: 600;
    margin-right: 5px;
}
.team-person-img{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #ccccce;
}
.postimage-preview{
    width: 100%;
    max-height: 200px;
    overflow: hidden;
}
.postimage-preview img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
.post-desc-prev{
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.protected-content-wrapper {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.top-tutor-container .tutor-image{
    width: 90px;
    height: 90px;
    overflow: hidden;
    border-radius: 50%;
}
.top-tutor-container .tutor-image img{
    width: 100%;
}
