@font-face {
	font-family: "Adani-Regular";
	src: url("../images/fonts/Adani-Regular.ttf") format("truetype");
}

@font-face {
	font-family: "Adani-Bold";
	src: url("../images/fonts/Adani-Bold.ttf") format("truetype");
}

@font-face {
	font-family: "Adani-Medium";
	src: url("../images/fonts/Adani-Medium.ttf") format("truetype");
}

* {
	margin: 0;
	box-sizing: border-box;
}

:root {
	/* Modular Scale(base:16px/1em) - Headings */
	--text-H1: 50.52px;
	--text-H2: 37.9px;
	--text-H3: 28.43px;
	--text-H4: 21.33px;
	--text-H5: 16px;
	--text-H6: 12px;

	/* Colors */
	--clr-prim: #1378be;
	--clr-prim-dark: #0b5ed7;
	--clr-sec: #17b677;
	--clr-black: #000000;
	--clr-white: #ffffff;
	--clr-danger: #dc3545;
	--clr-disabled: #bdbdbd;
	--clr-grey: #e0e0e0;
	--clr-black-alpha: rgba(0, 0, 0, 0.1);
	--clr-white-alpha: rgba(255, 255, 255, 0.1);
	--clr-black-alpha-50: rgba(0, 0, 0, 0.5);
	--clr-input-placeholder: #a9a9a9;
	--clr-bg-grad: linear-gradient(to right, #1b9f94 0, #316db3 100%);
	--clr-green-graph: #177614;
	--clr-red-graph: #af0000;
	--clr-orange-graph: #ff7a00;
	--clr-planned-graph: #14202f;
	--clr-actual-graph: #4f81bd;
	--clr-ambur: #ffbf00;

	/* layout spacing */
	--space-navigation: 50px;
	/* --space-navigation-image: 80px; */
	--space-navigation-image: 0px;
	--space-footer: 35px;
	--space-main-nav: 42px;

	--space-nav: var(--space-navigation) + var(--space-navigation-image);
	--space-main: calc(100vh - (var(--space-nav) + var(--space-footer)));
	--space-main-body: calc(var(--space-main) - var(--space-main-nav));

	/* font-family */
	--adani-regular: "Adani-Regular";
	--adani-bold: "Adani-Bold";
	--adani-medium: "Adani-Medium";
}

html,
body {
	font-family: var(--adani-regular);
	font-size: 62.5%;
}

body {
	font-family: var(--adani-regular);
	min-height: 100vh;
}

input,
select {
	font-size: var(--text-H5);
	outline: none;
	cursor: pointer;
}
select {
	text-align: left !important;
		width: 100%;

}
input:disabled {
	cursor: not-allowed !important;
	pointer-events: all !important;
	background: var(--clr-grey);
}
/*
::-webkit-calendar-picker-indicator {
	background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="15" viewBox="0 0 24 24"><path fill="%232F80ED" d="M20 3h-1V1h-2v2H7V1H5v2H4c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V5c0-1.1-.9-2-2-2zm0 18H4V8h16v13z"/></svg>');
}*/

input[type="text"],
input[type="date"],
input[type="password"] {
	border: none;
	font-family: var(--adani-regular);
	font-size: var(--text-H5);
	outline: none;
	cursor: pointer;
}

/* General Classes */
.flex {
	display: flex;
}

.flex-col {
	flex-direction: column;
}

.jc-spbt {
	justify-content: space-between;
}

.jc-cntr {
	justify-content: center;
}

.ai-cntr {
	align-items: center;
}

.m-l-10 {
	margin-left: 1rem;
}

.m-r-10 {
	margin-right: 1rem;
}

.cursor-pointer {
	cursor: pointer;
}

.adani-regular {
	font-family: var(--adani-regular);
}

.adani-medium {
	font-family: var(--adani-medium);
}

.adani-bold {
	font-family: var(--adani-bold);
}

.h1 {
	font-size: var(--text-H1);
	margin: 0;
}

.h2 {
	font-size: var(--text-H2);
	margin: 0;
}

.h3 {
	font-size: var(--text-H3);
	margin: 0;
}

.h4 {
	font-size: var(--text-H4);
	margin: 0;
}

.h5 {
	font-size: var(--text-H5);
	margin: 0;
}

.h6 {
	font-size: var(--text-H6);
	margin: 0;
}

.border-radius-10 {
	border-radius: 1rem;
}

.mx-2rem {
	margin: 0 2rem;
}

.b-prim {
	border: 1px solid var(--clr-prim);
}

.bg-red-graph {
	background-color: var(--clr-red-graph);
}

.bg-green-graph {
	background-color: var(--clr-green-graph);
}

.bg-orange-graph {
	background-color: var(--clr-orange-graph);
}

.bg-white-alpha {
	background: var(--clr-white-alpha);
}

a {
	text-decoration: none;
}

.header-elements {
	border: 1px solid var(--clr-prim);
	border-radius: 0.5rem;
	padding: 0.5rem 1rem;
	background-color: var(--clr-white);
	cursor: pointer;
}

.textarea-height {
	max-height: 20rem;
}
/* ------------------------------ */

/* Navigation Styles */
.menu {
	padding: 0.5rem 2rem;
	background: var(--clr-grey);
}

.user-image {
	border-radius: 50%;
        width:40px;
}
/* .hamburger-checkbox:checked ~ .menu-container {
	visibility: visible;
	opacity: 1;
} */

.hamburger-menu {
	width: 24px;
	height: 24px;
	fill: var(--clr-black);
}

.logo {
	height: 50px;
}

.company {
	font-size: var(--text-H3);
	font-weight: bold;
}

.profile-name {
	font-size: var(--text-H5);
}

.logout-btn-fixed-position {
	position: absolute;
	right: 0;
}

.header-image img {
	width: 100%;
	height: 100px;
}

.logout-btn {
	z-index: 100;
}
/* --------------------------- */

/* Footer Styles */
footer,
.footer {
	background-color: var(--clr-prim);
	padding: 1rem 2rem;
	color: var(--clr-white);

	position: -webkit-sticky;
	position: sticky;
	bottom: 0;
	left: 0;
	width: 100%;
}

.version-container {
	background: radial-gradient(
		100% 98.68% at 0% 0%,
		rgba(255, 255, 255, 0.06) 0%,
		rgba(255, 255, 255, 0.42) 100%
	);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 5px;
	padding: 0 1rem;
}

.software-version {
	font-family: var(--adani-bold);
	font-size: var(--text-H5);
	margin-bottom: 0;
	background: linear-gradient(
		to right,
		#097da9 0%,
		#823996 50%,
		#bb3764 100%
	);
	-webkit-background-clip: text;
	-moz-background-clip: text;
	background-clip: text;

	-webkit-text-fill-color: transparent;
	-moz-text-fill-color: transparent;
	text-fill-color: transparent;
}

footer p,
.footer p {
	font-size: var(--text-H6);
	margin-bottom: 0;
}

.anchor {
	cursor: pointer;
	text-decoration: none;
	color: inherit;
	font-weight: bold;
}

.anchor:hover {
	color: var(--clr-black);
	font-weight: bold;
}
/* -------------------------- */

/* Heading Tab for Body */
main {
	min-height: var(--space-main);
}

.body-menu {
	height: var(--space-main-nav);
	padding: 0.5rem 2rem;
	position: relative;
}

.body-heading {
	font-size: var(--text-H4);
	font-family: var(--adani-medium);
	font-weight: bold;
	margin-bottom: 0;
}

.input-outline {
	border: 1px solid var(--clr-prim) !important;
	border-radius: 0.5rem;
	width: 20rem;
	padding: 0.5rem 1rem;
	cursor: pointer;
}

.input-icon {
	height: 2.4rem;
	width: 2.4rem;
	fill: var(--clr-prim);
}

.input-icon--arrow {
	height: 15px;
	width: 15px;
	fill: none;
	stroke: var(--clr-prim);
	stroke-width: 4;
	stroke-linecap: round;
}

.w-90-perc {
	width: 90%;
}

.input-save {
	border: 1px solid var(--clr-prim);
	background-color: var(--clr-prim);
	padding: 1rem 2rem;
	font-size: var(--text-H5);
	color: var(--clr-white);
	font-family: var(--adani-regular);
	letter-spacing: 3px;
	border-radius: 5px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
		rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
	cursor: pointer;
	text-transform: uppercase;
}

.input-save:hover {
	background-color: var(--clr-white);
	/* border: 1px solid var(--clr-prim); */
	color: var(--clr-prim);
}

.input-save--black {
	border: 1px solid var(--clr-black);
	background-color: var(--clr-black);
}

.input-save--black:hover {
	background-color: var(--clr-white);
	border: 1px solid var(--clr-black);
	color: var(--clr-black);
}

.input-outline:hover {
	border: 1px solid var(--clr-prim);
}

/* Body-Main Container (tables & Data) Styles */
.body-container {
	font-size: var(--text-H6);
	/* height: calc(100vh - 217px); */
	height: var(--space-main-body);
}

.table-view thead tr th:first-child {
	border-radius: 9px 0 0 0;
}

.table-view thead tr th:last-child {
	border-radius: 0 9px 0 0;
}

.body-outline {
	border: 1px solid var(--clr-prim);
	border-radius: 10px;
	margin: 0 2rem;
	height: calc(100vh - 350px);
	/* position: relative; */
}

.body-outline__view-screen {
	height: calc(100vh - 380px);
}

.body-footer {
	height: 44px;
}

table {
	width: 100%;
	border-spacing: 0.5rem;
	border-collapse: unset;
	font-size: var(--text-H5);
	/* padding-right: 1rem; */
}

table thead {
	position: sticky;
	top: 0;
	z-index: 10;
}

.input-heading,
th {
	background: var(--clr-prim);
	padding: 0.2rem;
	border-radius: 0.5rem;
	color: var(--clr-white);
	font-weight: normal;
	text-align: center;
}

.input-border {
	border: 1px solid var(--clr-prim) !important;
	border-radius: 5px;
	/* padding: 1rem; */
	text-align: center;
}

.input-border:disabled {
	background: #e9ecef;
	cursor: not-allowed;
}

.reason-input-border {
	border: 1px solid var(--clr-prim) !important;
	border-radius: 5px;
	/* padding: 1rem; */
	text-align: center;
}


.reason-input-border:disabled {
	background: #e9ecef;
	cursor: not-allowed;
}
.input-heading--custom-padding {
	padding: 0.7rem 2rem;
}

td:last-child {
	text-align: right;
}

.action-icon-container {
	width: 2.5rem;
	height: 2.5rem;
}

.hover-element-container,
.action-icon-container {
	cursor: pointer;
	position: relative;
}

.action-icon-container:hover {
	background: #e0e0e0;
	border-radius: 50%;
}

.hover-element-container-label,
.action-icon-container-label {
	background-color: rgb(0 0 0 / 75%);
	color: var(--clr-white);
	padding: 0.5rem 1rem;
	border-radius: 1rem;

	visibility: hidden;
	position: absolute;
	z-index: 10;

	transition: all 0s 0.3s ease-out;
}

.action-icon-container-label {
	top: -110%;
}

.hover-element-container-label {
	left: -50%;
	bottom: 0;
}

.hover-element-container:hover .hover-element-container-label,
.action-icon-container:hover .action-icon-container-label {
	visibility: visible;
}

.text-three-dots-container {
	width: 17rem;
}

.text-three-dots {
	display: inline-block;
	width: 15rem;
	white-space: nowrap;
	overflow: hidden !important;
	text-overflow: ellipsis;
}

.status-legend {
	padding: 1rem;
	margin-right: 2rem;
	border: 1px solid var(--clr-prim);
	border-radius: 10px;

	gap: 1rem;

	position: absolute;
	right: 0;
}

.action-icon {
	width: 1.8rem;
	height: 1.8rem;
	cursor: pointer;
}

.action-icon--delete path {
	fill: var(--clr-danger);
}

/* .add-btn, */
.list-view-add-btn {
	width: 3.6rem;
	height: 3.6rem;
	background-color: var(--clr-prim);
	border-radius: 50%;
	border: 2px solid var(--clr-white);
	filter: drop-shadow(12px 12px 24px rgba(0, 0, 0, 0.1));
	fill: var(--clr-white);
	cursor: pointer;

	position: fixed;
	bottom: 6rem;
	right: 5rem;
}

.list-view-add-btn:hover {
	background-color: var(--clr-white);
	border: 2px solid var(--clr-prim);
	fill: var(--clr-prim);
}

.margin-add {
	margin: 0.5rem 1.5rem;
}
.input-outline--selectBtn {
	padding: 0.9rem 1rem;
	outline: none;
	color: var(--clr-prim);
}

.input-outline--selectBtn option {
	color: var(--clr-prim-dark);
}

.border-primary {
	border-color: var(--clr-prim) !important;
}
/* overriding Bootstrap Styles */
.form-select {
	width: 100%;
	padding: 0.5rem 1rem;
	border: 1px solid var(--clr-prim);
	color: grey;
	font-size: var(--text-H5);
	border-radius: 5px;
}

.form-select option {
	color: var(--clr-prim-dark);
}

.w-150px {
	width: 170px;
}

.text-center {
	text-align: center;
}

.alert-success {
	width: 50%;
	left: 50%;
	transform: translate(-50%);
	font-size: var(--text-H5);
	text-align: center;
}

.circle {
	width: 3rem;
	height: 3rem;
	border-radius: 50%;
	background-color: var(--clr-ambur);
	/* border: 1px solid var(--clr-disabled); */
}

.circle--small {
	width: 1.5rem;
	height: 1.5rem;
}

.general-list {
	/* width: 40%; */
	min-width: 30%;
	max-width: 100%;
}

.page-link {
	font-size: var(--text-H5);
	padding: 1rem 2rem;
}

.page-navigation {
	margin-top: 10px;
}

.transform-center {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.modal-footer {
	border-top: none;
}

.modal-header {
	border-bottom: none;
}

.btn {
	font-size: 1.6rem;
}

p {
	margin-bottom: 0;
}

.modal-content {
	padding: 2rem;
}

.btn-primary {
	background: var(--clr-bg-grad);
	border: 0;
	transition: all 0.3s ease-in-out;
}

.btn-primary:hover {
	background: var(--clr-prim);
	font-weight: bold;
	color: var(--clr-white);
}

.btn-danger {
	color: #fff;
	background-color: #dc3545;
	border-color: #dc3545;
}

.btn-danger:hover {
	color: var(--bs-danger);
}

.table > :not(caption) > * > * {
	border-bottom-width: 0;
	padding: 0.3rem;
}

.textarea-height {
	height: 5rem;
}
/* Masters Styles */
#Masters {
	height: calc(100vh - 210px);
}

.cms-header {
	padding: 1rem 5rem;
}

.input-custom-border {
	width: 200px;
	height: 100%;
	padding: 0.5rem 1rem;
	border: 1px solid var(--clr-prim);
	border-radius: 5px;
}

.custom-border {
	border: 1px solid var(--clr-prim);
	padding: 0.5rem;
	border-radius: 5px;
	cursor: pointer;
}

.input-reset {
	border: none;
}

.filter-container {
	width: 100%;
	height: 20px;
	background-color: var(--clr-grey);
	margin-top: 4px;
	border-radius: 10px;
}

.filter-item {
	font-size: var(--text-H6);
	font-family: var(--adani-medium);
	border: 1px solid var(--clr-prim);
	padding: 0 1rem;
	border-radius: 5px;
	color: var(--clr-prim);
}

.master-body {
	height: calc(100vh - 310px);
	margin: 0 5rem;
	border: 2px solid var(--clr-prim);
	border-radius: 5px;
}

.master-table {
	width: 100%;
	height: calc(100vh - 370px);
}

.seprator {
	height: 3px !important;
	background-color: var(--clr-prim);
	color: var(--clr-prim);
	margin: 0 1rem;
	border-radius: 5px;
}

.cms-footer {
	margin: 0 1rem;
}

.pagination {
}

.pagination-btn {
	border-radius: 5px;
	padding: 0.5rem 1rem;
	cursor: pointer;
	background-color: rgba(196, 196, 196, 0.05);
	border: 1px solid rgba(196, 196, 196, 0.5);
}

.pagination p,
.previous-btn p {
	font-family: var(--adani-bold);
	letter-spacing: 1.5px;
	font-size: var(--text-H5);
}

.left-arrow {
	transform: rotate(90deg);
	stroke: currentColor;
}

.right-arrow {
	transform: rotate(270deg);
	stroke: currentColor;
}

.disabled {
	stroke: var(--clr-disabled);
	color: var(--clr-disabled);
	cursor: not-allowed;
}

.active {
	background: var(--clr-bg-grad);
	color: var(--clr-white);
}

.btn-add {
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: var(--clr-prim);
	border: 2px solid var(--clr-white);
	box-shadow: 12px 12px 24px 0px var(--clr-black-alpha);
}
/* ---------------------------------------- */
.table-outline {
	margin: 0.5rem 5rem;
	border: 2px solid var(--clr-sec);
	border-radius: 5px;
}

.cms-body {
	min-height: calc(100vh - 280px);
}

.cms-table {
	height: calc(100vh - 335px);
	/* height: calc(100vh - 254px); */
}

.cms-table table tr th:first-child,
.cms-table table tr td:first-child {
	border: none;
	background-color: var(--clr-white);
}

.seprator--sec,
.active--sec,
.cms-table table th,
.table-popup-header-bg table tr th {
	background-color: var(--clr-sec);
}

/* Custom Checkbox */
.checkbox {
	opacity: 0;
	position: absolute;
	left: -9999px;
	z-index: -1;
}

.checkbox + label {
	width: 30px;
	height: 30px;
	display: block;
	position: relative;
	margin: auto;
	text-indent: -999px;
	overflow: hidden;
	cursor: pointer;
	border: 1px solid var(--clr-prim);
	background: transparent;
	border-radius: 5px;
}

.checkbox--prim + label.sm {
	width: 15px;
	height: 15px;
}

.checkbox + label:before {
	content: "";
	width: 20px;
	height: 20px;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	background: var(--clr-white);
	border-radius: 2px;
	transition: all 0.4s ease;
}

.checkbox:checked + label:before {
	background: var(--clr-sec);
	border-radius: 5px;
}

.checkbox--prim:checked + label:before {
	background: var(--clr-prim);
	border-radius: 5px;
}
/* Login Styles */
.login-container {
	width: 100%;
	height: 100vh;
	background-image: url("./assets/login-bg-image.png");
	background-repeat: no-repeat;
	background-size: 100% 100%;
}

.login-container::before {
	content: " ";
	position: absolute;
	top: 0;
	left: 0;

	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.2);
}

