.dropdown {
  position: relative;
  display: inline-block;

  &:hover{
    .dropdown-content {
      display: block;
    }
  }

  .dropdown-content {
    display: none;
  }
}

.dropdown-content {
  position: absolute;
  z-index: 100;
  border-radius: 30px;
  background: $white;
  box-shadow: 0 2px 50px 0 rgba(0, 0, 0, 0.10);
  overflow: auto;
  max-height: 250px;
  min-width: 100%;

  &:focus {
    outline: none;
  }

  .dropdown-elem {
    text-decoration: none;
    display: flex;
    padding: 15px;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    white-space: nowrap;
    color: $black;
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.75rem;

    &:first-child {
      border-top-left-radius: 30px;
      border-top-right-radius: 30px;
    }

    &:last-child {
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;
    }

    &:hover {
      background-color: $light_green;
      color: $dark_green;
    }
  }
}

