﻿
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

* {
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 14px;
	background-color: #f9fbfb;
}

.main_body {
	background-color: #f9fbfb;
	min-height: 95vh;
	color: #101F1F;
}

	.main_body table {
		color: #1c1c1c;
	}

#loader {
	position: fixed;
	z-index: 1080;
	top: 0;
	width: 100%;
	height: 100%;
	background: #00000085;
	display: none;
}

.loader-inner {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

	.loader-inner img {
		width: 100px;
	}

a {
	text-decoration: none;
}

.mt--20 {
	margin-top: -14px !important;
}

.table > :not(caption) > * > * {
	border-bottom: 0;
}
/*main section*/
.mean-bar {
	cursor: pointer;
}

/*left section*/
.side_logo {
	margin: 0 0 20px;
}

	.side_logo .logo img {
		width: 140px;
	}

.dashboard_left_section {
	width: 265px;
	background: #ffffff;
	height: 100vh;
	overflow-y: auto;
	padding: 20px 7px;
	position: fixed;
	top: 0;
	left: 0;
	transition: 1s all ease;
	z-index: 8;
}

	.dashboard_left_section.close {
		left: -100%;
	}

.side_nav ul {
	padding: 0;
	list-style: none;
	font-size: 13px;
}

	.side_nav ul li {
		/* border-top: 1px solid #efeeee; */
		position: relative;
		margin-bottom: 2px;
	}

		.side_nav ul li a {
			display: block;
			line-height: 1;
			color: #181818;
			transition: 1s all ease;
			border-radius: 8px;
			font-weight: 500;
			padding: 15px 16px 15px 28px;
			outline: none;
			position: relative
		}


.side_nav > ul > li > a:hover, .side_nav > ul > li > a.active, .side_nav > ul > li > a.highlight {
	background-color: #1D768B;
	color: #ffffff;
}

.side_nav > ul > li > ul {
	display: none;
}

	.side_nav > ul > li > ul li ul {
		display: none;
	}

	.side_nav > ul > li > ul > li {
		margin-left: 10px
	}

		.side_nav > ul > li > ul > li a:hover, .side_nav > ul > li > ul > li > a.active, .side_nav > ul > li > ul > li > a.highlight {
			background-color: #8d8d8d00;
			color: #1d768b;
		}

	.side_nav > ul > li > ul li ul.sub-sub_menu a.active {
		background: #e1e1e1;
	}

	.side_nav > ul > li > ul li ul.sub-sub_menu a:hover {
		background: #e1e1e1;
		color: #3C4946;
	}

li.has_submenu.open-menu .sub_menu, li.has-sub-submenu.open-menu .sub-sub_menu {
	display: block !important;
}

.side_nav ul li.has_submenu > a:after {
	content: "\f105";
	font-family: "FontAwesome";
	position: absolute;
	right: 25px;
	transition: .2s all ease;
	transform: rotate(0);
	font-size: 18px;
}

.side_nav ul li.has_submenu > a.active:after {
	transition: .2s all ease;
	transform: rotate(90deg);
}

.side_nav ul li > ul > li.has-sub-submenu > a:after {
	content: "\f105";
	font-family: "FontAwesome";
	position: absolute;
	right: 25px;
	transition: .2s all ease;
	transform: rotate(0);
	font-size: 18px;
}

.side_nav ul li > ul > li.has-sub-submenu > a.active:after {
	transition: .2s all ease;
	transform: rotate(90deg);
}

.side_nav ul li > a.active:before {
	content: "\f111";
	font-family: "FontAwesome";
	position: absolute;
	left: 2px;
	font-size: 11px;
}

.side_nav ul.side_main_nav > li > a:before {
	content: "";
	font-family: "FontAwesome";
	position: absolute;
	left: 5px;
	width: 17px;
	top: 50%;
	transform: translateY(-50%);
	height: 19px;
	background-size: contain;
	background-repeat: no-repeat;
}

.side_nav ul.side_main_nav > li.dashboard > a:before {
	background-image: url(../images/dashboard.png);
}

.side_nav ul.side_main_nav > li.assetManage > a:before {
	background-image: url(../images/asset-management.png);
}

.side_nav ul.side_main_nav > li.mapUser > a:before {
	background-image: url(../images/user-mapping.png);
}

.side_nav ul.side_main_nav > li.sprayRequest > a:before {
	background-image: url(../images/spray-request.png);
}

.side_nav ul.side_main_nav > li.invoice > a:before {
	background-image: url(../images/invoice.png);
}

.side_nav ul.side_main_nav > li.heatMap > a:before {
	background-image: url(../images/heat-map.png);
}

.side_nav ul.side_main_nav > li.refund > a:before {
	background-image: url(../images/refund.png);
}

.side_nav ul.side_main_nav > li.paymentReport > a:before {
	background-image: url(../images/report.png);
}

.side_nav ul.side_main_nav > li.fuelReport > a:before {
	background-image: url(../images/fuelReport.png);
}


.side_nav ul.side_main_nav > li.productCropMapping > a:before {
	background-image: url(../images/productCropMapping.png);
}


.side_nav > ul > li > a:hover::before, .side_nav > ul > li > a.active:before, .side_nav > ul > li > a.highlight:before {
	filter: brightness(24);
}

.side_nav > ul > li > ul > li > a {
	padding: 12px 5px 12px 17px;
	font-size: 13px;
}

span.mean-close {
	position: absolute;
	right: 15px;
	top: 6px;
	font-weight: 600;
	font-size: 18px;
	display: none;
}

.dashboard_left_section::-webkit-scrollbar {
	width: 8px;
}

/* Track */
.dashboard_left_section::-webkit-scrollbar-track {
	background: #f1f1f1;
}

/* Handle */
.dashboard_left_section::-webkit-scrollbar-thumb {
	background: #888;
}

	/* Handle on hover */
	.dashboard_left_section::-webkit-scrollbar-thumb:hover {
		background: #555;
	}
/*Right Section*/
/* .dashboard_left_section.open + .dashboard_right_section{
	margin-left: 75px;
} */
.dashboard_right_section {
	margin-left: 265px;
	transition: .6s all ease;
	background-color: #ffffff;
}

.dashboard_left_section.close + .dashboard_right_section {
	margin-left: 0px;
}


/* Login Page */

.login-sec {
	height: calc(100vh - 60px);
	display: flex;
	align-items: center;
	background-size: 100% 100%;
	background-position: center;
}

	.login-sec .card {
		box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
		border-radius: 17px;
	}

		.login-sec .card h4 {
			font-size: 30px;
			line-height: 40px;
			font-weight: 700;
		}

		.login-sec .card .login-form h4 {
			font-size: 24px;
			line-height: 40px;
			font-weight: 700;
			margin-bottom: 20px;
		}

.login-form {
	margin: 20px 10% 0;
}

	.login-form button {
		width: 100%;
		background-color: #1d768b;
		color: #fff;
		font-weight: 900;
		margin-top: 10px;
		padding: 8px 16px;
		border: 1px solid #1d768b;
	}

		.login-form button:hover {
			color: #fff;
		}

		.login-form button.bg-trans {
			background-color: #fff0;
			color: #229D80;
		}

	.login-form label {
		font-size: 16px;
		font-weight: 500;
		color: #000;
		line-height: 24px;
	}

	.login-form input.form-control {
		background: #EBF0F4;
		color: #000;
		border-color: #EBF0F4;
		height: 42px;
		font-size: 14px;
	}

.sel-fm {
	text-align: center;
}

	.sel-fm select {
		outline: 0;
		width: 100%;
		margin: 0 auto;
		border: 1px solid #b9b9b9;
		border-radius: 5px;
		font-size: 14px;
		height: 30px;
	}

.forgot-text {
	display: block;
	text-align: right;
	text-decoration: none;
	color: #000;
	font-weight: 600;
	font-size: 15px;
	line-height: 24px;
}

/* web pages */

.main-header {
	background: #fff;
	padding: 7px 0;
	/* border-bottom: 1px solid #B5E2D7; */
	transition: .6s all ease;
}

/*   .main-header.fixed {
        position: fixed;
        top: 0;
        right: 0;
        width: calc(100% - 295px);
        z-index: 9;
    }*/

.dashboard_left_section.close + .dashboard_right_section .main-header {
	width: 100%;
}

.main-header span.mean-bar i {
	font-size: 18px;
}

.main-header span.logo-name {
	font-size: 22px;
	font-weight: 600;
	line-height: 25px;
	color: #EE3B33;
	margin-left: 10px;
}

.head-icon .h-icon {
	width: 36px;
	height: 36px;
	background: #f5f5f5;
	font-size: 16px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 100%;
	margin-right: 10px;
}

.us-sec {
	display: flex;
	justify-content: end;
	align-items: center;
	padding: 4px 5px;
	width: fit-content;
	border: 1px solid #f2f2f2;
	border-radius: 8px;
}

	.us-sec span.nameLtr {
		background: #E1F3EF;
		font-size: 17px;
		font-weight: 500;
		display: inline-block;
		height: 32px;
		width: 32px;
		border-radius: 8px;
		text-align: center;
		line-height: 32px;
		margin-right: 4px;
	}

	.us-sec .us-list select {
		border: 0;
		font-size: 12px;
		font-weight: 500;
		padding-right: 4px;
		outline: none;
	}

.brd-green {
	border: 1px solid #229d80;
	padding: 10px;
	background: #fff;
	border-radius: 16px;
}

.mx-width {
	width: 27%;
}

.main-sec {
	padding: 10px;
	background-color: #f9fbfb;
}

h4.page-heading {
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 0px;
}

h4.table-heading {
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 0px;
}

.card-body {
	padding: 6px;
}

.card.wb-card {
	background-color: #ffffff;
	border: 0px solid #ffffff;
	border-radius: 8px;
	margin-bottom: 20px;
}

.wb-card-map {
	margin-bottom: 0px !important;
}

.card.wb-card.he-100 {
	height: calc(100% - 20px);
}

.card.wb-card h4.crd-head {
	font-size: 16px;
	font-weight: 700;
	margin-bottom: 5px;
	padding-left: 5px;
}

	.card.wb-card h4.crd-head span {
		font-weight: 500;
		margin-left: 7px;
	}

.card.wb-card.nobg-card {
	background-color: #f9fafc00;
	border: 1px solid #f9fafc00;
}

.btn.fm-btn {
	border: 1px solid #1d768b;
	border-radius: 8px;
	min-width: 90px;
	font-size: 14px;
	font-weight: 500;
	padding: 8px;
	color: #1d768b;
	box-shadow: none;
}

	.btn.fm-btn.btn-bg {
		background-color: #1d768b;
		color: #fff;
	}

	.btn.fm-btn.upload-btn {
		background-color: #fff;
		border-color: #F4F4F4;
	}

	.btn.fm-btn.dw-btn {
		background-color: #9D223F;
		border-color: #9D223F;
		color: #fff;
	}

	.btn.fm-btn.dw-trans-btn {
		background-color: #9d223f00;
		border-color: #9D223F;
		color: #9D223F;
	}

a.btn.fm-btn.dw-bizz-btn {
	border-radius: 8px;
	border-color: #229D80;
	color: #229D80;
}

a.btn.fm-btn.filter-btn {
	border-radius: 8px;
	border-color: #C0C6C5;
	color: #C0C6C5;
	outline: 0;
	box-shadow: none;
}

	a.btn.fm-btn.filter-btn.active {
		border-color: #FF454E;
		color: #666666;
	}

.btn.fm-btn.reset-btn {
	background-color: #fff;
	border-color: #9D223F;
	color: #9D223F;
	;
}

.c-dw-btn {
	color: #229D80;
	font-size: 14px;
	font-weight: 500;
}

.form-sec .fm-group {
	margin: 0 10px 10px 0;
	width: 23%;
}

	.form-sec .fm-group select.form-select {
		outline: 0;
		box-shadow: none;
		padding: 9px 8px 9px 8px;
		border: 1px solid #ccc;
		border-radius: 8px;
		font-size: 14px;
	}

	.form-sec .fm-group input.form-control {
		outline: 0;
		box-shadow: none;
		padding: 9px 8px 9px 8px;
		border: 1px solid #ccc;
		border-radius: 8px;
		font-size: 14px;
	}

	.form-sec .fm-group label.form-label {
		font-size: 14px;
		font-weight: 600;
		color: #000;
		margin-bottom: 5px;
	}

.summry-sec .row .table-div:not(:last-child) {
	border-right: 1px solid #dee2e6;
}

.summry-sec table.table {
	margin: 0;
}

	.summry-sec table.table td {
		border: 0;
		vertical-align: middle;
		font-size: 13px;
		line-height: 16px;
		color: #101F1F;
		font-weight: 500;
	}

		.summry-sec table.table td:first-child {
			width: auto;
		}

.summry-sec .refundDetail table.table td:first-child {
	width: auto;
}

.data-sec {
	margin-top: 10px;
	position: relative;
}

.accordion .accordion-item {
	margin: 10px 0 0;
	border: 1px solid #F4F4F4;
	border-radius: 8px;
	padding: 5px 13px;
}

	.accordion .accordion-item .accordion-titel {
		font-size: 14px;
		font-weight: 600;
		line-height: 20px;
		position: relative;
	}

		.accordion .accordion-item .accordion-titel img {
			width: 20px;
			margin-right: 5px;
		}

	.accordion .accordion-item.active .accordion-titel::after {
		content: '\f068';
		font-family: FONTAWESOME;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.accordion .accordion-item .accordion-titel::after {
		content: '\f067';
		font-family: FONTAWESOME;
		position: absolute;
		right: 0;
		top: 50%;
		transform: translateY(-50%);
	}

	.accordion .accordion-item:not(:first-child) .accordion-contant {
		display: none;
	}

	.accordion .accordion-item.active {
		border-color: #229D80;
	}

	.accordion .accordion-item .accordion-contant {
		margin: 10px 0 0;
	}

.ap-pending {
	display: inline-block;
	padding: 2px 7px;
	background: #FFECEC;
	color: #FF454E;
	font-size: 12px;
	line-height: 18px;
	font-weight: 400;
}

.data-sec table {
	font-size: 12px;
	line-height: 14px;
	width: 100% !important;
	border-bottom: none !important;
	background: #fff;
	margin: 4px 0 10px !important;
}

	.data-sec table td, .accordion table th {
		border: none;
		vertical-align: middle;
		padding-bottom: 4px;
		padding-top: 4px;
		min-width: 50px;
	}

	.data-sec table thead tr th:first-child {
		border-top-left-radius: 0px;
	}

	.data-sec table thead tr th:last-child {
		border-top-right-radius: 0px;
	}

	.data-sec table thead tr th {
		background: #C8E4E9;
		color: #333333;
		font-weight: 600;
		border: none;
	}

		.data-sec table thead tr th.sr-num {
			max-width: 80px !important;
			width: 80px;
		}

	.data-sec table td input {
		width: 90px;
		padding: 6px 2px;
		border: 1px solid #229D80;
		border-radius: 5px;
		outline: 0;
	}

		.data-sec table td input[type="date"] {
			width: 100px;
			border-color: #C0C6C5;
		}

	.data-sec table td select {
		width: 100%;
		font-size: 14px;
		padding: 6px 9px;
		border: 1px solid #229D80;
		border-radius: 5px;
	}

	.data-sec table.table.bg-darkborder thead th {
		background: #C8E4E9;
		color: #333333;
		vertical-align: middle;
	}

table.table.lg-table thead tr th {
	text-align: center;
}

table.lr-highlight tbody tr:last-child th {
	background-color: #9DDDC8;
	line-height: 30px;
}

table thead tr th.bdr-right, table tbody tr td.bdr-right,
table tbody tr th.bdr-right {
	border-right: 1px solid #bdbdbd;
	padding-right: 6px !important;
}

.data-sec table td .calci {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

	.data-sec table td .calci img {
		width: 20px;
		margin: 0 5px;
	}

table.table.lg-table tbody tr td, table.table.lg-table tbody tr th {
	padding: 4px 2px;
	font-size: 12px;
	vertical-align: middle;
	min-width: 55px;
}

span.approve {
	padding: 4px 6px;
	border: 1px solid #229D80;
	display: inline-block;
	color: #229D80;
	background: #E1F3EF;
	border-radius: 6px;
	width: 83px;
	text-align: center;
}

.green {
	color: #229D80;
}

.yellow {
	color: #F0AB16;
}

span.reject {
	padding: 4px 6px;
	border: 1px solid #FF454E;
	display: inline-block;
	color: #FF454E;
	background: #FFECEC;
	border-radius: 6px;
	width: auto;
	text-align: center;
}

span.download {
	padding: 5px 8px;
	border: 1px solid #9D223F;
	display: inline-block;
	color: #9D223F;
	background: #FFECEC;
	border-radius: 100px;
	width: auto;
	text-align: center;
}

.md-span {
	cursor: pointer;
}

.data-sec table.bg-darkborder tbody tr td, .data-sec table.bg-darkborder tbody tr th {
	border-bottom: 1px solid #dee2e6;
}

	.data-sec table.bg-darkborder tbody tr td:first-child, .data-sec table.bg-darkborder tbody tr th:first-child {
		border-left: 0px solid #f3f3f3;
	}

	.data-sec table.bg-darkborder tbody tr td:last-child, .data-sec table.bg-darkborder tbody tr th:last-child {
		border-right: 1px solid #f3f3f3;
	}

.data-sec table.bg-darkborder tbody tr:last-child td {
	border-bottom: 1px solid #dee2e6;
}

	.data-sec table.bg-darkborder tbody tr:last-child td:first-child {
		border-bottom-left-radius: 8px;
	}

	.data-sec table.bg-darkborder tbody tr:last-child td:last-child {
		border-bottom-right-radius: 8px;
	}

.c-red {
	color: #FF454E !important;
}

.c-green {
	color: #00AF82 !important;
}

.us-detail {
	padding: 10px 4px;
	border-top: 1px dotted #000;
	border-bottom: 1px dotted #000;
	margin-bottom: 20px;
}

	.us-detail h4 {
		font-size: 18px;
		color: #229D80;
		font-weight: 600;
	}

	.us-detail p {
		font-size: 12px;
		margin-bottom: 1px;
		color: #535459;
	}

.acc-receivs {
	box-shadow: 0px 4px 8px rgba(0, 40, 126, 0.12);
	padding: 20px 15px 30px;
	border-top: 3px solid #1d768f;
	border-radius: 8px;
	border-top-right-radius: 0;
	border-top-left-radius: 0;
	background: #fff;
	text-align: center;
	margin-bottom: 30px;
}

	.acc-receivs.redC {
		border-color: #ED2F2F;
	}

	.acc-receivs.yellowC {
		border-color: #F3BC00;
	}

	.acc-receivs.greenC {
		border-color: #00AF82;
	}

	.acc-receivs.skcol {
		border-color: #6CEDC8;
	}

		.acc-receivs.skcol h3 {
			color: #6CEDC8;
		}

	.acc-receivs.greenlc {
		border-color: #2DC72B;
	}

		.acc-receivs.greenlc h3 {
			color: #2DC72B;
		}

	.acc-receivs.blueC {
		border-color: #C4145D;
	}

		.acc-receivs.blueC h3 {
			color: #C4145D;
		}

	.acc-receivs.pinkC {
		border-color: #E666A6;
	}

		.acc-receivs.pinkC h3 {
			color: #E666A6;
		}

	.acc-receivs p {
		margin-bottom: 23px;
		font-size: 14px;
		color: #141414;
		font-weight: 600;
	}

	.acc-receivs.redC h3 {
		color: #ED2F2F;
	}

	.acc-receivs.yellowC h3 {
		color: #F3BC00;
	}

	.acc-receivs.greenC h3 {
		color: #00AF82;
	}

	.acc-receivs h3 {
		font-size: 23px;
		font-weight: 600;
		color: #0a0a0a;
	}

.chart-det .color-b {
	width: 18px;
	display: inline-block;
	height: 18px;
	background: #000;
	border-radius: 4px;
}

	.chart-det .color-b.green {
		background-color: #77AB59
	}

	.chart-det .color-b.yellow {
		background-color: #FFC905
	}

	.chart-det .color-b.blue {
		background-color: #64A1F4
	}

	.chart-det .color-b.red {
		background-color: #ED2F2F
	}

	.chart-det .color-b.skblue {
		background-color: #6CEDC8
	}

	.chart-det .color-b.lgreen {
		background-color: #2DC72B
	}

	.chart-det .color-b.drkred {
		background-color: #C4145D
	}

	.chart-det .color-b.pinkC {
		background-color: #E666A6
	}

.chart-det table tr td {
	padding: 5px 5px 4px;
	vertical-align: middle;
	font-size: 13px;
	border-bottom: 0.5px solid #C0C6C5;
	;
}

	.chart-det table tr td .number {
		font-weight: 600;
		font-size: 13px;
	}

.chart-det table {
	width: 100%;
}

.chrt-filter select {
	border: 0;
	outline: 0;
	font-size: 11px;
}

.ch-table table {
	width: 100%;
	margin-top: 10px;
}

	.ch-table table thead th {
		background: #f2f2f2;
		padding: 10px;
		font-weight: 600;
		font-size: 13px;
	}

		.ch-table table thead th:first-child {
			width: 50%;
		}

.ch-table {
	max-height: 330px;
	overflow-y: auto;
}

	.ch-table::-webkit-scrollbar {
		width: 6px;
	}
	/* Track */
	.ch-table::-webkit-scrollbar-track {
		background: #f1f1f1;
	}

.ord-table td {
	border-bottom: 0 !important;
	display: inline-flex;
}

/* Handle */
.ch-table::-webkit-scrollbar-thumb {
	background: #888;
}

.ch-table table td {
	padding: 10px;
}

p.note-text {
	margin: 0 0 4px;
	text-align: right;
	font-size: 14px;
	font-weight: 600;
	color: #FF454E;
}

table.table.bg-darkborder td span {
	display: inline-block;
	margin: 0 2px 0 6px;
	cursor: pointer;
}

.w-90px {
	width: 90px;
}

.right-round {
	display: inline-block;
	width: 22px;
	height: 22px;
	background: #E1F3EF;
	text-align: center;
	line-height: 22px;
	border-radius: 100%;
}

.modal-form textarea {
	width: 100%;
	background: #F9FAFC;
	border: 1px solid #C0C6C5;
	outline: 0;
	margin-bottom: 10px;
	border-radius: 8px;
}

.md-table table.table thead th {
	background: #EBF0F4;
}

.md-table table.table td, .md-table table.table th {
	font-size: 12px;
	padding: 12px 10px;
}

.md-table table.table tbody td {
	border-bottom: 1px solid #f2f2f2;
	font-weight: 500;
}

	.md-table table.table tbody td.md-download {
		color: #229D80;
	}

.md-table table.table {
	border: 1px solid #f2f2f2;
}

.announce-sec .an-image {
	width: 64px;
	height: 64px;
	padding: 0 6px;
	margin: 0 4px;
}

.ch-sec.announce-sec {
	padding: 6px 8px 6px;
	border-bottom: 2px solid #f2f2f2;
	margin-bottom: 10px;
}

.announce-sec .an-image img {
	max-width: 100%;
	width: 64px;
	height: 64px;
	object-fit: cover;
}

.announce-sec .an-date {
	margin: 4px 0;
}

	.announce-sec .an-date span {
		display: block;
		font-size: 20px;
		color: #e7512f;
		font-family: 'Oswald', sans-serif;
		font-weight: 400;
		text-transform: uppercase;
		line-height: 1;
	}

		.announce-sec .an-date span + span {
			font-size: 34px;
			color: #737373;
			margin-top: 5px;
		}

.announce-sec .an-title {
	display: inline-block;
	max-width: 140px;
	max-height: 60px;
	overflow: hidden;
	word-wrap: break-word;
	font-size: 14px;
	line-height: 1.2;
	width: 80px;
	color: #737373;
	vertical-align: top;
	margin: 4px 0;
}

.announce-card {
	max-height: 398px;
	overflow: hidden;
}

	.announce-card marquee {
		height: 95%;
	}

#filter-sec {
	display: none;
}

.dash-card {
	background: #FFFFFF;
	box-shadow: 0px 4px 8px rgba(0, 40, 126, 0.12);
	border-radius: 8px;
	padding: 20px 20px;
	border-left: 3px solid #86CFBE;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

	.dash-card h3 {
		font-size: 20px;
		font-weight: 700;
		color: #000;
		margin-bottom: 0;
	}

	.dash-card p {
		font-size: 14px;
		color: #747678;
		font-weight: 400;
		margin-bottom: 10px;
	}

	.dash-card h5 {
		font-size: 14px;
		color: #101F1F;
		font-weight: 600;
		margin-bottom: 4px;
	}

	.dash-card span.status {
		padding: 7px 22px;
		background: rgba(255, 255, 255, 0.32);
		/* Shadow */
		box-shadow: 0px 2px 10px rgba(124, 141, 181, 0.12);
		border-radius: 16px;
		font-weight: 400;
		font-size: 12px;
		font-family: 'Poppins', sans-serif;
		position: relative;
	}

		.dash-card span.status:before {
			content: '';
			position: absolute;
			left: 13px;
			top: 50%;
			transform: translateY(-50%);
			width: 5px;
			height: 5px;
			border-radius: 100%;
		}

		.dash-card span.status.inactive:before {
			background: #FF454E;
		}

		.dash-card span.status.active:before {
			background: #34C759;
		}



/*********************************Gaurav************************************/
.Quarter-box {
	display: flex;
	list-style: none;
	padding: 0;
}

	.Quarter-box li {
		margin: 0 15px 0 0;
	}

.red-text {
	color: #FF454E;
	font-size: 12px;
}

.white-box {
	background: #fff;
	padding: 25px 15px;
	border-radius: 8px;
	margin-bottom: 25px;
}

.btn-box-top {
	display: flex;
	justify-content: right;
	margin: 0 0 15px 0;
}

.avatar-edit {
	border: 1px dashed #C0C6C5;
	border-radius: 8px;
	background: #fff url('images/upload.jpg') 75px 7px no-repeat;
	z-index: 1;
	width: 120px !important;
	display: flex;
	align-items: center;
	padding: 4px 4px 4px 12px;
	margin: 0 20px 0 0;
}

	.avatar-edit > input {
		position: relative;
		z-index: 9;
		cursor: pointer;
		border: none;
		text-indent: 999px;
	}

		.avatar-edit > input + label {
			font-size: 14px;
			letter-spacing: 0px;
			color: #8F2340;
			cursor: pointer;
			margin: 0;
			position: absolute;
			font-weight: 500;
		}

.us-list ul {
	border-radius: 5px;
	box-shadow: 0 5px 9px 0 #cfd3dc;
	background: #fff;
	width: 180px;
	position: absolute;
	right: 0;
	top: 40px;
	z-index: 99;
	list-style: none;
	padding: 0;
	display: none;
}

	.us-list ul li a {
		padding: 10px 15px;
		display: block;
		color: #3C4946;
		border-bottom: 1px solid #cfd3dc;
	}

	.us-list ul li:last-child a {
		border: none;
		color: #1d88d6;
	}

	.us-list ul li:last-child {
		background: #ecf5fb;
		border-radius: 0 0 5px 5px;
	}

.us-list::after {
	content: "";
	position: absolute;
	right: 0;
	top: 6px;
	background: url(../images/arrow-icon.png) 0 0 no-repeat;
	width: 14px;
	height: 7px;
}

.us-list {
	position: relative;
	padding: 0 25px 0 0;
	cursor: pointer;
}

.user-manual {
	margin: 0 15px 0 0;
}

.btn.fm-btn.btn-download {
	background: url('images/Download.jpg') 90px 7px no-repeat;
	min-width: 130px;
	text-align: left;
	border: 1px solid #229D80;
	color: #229D80;
}

.border-tr {
	border-bottom: 2px solid #fff
}

.Customer-Sales-TBL th {
	text-align: center;
}

.Customer-Sales-TBL td {
	text-align: right;
}

	.Customer-Sales-TBL td:nth-child(1) {
		text-align: left;
	}

.Customer-Sales-TBL .border-tr th:nth-child(4) {
	border-left: 2px solid #fff;
	border-right: 2px solid #fff;
}
/*********************************Gaurav************************************/


/*********************************15-may-2023************************************/
.total-po-box .table {
	margin: 0;
}

.PO-achievement-graph .chart-det .color-b {
	margin: 0 10px 0 0;
}

.PO-achievement-graph .chart-det table tr td {
	display: flex;
}

.PO-achievement-graph .card.wb-card h4.crd-head {
	font-size: 20px;
}

.PO-achievement-graph .card.wb-card {
	border-radius: 8px;
}

.data-sec table td input[type="checkbox"] {
	width: auto;
}

.tbl-number-right th {
	text-align: right;
}

.tbl-number-right td {
	text-align: right;
}

.tbl-number-right th:nth-child(1) {
	text-align: left;
}

.tbl-number-right td:nth-child(1) {
	text-align: left;
}

.tbl-number-right th:nth-child(2) {
	text-align: left;
}

.tbl-number-right td:nth-child(2) {
	text-align: left;
}

.tbl-number-right th:last-child {
	text-align: left;
}

.tbl-number-right td:last-child {
	text-align: left;
}

.data-sec .tbl-number-right td, .accordion .tbl-number-right th {
	min-width: inherit;
}

.view-d {
	color: #229D80;
}

.search-top {
	display: inline-block;
	vertical-align: top;
	width: 100%;
	margin: 0 0 15px 0;
}

	.search-top input {
		width: 379px;
		float: right;
		border: 1px solid #C0C6C5;
		border-radius: 4px;
		height: 40px;
		background: #fff url('images/search-icon.png') 10px 12px no-repeat;
		padding: 0 10px 0 30px;
	}

.right-vlue {
	text-align: right;
}
/*********************************15-may-2023************************************/
.dben-select td select {
	max-width: 250px;
}

.bg-gray {
	background-color: #F9FAFC;
}

.sm-text {
	font-size: 12px;
}

.td-white td {
	background-color: #fff;
}

.lod-sec {
	display: none;
}

	.lod-sec.show {
		display: block;
	}

.pagination-sec .page-link {
	border: 0;
	background: #e1f3ef00;
	margin: 0 7px;
	padding: 0;
	color: #000000;
	width: 22px;
	height: 22px;
	line-height: 22px;
	text-align: center;
	font-size: 12px;
	font-weight: 600;
	border-radius: 100%;
	outline: 0;
	box-shadow: none;
}

	.pagination-sec .page-link.active {
		background: #E1F3EF;
		color: #229D80;
	}

.pagination-sec .page-item:first-child .page-link, .pagination-sec .page-item:last-child .page-link {
	border-radius: 100%;
	background-color: transparent;
	color: #000;
}

#bankInfo .modal-dialog {
	max-width: 400px;
}

#bankInfo .close-popup {
	width: 26px;
	height: 26px;
	background: url(images/iclick-close.png) left top no-repeat;
	right: -11px;
	top: -13px;
	z-index: 3;
	display: block;
	position: absolute;
}

#bankInfo .iclick-header {
	height: 126px;
	background: url(images/iclick-header.png) left top no-repeat;
	position: relative;
	background-size: cover;
}

	#bankInfo .iclick-header .iclick-arrow-icon {
		background: url(images/iclick-header-icon.png) left top no-repeat;
		height: 93px;
		width: 93px;
		display: block;
		position: absolute;
		left: 50%;
		bottom: 0;
		z-index: 2;
		background-size: cover;
		transform: translate(-50%, 30%);
	}

