
 .selectContainer {
    position: relative;
    font-family: Arial;
    width:150px;
  }
  
  .selectContainer select.customOne {
    opacity: 0;
    height: 1px;
    top: 20px;
    position: absolute;
  }

  .selectContainer select.multiple {
    padding:5px;
    width:150px;
    height: 90px;
  }
  
  .select-selected {
    position: relative;
    width:inherit;
    padding:5px;
    border: 1px solid #ccc;
    background-color: white;
    cursor: default;
  }
  
  .select-selected:after {
    position: absolute;
    content: "";
    top: 12px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: black transparent transparent transparent;
  }
  
  /*.select-selected.select-arrow-active:after {
    border-color: transparent transparent black transparent;
  }*/
  
  .select-items div {
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent #ccc #ccc #ccc;
    cursor: default;
    width:inherit;
  }
  
  .select-items {
    position: absolute;
    background-color: white;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 3;
  }
  
  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected {
    background-color: #ccc;
  }