time-filter {
  display: inline-block;
  border: 2px solid #ECF0F1;
  border-radius: 4px;

  .timefilter-button {
    color: var(--global-theme-color-deep, #04BEB4);
    height: 34px;
    line-height: 34px;
    padding: 0 10px;
    cursor: pointer;
    display: inline-block;
    transition: none;

    &:hover {
      color: var(--global-theme-color-deep, #298FA3);
      text-decoration: none;
      background-color: #ECF0F1;
    }
  }

  .timefilter-button-group {
    display: flex;
  }

  .timefilter-tabset {
    width: 780px;
    font-size: 13px;
    padding: 6px;
    display: flex;

    .tab-content {
      flex: 1;
    }

    header {
      height: 24px;
    }
  }

  .tab-pane > div {
    display: flex;

    section {
      flex: 1;
      margin: 0 12px;
    }
  }

  .pane-fast {
    position: relative;

    &-right::before {
      content: "";
      position: absolute;
      display: block;
      width: 2px;
      height: 100%;
      left: -24px;
      right: 0;
      margin: 0 auto;
      background: #ECF0F1;
    }

    ul {
      columns: 3;
    }

    a {
      padding: .1em .6em .15em;
      display: inline-block;
      border-radius: .25em;

      &:hover {
        color: var(--global-theme-color-light, #00c8c1);
      }
    }

    .active a {
      background-color: var(--global-theme-color-light, #00c8c1);
      color: white;
      pointer-events: none;
    }

    .label:not(.label-primary) {
      color: inherit;
    }
  }

  .pane-absolute {
    input[type=datetime-local] {
      &::-webkit-calendar-picker-indicator {
        display: none;
      }

      margin-bottom: 12px;
    }
  }

  [uib-datepicker].well {
    margin-bottom: 0;
  }

  ng-transclude:not(:empty) {
    border-left: 2px solid #ECF0F1;
  }
}
