@import url(https://fonts.googleapis.com/css?family=Roboto);


.search_box {
  padding-top : 10px;
}

.search {
  padding-left: 25px;
  display: flex;
  align-items: center;
  margin : auto;
  width : 99%;
  height: 45px;
  background-color : white;
  -webkit-box-shadow: 0px 10px 38px 0px rgba(0,0,0,0.1);
  -moz-box-shadow: 0px 10px 38px 0px rgba(0,0,0,0.1);
  box-shadow: 0px 10px 38px 0px rgba(0,0,0,0.1);
  border-top-left-radius: 25px;
  border-bottom-left-radius: 25px;
}

.borderRightRadius25{
	border-top-right-radius: 25px;
	border-bottom-right-radius: 25px;
}

.borderRadius25{
	border-radius: 25px;
}

.backgroundOlive {
    background-color: #C1FF72;
}

.select_area {
  color : #4451FE;
  display : flex;
  align-items: center;
  font-family: 'Roboto', sans-serif; line-height:24px;
  font-weight : medium ;
}

.text {
  padding-left:15px;
  color: #000;
}

.line {
  margin-left: 15px;
  border-left: 1px solid #dbb135;
  height: 40px;
}

.search_text {
  width: 100%;
  border: none;
  margin-left : 15px;
  font-size : 16px;
  font-family: 'Roboto', sans-serif; line-height:24px;
  font-weight : Regular ;
  place
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #ADB1B8;
}


.text_and-icon {
  width: 410px;
  display: flex;
  align-items: center;
}
.search_icon {
  color : #5E6573;
    transition: all .6s ease-in-out;
    -webkit-transition: all .6s ease-in-out; /** Chrome & Safari **/
    -moz-transition: all .6s ease-in-out; /** Firefox **/
    -o-transition: all .6s ease-in-out; /** Opera **/
}

.search_text:focus {
  outline: none !important;
}

.search_text:focus + .search_icon{
  color : #4451FE;
  transform: translate(55px,0);
    -webkit-transform: translate(55px,0); 
    -o-transform: translate(55px,0); 
    -moz-transform: translate(55px);
}
