/* IE11 hide native button (thanks Matt!) */
select::-ms-expand {
display: none;
}
.selectdiv{
  /* direction: ltr; */
  position: relative;
}
.selectdiv:after {
  /* content: '<>'; */
  content: '';
  background: url('../img/select_arr.svg') no-repeat 50% 50% fixed;
  width: 30px;
  height: 30px;
  font: 17px "Consolas", monospace;
  color: #3D4C54;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  left: 11px;
  /*Adjust for position however you want*/
  top: 7px;
  padding: 0 0 5px;
  /*left line */
  position: absolute;
  pointer-events: none;
}
.selectdiv label{
    width: 100%;
    margin-bottom: 0;
}
.selectdiv select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  /* Add some styling */
  
  display: block;
  width: 100%;
  height: 42px;
  float: right;
  margin: 0px;
  padding: .375rem .75rem;
  font-size: 16px;
  line-height: 1.75;
  color: #3D4C54;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #D1D1D1;
  border-radius: 8px;
  -ms-word-break: normal;
  word-break: normal;
}

input[type="checkbox"] {
  display: none;
}
input[type="checkbox"] + *::before {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: 1rem;
  height: 1rem;
  border-radius: 10%;
  border-style: solid;
  border-width: 0.1rem;
  border-color: #D1D1D1;
  background-color: #fff;
}
input[type="checkbox"]:checked + *::before {
  content: "✓";
  color: white;
  line-height: 1;
  text-align: center;
  background: #0c4c8f;
  border-color: #0c4c8f;
}

@media (max-width:767.98px){
    .selectdiv select{border-radius: 7px;}
}