#translate {
  position: relative;
  display: inline-block;
}

#translate::before {
  content: "\1F310";
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  z-index: 2;
  pointer-events: none;
}

#translate select {
  padding-left: 40px !important;
  min-width: 180px;
  height: 42px;
  border-radius: 22px;
  background-color: #333 !important;
  color: #fff !important;
  border: 1px solid #000 !important;
}

#translate select option {
  background-color: #fff !important;
  color: #000 !important;
}

#translate select:focus {
  outline: none;
  border-color: #fff !important;
}


@media screen and (max-width: 450px) {
  #translate {
    width: 42px !important;
    height: 42px !important;
  }
  
  #translate::before {
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 20px !important;
    color: #fff !important;
  }
  
  #translate select {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    cursor: pointer;
    text-indent: -9999px !important;
    color: transparent !important;
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
  }
  
  #translate select:focus {
    border: none !important;
    outline: none !important;
  }
  
  #translate select option {
    color: #000 !important;
    background-color: #fff !important;
  }
}