@import url('https://fonts.googleapis.com/css?family=Quicksand:300,400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@300..700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');



/* @font-face {
    font-family: 'Poppins';
    src: url('../fonts/poppins.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
} */
body{
	position: relative;
	overflow-x: hidden;
	font-family: 'Poppins', sans-serif;
    /* padding-right: 15px; */
}
aside.side_nav{
	width: 20%;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	/* background: #242939; */
    background: #fff;
    /* background-color: #3521f1; */
	transition: 0.3s ease-in-out;
}

.deactiveAside{
	width: 5% !important;
}

.sidenav_inner{
	width: 100%;
	max-height: 100vh;
	float: left;
	overflow: auto;
	scrollbar-width: none;
}

.completeWrap{
	width: 80%;
	float: right;
	min-height: 100vh;
	background: #f1f1f7;
    border-radius: 20px;
	transition: 0.3s ease-in-out;
}

.activeSection{
	width: 95% !important;
}

.sidenav_logo_btn {
    width: 100%;
    float: left;
    padding: 20px 25px;
	position: relative;
}

.sidenav_logo_btn a {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-transform: capitalize;
	text-decoration: none;
	position: absolute;
    /* new  26.09.24 */
    /* left: 64px; */
}
.sidenav_logo_btn a img {
   /* max-width: 100px; 26.09.24 */
   max-width: 90px;

}
.sidenav_logo_btn span{
    float: right;
    margin: 7px 0 0 0;
    cursor: pointer;
}

.sidenav_logo_btn span i {
    color: #e24217;
    font-size: 22px;
	transition: 0.3s ease-in-out;
	cursor: pointer;
}

.sidenav_logo_btn span i:hover{
	color: #c03812;
}

header {
    width: 80%;
    float: right;
    background: #fff;
    padding: 8px 15px;
    transition: all 0.3s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.headerNav{
	width: auto;
	float: left;
	margin: 0;
	padding: 0;
}

.headerNav li{
	list-style: none;
	float: left;
	margin: 0;
}

.headerNav li a {
    width: 100%;
    float: left;
    padding: 10px 15px;
    margin: 0;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    color: #666666;
	text-decoration: none;
	transition: 0.3s ease-in-out;
    border-radius: 8px;
}

.headerNav li div {
    width: 100%;
    float: left;
    padding: 10px 15px;
    margin: 0;
    text-transform: capitalize;
    font-size: 16px;
    font-weight: 500;
    color: #666666;
	text-decoration: none;
	transition: 0.3s ease-in-out;
    border-radius: 8px;
}


 .headerNav li a:hover{
    background: #ffeae5;
}

/* .headerNav li div:hover{
    background: #ffeae5;
} */

.adminInfoWidgate {
    /* width: auto; */
    float: right;
    margin: 6px 0 0 0;
    padding: 0;
}

.adminInfoWidgate li{
	list-style: none;
	float: left;
	position: relative;
}
.adminInfowrap{
    width: 100%;
}
.adminInfowrap li {
    float: right;
}
.search_box_wrap {
    position: absolute;
    background: #fff;
    top: 31px;
    right: 0;
    padding: 18px 28px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.2);
    transition: 0.5s ease-in-out;
    transform: scale(0);
    opacity: 0;
    transform-origin: top right;
	z-index: 1;
}

.activeSearch_box_wrap{
    transform: scale(1);
    opacity: 1;
    top: 46px !important;
}

.search_box_wrap input[type="text"] {
    width: 210px;
    padding: 7px 12px;
    outline: none;
    border: 1px solid #b9b9b9;
}

.adminInfoWidgate li a{
    width: 100%;
    padding: 10px 15px;
    margin: 0;
    text-transform: capitalize;
    font-weight: 600;
    color: #242939;
	text-decoration: none;
}

.adminInfoWidgate li a span picture {
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 100%;
    float: right;
    /* margin: -4px 0 0 0; */
}

.adminInfoWidgate li a span picture img{
	width: 100%;
}

.adminInfoWidgate li a i.fa-th-large {
    font-size: 20px;
    color: #5d77fd;
    margin: 5px 0 0 15px;
}

.sideNav_links {
	width: 90%;
	float: left;
	padding: 0;
	margin: 65px 0 0 0;
    margin-left: 5%;
}

.sideNav_links li {
	width: 100%;
	float: left;
	padding: 0 0;
	margin: 0;
	list-style: none;
    margin-bottom: 6px;
}

.sideNav_links li a {
    width: 100%;
    float: left;
    /* padding: 14px 23px; 25.07.2024*/
    padding: 14px 23px;
    color: #384568;
    text-transform: capitalize;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease-in-out;
    position: relative;
    border-right: 6px solid transparent;
    font-size: 15px;
    /* margin-bottom: 5px; */

}
/* .sideNav_links li a :nth-last-child(2) {
    background-color: red;
  } */



.sideNav_links li a:hover{
    /* background: #FFE3DB; 24.09.2024 */
    background-color: #cdfae5;
    /* color: #FF5B45;  24.09.2024 */
    /* color:#050505; */
    border-radius: 10px;
    /* color:#fff!important; */
    /* max-height: 90px; */
    /* margin-top: -10px !important; */
    /* padding: 10px 0 10px 0; */
    /* border-right: 6px solid #FF5B45; */
}

.deactiveAside ul li a{
    /* background: #ffeae5;   24.09.2024 */
    /* background-color: #d1f8e5; */
/* 28.10.2024 */
    background: transparent;
    margin: 0px 0 5px 0;
}

.deactiveAside ul li a:hover{
	/* background: transparent; */
    /* 28.10.2024 */
    background-color: #d1f8e5;
}

.sideNav_links li a i {
    /* color: #384568; 24.09.2024*/
    /* color:#000; */
    color:#1e8349;

    /* font-size: 20px; */
    font-size: 20px;
    /* margin: 0 8px 0 0px; */
}
.sideNav_links li a:hover i {
    /* color: #FF5B45; 24.09.2024*/
    color:#fff;
}

.sideNav_links li a span {
    position: absolute;
    top: 12px;
    left: 57px;
}

.sub_links {
    width: 100%;
    float: left;
    min-height: 380px;
    padding: 0;
    margin: 0;
     background: #feedc7;
     border-radius: 10px;
     margin-top: 10px;
    /* background-color:#c4fcda; */
	display: none;

}

.sub_links li a {
    padding: 10px 46px;
    /* color: #606c90; */
    color:#424242;
    font-weight: 500;
    font-size: 14px;
    margin-top: 14px;
    margin-bottom: -10px;
    /* border-radius: 10px; */
}
.sub_links li a:hover{
    background-color: #1e8349;
    color:#fff;
}

.drop_down_icon {
    position: relative !important;
    float: right;
    margin: -7px 56px 0 0px;
	transition: 0.3s ease-in-out;
}


::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #242939;
}

::-webkit-scrollbar-thumb:hover {
  background: #242939;
}
   ::-webkit-scrollbar-thumb:horizontal{
        background: #242939;
        border-radius: 10px;
    }
.deactiveAside .sub_links{
	display: none;
}

.rotateThis {
    transform: rotate(-180deg);
}

.contain_wrap {
    width: 30%;
    min-height: 100%;
    position: fixed;
    top: 0;
    right: -31%;
    background: #fff;
    box-shadow: 0px 0px 11px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease-in-out;
	z-index: 999;
}

.activeContain_wrap{
    right: 0% !important;
}

.contain_Inner {
    width: 100%;
    min-height: 100vh;
    position: relative;
	float: left;
    padding: 15px 15px;
}

.contain_Inner span{
	float: right;
}

.contain_Inner span i {
    background: #5d78ff;
    color: #fff;
    padding: 6px 11px;
    border-radius: 4px;
    cursor: pointer;
}

.completeWrapCover{
	position: relative !important;
}

.completeWrapCover:after {
    content: '';
    position: fixed;
    background: rgb(27, 48, 153, 0.2);
    width: 100%;
    height: 100%;
    z-index: 9;
    top: 0;
    left: 0;
    transition: 0.5s ease-in-out;
}

.user_info_wrap {
    width: 200px;
    background: #fff;
    position: absolute;
    right: 0;
    padding: 0;
    box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.2);
    top: 65px;
	transform-origin: top right;
	transform: scale(0);
	opacity: 0;
	transition: 0.4s ease-in-out;
	z-index: 1;
}

.active_user_info_wrap{
	transform: scale(1);
	opacity: 1;
}

.user_info_wrap li {
	width: 100%;
	float: left;
	padding: 0;
	margin: 0;
}

.user_info_wrap li p {
    background: #e34217;
    margin: 0 0 0 0;
    color: #fff;
    padding: 10px 14px;
}

.user_info_wrap li p small{
	width: 100%;
	float: left;
}

.user_info_wrap li a {
    margin: 0 0 0 0;
    color: #333;
    padding: 4px 13px;
    width: 100%;
    float: left;
	transition: 0.3s ease-in-out;
}

.user_info_wrap li:last-child a {
    border-top: 1px solid #ddd;
    margin: 5px 0 0 0;
    padding: 12px 19px 16px 17px;
}

.user_info_wrap li a:hover{
	color: #e24419;
}

.completeWrap_inner {
    width: 100%;
    float: left;
    margin: 40px 0 40px 0px;
	transition: 0.3s ease-in-out;
	transform: scale(1.07);
	opacity: 0;
}

.activeCompleteWrap_inner{
	transform: scale(1);
	opacity: 1;
}

.completeWrap_container{
	max-width: 1035px;
	margin: 0 auto;
}

.completeWrap_inner_main {
    width: 100%;
    float: left;
    padding: 0px 25px 0 25px;
    border-radius: 10px;
}
.completeWrap_innerBg{
    padding: 25px 25px;
    background: #fff;
}
.heading_02 {
    width: 100%;
    float: left;
    margin: 0 0 25px 0;
    padding: 0 0 0 13px;
	text-transform: capitalize;
    color: #384568;
    font-family: Poppins;
    font-size: 24px;
    font-weight: 600;
}
.heading_02 figure{
    width: 36px;
    height: 36px;
    border-radius: 8px;
    /* background: #ECEFFF; */
    background-color: #fcf2d9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    margin-right: 10px;
}
.heading_02 span {
    margin-top: 4px;
    display: inline-block;
}
.heading_02 a i {
    color: #e24217;
    font-size: 18px;
    vertical-align: middle;
}
.heading_05 {
    width: 100%;
    float: left;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 25px 0;
    padding: 0 0 0 13px;
    border-left: 3px solid #5d77fd;
    color: #515871;
	text-transform: capitalize;
}

