.select-sim {
  width: 143px;
  height: 58px;
  line-height: 22px;
  vertical-align: middle;
  position: relative;
  border-top-left-radius: 15px;
  border-top: 2px solid #7e7e7e;
  border-bottom: 2px solid #7e7e7e;
  border-right: 0px solid #7e7e7e;
  border-left: 2px solid #7e7e7e;
  border-bottom-left-radius: 15px;

  overflow: hidden;
  color: black;
}

.select-sim::after {
  font-size: 0.5em;
  font-family: arial;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}

.select-sim:hover::after {
  content: "";

}

.select-sim:hover {
  overflow: visible;
}

.select-sim:hover .options .option label {
  display: inline-block;
  
}

.select-sim:hover .options {
  background: white;
  border: 0px solid #ccc;
  position: absolute;
  top: 40px;
  left: -1px;
  height: 180px;
  overflow-y: scroll;
  margin-right: 0px;
  width: 170px;
  z-index: 99999;
}

.select-sim .options .option {
  overflow: hidden;
  font-size: 1rem;
  margin-left: -5px;
  font-weight: bold;
  font-family: 'poppinsregular', sans-serif;
}

.select-sim:hover .options .option {
  overflow: hidden;
  border: 0px solid red;
  margin-left: -5px;
}

.select-sim .options .option img {
  vertical-align: middle;
  width: 20px;
  height: 15px;
}

.select-sim .options .option label {
  display: none;
}

.select-sim .options .option input {
  width: 0;
  height: 0;
  overflow: hidden;
  float: left;
  border: 0px solid red;
  display: inline-block;
}

.select-sim .options .option input:checked+label {
  display: block;
  width: 100%;
}

.select-sim:hover .options .option input+label {
  display: block;
}

.select-sim:hover .options .option input:checked+label {
  background: #fffff0;
}

.form-select {
  width: 145px;
  height: 57px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top-left-radius: 15px;
  border: 0px solid #7e7e7e;
  border-bottom-left-radius: 15px;
  padding-left: 20px;
}

.form-select2 {
  width: 100%;
  height: 57px;
  padding-top: 15px;
  padding-bottom: 15px;
  border-top-left-radius: 15px;
  border: 0px solid #7e7e7e;
  border-bottom-left-radius: 15px;
  padding-left: 20px;
}