html,
body {
	margin: 0px;
	padding: 0px;
	width: 100%;
	min-height: 100%;
}

body {
	font-family: "Manrope", sans-serif;
	color: #161824;
	font-weight: normal;
	font-style: normal;
	font-size: 12px;
	background: #F7F7F7;
}

a,
a:link,
a:visited {
	outline: none;
	text-decoration: none;
	-moz-tap-highlight-color: transparent;
	-webkit-tap-highlight-color: transparent;
	display: inline-block;
	font-family: "Manrope", sans-serif;
}

img {
	border: none;
	margin: 0px;
	max-width: 100%;
}


h1 {
	font-weight: bold;
	font-size: 28px;
	margin: 0px;
	padding: 0px;
}

h2 {
	font-weight: 700;
	font-size: 24px;
	margin: 0px;
	padding: 0px;
}

h3 {
	font-size: 20px;
	font-weight: 500;
	line-height: 32px;
	color: #1E1E1E;
	margin: 0px;
	padding: 0px;
}

h4 {
	font-size: 24px;
	font-weight: 700;
	line-height: 38.4px;
	margin: 0px;
	padding: 0px;
}

h5{
	font-size: 20px;
	font-weight: 500;
	line-height: 32px;
	margin: 0px;
	padding: 0px;
}

h6 {
	font-size: 18px;
	margin: 0px;
	padding: 0px;
	font-weight: 700;
}

form,
input,
select,
textarea,
p {
	margin: 0px;
	padding: 0;
	box-sizing: border-box;
	font-family: "Manrope", sans-serif;
}

textarea {
	resize: none;
}

input:focus,
textarea:focus {
	outline: none;
}

input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time {
	display: block;
	margin: 0px;
	padding: 0;
}

button {
	font-family: "Manrope", sans-serif;
}

/*IE below 9*/
#ieWrapper {
	background: #000;
	position: fixed;
	z-index: 100;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

.ieHolder {
	position: relative;
	width: 555px;
	padding: 20px;
	margin: 200px auto 0 auto;
	background: var(--white-color);
	border: 7px solid #2b2927;
}

.btnIeUpdate {
	background: url(../images/btnIeUpdate.jpg) 0 0 no-repeat;
	width: 144px;
	height: 37px;
	position: absolute;
	right: 20px;
	bottom: 20px;
	color: var(--white-color);
	line-height: 37px;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 13px;
}

.ieLogo {
	float: left;
	width: 134px;
	height: 139px;
	background: url(../images/ieLogo.jpg) no-repeat 0 0;
}

.ieContent {
	float: right;
	margin: 0;
	padding: 0;
	width: 350px;
	color: #666;
	font-size: 15px;
	line-height: 18px;
}

.ieContent strong {
	margin: 0 0 15px 0;
	padding: 0 0 10px 0;
	border-bottom: 1px dashed #cccccc;
	display: block;
	font-size: 18px;
	color: #333;
	font-weight: normal;
}

/*End IE below 9*/


:root {
	--white-color: #FFFFFF;
	--primary-color: #93C04E;
	--primary-btn-hover: #84ae43;
	--font-color: #000000;
	--label-color: #A9A9A9; 
	--label-color-input : #0C1116;
}

.flex {
	display: flex;
}

.flex-center {
	align-items: center;
}

.flex-end {
	align-items: flex-end;
}

.flex-between {
	justify-content: space-between;
}

.flex-j-center {
	justify-content: center;
}

.flex-wrap {
	flex-wrap: wrap;
	row-gap: 10px;
}

.text-center {
	text-align: center;
}

.bg-white {
	background-color: var(--white-color);
	border-radius: 8px;
}