.form_wrap{
	width: 100%;
	float: left;
}
.form_wrap b{
    /* padding-left: 20px;
    font-size: 18px; */
    color: #384568;
    font-family: Poppins;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    display: inline-block;
    margin-top: 50px;
}
.mailid{
    padding-left: 15px;
}
.input_listing{
	width: 100%;
	float: left;
	margin: 0;
	padding: 0;
    display: flex;
     /* align-items: center; */
    justify-content: space-between;
    flex-flow: row wrap;
}

.input_listing li {
    list-style: none;
    width: 50%;
    float: left;
    padding: 10px 15px;
     position: relative;
}

.full_width_li{
	width: 100% !important;
    /* position: relative!important; */
}
.full_width_li p{
	color:#dc3545;
    font-size: 14px;
    margin: 0;
}


.form_wrap p{
	color:#dc3545;
    font-size: 14px;
    margin: 0;
}

td{
    white-space: nowrap;
}

th{
    white-space: nowrap;
}


textarea{
	height: 120px;
}

input, select, textarea{
    width: 100%;
    /* float: left; */
    padding: 12px 20px;
    outline: none;
    border-radius: 10px;
    border: 1px solid #D8DEFF;
    background: #FFF;
    box-shadow: 9px 9px 21px 0px rgba(205, 208, 213, 0.60);
}
input:focus, select:focus, textarea:focus{
     box-shadow: none;
}
::placeholder{
	text-transform: capitalize;
	color: #888;
	opacity: 1;
}

/**********radio btn style************/
.container_radio {
    display: inline-block;
    position: relative;
    padding-left: 32px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-right: 14px;
}

/* Hide the browser's default radio button */
.container_radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  left: 0;
}

/* Create a custom radio button */
.checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 20px;
  width: 20px;
  background-color: #d6d6d6;
  border-radius: 50%;
}

