

/* css for drop down menu filter component */
.dropbtn {
    background-color: rgb(49, 181, 84, 0.85);
    color: white;
    padding: 10px;
    font-size: 18px;
    border: none !important;
    border-radius: 0px ;
    cursor: pointer;
  }
 
  .dropbtn:hover {
    background-color: rgb(10, 81, 124, 0.85) !important;
    border-radius: 0px ;
    border: none ;
    outline: none;
  }
  .dropbtn:focus{
    background-color: rgb(49, 181, 84, 0.85);
    border-radius: 0px ;
    border: none ;
    outline: none;
  }

  .dropbtn.active {
    border-radius: 0px ;
    border: none ;
    outline: none;
    
  }

  .dropdown-item a.active {
    background-color: rgb(49, 181, 84, 0.85) !important;
    text-decoration: none;
    border: none;
    outline: none;
    
  }

  #filter {
    box-sizing: border-box;
    background-image: url('searchicon.png');
    background-position: 14px 12px;
    background-repeat: no-repeat;
    font-size: 16px;
    padding-top: 5px;
    border: none;
    border: 1px solid #ddd;
    /* min-width: 345px; */
    min-width: 395px;
    margin: 6px;
  }

  #filter:focus {
    outline: 3px solid #ddd;
  }

  .dropdown {
    position: relative;
    display: inline-block;
  }

  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 230px;
    overflow: auto;
    border: 1px solid rgba(0, 0, 0, .15);
    ;
    z-index: 100;
    height: 55vh;
    /* width: 377px; */
    width: 416px;
  }

  .dropdown-content a {
    color: #212529;
    padding: 10px 12px;
    text-decoration: none;
    display: block;
  }

  .main-list {
    font-weight: bold;
    color: #909090 !important;
  }

  .main-list:hover, .main-list:focus {
    
    color: rgb(49, 181, 84, 0.85) !important;
    font-weight: bold;
    outline: 0 !important;
  }
  .main-list.active{
color: none;
font-weight: none;
text-decoration: none;
outline: none;
  }

  .main-list {
    background-color:#f1f1f1 !important;
    outline: 0 !important;
  }

  .dropdown-item a:hover {
    background-color: rgb(10, 81, 124, 0.85) !important;
    color: white;
    font-weight: bold;
   
  }
  .show {
    display: block;
  }

  /* width */
  .dropdown-content::-webkit-scrollbar {
    width: 6px;

  }

  /* Track */
  .dropdown-content::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    box-shadow: inset 0 0 0.8px;
    border-radius: 1px;
  }

  /* Handle */
  .dropdown-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 1px;
  }

  /* Handle on hover */
  .dropdown-content::-webkit-scrollbar-thumb:hover {
    background: #555;
  }

  ul {
    list-style: none;
    margin: 0;
    padding: 0;
  }