@mixin drop-down-wrap(
  $bg-color: #ffffff,
  $padding: $base-padding $base-padding,
  $radius: $base-btn-border-radius
) {
  width: max-content;
  min-width: 22rem;
  //   box-shadow: 0px 24px 48px -8px rgba(51, 51, 51, 0.04), 0px 48px 64px -36px rgba(51, 51, 51, 0.08);
  box-shadow: 0.1rem 0.1rem 8rem 0.2rem rgba(0, 0, 0, 0.05),
    -0.1rem -0.1rem 8rem 0.2rem rgba(0, 0, 0, 0.05);
  font-size: 1.5rem;
  display: flex;
  align-items: stretch;
  gap: 1.3rem;
  border-radius: 0.8rem;
  flex-wrap: wrap;
  flex-direction: column;
  padding: 2rem 1.6rem;
  background-color: $bg-color;
  height: max-content;

  & > *:not(:last-child) {
    border-bottom: 0.09rem solid #e5e6e6;
    padding-bottom: 1.3rem;
  }

  .text-box {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;

    .avatar-box {
      width: 2.7rem;
      height: 2.7rem;
      border-radius: 50%;
      display: grid;
      place-items: center;
      background-color: #e8fff6;
      border: 0.08rem solid #9be5c9;
      margin-right: 1rem;

      span {
        font-weight: 800;
        font-size: 1rem;
        display: inline-block;
        letter-spacing: 0.07rem;
        color: #0b8376;
      }
    }

    .img-box {
      width: 2.7rem;
      height: 2.7rem;
      border-radius: 50%;
      overflow: hidden;
      margin-right: 1rem;

      .img {
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }

    .icon-box {
      width: 2rem;
      height: 2rem;

      .img{
        width: 100%;
        height: 100%;
        object-fit: contain;
      }
    }

    .text {
      font-size: 1.3rem;
      font-weight: 400;
      color: #020202;
      cursor: pointer;
      text-transform: capitalize;
    }
  }

  .text-box_two {
    .img-box {
      width: 2.7rem;
      height: 2.7rem;
    }

    .text_two {
      display: flex;
      flex-direction: column;
      gap: 0.1rem;

      & > *:first-child {
        font-weight: 600;
      }

      span {
        letter-spacing: -0.2%;
        font-size: 1.2rem;
      }
    }
  }
}

.drop-down-wrap {
  @include drop-down-wrap;
}
