@media (min-width: 576px) {
  .myselect {
    /*padding:0;*/
    /*margin-top:-8px;*/
    /*border:1px solid transparent;*/
    /*width:200px;*/
    /*border-radius:3px;*/
    /*overflow:hidden;*/
    /*background-color:rgba(255,255,255,0);*/
    display:none;
  }
}

@media (max-width: 575px) {
  .myselect {
    padding:0;
    margin-top:-7px;
    /*border:1px solid #e99a4f;*/
    width:140px;
    /*border-radius:3px;*/
    overflow:hidden;
    /*background-color:rgba(255,255,255,0);*/
    display:flex;
  }
}

.myselect select {
  padding:5px 12px;
  width:140px;
  border:none;
  box-shadow:none;
  background-color:#e99a4f;
  background-image:none;
  color:#fff;
  font-family:'Helvetica';
  font-size:13px;
}

.myselect select:focus {
  outline:none;
  border:none;
}