/* On mouse-over, add a grey background color */
.container_radio:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the radio button is checked, add a blue background */
.container_radio input:checked ~ .checkmark {
    background-color: #e24217;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the indicator (dot/circle) when checked */
.container_radio input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.container_radio .checkmark:after {
 	top: 6px;
	left: 6px;
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: white;
}
/**********radio btn style end************/

/**********checkbox style************/

.container_checkbox {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 12px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    padding-right: 15px;
}

/* Hide the browser's default checkbox */
.container_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.container_checkbox .checkmark {
  position: absolute;
  top: 4px;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border-radius: 0 !important;
}

/* On mouse-over, add a grey background color */
.container_checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.container_checkbox input:checked ~ .checkmark {
    background-color: #5d77fd;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.container_checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.container_checkbox .checkmark:after {
    left: 10px;
    top: 7px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
/**********checkbox style end************/

.table_wrap{
	width: 100%;
	float: left;
    margin-top: 30px;
}
.table_wrap tbody tr td a{
	text-decoration: none;
    padding-right: 5px;
}
.table_wrap tbody tr td a:last-child{
    padding-right: 0px;
}
.table_wrap tbody tr td a .fa-external-link{
	/* color: #000000; */
    color:#fff;
    border-radius: 6px;
    /* border: 1px solid #E4E4E5; */
    /* background: #F1F1F1; */
    background-color: #d3520c;
    border: 1px solid #953703;
    padding: 5px;
}

.table_wrap tbody tr td a .fa-pencil-square-o{
	/* color: #879AFF; 24.09.2024* */
    /* color:#000;24.10.24 */
    color:#fff;
    border-radius: 6px;
    /* background: #E3E8FF; 24.09.2024*/
    /* background: #faf3e1;24.10.24 */
    background: #1d8344;
    /* border: 1px solid #d2dafc; */
    border: 1px solid #0a5f29;
    padding: 5px;
}
.table_wrap tbody tr td a .fa-trash-o{
	color: #FF6969;
    border-radius: 6px;
    background: #FFEFEF;
    border: 1px solid #fbd7d7;
    padding: 5px;
}
.table_wrap tbody tr td a .fa-eye{
   color: #935bff;
    border-radius: 6px;
    background: #e2d3ff;
    border: 1px solid #dbc9ff;
    padding: 5px;
}
.table thead th {
    border-bottom: none!important;
    font-weight: 500;
    font-size: 14px;
}
.table-bordered td, .table-bordered th {
    border: 1px solid #f8d0c5;
    font-size: 14px;
}
.table-striped tbody tr:hover {
    background-color: transparent;
}
.table-striped tbody tr:nth-of-type(odd) {
     background-color: rgb(255 243 240);

}
 .table th {
    border-top: none!important;
}
.table tbody tr{
    font-size: 14px;
    font-weight: 400;
    position: relative;
}
.table thead tr{
     border-radius: 8px;
    border: 1px solid #FFEFEB;
    /* background: #FFEFEB; 24.09.2024 */
    background-color: #faf3e1;
}

.submit_btn {
	width: auto;
	float: none;
    border: 0;
    cursor: pointer;
    color: #ffffff;
    /* font-size: 16px; */
    font-size: 14px;
    text-transform: capitalize;
    /* padding: 14px 63px; */
    padding: 14px 58px; ;
    border-radius: 8px;
    background: #1d8344;
    font-weight: 500;
	margin: 0 12px 0 0px;
	outline: none;
	transition: 0.3s ease-in-out;
	text-decoration: none;
    display: inline-block;
}


.submit_btn:hover {
	/* background: #384568; 24.09.2024 */
    background-color: #1bac52;;
	text-decoration: none;
    color: #ffffff;
}
.btn-primary {
    color: #fff2ee;
    background-color: #e24419;
    border-color: transparent;
}
.btn-primary:hover {
    color: #fff2ee;
    background-color: #cb3e18;
    border-color: transparent;
}
.reset_btn {
	width: auto;
	float: none;
    border: 0;
    /* background: #e76c4a; */
    background-color: #f60c2b;
    cursor: pointer;
    color: #f9f9f9;
    font-size: 16px;
    text-transform: capitalize;
    /* padding: 10px 25px; */
    padding: 12px 61px;
    border-radius: 5px;
    font-weight: 500;
	margin: 0 12px 0 0px;
	outline: none;
	transition: 0.3s ease-in-out;
	text-decoration: none;
    margin-top: 30px;
}

.reset_btn:hover {
	/* background: #cb3e18; */
    background-color:#af041b;
    color: #f9f9f9;
	text-decoration: none;
}
.previewBtn{
    margin-top: 20px;
}
/************** popup style ***********/

.popupWrap {
	width: 100%;
	min-height: 100vh;
	position: fixed;
	background: rgb(27, 48, 153, 0.2);
	top: 0;
	left: 0;
	z-index: 9999;
	display: none;
}

.popupInner{
	width: 100%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	padding: 20px 20px;
}

.popupContainer{
	 /* max-width: 700px; */
     max-width: 600px;
	/* height: auto; */
    height: 200px;
	margin: 0 auto;
}

.popupMain {
    width: 100%;
    float: left;
    padding: 15px 15px;
    min-height: 60px;
    background: #fff;
    border-radius: 9px;
    box-shadow: 0px 4px 10px rgb(29, 15, 66, .4);
	position: relative;
	transition: 0.5s ease-in-out;
	transform: scale(1.1);
	opacity: 1;
}

.activePopupWrap .popupMain{
	/* transform: scale(1); */
    display: block;
	opacity: 1;
}

.heading_01 {
    width: 100%;
    float: left;
    margin: 0 0 13px 0;
    padding: 3px 0 14px 0;
    text-align: center;
    font-size: 30px;
    text-transform: capitalize;
    font-weight: 700;
    color: #343f71;
    border-bottom: 1px solid #e3e3e3;
}

.popupMain article {
    width: 100%;
    float: left;
    text-align: center;
    margin: 10px 0 25px 0;
}

.popupMain article p {
    /* font-size: 17px; */
    font-size: 13px;
    color: #141c3e;
    font-weight: 600;
    max-width: 550px;
    margin: 0 auto;
}

.popBtnWrap {
    width: 100%;
    float: left;
    text-align: center;
    padding: 20px 0 12px 0;
    margin: 1px 0 0 0;
    /* border-top: 1px solid #cccccc; */
}

.closePop {
    position: absolute;
    right: 13px;
    top: 12px;
    background: #dc3545;
    padding: 2px 10px;
    color: #ffffff;
    border-radius: 5px;
    font-weight: 700;
    opacity: .8;
    user-select: none;
    cursor: pointer;
}

.dashboardCard_wrap {
    width: 100%;
    float: left;
    position: relative;
}

.dashboardCard{
    width: 100%;
    float: left;
    position: relative;
	margin: 10px 0;
}

.dashboard_card_inner {
    width: 100%;
    float: left;
    padding: 32px 31px;
    border-radius: 20px;
    border: 1px solid rgba(216, 222, 255, 0.90);
    background: rgba(255, 255, 255, 0.90);
    transition: all 0.3s ease-in-out;
}

.dashboard_card_inner1:hover{
    border: 1px solid rgba(228, 228, 229, 0.90);
    /* background: #384568; 24.09.2024 */
    background-color:#1D8344 ;
}
.dashboard_card_inner1:hover h3{
   /* color: #fff; 24.09.2024 */
   /* color:#f03939; */
   color:#fff;
}
.dashboard_card_inner1:hover strong{
   /* color: #fff; 24.09.2024 */
   color:#F7B416
}
.dashboard_card_inner1:hover a{
   /* color: #FAB459; */
   color:#f5f2f2;
   /* border-top: 1px solid #526084; */
   border-top: 1px solid #fff;
}
.dashboard_card_inner1 h3 {
    width: 100%;
    float: left;
    color: #161616;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 600;
}

.dashboard_card_inner1 h3 strong {
    width: 100%;
    float: left;
    color: #161616;
    font-family: Poppins;
    font-size: 24px;
    font-weight: 500;
    margin-top: 12px;
}

.dashboard_card_inner a {
    width: 100%;
    float: left;
    text-align: left;
    padding: 18px 0 0 0;
    margin: 9px 0 0 0;
    border-top: 1px solid rgba(228, 228, 229, 0.90);
    text-transform: capitalize;
    color: #666;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
}

.bullet_listing{
	width: 100%;
	float: left;
}

.bullet_listing li p {
    margin: 0 0 0 0;
    font-size: 17px;
    font-weight: 500;
}

.number_listing{
	width: 100%;
	float: left;
	list-style: decimal;
}

.number_listing li p {
    margin: 0 0 0 0;
    font-size: 17px;
    font-weight: 500;
}

/**********login style start***********/

.loginComplete_wrap{
	width: 100%;
	position: relative;
	/* top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%); */
}

.loginContainer{
	/* max-width: 750px; */
    max-width: 100%;
	margin: 0 auto;
}

.loginInner{
	width: 100%;
	float: left;
    height: 100vh;
	/* box-shadow: 0px 0px 8px rgba(0, 0, 0, 0.2); */
}

.loginMain{
	width: 100%;
	float: left;
	min-height: 60px;
	overflow: hidden;
}

.side_info{
	width: 35%;
	float: left;
	position: relative;
    background:#F1F1F7;
    height: 100vh;
}


 /* .side_info:after {
   content: '';
   position: absolute;
    background: url(../images/loginLogo.png) no-repeat center;
   object-fit: cover;
   background-size: 59%;
   background-position: left bottom;
   width: 100%;
   height: 100%;
   left: 94px;
   bottom: 190px;
   18.10.2024
} */



.loginHeading{
    width: 100%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #E72327;
    font-size: 26px;
    font-weight: 600;
    margin-top: 40px;
    /* position: absolute;
    top:460px;
    left:2px; */
    /* margin-top: 410px; */
      /* box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); */
    /* transition: transform 0.5s ease;
    padding: 20px; */


}
/* .loginHeading:hover{
   transform: translateX(50px);

} */
/* @keyframes example_02 {
	0%   {transform: rotate(-21deg);}
	20%   {transform: rotate(9deg);}
	40%   {transform: rotate(-29deg);}
	60%   {transform: rotate(10deg);}
	80%   {transform: rotate(30deg);}
	100%   {transform: rotate(-21deg);}
} */

.sideInfoInner {
    width: 100%;
    float: left;
    padding: 0 30px;
	position: relative;
	z-index: 1;
    padding-top: 30px;
}

.sideInfoInner h1 {
    font-size: 35px;
    color: #fff;
    margin: 12px 0 8px 0;
}

.sideInfoInner article {
    width: 100%;
    float: left;
    margin: 5px 0 5px 0;
}

.sideInfoInner article p {
    width: 100%;
    float: left;
    margin: 0 0 0 0;
    font-size: 18px;
    font-weight: 500;
    color: #c7d0ff;
}
/* 18/10/2024  */


 .loginInfoInner{
    width: 100%!important;
    float: left!important;
    display: flex!important;
    justify-content: center!important;
    align-items: center!important;
    margin-top: 60px;
}

.loginLogoImg{
    min-width: 300px;
    min-height: 300px;
    object-fit: cover;
}

.loginForm_wrap {
    width: 60%;
    float: right;
    min-height: 50px;
    margin: 10% 0 0 0;
    padding: 0 25px;
	position: relative;

}
.navSection{
    width:100%;
    height: 50px;
    float: left;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    /* gap:5px; */
    background-color: #d1fae6;
      /* border: 1px solid  #969695; */
    /* margin-top:40px ; */
    /* border-radius: 10px; */
    margin-bottom: -10px;

    /* border-bottom: 1px solid black; */

}
.navSection li{
    list-style-type: none;

    padding-bottom: 10px;
    margin-right: 35px;
    padding-bottom: -7px;

}
.navigationBar{
    width: 100%;
    float: left;
    display: flex;
    /* padding: 5px 5px; */
    /* background-color: #ccfce5; */
    margin: 0;
    gap: 0;
    height: auto;
    /* border: 1px solid #acabab; */
    align-items: center;
    /* border-radius: 50px; */
    /* border-bottom: 3px solid green; */
}



.otpLogin{
    /* width: 100px!important;
    margin: 0!important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding:10px 0;
    border-radius: 30px; */
    /* background-color: #f7b416; */


    /* width: 233px !important;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0; */

    width: 233px !important;
    margin: 0 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 0;
    border-bottom: 2px solid #bcbcbc;


}
.activeLoginPage{
    /* background-color: #f7b416; */
    color: #1ead16 !important;
    border-color: #1ead16;
}
.hoverPart:hover{
    background-color: #ebe9e9;
    color:#222222;
}
/* .otpLogin:hover{
    background-color:#f7b416 ;
} */

/* .navigationBar a{
    /* width:100px;
    height: 40px;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
   margin-top: -20px!important;
   background-color: #f0aaaa; */
   /* margin-top: -20px!important; */



.activeLog{
    background-color: #005f08;
}
.navSection li a{
    text-decoration: none;
    width:100px;
    /* width:px; */
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color: #00AA58; */
     /* background-color: #f7b416; */
    color:#000;
    /* border-radius: 10px; */
    position: relative;
    color:#1d8344;
    padding: 25px 0;
    margin-top: 8px;

    /* background-color: #feffb6; */
}

.navSection li a:hover{
    background-color:#faf0bb ;

}
/* .navSection li a::after{
    content: "";
    width: 100px;
    height: 3px;
    position: absolute;
    background-color: #000;
    top:40px;
    background-color: #FCC419;
    left: 0;
    transform-origin: center;
    transform: scale(0);
    transition: 0.3s ease-in-out;

}
.navSection li a:hover::after {
    transform: scale(1);
} */


/* .navSection li a:hover{
    background-color: #00AA58;


}
.activeBtn{
   background-color: #005f08;
} */

/* .loginForm_wrap:after {
    content: '';
    height: 200px;
    width: 200px;
    position: absolute;
    background: #e24419;
    right: -89px;
    top: -165px;
    border-radius: 100%;
} */

/************/
.loginForm_wrap h3 {
    width: 100%;
    float: left;
    text-align: center;
    margin: 0 0 20px 0;
    font-weight: 800;
    color: black;
}

.loginForm_wrap form{
	width: 100%;
	float: left;
}

.loginForm_wrap span {
    width: 100%;
    float: left;
    margin: 20px 0 0 0;
}

.loginForm_wrap span .loginInput {
    width: 100%;
    float: left;
    font-size: 17px;
    border: 1px solid #D8DEFF;
    background: #f1f1f7;
    color: #000;
    padding: 15px 18px;
    outline: none;
    box-shadow: none;
}
.loginForm_wrap span .loginInput:focus{

    background: #FFF;
    box-shadow: 9px 9px 21px 0px rgba(205, 208, 213, 0.60);
}
.loginForm_wrap span .loginInput::placeholder {
	color: #2c2c2c;
	opacity: 1;
	text-transform: capitalize;
	font-weight: 600;
}

.loginForm_wrap a {
    float: right;
    margin: 15px 0 0 0;
    font-weight: 600;
    color: #000;
	text-decoration: none;
}

.loginForm_wrap span input[type="submit"] {
    border: 0;
    outline: none;
    /* background: #384568; 23.07.2024*/
    background-color: #1d8344;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-transform: capitalize;
    width: 100%;
    padding: 12px 20px;
    border-radius: 5px;
	cursor: pointer;
}
.loginForm_wrap span input[type="submit"]:hover{
    background-color: #f7b416;
    color:#242323;
}
.logFormInner{
    width: 60%;
    margin: 0 auto;
}
.logFormInner p{
    color: #666666;
}
.logFormInner p a{
    color: #FF5B45;
    float: none;
}
.tooltip2 {
    background: #ff714b;
    padding: 5px 16px;
    border-radius: 6px;
    border: none!important;
    color: #fff;
}
.tooltiptext2{
    background-color: #323232!important;
    color: #fff8f6!important;
}

.toast-success{
    /* background: #ff714b !important; */
    background-color: #005f08 !important;
}


.pagination{
    padding-top: 40px!important;
    align-items: center!important;
    justify-content: center!important;
}
.page-item.active .page-link {
    z-index: 1;
    color: #fff2ee;
    background-color: #e24419;
    border-color: #e24419;
}
.page-link {
    color: #384568;
    background-color: #fff;
    border: 1px solid #fad7cd;
}
.page-link:hover {
    color: #e24419;
    background-color: #fad7cd;
    border: 1px solid #fad7cd;
}

.fa-check-circle{
    color: green;
}

input[type=file] {
    color: transparent;
}

.imageNameIcon{
    position: absolute;
    right: 33px;
    top: 13px;
}

.imageNameIcon img{
    width: 45px;
    height: 45px;
    border-radius: 100%;
    margin-right: 5px;
}

.activePopupWrap .popupMain2 {
    height: 500px;
    overflow-y: scroll;
}
.checkSec{
    background: #ffeae5;
    width: 100%;
    float: left;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    vertical-align: middle;
}
.checkBtn{
    outline: none!important;
    background: #FF5B45;
    border-radius: 6px;
    border: none;
    padding: 6px 15px;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    line-height: initial;
    float: right;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}
.checkBtn:hover{
    background: #e24217;
}
.loaderImg{
    width: 30px;
}
.spfRecord{
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: space-between;
}
.spfRecord span small{
    display: block;
}
.spfRecord span i{
    margin-right: 4px;
}





/* toogle */
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 20px;
    margin-bottom: 0;
    top: 5px;
  }

  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }

  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
  }

  .slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }

  input:checked + .slider {
    background-color: #28a745;
  }

  input:focus + .slider {
    box-shadow: 0 0 1px #28a745;
  }

  input:checked + .slider:before {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
  }

  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }

  .slider.round:before {
    border-radius: 50%;
  }
