.keypad-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
}

.keypad-container a {
	all: unset;
}

.keypad {
	background: white;
	padding: 10px;
	border-radius: 8px;
	font-size: 12px;
	box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
	transition: all 0.3s ease-in;
	height: 140px;
}

.keypad h5 {
	font-size: 1.05em !important;
	color: #838383;
	font-weight: 600;
}

.keypad i {
	color: #7eb4e2;
}

.keypad:hover {
	box-shadow: rgba(99, 99, 99, 0.3) 0px 2px 8px 0px;
	cursor: pointer;
}

.microservice-banner {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8px;
}

.micro-menu {
	position: absolute;
	bottom: 0;
	color: black;
	text-align: center;
	z-index: 5;
	left: 0;
	right: 0;
	margin-bottom: 0 !important;
	overscroll-behavior: contain;
	background: var(--bg-secondary);
	border-radius: 4px;
	padding: 20px;
	font-size: 1.1rem !important;
	width: 100%;
}

.form {
	display: flex;
	flex-direction: column;
	gap: 10px;
	padding: 15px;
	background: white;
	border-radius: 6px;
}

.form fieldset label {
	margin-bottom: 10px;
	font-weight: 500;
	font-size: 0.8em;
}

.form fieldset input,
.form fieldset select,
.form fieldset textarea {
	padding: 5px;
	border-radius: 4px;
	outline: none;
	border: 1px solid #e9e9e9;
}

.ordered-list {
	padding-left: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.ordered-list li {
	list-style-type: none;
	counter-increment: item;
	font-size: 0.85em;
	color: #727272;
	font-weight: 500;
	padding-left: 30px; /* Add padding to align the text */
	position: relative;
}

.ordered-list li:before {
	content: counter(item);
	margin-right: 12px;
	font-size: 80%;
	background-color: #f0f6f6;
	color: #222222;
	font-weight: bold;
	padding: 3px 8px;
	border-radius: 3px;
	position: absolute;
	left: 0; /* Position the counter at the start of the list item */
	top: -2px; /* Align the counter vertically */
	transform: translateY(20%); /* Adjust to center the counter with the text */
}

.micrositeHeading {
	font-family: "Merriweather Sans", sans-serif;
	font-size: 1.25em;
	font-weight: 800;
	font-optical-sizing: auto;
	font-style: normal;
}

.microsite-desc {
	font-size: 0.8em;
	margin: 0;
	color: #898989;
	line-height: 1.4;
}

.microsite-desc.main {
	text-align: justify;
}

.microsite-btn {
	height: 40px;
	border-radius: 5px;
	background-color: #0072dd;
	color: #fff;
	font-weight: 700;
	border: none;
	transition: all 0.3s ease-in;
	font-size: 1.2em;
}

.microsite-btn:hover {
	cursor: pointer;
	background-color: #52a0e9;
	color: #fefefe;
}

.small-btn {
	all: unset;
	border-radius: 5px;
	background-color: #0072dd;
	color: #fff;
	font-weight: 600;
	border: none;
	transition: all 0.3s ease-in;
	font-size: 0.8em;
	padding: 4px 8px;
	width: fit-content;
}

.small-btn:hover {
	cursor: pointer;
	background-color: #52a0e9;
	color: #fefefe;
}

#purchaseBtn {
	position: sticky;
	bottom: 10px;
	z-index: 999;
}

.box-info {
	background: white;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
	padding: 10px;
	border-radius: 5px;
	transition: all 0.3s ease-in;
	height: 150px;
}

.box-info h4 {
	font-weight: 800;
	font-size: 2.25em;
	font-family: "Alexandria", sans-serif;
	font-optical-sizing: auto;
}

.box-info small {
	font-size: 0.65em;
	color: #727272;
}

.box-info i {
	color: #757575;
}

.box-info:hover {
	box-shadow: rgba(99, 99, 99, 0.3) 0px 2px 8px 0px;
	cursor: pointer;
}

.note {
	font-size: 0.8em;
	color: #363636;
}

.microsite-home {
	text-decoration: none;
	color: black;
	transition: 0.3s all ease-in;
}

.microsite-home:hover {
	cursor: pointer;
	color: #30323d;
}

.micro-tag {
	padding: 3px 6px;
	border-radius: 4px;
	border: 2px solid #63adf2;
	color: #63adf2 !important;
	font-size: 0.9em;
}

.image-uploader {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 12px;
	border-radius: 10px;
	border: 2px dashed #9e9e9e;
	margin-top: 15px;
}

.drop-zone > .image-icon {
	height: 300px;
	transition: 0.3s all ease-in;
}

.drop-zone > .image-icon:hover {
	cursor: pointer;
}

.drop-zone {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.file-input {
	display: none;
}

.file-preview {
	position: relative;
	margin-top: 25px;
	width: 100%;
}

.file-preview > img {
	border-radius: 4px;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
	width: 100px;
	height: 75px;
	object-fit: contain;
}

.pdf-preview {
	width: 100%;
	height: 500px; /* Adjust height as needed */
	border: 1px solid #ccc;
}

#showMessage {
	width: 35%;
	border-radius: 12px;
	border: none;
	outline: none;
	box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}

.popup-close {
	position: absolute;
	right: 10px;
	transition: 0.3s all ease-in;
	padding: 4px 8px;
	font-size: 1.2em;
	color: white;
	border-radius: 50%;
	overflow: hidden;
}

.popup-close:hover {
	cursor: pointer;
	background: var(--hover-bg);
}

p {
	margin: 0;
}

.paymentDetails .heading {
	font-size: 1.05em;
}