.logo-container,
.login-credentials {
	width: 40rem;
	margin-left: 15em;
}

.logo-container {
	height: 5rem;
}

.logo-container img {
	height: 100%;
}

.login-credentials {
	min-height: 40rem;
	padding: 1.5rem;
	background: radial-gradient(
		100% 98.68% at 0% 0%,
		rgba(255, 255, 255, 0.06) 0%,
		rgba(255, 255, 255, 0.42) 100%
	);
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 30px;
	backdrop-filter: blur(10px);
	/* position: relative;
	top: 50%;
	left: 15%; */
	/* transform: translate(-50%, -50%); */
}

.mineshot-logo {
	font-family: var(--adani-bold);
	font-size: var(--text-H2);
	letter-spacing: 1.5px;
	background: linear-gradient(
		to right,
		#097da9 0%,
		#823996 50%,
		#bb3764 100%
	);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

.login-form {
	padding: 0 1rem;
	width: 100%;
}

.login-form div input {
	width: 100%;
}

.login-box-outline {
	padding: 1rem;
	border: 2px solid var(--clr-prim);
	border-radius: 5px;
	background: var(--clr-white);
}

.btn-login {
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: var(--adani-medium);
	font-size: var(--text-H5);
	box-shadow: 12px 12px 24px var(--clr-black-alpha);
}

.forgot-password {
	font-size: var(--text-H5);
	text-decoration: none;
	font-family: var(--adani-bold);
	text-shadow: 5px 5px 15px var(--clr-prim);
	letter-spacing: 1.5px;
	color: var(--clr-prim-dark);
}

.forgot-password:hover {
	color: var(--clr-prim);
}

.error-container {
	font-size: var(--text-H6);
	background: var(--clr-danger);
	color: var(--clr-white);
	padding: 0.2rem 0.6rem;
	border-radius: 0 0 10px 10px;
}
/* -------------------------------------- */

/* Mine Selection styles */
.mine-selection-container {
	/* padding: 1rem 5rem; */
	height: var(--space-main-body);
	overflow: auto;
	gap: 4rem;
}

.mine-selection-card {
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	/* border: 2px solid var(--clr-prim); */
	box-shadow: rgba(0, 0, 0, 0.25) 0px 25px 50px -12px;
	cursor: pointer;
	z-index: 1;
}

.mine-selection-card-disabled {
	position: absolute;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	/* background-color: rgb(255 255 255 / 50%); */
	border-radius: 10px;
	z-index: 10;
	cursor: not-allowed;
	/* backdrop-filter: blur(2px); */
}

.card-image-container {
	height: calc(100% - 48px);
	width: 280px;
	height: 220px;
}

.card-image {
	width: 100%;
	height: 100%;
}

.card-headings {
	width: 100%;
	height: 50px;
	padding: 0.5rem;
	font-family: var(--adani-bold);
	font-size: var(--text-H5);
	line-height: 1.2;
	text-align: center;
	position: absolute;
	bottom: 0;
	background: rgb(19 120 190 / 50%);
	color: var(--clr-white);

	display: flex;
	flex-direction: column;
	justify-content: space-around;
}

.font-regular {
	font-family: var(--adani-regular);
}
/* -------------------------------------- */

/* menu styles */
.menu-container {
	width: 100%;
	background: rgba(0, 0, 0, 0.2);

	font-size: var(--text-H5);
	font-family: var(--adani-medium);

	visibility: hidden;
	opacity: 0;

	overflow-y: auto;
	-ms-overflow-style: none; /* Internet Explorer 10+ */
	scrollbar-width: none; /* Firefox */

	position: absolute;
	top: 0;
	left: 0;
	z-index: 11;
}

.menu-container > ul {
	height: 100vh;
	width: 220px;
	list-style-type: none;
	padding: 1rem 1rem 1rem 0;
	background: linear-gradient(
		177.34deg,
		#0680a8 0.56%,
		#803d97 49.07%,
		#ba3867 100%
	);
	backdrop-filter: blur(10px);
	border-radius: 0;
	margin-bottom: 0;
}

.menu-container ul li {
	padding: 1rem 2rem;
	color: var(--clr-white);
	text-transform: uppercase;
	border-radius: 5px;
	cursor: pointer;
	position: relative;
}

.menu-container > ul > li > ul > li > ul,
.menu-container > ul > li > ul {
	visibility: hidden;
	opacity: 0;
	position: absolute;
	top: -12px;
	left: 220px;

	font-size: 12px;
	width: 220px;
	padding: 1rem;
	padding-left: 0;
	background: linear-gradient(
		177.34deg,
		#0680a8 0.56%,
		#803d97 49.07%,
		#ba3867 100%
	);
	list-style-type: none;
	backdrop-filter: blur(10px);
	transition: opacity 0.2s, visibility 0.2s;
}

.auto-adjust-height {
	/* overflow: auto; */
	max-height: calc(100vh - 112px);
}

.menu-container ul li:hover {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 0px 100px 100px 0px;
	color: var(--clr-grey);
}

.menu-container ul li ul li:hover > ul,
.menu-container ul li:hover > ul {
	visibility: visible;
	opacity: 1;
}

.menu-container ul li a {
	text-decoration: none;
	color: var(--clr-white);
}

.menu-container::-webkit-scrollbar {
	display: none; /* Safari and Chrome */
}

.close-menu {
	margin: 0rem 0 1rem 2rem;
	cursor: pointer;
}
/* -------------------------------------- */

/* Dashboard styles */
.dashboard {
	height: calc(100vh - 85px);
	overflow: auto;
}

.dashboard-container {
	height: 100%;
	padding: 0.2rem 2rem;

	display: grid;
	grid-template-columns: repeat(8, 1fr);
	grid-template-rows: auto;
}

.gap-1rem {
	gap: 0.5rem;
}

.gap-3rem {
	grid-gap: 3rem;
}

.graph-container {
	font-size: var(--text-H5);
	padding-bottom: 0.2rem;
}

.graph-container:nth-child(1) {
	grid-area: 1 / 1 / 1 / 3;
}

.graph-container:nth-child(2) {
	grid-area: 1 / 3 / 1 / 5;
}

.graph-container:nth-child(3) {
	grid-area: 1 / 5 / 1 / 7;
}

.graph-container:nth-child(4) {
	grid-area: 1 / 7 / 1 / 9;
}

.graph-container:nth-child(5) {
	grid-area: 2 / 1 / 2 / 8;
}

.graph-container:nth-child(6) {
	grid-area: 3 / 1 / 3 / 8;
}

.graph-container:nth-child(7) {
	grid-area: 2 / 8 / 4 / 9;
}

.graph-card-outline {
	padding: 0rem 1rem;
	border: 1px solid var(--clr-black-alpha);
	border-radius: 5px;
	box-shadow: rgb(0 0 0 / 15%) 0px 1px 9px 0px;
}

.chart-container {
	width: calc((100% / 2) - 5px);
}

.line-graph {
	width: calc((100% / 3) - 3rem);
}

.graph-body-container {
	height: calc(100% - 26px);
}

.lead-container {
	height: 70%;
}

.meter-guage-heading {
	position: relative;
	top: 0.6rem;
}

.single-entity-container {
	flex-direction: column;
	font-size: 1.4rem;
}

.single-entity-container p {
	margin-bottom: 0.5rem;
}
/* -------------------------------------- */

/* CMS Styles */
.add-mine-header-popup {
	padding: 0 5rem;
}

.cms-mine-table-header {
	width: max-content;
	background: var(--clr-sec);
	color: var(--clr-white);
	padding: 1rem 5rem;
	border-radius: 50px;
	box-shadow: 10px 10px 20px var(--clr-black-alpha);
	margin-bottom: 0;

	position: absolute;
	left: 50%;
	top: -21px;
	transform: translateX(-50%);
}

.cms-mine-table-body {
	margin-top: 4rem;
	padding: 2rem;
}

.input-container {
	border: 1px solid var(--clr-prim);
	border-radius: 5px;
	padding-right: 1rem;
	width: calc((100% - 50px) / 4);
}

.input-container:nth-child(n + 5) {
	margin-top: 3rem;
}

.cms-mine-table-header-heading {
	background: var(--clr-prim);
	padding: 0.5rem 1rem 0.5rem 2rem;
	margin: 0 1rem;
	border-radius: 0.5rem;
	color: var(--clr-white);
}

.cms-mine-table-header-heading svg {
	width: 2.5rem;
	height: 2.5rem;
	padding: 0.5rem;
	border-radius: 0.5rem;
	background: var(--clr-white-alpha);
}
/* -------------------------------------- */
.hide {
	position: absolute;
	left: -9999px;
}

/* Input Effect */
.input-container:focus {
	border: none;
}

.input-effect .effect:focus {
	outline: none;
}

.effect::placeholder {
	color: transparent;
}

.effect {
	font-size: var(--text-H5);
	width: 100%;
	/* padding: 0.7rem 1.4rem; */
	padding: 0 1rem;
	transition: 0.4s;
	background: transparent;
	position: relative;
	z-index: 10;
}

.effect ~ .focus-border:before,
.effect ~ .focus-border:after {
	content: "";
	position: absolute;
	top: 0;
	right: 0;
	width: 0;
	height: 2px;
	background-color: var(--clr-prim);
	transition: 0.2s;
	transition-delay: 0.2s;
}
.effect ~ .focus-border:after {
	top: auto;
	bottom: 0;
	right: auto;
	left: 0;
	transition-delay: 0.6s;
}

.effect ~ .focus-border i:before,
.effect ~ .focus-border i:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 2px;
	height: 0;
	background-color: var(--clr-prim);
	transition: 0.2s;
}

