.searchbar{
	margin-top: 2%;
	height: 40px;
	background-color: #fff;
	border-radius: 30px;
	color: #353b48;
	width: 80%;;
	border:2px solid transparent;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}
.searchbar input:focus{
	border:2px solid dodgerblue;
	border-radius: 30px;
}

.search_input{
	color: #353b48;
	border: 0;
	outline: 0;
	background: none;
	line-height: 40px;
	transition: width 0.4s linear;
	padding: 0 10px;
	width: 100%;
	transition: width 0.4s linear;
}
.search_input::placeholder{
	color:#7088a1 !important;
}

.search_icon{
	height: 30px;
	width: 30px;
	float: right;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: white;
	color: #353b48;
	margin-top: -35px;
	margin-right: 10px
}
.form__group {
	position: relative;
	padding: 15px 0 0;
	margin-top: 10px;
}
.form__field {
	font-family: inherit;
	width: 100%;
	border: 0;
	border-bottom: 2px solid #5CB9D5;
	outline: 0;
	font-size: 17px !important;
	color: #5CB9D5;
	padding: 7px 0;
	background: transparent !important;
	transition: border-color 0.2s;
}
.form__field::placeholder {
	color: #fff;
	font-size:14px;
}
.form__label {
	position: absolute;
	top: 0;
	display: block;
	transition: 0.2s;
	font-size: 17px !important;
	color: #000;
}
.form__field:focus {
	padding-bottom: 6px;
	font-weight: 700;
	border-width: 3px;
	border-image: linear-gradient(to right, #388FF5, #5CB9D5);
	border-image-slice: 1;
}
.form__field:focus ~ .form__label {
	position: absolute;
	top: 0;
	display: block;
	transition: 0.2s;
	font-size: 17px !important;
	color: #5CB9D5;
	font-weight: 700;
}
/* reset input */
.form__field:required, .form__field:invalid {
	box-shadow: none;
}