
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Allura&display=swap');

:root {
	--white: #fff;
	--black:#000;
	--teal-5: #edf5f7;
	--teal-10: #daeff2;
	--teal-20: #c9e5e8;
	--teal-30: #a1d5d3;
	--teal-40: #7cc4c3;
	--teal-50: #5ab2b3;
	--teal-60: #50a0a1;
	--teal-70: #408686;
	--teal-75: #357d7d;
	--teal-80: #316b6c;
	--teal-90: #224e4d;
	--teal-100: #102f31;
	--box-shadow:1px 1px 5px 1px #224e4d8a;
}


body{
	font-family: 'Montserrat', sans-serif;
	font-size: 14px;
	line-height: 21px;
	color: var(--teal-100);
	font-weight: 400;
	background: #edf5f747;
}

/* container css start */
.container{
	max-width:1920px;
	width:100%;
	padding:0 50px;
}
@media (max-width: 1420px){
	.container{
		padding:0 20px;
	}
}
@media (max-width: 1199px){
	.container{
		padding:0 20px;
	}
}
/* container css end */


::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}

/* Thumb */
::-webkit-scrollbar-thumb {
  background: #9E9E9E;
  border-radius: 10px;
}

/* Hover */
::-webkit-scrollbar-thumb:hover {
  background: #616161;
}

/* */
.MainContent{
	min-height: 700px;
	padding:50px 0
}
.w-100{
	width:100%;
}
.mt_30{
	margin-top: 30px;
}
.mt_20{
	margin-top: 30px;
}
.mt_10{
	margin-top:10px;
}
.mb_0{
	margin-bottom:0px !important;
}
.mb_14{
	margin-bottom: 14px
}
.mb_20{
	margin-bottom:20px;
}
.mb_30{
	margin-bottom:30px;
}
.gap-5{
	gap:5px;
}
.gap-10{
	gap:10px;
}
.row-gap-15{
	row-gap:15px;
}
.height_unset{
	height:unset !important;
}
@media (max-width: 1199px){

}
/* */

a{
	text-decoration: unset !important;
}
input, select{
	height: 40px;
	border-radius: 0;
    background: var(--white);
    border: 1px solid #d7d7d7;
    padding: 0 15px;
}
input::placeholder{
	color:var(--teal-100);
	opacity:1;
}
textarea.set_textareaHeight{
	height: 40px;
}
textarea.form-control{
	resize: none;
}
.form-control{
    color: var(--teal-100);
    font-size: 14px;
    height: 40px;
    line-height: 40px;
    padding:0 10px;
    border:1px solid #102f3152;
}
.form-control:focus{
	box-shadow: unset;
	outline:unset;
	color:inherit !important;
	border-color:var(--teal-100);
} 
input.form-control.setPItalic::placeholder {
    font-style: italic;
}
.small_title{
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    margin: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color:var(--teal-60);
}
.small_title::after {
    content: "";
    flex: 1;
    border-bottom: 1px solid var(--teal-60);
}
.box_small_heading{
	font-size: 16px;
    line-height: 24px;
    font-weight: 600;
    margin:0 0 15px;
}
.form_data input[type=radio],
.form_data input[type=checkbox] {
    width: 20px;
    height: 20px;
}
.form_data{
	margin:0 0 15px;
}
.form_data label,
label{
	margin: 0 0 3px;
	font-size: 14px;
	font-weight: 500;
}
.form_data.border_form_data{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	column-gap: 20px;
	padding: 0 10px;
	border: 1px solid #102f3152;
	min-height: 40px;
	border-radius: 6px;
	margin: 0 0 15px;
}
.form_data.border_form_data label{
	width: 100%;
	justify-content: space-between;
}
/* btn css start*/
.theme-btn{
	height: 40px;
	border-radius: 25px;
	background-color: var(--teal-50);
	line-height: 38px;
	padding: 0 20px;
	min-width: 140px;
	border: 1px solid var(--teal-50);
	font-size: 14px;
	color: #fff;
	font-weight: 600;
	display: inline-block;
	text-transform: uppercase;
	box-shadow: 1px 4px 5px 0px #5ab2b359;
	outline: none;
}
.theme-btn:hover,
.theme-btn:focus{
	background-color: #fff;
	border-color:var(--teal-50);
	color:var(--teal-50);
	box-shadow: inherit;
}
.theme-btn-dark{
	background-color: var(--teal-80);
	color: #fff;
}
.theme-btn-dark:hover,
.theme-btn-dark:focus{
	background-color: var(--teal-50);
	color: #fff;
}
.small-theme-btn{
	height:30px;
	line-height: 28px;
	min-width: 80px;
}
.theme-border-btn{
	height: 40px;
	border-radius: 25px;
	background-color: #224e4d0d;
	line-height: 38px;
	padding: 0 20px;
	min-width: 140px;
	font-size: 14px;
	color: var(--teal-50);
	font-weight: 600;
	display: inline-block;
	text-transform: uppercase;
	box-shadow: 1px 4px 5px 0px #5ab2b359;
	border: 1px solid var(--teal-50);
	outline: none;
}
.theme-border-btn:hover,
.theme-border-btn:focus{
	background-color: var(--teal-50);
	color:var(--white);
}
/* btn css end*/