.effect ~ .focus-border i:after {
	left: auto;
	right: 0;
	top: auto;
	bottom: 0;
	transition-delay: 0.4s;
}

.effect:focus ~ .focus-border:before,
.effect:focus ~ .focus-border:after {
	width: 100%;
	transition: 0.2s;
	transition-delay: 0.6s;
}

.effect:focus ~ .focus-border:after {
	transition-delay: 0.2s;
}

.effect:focus ~ .focus-border i:before,
.effect:focus ~ .focus-border i:after {
	height: 100%;
	transition: 0.2s;
}

.effect:focus ~ .focus-border i:after {
	transition-delay: 0.4s;
}

.effect ~ label {
	position: absolute;
	left: 14px;
	top: 7px;
	width: fit-content;
	color: var(--clr-input-placeholder);
	transition: 0.3s;
	letter-spacing: 0.5px;
	font-size: var(--text-H5);
	z-index: 0;
}

.effect:disabled ~ label {
	color: var(--clr-black-alpha-50);
	z-index: 10;
}

.effect:not(:placeholder-shown) ~ label,
.effect:focus ~ label {
	top: -15px;
	left: 12px;
	font-size: var(--text-H5);
	color: var(--clr-input-placeholder);
	transition: 0.3s;
	padding: 0 1rem;
	z-index: 1;
	background-color: var(--clr-white);
}