#bankInfo .iclick-subheader {
	padding: 25px 0 10px;
	background: #f0f0f0;
	z-index: 6;
	position: relative;
	text-align: center;
}

.iclick-listing {
	border-bottom: 2px solid #f0f0f0;
	padding: 10px 10px;
}

	.iclick-listing img {
		width: 25px;
		margin-right: 10px;
	}

	.iclick-listing span {
		display: block;
		font-weight: 600;
		margin-left: 5px;
	}

.popup-inner-btn .bnk-btn {
	border: 1px solid #229D80;
	border-radius: 8px;
	min-width: 110px;
	font-size: 14px;
	font-weight: 500;
	padding: 0.59rem 0.75rem;
	color: #fff;
	box-shadow: none;
	background-color: #229D80;
}

.upload-sec {
	display: none;
}

	.upload-sec.active {
		display: block;
	}

span.indicator {
	display: inline-block;
	width: 23px;
	height: 23px;
	border-radius: 100%;
}

	span.indicator.red {
		background-color: #FF454E;
	}

	span.indicator.yellow {
		background-color: #F0AB16;
	}

	span.indicator.green {
		background-color: #229D80;
	}

.form-sec .fm-group input {
	outline: 0;
	box-shadow: none;
	padding: 9px 8px 9px 8px;
	border: 1px solid #ccc;
	border-radius: 8px;
	width: 100%;
}

	.form-sec .fm-group input::placeholder {
		color: #212529;
		opacity: 1;
	}

	.form-sec .fm-group input::-webkit-input-placeholder {
		color: #212529;
		opacity: 1;
	}