.title_name {
    font-size: 26px;
    line-height: 34px;
    color: var(--teal-100);
    font-weight: 600;
    margin: 0 0 10px;
    text-transform: uppercase;
}

/*Modal css start*/
.modal .modal-header{
	border: none;
	background: var(--teal-75);
	padding: 15px 33px;
}
.modal .modal-header .modal-title{
	font-size: 24px;
	line-height: 32px;
	font-weight: 600;
	color: #fff;
}
.modal .modal-body {
    padding: 30px 40px;
}
@media (min-width: 576px) {
	.modal-dialog{
		max-width: 600px;
	}
}
/*Modal css end*/

/*Header css start*/
.header{
	background: var(--teal-90);
	padding:15px 0;
	color:var(--white);
}
.header .navbar{
	padding:0;
}
.header .logo_d img{
	width:100px;
	display:block;
}
header .navbar-expand-lg .navbar-nav .nav-link{
	padding: 10px 15px 8px;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	border-radius: 10px;
}
header .navbar-expand-lg .navbar-nav .nav-link:hover,
header .navbar-expand-lg .navbar-nav .nav-link:focus{
	background: var(--teal-5);
	color: var(--teal-90);
}
header .logout_d{
	gap:15px;
}
header .logout_d span{
	color:  var(--teal-5);
	font-size: 14px;
	font-weight: 400;
}
header .logout_d span b{
	font-weight: 600;
}
header .logout_d a{
	padding: 10px 15px 8px;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 600;
	border-radius: 10px;
	background:var(--teal-5);
	color:var(--teal-90);
}
header .logout_d a:hover,
header .logout_d a:focus{
	background:var(--teal-20);
}
@media (min-width: 992px) {
	.header .logo_d{
		width:200px;
	}
	.header .collapse{
		width:calc(100% - 200px);
		justify-content: space-between;
		gap: 10px;
	}
	header .navbar-expand-lg .nav-item{
		margin:0 10px;
	}
}
@media (max-width: 991px) {
	header .logout_d{
		padding:0 15px;
	}
}
/*Header css end*/

/*homepage css start*/
.homeBlockList .item_d{
	margin:0 0 30px;
}
.homeBlockList a{
	background: var(--teal-90);
	border:1px solid var(--teal-90);
	/*box-shadow: 0px 0px 10px 0px var(--teal-50);*/
	min-height: 300px;
	padding: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 15px;
}
.homeBlockList a:hover{
	background: var(--teal-50);
    border-color: var(--teal-50);
}
.homeBlockList h4{
	margin:15px 0 0;
	font-size: 22px;
	line-height: 30px;
	color:var(--white);
	font-weight: 600;
	margin: 20px 0 0;
	text-transform: uppercase;
	text-align: center;
}

.homeBlockList .img_d img{
	width:90px;
	max-width:90px;
	margin:0 auto;
	display:block;
}
@media (min-width: 576px) and (max-width: 1199px) {
	.homeBlockList .col-sm-3{
		-ms-flex: 0 0 33.33%;
		flex: 0 0 33.33%;
		max-width: 33.33%;
	}
	.homeBlockList a{
		min-height: 230px;
	}
	.homeBlockList .img_d img{
		width: 60px;
		max-width: 60px;
	}
	.homeBlockList h4{
		font-size: 20px;	
		line-height: 28px;
	}
}
/*homepage css end*/

/*Accordion css start*/
.accordion_container{
	border: 1px solid #102f3152;
	margin: 0 0 20px;
	border-radius: 5px;
	overflow: hidden;
	background: var(--teal-5);
}
.accordion_container .accordion_head{
	padding: 13px 36px 13px 15px;
	font-size: 15px;
	background: var(--teal-5) url(../images/plus_i.png) no-repeat scroll right center;
	background-size: 14px;
	background-position-x: 99%;
	font-weight: 500;
	cursor: pointer;
}
.accordion_container .accordion_head.active {
    background: var(--teal-10) url(../images/minus_i.png) no-repeat scroll right center;
    background-size: 13px;
    background-position-x: 99%;
}
.accordion_container .accordion_body{
	padding:15px;
	background: var(--white);
	display:none;
}
/*Accordion css end*/

