﻿.table {
  .table-item-wrapper {
    height: 40px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #f0f0f0;
    .table-item {
      padding: 0;
      margin: 0;
      display: flex;
      justify-content: space-between;
      box-sizing: border-box;
      width: 100%;
      height: 100%;
      padding: 0 20px;
      .content-fields {
        display: flex;
        justify-content: space-around;
        width: 100%;
        .column {
          width: 100%;
          display: flex;
          justify-content: flex-start;
          align-items: center;
          padding-right: 3px;
          &.actions {
            justify-content: center;
          }
        }
        &.selected {
          background: #7f7f7f;
          .text-common {
            color: #fff;
          }
        }
      }
    }
  }
}
