.cacsMap {
    background: rgba(0,0,0,0.6);
    display: flex !important;
    box-sizing: border-box;
    padding: 5px;
    color: #fff;
    width: 100%;
    min-height: 50px;
    z-index: 10;
}
 .cont-cacsMap{
  display: -webkit-box;
  display: -moz-box !important;
  display: -ms-flexbox !important;
  webkit-display: -webkit-flex !important;
  display: -webkit-flex !important;
  display: flex !important;
  flex-direction: row;
  -webkit-box-direction: row;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
 }
 .selectCacs{
  position: relative;
  width: calc(33% - 10px);
  margin: 0px 5px 30px;
 }
 .selectCacs > select {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  width: 100%;
  text-align: center !important;
  text-decoration: none;
  display: table;
  border-radius: 3px;
  padding: 10px 20px;
  line-height: 1;
  cursor: pointer;
  background: #1F97AE;
  color: #fff !important;
  min-width: 150px;
  border: none;
  font-size: .85rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  float: left;
 }
 .selectCacs:after {
  content: "\F078";
  font-family: "FontAwesome";
  position: absolute;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 20px;
  font-size: .75rem;
  position: absolute;
  right: 10px;
  pointer-events: none;
  color: white;
 }
 @media only screen and (max-width: 600px){
  .cont-cacsMap{
   flex-direction: column;
   -webkit-box-direction: column;
   -webkit-flex-direction: column;
   -ms-flex-direction: column;
  }
  .selectCacs{
   width: 100%;
   margin-bottom: 5px;
  }
 }

*{
  box-sizing: border-box;
}
body {
  font: 16px Arial;  
}
.autocomplete {
  /*the container must be positioned relative:*/
  position: relative;
  display: inline-block;
}
input {
  border: 1px solid transparent;
  background-color: #f1f1f1;
  padding: 10px;
  font-size: 16px;
}
input[type=text] {
  background-color: #f1f1f1;
  width: 100%;
}
input[type=submit] {
  background-color: DodgerBlue;
  color: #fff;
  cursor: pointer;
}
.autocomplete-items {
  position: absolute;
  border: 1px solid #d4d4d4;
  border-bottom: none;
  border-top: none;
  z-index: 99;
  /*position the autocomplete items to be the same width as the container:*/
  top: 100%;
  left: 0;
  right: 0;
}
.autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff; 
  border-bottom: 1px solid #d4d4d4; 
}
.autocomplete-items div:hover {
  /*when hovering an item:*/
  background-color: #e9e9e9; 
}
.autocomplete-active {
  /*when navigating through the items using the arrow keys:*/
  background-color: DodgerBlue !important; 
  color: #000000f0; 
}