.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	color: #666;
	opacity: 1; /* Firefox */
}

.form-control::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
	/*font-family: Impact, sans-serif;*/
}
.form-control:-ms-input-placeholder { /* IE 10+ */
	/*font-family: Impact, sans-serif;*/
}
.form-control::-ms-input-placeholder { /*Edge - only work on some properties */
	/*color: green;*/
	/*letter-spacing: 5px;*/
}

select.formControl + .chosen-container.chosen-container-single .chosen-single {
    /*display: block;*/
    width: 100%;
    height: 53px;
    padding: 25px 12px;
    font-size: 16px;
    color: #111;
	margin-top: -22px;
    background-color: #fff;
	vertical-align: top;
    border: 1px solid #a7a7a7;
    border-radius: 0px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

label[for=categorySelect] {
	margin-top: -20px;
}

label[for=vendor] {
	margin-top: -20px;
}


.moneyFormat{
	text-align: right;
}

#newAlertCountContainer{
    font-size: 16px;
    color: white;
    background: #7188a6;
    border: 2px solid #485469;
    border-radius: 15px;
    min-width: 28px;
    display: inline-block;
    font-weight: 600;
    margin-left: 10px;
    text-align: center;
}

.newAlert > td{
	font-weight: 600;
}

.sidebar .nav > li.active-pro {
    position: absolute;
    width: 100%;
    bottom: 10px;
}

.newProject{
	font-size: 34px;
	color: #fff;
	background: #28a745;
	border: 2px solid #28a745;
    border-radius: 50px;
	width: 80px;
    font-weight: 600;
    text-align: center;
	padding: 15px;
	position: fixed;
    bottom: 25px;
    right: 25px;
	cursor: pointer;
}
.newProject:hover{
	background: #1e7e4b;
}

.addNew{
	font-size: 34px;
	color: #fff;
	background: #28a745;
	border: 2px solid #28a745;
    border-radius: 50px;
	width: 80px;
    font-weight: 600;
    text-align: center;
	padding: 15px;
	position: fixed;
    bottom: 25px;
    right: 25px;
	cursor: pointer;
}
.addNew:hover{
	background: #1e7e4b;
}



.newInvoice{
	font-size: 34px;
	color: #fff;
	background: #28a745;
	border: 2px solid #28a745;
    border-radius: 50px;
	width: 80px;
    font-weight: 600;
    text-align: center;
	padding: 15px;
	position: fixed;
    bottom: 25px;
    right: 25px;
	cursor: pointer;
}
.newInvoice:hover{
	background: #1e7e4b;
}


.card{
	padding-bottom: 5px;
}

.errorDisplay{
	text-align: center;
	font-size: 22px;
}


#actionDone{
	z-index: 9999;
	font-size: 18px;
	color: #fff;
    border-radius: 5px;
    text-align: center;
	padding: 15px 30px;
	position: fixed;
    top: 25px;
    right: 45px;
}

.actionDoneHide{
	display: none;
}

.actionDoneShow{
	display: inline-block;
}


/*For PopUp*/

.modal {
	font-family: -apple-system,BlinkMacSystemFont,avenir next,avenir,helvetica neue,helvetica,ubuntu,roboto,noto,segoe ui,arial,sans-serif;
}

.modal__overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0,0,0,0.6);
	display: flex;
	justify-content: center;
	align-items: center;
}

.modal__container {
	background-color: #fafafa;
	padding: 30px;
	max-width: 650px;
	max-height: 100vh;
	border-radius: 4px;
	overflow-y: auto;
	box-sizing: border-box;
	min-width: 400px;
	position: relative;
    display: flex;
    flex-direction: column;
    pointer-events: auto;
    border: 1px solid rgba(0, 0, 0, 0.2);
    outline: 0;
	z-index: 99;
}

.modal__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-bottom: 1px solid #cdd4e0;
    border-top-left-radius: calc(0.3rem - 1px);
    border-top-right-radius: calc(0.3rem - 1px);
}

.modal__title {
	margin-top: 0;
	margin-bottom: 0;
	font-weight: 600;
	font-size: 1.25rem;
	line-height: 1.25;
	color: #00449e;
	box-sizing: border-box;
}

