.theme-bg-primary{
	background-color: rgba(243, 101, 35, 1.0);
}
.theme-text-primary{
	color: rgba(243, 101, 35, 1.0);
}
.theme-bg-secondary{
	background-color: rgba(2, 62, 138, 1.0);
}
.theme-text-secondary{
	color: rgba(2, 62, 138, 1.0);
}
.screen-lg{
	min-height: 100vh;
}
.shadow-sm {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}
.shadow-lg {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
}
.theme-section-sm{
	padding-top: 80px;
	padding-bottom: 80px;
}
.theme-section-md{
	padding-top: 100px;
	padding-bottom: 100px;
}
.theme-letter-space{
	letter-spacing: 1px;
}
.theme-bg-light{
	background-color: #EBF9FF;
}
.theme-bg-dark{
	background-color: #01843e;
}
.theme-bg-black{
	background-color: rgba(0, 0, 0, 1.0);
}
.theme-form label{
	font-size: 12px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 2px;
	color: #252527;
	letter-spacing: 1px;
}
.theme-form input::placeholder, .theme-form textarea::placeholder{
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 500;
}
.theme-form input, .theme-form textarea{
	font-size: 12px;
	color: rgba(84,94,170,1);
}
.theme-form .form-group{
	margin-bottom: 7px;
}
form.theme-form label.error{
	font-size: 10px;
	text-transform: unset;
	color: #FF5733;
}
input::-webkit-inner-spin-button,input::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number]{-moz-appearance:textfield}
.loader-holder{
	z-index: 1;
	left:0;
	right:0;
	top:0;
	bottom:0;
	position:absolute;
	background-color: rgba(2, 62, 138 , 0.3);
}
.loader {
	border: 5px solid #f3f3f3;
	border-radius: 50% !important;
	border-top: 5px solid rgba(243, 101, 35, 1.0);
	width: 50px;
	height: 50px;
	-webkit-animation: spin 2s linear infinite;
	animation: spin 2s linear infinite;
	margin:auto;
	left:0;
	right:0;
	top:0;
	bottom:0;
	position:absolute;
}
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}
@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}