.paymentDetails small {
	color: #848482;
	font-weight: 500;
	font-size: 0.75em;
}

.paymentDetails p {
	font-size: 0.9em;
}

.paymentDetails .final small {
	color: #2a3439;
}

.paymentDetails .final p {
	color: #2a3439;
}

#termsLink {
	text-decoration: underline;
	color: #63adf2;
	cursor: pointer;
}

.popup-close {
	position: absolute;
	top: 10px;
	right: 10px;
	transition: 0.3s all ease-in;
	padding: 5px 10px;
	font-size: 1.5em;
	color: var(--btn-bg);
	border-radius: 50%;
}

.popup-close:hover {
	cursor: pointer;
	background: var(--bg);
}

.order-track {
	margin-top: 2rem;
	border-top: 1px dashed #2c3e50;
	padding-top: 2.5rem;
	display: flex;
	flex-direction: column;
}

.order-track-step {
	display: flex;
	height: 7em;
}

.order-track-step:last-child {
	overflow: hidden;
	height: 4em;
}

.order-track-status {
	margin-right: 1.5rem;
	position: relative;
}

.order-track-status-dot {
	display: block;
	width: 1.4em;
	height: 1.4em;
	border-radius: 50%;
	background: #c5c5c5;
}

.order-track-status-dot.done {
	background: #7fc241;
	box-shadow: rgba(80, 218, 75, 0.3) 0px 0px 0px 3px;
}

.order-track-status-line {
	display: block;
	margin: 0 auto;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background: #cdcdcd;
	position: relative;
}

.order-track-text-stat {
	font-size: 0.9em;
	font-weight: 500;
	margin-bottom: 3px;
	color: #808080;
}

.order-track-text-sub {
	font-size: 0.8em;
	font-weight: 300;
	color: #808080;
}

.order-track-text-sub.done {
	color: #0f0f0f; /* Dark gray (almost black) color */
}

.order-track-text-stat.done {
	color: #0f0f0f; /* Dark gray (almost black) color */
}

.order-track {
	transition: all 0.3s height 0.3s;
	transform-origin: top center;
}

.feedback-level {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.level {
	background: white;
	padding: 13px;
	border-radius: 7px;
	border: solid 0.5px #e0e9fe;
	cursor: pointer;
}
.level:hover {
	box-shadow: #63adf2 0 2px 5px;
}
.level:hover i {
	color: #63adf2;
}
.level i {
	font-size: 32px;
}

.level.selected {
	color: #63adf2;
	box-shadow: #63adf2 0 2px 5px;
}

.feedback-msg textarea {
	margin-top: 5px;
	border: solid 2px #e0e9fe;
	padding: 13px;
	border-radius: 7px;
	outline: none;
	font-size: 14px;
	color: #4b537c;
	font-weight: 500;
	letter-spacing: 1px;
	width: 100%;
	height: 80px;
	resize: none;
}

.popup-open {
	overflow: hidden;
}

.icon-container img {
	width: 24px;
	height: 24px;
}

/* Tooltip container */
[data-tooltip] {
	position: relative;
	cursor: pointer;
}

/* Tooltip text */
[data-tooltip]::after {
	content: attr(data-tooltip);
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	bottom: 65%; /* Adjust this value to change the position */
	background-color: #333;
	color: #fff;
	padding: 5px 10px;
	border-radius: 4px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s;
	font-size: 12px;
}

/* Show the tooltip text */
[data-tooltip].show-tooltip::after {
	opacity: 1;
}

#loadingShow {
	position: fixed;
	top: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #00000082;
	width: 100%;
	height: 100%;
	z-index: 9999;
}

.login-loader {
	width: 150px;
	height: 150px;
	padding: 15px;
	aspect-ratio: 1;
	border-radius: 50%;
	background: #63adf2;
	background: #549cdf;
	--_m: conic-gradient(#0000 10%, #000), linear-gradient(#000 0 0) content-box;
	-webkit-mask: var(--_m);
	mask: var(--_m);
	-webkit-mask-composite: source-out;
	mask-composite: subtract;
	animation: s3 1s infinite linear;
}

@keyframes s3 {
	to {
		transform: rotate(1turn);
	}
}


.user-question {
	background-color: #d4e9ff;
}

.admin-answer {
	background-color: #d1e7dd;
	border-left: 5px solid #28a745;
}

.card-title {
	font-size: 1rem;
	font-weight: bold;
}

/* Container */
.comments-section {
	padding: 20px;
	background-color: #f8f9fa;
	border-radius: 8px;
}

/* Comment Box */
.comment-box {
	background-color: #ffffff;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
}

.comment-box h6 {
	font-weight: bold;
	color: #007bff;
}

.comment-box .comment-text {
	color: #333;
}

.comment-box .text-muted {
	font-size: 0.85rem;
	color: #6c757d;
}

/* Avatar */
.avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid #007bff;
}

/* Comment Input */
.comment-input input.form-control {
	border-radius: 30px;
	padding-left: 20px;
	border: 1px solid #007bff;
	box-shadow: none;
}

.comment-input button {
	border-radius: 50%;
	padding: 10px 14px;
}

.comment-input i {
	font-size: 1.2rem;
	color: white;
}

@media screen and (max-width: 768px) {
	#showMessage {
		width: 100%;
	}

	.drop-zone > .image-icon {
		height: 225px;
	}

	.pdf-preview {
		height: 250px; /* Adjust height as needed */
	}

	.iconsContainer {
		width: 100%;
	}

	.icon-container {
		height: 32px;
		width: 32px;
	}
}