/* .emailSec{
    display: flex;
    align-items: center;
    gap: 20px;
} */
.adminInfoWidgate li #myProfile {
   padding: 0!important;
}
.adminInfoWidgate li #myProfile span {
    display: flex;
    align-items: center;
    gap: 10px;
}
.deleteIcon .fa{
    color: red;
}
.table_wrap table{
    /* display: block; */
    overflow-x: auto;
    white-space: nowrap;
    border-collapse: separate;
    border-spacing: 0 1em;
}
.table{
    overflow-x: auto;
    white-space: nowrap;
    border-collapse: separate;
    border-spacing: 0 1em;
}
.table_wrap table::-webkit-scrollbar {
  height: 5px;
}
.container_radio {
    font-size: 16px;
}
.pGateWay{
    display: flex;
    align-items: center;
    gap: 30px;
}
.pGateWay select {
    width: 30%;
}

.currentPackage h3{
    text-align: left;
}
.currentPackage a {
    text-align: left;
}
.currentPackage .submit_btn {
    width: 100%;
}
.checkSame{
    display: flex;
    width: 100%;
    align-items: center;
    gap: 10px;
    font-style: italic;
    color: #e24217;
    font-weight: 600;
}
.checkSame input{
    width:auto!important;
}
.checkSame input[type="checkbox"] {
    position: relative;
    cursor: pointer;
    font-weight: 500;
    font-size: 15px;
}
.checkSame input[type="checkbox"]:before {
    content: "";
    display: block;
    position: absolute;
    width: 18px;
    height: 18px;
    top: -2px;
    left: 0;
    background: #ffffff;
    border: 1px solid #e34717;
    border-radius: 2px;
}
.checkSame input[type="checkbox"]:checked:after {
    content: "";
    display: block;
    width: 5px;
    height: 10px;
    border: solid #e34717;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    top: 1px;
    left: 6px;
}
.currentPackage_inner{
    width: 94%;
    border-radius: 20px;
    background: #FFF;
    padding: 25px 20px;
    box-shadow: 11px 11px 28px 0px rgba(231, 231, 231, 0.90);
}
.currentPackage_inner h3{
    color: #000;
    font-family: Poppins;
    font-size: 16px;
    font-weight: 500;
}
.currentPackage_inner h3 strong {
    display: block;
    color: #FF5B45;
    font-family: Poppins;
    font-size: 24px;
    font-weight: 600;
    margin-top: 10px;
}
.currentPackage_inner p{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #161616;
    font-family: Poppins;
    font-size: 14px;
    font-weight: 400;
    padding: 12px 0 12px;
    border-bottom: 1px solid #D8DEFF;
    margin-bottom: 0;
}
.currentPackage_inner p span{
    font-weight: 500;
}
.currentPackage_inner p:last-of-type{
     border-bottom: 1px solid transparent;
}
.update-modify{
    display: flex;
    align-items: center;
    gap: 10px;
}
.update-modify a{
    width: 50%;
    font-family: Poppins;
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    padding: 9px 25px;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
    text-align: center;
    text-decoration: none!important;
}
.submitBtn{
    border: 1px solid #7BFFC0;
    background: #A6FFD4;
    color: #00AA58;

}
.submitBtn:hover{
    background: #00AA58;
    color: #A6FFD4;
}
.modifyBtn{
    border: 1px solid #4163FC;
    background: #4163FC;
    color: #FFF;
}
.modifyBtn:hover{
    background: #5675fd;
    color: #FFF;
}
.renewBtn{
width: 100%;
display: block;
border-radius: 8px;
background: #384568;
color: #FFF;
padding: 9px 25px;
font-family: Poppins;
font-size: 15px;
font-style: normal;
font-weight: 500;
line-height: normal;
outline:none!important;
border:none!important;
margin-top: 10px;
cursor: pointer;
}
.renewBtn:hover{
    opacity: 0.9;
}
.heading_02 .submit_btn{
    float: right;
}
.backSection{
float: left;
}
table {
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
}
.cronList{
 table-layout: fixed;
}
.cronList td{
  white-space: -o-pre-wrap;
    word-wrap: break-word;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
}

.table thead th {
    vertical-align: middle;

}
table th{
     white-space: -o-pre-wrap;
    word-wrap: break-word;
    white-space: pre-wrap;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    vertical-align: middle;
}
/* required css to make the rows rounded */
th:first-child, td:first-child {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
th:last-child, td:last-child {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
tr:first-child th:first-child {
  border-top-left-radius: 10px;
}
tr:first-child th:last-child {
  border-top-right-radius: 10px;
}
tr:last-child td:first-child {
  border-bottom-left-radius: 10px;
}
tr:last-child td:last-child {
  border-bottom-right-radius: 10px;
}
tr{
    border: solid 1px #E2E8FF;
    border-style: solid none;
    padding: 10px;
    background:#F4F6FF;
    transition: all 0.3s ease-in-out;
}

tr:first-child {
    border-left-style: solid;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
tr:last-child {
    border-right-style: solid;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}
td:first-child {
    border-left-style: solid;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}
td:last-child {
    border-right-style: solid;
    border-bottom-right-radius: 10px;
    border-top-right-radius: 10px;
}
.table tbody td{
    border-top: 1px solid rgba(226, 232, 255, 0.90)!important;
    border-bottom: 1px solid rgba(226, 232, 255, 0.90)!important;
    padding: 30px 16px;
    border: none;

}
.table-striped tbody tr:nth-of-type(odd) {
border-radius: 10px;
/* border: 1px solid rgba(226, 232, 255, 0.90);24.09.2024 */
border: 1px solid #d1f8e5;
/* background: rgba(244, 246, 255, 0.90); 24.09.2024 */
background-color: #eafdf4;
}
.table-striped tbody tr:nth-of-type(even) {
border-radius: 10px;
/* border: 1px solid rgba(228, 228, 229, 0.90); 24.09.2024 */
border: 1px solid rgba(228, 228, 229, 0.90);

/* background: #FFF; */
background-color: #fcfcfc;

}
td:first-child{
    border-left: 1px solid rgba(226, 232, 255, 0.90)!important;
}
td:last-child{
    border-right: 1px solid rgba(226, 232, 255, 0.90)!important;
}


table tbody tr:hover {
border-radius: 10px;
border: 1px solid rgba(228, 228, 229, 0.90)!important;
background: #FFF!important;
box-shadow: 9px 9px 23px 0px rgba(224, 224, 224, 0.90), -9px -9px 18px 0px rgba(255, 255, 255, 0.90), 9px -9px 18px 0px rgba(224, 224, 224, 0.20), -9px 9px 18px 0px rgba(224, 224, 224, 0.20), -1px -1px 2px 0px rgba(224, 224, 224, 0.50) inset, 1px 1px 2px 0px rgba(255, 255, 255, 0.30) inset;
}
.heading_02 .accountBtn {
    float: right;
    padding-right: 20px;
    font-size: 18px;
    font-weight: 500;
    outline: none;
    text-decoration: none;
    color: #e24217;
    margin-top: 5px;
}









.arrow{
    cursor: default!important;
}
.credential{
    display: inline-block;
    width: 100%;
    padding: 10px 10px;
    border-radius: 5px;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.dashboard_card_plan{
    padding: 30px 20px;
}

.dashboard_card_plan h3{
color: #000;
font-family: Poppins;
font-size: 18px;
font-style: normal;
font-weight: 600;
line-height: normal;
}
.dashboard_card_plan h3 strong{
    display: block;
    color: #FF5B45;
}
.dashboard_card_plan .submit_btn{
    width: 100%;
}
.deleteCheckBox{
    float: left;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 40px;
    padding-left: 15px;
}
.deleteCheckBox span{
    display: flex;
    align-items: center;
    gap: 10px;
}
.deleteCheckBox input{
    box-shadow: none;
    background: transparent;
    width: auto;
}
.deleteCheckBox .submit_btn{
    margin: 0;
}
.deleteCheckBox .checkSame {
    width: auto;
    font-style:normal;
}
.dashboard_card_inner h3 {
    color: #161616;
    font-family: Poppins;
    font-size: 18px;
    font-weight: 600;
}
.dashboard_card_inner h3 strong{
    display: block;
}
.verifyText, .invalidText{
    width: 100%;
    height: 100%;
    padding: 60px 20px;
    background: #ECEFFF;

}
.verifyText article{
    display: flex;
    align-items: center;
    flex-flow: column;
    width: 70%;
    background: #fff;
    margin: 0 auto;
    border-radius: 10px;
    padding: 50px 20px;
    text-align: center;
}
.verifyText h2 {
    font-size: 26px;
    margin-bottom: 15px;
}
.verifyText p{
    color: #666666;
}
.verifyText figure img{
    width: 80px;
}
.invalidText article{
    display: flex;
    align-items: center;
    flex-flow: column;
    width: 70%;
    background: #fff;
    margin: 0 auto;
    border-radius: 10px;
    padding: 50px 20px;
    text-align: center;
}
.payBtn {
    width: 100%;
    float: left;
    /* display: flex; */
    align-items: center;
    margin-top: 50px;
    display: inline-block;
}
.payBtn a {
    width: auto;
    padding: 0;
    margin: 0;
    border: none;
    float: none;
}
.error{
    font-size: 14px;
    color: #ff0000;
    padding-top: 10px;
    /* ADD Margin-bOTTOM 17.10.2024 */
    margin-bottom: -5px;
}

.logoMail{
     max-width: 150px;

}


.ennzaqbmor{
    margin-top: 5px;
}

.tooltip2 {
    position: relative;
    margin-left: 15px;
    display: inline-block;
    border-bottom: 1px dotted black;
  }

  .tooltip2 .tooltiptext2 {
    visibility: hidden;
    width: 600px;
    background-color: black;
    color: #fff;
    /* text-align: center; */
    border-radius: 6px;
    padding: 5px 10px;

    /* Position the tooltip */
    position: absolute;
    z-index: 1;
    top: -5px;
    left: 105%;
  }

  .tooltip2:hover .tooltiptext2 {
    visibility: visible;
  }

  .efmvahqeyz{
    white-space: break-spaces;
  }

  #previewText{
    white-space: pre-wrap;
    text-align: left;
  }

  .rrvmoquwjt{
    background-color:#b73131;
  }

  #tjrebrhxdv{
    background-color:#b73131;
  }

  #greenTick{
    color:green;
  }

  #redTick{
    color:red;
  }

  .hbrubmgvlz{
    height: 300px;
  }
