/* display and flex grid */

.display-flex {
  display: flex;
}

.display-block {
  display: block !important;
}

.justify-self-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.items-center {
  align-items: center;
}
.items-last-baseline {
  align-items: last baseline;
}

/* Size */
.height-30 {
  height: 30px !important;
}

.ml-5 {
  margin-left: 5px;
}

.mt-0 {
  margin-top: 0px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-16 {
  margin-bottom: 16px;
}


.mb-20 {
  margin-bottom: 20px;
}

.full-width {
  width: 100%;
  box-sizing: border-box;
}

.flex-1 {
  flex: 1;
}

/* Table */
.data-table th {    
  color: #7b8994;
  font-size: 11px;
  font-weight: 400;
  padding: 2px 5px;
  letter-spacing: 0.65px;
  border-top: none;
}

.data-table td {
  font-size: 12px;
  color: #47525d;
  border-top: 1px solid #dee6ec;
  line-height: 1.3;
  padding: 10px 5px;
  overflow-wrap: anywhere;
}

/* Font */
.lowercase {
  text-transform: lowercase;
}

.font-italic {
  font-style: italic;
}

.text-end {
  text-align: end !important;
}
