$activeColor: #dc0000;

.myTableHeader {

  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  font-weight: 700;
  padding: 0.5em 0.4em 0.5em 0.1em;

  &Title {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    padding-right: 0.3em;
  }

  &Icons {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    font-size: 0.9em;

    .glyphicon {
      cursor: pointer;
      padding-right: 0.2em;
      display: flex;
      align-items: center;
      &.shadowed {
        color: black;
        opacity: 0.2;
      }
      &.active {
        color: $activeColor;
      }
    }
  }

  .filterIcon {
    cursor: pointer;
    padding-left: 0.2em;
    &:before {
      content: "\e138";
    }
    &.active {
      color: $activeColor;
    }
  }

  .columnFilter {
    z-index: 1050;
    display: flex;
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 10em;
    width: 100%;
    background: #e8e8e8;
    border: 1px solid black;
    border-radius: 0.2em;
    margin: 0;
    padding: 0.5em;
    opacity: 0;
    transition-duration: 0.2s;
    transition-timing-function: ease-in;
    transition-property: all;
    transform: rotate3d(1, 0, 0, 90deg);
    &.visible {
      bottom: 3em;
      opacity: 1;
      transform: rotate3d(1, 0, 0, 0deg);
    }
  }
}