.effect:disabled:not(:placeholder-shown) ~ label {
	z-index: 10;
	border-radius: 10px;
}

.mandatory::after {
	content: "*";
	color: var(--clr-danger);
	margin-left: 0.5rem;
}

.w-120px {
	width: 120px;
}

/* Table Styles: view Screen */
.table-view {
	border-collapse: collapse;
}

.table-view thead tr th {
	border-radius: initial;
}

.table-view tbody tr td {
	border: 0;
	color: var(--clr-black);
}

.table-primary {
	--bs-table-bg: var(--clr-prim);
}

.table {
	margin-bottom: 0;
	color: var(--clr-prim);
	vertical-align: middle;
}

.btn-custom {
	padding: 1rem 2rem;
	font-size: var(--text-H5);
	font-family: var(--adani-regular);
	letter-spacing: 3px;
	border-radius: 5px;
	box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px,
		rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
	cursor: pointer;
	text-transform: uppercase;
}

.height-full-body {
	height: calc(100vh - 285px);
}

.adjusted-height {
	height: calc(100% - 45px);
}

.container-fluid {
	min-height: calc(100vh - 212px);
}

/* bullet graph styles */
.bullet-example {
	width: 98%;
}

.bullet-example chart {
	height: 20px;
	width: 100%;
	margin-bottom: 60px;
}
.bullet-example chart.color {
	margin-bottom: 0;
}
.bullet-example guide-x .tick {
	border-width: 2px;
	border-color: black;
}
.bullet-example dot.comparison {
	height: 20px;
	width: 3px;
	top: calc(50% - (15px / 2));
	background-color: black;
	border-radius: 0;
}
.bullet-example bar {
	position: absolute;
	margin: 0;
	border: none;
}
.bullet-example bar.performance {
	background-color: black;
	height: 6px;
	top: 7px;
}
/* ends here */