.modal__close {
	background: transparent;
	border: 0;
}

.modal__header .modal__close:before {
	content: "\2715";
}

.modal__content {
	/*margin-top: 2rem;*/
	/*margin-bottom: 2rem;*/
	line-height: 1.5;
	color: rgba(0,0,0,.8);
}

.modal__btn {
	font-size: .875rem;
	padding-left: 1rem;
	padding-right: 1rem;
	padding-top: .5rem;
	padding-bottom: .5rem;
	background-color: #e6e6e6;
	color: rgba(0,0,0,.8);
	border-radius: .25rem;
	border-style: none;
	border-width: 0;
	cursor: pointer;
	-webkit-appearance: button;
	text-transform: none;
	overflow: visible;
	line-height: 1.15;
	margin: 0;
	will-change: transform;
	-moz-osx-font-smoothing: grayscale;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
	transition: -webkit-transform .25s ease-out;
	transition: transform .25s ease-out;
	transition: transform .25s ease-out,-webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
	-webkit-transform: scale(1.05);
	transform: scale(1.05);
}

.modal__btn-primary {
	background-color: #00449e;
	color: #fff;
}



/**************************\
  START Pop up editor
\**************************/
@keyframes mmfadeIn {
    from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes mmfadeOut {
    from {
		opacity: 1;
	}
	to {
		opacity: 0;
	}
}

@keyframes mmslideIn {
	from {
		transform: translateY(15%);
	}
    to {
		transform: translateY(0);
	}
}

@keyframes mmslideOut {
    from {
		transform: translateY(0);
	}
    to {
		transform: translateY(-10%);
	}
}

.micromodal-slide {
	display: none;
}

.micromodal-slide.is-open {
	display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
	animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
	animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
	animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
	animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
	will-change: transform;
}


/* Uploader*/

.drop_file_zone {
    background-color: #c8dadf;
	outline: 2px dashed #afafaf;
	outline-offset: -5px;
	width: 100%;
    /*height: 75px;*/
    padding: 8px;
    font-size: 18px;
	margin: 0px 0px 5px;
}
#drag_upload_file {
	width:90%;
	margin:0 auto;
}
#drag_upload_file p {
	text-align: center;
}
#drag_upload_file #selectfile {
	display: none;
}

.is-dragover {
	background-color: #ffffff;
	outline: 2px dashed #afafaf;
	outline-offset: -5px;
	width: 100%;
    /*height: 75px;*/
    padding: 8px;
    font-size: 18px;
	margin: 0px 0px 5px;
}


.uploaderTile{
	/*Make title clickable to div*/
	pointer-events:none;
}




.search-field{
	border-color:#e3e3e3;

}






.loadingContainer{
	position: fixed;
	top: 40%;
	left: 45%;
	z-index: 99;
}

.loadingBody{
	font-size: 42px;
	margin: 0px auto;
	max-width: 645px;
	text-align:center;
	padding:25px 35px;
	transform:translate(0,40%);
	background: #00000075;
	border-radius: 10px;
	color:white;
}

section{
	margin: 20px auto;
	background-color: #fff;
	max-width: 1200px;
	box-shadow: 0px 0px 15px #cccccc;
	padding: 20px;
}

.flexContainer{
	display: flex;
	flex-wrap: wrap;
}


.innerSection{
	padding: 20px;
}

.noPadding{
	padding:0px;
}

.noMargin{
	margin:0px;
}

.formControl{
	min-width:150px;
	max-width: 100%;
	height: 55px;
	display: block;
	padding: 0px 0px 0px 10px;
	padding-top: 20px;
	margin: 5px 0px;
	font-size: 16px;
	line-height: 1.5;
	color: #111;
	background-color: #fefefe;
	background-clip: padding-box;
	border: 1px solid #a7a7a7;
	border-radius: 0px !important;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}


.formControl:focus{
	outline: 0px;
	border: 2px solid #7188a6;
}


.form-control:focus{
	border: 1px solid #2a9bd1;
}


/* we put label on top of the input*/
.floatLable {
	position: absolute;
	right: 1px;
	bottom: 1px;
	left:12px;
	top:-5px;
	z-index: 1;
	height: 1em;
	font-size: 16px;
	line-height: 3.5em;
	color: red;
	white-space: nowrap;
	cursor: text;
	transition:all .1s ease;
}

