.queueGrid {
 display: grid;
 grid-template-columns:
  50px
  minmax(200px, 3fr)
  minmax(200px, 3fr)
  minmax(120px, 1fr)
  minmax(300px, 1fr)
  /* minmax(120px, 1fr) */
  1fr;
 align-items: center;
}

.queue-alert {
 display: flex;
 align-items: center;
 padding: 10px;
 background-color: rgb(232, 244, 253);
 color: rgb(13, 60, 97);
 border-radius: 8px;
}

.queue-title {
 display: flex;
 align-items: center;
 justify-content: space-between;
 margin-bottom: 15px;
}

.queue-alert md-icon {
 margin: 0 10px 0 0;
 color: #2196f3;
}

.heading {
 font-weight: 500;
 cursor: pointer;
 -webkit-user-select: none;
 -ms-user-select: none;
 user-select: none;
}

.highlight-text {
 font-weight: 500;
 color: #171725;
}

.regular-text {
 color: #44444f;
}

.email-checkbox {
 display: flex;
 align-items: center;
 justify-content: center;
}

.email-checkbox md-checkbox {
 margin: 0;
}

.highlight-row {
 background-color: #e9f4fe;
}

.data-row {
 height: 72px;
 border-bottom: 1px solid #e6e7e9;
}

.item {
 text-overflow: ellipsis;
 display: block;
 overflow: hidden;
 white-space: nowrap;
 padding-right: 10px;
}

.empty-state-text {
 color: #b6bfcc;
 font-weight: 500;
}
