/*
Theme Name: NAPLAN Style
Theme URI: 
Author: 
Author URI: 
Description: 
Version: 1.0.0
Text Domain: naplan-style
*/

/* ==================== 1. CSS Variables & Colors ==================== */
/* Default (Light Mode) Colors */
:root {
    --bg-body: #fff;
    --text-body: #212529; 
    --bg-header: #ffffff;  
    --text-header: #212529;
    --border-color: #dee2e6;
    --primary-color: #0d6efd;
	--font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
	--theme-color-1:#203f75;
	--theme-color-2:#319cd2;
	--theme-color-3:#8cbc42;
	--theme-color-4:#1d78ac;
	--white:#fff;
}

/* Dark Mode Colors */
body.dark-mode {
    --bg-body: #fff;  
    --text-body: #e0e0e0;
    --bg-header: #1f1f1f; 
    --text-header: #ffffff;
    --border-color: #2d2d2d;
}

/* ==================== 2. Base Styles ==================== */
/* .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1400px;
} */
body {
    background-color: var(--bg-body);
    color: var(--text-body);
    transition: background-color 0.3s ease, color 0.3s ease;
	font-family: var(--font-body);
	line-height: 1.6;
}
dl, ol, ul {
    margin-bottom: 0rem;
}
.text-primary {
    --bs-text-opacity: 1;
    color: var(--theme-color-1)!important;
}
.site-header .navbar {
        backdrop-filter: blur(28px);
    background-color: #0000 !important;
   transition: background-color 0.3s ease, border-color 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.site-header .navbar-brand,
.site-header .nav-link {
    transition: color 0.3s ease;
	padding: 0;
    margin: 0;
}
.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.dark-mode .navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar {
	padding:0 ;
}
.custom-logo {
    height: auto;
    max-height: 85px;
    width: auto;
	padding: 5px;
}
#menu-menu {
    gap: 20px;
}
#menu-menu .menu-item a, .login-button{
	position:relative;
	 overflow: hidden;
	z-index: 1;
    transition:all 0.9s ease 0.5s;
	text-transform: capitalize;
	font-weight:700;
	font-size:16px;
	color: #000;
}
#menu-menu .menu-item a.active {
	color: var(--theme-color-3);
}
#menu-menu .menu-item a:hover, .login-button:hover{
    color: var(--theme-color-3);
}
#menu-menu .menu-item a:before, .login-button:before{
    content: '';
    background: radial-gradient(var(--theme-color-3),transparent,transparent);
    height: 100%;
    width: 100%;
    position: absolute;
    left: 100%;
    top: 0;
    transition: all 0.5s ease 0.9s, left 0.9s cubic-bezier(.45,-0.33,.43,3);
}
#menu-menu .menu-item a:hover:before, .login-button:hover:before{
    opacity: 0;
    left: -10%;
}
.login-button {
    text-decoration: none;
}
.register-button {
    background-color: #1D78AC;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    transition-duration: 0.5s;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #1D78AC;
    border-radius: 45px 45px 45px 45px;
    width: max-content;
    padding: 8px 30px;
    color: #fff;
    text-decoration: none;
}
/* ==================== Smart Sticky Header Styles ==================== */
.smart-sticky-header {
    transition: transform 0.3s ease-in-out, background-color 0.3s ease;
    will-change: transform; 
}
.header-hidden {
    transform: translateY(-100%);
}
body.has-smart-header {
    padding-top: 70px;
}
@media (min-width: 992px) {
     body.has-smart-header {
        padding-top: 80px;
     }
}
h1, h2, h3, h4, h5, h6, .navbar-brand {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-header);
}
/* ==================== Back to Top Button ==================== */
.back-to-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 50px;
    height: 50px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s, transform 0.3s;
    opacity: 0.8;
	color:#fff;
}

