

.drop-down {
    position: relative;
    display: flex;
    align-items: center;
    background-color:transparent;
    color: #ebebeb;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.322);
    width: 150px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    border-radius: 5px;
  }

  .drop-down .wrapper {
    display: flex;
    gap: 0.5rem;
    align-items: center;
  }
  .drop-down img {
    width: 32px;
    height: 19px;
  }
  .drop-down .list {
    background-color: #2a2a2a;;
    position: absolute;
    top: 40px;
    left: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.322);
    cursor: pointer;
    max-height: 400px;
    width: 100%;
    display: none;
  }
  .drop-down .show{
    display: block;
  }
  .drop-down .item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
  }
  .drop-down .item:hover {
  background-color: #e70e0e;
  }
  
  
  
  