/* simple table which comes before table*/
.simple-table {
	margin: 0 0.5rem 0.2rem 0;
	/* border: 1px solid var(--clr-prim); */
	border-radius: 10px;
}

.simple-table__container {
	padding: 0 0.3rem;
}

.simple-table__container__heading {
	width: 75%;
}
.simple-table__container__input {
	width: 25%;
}

.simple-table__container {
	width: calc((100% / 2) - 1rem);
}

.simple-table__container > div:last-child {
	margin-bottom: 0 !important;
}

.simple-table__container__input {
	text-align: left;
	padding-left: 1rem;
}

.simple-table__one-fourth {
	width: calc((100% / 4) - 3rem);
}
/* tabs & Container */
.tabs {
	font-size: 1.6rem;
	position: relative;
}

.tabs input {
	position: absolute;
	left: -9999px;
}

.tabs input + label {
	padding: 1rem 2rem;
	background: #ffffff;
	border: 1px solid var(--clr-prim);
	color: var(--clr-prim);
	cursor: pointer;
	display: block;
	font-weight: 600;
}

.tabs input + label:first-of-type {
	border-radius: 5px 0 0 5px;
}

.tabs input + label:last-of-type {
	border-radius: 0 5px 5px 0;
}

.tabs input:checked + label {
	background: var(--clr-prim);
	color: var(--clr-white);
}

