.select {
  background-color: transparent;
  position: relative; 
  text-align: center;
}
.select select {
  outline:none;
  background: transparent; 
  width: 100%;
  display: inline-block;
  padding: 10px;
  padding-left:13px;
  border: 2px solid #000;
  position: relative;
  color:#000;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select select:hover {
  cursor: pointer;
}
/*.select:after {
  content: "▼";
  color:#777;
  width: 10px;
  height: 5px;
  position: absolute;
  background-color: transparent;
  z-index: 10;
  right: 10px;
  top: 12px;
  text-align: center;
  font-size: 15px;
} */
select:focus {
  transition: all .5s;  
  border: 2px solid #000 !important;
  color:#000 !important;
}