﻿@font-face {
	font-family: 'BrushScript';
	src: url('../fonts/brushscript.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-Bold.woff2') format('woff2');
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-Medium.woff2') format('woff2');
	font-weight: 500;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-Regular.woff2') format('woff2');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Outfit';
	src: url('../fonts/Outfit-SemiBold.woff2') format('woff2');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}


:root {
	--main-color: #000000;
	--sec-color: #bebebe;
	--ccc-color: #cccccc;
	--golden-color: #daa520;
	--golden-hover: #c49102;
	--scriptfont: 'BrushScript', sans-serif;
	--outfit-font: 'Outfit',sans-serif;
}

.main-color {
	background-color: var(--main-color);
}

.sec-color {
	background-color: var(--sec-color);
}

.margin-0 {
	margin: 0;
}

.scriptfont {
	font-family: var(--scriptfont);
}

.text-white {
	color: #ffffff;
}

.section-padding {
	padding: 40px 0;
}

.golden-bg {
	background: var(--golden-color);
}

.hide {
	display: none;
}

body {
	background: #f5f5f5;
	font-family: var(--outfit-font) !important;
	letter-spacing: 0.3px;
}

.headerBox {
	/* background: #1565C0;
     border-radius: 5px;
    margin-bottom: 20px;*/
	background: var(--main-color);
	color: #fff;
	padding: 15px;
	display: flex;
	border-bottom: 1px solid #fff;
}

.studentName {
	font-size: 18px;
	font-weight: bold;
}

.menu .studentName {
	color: #fff;
}

.lgot-btn-cls {
	font-weight: 700;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.btm-cart-btn {
	background: var(--main-color);
	font-weight: 600;
	border: 1px solid var(--main-color);
}

	.btm-cart-btn:hover {
		background: transparent;
		color: var(--main-color);
	}

.cartBox {
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	/* background: #28a745;*/
	background: var(--golden-color);
	color: #fff;
	padding: 12px;
	z-index: 9999;
}

.cartTotal {
	font-size: 22px;
	font-weight: bold;
}

div#CartSummary {
	font-weight: 700;
}

.itemCard {
	background: #fff;
	border-radius: 8px;
	margin-bottom: 15px;
	padding: 15px;
	box-shadow: 0px 2px 6px #ddd;
}

.itemImage {
	width: 70px;
	height: 70px;
	border-radius: 6px;
	object-fit: cover;
}

.itemName {
	font-size: 18px;
	font-weight: bold;
}

.itemPrice {
	color: #1565C0;
	font-size: 18px;
	font-weight: bold;
}

.qtyBtn {
	width: 35px;
	height: 35px;
	font-size: 18px;
}

.qtyText {
	min-width: 45px;
	text-align: center;
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	color: #fff;
}

/*.cst-hilight-text.main-color {
    padding: 20px 0;
}*/
.cst-hilight-text h2 {
	font-size: 40px;
}

.cst-logout-btn {
	color: #fff !important;
}

	.cst-logout-btn:hover, .cst-logout-btn:focus {
		background: var(--golden-hover);
		color: #fff !important;
		outline: unset;
	}

.header-wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.navbar {
	background: rgb(0 0 0 / 80%);
	margin-bottom: 0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 70px;
	padding: 10px 0;
}

.navbar-brand {
	line-height: 0;
	padding: 0;
	display: flex;
	align-items: center;
}

	.navbar-brand img {
		height: auto !important;
		width: 140px !important;
		filter: brightness(0) invert(1) !important;
		border-radius: none !important;
		background: transparent;
		border-radius: unset;
	}

.navbar-nav > li > a:hover {
	background: var(--golden-hover) !important;
}

.footer {
	background: var(--sec-color);
	margin-top: 0px;
	color: var(--main-color);
}
/* ===========================
   PRODUCT GRID
=========================== */
.product-grid {
	display: grid;
	grid-template-columns: repeat(4,minmax(0,1fr));
	gap: 24px;
}

/* ===========================
   CARD
=========================== */

