@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap");

body {
	font-family: "Poppins", sans-serif;
	background-image: linear-gradient(white, rgb(142, 243, 243));
}

.box-area {
	width: 930px;
}

#map {
	height: 320px;
	width: 100%;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	-webkit-appearance: none;
	margin: 0;
}
.logo1 {
	width: 140px;
	height: 46px;
}

.logo-header {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
}

.logo {
	width: 180px;
	height: 50px;
}

.cell-text {
	font-size: small;
}

@media (max-width: 575.98px) {
	.table .cell-text {
		font-size: 0.75rem;
	}
	.logo {
		width: 200px;
		height: 50px;
	}
}

@media (min-width: 576px) {
	.table .cell-text {
		font-size: 0.375rem;
	}
}

@media (min-width: 768px) {
	.table .cell-text {
		font-size: 0.6rem;
	}
}

@media (min-width: 992px) {
	.table .cell-text {
		font-size: 1rem;
	}
}

@media (min-width: 1200px) {
	.table .cell-text {
		font-size: 1.125rem;
	}
}

:root {
	--second-text-color: #bbbec5;
}

.primary-text {
	color: var(--main-text-color);
}

.second-text {
	color: var(--second-text-color);
}

.primary-bg {
	background-color: var(--main-bg-color);
}

.secondary-bg {
	background-color: var(--second-bg-color);
}

.rounded-full {
	border-radius: 100%;
}

#sidebar-wrapper {
	min-height: 100vh;
	margin-left: -15rem;
	-webkit-transition: margin 0.25s ease-out;
	-moz-transition: margin 0.25s ease-out;
	-o-transition: margin 0.25s ease-out;
	transition: margin 0.25s ease-out;
}

#sidebar-wrapper .sidebar-heading {
	padding: 0.875rem 1.25rem;
	font-size: 1.2rem;
}

#sidebar-wrapper .list-group {
	width: 15rem;
}

#page-content-wrapper {
	min-width: 100vw;
}

#wrapper.toggled #sidebar-wrapper {
	margin-left: 0;
}

#menu-toggle {
	cursor: pointer;
}

.list-group-item {
	border: none;
	padding: 20px 30px;
}

.list-group-item.active {
	background-color: transparent;
	color: var(--main-text-color);
	font-weight: bold;
	border: none;
}

@media (min-width: 768px) {
	#sidebar-wrapper {
		margin-left: 0;
	}

	#page-content-wrapper {
		min-width: 0;
	}

	#wrapper.toggled #sidebar-wrapper {
		margin-left: -15rem;
	}
}

/* table */

a {
	text-decoration: none;
}

label {
	font-weight: 500;
}

.btn-custom1 {
	background-color: white; /* custom background color */
	color: black; /* custom text color */
	border: none;
}

.btn-custom {
	background-color: rgb(34, 238, 238); /* custom background color */
	color: #ffffff; /* custom text color */
	border: 2px solid rgb(34, 238, 238);
}

.btn-custom:hover {
	background-color: rgb(34, 238, 238); /* custom background color on hover */
	color: #ffffff; /* custom text color on hover */
}

.btn-cutom:focus {
	background-color: rgb(34, 238, 238); /* custom background color on focus */
	color: #ffffff; /* custom text color on focus */
}

.otp-bx {
	display: flex;
	justify-content: center;
}

.otp-bx input {
	width: 50px;
	font-size: 32px;
	padding: 10px;
	text-align: center;
	border-radius: 5px;
	margin: 2px;
	border: 2px solid rgb(164, 243, 243);
	background: #ffffff;
	font-weight: bold;
	color: black;
	outline: none;
	transition: all 0.1s;
}

.otp-bx input:focus {
	border: 2px solid rgb(34, 238, 238);
	box-shadow: 0 0 2px 2px rgb(146, 219, 219);
}

.row > * {
	flex-shrink: 0;
	width: 320px;
	max-width: 100%;
	/* padding-right: calc(var(--bs-gutter-x) * 0.5); */
	padding-left: calc(var(--bs-gutter-x) * 0.5);
	margin-top: var(--bs-gutter-y);
}

.modal.show {
	display: flex !important;
	justify-content: center;
	/* flex-direction: column; */
}

.table-container1 {
	display: flex;
	max-height: 200px;
	max-width: 300px;
	overflow-x: auto;
	height: auto;
}
/* 
.modal-dialog {
	margin: 0;
	align-self: center;
}

.modal-content {
	display: flex;
	flex-direction: column;
} */

.head-display {
	position: sticky;
	top: 0;
	bottom: 0;
}

.table-container {
	display: flex;
	width: 100%;
	max-width: 300px;
	overflow-x: auto;
}

table {
	white-space: nowrap;
}

th {
	background-color: #82db85;
}

th,
td {
	padding: 5px;
	border: 1px solid #34af6d;
}

tr:nth-child(even) {
	background-color: #f2f2f2;
}

.input-box {
	position: relative;
	width: 100%;
}

.input-box input {
	width: 100%;
	box-sizing: border-box;
}

.input-box img {
	position: absolute;
	top: 50%;
	right: 1rem;
	transform: translateY(-50%);
	width: 32px;
}

.lbl {
	font-weight: 300;
	padding-left: 10px;
}
