@import url('https://fonts.googleapis.com/css?family=Arimo');
@import url('icons/flaticon.css');
[class^="flaticon-"]:before, [class*=" flaticon-"]:before, [class^="flaticon-"]:after, [class*=" flaticon-"]:after {
	font-size: inherit;
}
* {
	box-sizing: border-box;
}
body {
	font-family: 'Arimo', sans-serif;
	font-size: 16px;
}
.form-wrapper {
	background: #F2F2F2;
	margin: 0 auto;
	padding: 10px;
}
.form-control {

	transition: box-shadow 0.4s;
}
.row {
	margin: 0 -5px;
}
.col-6 {
	float: left;
	width: 50%;
	padding: 0 5px;
}   
.heading {
	font-size: 20px;
	background: #1d7d5a;
	margin: -20px -20px 0;
	color: #fff;
	padding: 20px;
}
.error {
	height: 30px;
	line-height: 30px;
	color: #dc3545;
}
.title_upper {
	font-size: 16px;
}
.conreol-group .control {
	float: left;
	width: 50%;
}
.conreol-group .control:first-child .form-control {
	border-radius: 3px 0 0 3px;
}
.conreol-group .control:last-child .form-control {
	border-radius: 0 3px 3px 0;
	border-left: none; 
}
.control.country.large {
	width: 100%;
}
.control.country.large select{
	border-radius: 3px !important;
}
.control {
	margin: 0 0 5px;
}
.control i {
	pointer-events: none;
	position: absolute;
	top: 6px;
	left: -15px;
	color: #1d7d5a;
	font-size: 26px;
}
.submit {
	background-color: #f27208;
	position: relative;
	overflow: hidden;
	font-size: 16px;
	height: 40px;
	line-height: 1;
	border: 1px solid #c36427;
	border-radius: 3px;
	width: 100%;
	color: #fff;
	cursor: pointer;
	-webkit-animation-name: ShineAnimation;
	-webkit-animation-duration: 7s;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-timing-function: cubic-bezier(.1,.1,.1,5);
}

@-webkit-keyframes ShineAnimation{
	from {
		background-repeat:no-repeat;
		background-image:-webkit-linear-gradient(
			top left,
			rgba(255, 255, 255, 0.0) 0%,
			rgba(255, 255, 255, 0.0) 45%,
			rgba(255, 255, 255, 0.1) 48%,
			rgba(255, 255, 255, 0.3) 50%,
			rgba(255, 255, 255, 0.1) 52%,
			rgba(255, 255, 255, 0.0) 57%,
			rgba(255, 255, 255, 0.0) 100%
		);
		background-position:-250px -250px;
		background-size: 600px 600px
	}
	to {
		background-repeat:no-repeat;
		background-position:250px 250px;
	}
}

.form-wrapper .form-control:hover {
	box-shadow: 0 0 5px 1px #1d7d5a;
	border: 1px solid #1d7d5a;
}
.form-wrapper .form-control:active, .form-control:focus {
	box-shadow: 0 0 5px 1px #1d7d5a;
	border: 1px solid #1d7d5a;
	outline: none;
}
/***** Floating labels basic css *****/
.float-label .control {
	position: relative;
}

.float-label input, .float-label select {
	display: block;
	outline: 0;
	resize: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #ccc;
	background: #fff;
	width: 100%;
	border-radius: 3px;
	padding: 10px 8px 10px 35px;
	font-size: 16px;
	font-family: 'Arimo', sans-serif;
}
.float-label select {
	color: #777;
}
.float-label input ~ label,
.float-label select ~ label {
	position: absolute;
	top: 30px;
	transition: top 0.7s ease, opacity 0.7s ease;
	opacity: 0;
	font-size: 13px;
	font-weight: 600;
	color: #1d7d5a;
	left: 35px;
}
.float-label input:not(:placeholder-shown) ~ label,
.float-label select:valid ~ label {
	opacity: 1;
	top: 0;
	left: 35px;
}
.float-label input:focus ~ label,
.float-label select:focus ~ label {
	color: #1d7d5a;
}
.float-label input:not(:placeholder-shown), .float-label select:valid {
	padding: 16px 0px 4px 35px !important;
	color: #000;
}
.arrow-down {
	width: 0;
	height: 0;
	border-left: 6px solid transparent;
	border-right: 6px solid transparent;
	border-top: 6px solid #555;
	position: absolute;
	right: 8px;
	top: 18px;
	z-index: 2;
	pointer-events: none;
}
@media (max-width: 576px) { 
	.col-6 {
		width: 100%;
	}
}

@media (min-width: 768px) {  }

@media (min-width: 992px) {  }

@media (min-width: 1200px) {  }