/* Coal Grid */
.coal-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: auto;
}

.coal-grid-table-1 {
	grid-area: 1 / 1 / 1 / 3;
}

.coal-grid-table-2 {
	grid-area: 1 / 3 / 1 / 5;
}

.coal-grid-table-3 {
	grid-area: 1 / 5 / 1 / 7;
}

.coal-grid-table-4 {
	grid-area: 2 / 1 / 2 / 4;
}

.coal-grid-table-5 {
	grid-area: 2 / 4 / 2 / 7;
}

.coal-grid-table-6 {
	grid-area: 3 / 1 / 3 / 7;
}

/* finance Grid */
.finance-grid {
	height: auto;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	grid-template-rows: auto;
	gap: 0.5rem;
}

.finance-grid-table-1 {
	grid-area: 1 / 1 / 1 / 3;
}

.finance-grid-table-2 {
	grid-area: 2 / 1 / 2 / 1;
	margin-right: 0.25rem;
}

.finance-grid-table-3 {
	grid-area: 2 / 2 / 2 / 2;
	margin-left: 0.25rem;
}

.finance-grid-table-6 {
	grid-area: 3 / 1 / 3 / 3;
}

.finance-grid-table-7 {
	grid-area: 4 / 1 / 4 / 3;
}

/* media queries */
@media (max-width: 768px) {
	.logo,
	.user-image {
		height: 25px;
	}

	.logo-container,
	.login-credentials {
		width: 33rem;
		margin-left: 2em;
	}

	#login-form img {
		width: 200px;
	}
}

