.padding-100 {
  padding: 100px 0;
}

/* end margin and padding helpers */

.d-flex {
  -webkit-display: flex !important;
  -moz-display: flex !important;
  -ms-display: flex !important;
  -o-display: flex !important;
  display: flex !important;
}

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

.flex1 {
  flex: 1;
}

.flex2 {
  flex: 2;
}

.height-md {
  height: 30vh;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.z-ind0 {
  z-index: 0;
}

.z-ind2 {
  z-index: 2;
}

.hidden {
  display: none;
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