/* Toolbar css start*/
.toolbar_d .col-md-2{
	-ms-flex: 0 0 20%;
	flex: 0 0 20%;
	max-width: 20%;
}
.toolbar_d .form-control{
	background: var(--teal-5);
	border: 1px solid var(--teal-20);
	box-shadow: 1px 4px 7px 0px #5ab2b359;
	border-radius: 5px;
	font-size: 14px;
	border-radius: 5px;
}
.toolbar_d .form-control.quickSearch{
	background: var(--teal-5) url(../images/search.png) no-repeat scroll left center;
	background-size: 16px;
	padding-left: 34px;
	background-position-x: 10px;
}
.toolbar_d select.form-control{
	background: var(--teal-5) url(../images/down-arrow.png) no-repeat scroll right center;
	background-position-x: 97%;
	background-size: 12px;
	-webkit-appearance: none;
}
@media (max-width: 1000px){
	.toolbar_d .col-md-2{
		-ms-flex: 0 0 33.33%;
		flex: 0 0 33.33%;
		max-width: 33.33%;
	}
	.toolbar_d .col-md-4{
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
}
@media (max-width: 767px){
.toolbar_d .col-md-2,
.toolbar_d .col-md-4{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}
/* Toolbar css end*/

/* table css start*/
.HS_table_d .table_d {
	overflow-x: scroll;
	width: 100%;
}
.HS_table_d table {
    background: #fff;
    margin: 0;
}
.HS_table_d table thead {
    background: var(--teal-75);
}
.HS_table_d .table>thead>tr>th {
    border-bottom: none;
    font-size: 14px;
    color: #ffffff;
    font-weight: 500;
    position: relative;
    text-transform: uppercase;
    vertical-align: top;
    min-width: 110px;
}
.HS_table_d .table>tbody>tr>td, 
.HS_table_d .table>tbody>tr>th, 
.HS_table_d .table>thead>tr>td, 
.HS_table_d .table>thead>tr>th {
    padding: 10px;
    border-top: none;
    vertical-align: middle;
}
.HS_table_d .table>thead>tr>th:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 65%;
    right: 0;
    background: #fff;
    top: 50%;
    transform: translate(0, -50%);
}
.HS_table_d .table>thead>tr>th:last-child:after {
    width: 0px;
}
.HS_table_d .table-striped>tbody>tr:nth-of-type(even){
	background-color:var(--teal-5)
}
.HS_table_d .table-striped tbody tr:nth-of-type(odd){
	background-color: transparent;
}
.HS_table_d .table>tbody>tr>td, 
.HS_table_d table select {
    font-size: 14px;
    color: var(--teal-100);
    font-weight: 500;
}
.HS_table_d table select{
	border: 1px solid #102f3152;
    box-shadow: 1px 4px 7px 0px #5ab2b359;
    background-color:#fff;
}
.HS_table_d table select:focus{
	outline: unset;
	background: var(--teal-5);
}
.HS_table_d table select option{
	background:var(--white);
}
.HS_table_d .table>tbody>tr>td a{
	color:inherit;
}
.HS_table_d .table>tbody>tr>td a.theme-btn{
	color:var(--white);
}
.HS_table_d .table>tbody>tr>td a.theme-btn:hover,
.HS_table_d .table>tbody>tr>td a.theme-btn:focus{
	color:var(--teal-50);
}
.HS_table_d .actionItem {
    margin: 0 4px;
}
@media (max-width: 1199px){
	.HS_table_d .table>thead>tr>th{
		min-width:170px;
	}
}
/*table css end*/

/*Secondary table css start*/
.HS_table_d.HS_table_secondary table thead{
	background:var(--teal-20);
}
.HS_table_d.HS_table_secondary .table>thead>tr>th{
	font-size: 12px;
    line-height: 16px;
    min-width: 130px;
    color:var(--teal-100);
}
.HS_table_d.HS_table_secondary .table>thead>tr>th:after{
	display: none;
}
.HS_table_d.HS_table_secondary .table>thead th,
.HS_table_d.HS_table_secondary .table tbody td{
	border-right: 1px solid var(--teal-30);
}
.HS_table_d.HS_table_secondary .table>thead tr:nth-child(2) th{
	border-top: 1px solid var(--teal-30);
}
.HS_table_d.HS_table_secondary .table>tbody>tr>td, 
.HS_table_d.HS_table_secondary table select{
	font-size: 12px;
    line-height: 16px;
    vertical-align: top;
}
.HS_table_d.HS_table_secondary table select{
	height:30px;
}
.HS_table_d.HS_table_secondary table select.status_active{
    background-color: #FFF3CD;
	border-color: #FFF3CD;
}
.HS_table_d.HS_table_secondary table select.status_inactive{
    background-color: #F8D7DA;
    border-color: #F8D7DA;
}
.HS_table_d.HS_table_secondary table select.status_complete{
	background-color:#a5d48a;
	border-color:#a5d48a;
}
.HS_table_d.HS_table_secondary table select.status_in_progress{
 	 background-color: #ff98009e;
     border-color: #ff98009e;
}
.HS_table_d.HS_table_secondary table select.status_complete{
	 background-color: #a5d48a;
	 border-color:#a5d48a;
}
.HS_table_d.HS_table_secondary table select.status_not_started,
.HS_table_d.HS_table_secondary table select.status_not_started.form-control:focus{
    background-color: #df5650;
    border-color:#df5650;
    color: #fff;
}
.HS_table_d.HS_table_secondary .table tbody td{
	 border: 1px solid var(--teal-30);
}
.HS_table_d.HS_table_secondary table .date__d{
	margin-top: 10px;
	text-align: center;
}
.HS_table_d.HS_table_secondary table .no__col{
	min-width: 60px !important;	
}
.HS_table_d.HS_table_secondary .table thead th:first-child{
	position: sticky;
	left: 1px;
	z-index: 92;
	background: var(--teal-75);
	color:#fff;
}
.HS_table_d.HS_table_secondary .table thead th:first-child,
.HS_table_d.HS_table_secondary .table tbody tr td:first-child {
	  position: sticky;
    left: 0;
    z-index: 91;
   background: var(--teal-75);
   color:#fff;
}
.HS_table_d.HS_table_secondary .table .totalRow td{
	font-weight: 700;
	background:var(--teal-20);
}
.table .notes_col{
	min-width: 400px;
	text-align: center;
}
.banking__table .table td .setBtmBorder{
	border-bottom: 1px solid var(--teal-30);
	margin: 0 -10px 0;
	padding: 0 10px 10px;
}
.banking__table .table td .date_d{
	padding: 10px 0 0;
	min-height: 26px;
}
.banking__table .table .form__data input[type=text]{
	height: 32px;
	border-color: #ced4da;
	margin: 10px 0 0;
	font-size: 12px;
	min-width: 120px;
}
.banking__table .table .ver_middle{
	vertical-align: middle !important;
}
/*Secondary Table css end*/
/* custom checkbox */
.custom_checkbox{
	width:22px;
	height:22px;
	position: relative;
	display: block;
	margin:0 auto;

}
.custom_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer !important;
  height: 0 !important;
  width: 0 !important;
}
.custom_checkbox .checkmark {
	position: absolute;
	top: 0;
	left: 0;
	height: 22px;
	width: 22px;
	background-color: transparent;
	border: 1px solid #ced4da;
	border-radius: 2px;
}
.custom_checkbox input:checked ~ .checkmark {
  background-color: #198754;
}
.custom_checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.custom_checkbox input:checked ~ .checkmark:after {
  display: block;
}
.custom_checkbox input:disabled ~ .checkmark {
	background-color: #f8f9fa;
}
.custom_checkbox input:checked:disabled ~ .checkmark {
	background-color: #198754;
}
.custom_checkbox input:checked:disabled ~ .checkmark:after {
    cursor: not-allowed;
}

