.customselect {
    position: relative;
}

.customselect input {
    background-color: transparent !important;
    /*line-height: 2.2rem;*/
}

.customselect button {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    border: none;
    padding-right: .3rem;
    padding-left: .3rem;
    background-color: rgb(255,255,255);
    background-clip: content-box;
}

.customselect button svg {
    display: block;
    vertical-align: middle;
    width: 1.25rem;
    height: 1.25rem;
}

.customselect ul {
margin-top: .2rem;
    position: absolute;
    min-width: 100%;
    border-radius: 0.25rem;
    border: 1px solid #ced4da; 
    background-color: rgb(255, 255, 255);
    box-shadow: rgb(255, 255, 255) 0px 0px 0px 0px, rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.1) 0px 4px 6px -4px;
    padding: 0;
    z-index: 100;
    max-height: 13rem;
    overflow-y: auto;
overflow-x: hidden;
    white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: none;
}

.customselect.active ul {
  display: block;
}

.customselect ul li {
    padding: .4rem 1.2rem .4rem .5rem;
    list-style-type: none;
    font-size: .8rem;   
}

.customselect ul li.hidden {
    display: none;
}

.customselect ul li input[type="checkbox"] {
    margin: 0 .3rem 0 0;
}

.customselect ul li label {
    line-height: 1rem;
    width: 100%;
    margin: 0;
}

.js-Dropdown {
  display: inline-block;
  font: 400 14px sans-serif;
  position: relative;
  width: 20em;
}
.js-Dropdown-title {
  // background: #ffffff;
  // border: 1px solid #a5a5a5;
  // border-radius: 4px;
  // box-sizing: border-box;
  cursor: pointer;
  // font: 400 14px sans-serif;
  // height: 3em;
  // padding: .5em 1em;
  position: relative;
  text-align: left;
  width: 100%;
}
.js-Dropdown-list {
  background: #ffffff;
  border-left: 1px solid #a5a5a5;
  border-right: 1px solid #a5a5a5;
  box-sizing: border-box;
  display: none;
  height: 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  padding: 0;
  position: absolute;
  transition: .2s linear;
  width: 100%;
  z-index: 999;
}
.js-Dropdown-list.is-open {
  display: block;
  height: auto;
  opacity: 1;
}
.js-Dropdown-list li {
  border-bottom: 1px solid #a5a5a5;
  cursor: pointer;
  padding: .75em 1em;
}
.js-Dropdown-list li:hover {
  background-color: pink;
}
.js-Dropdown-list li.is-selected {
  background-color: crimson;
  color: #eee;
}
.js-Dropdown-optgroup {
  background: #444;
  border-bottom: 1px solid #a5a5a5;
  color: #ddd;
  cursor: default;
  padding: .5em;
  text-align: center;
}