.itemCard {
	background: #ccc;
	border-radius: 18px;
	overflow: hidden;
	border: 1px solid #ccc;
	padding: 18px;
	box-shadow: 0 8px 25px rgba(0,0,0,.06);
	height: 100%;
	opacity: 0;
	transform: translateY(40px);
	transition: all .6s ease;
}

	.itemCard.show {
		opacity: 1;
		transform: translateY(0);
	}

	.itemCard:hover {
		transform: translateY(-8px);
		box-shadow: 0 18px 40px rgba(0,0,0,.15);
		border-color: var(--golden-color);
	}

	/* ===========================
   REMOVE BOOTSTRAP ROW
=========================== */

	.itemCard .row {
		margin: 0;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

/* ===========================
   IMAGE
=========================== */

.cst-item-image {
	width: 100%;
	text-align: center;
	display: none;
}

.itemImage {
	width: 140px;
	height: 140px;
	object-fit: contain;
	transition: .4s;
}

.itemCard:hover .itemImage {
	transform: scale(1.08);
}

/* ===========================
   NAME
=========================== */

.cst-item-name {
	width: 100%;
	text-align: center;
	margin-top: 15px;
}

.itemName {
	font-size: 18px;
	font-weight: 500;
	color: var(--main-color);
	line-height: 1.4;
	min-height: 52px;
}

/* ===========================
   PRICE
=========================== */

.itemPrice {
	margin-top: 10px;
	font-size: 18px;
	color: var(--main-color);
	font-weight: 400;
}

/* ===========================
   BUTTON AREA
=========================== */

.cst-item-btn {
	width: 100%;
	margin-top: 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 14px;
}

	/* remove <br> spacing */
	.cst-item-btn br {
		display: none;
	}

.qtyText {
	min-width: 30px;
	text-align: center;
	font-size: 20px;
	font-weight: 400;
}

/* ===========================
   BUTTONS
=========================== */

.qtyBtn {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	border: none;
	font-size: 22px;
	transition: .25s;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
}

.qtyMinus, .qtyPlus {
	background: var(--golden-color);
	color: #fff;
	text-decoration: none;
}

.qtyBtn:hover {
	transform: scale(1.12);
	background: var(--golden-hover);
	color: #fff;
}

.btn-danger {
	background: #ff4d4f;
}

.btn-success {
	background: #28c76f;
}

.itemCard {
	position: relative;
	overflow: hidden;
}

.cst-item-btn {
	position: absolute;
	left: 50%;
	top: 100%;
	transform: translate(-50%, 0);
	opacity: 0;
	transition: all .4s ease;
	z-index: 10;
}

.itemCard:hover .cst-item-btn {
	top: 50%;
	transform: translate(-50%, -50%);
	opacity: 1;
}

.itemCard::before {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(0,0,0,.9);
	opacity: 0;
	transition: .35s;
	z-index: 1;
}

.itemCard:hover::before {
	opacity: 1;
}

.cst-item-image,
.cst-item-name {
	position: relative;
	z-index: 2;
}

.cst-item-btn {
	z-index: 3;
}
/* ===========================
   SECTION
=========================== */

.brand-section {
	background: var(--main-color);
}

/* ===========================
   GRID
=========================== */

.brand-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 30px;
}

/* ===========================
   CARD
=========================== */

.brand-card {
	background: transparent;
	/* border-radius: 18px; */
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	/* min-height: 180px; */
	/* border: 1px solid #eee; */
	box-shadow: 0 10px 30px rgba(0,0,0,.05);
	transition: .35s ease;
	opacity: 0;
	transform: translateY(50px);
}
	/* Reveal */

	.brand-card.show {
		opacity: 1;
		transform: translateY(0);
	}

	/* Hover */

	.brand-card:hover {
		transform: translateY(-8px);
		box-shadow: 0 20px 45px rgba(0,0,0,.12);
		border-color: #daa520;
	}

	/* Logo */

	.brand-card img {
		/* max-width: 180px; */
		/* max-height: 80px; */
		width: 100%;
		object-fit: contain;
		transition: .35s ease;
		filter: grayscale(100%);
		aspect-ratio: 1/1;
	}

	.brand-card:hover img {
		transform: scale(1.08);
		filter: grayscale(0);
	}
/*=========================
    TAG LINE
=========================*/

.tag-line-div {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 30px;
}

	/* Images */

	.tag-line-div img {
		width: 110px;
		height: 110px;
		object-fit: contain;
		transition: .4s ease;
	}

	/* Text */

	.tag-line-div h2 {
		flex: 1;
		margin: 0;
		text-align: center;
		color: #fff;
		font-size: 34px;
		line-height: 1.4;
		font-weight: 500;
	}

