.selectbox {
  position: relative;
}
.selectbox:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 15px;
  width: 0;
  height: 0;
  margin-top: -1px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #333;
}
.selectbox input.selectbox-input {
  width: 100%;
  border: 1px solid #eaeaea;
  z-index: 1;
  border-radius: 5px;
  min-width: 100px;
  padding: 15px 20px;
  box-sizing: border-box;
  font-size: 16px;
  outline: none;
  cursor: pointer;
}
.selectbox ul.selectbox-list {
  position: absolute;
  top: 60px;
  background-color: white;
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 0;
  margin: 0;
  z-index: 100;
  width: 100%;
  max-height: 300px;
  overflow: scroll;
}
.selectbox ul.selectbox-list li {
  list-style: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
}
.selectbox ul.selectbox-list li:first-child {
  border-radius: 10px 10px 0 0;
}
.selectbox ul.selectbox-list li:last-child {
  border-radius: 0 0 10px 10px;
}
.selectbox ul.selectbox-list li:hover {
  background-color: #F4F5F5;
  transition: all 0.2s;
}

/*# sourceMappingURL=selectbox.css.map */
