
.custom-select {
    position: relative;
    font-family: Arial;
    width: 100% !important;
    margin: 30px 0;
  }
  
  .custom-select select {
    display: none; 
  }
  
  
  .select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    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;
    top: 7px;
  }

  .select-items div,.select-selected {
    padding: 0 15px;
    cursor: pointer;
  }
  
 
  .select-items {
    position: absolute;
   margin-top: 30px;
   padding: 10px 20px;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
    background: #fff;
    border-radius: 0 0 10px 10px;
  }

  .select-items div {
      padding: 5px 0;
  }
  

  .select-hide {
    display: none;
  }
  
  .select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
  }