#vue-search-form,
.vue-search-form-component,
.vue-search-form-wrap{
	width: 100%;
	margin: auto;
}

.vue-search-form > .flex > [class^='col-']{
	position: relative;
}

.vue-search-form > .flex > [class^='col-']:nth-child(1){
	z-index: 30;
}

.vue-search-form > .flex > [class^='col-']:nth-child(2){
	z-index: 20;
}

.vue-search-form > .flex > [class^='col-']:nth-child(3){
	z-index: 10;
}

.vue-search-form .form-control,
.vue-search-form-select-header,
.vue-search-form-submit-wrap button{
	width: 100%;
	height: 48px;

	-webkit-border-radius: 14px;
	-moz-border-radius: 14px;
	border-radius: 14px;
}

.vue-search-form .form-control,
.vue-search-form-select-header{
	background: #FFF;
	border: 1px solid #D8DFF2;
}

.vue-search-form .form-control,
.vue-search-form-select-header-inner{
	white-space: nowrap;
	text-overflow: ellipsis;
	font-size: 16px;
	color: #000;
}

.vue-search-form .form-control{
	padding: 0 15px;
	outline: none;
}

.vue-search-form-select{
	position: relative;
}

.vue-search-form-select-header{
	position: relative;
	padding: 0 40px 0 15px;
	cursor: pointer;

	/* -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	-moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); */
}

.vue-search-form-select-header.active{
	border-bottom-color: transparent;

	-webkit-border-bottom-left-radius: 0;
	-moz-border-bottom-left-radius: 0;
	border-bottom-left-radius: 0;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-bottom-right-radius: 0;
	border-bottom-right-radius: 0;
}

.vue-search-form-select-header:after{
	content:"";
	position:absolute;
	right: 15px;
	top: 0;
	bottom: 5px;
	margin: auto;
	width: 9px;
	height: 9px;
	border: 1px solid #3F3D56;
	border-width: 0 2px 2px 0;

	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	transform: rotate(45deg);

	-webkit-transition: transform 0.3s ease-in-out;
	-moz-transition: transform 0.3s ease-in-out;
	transition: transform 0.3s ease-in-out;
}

.vue-search-form-select-header.active:after{
	-webkit-transform: rotate(-135deg);
	-moz-transform: rotate(-135deg);
	transform: rotate(-135deg);
}

.vue-search-form-select-option,
.vue-search-form-select-header-inner{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.vue-search-form-select-option .flag-icon,
.vue-search-form-select-header-inner .flag-icon{
	flex-grow: 0;
	flex-shrink: 0;
	width: 17px;
	line-height: 13px;
	margin-right: 10px;
}

.vue-search-form-select-header-inner{
	overflow: hidden;
	display: block;
	position: relative;
}

.vue-search-form-select-header-inner .flag-icon{
	align-items: center;
}

.vue-search-form-select-dropdown{
	position: absolute;
	top: 100%;
	left: 0;
	right: 0;
	background: #FFF;
	border: 1px solid #d8dff2;
	border-top: none;
	overflow: hidden;

	-webkit-border-radius: 0 0 14px 14px;
	-moz-border-radius: 0 0 14px 14px;
	border-radius: 0 0 14px 14px;
}

.vue-search-form-select-list{
	list-style-type: none;
	margin: 0 !important;
	padding: 0 !important;
	max-height: 192px;
	overflow: auto;
}

.vue-search-form-select-option{
	padding: 10px 15px;
	font-size: 16px;
	font-weight: 500;
	color: #2C3441;
	cursor: pointer;
	border-top: 1px solid #f2f2f2;
}

.vue-location-autocomplete-options .vue-search-form-select-option:before{
	flex-shrink: 0;
	content: "";
	width: 14px;
	height: 14px;
	margin-right: 5px;
	background: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3Csvg fill='%23C0C0C0' version='1.1' id='Capa_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='800px' height='800px' viewBox='0 0 425.963 425.963' xml:space='preserve'%3E%3Cpath d='M213.285,0h-0.608C139.114,0,79.268,59.826,79.268,133.361c0,48.202,21.952,111.817,65.246,189.081 c32.098,57.281,64.646,101.152,64.972,101.588c0.906,1.217,2.334,1.934,3.847,1.934c0.043,0,0.087,0,0.13-0.002 c1.561-0.043,3.002-0.842,3.868-2.143c0.321-0.486,32.637-49.287,64.517-108.976c43.03-80.563,64.848-141.624,64.848-181.482 C346.693,59.825,286.846,0,213.285,0z M274.865,136.62c0,34.124-27.761,61.884-61.885,61.884 c-34.123,0-61.884-27.761-61.884-61.884s27.761-61.884,61.884-61.884C247.104,74.736,274.865,102.497,274.865,136.62z'/%3E%3C/svg%3E") center center no-repeat;

	-webkit-background-size: contain;
	-moz-background-size: contain;
	background-size: contain;
}

.vue-search-form-select-option:focus,
.vue-search-form-select-option:hover{
	background-color: #2C3441;
	color: #FFF;
}

.vue-search-form-select-option .flag-icon{
	align-items: baseline;
	margin-left: -10px;
}

.vue-search-form-select-back{
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	cursor: pointer;
	font-size: 16px;
	font-weight: 500;
	color: #c5262c;
	height: 35px;
	line-height: 35px;
	padding-left: 25px;
	background: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 15.980501 11.3345' height='11.335' width='15.98'%3E%3Cpath d='M5.188 11.138c.26.262.814.262 1.078 0 .246-.261.246-.814 0-1.077L2.684 6.526h12.378c.525 0 .919-.423.919-.801a.897.897 0 0 0-.92-.917H2.598l3.669-3.581c.246-.247.246-.771 0-1.032-.264-.26-.817-.26-1.078 0L.197 5.07c-.262.393-.262.772 0 1.033z' fill='%23c5262c' fill-rule='evenodd'/%3E%3C/svg%3E") 8px center no-repeat;
	
	-webkit-background-size: 12px auto;
	-moz-background-size: 12px auto;
	background-size: 12px auto;
}

.vue-search-form-field-error{
	font-size: 12px;
	color: #750000;
	padding: 6px 18px;
}

.vue-search-form-errors-wrap{
	font-size: 14px;
	padding: 5px 15px;
	margin-top: 10px;
	color: #ffffff;
	border: 1px solid #b30000;
	background: #750000;

	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
}

.vue-search-form-errors{
	list-style-type: none;
	margin: 0 !important;
	padding: 0 !important;
}


@media only screen and (max-width: 1000px) {
	.vue-search-form-submit-wrap button{
		font-size: 17px;
	}
}

@media only screen and (max-width: 767px) {
	.vue-search-form{
		max-width: 400px;
		margin: auto;
	}

	.vue-search-popup .vue-search-form{
		max-width: 100%;
		padding: 0;
	}
}

@media only screen and (max-width: 540px) {
	.vue-search-form{
		max-width: 340px;
	}

	.vue-search-form-select-header-inner{
		font-size: 15px;
	}
}
