/* /Layout/BackendLayout.razor.rz.scp.css */
/* Sidebar Styling */
.sidebar[b-c8fp8bpy8b] {
    background-color: #f8f9fa;
    height: 100vh;
    padding: 1rem;
    position: sticky;
    top: 0;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: #333 #f1f1f1; /* thumb color, track color */
}
    /* Custom scrollbar for WebKit browsers (Chrome, Safari, Edge) */
    .sidebar[b-c8fp8bpy8b]::-webkit-scrollbar {
        width: 4px;
    }

    .sidebar[b-c8fp8bpy8b]::-webkit-scrollbar-track {
        background-color: #f1f1f1;
        border-radius: 4px;
    }

    .sidebar[b-c8fp8bpy8b]::-webkit-scrollbar-thumb {
        background-color: #333;
        border-radius: 4px;
        border: 2px solid #f1f1f1; /* Adds padding to scrollbar */
    }

        .sidebar[b-c8fp8bpy8b]::-webkit-scrollbar-thumb:hover {
            background-color: #555; /* Changes color on hover */
        }

.profile img[b-c8fp8bpy8b] {
    width: 80px;
    height: 80px;
    object-fit: cover;
}

.menu[b-c8fp8bpy8b] {
    padding-left: 0;
}

.menu-item[b-c8fp8bpy8b] {
    margin-bottom: 1rem;
}

    .menu-item a[b-c8fp8bpy8b] {
        color: #495057;
        text-decoration: none;
    }

    .menu-item i[b-c8fp8bpy8b] {
        color: #6c757d;
    }

.has-submenu .submenu[b-c8fp8bpy8b] {
    padding-left: 1rem;
    display: none;
}
    .has-submenu .submenu .submenuunder[b-c8fp8bpy8b] {
        padding: 4px;
    }

.menu-item:hover a[b-c8fp8bpy8b],
.menu-item:hover i[b-c8fp8bpy8b] {
    color: #007bff;
}

.submenu-icon[b-c8fp8bpy8b] {
    transition: transform 0.3s;
    float:right;
}

.menu-item.has-submenu .submenu[b-c8fp8bpy8b] {
    display: none;
    margin-top: 10px;
}

.menu-item.has-submenu.open .submenu[b-c8fp8bpy8b] {
    display: block;
}

.menu-item a[b-c8fp8bpy8b] {
    color: #333;
    text-decoration: none;
}

    .menu-item a.active[b-c8fp8bpy8b] {
        font-weight: bold;
        color: #007bff;
    }

.submenu a[b-c8fp8bpy8b] {
    display: block;
    color: #6c757d;
    text-decoration: none;
    padding: 5px 15px;
    transition: color 0.3s;
}

    .submenu a:hover[b-c8fp8bpy8b] {
        color: #007bff;
    }
/* Mobile Sidebar */
.mobile-sidebar[b-c8fp8bpy8b] {
    background-color: #f8f9fa;
    padding: 1rem;
}
/* /Layout/BackendTopNav.razor.rz.scp.css */
/* Base styles */
.top-nav[b-mzdbxmgega] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    background-color: gray;
    color: #FFFFFF;
}

.nav-left[b-mzdbxmgega], .nav-center[b-mzdbxmgega], .nav-right[b-mzdbxmgega] {
    display: flex;
    align-items: center;
}

.logo img[b-mzdbxmgega] {
    width: 40px;
    height: auto;
    margin-right: 10px;
}

.logo span[b-mzdbxmgega] {
    font-size: 1.5em;
    font-weight: bold;
    color: #FFFFFF;
}

.visit-website-btn[b-mzdbxmgega] {
    text-decoration: none;
    color: #FFFFFF;
    padding: 8px 16px;
    border: 1px solid #FFFFFF;
    border-radius: 4px;
    transition: background-color 0.3s;
}

    .visit-website-btn:hover[b-mzdbxmgega] {
        background-color: #FFFFFF;
        color: #2A3F54;
    }

.icon-container i[b-mzdbxmgega], .dropdown-icon[b-mzdbxmgega] {
    font-size: 1.5em;
    color: #FFFFFF;
    cursor: pointer;
    margin-left: 15px;
}

