  .custom_select {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 2.5%;
    margin-top: 0.5%;
  }
  
  .select_trigger {
    display: block;
    padding: 0.1% 20px;
    background-color: #ff3131;
    border: 2px solid #ff3131;
    border-radius: 3px;
    font-size: 16px;
    cursor: pointer;
    width: 100%;
    font-family: verdana;
    color: #000;
    text-align: start;
  }

   .select_trigger:hover{
    background-color: #fff;
    color: #000;
}
  
  .select_menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 999;
    display: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    border: 3px solid #ff3131;
    list-style: none;
    width: 98%;
    max-height: 200px;
    overflow-y: scroll;
  }
  
  .select_menu li {
    padding: 0 0;
  }

  .select_menu li:hover{
    background-color: #ccc ;
  }
  
  .select_menu a {
    display: block;
    padding: 5px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
  }
  
  .select_menu a:hover {
    background-color: #ccc;
  }
  
  .hidden_select {
    display: none;
  }

  .show_menu{
    display: block;
  }

  li:has(.selected_value){
    background-color: #ff3131;
  }

  li:has(.selected_value) a{
    color: #fff !important;
  }