.std-menu-name-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.bran-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px;
	align-items: center;
}

ul.menu-cnt-details {
	margin: 0;
	padding: 0;
	list-style: disc;
	list-style-position: inside;
}

	ul.menu-cnt-details li {
		padding: 10px 0;
		color: #fff;
		transition: all 0.3s ease;
	}

		/* Bullet Color */
		ul.menu-cnt-details li::marker {
			color: #fff;
			font-size: 16px;
			transition: color 0.3s ease;
		}

		ul.menu-cnt-details li a {
			color: #fff;
			transition: all 0.3s ease;
		}

		/* Hover Effect */
		ul.menu-cnt-details li:hover {
			transform: translateX(8px);
		}

			ul.menu-cnt-details li:hover::marker {
				color: var(--golden-hover);
			}

			ul.menu-cnt-details li:hover a {
				color: var(--golden-hover);
				text-decoration: none;
			}

.menu-cnt-head {
	display: flex;
	align-items: center;
	gap: 10px;
}
/*login page*/
.login-panel {
	max-width: 500px;
	margin: 100px auto 30px;
	background: #fff;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 0 10px #ccc;
}

.login-header {
	/* background:#1565C0;*/
	background: var(--main-color);
	color: #fff;
	text-align: center;
	padding: 20px;
	/*border-radius:10px 10px 0 0;*/
}

	.login-header img {
		/* width:90px;
    height:90px;
    background:#fff;
    border-radius:50%;*/
		width: 260px;
		height: auto;
		padding: 8px;
		filter: brightness(0) invert(1);
		max-width: 100%;
	}

.login-body {
	padding: 20px;
	background: #ccc;
	padding-bottom: 0;
}

.login-footer {
	background: #ccc;
	text-align: center;
	padding: 12px 20px;
	color: #000;
}

.btn-login {
	width: 100%;
	height: 48px;
	font-size: 18px;
}

.login-body .form-group {
	display: flex;
	align-items: center;
	gap: 10px;
	justify-content: center;
	width: 100%;
}

.login-body label {
	margin-bottom: 0;
}

.error {
	color: red;
	font-weight: bold;
}

.verifyotp, .selectstudent, .payment, .myorders {
	min-height: calc(100vh - 140px);
	margin-top: 70px !important;
	display: flex;
	justify-content: center;
	align-items: center;
	/*
    padding: 20px;
    box-sizing: border-box;*/
}

.login-body .form-group label {
	width: 110px;
}

.login-body .form-group select, .login-body .form-group input {
	width: calc(100% - 120px);
	padding: 0 10px;
}

.school-dropdown {
	display: none;
}

.school-cards {
	display: grid;
	grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
	gap: 15px;
	margin-top: 10px;
}

.school-card {
	border: 2px solid #e5e5e5;
	border-radius: 12px;
	padding: 18px;
	background: #fff;
	cursor: pointer;
	transition: .3s;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-weight: 600;
	min-height: 70px;
}

