.customSelectContainer {
  width: 100%;
  height: 4.8rem;
  position: relative;
  @include min(tablet) {
    width: 60%;
    margin-left: auto;
  }
  .select {
    position: relative;
    display: block;
    width: 100%;
    background: var(--color-9);
    border-radius: 6px;
    padding: 1.5rem 2rem;
    text-align: left;
    font-size: 1.6rem;
    color: var(--color-22);
    font-weight: 700;
    box-shadow: 0 0.1rem 0.2rem 0 rgba(0, 0, 0, 0.2);
    max-width: 100%;

    &:after {
      @include arrow(var(--color-22), 1rem, down, false);
      position: absolute;
      right: 1rem;
    }
  }

  .list {
    width: 100%;
    top: 100%;
    flex-direction: column;
    @include visibility;
    transition: visibility 0s linear 0s, opacity 0s linear;
    box-shadow: 0 0.2rem 0.4rem rgba(21, 14, 6, 0.15);
    &.show {
      z-index: map-get($z-index, above-content);
    }
  }
}

.selectListItem {
  width: 100%;
  button {
    background: var(--color-9);
    padding: 1.5rem 2rem;
    text-transform: capitalize;
    font-weight: 700;
    color: var(--color-22);
    width: 100%;
    text-align: left; 
  }
}