input:focus ~ label, input:valid ~label, input:disabled ~label {
	position: absolute;
	right: 1px;
	bottom: 1px;
	left:12px;
	top:-5px;
	z-index: 1;
	height: 1em;
	font-size: 14px;
	line-height: 3.5em;
	color: #495057;
	white-space: nowrap;
	cursor: text;
	transition:all .1s ease;
}

textarea:focus ~ label, textarea:valid ~label {
	position: absolute;
	right: 1px;
	bottom: 1px;
	left:12px;
	top:-5px;
	z-index: 1;
	height: 1em;
	font-size: 14px;
	line-height: 3.5em;
	color: #495057;
	white-space: nowrap;
	cursor: text;
	transition:all .1s ease;
}

select:valid ~ label{
	position: absolute;
	right: 1px;
	bottom: 1px;
	left:12px;
	top:-9px !important;
	z-index: 1;
	height: 1em;
	font-size: 14px;
	line-height: 3.5em;
	color: #495057;
	white-space: nowrap;
	cursor: text;
	transition:all .1s ease;
}

textarea:valid ~ label{
	position: absolute;
	right: 1px;
	bottom: 1px;
	left:12px;
	top:-5px;
	z-index: 1;
	height: 1em;
	font-size: 11px;
	line-height: 3.5em;
	color: #495057;
	white-space: nowrap;
	cursor: text;
	transition:all .1s ease;
}

select:disabled ~ label{
	cursor: not-allowed !important;
	position: absolute;
	right: 1px;
	bottom: 1px;
	left:12px;
	top:-5px;
	z-index: 1;
	height: 1em;
	font-size: 14px;
	line-height: 3.5em;
	color: #495057;
	white-space: nowrap;
	cursor: text;
	transition:all .1s ease;
}

input:valid ~label {
	font-size: 14px;
	color:#6e6e6e;
}
input:focus:invalid ~label{
	font-size: 14px;
	color:red;
}

input:required ~label::before {
	content:"*";
	color:red;
}

input:required:valid ~label::before {
	color:#6e6e6e;
}

select:valid ~label {
	color:#6e6e6e;
}
select:focus:invalid ~label{
	color:red;
}

select:required ~label::before {
	content:"*";
	color:red;
}

select:required:valid ~label::before {
	color:#6e6e6e;
}


select{
	font-family: "Roboto", "fontAwesome" ;
}

select option:hover  {
	background-color: yellow !important;
}

select option:focus  {
	background-color: yellow !important;
}

select option:focus-within  {
	background-color: yellow !important;
}


select option:target  {
	background-color: yellow !important;
}


input, textarea {
	padding:1em;
	border: 1px solid #ccc;
	-webkit-box-shadow: inset 0 1px 0 #eee,#fff 0 1px 0;
	box-shadow: inset 0 1px 0 #eee,#fff 0 1px 0;
	border-radius:0px;
	/*width:100%;*/
}

.inputContainer {
	position: relative;
	top: auto;
	left: auto;
	width: auto;
}


.inline{
	display: inline-block;
}

.switch {
	position: relative;
	display: inline-block;
	width: 40px;
	height: 20px;
	margin: 3px;
}

.switch input {
	opacity: 0;
	width: 0;
	height: 0;
}

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

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

input:checked + .slider {
	background-color: #008CBA;
}

input:focus + .slider {
	box-shadow: 0 0 1px #2196F3;
	outline: black solid 1px
}

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


input:disabled, textarea:disabled, select:disabled  {
	cursor: not-allowed !important;
	background: #e3e7ed !important;
}

.chosen-disabled > .chosen-single {
	cursor: not-allowed !important;
	background: #e3e7ed  !important;
	opacity: 1 !important;
}

.chosen-disabled > .chosen-single {
	cursor: not-allowed !important;
	background: #e3e7ed  !important;
	opacity: 1 !important;
}