.auth-btn{
	background-color: var(--primary-color);
	width: 100%;
	font-size: 18px;
	font-weight: 600;
	line-height: 21px;
	letter-spacing: -0.006em;
	border: none;
	outline: none;
	padding: 17px 20px;
	color: var(--white-color);
	cursor: pointer;
	border-radius: 6px;
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.primary-btn{
	background-color: var(--primary-color);
	font-size: 14px;
	font-weight: 500;
	line-height: 21px;
	letter-spacing: -0.006em;
	border: none;
	outline: none;
	padding: 10px 25px;
	color: var(--white-color);
	cursor: pointer;
	border-radius: 6px;
	width: auto;
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.secondary-btn {
	background-color: var(--white-color);
	border: 1px solid var(--primary-color);
	padding: 10px 35px;
	border-radius: 7px;
	font-size: 16.8px;
	font-weight: 500;
	line-height: 25.2px;
	letter-spacing: -0.006em;
	color: var(--primary-color);
	box-sizing: border-box;
	display: inline-flex !important;
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.search-btn {
    padding: 10px;
    height: 50px;
    width: 50px;
	min-width: 50px;
    box-sizing: border-box;
    margin-left: 10px;
}

.secondary-btn img {
	width: 20px;
	height: 20px;
	object-fit: contain;
	margin-right: 9px;
}

.primary-btn:hover,
.auth-btn:hover {
	background-color: var(--primary-btn-hover);
}

.secondary-btn:hover,
.secondary-btn.active {
	background-color: #93C04E33;
}

/* Authentication Page  */

.auth-page .logo-col img {
	width: 330px;
	height: 100px;
	object-fit: contain;
}

.auth-page h2 {
	font-size: 42px;
	font-weight: 700;
	line-height: 67.2px;
	color: var(--white-color);
	text-align: center;
	padding-bottom: 30px;
}

.auth-page .auth-form .auth-btn  {
	margin-top: 30px;
}

.auth-page {
	min-height: 100vh;
	background: linear-gradient(106.54deg, #121212 1.01%, #1F1F1F 76.38%);
}

.auth-page .auth-form {
	margin-left: 180px;
	padding: 70px 50px;
	/* background: #0F0F0F33; */
	max-width: 495px;
	width: 100%;
	box-sizing: border-box;
	background-image: radial-gradient(circle at 100% 100%, transparent 22px, #545454 22px, #545454 23px, transparent 23px), linear-gradient(to right, #545454, #363636), radial-gradient(circle at 0% 100%, transparent 22px, #363636 22px, #363636 23px, transparent 23px), linear-gradient(to bottom, #363636, #363636), radial-gradient(circle at 0% 0%, transparent 22px, #363636 22px, #363636 23px, transparent 23px), linear-gradient(to left, #363636, #6b6b6b), radial-gradient(circle at 100% 0%, transparent 22px, #6b6b6b 22px, #6b6b6b 23px, transparent 23px), linear-gradient(to top, #6b6b6b, #545454);
	background-size: 23px 23px, calc(100% - 46px) 1px, 23px 23px, 1px calc(100% - 46px);
	background-position: top left, top center, top right, center right, bottom right, bottom center, bottom left, center left;
	background-repeat: no-repeat;
	border-radius: 20px;
}

.auth-page .auth-form input {
	background-color: #414141 !important;
	padding: 10px 15px 10px 60px;
	border: none;
	outline: none;
	font-size: 20.4px;
	font-weight: 400;
	line-height: 30.6px;
	letter-spacing: 0.5609999895095825px;
	border-radius: 5px;
	width: 100%;
	box-sizing: border-box;
	color: var(--white-color);
}

.border-gradient {
	position: relative;
	background: rgba(15, 15, 15, 0.2);
	background-clip: padding-box;
	border-radius: 10px;
	padding: 70px 50px;
}

.border-gradient::before {
	content: '';
	position: absolute;
	top: -1%;
	left: -1%;
	margin: auto;
	background: linear-gradient(to bottom right, #22c1c3, #fdbb2d);
	z-index: -1;
	border-radius: 10px;
	width: 102%;
	height: 102%;
}

.auth-page .auth-form .auth-cta {
	font-size: 16px;
	font-weight: 400;
	line-height: 30.6px;
	letter-spacing: 0.5609999895095825px;
	color: var(--white-color);
	text-align: center;
	text-decoration: underline;
	width: 100%;
	display: inline-block;
	margin-top: 25px;
}

.auth-page .auth-form input[type='email'] {
	background: url(../images/icon-mail.svg) 20px no-repeat, var(--white-color);
}

.auth-page .auth-form input[type='password'] {
	background: url(../images/icon-lock.svg) 20px no-repeat, var(--white-color);
	position: relative;
	padding-right: 55px;
}

.auth-page .auth-form input::placeholder {
	color: rgba(255, 255, 255, 0.2);
}

.auth-page .auth-form .form-group {
	position: relative;
	margin-bottom: 25px;
}

.auth-page .auth-form .form-group a {
	position: absolute;
	right: 20px;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 20px;
	height: 20px;
}

.forgot-page h2 {
	font-size: 30px;
	font-weight: 700;
	line-height: 48px;
}

.form-group.form-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-column-gap: 10px;
}

.form-group.form-grid input {
	padding: 0;
	text-align: center;
	height: 50px;
}

.otp-col {
	margin-top: 35px;
}

.otp-col p {
	color: var(--white-color);
	min-width: fit-content;
	font-size: 16px;
	opacity: 0.6;
}

.otp-col a.auth-cta {
	margin-top: 0 !important;
}

.login-text {
	font-weight: 300;
	padding-right: 10px;
}


/* Main Page  */

/* Sidebar  */
.left-container {
	background-color: #212121;
	max-width: 250px;
	width: 100%;
	box-sizing: border-box;
	min-height: 100vh;
	position: fixed;
	left: 0;
	z-index: 2;
	overflow-x: auto;
	height: 100%;
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.left-container::-webkit-scrollbar {
	display: none;
}

.left-container .sidebar-col ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.left-container .sidebar-col ul li a {
	font-size: 16px;
	font-weight: 700;
	line-height: 25.6px;
	text-align: left;
	color: var(--white-color);
	display: inline-flex;
	align-items: center;
	padding: 10px 24px;
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	position: relative;
	margin-bottom: 5px;
	width: 100%;
	box-sizing: border-box;
	position: relative;
}

.left-container .sidebar-col ul li a.dropdown-menu::after {
	position: absolute;
	right: 24px;
	width: 16px;
	height: 16px;
	top: 0;
	bottom: 0;
	margin: auto;
	content: '';
	background: url('../images/icon-arrow-white.svg') no-repeat;
}

.left-container .sidebar-col ul li a.dropdown-menu:hover::after,
.left-container .sidebar-col ul li a.dropdown-menu.active::after {
	background: url('../images/icon-arrow-down.svg') no-repeat;
}

.left-container .sidebar-col ul li ul.submenu li a {
	font-weight: 400;
	font-size: 14px;
	padding-left: 28px;
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	margin-bottom: 0;
}

.left-container .sidebar-col ul li ul.submenu li a:hover,
.left-container .sidebar-col ul li ul.submenu li a.active {
	color: var(--primary-color);
	background-color: transparent;
}

.left-container .sidebar-col ul.submenu li a:hover::before,
.left-container .sidebar-col ul.submenu li a.active::before {
	content: unset;
}

.left-container .sidebar-col ul li ul.submenu {
	opacity: 0;
	visibility: hidden;
	height: 0;
	transition: all .8s ease;
	-webkit-transition: all .4s ease;
}

.left-container .sidebar-col ul li:hover ul.submenu,
.left-container .sidebar-col ul li a.active + ul.submenu{
	height: auto;
	opacity: 1;
	visibility: visible;
}

.left-container .sidebar-col ul li ul.submenu li img {
	width: 15px;
	height: 15px;
	margin-right: 10px;
}

.left-container .sidebar-col ul li a:hover,
.left-container .sidebar-col ul li a.active {
	background-color: #93C04B1A;
	color: var(--primary-color);
}

.left-container .sidebar-col ul li a:hover::before,
.left-container .sidebar-col ul li a.active::before {
	position: absolute;
	right: 0;
	top: 0;
	width: 4px;
	height: 100%;
	content: '';
	background-color: #93C04B;
}

.left-container .sidebar-col ul li a:hover img,
.left-container .sidebar-col ul li a.active img {
	filter: brightness(0) saturate(100%) invert(72%) sepia(40%) saturate(602%) hue-rotate(40deg) brightness(93%) contrast(82%);
}

.left-container .sidebar-col ul li a img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	margin-right: 20px;
}

.left-container .sidebar-col .logo img {
	width: 182px;
	height: 56px;
	object-fit: contain;
}

.left-container .sidebar-col .logo a {
	margin: auto;
	text-align: center;
	padding: 26px 30px;
}

.left-container .sidebar-col {
	position: relative;
}

.left-container.open {
	width: fit-content;
	max-width: 100px;
}

.left-container.open .sidebar-col ul li a span:nth-child(2) {
	display: none;
	visibility: hidden;
	width: 0;
}


/* Right Layout  */
.right-container {
	width: calc(100% - 250px);
	margin-left: auto;
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.header-sec {
	background-color: var(--white-color);
	padding: 16px 40px;
	position: fixed;
	top: 0;
	width: calc(100% - 250px);
	z-index: 1;
	right: 0;
	box-sizing: border-box;
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.header-sec.open,
.right-container.open {
	width: calc(100% - 100px);
}

.header-sec .header-profile .profile {
	padding-left: 20px;
	display: flex !important;
}

.header-sec .header-profile .icon-logout {
	padding-left: 90px;
}

.header-sec .header-profile .profile-detail {
	padding-left: 12px;
}

.header-sec .header-profile .profile-detail h6 {
	font-size: 16px;
	font-weight: 600 !important;
	line-height: 22.4px;
	letter-spacing: -0.4000000059604645px;
	color: #000;
}

.header-sec .header-profile .profile-detail p {
	font-size: 12px;
	font-weight: 400;
	line-height: 16.8px;
	letter-spacing: -0.4000000059604645px;
	color: #7B7B7B;
}


.right-container .main-section {
	padding: 30px 40px;
	margin-top: 80px;
}

 .searchbar input {
	padding: 10px 30px;
	background-color: var(--white-color);
	border: none;
	font-size: 20px;
	font-weight: 400;
	line-height: 30.6px;
	letter-spacing: 0.5609999895095825px;
	border-radius: 5px;
	min-width: 640px;
	width: 100%;
	height: 50px;
}

.main-section .title-sec .searchbar .search-btn{
	padding: 10px;
	height: 50px;
	width: 50px;
	box-sizing: border-box;
	margin-left: 10px;
}

.main-section .title-sec .searchbar input::placeholder {
	color: #B8BECC;
}

/* Dashboard  */

.dashboard-boxes {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	padding-top: 35px;
	grid-column-gap: 20px;
}

.dashboard-boxes .single-box {
	padding: 30px;
	color: var(--white-color);
	border-radius: 8px;
	position: relative;
	overflow: hidden;
}

.dashboard-boxes .single-box h4 {
	font-size: 24px;
	font-weight: 700;
	line-height: 38.4px;
}

.dashboard-boxes .single-box p.total-count {
	font-size: 34px;
	font-weight: 700;
	line-height: 54.4px;
}

.dashboard-boxes .single-box p {
	font-size: 16px;
	font-weight: 700;
	line-height: 25.6px;
}

.dashboard-boxes .single-box .totalbox {
	padding-bottom: 20px;
}

.dashboard-boxes .single-box .commonbox {
	padding-bottom: 16px;
}

.dashboard-boxes .blue-box {
	background: linear-gradient(102.04deg, #70B6F0 3.73%, #2789E3 93.89%);
}

.dashboard-boxes .skyblue-box {
	background: linear-gradient(280.6deg, #5590B3 6.34%, #29B6C6 96.34%);
}

.dashboard-boxes .purple-box {
	background: linear-gradient(102.04deg, #FCAE98 3.73%, #FA8096 93.89%);
}

.dashboard-boxes .green-box {
	background: linear-gradient(102.04deg, #6DD1C7 3.73%, #2DB9A6 93.89%);
}

.dashboard-boxes .single-box::before,
.dashboard-boxes .single-box::after {
	position: absolute;
	content: '';
	width: 145px;
	height: 145px;
	background-color: var(--white-color);
	opacity: 0.2;
	border-radius: 100%;
}

.dashboard-boxes .single-box::before {
	top: -3px;
	left: -45px;
}

.dashboard-boxes .single-box::after {
	bottom: -20px;
	left: -20px;
}

.dashboard-boxes .single-boxv2 {
	display: flex;
	align-items: center;
	justify-content: flex-end;
}

.graph-sec {
	display: grid;
    grid-template-columns: 2fr 1fr;
    margin-top: 40px;
    grid-column-gap: 20px;
}

.graph-sec .sales-graph {
	padding: 45px 40px;
	background-color: var(--white-color);
	border-radius: 8px;
}

.graph-sec .employee-status {
	padding: 45px 25px;
	background-color: var(--white-color);
	border-radius: 8px;
	position: relative;
}


.graph-sec .graph-title {
	border-bottom: 2px solid #ECECEC;
	padding-bottom: 25px;
	margin-bottom: 35px;
}

.sales-graph .revenue span {
	background-color: var(--primary-color);
	width: 24px;
	height: 8px;
	display: inline-block;
	margin-right: 10px;
}

.graph-sec .revenue p {
	font-size: 12px;
	font-weight: 400;
	line-height: 14.52px;
	color: #4F4F4F;
}

.graph-color-codes {
	position: absolute;
	top: 140px;
	right: 25px;
}

.graph-color-codes span {
	width: 24px;
	height: 8px;
	display: inline-block;
	margin-right: 10px;
}

.graph-color-codes .vacation span {
	background-color: #A155B9;
}

.graph-color-codes .e-vacation span {
	background-color: #F765A3;
}

.graph-color-codes .working span {
	background-color: #16BFD6;
}

/* Popup CSS */

.popup-overlay {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #00000040;
	z-index: 3;
	overflow: hidden;
}

.popup-box {
	background-color: var(--white-color);
	position: fixed;
	top: 90px;
	right: 40px;
	width: 100%;
	height: fit-content;
	z-index: 9;
	padding: 40px 30px;
	box-sizing: border-box;
	border-radius: 4px;
	max-height: 90%;
	box-shadow: 0px 24px 25px 0px #00000014;
}

.popup-box.profile-popup {
	max-width: 805px;
}

.popup-box.password-popup {
	max-width: 570px;
}

.popup-body {
	max-height: 600px;
	overflow-x: auto;
	margin-top: 40px;
}

#file-input {
	display: none;
}

.popup-body .profile-img-upload img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 100%;
}

.popup-body .profile-img-upload {
	position: relative;
	width: 165px;
	height: 165px;
	border-radius: 100%;
}

.popup-body .profile-img-upload label {
	font-size: 10px;
	font-weight: 700;
	line-height: 16px;
	cursor: pointer;
	color: var(--white-color);
	text-align: center;
	position: absolute;
	top: 0;
	left: 0;
	margin: auto;
	right: 0;
	bottom: 0;
	z-index: 2;
	width: 100%;
	height: 100%;
	flex-direction: column;
	background-color: #00000040;
	border-radius: 100%;
}

.popup-body .profile-img-upload label img {
	width: 36px;
	height: 36px;
	object-fit: contain;
	border-radius: 0;
}

.popup-box .change-password {
	font-size: 14px;
	font-weight: 400;
	line-height: 22.4px;
	color: #082798;
	margin-top: 20px;
}

.profile-form {
	flex-grow: 1;
	padding-left: 70px;
}

.popup-box .primary-btn {
	margin: auto;
	margin-top: 15px;
}

.view-popup {
	max-width: 1095px;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
}

.modal-close {
	border: 1px solid #EFEFEF;
	width: 48px;
	height: 48px;
	background-color: var(--white-color);
	display: flex !important;
	align-items: center;
	justify-content: center;
	border-radius: 12px;
}

.popup-box .btn-group .primary-btn{
	margin: initial;
    margin-top: 0;
}

.popup-box .btn-group {
	margin-top: 24px;
}

.popup-box-v2 {
	right: 0;
	left: 0;
	margin: auto;
}

.popup-box.reject-popup {
	width: 500px;
	top: unset;
	left: unset;
	bottom: 40px;
	right: 75px;
}

.reject-popup .popup-body {
	margin-top: 15px;
}

.reject-popup textarea {
	min-height: 115px !important;
}

/* Form CSS  */

form {
	width: 100%;
	box-sizing: border-box;
}

.form-group .inp-label {
	font-size: 14px;
	font-weight: 500;
	line-height: 24px;
	padding-bottom: 8px;
	display: inline-block;
	color: var(--label-color-input);
	white-space: nowrap;
}

.form-group .inp-label span {
	color: #D40000;
}

.form-group input,
.country-code label,
.form-group select,
.form-group  textarea {
	border: 1px solid #EFEFEF;
	padding: 10px 16px;
	width: 100%;
	box-sizing: border-box;
	border-radius: 4px;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.4399999976158142px;
	color: #1C1B20;
	min-height: 45px;
	display: inline-block;
}

.form-group textarea { 
	height: 46px;
}

.form-group select {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	outline: none;
	cursor: pointer;
	background: url(../images/icon-down-arrow.svg) no-repeat right 15px center;
    background-size: 16px;
	padding-right: 35px;
	background-color: #fff !important;
}

.form-group select::placeholder,
.form-group select::selection,
.form-group input::placeholder,
.form-group textarea::placeholder {
	color: #8D9091;
}


.form-row.flex .form-group {
	width: 48%;
}

.form-group {
	margin-bottom: 20px;
	position: relative;
}

.country-code {
	position: relative;
	margin-right: 16px;
	cursor: pointer;
}

.country-code label {
	cursor: pointer;
	background: url(../images/icon-down-arrow.svg) no-repeat right 15px center;
    background-size: 16px;
	padding-right: 20px;
	min-width: 85px;
}

.country-code ul {
	position: absolute;
	min-width: 100%;
	margin: 0;
	padding: 0;
	background-color: #fff;
	box-shadow: 0px 24px 25px 0px #00000014;
	list-style-type: none;
	top: 50px;
	font-size: 14px;
	padding: 10px;
	border: 1px solid #EFEFEF;
	border-radius: 4px;
	display: none;
}

.country-code ul li{ 
	cursor: pointer;
	padding: 2px 0;
}

.searchbar {
	position: relative;
	margin-left: 15px;
}

.searchbar .filter-search {
	position: absolute;
	top: 0;
	left: 6px;
	bottom: 0;
	margin: auto;
	width: 180px;
	height: 40px;
	padding: 5px 10px;
	background-color: #EEF1F6 !important;
	font-size: 20.4px;
	font-weight: 400;
	line-height: 30.6px;
	letter-spacing: 0.5609999895095825px;
	border: none;
	outline: none;
	border-radius: 4px;
	cursor: pointer;
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: url(../images/icon-select-arrow.svg) no-repeat right 10px center;
}

.searchbarv2 input{
	padding-left: 210px !important;
}

.search-section {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	grid-gap: 25px 20px;
	margin-top: 30px;
}

.search-section .search-single {
	background-color: var(--white-color);
	padding: 16px;
	border-radius: 8px;
	border: 1px solid #fff;
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.search-section .search-single:hover {
	border-color: #0057DA;
}

.search-section .img-search {
	width: 100px;
	height: 100px;
	object-fit: contain;
}

.search-section  .name-col {
	padding-left: 40px;
}

.search-section  .name-col p {
	font-size: 20px;
	font-weight: 500;
	line-height: 32px;
	color: var(--font-color);
}

.search-section  .name-col p span {
	color: #C2C2C2;
}

.search-section .search-edit {
	display: none;
	visibility: hidden;
	opacity: 0;
}

.search-section .search-single:hover .search-edit {
	display: block;
	opacity: 1;
	visibility: visible;
}

.title-col {
	margin: 25px 0;
}

.title-col-v2 {
	margin-top: 10px;
}

.title-col a {
	display: flex;
	color: var(--font-color);
}

.title-col a h4 {
	margin-left: 16px;
}

.employe-section {
	padding: 30px 20px;
	border-radius: 8px;
}

.detail-col {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	grid-column-gap: 20px;
	grid-row-gap: 25px;
}

.detail-col .employe-details {
	display: grid;
	grid-template-columns:  1fr 2fr;
	align-items: center;
}

.employe-section h5,
.employe-section h6 {
	padding-bottom: 25px;
}

.employe-section h6 {
	font-size: 16px;
}

.detail-col .employe-details label {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: var(--label-color);
	height: fit-content;
}

.detail-col .employe-details p {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.4399999976158142px;
	color: var(--font-color);
}

.detail-col .employe-details p span {
	color: var(--label-color);
	padding-right: 15px;
}

.detail-col .employe-details .document-text {
	align-items: center;
	background-color: #F5FAFF;
	border-radius: 4px;
	padding: 5px;
	color: var(--font-color);
}

.detail-col .employe-details .document-text img {
	width: 16px;
	height: 16px;
	object-fit: contain;
	margin-right: 10px;
}

hr {
	margin: 25px 0;
	background-color: #EFEFEF;
	height: 1px;
	border: none;
}

.detail-col-v2 {
	margin-bottom: 25px;
}

.detail-col .form-group {
	margin-bottom: 0;
}

.employe-sectionv2 {
	margin-top: 25px;
}

.radio-groupv2 {
	margin-top: 30px;
}

.detail-col-grey {
	padding: 12px;
	background-color: #F3F3F3;
	border-radius: 4px;
	padding-bottom: 20px;
}

.inner-inp {
	flex-grow: 1;
}

.employe-section .auth-btn.add-btn{
	padding: 10px;
	height: 46px;
	width: 46px;
	box-sizing: border-box;
	margin-left: 10px;
	display: flex;
}

.employe-section .auth-btn.add-btn img {
	min-width: 28px;
	height: 28px;
	object-fit: contain;
}

.employe-section .delete-btn {
	background-color: #FF5252;
}

.quantify-details {
	max-width: 560px;
	width: 560px;
}

/* RadioButton  */

[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: 0;
	visibility: hidden;
	opacity: 0;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
	font-size: 14px;
	color: #1E1E1E;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    border: 1px solid var(--primary-color);
    border-radius: 100%;
    background: #fff;
	box-sizing: border-box;
}
[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 14px;
    height: 14px;
    background: var(--primary-color);
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
	box-sizing: border-box;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.flex .radio-group .inp-radio {
	margin-right: 12px;
}

.file-upload input {
	position: relative;
	padding-left: 50px;
	color: var(--font-color);
}

.file-upload input::-webkit-file-upload-button {
    visibility: hidden;
	display: none;
}

.file-upload input::before {
	content: 'Select';
    display: inline-block;
    background-color: var(--font-color);
    color: #fff;
    border: none;
    outline: none;
    padding: 5px 30px;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    position: absolute;
    right: 8px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: fit-content;
}

.file-upload input {
	background: url(../images/icon-attach.svg) 20px no-repeat, var(--white-color);	
}

.file-upload input::placeholder {
	color: #8D9091;
}

.radio-inline span {
	padding-right: 15px;
}


/* Date picker */

input[type="date"] {
	appearance: none;
	-moz-appearance: none;
	-webkit-appearance: none;
	background: url(../images/icon-calender.svg) no-repeat right 15px center;
	background-size: 16px;
	cursor: pointer;
}

input[type="date"]::placeholder {
	color: #8D9091;
}

input[type="date"]::-webkit-calendar-picker-indicator {
	opacity:0;
}

/* BreadCrumb  */

.breadcrumb-col a {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.4399999976158142px;
	color: rgb(12 17 22 / 50%);
}

.breadcrumb-col span {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.4399999976158142px;
	color: rgb(12 17 22 / 50%);
	margin: 0 5px;
}

.bike-management {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	align-items: center;
	padding: 30px 10px;
	border-radius: 8px;
	margin-top: 15px;
	margin-bottom: 20px;
}

.bike-management .about-bike p{
	font-size: 20px;
	font-weight: 500;
	line-height: 32px;
	color: var(--label-color-input);
}

.bike-management .about-bike p img {
	width: 24px;
	height: 24px;
	object-fit: contain;
	margin-right: 10px;
}

.bike-management .about-bike h3 {
	font-size: 30px;
	font-weight: 700;
	line-height: 48px;
	color :#021640
}

.bike-management .about-bike {
	border-right: 1px solid #E0E0E0
}

.bike-management .about-bike:last-child {
	border: none;
}

.assign-col {
	padding: 15px 20px;
	border-radius: 8px;
	box-sizing: border-box;
}

.assign-btn-group {
	column-gap: 30px;
	row-gap: 20px;
}

.searchbar-v2 input {
	background-color: #F2F6FA;
	min-width: 480px;
	width: 100%;
	box-sizing: border-box;
}

.searchbar-v2 input::placeholder{ 
	color: #B8BECC;
	font-size: 20.4px;
	font-weight: 400;
	line-height: 30.6px;
	letter-spacing: 0.5609999895095825px;
}

.btn-group {
	margin-top: 50px;
	column-gap: 20px;
}

.cancel-btn {
	padding: 10px 28px;
	border-radius: 6px;
	font-size: 14px;
	font-weight: 500;
	line-height: 21px;
	letter-spacing: -0.006em;
	background-color: #A8AE9C;
	color: var(--white-color);
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.cancel-btn:hover {
	background-color: #8b927c;
}


.upload-col {
	background-color: #F6FBFD;
	border: 1px dashed #CFF1FF;
	margin-top: 25px;
	position: relative;
}

.bulk-upload {
	padding: 30px 20px;
}

.bulk-upload input {
	width: 100%;
	height: 100%;
	min-height: 195px;
	text-align: center;
	color: transparent;
}

.bulk-upload input::-webkit-file-upload-button {
    visibility: hidden;
	display: none;
}

.upload-col label img {
	width: 50px;
	height: 50px;
	object-fit: contain;
}

.upload-col label {
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.4399999976158142px;
    display: inline-block;
    position: absolute;
    width: 100%;
    height: fit-content;
    top: 0;
    bottom: 0;
    margin: auto;
    cursor: pointer;
	color: #8D9091;
}

.upload-col label span {
	color: rgba(0, 88, 219, 0.5);
	text-decoration: underline;
}

.file-name {
	max-width: 1000px;
	width: 100%;
	margin: 45px auto;
}

.file-name .progress-bar {
	width: 100%;
	background-color :#D9D9D9;
	height: 4px;
	border-radius: 6px;
	position: relative;
}

.file-name .progress-bar .current-progress{
	position: absolute;
	left: 0;
	top: 0;
	width: 70%;
	height: 100%;
	background-color: #3679DE;
	border-radius: 6px;
}

.file-name .name-progress {
	flex-grow: 1;
	margin-left: 10px;
}

.file-name .name-progress  p {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: var(--font-color);
	padding-bottom: 2px;
}

.table-filter select {
	color: #1C1B20;
	font-weight: 600;
	min-width: 190px;
}

.common-box {
	padding: 25px 20px;
	border-radius: 8px;
}

.search-btn-v2 {
	background-color: #146ADC1A;
	height: 35px;
	position: absolute;
	right: 7px;
	top: 0;
	bottom: 0;
	margin: auto;
}

.search-btn-v2:hover {
	background-color: #146ADC1A;
}

.table-searchbar {
	min-width: 300px;
}

.table-searchbar::placeholder {
	color: rgba(184, 190, 204, 0.5) !important;
}


/* Table CSS  */
.table-list {
	overflow-y: auto;
	min-height: 250px;
}

.table-list table {
	width: 100%;
	border-spacing: 0px;
}

.table-list table thead {
	background-color: #FBFBFB;
}

.table-list table tr th {
	text-align: left;
	font-size: 12px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.4399999976158142px;
	color: #8D9091;
	padding: 10px 25px;
}

.table-list table tr td {
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	letter-spacing: 0.4399999976158142px;
	text-align: left;
	color: var(--font-color);
	padding: 15px 25px;
}

.table-list table tr td,
.table-list table tr th{
	border-top: 1px solid #EFEFEF;
	white-space: nowrap;
}

.table-list table tr:last-child td {
	border-bottom: 1px solid #EFEFEF;
}

.table-list table span.status {
	border-radius: 33px;
	padding: 2px 10px;
}

.table-list table span.status.available{
	color: #106BE9;
	background-color: #E4ECFF;
}
.table-list table span.status.in-use {
	color: var(--primary-color);
	background-color: #93C04E1A;
}

.table-list table span.status.under-process { 
	color: #FFA438;
	background-color: #FFA4381A;
}

.table-list table span.status.un-mainatence {
	color: #E96B10;
	background-color: #FFEEE4;
}

.table-list table .action-col {
	column-gap: 8px;
}

.table-list table .action-col {
	height: fit-content;
}

.table-list table .action-col a {
	max-height: 32px;
}

.table-list table .action-col img {
	min-width: 32px;
	width: 32px;
	height: 32px;
	box-sizing: border-box;
	object-fit: contain;
}

.table-list table td .generate-btn,
.table-list table td .reject-btn-v2 {
	font-size: 12px;
	line-height: 19px;
	padding: 4px 16px;
}

.table-list table td .disabled {
	opacity: 20%;
	position: relative;
}

.table-list table td .disabled::before {
	position: absolute;
	content: '';
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	background: transparent;
}

.table-list table td .reject-btn-v2 {
	background-color: #FF6F31;
	border-radius: 6px;
	color: var(--white-color);
	margin-left: 16px;
}

.table-filter {
	column-gap: 25px;
}

.table-pagination {
	padding-top: 70px;
}

.table-pagination ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	column-gap: 8px;
}

.table-pagination ul li img {
	width: 12px;
	height: 8px;
	object-fit: contain;
}

.table-pagination ul li a {
	border: 1px solid #DFE3E8;
	border-radius: 4px;
	background-color: var(--white-color);
	min-width: 32px;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	font-weight: 400;
	line-height: 20px;
	color: var(--label-color-input);
}

.table-pagination ul li a.active {
	border-color: var(--label-color-input);
}
 
.back-btn {
	display: inline-flex !important;
	align-items: center;
	color: var(--font-color);
	font-size: 20px;
	font-weight: 500;
	line-height: 32px;
	margin-bottom: 25px;
}

.back-btn img {
	width: 24px;
	min-width: 24px;
	height: 24px;
	object-fit: contain;
	margin-right: 12px;
}  

.view-col {
	grid-template-columns: 1fr 1fr;
}

.total-employees {
	grid-template-columns: repeat(3, 1fr);
}

.employee-head {
	padding-top: 30px;
}

.form-group.inp-disabled input:disabled{
	background-color: #FAFAFA;
	border: 1px solid #EFEFEF;
	color: #0C0C0C;
}

.tab-content {
	display: none;
	opacity: 0;
	transform: translateY(15px);
	animation: fadeIn 0.5s ease 1 forwards;
}

.tab-content.active {
	display: block;
}

@keyframes fadeIn {
	0% {
	  opacity: 0;
	  transform: translateY(-20px); /* Initial position if needed */
	}
	100% {
	  opacity: 1;
	  transform: none;
	}
}
  
.tabs-col {
	margin: 0;
	padding: 0;
	padding-bottom: 15px;
	margin-bottom: 30px;
	list-style-type: none;
	border-bottom: 1px solid #EFEFEF;
	column-gap: 24px;
}

.tabs-col li {
	font-size: 20px;
	font-weight: 500;
	line-height: 32px;
	color: rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.tabs-col li.active,
.tabs-col li:hover{
	color: var(--font-color);
}

.file-upload.upload-renew input::before {
    content: 'Renew';
}

.status-col {
	grid-template-columns: 1fr 2fr;
}

.generate-label {
	padding-bottom: 0;
}

.generate-btn {
	background-color: var(--primary-color);
	color: var(--white-color);
	padding: 3px 16px;
	border-radius: 6px;
	transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
	font-weight: 500;
}

.generate-btn:hover {
	background-color: var(--primary-btn-hover);
}

.generate-col {
	padding-bottom: 15px;
}

.exprire-col {
	column-gap: 30px;
}

.bike-management .exprire-col p {
	font-size: 12px;
	font-weight: 700;
	line-height: 19.2px;
	color: var(--font-color);
}

.graph-color-codes-v2 {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	width: fit-content;
	margin: auto;
}

.vacation-col {
	display: grid;
	grid-template-columns: 1fr 2fr;
	grid-column-gap: 16px;
	grid-row-gap: 16px;
	margin-bottom: 30px;
}

.vacation-col .v-single-box {
	padding: 15px 25px;
}

.vacation-col .v-single-box h5 {
	border-bottom: 2px solid #ECECEC;
	padding-bottom: 15px;
}

.vacation-col .vacation-pie {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
}

.vac-application ul {
	padding-left: 20px;
}

.vac-application ul li {
	padding: 10px 0;
}

.vac-application ul p{
	font-size: 14px;
	font-weight: 400;
	line-height: 22.4px;
	color: #1E1E1E;
}

.approve-btn {
	font-size: 12px;
	font-weight: 700;
	line-height: 19.2px;
	color: var(--primary-color);
}

.reject-btn {
	font-size: 12px;
	font-weight: 700;
	line-height: 19.2px;
	color: #FF6F31;
	margin-left: 30px;
}

.sales-invoice {
	grid-template-columns: 1fr 2fr;
}

.graph-head {
	border-bottom: 1px solid #E0E0E0;
	margin-bottom: 15px;
	padding-bottom: 20px;
	position: relative;
}

.graph-head .form-group {
	margin-bottom: 0;
}


.sales-graph img {
	width: 100%;
}

.sales-graph {
	padding:  0 60px;
}

.bike-management.sales-invoice .about-bike {
	border-right: 0;
}

.sales-graph hr {
	margin:  60px 0;
}

.graph-label {
	justify-content: flex-end;
	padding-bottom: 5px;
}

.invoice-col {
	grid-template-columns: 1fr 2fr 2fr;
}

.detail-col-grey .form-group .inp-label {
	color: var(--label-color-input);
}

.inner-detail-col {
	grid-template-columns:  2fr 2fr 2fr 1fr;
}

.inner-detail-col .auth-btn.add-btn {
	margin-bottom: 5px;
	margin-left: 0;
}

.form-group-sm .inp-radio label {
	font-weight: 700;
}

.invoice-status .radio-group label {
	font-size: 20px;
	color: var(--font-color);
}

.invoice-status .radio-inner {
	column-gap: 60px;
	padding-bottom: 30px;
}

.calendar-col {
	position: absolute;
	top: 0;
	right: 0;
	max-width: 400px;
	border-radius: 10px;
	background-color: var(--white-color);
	padding: 25px 30px;
	z-index: 9;
}

.previous-btn {
	display: inline-flex !important;
	font-size: 20px;
	font-weight: 500;
	line-height: 32px;
	color: #1E1E1E;
	margin-bottom: 25px;
}

.previous-btn img {
	min-width: 24px;
	width: 24px; 
	height: 24px;
	object-fit: contain;
	margin-right: 10px;
}