div.dataTables_filter input {
	border: 1px solid #aaa;
	border-radius: 3px;
	padding: 5px;
	background-color: transparent;
	margin-left: 3px;
}

.header nav .navbar-brand, .header .navbar {
	/*background-color: #0AC3FF !important;*/
}

.header nav .navbar-brand {
	box-shadow: unset !important;
	border-right: 1px solid #fff;
}

.header .navbar .form-control {
	padding: 0 1rem;
}

.header nav a {
	color: #323232 !important;
}

main {
	margin-top: 65px;
}

/*	Progress bar	*/
.progressbar-container {
	width: 50%;
	margin: auto 0;
}
.progressbar {
	counter-reset: step;
}
.progressbar li {
	list-style-type: none;
	width: 20%;
	float: left;
	font-size: 12px;
	position: relative;
	text-align: center;
	text-transform: uppercase;
	color: #7d7d7d;
}
.progressbar li:before {
	width: 30px;
	height: 30px;
	content: counter(step);
	counter-increment: step;
	line-height: 30px;
	border: 2px solid #7d7d7d;
	display: block;
	text-align: center;
	margin: 0 auto 10px auto;
	border-radius: 50%;
	background-color: white;
}
.progressbar li:after {
	width: 100%;
	height: 2px;
	content: '';
	position: absolute;
	background-color: #7d7d7d;
	top: 15px;
	left: -50%;
	z-index: -1;
}
.progressbar li:first-child:after {
	content: none;
}
.progressbar li.active {
	color: green;
}
.progressbar li.active:before {
	border-color: #55b776;
	background: #55b776;
	color: white;
	content: '\2713';
}
.progressbar li.active + li:after {
	background-color: #55b776;
}

.sc-btn {
	cursor: pointer;
	display:inline-block;
	padding:0.35em 1.2em;
	border:0.1em solid #FFFFFF;
	margin:0 0.3em 0.3em 0;
	border-radius:0.12em;
	box-sizing: border-box;
	text-decoration:none;
	font-family:'Roboto',sans-serif;
	font-weight:300;
	color:#000000;
	text-align:center;
	transition: all 0.2s;
}
.sc-btn:hover {
	background-color: #dedede;
}

.signature {
	border: 1px solid black;
}

.signature-container {
	position: relative;
	height: 150px;
}

.signature-container canvas {
	position: absolute;
}
.signature-container button {
	position: absolute;
	left:0;
	top:0;
	border: 1px solid #DC3545;
	background: #DC3545;
	color: white;
	border-radius: 0  0 10px  0;
	text-transform: uppercase;

}

.select2-selection__rendered {
	 line-height: 38px !important;
 }
.select2-container .select2-selection--single {
	height: 38px !important;
}
.select2-selection__arrow {
	height: 38px !important;
}

.dashboard h5 {
	text-align: center;
}

.toggle:has(input[readonly=readonly]) {
	pointer-events: none;
}
.toggle:has(input[readonly=readonly]):before {
	content: ' ';
	position: absolute;
	top: 0;
	left: 0;
	background: #00000020;
	z-index: 10;
	width: 100%;
	height: 100%;
	cursor: pointer;
}

.form-group {
	position: relative;
}

.dit-tooltip {
	position: absolute;
	right: 20px;
	top: 5px;
}

.right-unset {
	right: unset;
}

.top-unset {
	top: unset;
}

.bg-gradient-orange-to-secondary {
	background-color: #ee670c !important;
	background-image: linear-gradient(135deg, #ee670c 0%, rgba(255, 212, 159, 0.8) 100%) !important;
	color: white;
}

.dz-image {
	border-radius: 3px;
	border: 1px solid #aeaeae;
}

.dropzone-overlay {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
}

.lb-nav {
	display: none !important;
}
.lb-container {
	background: white;
}
.lb-outerContainer {
	width: 50vw !important;
}
.lightbox .lb-image {
	width: 100% !important;
	height: unset !important;
}
.lb-data .lb-close:hover {
	cursor: pointer !important;
	filter: unset !important;
	opacity: 0.7 !important;
}

.lb-data .lb-rotate {
	display: block;
	float: right;
	width: 30px;
	height: 30px;
	background: url(images/rotate-left.png) center center no-repeat;
	text-align: right;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
	opacity: 0.7;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
}

.lb-data .lb-rotate:hover {
	cursor: pointer;
}

.lb-data .lb-close {
	background: url(images/close.png) center center no-repeat !important;
}

.lb-outerContainer {
	border-top-left-radius: 0;
	border-top-right-radius: 0;
}
.lb-dataContainer {
	background-color: white;
	border-radius: 4px 4px 0 0;
}

select[readonly="readonly"] {
	pointer-events: none;
}

.spinner {
	width: 48px;
	height: 48px;
	border: 5px solid #FFF;
	border-bottom-color: transparent;
	border-radius: 50%;
	display: inline-block;
	box-sizing: border-box;
	animation: rotation 1s linear infinite;
}

@keyframes rotation {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}