@import '../../uikit/_colors';

.flex-row {
    display: flex;
    flex-direction: row;
}

.toolbar {
    padding: 0;
    background-color: $light-gray;
    color: #666666;

    .disabled {
        cursor: default;
        md-icon {
            cursor: default;
            color: $gray;
        }
    }


    va-search-box {
        margin-right: 10px;
        width: 350px;
    }

    .table-controls-row {
        padding: 0 10px 10px;
        display: flex;
        flex-direction: row;
        align-items: center;
    }

    .table-controls-row:first-of-type {
        padding-top: 10px;
    }

}

.top-border {
    border-top: 1px solid $medium-gray;
}

.selected {
    background-color: white;
}

.row {
  display: flex;
  flex-wrap: wrap;
}
.row + .row-gutters {
  margin-top: 0;
}

.row-gutters {
  margin-top: -20px;
  margin-left: -20px;
}
.row-gutters > .col-flex {
  padding-top: 20px;
  padding-left: 20px;
}

.col-flex {
  position: relative;
  max-width: 100%;
  box-sizing: border-box;
  flex: 0 0 auto;
  width: 100%;
}


@media screen and (min-width: 480px) {
  .col-flex {
    width: 50%;
  }
}

@media screen and (min-width: 1200px) {

  .col-flex  {
    width: 33.333333%;
  }
}
