.select-dropdown {
    position: relative;
    display: block;
    max-width: 100%;
    margin: 0 0px 0 0;
    color: #8A8A8A;
  }
  .select-dropdown:last-child {
    margin-right: 0px;
  }
  .select-dropdown__button {
    padding: 0.375rem 0.75rem;
    background-color: #fcfcfc;
    color: #000000;
    border: 1px solid #CACACA;
    border-radius: 10px;
    cursor: pointer;
    width: 100%;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    height: 45px;
  }
  .select-dropdown__button::focus {
    outline: none;
  }
  .select-dropdown__button .zmdi-chevron-down {
    position: absolute;
    right: 10px;
    top: 12px;
  }
  .select-dropdown__list {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    max-height: 182px;
    overflow: auto;
    margin: 0;
    padding: 0;
    border: 1px solid #C3C3C3;
    border-top: 0px solid transparent;
    list-style-type: none;
    opacity: 0;
    pointer-events: none;
    transform-origin: top left;
    transform: scale(1, 0);
    transition: all linear 0.2s;
    z-index: 2;
  }
  .select-dropdown__list.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1, 1);
  }
  .select-dropdown__list-item {
    display: block;
    list-style-type: none;
    padding: 6px 12px;
    background: #fcfcfc;
    cursor: pointer;
    color: #212529;
    text-align: left;
    transition: all ease-in-out 0.3s;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
  }
  .select-dropdown__list-item:hover {
    background-color: #FD7E14;
    color: #fff;
    transition: all ease-in-out 0.3s;
  }
  @media (max-width:576px){
    .select-dropdown__button{
      font-size: 15px;
    }
    .select-dropdown{
      font-size: 15px;
    }
  }