.validationError {
	border-color: #dc3545;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right calc(0.375em + 0.1875rem) center;
	background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.validationError-Text{
	font-size: 12px;
}


/*Uploader style*/
.uploader{
	min-height:40px;
	max-width: 250px;
	padding: 0px 0px 0px 10px;
	text-align: left;
	background: #fefefe;
	border: 1px solid #a7a7a7;
	border-radius: 5px;
	cursor: pointer;
	font-size: 14px;
    color: #6e6e6e;
}

.uploaderContainer{
	min-height:40px;
	max-width: 250px;
	padding: 0px 0px 0px 10px;
	text-align: left;
	/*background: #e7e7e7;*/
	border: 1px solid #8e8e8e;
	border-radius: 5px;
	cursor: pointer;
}



.uploader.is-dragover {
	background-color: grey;
}



.uploderInsp{
	min-height:40px;
	/*max-width: 250px;*/
	padding: 0px 10px;
	text-align: left;
	background: #fefefe;
	border: 1px solid #a7a7a7;
	border-radius: 5px;
	cursor: pointer;
	display: inline-block;
	font-size: 14px;
    color: #6e6e6e;
}

.uploderInsp.is-dragover {
	background-color: grey;
}


.uploaderTile{
	padding-top: 8px;
	display: inline-block;

}

.uploaderRemove{
	float:right;
	color:white;
	background:#db2637b0;
	height:38px;
	padding:10px 8px;
	margin-top:0px;
	border-radius: 0px 4px 4px 0px;
}

.uploaderRemove:hover{
	background:#db2637;
}

.uploaderViewFile{
	float:right;
	color:white;
	background:#3bb001b0;
	height:38px;
	padding:10px 8px;
	margin-top:0px;
}

.uploaderViewFile:hover{
	background:#3bb001;
}

/*Progress Bar Guide*/
.progressBarCurrent{
	background: #7188a6;
	padding:10px;
	color:white;
}

.progressBarDone{
	background: #7188a6;
	padding:10px;
	color:white;
}

.progressBarNotDone{
	background: #e2e2e2;
	padding:10px;
	color:black;
}

/*Auto Fill*/
.autocomplete {
	position: relative;
	display: inline-block;
}

.autocomplete-items {
	position: absolute;
	border: 1px solid #d4d4d4;
	border-bottom: none;
	border-top: none;
	z-index: 99;
	top: 100%;
	left: 0;
	right: 0;
}

.autocomplete-items div {
	padding: 10px;
	cursor: pointer;
	background-color: #fff;
	border-bottom: 1px solid #d4d4d4;
}

.autocomplete-items div:hover {
	background-color: #e9e9e9;
}

.autocomplete-active {
	background-color: DodgerBlue !important;
	color: #ffffff;
}


.clickable{
	cursor: pointer;
}

.adminOptions{
	background: #9a001b !important;
	color: white !important;
}

.recordInfoContainer{
	margin-top: 15px;
}


.serviceSelectBlock{
	padding:20px;
	border-radius: 5px;
	border: 3px solid #e5e5e5;
}

.serviceSelectBlockSelected{
	background: #edf8f0;
	border: 3px solid #35ad56;
}


.serviceSelectBlock > .iconBlock{
	font-size:30px;
	text-align: center;
	color: #485469;
}

.budgetRangeSelectBlock{
	padding:20px;
	border-radius: 5px;
	border: 3px solid #e5e5e5;
}

.budgetRangeSelectBlockSelected{
	background: #edf8f0;
	border: 3px solid #35ad56;
}

.selectBlockSelected{
	background: #edf8f0;
	border: 3px solid #35ad56;
}


.budgetRangeSelectBlock > .iconBlock{
	font-size:30px;
	text-align: center;
	color: #485469;
}




.card-hover:hover{
	cursor: pointer;
	box-shadow: 0 5px 20px 0 rgb(147 147 147 / 50%);
}

.card-shadow{
	box-shadow: 0 2px 10px 0 rgb(207 207 207 / 50%);
}

.iconAlert:after{
	content: " ";
	position: absolute;
	background: red;
	height: 10px;
	top: 1rem;
	left: 15px;
	width: 10px;
	border-radius: 50%;
}


.alertDot{
	content: " ";
	position: absolute;
	background: red;
	height: 10px;
	/*top: 1rem;*/
	/*left: 15px;*/
	width: 10px;
	border-radius: 50%;
}



.criteriaAction{
	margin-top: 15px;
}

.reportCriteriaContainer{
	margin-top: 20px;
}

.dt-button embed {
	outline: none
}

div.dt-buttons {
	position: relative;
	float: left;
}

div.dt-buttons.buttons-right {
	float: right
}

div.dataTables_layout_cell div.dt-buttons {
	float: none
}

div.dataTables_layout_cell div.dt-buttons.buttons-right {
	float: none
}

div.dt-btn-split-wrapper {
	display: inline-block
}

div.dt-button-collection {
	position: absolute;
	top: 0;
	left: 0;
	width: 200px;
	margin-top: 3px;
	padding: 4px 4px 2px 4px;
	border: 1px solid #ccc;
	border: 1px solid rgba(0, 0, 0, 0.4);
	background-color: white;
	overflow: hidden;
	z-index: 2002;
	border-radius: 5px;
	box-shadow: 3px 4px 10px 1px rgba(0, 0, 0, 0.3);
	box-sizing: border-box;
	background-color: #485469;
	border-color: #485469;
}

.dt-button{
	display: inline-block;
	font-weight: 400;
	color: #fff;
	background-color: #485469 !important;
	border-color: #485469  !important;
	text-align: center;
	vertical-align: middle;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 0.875rem;
	line-height: 1.5;
	border-radius: 0px;
}

.dt-button:hover{
	display: inline-block;
	font-weight: 400;
	color: #fff;
	background-color: #7987a1 !important;
	border-color: #7987a1  !important;
	text-align: center;
	vertical-align: middle;
	user-select: none;
	background-color: transparent;
	border: 1px solid transparent;
	padding: 0.375rem 0.75rem;
	font-size: 0.875rem;
	line-height: 1.5;
	border-radius: 0px;
}

.cardHoverable:hover{
	box-shadow: 0px 0px 10px #807a7a;
}

.list-item-hover:hover{
	background:#f7f7f7;
}

/*Data Table Style*/
.dataTables_length{
	margin-left: 10px;
}

.dataTables_info{
	margin-top: 10px;
	margin-left: 10px;
}

.paging_simple_numbers{
	margin-right: 10px;
}

.dataTables_filter{
	margin-right: 10px;
}


.dragging {
	border: 4px dashed #aaa;
}



/* timeline CSS*/

.timeline-steps {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.timeline-steps .timeline-step {
	align-items: center;
	display: flex;
	flex-direction: column;
	position: relative;
	margin: 1rem;
}

@media (min-width:768px) {
	.timeline-steps .timeline-step:not(:last-child):after {
		content: "";
		display: block;
		border-top: .25rem dotted #7987a1;
		width: 3.46rem;
		position: absolute;
		left: 7.5rem;
		top: 1.1rem;
	}
	.timeline-steps .timeline-step:not(:first-child):before {
		content: "";
		display: block;
		border-top: .25rem dotted #7987a1;
		width: 3.8125rem;
		position: absolute;
		right: 7.5rem;
		top: 1.1rem;
	}
}

.timeline-steps .timeline-content {
	width: 10rem;
	text-align: center;
}

.timeline-steps .timeline-content .inner-circle {
	border-radius: 1.5rem;
	height: 3rem;
	width: 3rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #485369;
}

.timeline-steps .timeline-content .current {
	border-radius: 1.5rem;
	height: 1rem;
	width: 1rem;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: #71a68f;
}

.timeline-steps .timeline-content .current:before  {
	content: "";
	background-color: green;
	display: inline-block;
	height: 3rem;
	width: 3rem;
	min-width: 3rem;
	border-radius: 6.25rem;
	opacity: .5;
}



datalist {
	position: absolute;
	max-height: 20em;
	border: 0 none;
	overflow-x: hidden;
	overflow-y: auto;
}

datalist option {
	font-size: 0.8em;
	padding: 0.3em 1em;
	background-color: #ccc;
	cursor: pointer;
}

/* option active styles */
datalist option:hover, datalist option:focus {
	color: #fff;
	background-color: #036;
	outline: 0 none;
}

/*info Tooltip style*/
.tooltipInfo{
	/*background:#fff !important;*/
}

.tooltipBody{
	text-align: left !important;
	background:#fafafa !important;
	padding:0px !important;
	;
	font-size: 12px !important;
	max-width: 350px !important;
	border: 1px solid #999;
}



/*Table freezing*/
@media (min-width: 576px) {
	.freezeCol {
		position: block;
	}
}

@media (min-width: 992px) {
	.freezeCol{
		position: sticky;
		left: 0;
	}
}

@media (min-width: 576px) {
	.freezeRow {
		position: block;
	}
}

@media (min-width: 992px) {
	.freezeRow{
		position: sticky;
		left:0;
		z-index: 3;
		top: 0;
	}
}


/*Toggle systle placeholder*/

.az-toggle-disabled {
	width: 60px;
	height: 25px;
	background-color: #b4bdce;
	padding: 2px;
	position: relative;
	overflow: hidden;
}

.az-toggle-disabled span {
    position: absolute;
    top: 3px;
    bottom: 3px;
    left: 3px;
    display: block;
    width: 20px;
    background-color: #fff;
    cursor: not-allowed;
    transition: all 0.2s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
	.az-toggle-disabled span {
        transition: none;
	}
}

.az-toggle-disabled span::before, .az-toggle-disabled span::after {
	position: absolute;
	font-size: 10px;
	font-weight: 500;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #fff;
	top: 2px;
	line-height: 1.38;
}

.az-toggle-disabled span::before {
	content: 'yes';
	left: -25px;
}

.az-toggle-disabled span::after {
	content: 'no';
	right: -29px;
}

.az-toggle-disabled.on {
    background-color: #b4bdce;
}

.az-toggle-disabled.on span {
	left: 37px;
}

.tosHeader{
	font-weight: 600;
	text-decoration: underline;
	margin-top: 35px;
}





/*Standard Icons classes*/

.iconOpened:before {
	font-family: "Font Awesome 5 Free";
	content: '\f078';
	font-weight: 900;
}

.iconClosed:before {
	font-family: "Font Awesome 5 Free";
	content: '\f054';
	font-weight: 900;
}


.iconVisable:before {
	font-family: "Font Awesome 5 Free";
	content: '\f06e';
	font-weight: 900;
}

.iconHidden:before {
	font-family: "Font Awesome 5 Free";
	content: '\f070';
	font-weight: 900;
}

.deleted > td{
	color:red;
}


.disabled  {
	cursor: not-allowed !important;
}

#ui-datepicker-div{
	z-index: 1051 !important;
}

.settingsGroupButtonSelector{
	margin: 5px 0px;
}


.alignTextLeft{
	text-align: left;
}

.alignTextCenter{
	text-align: center;
}

.alignTextRight{
	text-align: right;
}



.form-group > label{
	font-weight: 500;
	font-size: 13px;
	text-transform: uppercase;
	margin-bottom: 0px;
}

.labelStyle{
	font-weight: 500;
	font-size: 13px;
	text-transform: uppercase;
	margin-bottom: 0px;
}




.striped-row-services {
    background-color: rgba(0, 0, 0, 0.05);
}


.striped-row-services .bg-secondary-stripped {
    background-color: #485469;
}


.striped-row-services .bg-success-stripped {
    background-color: #218838;
}


.bg-secondary-stripped {
    background-color: #485469;
}

.bg-success-stripped {
    background-color: #28a745;
}
.bg-secondary-stripped {
    background-color: #525f78;
}

.bg-success-stripped {
    background-color: #279941;
}


.striped-table-services td:first-child, .striped-table-services th:first-child {
    padding-right: 25px;
}

.striped-table-services th, .striped-table-services td {
    width: auto;
}

.striped-table-services th:first-child, .striped-table-services td:first-child {
    width: 40%;
}

.striped-table-services th:nth-child(2), .striped-table-services td:nth-child(2),
.striped-table-services th:nth-child(3), .striped-table-services td:nth-child(3) {
    width: 30%;
}

.striped-table-services td, .striped-table-services th {
    padding: 10px 10px;
}

.striped-table-services td i {
    margin-left: 3px;
}

.striped-table-services tfoot td {
    padding-top: 3px;
    text-align: center;
}