/* Add Admin */
.salarySlips{
    width: 100%;
    float: left;
    /* font-size: 24px; */
    font-size: 22px;
    font-weight: 500;
    font-weight: 600;
    /* margin: 0;
    padding:5px 30px 0 30px; */
    /* margin-top: 25px; */
    margin-top: 56px;
    margin-bottom: 3px;
    padding:0 20px;
    color:#4b4a4a;
}
.addAdminTable{
    /* width:100%;
    float: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding:0 30px;
    margin-top: 50px;
    height: 70px;
    background: #FFF;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.11);
    border-radius: 10px; */

    width: 100%;
    float: left;
    display: flex;
    /* justify-content: space-between; */
    justify-content: center;
    gap: 30px;
    align-items: center !important;
    padding: 0 30px;
    margin-top: 30px;
    /* height: 70px; */
    height: 58px;
    background: #FFF;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.11);
    border-radius: 10px;

}
.addAdminName{
    /* font-size:16px;
    width: 60%;
    float: left;
    color:#3b3b3b;
    font-weight: 600; 8.10.2024*/

    /* font-size: 16px; */
    font-size: 14px;
    width: 100%;
    float: left;
    color: #3b3b3b;
    font-weight: 600;
}
.NoDocumentsFound{
    width: 100%;
    float: left;
    padding: 20px 21px;
    font-size: 15px;
    text-align: center;
    font-weight: 600;
    color: #616060;
    background: #ffe5e5;
    margin-top: 40px;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.11);
    border-radius: 5px;
}
.secondContent{
    width: 88%;
    float: left;
    color:#131212!important;
    font-weight: 500!important;
}
.buttonAddAdmin{
    width: auto;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:30px;
    position: relative;
}
.AddDownload{

    float: left;
    padding:11px 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    text-decoration: none;
    font-weight: 500;
    color:#fff;
    background-color: #1d8344;
    border-radius: 10px;
}

.AddDownload:hover{
    text-decoration: none;
    background-color: #1bac52;
    color:#fff;
}
.del{
    font-size: 21px !important;
    position:relative;
    z-index: 999;
    cursor: pointer;
    /* COLOR ADD 07.10.2024 */
    color:#303030;
    text-decoration: none;
}
/* .buttonAddAdmin:after {
    content: '';
    position: absolute;

    width: 30px;
    height: 30px;
    right: 0px;
    top: 5px;
    left: 114px;
    background-color:rgb(247, 193, 193);

} */
 .headerNavTwo{
    width: 65% !important;
    float:left ;
    display: flex;
    gap:40px;
}
.company_dropdown{
   font-size: 13px;

}
.select2-container--default .select2-results>.select2-results__options{
    overflow: unset!important;


}
.select2-hidden-accessible{
    float: none!important;
}
.header-container-box{
    width:80%;
    float: left;
    display: flex;
    /* justify-content:space-between; */
    align-items: center;
    padding: 0 30px;
     gap:50px;
     min-height: 40px;
}
.clockClass{
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;


}
.clockIcon{
    font-size: 24px!important;
    color:rgb(104, 103, 103);
    font-weight: 300;
}
#clock{
    font-size: 20px;
    /* background-color: #fad276!important; */
    /* padding:5px 10px; */
    width:75px;
    border-radius: 5px;
    font-weight: 600;
    color: #3a3939;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    /* border:1px solid #fac13d; */
}
.financial_dropdown{
   min-height: 30px!important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable{
    /* background-color:rgb(247, 203, 101)!important; */
    /* border: 1px solid rgb(255, 199, 69)!important; */
    /* background-color:#1d8344!important ; */
    background-color: #2d5c44!important;
}
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable:hover{
    color:#fff;
}
.select2-container--default .select2-selection--single {
    /* border:1px solid #f7b416!important; */
    /* border-radius: 40px !important; */
    background-color: #d4fce8;
}
.select2-container .select2-selection--single{
    height: 40px !important;
    font-size: 14px !important;
    font-weight: 500!important;
   /* height: 50px !important; */
    padding:6px 10px 0 10px !important;


}
.select2-container--default .select2-selection--single .select2-selection__arrow {

    height: 26px !important;
    position: absolute !important;
    top: 5px !important;
    right: 4px !important;
    width: 20px!important;
    color:#000;
}
.select2-container--default .select2-selection--single{
    background-color: #fafafa!important ;
    /* border: none!important;
    outline: none!important; */
    /* padding: 12px 20px; */
    outline: none;
    border-radius: 10px;
    border: 1px solid #D8DEFF!important;
    background: #FFF;
    box-shadow: 9px 9px 21px 0px rgba(205, 208, 213, 0.60);

}
/* .select2-container--default .select2-selection--single{

} */
.select2-container--default .select2-selection--single .select2-selection__rendered{
    color:#0a0a0a !important;
    /* outline: none!important; */
}
 .select2-container--default .select2-selection--single .select2-selection__arrow b{
    border-color: #000 transparent transparent transparent!important;
}
.exclePdfbutton{
    width:100%;
    float: left;
    display: flex;
    align-items: center;
    gap:40px;
    margin-top: 40px;

}
.pdfButton{
    width: 180px;
    height: 50px;
    float: left;
    display: flex;
    gap:10px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    background-color: #cffae5;
    color: #3f3f3f !important;;
    text-decoration: none!important;
    border-radius: 5px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}
.pdfButton:hover{
    background-color: #fae6b5;
}

.pdff{
    font-size: 20px!important;
}
.excleButton{
    width: 180px;
    height: 50px;
    float: left;
    display: flex;
    gap:10px;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 600;
    background-color: #fae6b5;
    color: #3f3f3f !important;;
    text-decoration: none!important;
    border-radius: 5px;
    box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.25);
}
.excleButton:hover{
    background-color: #cffae5; ;
}
.excell{
    font-size: 20px!important;
    font-weight: 500;
}

 /* input[type="file"]::file-selector-button {
    border-radius: 4px;
    padding: 0 16px;
    height: 40px;
    cursor: pointer;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, 0.16);
    box-shadow: 0px 1px 0px rgba(0, 0, 0, 0.05);
    margin-right: 16px;
    transition: background-color 200ms;
  }


  input[type="file"]::file-selector-button:hover {
    background-color: #f3f4f6;
  }


  input[type="file"]::file-selector-button:active {
    background-color: #e5e7eb;
  } */
  input[type="file"]{
    max-width: 297px;
    height: 50px;
    float: left;
    border-radius: 20px;
    background: #f7f2f2;
    border: none;
    font-size: 15px;
    font-weight: 800;
    /* text-align: end!important; */

  }
  input[type="file"]::-webkit-file-upload-button{
    color:rgb(39, 38, 38);
    background-color: #f7c34a;
     /* padding:0px 20px 20px 40px;  */
    font-size: 16px;
    height: 50px;
    margin-top: -12px;
    margin-left: -23px;
    padding: 0 30px;
    font-weight: 600;
    border: none;
   /* box-shadow: 1px 0 1px 1px #1f1e1e;*/
    outline: none;
}
input[type=file] {
    color: black!important;
    /* padding:0 30px;
 */
 font-weight: 500;
 text-align: right;
}

.select2-container--default .select2-results>.select2-results__options{
  max-height:122px!important;
  overflow: auto!important;

  /* border-radius: 5px !important; */

}
.popupHeading{
    font-size: 24px !important;
    float:left ;
    font-weight: 500 !important;
}
.toast-container{

    position: fixed;
    z-index: 999999;
    pointer-events: none;
    background-color:#1bac52!important;
}
.toast .toast-success{
    background-color: #1bac52!important;

}
.toast-top-right {
    top: 12px;
    right: 12px;
     /* background-color: #1bac52!important; */
     z-index: 9999;
}
.SalayManagementHeading{
    font-size: 16px;
    font-weight: 600;
    float: left;
    width: 100%;
    color:#474747;
    line-height: 30px;
    margin: 0;
    position: relative;
    /* top: 57px; */
    top: 46px;
    left: 19px;
    padding: 10px 0;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.10);
}
.activeSection.SalayManagementHeading{

}

label{
    width:100%;
    float: left;
    font-size: 16px;
    font-weight: 600;
    color:#333333;
    /* padding:12px 5px; 17.10.2024 */
    padding:8px 5px ;
}

.Download_Sample_Excel_File{
    width: 100%;
    float: left;
    padding: 0 20px;
    color:rgb(37, 37, 37);
    text-decoration: none;
    margin-top: 20px;
    display: flex;
    /* justify-content: center; */
    align-items: center;
    gap:10px;
    font-size: 16px;
    font-weight: 600;

    color: #000;

}

/* bulkUpLoad PAGE */
.Download_Sample_Excel_File:hover{

    text-decoration: none;
    color:#1d8344;

}
.file_is_required{
    width: 100%;
    float: left;
    margin-top: 5px;
}

/* .ui-datepicker-calendar {
    display: none;
}
.ui-widget {
    font-size:.7em;
} */

.tabBoxWrap {
    width: 100%;
    float: left;
}

.tabBox {
    width: 100%;
    float: left;
    display: none;
}

.tabBox:nth-child(1) {
    display: block;
}


.select2-container--default .select2-selection--multiple {
    background-color: white;
    /* border: 1px solid #aaa; */
    border-radius: 6px !important;
    cursor: text;
    padding-bottom: 5px;
    padding-right: 5px;
    position: relative;
    border: 1px solid #D8DEFF !important;
    background: #FFF;
    box-shadow: 9px 9px 21px 0px rgba(205, 208, 213, 0.60);

}
.select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 50px!important;
     /* min-height: 100px!important; */
     overflow: auto;
    user-select: none;
    -webkit-user-select: none;

}
.select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    background-color: transparent;
    border: none;
    border-right: 1px solid #968e8e;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #999;
    cursor: pointer;
    font-size: 1em;
    font-weight: bold;
    padding: 0 4px;
    position: absolute;
    left: 0;
    top: 0;
}