.form-sec .fm-group textarea::placeholder {
	color: #212529;
	opacity: 1;
}

table.dataTable > thead > tr > th, table.dataTable > thead > tr > td {
	border-bottom: 0px solid rgb(255 255 255 / 0%) !important;
}


.dataTables_paginate a {
	border: 1px solid #dee2e6;
	border-radius: 8px;
	margin: 0 4px;
	padding: 8px 15px;
	cursor: pointer;
	color: #515454;
	background: #fff;
}

.dataTables_wrapper .dataTables_paginate a.paginate_button.current {
	color: #fff !important;
	background-color: #1d768b !important;
	border: none !important;
}

.dataTables_paginate {
	float: right;
	text-align: right;
	margin: 0px 0 0 0;
}

	.dataTables_paginate .previous::before {
		content: '\f100';
		font-family: 'FontAwesome';
		padding: 0 6px 0 0;
	}

	.dataTables_paginate .next::after {
		content: '\f101';
		font-family: 'FontAwesome';
		padding: 0 0 0 6px;
	}




.sorting::after {
	content: "\f105" !important;
	font-family: "FontAwesome";
	margin: 5px 0 0 10px;
	transform: rotate(90deg);
	display: inline-block !important;
	vertical-align: top;
	color: #333 !important;
	opacity: 1 !important;
	font-size: 16px !important;
	position: absolute !important;
	top: 12px !important;
	right: 2px !important;
}

