/* TODO: add this file to all pages */
.flex {
  display: flex;
}
.expand1 {
  flex: 1;
}
.column {
  flex-direction: column;
}
.align-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.text-center {
  text-align: center;
}
.relative {
  position: relative;
}
.hide {
  display: none;
}
.zephyr-option-info {
  color: #6b778c;
}
.invisible {
  visibility: hidden;
}
.ellipses {
  text-overflow: ellipsis;
  overflow: hidden;
  width: 100%;
  white-space: nowrap;
}
.zsquad-top-banner {
  background: #42526e;
  margin: 0 0 20px;
  padding: 10px;
  color: white;
}
.zsquad-top-banner a {
  color: inherit;
  text-decoration: underline;
}
.zephyr-table {
  margin: 15px 0;
}
.zephyr-table .zephyr-table-column {
  width: 100px;
  display: flex;
  align-items: center;
}
.zephyr-table .zephyr-table-column .aui-avatar {
  margin: 0 5px 0 0;
}
.zephyr-table .zephyr-table-column.choice-column {
  width: 40px;
  justify-content: center;
}
.zephyr-table .zephyr-table-column.choice-column input {
  cursor: pointer;
}
.zephyr-table .zephyr-table-column.text-column {
  width: 100%;
}
.zephyr-table .zephyr-table-header {
  border-bottom: 2px solid rgba(9, 30, 66, 0.14);
  display: flex;
  font-size: 12px;
}
.zephyr-table .zephyr-table-header .zephyr-table-column {
  font-weight: bold;
  color: #44546F;
}
.zephyr-table .zephyr-table-body {
  border-bottom: 2px solid rgba(9, 30, 66, 0.14);
}
.zephyr-table .zephyr-table-body .zephyr-table-row {
  display: flex;
  height: 40px;
  position: relative;
}
.zephyr-table .zephyr-table-body .zephyr-table-row.disabled:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #fff;
  opacity: 0.5;
  cursor: not-allowed;
}
.zephyr-table .zephyr-table-body .zephyr-table-row.disabled:hover:after {
  content: attr(data-tooltip);
  position: absolute;
  color: #fff;
  background: #172B4D;
  border-radius: 0.5em;
  padding: 5px;
  bottom: -20px;
  z-index: 1;
}