.school-card:hover {
	transform: translateY(-4px);
	border-color: #D4AF37;
	box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.school-card.active {
	background: #D4AF37;
	color: #fff;
	border-color: #D4AF37;
}
.department-heading {
	font-size: 24px;
	font-weight: 700;
	color: #222;
	margin-bottom: 10px;
	font-family: "Times New Roman", Times, serif;
}
    


@media(max-width:768px) {

	.school-cards {
		grid-template-columns: 1fr;
	}
}
/*login page*/

/*verify otp*/
.otp-panel {
	max-width: 440px;
	margin: 50px auto;
	background: #fff;
	border-radius: 20px;
	box-shadow: 0px 2px 12px #ccc;
	overflow: hidden;
}

.otp-header {
	background: var(--main-color);
	color: #fff;
	text-align: center;
	padding: 20px;
}

.otp-body {
	padding: 20px;
	background: var(--ccc-color);
}

	.otp-body .form-group {
		display: flex;
		align-items: center;
		gap: 10px;
		justify-content: space-between;
		width: 100%;
	}

.btn-main {
	width: 100%;
	height: 48px;
	font-size: 18px;
	color: #fff;
}

.vrfy-btn {
	background: var(--main-color);
	color: #fff;
	transition: all .3s ease;
}

	.vrfy-btn:hover {
		background: var(--golden-hover);
		color: #fff;
	}

.form-group input, .form-group select {
	padding: 0 10px;
}
/*verify otp*/

/*select student*/

.studentCard {
	border: 1px solid #ddd;
	border-radius: 8px;
	background: var(--ccc-color);
	margin-bottom: 15px;
	padding: 15px;
	box-shadow: 0 2px 8px #ddd;
	max-width: 420px;
	width: 100%;
	margin: 0 auto;
}

.studentName {
	font-size: 22px;
	color: var(--main-color);
	font-weight: bold;
}

.studentInfo {
	margin-top: 8px;
	color: var(--main-color);
	font-size: 15px;
}

.btnSelect {
	margin-top: 15px;
	width: 100%;
}

.cst-add-std {
	width: 420px;
	margin: 10px auto 10px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.student-list {
	display: grid;
	grid-template-columns: 1fr;
	gap: 20px;
}


/*select student*/
/*parent registration*/
.partent-student-wrapper {
	width: 500px;
	max-width: 100%;
	margin: 40px auto;
}

.panel-primary {
	border-color: var(--main-color);
	border-radius: 20px;
	overflow: hidden;
}

.panel-heading {
	background-color: var(--main-color) !important;
	padding: 20px;
}

.panel-title {
	text-align: center;
	font-size: 20px;
	font-weight: 600;
}

.panel-body {
	background: var(--ccc-color);
	padding: 20px;
}

.std-reg-wrapper {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

	.std-reg-wrapper label {
		display: block;
	}

	.std-reg-wrapper input, .std-reg-wrapper select {
		width: 100%;
	}

/*parent registration*/
/*cart*/
.cartItem {
	background: #fff;
	border-radius: 8px;
	padding: 15px;
	margin-bottom: 15px;
	box-shadow: 0 2px 6px #ddd;
}

.cartImg {
	width: 70px;
	height: 70px;
	border-radius: 6px;
}

.itemName {
	font-size: 18px;
	font-weight: bold;
}

.price {
	color: #1565C0;
	font-weight: bold;
	font-size: 18px;
}







/* Card */

.cartItem {
	background: #fff;
	border-radius: 16px;
	padding: 20px;
	margin-bottom: 18px;
	border: 1px solid #ececec;
	transition: .3s;
	box-shadow: 0 3px 12px rgba(0,0,0,.05);
}

	.cartItem:hover {
		transform: translateY(-4px);
		box-shadow: 0 10px 30px rgba(0,0,0,.08);
	}

/* Image */

.cartImg {
	width: 95px;
	height: 95px;
	border-radius: 14px;
	object-fit: cover;
	border: 1px solid #eee;
}

/* Name */

.itemName {
	font-size: 18px;
	font-weight: 500;
	color: #222;
	margin-bottom: 10px;
}

/* Table */

.cartItem table {
	margin-bottom: 0;
}

	.cartItem table td {
		border: none !important;
		padding: 4px 6px !important;
		font-size: 15px;
		color: #555;
	}

	.cartItem table b {
		color: #111;
	}

/* Quantity */



/* Summary */

.totalBox {
	margin-top: 00px;
	background: #fff;
	border-radius: 16px;
	padding: 25px;
	border: 1px solid #ececec;
	box-shadow: 0 3px 15px rgba(0,0,0,.05);
}

	.totalBox table {
		margin-bottom: 20px;
	}

	.totalBox td {
		border: none !important;
		padding: 10px 0 !important;
		font-size: 16px;
	}

	.totalBox tr:last-child td {
		font-size: 24px;
		color: var(--main-color);
		font-weight: 700;
	}

.cnt-btn {
	background: transparent;
	border: 1px solid var(--golden-color);
	color: #000;
}

	.cnt-btn:hover {
		background: var(--golden-hover);
		border: 1px solid var(--golden-hover);
		color: #fff;
	}

.cart-btn-summ-btm {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
/* Buttons */
/*
.btn{

    border-radius:10px !important;

    font-weight:600;

    height:48px;

    padding:0 22px;

}*/

/* Continue */

.btn-default {
	background: #fff;
	border: 2px solid #FC8019;
	color: #FC8019;
}

	.btn-default:hover {
		background: #FC8019;
		color: #fff;
	}

/* Pay */

.btn-success {
	background: #FC8019;
	border: none;
}

	.btn-success:hover {
		background: #e96d08;
	}

/* Empty Cart */

.alert-info {
	background: #fff;
	border: 2px dashed #FC8019;
	color: #555;
	border-radius: 16px;
	padding: 40px;
}

.cart-wrapper {
	display: grid;
	grid-template-columns: 6fr 4fr;
	gap: 30px;
}

.cart-right {
	position: sticky;
	top: 100px;
	align-self: start;
}

.cart-name-btn-wrapper {
	display: flex;
	font-size: 10px;
	justify-content: space-between;
	align-items: center;
}

/*cart*/
/*checkout*/
.checkoutBox {
	margin-bottom: 20px;
}

.chk-std-dtl-wrapper {
	background: #fff;
	border-radius: 16px;
	padding: 25px;
	max-width: 480px;
	margin: 0 auto;
}

	.chk-std-dtl-wrapper .studentTitle {
		font-weight: 700;
		font-size: 22px;
		text-align: center;
		margin-bottom: 10px;
	}

	.chkout-delvery {
		margin: 18px 0;
		padding: 16px;
		background: #f8fbff;
		border: 1px solid #d8e8ff;
		border-radius: 12px;
		box-shadow: 0 2px 8px rgba(0,0,0,.05);
	}
	.chkout-date-wrapper {
		display: flex;
		gap: 10px;
		align-items: center;
		justify-content: center;
	}
	.chkout-date-wrapper label {
		display: block;
		font-size: 15px;
		font-weight: 600;
		color: var(--main-color);
		margin-bottom: 0px;
	}
	.chkout-date-wrapper input[type="date"] {
		height: 48px;
		padding: 0 15px;
		border: 2px solid var(--golden-color);
		border-radius: 8px;
		background: #fff;
		font-size: 15px;
		color: #333;
		transition: all .3s ease;
	}

	.chkout-date-wrapper input[type="date"]:hover {
		border-color: var(--golden-hover);
	}

	.chkout-date-wrapper input[type="date"]:focus {
		outline: none !important;
		border-color: var(--golden-hover) !important;
		box-shadow: 0 0 0 4px rgba(30,136,229,.15) !important;
	}

	.chout-msg p {
		display: block;
		margin-top: 8px;
		color: var(--main-color);
		font-size: 13px;
		line-height: 1.5;
	}
	.chout-msg {
		display: flex;
		justify-content: center;
		text-align:center;
	}
/*checkout*/
/*payment*/
.paymentBox {
	max-width: 700px;
	width: 100%;
	margin: 40px auto;
	background: #fff;
	border-radius: 8px;
	padding: 25px;
	box-shadow: 0 2px 10px #ddd;
}

.amount {
	font-size: 40px;
	color: var(--golden-color);
	font-weight: bold;
	text-align: center;
}

.orderNo {
	font-size: 18px;
	text-align: center;
	margin-bottom: 20px;
}
/*payment*/
/*myorder*/
.orderCard {
	background: #fff;
	border-radius: 8px;
	box-shadow: 0 2px 8px #ddd;
	padding: 15px;
	margin-bottom: 20px;
	width: 100%;
	max-width: 480px;
	margin: 20px auto;
}

.orderNo {
	font-size: 18px;
	font-weight: bold;
	color: var(--main-color);
}

.orderDate {
	color: #777;
	font-size: 13px;
}

.myorders .amount {
	font-size: 20px;
	font-weight: bold;
}

.badgePaid {
	background: #28a745;
	color: #fff;
	padding: 4px 10px;
	border-radius: 20px;
}

.badgePending {
	background: #dc3545;
	color: #fff;
	padding: 4px 10px;
	border-radius: 20px;
}

.badgeStatus {
	background: #17a2b8;
	color: #fff;
	padding: 4px 10px;
	border-radius: 20px;
}

.emptyBox {
	background: #fff;
	padding: 50px;
	text-align: center;
	border-radius: 8px;
	box-shadow: 0 2px 8px #ddd;
}

.cst-myo-amt-wrapper {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.cst-myo-amt {
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: space-between;
}

.cst-myo-vw-btn {
	display: flex;
	width: 100%;
	justify-content: center;
	align-items: center;
	padding-top: 10px;
}
/*myorder*/
/*orderdetails*/
.cls-orderdtl {
	margin: 30px auto;
}
/*order details*/

#Menu {
	overflow: hidden !important;
}
/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:1200px) {

	.product-sections {
		grid-template-columns: repeat(3,1fr);
	}

	.parentlogin, .verifyotp, .selectstudent {
		min-height: calc(100vh - 60px);
	}
}
@media(min-width:768px) and (max-width:1199px){
	.header-wrapper {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		justify-content: space-between;
	}

	.navbar-header,
	.nav-portal-wrapper {
		display: flex;
		align-items: center;
	}

	.navbar-collapse {
		width: 100%;
		flex-basis: 100%;
		margin-top: 10px;
	}

	.navbar-nav {
		float: none !important;
		display: flex;
		justify-content: center;
		width: 100%;
	}

		.navbar-nav > li {
			float: none;
		}
	.body {
		margin-top: 130px !important;
	}
	.login-panel {
		margin: 160px auto 30px;
	}
}
@media(max-width:991px) {

	.product-sections {
		grid-template-columns: repeat(3,1fr);
	}

	.brand-grid {
		grid-template-columns: repeat(3,1fr);
	}

	.cart-wrapper {
		grid-template-columns: 1fr;
	}
}

@media(max-width:767px) {
	.login-header img {
		width: 260px;
	}

	.product-grid {
		grid-template-columns: repeat(3,minmax(0,1fr));
	}

	.cartItem {
		padding: 15px;
	}

	.cartImg {
		width: 75px;
		height: 75px;
		margin-bottom: 15px;
	}

	.itemName, .itemPrice {
		font-size: 16px;
	}

	.qtyBtn {
		width: 38px !important;
		height: 38px;
		font-size: 20px;
	}

	.qtyText {
		width: 35px;
		font-size: 17px;
		line-height: 38px;
	}

	.btn {
		margin-top: 10px;
	}

	.pull-right {
		float: none !important;
	}



	.navbar-collapse {
		position: fixed;
		top: 0;
		left: -280px;
		width: 280px;
		height: 100vh;
		background: var(--golden-hover);
		overflow-y: auto;
		transition: left .35s ease;
		z-index: 9999;
		padding-top: 70px;
		box-shadow: 2px 0 20px rgba(0,0,0,.15);
		border: none;
	}

		.navbar-collapse.in {
			left: 0;
		}

	.navbar-nav {
		float: none !important;
		margin: 0;
	}

		.navbar-nav > li {
			float: none;
			border-bottom: 1px solid #eee;
		}

			.navbar-nav > li > a {
				padding: 16px 20px;
				font-size: 16px;
			}

				.navbar-nav > li > a:hover {
					color: #fff !important;
				}

	/* Overlay */
	.menu-overlay {
		position: fixed;
		inset: 0;
		background: rgba(0,0,0,.45);
		display: none;
		z-index: 9998;
	}

		.menu-overlay.show {
			display: block;
		}

	.navbar {
		z-index: 10000;
	}

	.navbar-toggle {
		border: none;
		background: transparent !important;
	}

		.navbar-toggle .icon-bar {
			width: 24px;
			height: 3px;
			margin: 5px 0;
			background: #fff;
			transition: .3s ease;
		}

		/* Open State */

		.navbar-toggle.active .icon-bar:nth-child(1) {
			transform: rotate(45deg) translate(5px,6px);
		}

		.navbar-toggle.active .icon-bar:nth-child(2) {
			opacity: 0;
		}

		.navbar-toggle.active .icon-bar:nth-child(3) {
			transform: rotate(-45deg) translate(5px,-6px);
		}

	.container {
		width: 100%;
	}

	.navbar-default .navbar-toggle .icon-bar {
		background-color: #fff;
	}

	.navbar-fixed-top .navbar-collapse {
		max-height: 100%;
	}

	.navbar-default .navbar-toggle {
		margin-right: 0;
	}

	button.navbar-toggle {
		z-index: 99999;
	}

	.lgot-btn-cls {
		width: auto !important;
	}

	.bran-wrapper {
		grid-template-columns: 1fr;
		gap: 20px;
		justify-content: center;
		text-align: center;
	}

	.menu-cnt-head {
		justify-content: center;
	}

	.brand-grid {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
	}

	.brand-card img {
		max-height: 200px;
	}

	.studentName {
		font-size: 18px;
	}

	.cart-btn-summ-btm {
		flex-wrap: wrap;
	}

	.cart-wrapper {
		gap: 20px;
	}
	.department-heading {
		font-size: 20px;
		text-align: center;
	}
	.itemCard {
		padding: 14px;
	}
	.product-grid {
		gap: 15px;
	}
}

@media(max-width:575px) {

	.product-grid {
		grid-template-columns: repeat(3,1fr);
	}

	.itemImage {
		width: 120px;
		height: 120px;
	}

	.brand-grid {
		grid-template-columns: 1fr;
	}
	/*.itemName {
		display: -webkit-box;
		-webkit-box-orient: vertical;
		-webkit-line-clamp: 2;
		overflow: hidden;
		line-height: 1.4;
		height: auto;
		cursor: pointer;
	}

		.itemName:hover {
			display: block;
			-webkit-line-clamp: unset;
			overflow: visible;
		}*/
	.itemName {
		white-space: normal;
		overflow: visible;
		text-overflow: unset;
		word-break: break-word;
		overflow-wrap: anywhere;
		line-height: 1.4;
		height: auto;
	
	}
	.qtyBtn {
		width: 28px !important;
		height: 28px;
		font-size: 20px;
	}
	.qtyBtn svg {
		width: 14px;
		height: 14px;
	}
}

@media(max-width:567px) {
	.tag-line-div {
		flex-direction: column;
		gap: 10px;
	}

	.nav-portal-wrapper span {
		font-size: 18px !important;
	}

	.login-panel {
		max-width: calc(100% - 15px);
	}
}

@media(max-width:480px) {
	.studentCard, .cst-add-std {
		max-width: calc(100% - 40px);
	}

	.product-grid {
		grid-template-columns: repeat(3,1fr);
	}

	.nav-portal-wrapper span {
		display: none;
	}

	.school-card {
		padding: 4px;
		min-height: 42px;
	}

	.login-header h2, .otp-header h2, h2 {
		font-size: 24px;
	}

	.otp-panel {
		width: 100%;
	}

	.otp-body .form-group {
		flex-direction: column;
		margin-bottom: 0;
	}

	.otp-panel {
		max-width: calc(100% - 15px);
	}


	.itemRow .row {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
		margin: 0;
	}

	.itemRow .col-xs-5 {
		width: 45%;
		padding-right: 5px;
		font-size: 12px;
		word-break: break-word;
	}

	.itemRow .col-xs-2 {
		width: 15%;
		padding: 0 2px;
		font-size: 11px;
		text-align: center;
	}

	.itemRow .col-xs-3 {
		width: 25%;
		padding: 0 2px;
		font-size: 12px;
		text-align: right;
	}

	.cls-orderdtl .panelBox, .ord-detl-grid {
		overflow: auto;
	}

	.cls-orderdtl .total {
		font-size: 14px;
	}
	.std-reg-wrapper {
		grid-template-columns: 1fr;
		gap: 10px;
	}
	.itemCard {
		padding: 8px;
	}
	.itemName, .itemPrice {
		font-size: 14px;
	}
	.department-heading {
		font-size: 18px;
	}
	.login-body .form-group {
		flex-direction: column;
	}
	.login-body .form-group input {
			width: 100%;
	}
	.cst-item-btn {
		gap: 6px;
	}
}

@media(max-width:420px) {
	.std-menu-name-wrapper {
		justify-content: space-between;
		flex-direction: column;
	}

	.cart-btn-summ-btm {
		justify-content: center;
		align-items: center;
		gap: 10px;
	}
	.chkout-date-wrapper {
		flex-direction: column;
	}
	.cst-item-btn {
		gap: 2px;
	}
	.qtyBtn {
		width: 24px !important;
		height: 24px;
	}
	.product-grid {
		gap: 10px;
	}
	.itemName, .itemPrice {
		font-size: 13px;
	}
}

@media(max-width:358px) {
	.btm-cart-btn {
		font-size: 12px;
	}
}