.sorting_desc::after {
	content: '\f105' !important;
	font-family: 'FontAwesome';
	margin: 5px 0 0 10px;
	transform: rotate(90deg);
	display: inline-block !important;
	vertical-align: top;
	color: #333 !important;
	opacity: 1 !important;
	font-size: 16px !important;
	position: absolute !important;
	top: 12px !important;
	right: 2px !important;
}

.sorting_desc::after {
	content: '\f105' !important;
	font-family: 'FontAwesome';
	margin: 5px 0 0 10px;
	transform: rotate(90deg);
	display: inline-block !important;
	vertical-align: top;
	color: #333 !important;
	opacity: 1 !important;
	font-size: 16px !important;
	position: absolute !important;
	top: 12px !important;
	right: 2px !important;
}

.sorting_asc::after {
	content: '\f105' !important;
	font-family: 'FontAwesome';
	margin: 5px 0 0 10px;
	transform: rotate(-90deg);
	display: inline-block !important;
	vertical-align: top;
	color: #333 !important;
	opacity: 1 !important;
	font-size: 16px !important;
	position: absolute !important;
	top: 12px !important;
	right: 2px !important;
}

.sorting::before {
	display: none !important;
}

.sorting_desc::before {
	display: none !important;
}

.sorting_asc::before {
	display: none !important;
}