.custom_checkbox .checkmark:after {
	left: 8px;
	top: 3px;
	width: 5px;
	height: 12px;
	border: solid white;
	border-width: 0 3px 3px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}
/* custom checkbox end */

/*HS tab sec css start*/
.HS_innerSec .HS_Sidebar{
	width: 260px;
	position: sticky;
	top: 20px;
	z-index: 1;
	border-radius: 0;
	padding: 0;
	overflow: hidden;
}
.HS_innerSec .HS_Sidebar .HS_tabs{
	padding:10px;
	margin:0;
	list-style: none;
}
.HS_innerSec .HS_Sidebar .HS_tabs li a{
    display: flex;
    align-items: center;
    font-size: 15px;
    font-weight:600;
    text-transform: uppercase;
    gap: 12px;
    padding: 25px 20px;
    cursor: pointer;
    color: var(--teal-90);
    margin-bottom: 20px;
    background: var(--teal-5);
    border-radius: 15px;
    box-shadow: var(--box-shadow);
}
.HS_innerSec .HS_Sidebar .HS_tabs li a .no_hover_img{
	display: block;
}
.HS_innerSec .HS_Sidebar .HS_tabs li a .hover_img{
	display: none;
}
.HS_innerSec .HS_Sidebar .HS_tabs li a:hover,
.HS_innerSec .HS_Sidebar .HS_tabs li a.active{
	background: var(--teal-90);
	color: #fff;
	font-weight: 700;
}
.HS_innerSec .HS_Sidebar .HS_tabs li a:hover .no_hover_img,
.HS_innerSec .HS_Sidebar .HS_tabs li a.active .no_hover_img{
	display: none;
}
.HS_innerSec .HS_Sidebar .HS_tabs li a:hover .hover_img,
.HS_innerSec .HS_Sidebar .HS_tabs li a.active .hover_img{
	display: block;
}
.HS_innerSec .HS_content{
	width: calc(100% - 310px);
}
.HS_innerSec .HS_tab_content {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    box-shadow:var(--box-shadow);
    margin: 0 0 30px;
    overflow: hidden;
}
.headerWithBg{
	background: var(--teal-75);
	padding: 10px 20px;
	border-radius: 5px;
	text-align: center;
	margin: 0 0 20px;
}
.headerWithBg .title_name_with_bg{
	font-weight: 700;
    font-size: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    text-transform: uppercase;
    color: #fff;
}
.headerWithBg .icon__d{
	width: 30px;
	height: 30px;
	background: #fff;
	border-radius: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.headerWithBg .icon__d svg path{
	fill: var(--teal-75);
}
@media (max-width: 1440px){
	.HS_innerSec .HS_Sidebar .HS_tabs li a{
		padding: 18px 20px;
	}
}
@media (max-width: 1420px){
	.HS_innerSec .HS_Sidebar{
		width:210px;
	}
	.HS_innerSec .HS_content {
	    width: calc(100% - 240px);
	}
	.HS_innerSec .HS_Sidebar .HS_tabs li a{
		padding:14px 16px;
	}
}
@media (max-width: 767px){
	.HS_innerSec{
		flex-wrap:wrap;
		row-gap:20px;
	}
	.HS_innerSec .HS_Sidebar{
		width:100%;
		position: unset;
	}
	.HS_innerSec .HS_content{
		width:100%;
	}
}
/*HS tab sec css end*/

/* toggle button css start*/
.MRSBtn{
	border-radius: 0;
	position: relative;
	width: 100px;
	height: 40px;
	margin: 0;
	overflow: hidden;
	background: #fff;
	border: 1px solid #252525;
	border-radius: 50px;
}
.MRSBtn .checkbox {
    position: relative;
    width: 100% !important;
    height: 100% !important;
    padding: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
    z-index: 3;
}
.MRSBtn .knobs {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
    z-index: 2;
}
.MRSBtn .knobs:before, 
.MRSBtn .knobs:after, 
.MRSBtn .knobs span {
    position: absolute;
    top: 0;
    width: 50px;
    height: 40px;
    font-size: 16px;
    font-weight: 400;
    text-align: center;
    line-height: 40px;
    padding: 0;
    border-radius: 0;
    transition: 0.3s ease all;
}
.MRSBtn .knobs:after {
    content: "Mrs";
    right: 0px;
    color: #252525;
}
.MRSBtn .knobs span {
    display: inline-block;
    left: 4px;
    color: #fff;
    z-index: 1;
}
.MRSBtn .knobs:before {
    content: "";
    left: 0px;
    background-color: var(--teal-50);
    color:#fff;
}
.MRSBtn .checkbox:checked + .knobs:before {
	left: 0;
	color: #252525;
	background: transparent;
}
.MRSBtn .checkbox:checked + .knobs:after {
    color: #fff;
    background:var(--teal-50);
}
.MRSBtn .checkbox:checked + .knobs span {
	color:#252525;
}
/*toggle button css end*/

/* Marketing Detail tab css start*/
.marketing_mob .form_data{
	width: calc(100% - 100px);
}
.marketing_mob .calling_btns .call_accept{
	background: #4bc74b;
	border-radius: 100%;
	cursor: pointer;
	color: #fff;
	width: 40px;
	height: 40px;
	margin: 0 !important;
	display: flex;
	align-items: center;
	justify-content: center;
}
.marketing_mob .calling_btns .call_accept .fa-solid.fa-phone{
	color:#fff !important;
}
.marketing_mob .calling_btns .call_reject{
    background: #ff4a4a;
    border-radius: 100%;
    cursor: pointer;
    color: #fff;
    width: 40px;
    height: 40px;
    margin: 0 !important;
    display: flex;
    align-items: center;
    justify-content: center;
}
.marketing_tab_faqs{
	column-gap:20px
}
.accordion_container{
	width:calc(33.33% - 14px);
}
@media (max-width: 1400px){
	.accordion_container{
		width:calc(50% - 14px);
	}
}
@media (max-width: 1023px){
	.accordion_container{
		width:100%;
	}
}
/* Marketing Detail tab css end*/

/*Profile tab css start*/
.box_tile{
	box-shadow: var(--box-shadow);
	border-radius: 10px;
	padding:20px;
	height: -webkit-fill-available;
}
.box_tile .small_title{
	margin-top:0;
}
.box_tile .info_grid{
	row-gap:14px;
}
.box_tile .info_grid .icon_text{
	width:calc(50% - 7px);
}
.box_tile .info_grid.BDGrid  .icon_text{
	width:calc(33.33% - 7px);
}
.box_tile .info_grid.document_box .icon_text{
	width:100%;
}
.box_tile .info_grid.first__d .icon_text{
	width:calc(25% - 11px);
	align-items: flex-start !important;
	color:var(--teal-60);
}
.box_tile .info_grid.first__d.profile_first__d .icon_text{
	width:100%;
}
.box_tile .info_grid.banking_first__d .icon_text{
	width:calc(25% - 11px);
}
.box_tile .icon_text,
.bankingTabTotals .icon_text{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #edf5f775;
    padding: 12px 14px;
    border-radius: 10px;
    transition: all 0.3s ease;
	font-weight: 500;
	box-shadow: 1px 0px 3px 1px #d7d7d7;
}
.box_tile .icon_text .icon{
	width: 38px;
	height: 38px;
	border-radius: 50%;
	background: #e0e7ff;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #4338ca;
	font-size: 15px;
}
.box_tile .icon_text .text {
    font-size: 14px;
    font-weight: 500;
    width:calc(100% - 50px);
}
.box_tile .info_grid.first__d .icon_text .text{
	font-size: 12px;
}
.box_tile .icon_text .text span{
	display:block;
	color:var(--teal-100);
	font-size: 14px;
}
.box_tile .icon_text .text span a{
	color:inherit;
}
.box_tile .icon_text .fa-solid{
	color:var(--teal-75);
	font-size: 15px;
}
.box_tile .signed_d{
	color: #4CAF50;
	font-weight: 700;
}
.box_tile .email__text{
	word-break: break-all;
}
.box_tile .icon_text .fa-file-pdf{
	color: #E63946;
	font-size: 17px;
}
.box_tile .icon_text.viewPDF{
	color:E63946;
}
.fa-envelope,
.box_tile .icon_text .fa-solid.fa-envelope{
   color: #2196F3;
}
.fa-phone,
.box_tile .icon_text .fa-solid.fa-phone{
   color: #4CAF50;
}
.fa-location-dot,
.box_tile .icon_text .fa-solid.fa-location-dot{
   color: #FF5722;
}
.box_tile .icon_text .fa-solid.fa-circle-check{
   color: #9E9E9E;
}
.fa-user,
.box_tile .icon_text .fa-solid.fa-user{
   color: #3F51B5;
}
.datepicker .fa-calendar{
	color:#fff;
}
.fa-calendar,
.box_tile .icon_text .fa-solid.fa-calendar{
   color: #2196F3;
}
.timepicker .fa-clock{
	color:#fff;
}
.fa-clock,
.box_tile .icon_text .fa-solid.fa-clock{
   color: #FF9800;
}
.box_tile.paymentBoxTile{
	height:-webkit-fill-available;
}
.box_tile.paymentBoxTile .icon_text{
	margin:0 0 14px;
}
.box_tile.paymentBoxTile .icon_text:last-child{
	margin:0;
}
.box_tile .payment_detail_form{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.box_tile .payment_detail_form > div{
	width: calc(50% - 7px);
}
.box_tile .payment_detail_form .payment-header{
	display: flex;
    align-items: center;
    gap: 10px;
}
.box_tile .payment_detail_form input[type=checkbox]{
	width: 22px;
	height: 22px;
	border-radius: 0;
	border: 1px solid var(--teal-100);
}
.box_tile .payment_detail_form label{
	font-size: 16px;
    font-weight: 600;
    margin:0;
}
.box_tile .payment-info > div{
	margin: 0 0 5px;
}
.box_tile .payment-amount{
	font-size: 16px;
	font-weight: 700;
}
.box_tile .payment-date{
	color:var(--teal-50);
}
.box_tile .payment-date .fa-solid{
	color:inherit;
}
.box_tile .payment-status.s_paid{
    color: #4CAF50;
}
.box_tile .payment-status.s_paid .fa-solid{
	color:inherit;
}
.box_tile .payment-status.s_notStarted{
    color: #9E9E9E;	
}
.box_tile .payment-status.s_notStarted .fa-solid{
	color:inherit;
}
.box_tile .payment-status.s_inProgress{
    color: #FFC107;	
}
.box_tile .payment-status.s_inProgress .fa-solid{
	color:inherit;
}
.box_tile .proLogLists{
    max-height: 270px;
    overflow-y: scroll;
}
.box_tile.logs__box .icon_text{
	margin:0 0 14px;
}
.box_tile.logs__box .icon_text:last-child{
	margin:0;
}
.box_tile .log_card{
    width: 100%;
}
.box_tile .log_card .log_header{
	display: flex;
	justify-content: space-between;
	margin: 0 0 8px;
}
.box_tile .log_card .log-title{
	font-weight: 600;
	font-size: 15px;
}
.box_tile .log_card .log-date{
	color: var(--teal-50);
	font-size: 11px;
}
.box_tile .log_card .log_body{
	margin:0 0 7px;
}
.box_tile .log_card .log_row{
	margin:0 0 3px;
}
.box_tile .log_card .log_row strong{
	font-weight: 600;
}
.box_tile .log_card .log_action{
	display: flex;
	justify-content: space-between;
}
.box_tile .log_card .log_action a{
    color: #E63946;
    font-weight: 600;
}
.box_tile .log_card .log_action .fa-file-pdf{
    color: #E63946;
    font-size: 16px;
}
.box_tile .logs__box .proLogLists .icon_text{
	margin-right: 10px;
}
@media (max-width: 1400px){
	.box_tile .info_grid.first__d .icon_text{
		width: calc(50% - 11px);	
	}
	.box_tile .info_grid.banking_first__d .icon_text{
		width:calc(50% - 11px);
	}
}
@media (max-width: 1350px){ 
	.ProfileTab_content .col-sm-4{
		-ms-flex: 0 0 50%;
		flex: 0 0 50%;
		max-width: 50%;
	}
	.ProfileTab_content .box_tile .info_grid .icon_text {
	    width: 100%;
	}
	.box_tile .info_grid.BDGrid  .icon_text{
		width:calc(50% - 7px);
	}
}
@media (max-width: 1199px){
	.ProfileTab .col-sm-6,
	.ProfileTab .col-sm-4{
		-ms-flex: 0 0 100%;
		flex: 0 0 100%;
		max-width: 100%;
	}
}
@media (max-width: 767px){
	.box_tile .info_grid.first__d .icon_text,
	.box_tile .info_grid.banking_first__d .icon_text {
        width: 100%;
    }
    .box_tile .info_grid .icon_text{
    	width:100%;
    }
}
/*Profile tab css end*/

/* Estimator tab css start*/
.guidedQuote .input-group-text11{
	width:20px;
	text-align: center;
}
.EGP_total_price .box_small_heading{
	min-width: 105px;
	margin: 0;
}
@media (max-width: 1023px) {
	.guidedQuote,
	.EGP_total_price{
		flex-wrap: wrap;
	}
	.EGP_total_price .input-group{
		width:100%;
	}
}
.surveySheet .nav{
	margin:0;
}
.surveySheet .nav-pills .nav-link{
	font-size: 18px;
	line-height: 26px;
	font-weight: 600;
	color:var(--teal-100);
	border-radius: 0;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
	margin:0;
}
.surveySheet .nav-pills .nav-link.active, .surveySheet .nav-pills .show>.nav-link{
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--teal-60);
	background: transparent;
	border: 1px solid #d7d7d7;
	border-bottom-color: transparent;
	position: relative;
	bottom: -1px;
	background: #fff;
	z-index: 1;
}
.surveySheet .tab-content{
	border-radius: 5px;
	padding:16px;
	border: 1px solid #d7d7d7;
	border-top-left-radius: 0px;
}
.choose_YN{
	display:flex;
	flex-wrap:wrap;
	justify-content: space-between;
	align-items: center;
	column-gap:20px;
	padding: 0 10px;
	border: 1px solid #102f3152;
	min-height: 40px;
	border-radius: 6px;
	margin: 0 0 15px;
}
.choose_YN > label{
	width: calc(100% - 128px);
}
.choose_YN > .d-flex{
	width:108px;
}
.choose_YN .form_data{
	margin:0;
}
.choose_YN .form_data label{
	display: flex;
	align-items: center;
	gap:5px;
}
/* file upload input*/
.attach_label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: #ff0000;
    font-size: 14px;
    padding: 8px 14px;
    border: 1px dashed #ff0000;
    border-radius: 6px;
    transition: all 0.2s ease;
}
.attach_label i {
    font-size: 16px;
}
.form_data .file_input{
	display:none;
}
.form_data .file_input:valid + .attach-label {
    border-color: #28a745;
    color: #28a745;
}
/* file upload end*/
/**/

