.ac-duration-wrapper {
  position: relative;
  z-index: 1;
  .ac-duration {
    position: absolute;
    bottom: 30px;
    left: 0;
    z-index: 999;
  }
}
.ac-duration {
  height: 261px;
  display: inline-flex;
  flex-direction: column;
  text-align: center;
  box-shadow: 0px 4px 24px 0px rgba(0, 0, 0, 0.15);
  border: 1px solid $color-border;
  background-color: #fff;
  overflow: hidden;
  border-radius: 4px;
  .duration {
    padding: 8px 16px;
  }

  .duration-header {
    background-color: $secondary-light-gray;
    padding: 8px;
  }
  .duration-body {
    ul {
      li {
        padding: 6px;
        // color: $color-border-dark;
        cursor: all-scroll;
        user-select: none;
      }
      max-height: 150px;
      overflow-y: auto;
      &::-webkit-scrollbar {
        display: none;
      }
    }
  }
  .duration-footer {
    display: flex;
    justify-content: end;
    padding: 4px;
    border-top: 1px solid $color-border;
  }
}