div#assetBody_length {
	margin-bottom: 6px;
}

div#pilotBody_length {
	margin-bottom: 6px;
}

h5.page-heading {
	margin-bottom: 2px;
}

/* table td img {
    filter: grayscale(5);
} */
/*********************************price-management-tbl CSS****************************/
.price-management-tbl th:first-child, .price-management-tbl td:first-child {
	min-width: 90px !important;
	width: 90px !important;
	position: sticky !important;
	left: 0;
	background: #EBF0F4;
	z-index: 9;
}

.price-management-tbl th:nth-child(2), .price-management-tbl td:nth-child(2) {
	min-width: 115px;
	width: 115px !important;
	position: sticky !important;
	left: 110px;
	background: #EBF0F4;
	z-index: 9;
}

.price-management-tbl th:nth-child(3), .price-management-tbl td:nth-child(3) {
	min-width: 42px;
	width: 42px !important;
	position: sticky !important;
	left: 245px;
	background: #EBF0F4;
	z-index: 9;
}

.price-management-tbl th:nth-child(4), .price-management-tbl td:nth-child(4) {
	min-width: 75px;
	width: 75px !important;
	position: sticky !important;
	left: 307px;
	background: #EBF0F4;
	z-index: 9;
}

.show-btn-wrap {
	position: absolute;
	right: 0;
	width: 11% !important;
}