/* datepicker css start*/
.datepicker .input-group-text,
.timepicker .input-group-text{
	background-color: var(--teal-50);
	border-color: var(--teal-50);
	color: var(--white);
}
/*datepicker css end*/


/*Toggle Switch css start*/
.toggleCheckBtn .switch {
  position: relative;
  display: inline-block;
  width: 80px;
  height: 40px;
}
.toggleCheckBtn .switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toggleCheckBtn .slider_d {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: transparent;
  -webkit-transition: .4s;
  transition: .4s;
  border:1px solid var(--teal-60);
}
.toggleCheckBtn .slider_d:before {
	position: absolute;
	content: "NO";
	height: 38px;
	width: 40px;
	left: 0px;
	bottom: 0;
	background-color: var(--teal-10);
	-webkit-transition: .4s;
	transition: .4s;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	color: var(--teal-60);
	font-size: 14px;
}
/*.toggleCheckBtn input:checked + .slider_d {
  background-color: var(--dark-gray);
}*/
.toggleCheckBtn input:focus + .slider_d {
  box-shadow: 0 0 1px #2196F3;
}
.toggleCheckBtn input:checked + .slider_d:before {
	content: "YES";
  -webkit-transform: translateX(40px);
  -ms-transform: translateX(40px);
  transform: translateX(40px);
  background-color: var(--teal-60);
  left:-1px;
  color:#fff;
}
.toggleCheckBtn{
	display: flex;
    align-items: center;
    font-weight: 500;
    margin:0;
}
.toggleCheckBtn label{
	margin: 0;
}
/*Toggle Switch css end+*/