.select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e5fcca !important;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: inline-block;
    margin-left: 5px;
    margin-top: 12px !important;
    padding: 0;
    padding-left: 20px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
}

/* Dashboard admin */

.yourCurrentOutstanding{
    width: 100%!important;
    float: left!important;
    font-size: 16px!important;
    text-align: right;
    color:#005f08;
    padding-bottom: 16px;
    margin-top: 20px;

}
.yourCurrentOutstandingRed{
    color:red;
    width: 100%!important;
    float: left!important;
    font-size: 16px!important;
    text-align: right;
    /* color:#005f08; */
    padding-bottom: 16px;
    margin-top: 20px;
}
.BabaMalleswarGroupHeading{
    width: 100%;
    float: left;
    text-align: center;
    font-size: 32px;
    margin-top: 100px;
    font-weight: 600;
}
.DashboardAdminButtons{
    width:100%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:40px;
    margin-top:30px;
}
.DashboardAdminButton{
    width:180px;
    float: left;
    height: 50px;
    display: flex;
    gap:15px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border-radius: 5px;

    color: #000;
}
.DashboardAdminButton:hover{
    text-decoration: none;
}
.salarySlipBtn{

    background-color:rgb(14, 95, 45);
    color: #faf7f7;
    font-weight: 600;
}

.salarySlipBtn:hover{
    background-color:#489b68;
    color: #faf7f7!important;
    font-weight: 600;
}

.DocumentsBtn{
    background-color:#fdc747;
    color: #000;
    font-weight: 600;

}
.DocumentsBtn:hover{
    background-color:#fab619;
    color: #000!important;
    font-weight: 600;


}
/* login IncrroctPassWord */

.incorrectPswd{
    color: #ff0000;
    font-weight: 600;
    font-size: 15px;

}
 .AdminLogInHeading{
    margin-top: -30px!important;
}
.AdminLoinForm{
    margin-top: 20px;
}
.delPopupButton{
    position: absolute !important;
    top: 45px !important ;
    right: 33px !important;
    height: 40px !important;
    width: 45px !important;
    background:#fc3131!important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    color: #fffdfd !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    border-radius: 5px !important;
    text-decoration: none;
}
.delPopupButton:hover{
    text-decoration: none;
    background-color:#fc6767 !important;
}
.delPopupButtonTwo{
        position: absolute !important;
        top: 11px;
        right: 25px !important;
        height: 40px !important;
        width: 45px !important;
        background: #fc3131 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        color: #fffdfd !important;
        font-size: 20px !important;
        font-weight: 800 !important;
        border-radius: 5px !important;
        text-decoration: none;
}
.delPopupButtonTwo:hover{
    text-decoration: none;
    background-color:#fc6767 !important;
}



.eyeDocuments{
    position: absolute !important;
    top: 71px;
    right: 39px;
    width: 43px;
    height: 38px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* color: green; */
    background: #1d8344;
    color: #fff;
    border-radius: 5px;
    font-size: 18px;

}
.eyeDocuments:hover{
    text-decoration: none;
    color: #fff;
    background: #29c766;
}
.extraLinkBox{
    position: absolute;
    right: 20px;
    top: 59px;
    /* text-decoration: solid !important; */
    /* background: #1d8344; */
    /* color: #fff; */
    padding: 0 10px;
     text-decoration: none ;
     /* text-decoration: underline; */
    color: #1d8344;
    font-size: 16px;
    font-weight: 500;
    /* border:1px dashed #005f08; */

}
.rightArrow{
    font-weight: 400!important;
}
.extraLinkBox:hover{
  color: #00AA58;
  text-decoration: none;
  /* border:1px dashed #00AA58; */
  /* text-decoration: none; */
}
.pdfBut{

    background:#00AA58;
     padding: 5px 7px;
    font-size: 14px;
    border-radius: 5px;
    border: 1px solid #40bd80;
    color: #fff;
}
.arrowButton{
    background: #fb8686;
    padding: 5px 7px;
    font-size: 14px!important;
    border-radius: 5px;
    border: 1px solid #ef7d7d;
    color: #fff;
}
.delArrowBtn{
    position: relative!important;

}

.WhiteBg .select2-container--default .select2-selection--single {
    background-color: #f1ede3 !important;
    height: 50px!important;
    border: none !important;
    outline: none !important;
    padding: 12px 18px !important;
    outline: none !important;
    border-radius: 10px !important;
    border: 1px solid #D8DEFF!important;
    background: #FFF !important;
    box-shadow: 9px 9px 21px 0px rgba(205, 208, 213, 0.60) !important;


}
.WhiteBg .select2-container--default .select2-selection--single .select2-selection__arrow{
    top: 11px!important;
}
.WhiteBg .select2-container--default .select2-selection--single .select2-selection__rendered{
    color:#9c9a9a !important;
    font-size: 16px!important;
}


.WhiteBg .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e5fcca !important;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
    display: inline-block;
    margin-left: 5px;
    margin-top: 12px !important;
    padding: 0;
    padding-left: 20px;
    position: relative;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    vertical-align: bottom;
    white-space: nowrap;
}
.table_wrap tbody tr td a .fa-eye{
    color: #fff!important;
    border-radius: 6px!important;
    /* background: #ab85f7!important; */
    background-color: #e88930;
    border: 1px solid #df9d03!important;
    padding: 5px!important;
}
.loginLogoBox{
    display: none;
}
.logoImgAdim{
    width: 100%!important;
    /* height: 100%!important; */
    float: left!important;
    display: flex!important;
    justify-content: center!important;
    align-items: center!important;
    margin-top: 60px;
}
/* .loinHeadingAdmin{
    margin-top: 50px;
} */


.logoMailAdmin{
    min-width: 300px;
    min-height: 300px;
    object-fit: cover;
}

.BackPageLink{
    width: 100%;
    float: left;
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 5px;
    color: #1d8344!important;
    font-size: 18px;
    font-weight: 400!important;
}
.AddAdvanceButtons{
    margin-left: 17px !important;
}

.select2-container--default .select2-selection--multiple {
    background-color: white;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: text;
    padding-bottom: 5px;
    padding-right: 5px;
    position: relative;
    overflow: auto;
    height: 70px;
}

.FileIcon{
    background: #fcb206;
    height: 26px;
    width: 26px;
    display: flex!important;
    justify-content: center!important;
    align-items: center;
    color: #ffffff!important;
    font-size: 12px;
    border-radius: 5px;
    border: 1px solid #d29505;

}
.SalayManagementHeadingTwo{
    display: none;
}
.fileError{
width: 100%;
float: left;
}
.SalaryReportAddBtnResp{
display: none;
}
/* .SalaryReportAddBtnResp{
    display: none;
} */
.PublishSalaryButtonResp{
    display: none!important;
}
.PublishSalaryButtonTwoResp{
display: none;
}

/* .select2-container--default .select2-selection--multiple::-webkit-scrollbar {
    display: none;
  }
 */



 /* santi Rice Mill */
 .tablePaddyBags{
    width: 70% !important;
    border-spacing: 0px 5px !important;
 }
 .tablePaddyBags thead tr th{
    text-align: center!important;
    min-width:20px;
 }

 .tablePaddyBags thead th{
    /* text-align: center!important;
    min-width:20px; */
    font-size: 12px;
    font-weight: 600;
 }
 .tablePaddyBags tbody tr td{
    /* text-align: center; */
    padding: 4px 4px !important;
 }
  .tablePaddyBags th{
    padding: 8px 14px !important;

 }

 .tablePaddyBags tbody tr td input, select, textarea{
    width: 100% !important;
    /* float: left; */
    padding: 7px 12px;
    outline: none !important;
    border-radius: 10px;
    border: 1px solid #D8DEFF;
    background: #FFF !important;
    box-shadow: 9px 9px 21px 0px rgba(205, 208, 213, 0.60) !important;
    text-align: center;
    font-size: 11px;

 }
 /* .tablePaddyBags tr th{
    border:1px solid black;

 } */
 /* .tablePaddyBags tbody tr td input .error{
    border-color: red !important;
    background-color: #f8d7da !important;
 } */
 .tablePaddyBags tbody tr td input.error {
    font-size: 13px !important;
    /* color: #ff0000 !important; */
    color:#000;
    font-weight: 500;
    background-color: #f8d7da !important;
    /* padding-top: 10px !important; */
     margin-bottom: 0px !important;
}
.tablePaddyBags tbody tr td input.error::placeholder {
    color: #000;
    opacity: 1; /* Firefox */
    font-size: 11px;
  }
    .addNewRow{
        background-color: #007bff !important;
        width: 113px !important;
        height: 33px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        color: #fff !important;
        padding: 0 14px !important;
        border-radius: 12px !important;
        margin: -9px 0 0 0;
  }
  .submitBtns{
    width: auto;
    float: none;
    border: 0;
    cursor: pointer;
    color: #ffffff;
    font-size: 17px !important;
    text-transform: capitalize;
    padding: 13px 58px;
    border-radius: 8px;
    background: #1d8344;
    font-weight: 500;
    margin: 0 12px 0 0px;
    outline: none;
    transition: 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
  }
  .advanceBox{
    width: 100% !important;
    float: left !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    /* align-items: center; */
    justify-content: space-between !important;
    flex-flow: column !important;
    gap: 5px;
  }

  .mainContainerBox .input_listing li {
    list-style: none;
    width: 50%;
    float: left;
    padding: 9px 15px;
    position: relative;
  }
  .mainContainerBox .advanceBox{
     width: 50% !important;
  }
  /* .mainContainerBox .input_listing li input, select, textarea {
    width: 100%;
    /* float: left; */
    /* padding: 9px 20px;
    outline: none;
    border-radius: 10px;
    border: 1px solid #D8DEFF;
    background: #FFF;
    box-shadow: 9px 9px 21px 0px rgba(205, 208, 213, 0.60);
} */
.mainContainerBox .input_listing li input, select, textarea input::placeholder {
   font-size : 14px;
  }
  /* 6.1.25 */
  .mainContainerBox ul li{
    padding: 6px 15px!important;
  }
  .mainContainerBox ul li label {
    padding: 0px 5px!important;

  }
  .fa-calendar-plus-o{
    /* color: #fff; */
    color:#fdfdfd;
    border-radius: 6px;
    background: #FF5F1F;
    /* border: 1px solid #d2dafc; */
    border: 1px solid #d64207;
    padding: 5px;
  }

  .editIconEmp{
    color: #fff;
    border-radius: 6px;
    padding: 5px 7px;
    background-color: #e72428;
    border: 1px solid  #8f0a0c;;

  }
  .fa-print{
    color: #fff;
    border-radius: 6px;
    background: #292ce9;
    /* border: 1px solid #d2dafc; */
    border: 1px solid #0c0fa3;
    padding: 5px;
  }