.price-m-box {
	position: relative;
}

.fm-group.upload-box {
	border: 1px dashed #1d768b;
	height: 35px;
	border-radius: 8px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
}

.upload-box label {
	margin: 0 !important;
}

.upload-box #fileExcelUpload {
	position: absolute;
	z-index: 9;
	cursor: pointer;
	border: none;
	text-indent: 999px;
	left: 0;
	padding: 0;
}
/*********************************price-management-tbl CSS****************************/
.dataTables_length {
	margin: 0 0 10px 0;
}

.download-excel {
	position: absolute;
	right: 0;
	top: -10px;
	z-index: 8;
}

.mapUserPop .modal-header {
	color: #fff;
	text-align: center;
	background: #1d768b;
	display: inline-block;
}

.mapUserPop table {
	width: 100%;
}

	.mapUserPop table td {
		border-bottom: 1px solid #e0e0e0;
		padding: 10px 25px;
	}

button.btn-close {
	position: absolute;
	right: 20px;
	top: 20px;
}

.mapUserPop .modal-body {
	padding: 8px 0;
}

.mapUserPop table tr:last-child td {
	border: none;
}

.modal-dialog.modal-dialog-centered.mapUserPop {
	max-width: 500px !important;
	margin: 4px 0;
}

.announce-card {
	max-height: 398px;
	overflow: hidden;
}

	.announce-card marquee {
		height: 95%;
	}

#filter-sec {
	display: none;
}

.dash-card {
	background: #FFFFFF;
	box-shadow: 0px 4px 8px rgba(0, 40, 126, 0.12);
	border-radius: 8px;
	padding: 20px 20px;
	border-left: 3px solid #86CFBE;
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
}

	.dash-card h3 {
		font-size: 20px;
		font-weight: 700;
		color: #000;
		margin-bottom: 0;
	}

	.dash-card p {
		font-size: 14px;
		color: #747678;
		font-weight: 400;
		margin-bottom: 10px;
	}

	.dash-card h5 {
		font-size: 14px;
		color: #101F1F;
		font-weight: 600;
		margin-bottom: 4px;
	}

	.dash-card span.status {
		padding: 7px 22px;
		background: rgba(255, 255, 255, 0.32);
		/* Shadow */
		box-shadow: 0px 2px 10px rgba(124, 141, 181, 0.12);
		border-radius: 16px;
		font-weight: 400;
		font-size: 12px;
		font-family: 'Poppins', sans-serif;
		position: relative;
	}

		.dash-card span.status:before {
			content: '';
			position: absolute;
			left: 13px;
			top: 50%;
			transform: translateY(-50%);
			width: 5px;
			height: 5px;
			border-radius: 100%;
		}

		.dash-card span.status.inactive:before {
			background: #FF454E;
		}

		.dash-card span.status.active:before {
			background: #34C759;
		}



/*********************************Gaurav************************************/
.Quarter-box {
	display: flex;
	list-style: none;
	padding: 0;
}

	.Quarter-box li {
		margin: 0 15px 0 0;
	}

.red-text {
	color: #FF454E;
	font-size: 12px;
}

.white-box {
	background: #fff;
	padding: 25px 15px;
	border-radius: 8px;
	margin-bottom: 25px;
}

.btn-box-top {
	display: flex;
	justify-content: right;
	margin: 0 0 15px 0;
}

.avatar-edit {
	border: 1px dashed #C0C6C5;
	border-radius: 8px;
	background: #fff url('images/upload.jpg') 75px 7px no-repeat;
	z-index: 1;
	width: 120px !important;
	display: flex;
	align-items: center;
	padding: 4px 4px 4px 12px;
	margin: 0 20px 0 0;
}

	.avatar-edit > input {
		position: relative;
		z-index: 9;
		cursor: pointer;
		border: none;
		text-indent: 999px;
	}

		.avatar-edit > input + label {
			font-size: 14px;
			letter-spacing: 0px;
			color: #8F2340;
			cursor: pointer;
			margin: 0;
			position: absolute;
			font-weight: 500;
		}

a.btn.fm-btn.btn-bg.ad-btn {
	min-width: inherit;
	font-size: 20px;
	font-weight: 600;
	padding: 2px 15px;
	margin: 0 0 0 5px;
}

.btn.fm-btn.btn-bg.ad-btn {
	min-width: inherit;
	font-size: 20px;
	font-weight: 600;
	padding: 2px 15px;
	margin: 0 5px 0 5px;
}

span.error {
	color: red;
	display: inline-block;
	margin-top: 5px;
	font-size: 12px;
}

.form-sec .price-m-box .fm-group {
	width: 21%;
}

.price-management-tbl th {
	padding: 0.5rem 0.5rem !important;
}


.disabled-link {
	pointer-events: none;
	opacity: 0.5;
}

.d-flex .switch {
	margin: 0 10px 0 0;
}