@media screen and (min-device-width: 1367px) and (max-device-width: 1920px) {
	.card-image-container {
		width: 360px;
		height: 300px;
	}
}

@media screen and (min-device-width: 360px) and (max-device-width: 812px){

.input-group-prepend {
  width: 100% !important;
  margin-bottom: 10px;
}

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: 0px !important;
  width: 100% !important;
}

#minshotarea {
  width: 100% !important;
  height: 110px !important;
  font-size: 16px !important;
}

.sub {
  width: 32% !important;
 }
.logo, .user-image {
  height: 28px !important;
}

}



/* media queries */
@media (max-width: 1940px) {
	:root {
		--text-H1: 37.9px;
		--text-H2: 28.43px;
		--text-H3: 21.33px;
		--text-H4: 16px;
		--text-H5: 12px;
		--text-H6: 10px;

		/* layout spacing */
		/* Currently set for Jitendra Screen Size: 1301x672 */
		--space-navigation: 50px;
		/* --space-navigation-image: 80px; */
		--space-navigation-image: 0px;
		--space-footer: 35px;
		--space-main-nav: 42px;

		--space-nav: var(--space-navigation) + var(--space-navigation-image);
		--space-main: calc(100vh - (var(--space-nav) + var(--space-footer)));
		--space-main-body: calc(var(--space-main) - var(--space-main-nav));
	}
          
	.menu {
		height: var(--space-navigation);
	}

	.logo,
	.user-image {
		height: 40px;
	}

	.header-image img {
		height: var(--space-navigation-image);
	}

	footer,
	.footer {
		height: var(--space-footer);
	}

	.input-save,
	.btn-custom {
		padding: 0.5rem 1rem;
	}

	.circle {
		width: 2rem;
		height: 2rem;
	}

	th {
		padding: 0.5rem 1rem;
	}

	.btn {
		font-size: var(--text-H5);
	}

	/* .body-outline, */
	.height-full-body {
		height: calc(var(--space-main-body) - 1rem);
	}

	.error-container {
		font-size: var(--text-H6);
	}

	.general-list {
		min-width: 40%;
		max-width: 100%;
	}

	.body-footer {
		height: 40px;
	}

	.container-fluid {
		min-height: calc(100vh - 165px);
	}

	/* overriding varienance styles */
	guide-x .tick {
		font-size: 12px !important;
		color: #666666;
	}

	guide-x.bottom .tick .label {
		top: 10px !important;
	}

	.list-view-add-btn {
		width: 3rem;
		height: 3rem;
	}
}

@media (min-width: 1200px) {
	.modal-xl {
		max-width: 90%;
	}
}

@media (min-width: 992px) {
	.modal-lg,
	.modal-xl {
		max-width: 90%;
	}
}

button {
	background-color: inherit;
	border: none;
}

.menu-visible {
	visibility: visible;
	opacity: 1;
}
@media (max-width: 1000px) {
	.mine-selection-card {
		transform: scale(0.8);
	}
}
@media (min-width: 1300px) {
	.mine-selection-card {
		transform: scale(1.2);
	}
}

@media (min-width: 1500px) {
	.mine-selection-card {
		transform: scale(1.4);
	}
}

.userProfile {
	position: absolute;
	z-index: 15;
	padding: 1rem;
	background: var(--clr-grey);
	border-radius: 10px;
}

.userProfile ul {
	padding-left: 0;
	margin-bottom: 0;
}

.bg-prim {
	background: var(--clr-prim);
}

.bg-inherit {
	background: inherit;
}

.table-view tbody tr td:not(:first-child) {
	padding-right: 1.5rem;
}
/* linear-gradient(to right, #a2a39d 0, #316db4 100%) - grey color */
/*input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}*/