.profile-info[b-mzdbxmgega] {
    display: flex;
    align-items: center;
    cursor: pointer;
}

    .profile-info img[b-mzdbxmgega] {
        width: 35px;
        height: 35px;
        border-radius: 50%;
        margin-right: 10px;
    }

.profile-name[b-mzdbxmgega] {
    font-weight: bold;
    margin-right: 5px;
}

.profile-role[b-mzdbxmgega] {
    font-size: 0.85em;
    color: #C0C0C0;
}

/* Dropdown Menu */
.dropdown-menu[b-mzdbxmgega] {
    position: absolute;
    top: 50px;
    right: 0;
    background-color: #FFFFFF;
    color: #333;
    border-radius: 4px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    z-index: 1000;
    display: none; /* Hide by default */
}

    .dropdown-menu.show[b-mzdbxmgega] {
        display: block; /* Show when active */
    }

    .dropdown-menu a[b-mzdbxmgega] {
        display: block;
        padding: 10px 20px;
        text-decoration: none;
        color: #333;
    }

        .dropdown-menu a:hover[b-mzdbxmgega] {
            background-color: #f1f1f1;
        }


/* Mobile menu */
.mobile-only[b-mzdbxmgega] {
    display: none;
}

.mobile-menu[b-mzdbxmgega] {
    display: none;
    background-color: #2A3F54;
    color: #FFFFFF;
    padding: 15px;
    position: absolute;
    top: 60px;
    right: 0;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

    .mobile-menu a[b-mzdbxmgega], .mobile-menu .icon-container i[b-mzdbxmgega] {
        display: block;
        padding: 10px 0;
        text-decoration: none;
        color: #FFFFFF;
        text-align: center;
    }

    .mobile-menu .icon-container[b-mzdbxmgega] {
        display: flex;
        justify-content: space-around;
    }

/* Responsive design */
@media (max-width: 768px) {
    .desktop-only[b-mzdbxmgega] {
        display: none;
    }

    .mobile-only[b-mzdbxmgega] {
        display: block;
    }
}
/* /Layout/CategoryMenu.razor.rz.scp.css */
/* Categories Button */
.categories-btn[b-igs9k0a9qw] {
    display: flex;
    align-items: center;
    padding: 10px 15px;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s;
    cursor: pointer;
    margin: 12px auto;
}

    .categories-btn:hover[b-igs9k0a9qw] {
        background-color: #e9ecef;
    }

/* Main Categories Menu */
.category-menu[b-igs9k0a9qw] {
    position: absolute;
    left: 0;
    display: flex;
    flex-direction: column;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 0;
    margin-top: 5px;
    z-index: 1000;
    width: 318px;
}

.category-item[b-igs9k0a9qw] {
    padding: 10px 15px;
    color: #333;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: background-color 0.3s;
    position: relative;
}

    .category-item:hover[b-igs9k0a9qw] {
        background-color: #f8f9fa;
        color: #007bff;
    }

    .category-item i[b-igs9k0a9qw] {
        font-size: 1.2rem;
        color: #007bff;
        margin-right: 10px;
    }

/* Submenu */
.submenu[b-igs9k0a9qw] {
    position: absolute;
    left: 100%;
    top: 0;
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
    min-width: 200px;
    display: none;
}

.category-item:hover .submenu[b-igs9k0a9qw] {
    display: block;
}

.submenu-item[b-igs9k0a9qw] {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    color: #333;
    font-size: 0.95rem;
    transition: color 0.3s;
}

    .submenu-item:hover[b-igs9k0a9qw] {
        color: #28a745;
    }

    .submenu-item i[b-igs9k0a9qw] {
        font-size: 1.1rem;
        color: #28a745;
        margin-right: 8px;
    }
/* Mobile Styles */
@media (max-width: 768px) {
    .categories-btn[b-igs9k0a9qw] {
        display:none;
    }
}
/* /Layout/HeaderLayout.razor.rz.scp.css */
@media (max-width: 768px) {
    .header-three[b-yel19o6npp] {
        padding: 10px 15px;
    }

    .navbar-brand img[b-yel19o6npp] {
        width: 120px;
    }

    .header-navbar-rht li[b-yel19o6npp] {
        margin-left: 10px;
    }

    .header-top .icon-btn[b-yel19o6npp] {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .header-top .icon-btn[b-yel19o6npp] {
        display: none; /* Hide contact details on extra-small screens */
    }

    .header-three .header-nav-three[b-yel19o6npp] {
        padding: 5px 10px;
    }
}
/* /Pages/BackendPortal/BackendDashboard.razor.rz.scp.css */
/* /Pages/BackendPortal/NavigationMenu.razor.rz.scp.css */
/* Base Sidebar Styling */
.sidebar[b-0ry3gol19e] {
    width: 250px;
    background-color: #fff;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    overflow-y: auto;
    transition: transform 0.3s ease;
    z-index: 1000;
    transform: translateX(-100%);
}

    .sidebar.show[b-0ry3gol19e] {
        transform: translateX(0);
    }

/* Profile Section Styling */
.profile-section[b-0ry3gol19e] {
    padding: 20px;
    text-align: center;
}

.profile-img img[b-0ry3gol19e] {
    border-radius: 50%;
    width: 80px;
    height: 80px;
}

.profile-name h4[b-0ry3gol19e] {
    margin: 10px 0 5px;
    font-size: 18px;
    color: #333;
}

.add-course[b-0ry3gol19e] {
    display: inline-block;
    padding: 8px 12px;
    font-size: 14px;
    color: #fff;
    background-color: #007bff;
    border-radius: 4px;
    text-decoration: none;
}

/* Menu Styling */
.settings-menu[b-0ry3gol19e] {
    padding: 20px 0;
}

    .settings-menu h3[b-0ry3gol19e] {
        font-size: 14px;
        padding-left: 20px;
        color: #888;
        text-transform: uppercase;
        margin-top: 20px;
    }

    .settings-menu ul[b-0ry3gol19e] {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .settings-menu ul li[b-0ry3gol19e] {
            padding: 10px 20px;
        }

            .settings-menu ul li a[b-0ry3gol19e] {
                display: flex;
                align-items: center;
                color: #333;
                text-decoration: none;
                font-size: 16px;
            }

                .settings-menu ul li a i[b-0ry3gol19e] {
                    margin-right: 15px;
                    font-size: 20px;
                    color: #666;
                }

                /* Active and Hover State */
                .settings-menu ul li.active a[b-0ry3gol19e],
                .settings-menu ul li a:hover[b-0ry3gol19e] {
                    color: #007bff;
                }

/* Hide sidebar by default on mobile */
@media (max-width: 992px) {
    .sidebar[b-0ry3gol19e] {
        display: none;
    }

    .toggle-sidebar-btn[b-0ry3gol19e] {
        display: inline-block;
        position: fixed;
        top: 10px;
        left: 10px;
        z-index: 1000;
        background-color: #007bff;
        color: #fff;
        border: none;
        padding: 10px;
        border-radius: 5px;
        cursor: pointer;
    }
}

/* Show sidebar by default on larger screens */
@media (min-width: 992px) {
    .toggle-sidebar-btn[b-0ry3gol19e] {
        display: none;
    }

    .sidebar[b-0ry3gol19e] {
        display: block !important;
    }
}
/* /Pages/BackendPortal/QuestionAnswerPage/QuestionAnswerList.razor.rz.scp.css */
.chat-container[b-y9rld5g9g4] {
    height: 100vh;
    display: flex;
}

.student-list[b-y9rld5g9g4] {
    background: #f8f9fa;
    border-right: 1px solid #ddd;
    padding: 10px;
}

.search-bar[b-y9rld5g9g4] {
    margin-bottom: 10px;
}

.list-group-item[b-y9rld5g9g4] {
    cursor: pointer;
    border: none;
    border-bottom: 1px solid #ddd;
    padding: 10px;
}

    .list-group-item:hover[b-y9rld5g9g4] {
        background-color: #e9ecef;
    }

.student-image[b-y9rld5g9g4] {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.student-info[b-y9rld5g9g4] {
    flex-grow: 1;
}

.student-name[b-y9rld5g9g4] {
    font-weight: bold;
}

.timestamp[b-y9rld5g9g4] {
    font-size: 12px;
    color: #888;
}

.chat-panel[b-y9rld5g9g4] {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.chat-header[b-y9rld5g9g4] {
    padding: 10px;
    background: #f8f9fa;
    border-bottom: 1px solid #ddd;
}

.chat-header-image[b-y9rld5g9g4] {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.chat-body[b-y9rld5g9g4] {
    flex-grow: 1;
    overflow-y: auto;
    padding: 10px;
}

.chat-message[b-y9rld5g9g4] {
    margin-bottom: 10px;
    max-width: 70%;
}

    .chat-message.sent[b-y9rld5g9g4] {
        margin-left: auto;
        background-color: #e1f7d5;
        padding: 10px;
        border-radius: 10px;
        text-align: right;
    }

    .chat-message.received[b-y9rld5g9g4] {
        background-color: #f1f1f1;
        padding: 10px;
        border-radius: 10px;
        text-align: left;
    }

.chat-input[b-y9rld5g9g4] {
    padding: 10px;
    border-top: 1px solid #ddd;
    background: #fff;
}

.send-button[b-y9rld5g9g4] {
    margin-left: 10px;
}
/* /Pages/CourseDetailsPage.razor.rz.scp.css */
.nav-tabs .nav-link.active[b-4djd3ta97n] {
    font-weight: bold;
    color: #000000; 
    border-bottom: 2px solid #563d7c;
}
/* /Pages/InstructorViewList.razor.rz.scp.css */
.profile-card[b-zof449m5j1] {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    max-width: 400px;
    margin: auto;
}

    .profile-card img[b-zof449m5j1] {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        border: 5px solid #f3f3f3;
    }

    .profile-card h5[b-zof449m5j1] {
        font-size: 24px;
        font-weight: bold;
        margin: 10px 0;
    }

    .profile-card .stars[b-zof449m5j1] {
        color: #f4c150;
    }

    .profile-card .rating[b-zof449m5j1] {
        font-size: 14px;
        color: #4CAF50;
        font-weight: bold;
    }

    .profile-card .follow-btn[b-zof449m5j1] {
        background: #28a745;
        color: #fff;
        border-radius: 20px;
        padding: 5px 15px;
        font-size: 16px;
        margin-top: 10px;
    }

    .profile-card .icon-list[b-zof449m5j1] {
        margin-top: 15px;
    }

        .profile-card .icon-list i[b-zof449m5j1] {
            font-size: 24px;
            margin: 0 8px;
            color: #555;
        }

    .profile-card .stats[b-zof449m5j1] {
        display: flex;
        justify-content: space-around;
        margin-top: 20px;
    }

        .profile-card .stats div[b-zof449m5j1] {
            text-align: center;
        }

            .profile-card .stats div span[b-zof449m5j1] {
                font-size: 20px;
                font-weight: bold;
                display: block;
            }

            .profile-card .stats div p[b-zof449m5j1] {
                font-size: 14px;
                color: #777;
                margin: 0;
            }
/* /Pages/Saas/Packages/PackageList.razor.rz.scp.css */
.plan-header[b-bs21cuw000] {
    margin: 0 0 16px 0;
}
.plan-header .plan-widget-icon[b-bs21cuw000] {
        background: #ECEBFF;
        padding: 10px;
        border-radius: 16px;
    }
.plan-header .plan-title[b-bs21cuw000] {

    }
.plan-header .plan-name[b-bs21cuw000] {
        font-weight: 700;
    }

h4[b-bs21cuw000] {
    font-weight: 600;
    font-size: 18px;
}
.plan-description ul li[b-bs21cuw000] {
    margin: 0 0 14px 0;
}

.plan-description ul li span[b-bs21cuw000] {
        background: #4A3AFF;
        color: #fff;
        display: inline-flex;
        margin: 0;
        padding: 3px;
        line-height: 0;
    }

.rounded-circle[b-bs21cuw000] {
    border-radius: 50% !important;
    background: var(--theme-primary) !important;
    
}
.plan-description[b-bs21cuw000] {
    margin: 0 0 34px 0;
}
.price-dollar h1 span[b-bs21cuw000] {
    font-weight: 500;
    color: #878A99;
    font-size: 13px;
}
.price-dollar h1[b-bs21cuw000] {
    font-size: 30px;
    font-weight: 700;
    margin: 0 0 10px 0;
}
.plan-description h6[b-bs21cuw000] {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 18px 0;
}
/* /Pages/Saas/Users/Subscription.Razor.rz.scp.css */

.card-2[b-qb0a5suxff] {
    height: 100%;
    max-height: 480px;
    margin-bottom: 0;
}

.full-card[b-qb0a5suxff] {
    min-height: 236px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fulls-card[b-qb0a5suxff] {
    min-height: 180px;
}

.kanban-card img[b-qb0a5suxff] {
    position: relative;
    width: 39px;
    height: 38px;
    border-radius: 50% !important;
    z-index: 2;
    transition: all 0.1s ease-in-out;
    border: 2px solid #ffffff;
}

.card[b-qb0a5suxff] {
    box-shadow: 0 6px 30px rgba(182, 186, 203, 0.3);
    margin-bottom: 24px;
    transition: box-shadow 0.2s ease-in-out;
}

    .card .card-header[b-qb0a5suxff] {
        border-bottom: 1px solid #f1f1f1;
    }

        .card .card-header .float-end .btn[b-qb0a5suxff] {
            margin: -6px 0;
        }

        .card .card-header h5[b-qb0a5suxff], .card .card-header .h5[b-qb0a5suxff] {
            margin-bottom: 0;
            color: #060606;
            font-size: 16px;
            font-weight: 600;
        }

            .card .card-header h5 + p[b-qb0a5suxff], .card .card-header .h5 + p[b-qb0a5suxff],
            .card .card-header h5 + small[b-qb0a5suxff],
            .card .card-header .h5 + small[b-qb0a5suxff],
            .card .card-header h5 + .small[b-qb0a5suxff],
            .card .card-header .h5 + .small[b-qb0a5suxff] {
                margin-top: 10px;
            }

                .card .card-header h5 + p:last-child[b-qb0a5suxff], .card .card-header .h5 + p:last-child[b-qb0a5suxff],
                .card .card-header h5 + small:last-child[b-qb0a5suxff],
                .card .card-header .h5 + small:last-child[b-qb0a5suxff],
                .card .card-header h5 + .small:last-child[b-qb0a5suxff],
                .card .card-header .h5 + .small:last-child[b-qb0a5suxff] {
                    margin-bottom: 0;
                }

        .card .card-header:not(.border-0) h5[b-qb0a5suxff], .card .card-header:not(.border-0) .h5[b-qb0a5suxff] {
            position: relative;
        }

            .card .card-header:not(.border-0) h5[b-qb0a5suxff]:after, .card .card-header:not(.border-0) .h5[b-qb0a5suxff]:after {
                content: "";
                height: 30px;
                width: 3px;
                background: #51459d;
                position: absolute;
                left: -25px;
                top: -5px;
                border-radius: 0 3px 3px 0;
            }

        .card .card-header .card-header-right[b-qb0a5suxff] {
            right: 10px;
            top: 10px;
            float: right;
            padding: 0;
            position: absolute;
        }

            .card .card-header .card-header-right .dropdown-menu[b-qb0a5suxff] {
                margin-top: 0;
            }

                .card .card-header .card-header-right .dropdown-menu li[b-qb0a5suxff] {
                    cursor: pointer;
                }

                    .card .card-header .card-header-right .dropdown-menu li a[b-qb0a5suxff] {
                        font-size: 14px;
                        text-transform: capitalize;
                    }

            .card .card-header .card-header-right .btn.dropdown-toggle[b-qb0a5suxff] {
                border: none;
                background: transparent;
                box-shadow: none;
                color: #888;
            }

                .card .card-header .card-header-right .btn.dropdown-toggle i[b-qb0a5suxff] {
                    margin-right: 0;
                }

                .card .card-header .card-header-right .btn.dropdown-toggle[b-qb0a5suxff]:after {
                    display: none;
                }

                .card .card-header .card-header-right .btn.dropdown-toggle:focus[b-qb0a5suxff] {
                    box-shadow: none;
                    outline: none;
                }

            .card .card-header .card-header-right .btn.dropdown-toggle[b-qb0a5suxff] {
                border: none;
                background: transparent;
                box-shadow: none;
                padding: 0;
                width: 20px;
                height: 20px;
                right: 8px;
                top: 12px;
            }

                .card .card-header .card-header-right .btn.dropdown-toggle.mobile-menu span[b-qb0a5suxff] {
                    background-color: #888;
                    height: 2px;
                    border-radius: 5px;
                }

                    .card .card-header .card-header-right .btn.dropdown-toggle.mobile-menu span[b-qb0a5suxff]:after, .card .card-header .card-header-right .btn.dropdown-toggle.mobile-menu span[b-qb0a5suxff]:before {
                        border-radius: 5px;
                        height: 2px;
                        background-color: #888;
                    }

            .card .card-header .card-header-right .nav-pills[b-qb0a5suxff] {
                padding: 0;
                box-shadow: none;
                background: transparent;
            }

    .card .card-footer[b-qb0a5suxff] {
        transition: box-shadow 0.2s ease-in-out;
        border-top: 1px solid #f1f1f1;
    }

    .card .card-img-overlay[b-qb0a5suxff] {
        background: rgba(0, 0, 0, 0.5);
    }

    .card:hover .card-footer[class*="bg-"][b-qb0a5suxff] {
        box-shadow: none;
    }

    .card.bg-primary[b-qb0a5suxff] {
        box-shadow: 0 9px 9px -1px rgba(81, 69, 157, 0.3);
        background-color: var(--theme-primary) !important;
    }

    .card.bg-secondary[b-qb0a5suxff] {
        box-shadow: 0 9px 9px -1px rgba(108, 117, 125, 0.3);
    }

    .card.bg-success[b-qb0a5suxff] {
        box-shadow: 0 9px 9px -1px rgba(111, 217, 67, 0.3);
    }

    .card.bg-info[b-qb0a5suxff] {
        box-shadow: 0 9px 9px -1px rgba(62, 201, 214, 0.3);
    }

    .card.bg-warning[b-qb0a5suxff] {
        box-shadow: 0 9px 9px -1px rgba(255, 162, 29, 0.3);
    }

    .card.bg-danger[b-qb0a5suxff] {
        box-shadow: 0 9px 9px -1px rgba(255, 58, 110, 0.3);
    }

    .card.bg-light[b-qb0a5suxff] {
        box-shadow: 0 9px 9px -1px rgba(248, 249, 250, 0.3);
    }

    .card.bg-dark[b-qb0a5suxff] {
        box-shadow: 0 9px 9px -1px rgba(28, 35, 47, 0.3);
    }

.align-items-start[b-qb0a5suxff] {
    align-items: flex-start !important;
}

.align-items-end[b-qb0a5suxff] {
    align-items: flex-end !important;
}

.align-items-center[b-qb0a5suxff] {
    align-items: center !important;
}

.align-items-baseline[b-qb0a5suxff] {
    align-items: baseline !important;
}

.align-items-stretch[b-qb0a5suxff] {
    align-items: stretch !important;
}

.align-content-start[b-qb0a5suxff] {
    align-content: flex-start !important;
}

.align-content-end[b-qb0a5suxff] {
    align-content: flex-end !important;
}

.align-content-center[b-qb0a5suxff] {
    align-content: center !important;
}

.align-content-between[b-qb0a5suxff] {
    align-content: space-between !important;
}

.align-content-around[b-qb0a5suxff] {
    align-content: space-around !important;
}

.align-content-stretch[b-qb0a5suxff] {
    align-content: stretch !important;
}

.align-self-auto[b-qb0a5suxff] {
    align-self: auto !important;
}

.align-self-start[b-qb0a5suxff] {
    align-self: flex-start !important;
}

.align-self-end[b-qb0a5suxff] {
    align-self: flex-end !important;
}

.align-self-center[b-qb0a5suxff] {
    align-self: center !important;
}

.align-self-baseline[b-qb0a5suxff] {
    align-self: baseline !important;
}

.align-self-stretch[b-qb0a5suxff] {
    align-self: stretch !important;
}

body.theme-3 .bg-primary[b-qb0a5suxff] {
    background: linear-gradient(141.55deg, #6FD943 3.46%, #6FD943 99.86%), #6FD943 !important;
}

body.theme-3 .dash-header .drp-language .drp-text[b-qb0a5suxff],
body.theme-3 .dash-header .dash-head-link > i:not(.nocolor)[b-qb0a5suxff] {
    color: #6FD943;
}

body.theme-3 .dash-header .drp-company .theme-avtar[b-qb0a5suxff] {
    background: #e2f7d9;
    color: #6FD943;
}

body.theme-3 .dash-sidebar.light-sidebar .dash-navbar > .dash-item.active > .dash-link[b-qb0a5suxff], body.theme-3 .dash-sidebar.light-sidebar .dash-navbar > .dash-item:active > .dash-link[b-qb0a5suxff], body.theme-3 .dash-sidebar.light-sidebar .dash-navbar > .dash-item:focus > .dash-link[b-qb0a5suxff], body.theme-3 .dash-sidebar.light-sidebar .dash-navbar > .dash-item:hover > .dash-link[b-qb0a5suxff],
body.theme-3 .dash-sidebar .dash-navbar > .dash-item.active > .dash-link[b-qb0a5suxff],
body.theme-3 .dash-sidebar .dash-navbar > .dash-item:active > .dash-link[b-qb0a5suxff],
body.theme-3 .dash-sidebar .dash-navbar > .dash-item:focus > .dash-link[b-qb0a5suxff],
body.theme-3 .dash-sidebar .dash-navbar > .dash-item:hover > .dash-link[b-qb0a5suxff] {
    background: linear-gradient(141.55deg, #6FD943 3.46%, #6FD943 99.86%), #6FD943;
    color: #fff;
    box-shadow: 0 5px 7px -1px rgba(111, 217, 67, 0.3);
}

    body.theme-3 .dash-sidebar.light-sidebar .dash-navbar > .dash-item.active > .dash-link i[b-qb0a5suxff], body.theme-3 .dash-sidebar.light-sidebar .dash-navbar > .dash-item:active > .dash-link i[b-qb0a5suxff], body.theme-3 .dash-sidebar.light-sidebar .dash-navbar > .dash-item:focus > .dash-link i[b-qb0a5suxff], body.theme-3 .dash-sidebar.light-sidebar .dash-navbar > .dash-item:hover > .dash-link i[b-qb0a5suxff],
    body.theme-3 .dash-sidebar .dash-navbar > .dash-item.active > .dash-link i[b-qb0a5suxff],
    body.theme-3 .dash-sidebar .dash-navbar > .dash-item:active > .dash-link i[b-qb0a5suxff],
    body.theme-3 .dash-sidebar .dash-navbar > .dash-item:focus > .dash-link i[b-qb0a5suxff],
    body.theme-3 .dash-sidebar .dash-navbar > .dash-item:hover > .dash-link i[b-qb0a5suxff] {
        color: #6FD943;
    }

body.theme-3 .dash-sidebar.light-sidebar .dash-item .dash-submenu .dash-item[b-qb0a5suxff]::before,
body.theme-3 .dash-sidebar .dash-item .dash-submenu .dash-item[b-qb0a5suxff]::before {
    border-right-color: #6FD943;
}

.full-card[b-qb0a5suxff] {
    min-height: 236px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fulls-card[b-qb0a5suxff] {
    min-height: 180px;
}

.mt-3[b-qb0a5suxff] {
    margin-top: 1rem !important;
}


/* /Pages/StudentPoral/LearningPortal/LearningDashboard.razor.rz.scp.css */
.watermark-container[b-85nuk1imzo] {
    position: absolute;
    z-index: 20;
    pointer-events: none;
    animation: moveWatermark 100s linear infinite;
}

.d-none[b-85nuk1imzo] {
    display: none;
}
/* /Pages/StudentPoral/Quiz.razor.rz.scp.css */
.option-box[b-8jh1ee0150]
{
    transition: all ease 0.2s;
}
.option-box:hover[b-8jh1ee0150]
{
    border-radius:10px;
    box-shadow:0 0 18px 1px #bebebe;
}