.switch {
	position: relative;
	display: inline-block;
	width: 50px !important;
	height: 20px;
	margin: 0 0 0 auto;
}

	.switch input {
		display: none;
	}

	.switch .slider {
		position: absolute;
		cursor: pointer;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background-color: #EBEBEB;
		-webkit-transition: .4s;
		transition: .4s;
	}

	.switch input:checked + .slider {
		background-color: #2cd93e;
	}

	.switch .slider.round {
		border-radius: 34px;
	}

	.switch .slider:before {
		position: absolute;
		content: "";
		height: 18px;
		width: 18px;
		left: 1px;
		bottom: 1px;
		background-color: #FFFFFF;
		-webkit-transition: .4s;
		transition: .4s;
	}

	.switch input:checked + .slider:before {
		-webkit-transform: translateX(31px);
		-ms-transform: translateX(31px);
		transform: translateX(31px);
		left: -10px;
		background: #fff;
	}

	.switch .slider.round:before {
		border-radius: 50%;
	}

.modal-content {
	border: none;
}

.modal-header {
	color: #fff;
	text-align: center;
	background: #1d768b;
	display: inline-block;
	padding: 6px 10px;
}

	.modal-header .btn-close {
		position: absolute;
		right: -4px;
		top: -4px;
		background-color: #fff;
		opacity: 1;
		color: #000;
		border-radius: 100%;
		height: 13px;
		width: 13px;
	}

#tableUserTerritory th:nth-child(5) {
	width: 260px !important;
}

#tableUserTerritory td br {
	display: none;
}

/**********************Heat Map****************************/

span.rf-btn {
	background: #ef3b33;
	padding: 6px 10px;
	color: #fff;
	border-radius: 100px;
	margin: 3px 0 !important;
}

.mp-tiles {
	display: flex;
	flex-wrap: wrap;
	padding: 8px 0;
}

.tile-box {
	height: 45px;
	width: 16%;
	color: #fff;
	background-color: #1b3f34;
	font-size: 10px;
	text-align: center;
	font-weight: bold;
	border-radius: 7px;
	padding: 5px;
	line-height: 1.3;
	display: flex;
	flex-flow: column wrap;
	justify-content: center;
	margin: 2px 5px 2px 0;
}

	.tile-box:hover {
		transform: scale(1) !important;
	}

	.tile-box span {
		color: #fff;
		font-size: 12px;
		font-weight: bold;
		display: block;
		line-height: 1.3;
	}

	.tile-box p {
		margin: 0;
	}

	.tile-box.green-box {
		background-color: #517933;
	}

	.tile-box.orange-box {
		background-color: #f37c0e;
	}

	.tile-box.red-box {
		background-color: #ef3e33;
	}

	.tile-box.grey-box {
		background-color: #BBBBBB;
	}

p.CaptionCont.SelectBox.search {
	padding: 0.3rem 2.25rem 0.3rem 0.75rem;
	border: 1px solid #ccc;
	border-radius: 8px;
	font-size: 14px;
	max-height: 33px;
}

.SumoSelect > .CaptionCont > span.placeholder {
	color: #262626;
	font-style: inherit;
}

.SumoSelect .select-all {
	padding: 1px 0 3px 35px;
	height: 23px;
}

.fm-group .SumoSelect {
	width: 100%;
	max-height: 33px;
	height: 32px;
}

th.tablesorter-header:not(.sorter-false) .tablesorter-header-inner::after {
	content: '\f105' !important;
	font-family: 'FontAwesome';
	margin: 5px 0 0 10px;
	transform: rotate(-90deg);
	display: inline-block !important;
	vertical-align: top;
	color: #333333 !important;
	opacity: 1 !important;
	font-size: 16px !important;
	position: absolute !important;
	top: -4px;
	right: -10px;
}

th.tablesorter-header {
	background-image: none !important;
	position: relative;
}

	th.tablesorter-header:not(.sorter-false) {
		cursor: pointer
	}

.tablesorter-header-inner {
	width: fit-content;
	position: relative;
	margin-right: 8px
}

th.tablesorter-header.tablesorter-headerAsc .tablesorter-header-inner:after {
	content: '\f105' !important;
	margin: 5px 0 0 10px;
	transform: rotate(-90deg);
}

th.tablesorter-header.tablesorter-headerDesc .tablesorter-header-inner:after {
	content: '\f105' !important;
	transform: rotate(90deg);
}

.button.btn.fm-btn.btn-red� {
	background: #a30000;
	border: 1px solid #a30000;
}
/* Style for the autocomplete dropdown */
.autocomplete-dropdown {
	position: absolute;
	margin: 0 10px 10px 0;
	width: 23%;
	max-height: 150px;
	overflow-y: auto;
	border: 1px solid #ccc;
	background-color: #fff;
	z-index: 1000;
	display: none;
	border-radius: 8px;
	font-size: 14px;
	padding: 0.3rem 2.25rem 0.3rem 0.75rem;
	box-shadow: none;
	outline: 0;
}

.autocomplete-item {
	padding: 5px;
	cursor: pointer;
}

	.autocomplete-item:hover {
		background-color: #f2f2f2;
	}

.w--32 {
	width: 32% !important;
}

.w--18 {
	width: 16% !important;
}

button.btn.fm-btn.btn-red� {
	background: #a30000;
	border: 1px solid #a30000;
}

.form-sec .fm-group.upload-box label.form-label {
	width: 80%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}



/* last New Screen Mukul */

.data-sec table.assetrefnd td select {
	font-size: 13px;
	padding: 2px 6px;
	min-width: 110px;
}

.data-sec table.assetrefndsec td {
	min-width: 80px;
}

	.data-sec table.assetrefndsec td:first-child {
		min-width: 130px;
	}

table.assetrefndsec td img {
	filter: grayscale(0);
}

.data-sec table.assetrefndsec td input {
	padding: 3px 4px;
	min-width: 90px;
	max-width: 120px;
	line-height: 16px;
	height: 30px;
	font-size: 13px;
	width: 100%;
}

.data-sec table.assetrefndsec td span.green {
	background-color: #1e9600;
	border-color: #1e9600;
	color: #fff;
}

.notUser-sec {
	min-height: 90vh;
	display: flex;
	justify-content: center;
	align-items: center;
}

	.notUser-sec h2 {
		font-size: 22px;
		color: #4e4e4e;
	}

.li-img img {
	width: 50px;
	height: 50px;
}

.dataTables_wrapper .dataTables_length select {
	border: 1px solid #c6f2ff;
	background-color: #c6f2ff;
}

.btn.fm-btn.filter-btn {
	min-width: 95px;
	color: #1d768b;
	border-color: #1d768b;
}

.card.wb-card .card-header {
	display: flex;
	background-color: #fff;
	border: 0;
	justify-content: flex-end;
}

.card.wb-card.awCard {
	box-shadow: 0px 4px 8px -2px #1018281A;
}

.awCard .card-body {
	padding: 6px 0px;
}

.awCard .form-sec {
	padding: 10px 20px 0px 20px;
	border-top: 1px solid #EAECF0;
}

