@import '../../style/variables';

.#{$prefix}time-picker {
  display: inline-block;
  font-size: $font-size;
  font-family: $font-family;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);

  &__panel {
    display: inline-block;
    max-height: 210px;
    overflow-y: auto;
    color: rgba(0, 0, 0, 0.65);
    border-left: 1px solid #e8e8e8;

    &:first-child {
      border-left: 0;
    }
  }

  &__ul {
    box-sizing: border-box;
    list-style-type: none;
    padding: 0 0 180px;
    margin: 0;
  }

  &__li {
    cursor: pointer;
    box-sizing: border-box;
    width: 100%;
    height: 30px;
    line-height: 30px;
    user-select: none;
    padding: 0 15px 0 10px;

    &:hover {
      background-color: lighten($primary-color, 40%);
    }

    &_selected {
      font-weight: bold;
      background: #f5f5f5;
    }
  }
}