.back-to-top-btn:hover {
    opacity: 1;
    transform: translateY(-3px);
	color:#fff;
}
.dark-mode .site-footer {
    background-color: #1a1a1a !important;
    color: #e0e0e0 !important;
}
/* hero section */
.satisfied-students-img div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-right: -6px;
    margin-left: -6px;
}
.satisfied-students-img div img {
    height: 46px;
    width: 46px;
}
#satisfied-students {
    width: max-content;
}
.satisfied-students-img {
    width: fit-content;
    margin: auto;
}
h1.elementor-heading-title span {
    background: linear-gradient(90deg, #005697 0%, #8CC63E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    
    /* Optional: Thoda bold karne ke liye */
    font-weight: 700;
}
.arrow-icon-svg svg {
    font-size: 26px;
}
.site-footer {
    border-radius: 50px 50px 0 0;
    padding-top: 70px !important;
	    padding-bottom: 1.5rem!important;
}
#menu-footer-bottom {
    list-style: none;
    padding-left: 0;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-end;
    gap: 20px;
	margin-bottom: 0;
	flex-wrap: wrap;
}
#menu-footer-bottom a {
    text-decoration: none;
    color: #b1b1b1;
}
#menu-footer-bottom a:hover {
	color:var(--theme-color-3);
}
.wp-block-heading, .widget-title {
    color: var(--theme-color-3);
    font-weight: 100;
    font-size: 1.25rem;
}
#menu-quick-links, #menu-company {
    list-style: none;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0;
}
#menu-quick-links a, #menu-company a {
    color: #fff;
    text-decoration: none;
}
#menu-quick-links a:hover, #menu-company a:hover {
	color:var(--theme-color-3);
}
.wp-block-social-links {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
.wp-block-social-links a svg {
    fill: #fff;
    height: 32px !important;
    width: 32px !important;
}
/* blog */
.blog-card-slider{
    background-color: transparent;
    background-image: radial-gradient(at bottom center, #E3EDFF 0%, #FFFFFF 100%);
	border:1px solid #E3EDFF;
    border-radius: 10px;
	overflow:hidden;
}
.blog-img-and--icon {
    position: relative;
}
.blog-share-icons {
    position: absolute;
    top: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
    justify-content: center;
    gap: 20px;
    border-radius: 10px 10px 0 0;
    padding: 0;
    background-color: transparent;
    background-image: radial-gradient(at bottom center, #E3EDFF 0%, #FFFFFF 100%);
    border-top: 1px solid #E3EDFF;
}
.blog-share-icons a svg {
    width: 30px;
    height: 30px;
}
.blog-card-box-content a {
    color: #000;
}
.share-icon-shoe-hide {
	display:none;
}
.blog-share-icons a {
    font-size: 32px;
}
.icon-mail {
    font-size: 32px;
    color: rgb(234, 67, 53);
}
.copyLinkBtn {
    background: #0000;
    font-size: 24px;
    padding: 0;
    border: none;
    color: var(--text-color);
}
.blog-card-box-content {
    padding: 10px 20px;
}
	.blog-card-box-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4em;
    max-height: 2.8em;
    margin-bottom: 10px;
		font-size: 22px;
}
.blog-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.6em;
}
.blog-card-slider:hover h3{
	color:var(--theme-color-3);
}
.blog-card-box-content p {
	font-size: 16px;
}
.blog-card-slider:hover .share-icon-shoe-hide{
    display: block;
}
.blog-category-badge {
    position: absolute;
    bottom: 5px;
    left: 5px;
    padding: 5px 20px;
    background-color: transparent;
    background-image: radial-gradient(at bottom center, #E3EDFF 0%, #FFFFFF 100%);
    border: 1px solid #E3EDFF;
    border-radius: 40px;
}
.blog-category-badge a {
    color: #000;
	font-size:14px;
}
.custom-blog-slider {
	margin-bottom:0 !important;
}
#catModalTitle {
    font-size: 22px;
}
p#catModalDesc {
    font-size: 14px;
}
.slick-dots li button:before {
    opacity: 0.4 !important;
    color: #8cbc42 !important;
}
.slick-dots li.slick-active button:before {
    opacity: 1 !important;
    color: #8cbc42 !important;
}
.slick-prev {
    left: 15px !important;
    z-index: 1;
}
.slick-prev, .slick-next {
    width: 30px !important;
    height: 30px !important;
}
.slick-prev:before, .slick-next:before {
    font-family: revert !important;
    font-size: 30px !important;
    display: flex;
    color: #8cbc42 !important;
    border-radius: 50%;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    align-items: center;
    justify-content: center;
}
.slick-next {
    right: 15px !important;
}
.first-blog-card-box-slider {
    padding: 1px 0;
}
.blog-date {
    margin-bottom: 5px;
}
.expired-text.offer-timer {
    width: 100%;
    text-align: center;
    padding: 30px 0;
}
.widget-title.h5.mb-3 {
    color: var(--theme-color-3);
}
.copy-write-footer p {
    color: #b1b1b1;
}
.custom-blog-slider .slick-track {
    gap: 10px;
    display: flex;
}
.login {
    padding: 150px 0;
}
.registration {
    padding: 50px 0;
}
.login .auth-box-wrapper, .registration .auth-box-wrapper{
    max-width: 450px;
    margin: 0 0 auto auto;
    padding: 40px;
}
.auth-button {
    background-color: #1D78AC;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    transition-duration: 0.5s;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #1D78AC;
    border-radius: 45px 45px 45px 45px;
    width: 100%;
    padding: 8px 30px;
    color: #fff;
    text-decoration: none;
    margin: auto 0 auto auto;
	display:block;
	text-align:center;
}
.Password-div {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.dashboard-card h2 {
    font-size: 22px;
    color: var(--theme-color-3) !important;
}
.dashboard-card p {
font-weight: bold;	
}
.dashboard-card-right-side-box-1-left {
    border-right: 1px solid #ccc;
	    display: flex;
    flex-direction: column;
}
.badge {
    padding: 8px;
}
.button-2 {
    line-height: normal;
    margin-top: 10px;
}
.stats-card-1 {
    background-color: #e8f1ff !important;
}
.stats-card-2 {
    background-color: #fff3cd !important;
}
.stats-card-3 {
    background-color: #f8d7da !important;
}
.stats-card-1 span, .stats-card-2 span, .stats-card-3 span {
    font-size: 40px;
    width: 40px;
    height: auto;
    color: var(--theme-color-2);
}
.stats-card-1 span{
	color: var(--theme-color-2);
}
.stats-card-2 span{
	color: var(--theme-color-2);
}
.stats-card-3 span{
	color: var(--theme-color-2);
}

/* User Header Pill Design */
.user-header-pill {
    background-color: #F0F5FA;
    padding: 5px 15px 5px 5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.user-header-pill:hover, 
.user-header-pill[aria-expanded="true"] {
    background-color: #E2E8F0;
    border-color: #d1d9e6;
}

/* Avatar Styling */
.header-avatar-wrap img {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    object-fit: cover;
    display: block;
}

/* Text Styling */
.user-greeting {
    font-weight: 600;
    color: #333;
    font-size: 15px;
}

/* Remove Bootstrap default dropdown arrow if present */
.dropdown-toggle::after {
    display: none !important;
}

/* Mobile Alignment Fix */
@media (max-width: 991px) {
    .header-user-dropdown {
        margin-top: 10px;
    }
}
.back-to-top-btn, .back-to-top-btn:hover {
	background-color:var(--theme-color-4);
	border-color:var(--theme-color-4)
}

/* Section Styling */
    .bg-primary-light { background-color: #e7f1ff; color: #0d6efd; font-weight: 600; letter-spacing: 0.5px; }
    
    /* Card Styling */
    .course-card {
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    background-color: transparent;
    background-image: radial-gradient(at bottom center, #E3EDFF 0%, #FFFFFF 100%);
}
    .course-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
       border-color: var(--theme-color-4);
    }

    /* Image Area */
    .course-img-wrap {
        position: relative;
        height: 220px;
        overflow: hidden;
    }
    .course-img-wrap img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    .course-card:hover .course-img-wrap img {
        transform: scale(1.1); /* Zoom Effect */
    }
    .course-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: rgba(255, 255, 255, 0.95);
        padding: 6px 14px;
        border-radius: 50px;
        font-size: 12px;
        font-weight: 700;
        color: #333;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    /* Content Area */
    .course-title {
        font-size: 22px;
        font-weight: 700;
        color: #222;
        margin-bottom: 10px;
        transition: color 0.2s;
    }
    .course-card:hover .course-title {
        color: var(--theme-color-3);
    }
    .course-desc {
        font-size: 16px;
        line-height: 1.6;
    }

    /* Link Button */
    .btn-arrow-link {
        color: var(--theme-color-3);
        font-weight: 600;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        transition: gap 0.3s;
    }
    .btn-arrow-link:hover {
        color: var(--theme-color-3);
    }
.course-content {
    padding-top: 0 !important;
}
.grade-single-page h1 {
	font-size: 44px;
    font-weight: 600;
}
.btn.btn-primary {
    background-color: #1D78AC;
    font-size: 18px;
    font-weight: 500;
    line-height: 32px;
    transition-duration: 0.5s;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #1D78AC;
    border-radius: 45px 45px 45px 45px;
    /* width: 100%; */
    padding: 8px 30px;
    color: #fff;
    text-decoration: none;
    margin: auto auto auto 0;
    display: block;
    text-align: center;
}
.feature-item {
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    background-color: transparent;
    background-image: radial-gradient(at bottom center, #E3EDFF 0%, #FFFFFF 100%);
    height: 100%;
}
.feature-icon img {
    height: 45px;
    width: auto;
}
.feature-item h4 {
    font-size: 16px;
}
.grade-single-page-short-code-1, .grade-single-page-short-code-2 {
    margin: 40px 0;
}
.grade-single-page-short-code-1 h2, .grade-single-page-short-code-2 h2 {
    padding-bottom: 20px;
}
.bg-primary {
    background-color: var(--theme-color-1) !important;
}
.pricing-card {
        background-color: transparent;
    background-image: radial-gradient(at bottom center, #E3EDFF 0%, #FFFFFF 100%);
        border: 1px solid #203f752b;
        border-radius: 12px;
        padding: 30px 20px;
        text-align: center;
        height: 100%;
        display: flex;
        flex-direction: column;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 3px 4px var(--theme-color-1);
    }

    .plan-icon {
        font-size: 40px;
        color: var(--theme-color-1);
        margin-bottom: 15px;
    }

    .plan-title {
        color: var(--theme-color-1);
        font-weight: 700;
        font-size: 18px;
        text-transform: uppercase;
    }

    .plan-price {
        font-size: 32px;
        font-weight: 800;
        color: #222;
        margin-bottom: 20px;
    }

    .plan-desc {
        font-size: 14px;
        color: #666;
        line-height: 1.6;
        margin-bottom: 30px;
        flex-grow: 1; /* Content ko faila dega taaki button neeche rahe */
        text-align: left; /* Bullet points ache dikhenge */
    }
    
    /* Description ke andar ke bullet points */
    .plan-desc ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    .plan-desc li {
        margin-bottom: 10px;
        position: relative;
        padding-left: 20px;
    }
    .plan-desc li:before {
        content: '✓';
        color: var(--theme-color-2);
        position: absolute;
        left: 0;
        font-weight: bold;
    }

    .btn-plan {
        background-color: var(--theme-color-4);
        color: #fff;
        width: 100%;
        padding: 12px;
        border-radius: 50px;
        font-weight: 600;
        text-transform: uppercase;
        border: none;
        transition: background 0.3s ease;
    }
    .btn-plan:hover {
        background-color: var(--theme-color-4);
        color: #fff;
    }

.dashboard-card .badge {
    width: 100%;
}
.margin-auto {
	margin: auto !important;
}
.btn-full-width {
	width:100%;
}

.flex-direction-column {
	flex-direction: column;
}
.tokens-box-style {
    flex-direction: column;
    align-items: center;
}
.tokens-box-style button {
    width: 100%;
    font-size: 14px !important;
    line-height: 24px !important;
    margin-top: 20px !important;
}
.display-none {
	display:none;
}
.mr-0 {
    margin-right: 0 !important;
}
.tab-button-style.active {
    background: var(--theme-color-4) !important;
}
.pricing-card .plan-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.pricing-card .plan-price .regular-price {
    font-size: 2rem !important;
	color: #acacac !important;
}
.why-choose-box h3 {
	font-size:18px;
}
.box-1-style ul {
    color: #fff;
}
.box-2-style ul {
	color: #000;
}
.white-color {
    color: #fff;
}

.site-main .li ul li::before {
    content: '';
    position: absolute;
    left: 0px;
    top: 5px;
    background-image: url('https://cdn.prod.website-files.com/5fa202f6e9c0a08db0873236/5fab4e71030836d81f9cb2b3_Group%204.svg');
    width: 20px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
}
.site-main .li ul {
    list-style-type: none;
	padding-left: 0;
}
.site-main .li ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    line-height: 1.5;
}

@media only screen and (max-device-width: 767px) {
	.question-back-button, .question-next-button, .question-skip-button {
    padding: 8px 15px !important;
    font-size: 16px !important;
    display: flex;
    align-items: center;
    line-height: normal !important;
}
	.row.align-items-center.copy-write-footer {
    flex-direction: column-reverse;
    margin-bottom: 20px;
    gap: 25px;
}
	#menu-footer-bottom {
    justify-content: center;
}
	.naplan-courses-wrapper {
    padding: 0 !important;
}
	.naplan-courses-wrapper .container {
    padding: 0;
}
	.naplan-courses-wrapper .container .col-md-6.col-lg-4{
		padding:0;
		        margin-bottom: 20px;
	}
	.pricing-section-wrapper ul li {
    margin: 5px 0;
}
	.grade-single-page h1 {
    font-size: 22px;
}
	.change-subject-style {
    display: flex;
    flex-direction: column;
}
	.question-page-top-header {
    flex-direction: column;
    align-items: center;
		        gap: 8px;
        padding: 5px 10px !important;
}
	.question-and-time {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
	.shortcuts-quit {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
	.save-and-exit-footer #btn-exit-save {
    margin: auto;
}
	.dashboard-card-right-side-box-1-left {
    border-right: none;
}
	.site-header .navbar .header-actions {
    padding-bottom: 20px;
}
	.naplan-auth-container {
    flex-direction: column;
}
	.naplan-test-engine {
    padding-top: 10px;
}
	#timer-display {
    font-size: 12px;
}
	.timer-box i {
    font-size: 12px;
}
	.timer-box {
    padding: 5px 15px !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
	.test-header-wrapper {
    margin-bottom: 8px !important;
}
	.q-pane-left {
    padding: 10px 10px !important;
}
	.q-pane-left p span{
		margin-bottom:0;
		font-size:16px !important;
	}
	.q-pane-left p{
		margin-bottom:0;
	}
	.q-pane-left .mb-4.lead.text-dark {
		margin-bottom:0 !important;
	}
	.q-pane-right {
    padding: 10px !important;
}
	.option-box {
    border: 1px solid #e9ecef !important;
    padding: 5px 15px !important;
    gap: 5px !important;
    margin-bottom: 6px !important;
		width: 49%;
}
	.options-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    gap: 5px;
}
	.img-fluid-q {
    max-width: 100% !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    margin-bottom: 0px !important;
}
	.option-content {
    font-size: 12px !important;
}
	.image-mb-0 {
    margin-bottom: 0 !important;
}
.naplan-test-engine {
    min-height: auto !important;
}
	.option-content img {
		max-height:40px !important;
	}
	.test-card {
    padding: 1rem !important;
}
	.review-item {
    padding: 10px !important;
    margin-bottom: 10px !important;
}
	.option-and-image-style {
    flex-direction: column !important;
    gap: 20px;
}
}
.question-and-time {
    display: flex;
    align-items: center;
    gap: 20px;
}
	.mobile-center-button {
    margin: auto !important;
}
.answer-page-box {
	    display: flex;
    align-items: flex-start;
	    flex-direction: column;
}
.answer-page-box p{
	   margin-bottom:0;
}
.ans-img-preview {
    width: 40px;
}
@media only screen and (max-device-width: 1024px) {
		.movile-view-hide {
		display:none;
	}
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
#menu-menu .menu-item a, .login-button {
    font-size: 14px !important;
}
	#menu-menu {
    gap: 0px !important;
}
}
.modal-footer .btn.btn-primary {
    line-height: normal;
	    margin: 0;
}


/* New css 12-2-26 */

.navbar-toggler {
    border: 1px solid #000;
    color: #ffffff;
}
#menu-menu {
    text-align: center;
}
/* Mobile Devices */
@media (max-width: 767px) {
.header-actions {
    display: flex;
    justify-content: center;
}
	.subject-card h3 {
    text-align: left !important;
}
	.grade-and-paper .info-label {
    text-align: center;
}
	.shortcuts-quit .movile-view-hide {
    display: none;
}
	.shortcuts-quit {
    display: flex;
    justify-content: center;

}
	.back-to-top-btn {
    display: none !important;
}
	.option-box {
    padding: 5px 5px !important;
}
.option-box  .option-content {
    margin-left: 0px !important;
}
	.question-next-button {
		font-size:13px !important;
	}
	.question-back-button, .question-next-button, .question-skip-button {
    padding: 8px 10px !important;
    font-size: 13px !important;
    display: flex;
    align-items: center;
    line-height: normal !important;
}
.dropdown-menu-end[data-bs-popper] {
    right: auto;
    left: auto;
}
	.site-header .navbar {
    background-color: #ffffff !important;

}
}
#interest-form .btn-success {
    background-color: #1d78ac;
    border-color: #1d78ac;
}
.dashboard-card .badge {
    border-radius: 50px;
}
.text-end a {
    background-color: #1d78ac !important;
    border: none !important;
} 
.naplan-result-view .test-card img {
	max-width: 100%;
}