.btn.fm-btn.filter-btn.active {
	background: #1d768b;
	color: #fff;
	border-color: #1d768b;
}

.form-sec .fm-group .fm-coll {
	border: 1px solid #ccc;
	border-radius: 8px;
	color: #707070;
	padding: 3px 8px;
}

	.form-sec .fm-group .fm-coll label.form-label {
		font-size: 14px;
		font-weight: 600;
		color: #2c2c2cd6;
		margin-left: 0px;
		margin-bottom: 0px;
	}

	/*.form-sec .fm-group input.form-control {
	padding: 4px 0 0px;
	border: none;
	color: #333333;
	font-weight: 600;
}*/

	.form-sec .fm-group .fm-coll select.form-select {
		border: none;
		color: #222222;
		font-weight: 600;
		padding: 4px 0 0px;
	}

button.btn.fm-btn.btn-bg.btn-big {
	padding: 10px 8px;
	min-width: 119px;
}

#tblCFDrawDownRequest .green-checkboxwrapper.d-flexm .c-frm {
	margin: 0 5px 0 0;
	left: 124px;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}

td.d-flexm br {
	display: none;
}

div.dataTables_length {
	padding-left: 10px;
	margin-top: 6px;
}

div.dataTables_info {
	padding-left: 10px;
}

.dataTables_wrapper .dataTables_info {
	clear: inherit;
	float: none;
	padding-top: 5px;
}

.groupInfoPageLen {
	display: flex;
	justify-content: flex-end;
	align-items: center;
}

.fm-group .SumoSelect {
	max-height: 42px;
	height: 42px;
}

p.CaptionCont.SelectBox.search {
	padding: 9px 8px 9px 8px;
	max-height: 42px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
	padding: 4px 10px;
}

.dataTables_paginate .previous::before {
	content: '\f104';
	font-family: 'FontAwesome';
	padding: 0 6px 0 0;
	font-size: 20px;
	position: absolute;
	left: 61%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.dataTables_paginate .next::after {
	content: '\f105';
	font-family: 'FontAwesome';
	padding: 0 0 0 6px;
	font-size: 20px;
	position: absolute;
	left: 40%;
	top: 50%;
	transform: translate(-50%, -50%);
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous, .dataTables_wrapper .dataTables_paginate .paginate_button.next {
	background: #d6f3fb !important;
	font-size: 0px;
	width: 30px;
	padding: 14px 0px;
	line-height: 0;
	top: -5px;
	position: relative;
	color: #1D768B !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover {
	color: #ffffff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.previous.disabled, .dataTables_wrapper .dataTables_paginate .paginate_button.next.disabled {
	background: #e5faff !important;
	color: #666 !important;
}

.dataTables_wrapper .dataTables_info {
	font-size: 14px;
	font-weight: 500;
	padding: 0 10px 0 0;
}

div#assetBody_length {
	margin-bottom: 6px;
	font-weight: 500;
}

div#pilotBody_length {
	margin-bottom: 6px;
	font-weight: 500;
}

div#filterSec {
	display: none;
}

span.fm-group.upload-box {
	min-width: 100px;
	display: flex !important;
	height: 29px;
}

	span.fm-group.upload-box input {
		position: absolute;
		z-index: 9;
		cursor: pointer;
		border: none;
		text-indent: 999px;
		left: 0;
		padding: 0;
	}

	span.fm-group.upload-box label {
		display: -webkit-box;
		-webkit-line-clamp: 1;
		-webkit-box-orient: vertical;
		white-space: normal;
		overflow: hidden;
		text-overflow: ellipsis;
	}

ul.tb-list {
	padding: 0;
}

	ul.tb-list li {
		list-style: none;
		margin: 5px 0;
	}

		ul.tb-list li a {
			text-decoration: none;
		}

			ul.tb-list li a:hover {
				text-decoration: underline;
			}

.mapping-modal-wrap .form-sec .fm-group {
	width: 31%;
}

.mapping-modal-wrap .form-sec .btnAddMapping-box {
	width: 100% !important;
	text-align: center;
}

.mapUserPop .SumoSelect {
	width: 100% !important;
}

.mapUserPop table td:nth-child(1) {
	min-width: 200px;
	width: 200px;
}

#invoiceListTable th:nth-child(5) {
	min-width: 65px;
}

#assetPriceBody th, #assetPriceBody td {
	padding: 8px 10px !important;
}

.refundDetail .fm-group.text-end {
	padding: 15px 0;
}

.mapping-modal-wrap .form-sec .fm-group.w-50 {
	width: 48% !important;
}

.modal .form-sec .fm-group select.form-select {
	padding: 9px 30px 9px 8px;
}
/***********************New css 8 Feb*************************/
.fuel-tbl-wrap th:nth-child(13) {
	min-width: 90px;
}

.upload-Card {
	padding: 15px 0 8px 10px;
}

.fuel-box-top {
	position: relative;
}

.right-box {
	float: right;
	position: absolute;
	right: 15px;
	top: -4px;
}

.fuel-popup h5 {
	padding: 0 0 5px 0;
}

.fuel-popup .fm-group {
	width: 100%;
	margin: 0 0 15px 0;
}

.fuel-popup button.btn.fm-btn.btn-bg {
	float: right;
}

.fuel-popup .modal-dialog {
	max-width: 500px;
}

#transactionTable_wrapper table tr th:nth-child(5) {
	min-width: 135px !important;
}

#transactionTable_wrapper table tr th:nth-child(6) {
	min-width: 225px !important;
}

#transactionTable_wrapper table tr th:nth-child(12) {
	min-width: 90px !important;
}

.map-box {
	float: left;
	width: 60%;
	height: 400px;
}

.heat-tbl-box {
	float: left;
	width: 39%;
	margin-right: 1%;
}

	/*	.heat-tbl-box .dataTables_scrollBody {
		overflow-x: hidden !important;
	}*/

	.heat-tbl-box .groupInfoPageLen {
		margin: 6px 0 0 0;
	}

.tile-box:last-child {
	padding: 0px !important;
}

.bookingSec.login-wrap {
	max-width: 420px;
	margin: 0 auto;
	width: 100%;
	min-height: inherit;
	padding: 30px 15px;
	background:#fff;
	border-radius:10px;
}
.bookMain {
	background: #EBEBEB;
	padding: 60px 0 0;
	color: #101F1F;
	min-height: 100vh;
}
.login-wrap .formGroup {
	margin: 15px 0 0 0;
	display: inline-block;
	width: 100%;
}
	.login-wrap .formGroup input.form-control {
		background: #FBFCFF;
		border-radius: 12px;
		border: 1px solid #F1F5FF;
		height: 48px;
	}
.login-wrap .btn.bookbtn {
	margin: 15px 0 0 0;
	line-height: 38px;
	border-radius: 12px;
	font-weight: 500;
	color: #fff;
	background: #3683AB;
	font-size:16px;
	width:100%;
}

.fm-group.Marketing-auto-scroll {
	width: 35% !important;
}

.Marketing-auto-scroll p {
	padding: 15px;
	border: 1px solid #ccc;
	border-radius: 8px;
	overflow: auto;
	max-height: 95px;
	margin: 0;
}