/*Styling Selectbox*/
.drop-select {
    width: 100%;
    display: inline-block;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 0 2px #505050;
    transition: all .3s ease;
    position: relative;
    color: #474747;
    height: 100%;
    max-height: 40px;
    text-align: left;
  }

  .drop-select .opt-select {
    cursor: pointer;
    display: block;
    padding: 7px
  }

  .drop-select .opt-select>i {
    font-size: 16px;
    color: #888;
    cursor: pointer;
    transition: all .3s ease-in-out;
    float: right;
    line-height: 20px
  }

  .drop-select:hover {
    box-shadow: 0 0 4px rgb(204, 204, 204)
  }

  .drop-select:active {
    background-color: #f8f8f8
  }

  .drop-select.active:hover,
  .drop-select.active {
    box-shadow: 0 0 4px rgb(204, 204, 204);
    border-radius: 2px 2px 0 0;
    background-color: #f8f8f8
  }

  .drop-select.active .opt-select>i {
    transform: scaleY(-1);
  }


  .drop-select .drop-menu {
    position: absolute;
    background-color: #fff;
    width: 100%;
    left: 0;
    margin-top: 1px;
    box-shadow: 0 1px 2px rgb(204, 204, 204);
    border-radius: 0 1px 2px 2px;
    overflow: hidden;
    display: none;
    max-height: 200px;
    overflow-y: auto;
    z-index: 9
  }

  .drop-select .drop-menu li {
    padding: 10px;
    transition: all .2s ease-in-out;
    cursor: pointer
  }

  .drop-select .drop-menu {
    padding: 0;
    list-style: none
  }

  .drop-select.active .drop-menu {
    display: block;
  }

  .drop-select .drop-menu li.drop-item:hover {
    background-color: #f2f2f2
  }

  .drop-select .drop-menu li:active {
    background-color: #e2e2e2
  }
  .drop-item{
    font-size: inherit;
    color:inherit;
  }

  .drop-item.selected{
    background-color: #e2e2e2
  }

  .drop-menu-search>input {
    font-size: 14px;
    width: 100%;
    height: 100%;
    outline: none;
    border: none;
  }

  .drop-menu-search::after {
    content: "";
    width: 100%;
    margin-top: 8px;
    border: 0.5px solid grey;
  }

  .drop-menu-search {
    display: flex;
    flex-direction: column;
  }