.printDailySheet{
    font-size: 15px;
    color: #292ce9;
    text-decoration: none;
    font-weight: 600;
}
.printDailySheet:hover{
    text-decoration: none!important;
    color: #292ce9;


}


.heading_02 .submit_btn {
	width: auto;
    float: right;
    border: 0;
    cursor: pointer;
    color: #ffffff;
    /* font-size: 16px; */
    font-size: 13px;
    text-transform: capitalize;
    /* padding: 14px 63px; */
    padding: 14px 27px;
    border-radius: 8px;
    background: #1d8344;
    font-weight: 600;
    margin: 0 12px 0 0px;
    outline: none;
    transition: 0.3s ease-in-out;
    text-decoration: none;
    display: inline-block;
}
/* 07.01.2025 */
.fa-arrow-circle-right{
    color:#fdfdfd;
    border-radius: 6px;
    background: #4d10f7;
    /* border: 1px solid #d2dafc; */
    border: 1px solid #3604c0;
    padding: 5px 6px;
  }

.addrowsCompleteWrap {
    width: calc(100% - 26px);
    float: left;
    background-color: #f5f7f9;
    padding: 25px 10px;
    margin: 20px 0 20px 13px;
    border-radius: 10px;
}

.addrowsCompleteWrap h3 {
    width: 100%;
    float: left;
    font-size: 17px;
    margin: 0 0 7px 0;
    font-weight: 500;
    color: #444c54;
}

.addRowHeader {
    width: 100%;
    float: left;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid #e5e5e6;
    margin: 11px 0 0 0;
}

.actionBox {
    min-width: 40px;
    float: left;
}

.addRowHeader h4 {
    width: 100%;
    float: left;
    margin: 0 0 0 0;
    font-size: 12px;
    text-align: left;
}

.arWrap {
    width: 100%;
    float: left;
    margin: 0px 0 0 0;
}

.addRowBox {
    width: 100%;
    float: left;
    display: flex;
    gap: 8px;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #e5e5e6;
}

.addRowBox:first-child .deleteIcon i {
    display: none;
}

.addRowBox:last-child {
    border: 0;
}

.addRowBox .inptBox, .addRowBox select.inptBox {
    width: 100%;
    float: left;
    background-color: #fff;
    border: 1px solid #ddd;
    box-shadow: none !important;
    padding: 9px 13px !important;
    font-size: 12px;
    height: 40px;
    text-align: left;
    font-weight: 400;
}

.addRowBox .inptBox.highlightError {
    border: 1px solid #ff7886 !important;
}

.addRowBox .inptBox::placeholder {
    color: #4d4d4d;
}

.deleteIcon {
    min-width: 40px;
    float: left;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.deleteIcon i {
    color: #686868 !important;
    font-size: 21px;
    cursor: pointer;
}


.deleteScanner {
    min-width: 40px;
    float: left;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.deleteScanner i {
    color: #686868 !important;
    font-size: 21px;
    cursor: pointer;
}

.scanner:first-child .deleteScanner i {
    display: none;
}

.addBags {
    width: 30%;
    float: left;
    cursor: pointer;
    font-size: 13px;
    margin: 8px 0 0 0;
    color: #0f2fb2;
    text-transform: capitalize;
}

.addBags i {
    -webkit-text-stroke: 1px #f5f7f9;
    margin: 0 7px 0 0px;
}
.allDailySheetButton{
    background-color:#FF5F1F!important;
    color:#fff!important;
}
.allDailySheetButton:hover{
    background-color:#d43f04!important;
    color:#fff!important;
}

.generateAllTrButton{
    background-color:#0f202e!important;
    color:#fff!important;
    display: flex !important;
    gap: 10px;
    align-items: center;
}
.generateAllTrButton:hover{
    background-color:#073052!important;
    color:#fff!important;
    display: flex !important;
    gap: 10px;
    align-items: center;
}
.allEstimateButton{
    background: #4d10f7!important;
    color:#fff!important;
}
.allEstimateButton:hover{
    background: #2c029e!important;
    color:#fff!important;
}
/* .allEstimateButton i{
    color: #fff !important;
} */
.fa-file-pdf-o{
    color: #fff !important;
    font-size: 15px!important;
}
.addPaddyButton:hover{
background-color: #0c4e25!important;
}
/* 10 .01.25 */
.fa-address-card-o{
    color: #fdfdfd;
    border-radius: 6px;
    background: #222021;
    /* border: 1px solid #d2dafc; */
    border: 1px solid #080218;
    padding: 5px 5px;
    position: relative;

}
/* text area class */
.RiceUserTextarea{
    text-align: left!important;
    font-size:14px!important;
    resize:unset!important;
}
.input_disable{
    background-color: #cfcfcf!important;
}

.tablePaddyBags tbody tr td input, select, textarea {
    width: 100% !important;
    /* float: left; */
    padding: 7px 12px;
    outline: none !important;
    border-radius: 10px;
    border: 1px solid #D8DEFF;
    background: #FFF !important;
    box-shadow: 9px 9px 21px 0px rgba(205, 208, 213, 0.60) !important;
     text-align: left!important;
    font-size: 14px;
}

  .backBtn{
    background-color: #fe5f1f;
    padding: 14px 55px!important;
    float:right!important;
    border-radius: 8px!important;
    color: #fff!important;
    font-size: 14px!important;
    font-weight: 600!important;
    text-decoration: none!important;
    margin-left: 10px;
  }
  .backBtn:hover{
    background-color:#d8440a!important;
  }
  /* .input_listing:last-child {
    margin-top: 10px!important;

  } 17.01.25*
/* 11.01.25 */
.searchBoxContainer{
    display: none;
    /* padding: 0 0 70px 0!important; */
    margin-bottom: 30px;
    border: 2px solid #adadad;
    border-radius: 10px;
    padding: 14px 0;
}
 .filter{
    cursor:pointer;
}
 .SearchReportHeading{
    display: flex;
    justify-content: flex-end;
    margin-left: -19px;
    color: #4d10f7;

 }

 .addProductionQuintalBagWrapper{
    width: 100%;
    float: left;
    display: flex;
    gap:10px;
    margin-top: 20px;
    align-items: center;
 }
 .addProductionQuintalBagWrapper div{
    /* width: 16%;
    display: flex;
    flex-flow: column;
    gap: 5%; */
    display: flex;
    justify-content: end;
    width: 100%;
    float: left;
    gap: 10px;
    /* align-items: center; */
 }
 .addProductionQuintalBagWrapper div div{
    width: 19%;
    display: flex;
    flex-flow: column;
    gap: 5%;

 }
 .addProductionQuintalBagWrapper div label{
    width: 100%;
    float: left;
    font-size: 12px!important;
 }
 .addProductionQuintalBagWrapper div input{
    width: 100%;
    float: left;
    padding: 9px 13px!important;
 }

 /* .select2-container--default .select2-results__option--highlighted.select2-results__option--selectable  */

 .ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: .2em 0;
    background: #1e8349;
}
.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    text-align: center;
    background: #1e8349;
    color: white;
}

.ui-timepicker-div .ui-widget-header {
    margin-bottom: 8px;
    background: #1e8349;
    color: white;
}

.ui-datepicker .ui-datepicker-buttonpane button {
    float: right;
    margin: .5em .2em .4em;
    cursor: pointer;
    padding: .2em .6em .3em .6em;
    width: auto;
    overflow: visible;
    background: #1e8349;
    color: white;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: 1px solid #d3d3d3;
    background: #1e8349;
    font-weight: normal;
    color: #555555;
}

.TabGrid1 thead tr th{
    padding: 20px 10px;

}
.TabGrid1 thead tr td{
    padding: 10px 10px !important;
    text-align: center;
    padding: 10px 0;
}
 /* .TabGrid1 tbody td{
    padding: unset 10px;
    text-align: center;
}  */
.table tbody td {
    border-top: 1px solid rgba(226, 232, 255, 0.90) !important;
    border-bottom: 1px solid rgba(226, 232, 255, 0.90) !important;
    padding: 18px 16px;
    border: none;
}

.footerEnd{
    width: 100%;
    float: left;
    text-align: center;
    font-size: 14px;
    margin-top: 30px;
}

/* checkBox styling 30.01.25 */