/* Architect tab css start*/
@media (max-width: 1350px) {
	.architect_two_box .col-sm-6,
	.EstimatorTab_content .col-sm-6 {
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
@media (max-width: 1199px) {
	.ArchitectTab_content .col-sm-4,
	.EstimatorTab_content .col-sm-4{
    	 -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}
@media (max-width: 1023px) {
	.ArchitectTab_content .col-sm-4,
	.ArchitectTab_content .col-sm-6,
	.EstimatorTab_content .col-sm-4,
	.EstimatorTab_content .col-sm-6{
    	 -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
}
/* Architect tab css end*/


/* procurement page css start*/
.ProcurementTabs .nav-tabs .theme-btn{
	border-radius: 0;
}
.ProcurementTabs .nav-tabs .theme-btn.active{
	background-color: var(--teal-80);
	color: #fff;
}
.procurement_table .table input[readonly]{
	background: transparent;
	padding-left: 0;
	border:none;
}
.procurement_table .price__d:has(input[readonly]) .input-group-text {
background: transparent;
    padding: 0;
    border: none;
    color: var(--teal-100);
    font-size: 14px;
}
.procurement_page .HS_table_d table select{
	max-width: 220px;
}

/* procurement page css end*/


/* Login Page css start*/
.login__page{
	    height: 100vh;
}
.login__page .inner_d{
	display: flex;
	justify-content: space-between;
	height: inherit;
	flex-wrap:wrap;
}
.login__page .inner_d > div{
	width:50%;
	padding:50px;
}
.login__page .img__d{
	background: #224e4d;
}
.login__page .img__d img{
	max-width:500px;
	width:100%;
}
.login__page form{
	max-width: 600px;
	width: 100%;
	background: #fff;
	border-radius: 25px;
	padding: 30px;
	box-shadow: 0px 0px 7px #224e4d42;
}
.login__page .section_header{
	text-align: center;
	margin: 0 0 25px;
}
.login__page .title_name{
	color: #224e4d;
}
.login__page .action_btn{
	text-align: center;	
}
.login__page .forgot_password{
	text-align: center;
	margin:20px 0 0;
}
.login__page .forgot_password a{
	color: #224e4d;
	text-decoration: underline !important;
}
@media (max-width: 767px) {
	.login__page .inner_d > div{
		width:100%;
	}
	.login__page .img__d img{
	 	max-width: 150px;
	}
	.login__page .inner_d > div{
		padding: 50px 20px;
	}
}
/*Login Page css end*/

#sowModal .modal-dialog,
#slaModal .modal-dialog{
	    max-width: 850px;
}

#sowModal .modal-dialog .pdf-page,
#slaModal .modal-dialog .pdf-page{
	width:100%;
	max-width: 794px;
}

.editConTemplates .card {
	background: #fff;
	border-radius: 15px;
	padding: 20px;
	box-shadow: var(--box-shadow) !important;
	margin: 0 0 30px;
	overflow: hidden;
}
.editConTemplates .card .card-header{
	background: var(--teal-75) !important;
	padding: 10px 20px;
	border-radius: 5px;
	text-align: left;
	margin: 0 0 20px;
}
.editConTemplates .card .card-body{
	background: #fff;
	border-radius: 15px;
	padding: 20px;
	box-shadow: var(--box-shadow);
	margin: 0 0 30px;
	overflow: hidden;
}

.card-body .mb-4 > .form-label.fw-bold{
	font-size: 18px;
	line-height: 26px;
	font-weight: 600;
	margin: 20px 0;
	display: flex;
	align-items: center;
	gap: 10px;
	color: var(--teal-60);
	margin: 0 0 10px;
}








/* Designed by Anshuman  */
.page-item.active .page-link{
    z-index: 3;
    color: #fff;
    background-color: var(--teal-75);
    border-color: var(--teal-75);
}
.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: var(--teal-75);
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.is-invalid {
    border-color: #dc3545;
}

/* Tabs Estimator */

.survey_sheet_tabs {
    gap: 10px;
}

.survey_sheet_tabs .nav-link {
    position: relative;
    padding: 10px 40px 10px 20px;
    border-radius: 10px;
    font-weight: 600;
    background: #f1f3f5;
    color: #333;
    transition: all 0.25s ease;
}

.survey_sheet_tabs .nav-link.active {
    background: #5ab2b3;
    color: #fff;
}

.survey_sheet_tabs .nav-link:hover {
    background: #fff;
    color: #5ab2b3;
}

/* Close button */
.remove_sheet_tab {
    position: absolute;
    top: 6px;
    right: 8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: none;
    background: rgba(0,0,0,0.15);
    color: #fff;
    font-size: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link:not(.active) + .remove_sheet_tab {
    background: #999;
}

.remove_sheet_tab:hover {
    background: red;
}

/* Plus button */

.add_more_tab:hover {
    background: #fff;
    color: #5ab2b3;
}


.survey_sheet_tabs .nav-item {
    position: relative;
}

.remove_sheet_tab {
    border: none;
    background: #f2f2f2;
    color: #333;
    font-size: 14px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
}

.remove_sheet_tab:hover {
    background: #ff4d4f;
    color: #fff;
}

.nav-link.active {
    background: #5ab2b3 !important;
    color: #fff !important;
}

.sow-scroll-box {
	overflow-y: auto;
    padding-right: 8px;
    padding-left: 4px;
    max-height: 319px;
}

.sow-scroll-box .info_grid{
    margin-top: 5px;
	margin-bottom: 5px;	
}

/* Optional: custom scrollbar */
.sow-scroll-box::-webkit-scrollbar {
    width: 6px;
}

.sow-scroll-box::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 6px;
}

.sow-scroll-box::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.disabled-tab {
    pointer-events: none;
    opacity: 0.5;
    cursor: not-allowed;
}

.bgWhite {
    background: #fff !important;
    text-align: left !important;
}
