.custom-select {
    position: relative;
    margin-left: 2%;
    margin-right: 2%;
    top: -10px;
    margin-bottom: 10px;
    float: left;
    border-color: #FFFFFF;
    border: 1px solid;
}
#custom-select-4 {
    width: 20%;
}
#custom-select-5 {
    width: 18%;
}
#noborde {
    border: 0px;
    top: -15px;
}
.custom-select select {
    display: none; /*hide original SELECT element:*/
}
.select-selected {
    border-style: solid;
    border-color: #FFFFFF;
    border: 1px;
}
/*style the arrow inside the select element:*/
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #FFFFFF transparent transparent transparent;
}
/*point the arrow upwards when the select box is open (active):*/
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}
/*style the items (options), including the selected item:*/
.select-items div,.select-selected {
  color: #FFFFFF;
  padding: 10px;
  cursor: pointer;
  user-select: none;
}
/*style items (options):*/
.select-items {
    position: absolute;
    float: none;
    top: 0px;
    left: 0;
    right: 0;
    overflow: hidden;
    display: block;
    z-index: 450;
    margin: auto !important;
    background-color:rgba(0,0,0,1);
}
/*hide the items when the select box is closed:*/
.select-hide {
  display: none;
}
.select-items div:hover, .same-as-selected {
}
.buscando {
    height: 30px !important;
    width: 30px !important;
    background-color: #59BFCC;
    border: 1px;
    border-style: solid;
    border-color: #808080;
    background-image: url(../theme/search.svg);
    background-repeat: no-repeat;
    background-position: center;
}