.checkbox-wrapper-40 {
    --borderColor: #48c;
    --borderWidth: .125em;
  }

  .checkbox-wrapper-40 input[type=checkbox][disabled]{
  background: #d7d7d7;
  border:1px solid #d7d7d7;
  }
  .checkbox-wrapper-40 label {
    display: block;
    max-width: 100%;
    margin: 0 auto;
  width:auto;
  }

  .checkbox-wrapper-40 input[type=checkbox] {
    -webkit-appearance: none;
    appearance: none;
    vertical-align: middle;
    background: #fff;
    font-size: 1.4em;
    border-radius: 0.125em;
    display: inline-block;
    border: var(--borderWidth) solid var(--borderColor);
    width: 1em;
    height: 1em;
    position: relative;
  }
  .checkbox-wrapper-40 input[type=checkbox]:before,
  .checkbox-wrapper-40 input[type=checkbox]:after {
    content: "";
    position: absolute;
    background: var(--borderColor);
    width: calc(var(--borderWidth) * 3);
    height: var(--borderWidth);
    top: 50%;
    left: 10%;
    transform-origin: left center;
  }
  .checkbox-wrapper-40 input[type=checkbox]:before {
    transform: rotate(45deg) translate(calc(var(--borderWidth) / -2), calc(var(--borderWidth) / -2)) scaleX(0);
    transition: transform 200ms ease-in 200ms;
  }
  .checkbox-wrapper-40 input[type=checkbox]:after {
    width: calc(var(--borderWidth) * 5);
    transform: rotate(-45deg) translateY(calc(var(--borderWidth) * 2)) scaleX(0);
    transform-origin: left center;
    transition: transform 200ms ease-in;
  }
  .checkbox-wrapper-40 input[type=checkbox]:checked:before {
    transform: rotate(45deg) translate(calc(var(--borderWidth) / -2), calc(var(--borderWidth) / -2)) scaleX(1);
    transition: transform 200ms ease-in;
  }
  .checkbox-wrapper-40 input[type=checkbox]:checked:after {
    width: calc(var(--borderWidth) * 5);
    transform: rotate(-45deg) translateY(calc(var(--borderWidth) * 2)) scaleX(1);
    transition: transform 200ms ease-out 200ms;
  }
  .checkbox-wrapper-40 input[type=checkbox]:focus {
    outline: calc(var(--borderWidth) / 2) dotted rgba(0, 0, 0, 0.25);
  }

  .errorBox{
    width:100%;
    float:left;
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
    font-size: 14px;
}

.deleteMultiselectButton{
    background-color: rgb(226, 3, 3)!important;
    color:#fff!important;
    font-size:16px;
}
.deleteMultiselectButton:hover{
    background-color:rgb(212, 68, 68)!important;
    color:#fff;
}
.select2-container{
    width: 100%!important;
}
.select2-container--default .select2-selection--single{
    height: 50px!important;
    border-radius: 10px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 5px;
}

.select2-container--default .select2-selection--single {
    /* background-color: #fff;
    border: 1px solid #aaa; */
    border-radius: 10px!important;
}
.popupRiceBagsInfo{
    display: none;
    /* background-color:#eafdf4; */
    background-color: #eeeeee;
    border-radius: 0 !important;
    position: absolute;
    /* top: 65px; */
    /* left: 20%; */
    /* left:38px;
    width: 80%; */
    top: 52px;
    /* left: 20%; */
    left: 30%;
    width: 66%;
    z-index: 99;
    min-height: 231px;
    box-shadow: 0px 4px 9px 0px rgba(0, 0, 0, 0.17)!important;
   overflow-y: auto;
   padding: 0;
   /* margin: 0 auto; */
}

.popupRiceBagsInfo::-webkit-scrollbar {
    display: none;
  }
 .popupRiceBagsInfoTable{
    width: 100%!important;
    padding: 0 0!important;
    /* margin-left: 25px; */
    /* display: flex;
    justify-content: center;
    ; */
    margin-top: -25px;
    margin-bottom: -35px;

 }
 .popupRiceBagsInfoTable thead tr{
    /* background-color: #4d10f7!important; */
    background-color: #b9b4c7!important;
    color:#000;
    color:#000;
    border: 1px solid #7d7b83!important;

 }

 .popupRiceBagsInfoTable thead tr:hover{
    /* background-color: #4d10f7!important; */
    color:#000;

    background-color: #b9b4c7!important;

 }
 .popupRiceBagsInfoTable thead tr td{
    /* padding: 18px 0!important; */
    padding:10px 0;
 }
 .popupRiceBagsInfoTable tbody tr td{
    text-align: center;
    padding:10px 5px!important;


 }
 .popupRiceBagsInfoTable tbody tr{
    /* background-color: #f1f1f7!important; */
    background: #c8e0f3 !important;
    color: #020202;
    font-weight:600;
    height: 20px!important;
 }
 .popupRiceBagsInfoTable tbody tr:hover{
    /* background-color: #f1f1f7!important; */
    background: #c8e0f3 !important;
    color: #020202;
    color: #020202!important;
 }
 /* .popupRiceBagsInfo{
    border: 2px solid rgb(0, 0, 0);

 } */
/* tabole padding */
 .table tbody td{
    padding: 18px 5px!important;

 }
 .table-responsive{
    overflow-x:unset!important;
 }
 .infoIcon{
    color: #fdfdfd;
    border-radius: 6px;
    background: #007bff;
    border: 1px solid #0354ac;
    padding: 5px 6px;
 }

/* .printBrandLoadingSlip */
 .printBrandLoadingSlipWrapper{
    width: 100%;
    float: left;

 }
 .printBrandLoadingSlipWrapper .leftPart{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:20px;
 }
 .fa-address-card-o:before {
    content: "G"!important;
    padding: 4px 3px;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Inter';

}
.fa-arrow-circle-right:before {
    content: "L"!important;
    padding: 5px 3px;
    font-weight: 800;
    font-size: 14px;
    font-family: 'Inter';
}
.fa-calendar-plus-o:before {
    content: "D"!important;
    padding: 2px;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 14px;
}
.fa-arrows:before {
    content: "E"!important;
    padding: 2px;
    font-family: 'Inter';
    font-weight: 700;
    font-size: 13.300px;
    background-color:#175ce3;
    border:1px solid #0e4bc5;
    color:#fff;
    padding: 4px 8px;
    border-radius: 6px;
}
.activeLink{
    background-color: #1e8349;
    color:#fff!important;
    border-radius:10px;
    i{
        color:#fff!important;
    }
}
.activeLink:hover{
   background-color:#1e8349!important;
   color:#fff!important;
   /* border:none; */

}
.sideNav_links li a:hover{
    /* background: #FFE3DB; 24.09.2024 */
    background-color:#1e8349!important;
    /* color: #FF5B45;  24.09.2024 */
    color: #fff !important;;
    border-radius: 10px;
    /* max-height: 90px; */
    /* margin-top: -10px !important; */
    /* padding: 10px 0 10px 0; */
    /* border-right: 6px solid #FF5B45; */
}
.inputBoxCompleteWrapper{
    width: 100%;
    float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    gap:8px;
}
.inputBoxCompleteWrapper .inputBox{
    width: 100%;
    float: left;
}
.inputBoxCompleteWrapper .inputBox label{
  font-size: 12px;
  border-bottom:1px solid #e5e5e6;
}
.inputBoxCompleteWrapper .inputBox input{
    font-size: 12px;
    height: 40px;
  }
  .tablePaddyBags tbody tr td input, select, textarea {
    width: 100% !important;
    /* float: left; */
    padding: 12px 12px;
    outline: none !important;
    border-radius: 10px;
    border: 1px solid #D8DEFF;
    background: #FFF !important;
    box-shadow: 9px 9px 21px 0px rgba(205, 208, 213, 0.60) !important;
    text-align: left !important;
    font-size: 14px;}
    .AddPaddyBasicWrapper li{
        width: 100%;
        float: left;
    }

   .AddPaddyBasicWrapper .input_listing li{
    width: 100%;
   }
   .AddPaddyBasicWrapper .select2-container--default .select2-selection--single .select2-selection__arrow b{
    margin-top: 4px;
   }
#bags-wrapper .select2-container .select2-selection--single{
height: 40px!important;
border: 1px solid #ddd!important;
box-shadow: none !important;
/* padding: 9px 13px !important; */
font-size: 12px!important;
}
#bags-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
    padding-top: 1px;
}
 /* .select2-container--default .select2-selection--single .select2-selection__arrow b
{
    margin-top: 0;
    color:#ddd;
} */
#bags-wrapper .select2-container--default .select2-selection--single .select2-selection__rendered{
    color:#575757!important;
}
.ApproveSectionEditOthers{
    display: flex;
    gap:5px;
    position:relative;
    align-items: baseline;

}
.ApproveSectionEditOthers:nth-child(1){
    align-items: center;
}
.ApproveSectionEditOthers {
    white-space: nowrap;
}

.ApproveSectionEditOthers span input[type='text'] {
    width: 340px;
}

.ApproveSectionEditOthers label{
    width: unset!important;
}

.ApproveWrapper{
    width: calc(100% - 26px);
    float: left;
    border: 1px solid #dbdbdb;
    border-radius: 10px;
    margin-top: 10px;
}
.ApproveWrapper .submit_btn{
    margin-top: 40px;
}
.ApproveSectionEditOthers p{
    position: absolute;
    top: 57px;
}
#approve {
    width: 20px;
    height: 20px;
    accent-color: #007bff; /* Change to desired color */
    cursor: pointer;
}
.approvedMessage
 {
    width:calc(100% - 26px);
    float: left;
    padding: 10px;
    background: #d4edda;
    font-weight: 400;
    color: #353030;
    /* font-weight: 600; */
    border: 1px solid #c3e6cb;
    font-size: 14px;
    border-radius: 5px;
    display: flex;
    gap: 10px;
    align-items: center;
    color:#155724;
    margin: 20px 0 20px 13px;
}
.viewEstimtIcon{
    color: #0c5460;
    border-radius: 6px;
    background:#baf5ff;
    /* border: 1px solid #d2dafc; */
    border: 1px solid #71a8b1;
    padding: 5px;
}
.paddyUsedValue{
    width: 18%;
    float: left;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 15px 30px;
    margin-top: 5px;
    /* font-family: 'Segoe UI', sans-serif; */
    font-size: 12px;
    color: #333;
}
.showAvailablityHeading{
    width: 100%!important;
    float: left!important;
    font-size: 14px!important;
    margin: 10px 0!important;
    color:#0c5460!important;
}
/* .showAvailablityWrapper{
    width: 100%;
    float: left;
    display: flex;
    flex-flow: row wrap;
    gap:5%;
} */
 .showAvailablityWrapper{
    width: 100%;
    float: left;
    display: flex;
    flex-flow: row wrap;
    gap: 5px;
    
 }

 
 .showAvailablityborder{
    border: 1px solid #bee5eb;
    padding: 20px;
    border-radius: 20px;
    background-color:#d1ecf1;
    width: 100%;
    float: left;
   


 }
 
------WebKitFormBoundaryLr3gwD0V3uzB4v5D
Content-Disposition: form-data; name="overwrite"

0