.no-display {
  display: none !important;
}

.height-100 {
  height: 100%;
}

.width-100 {
  width: 100%;
}

.vh-100 {
  height: 100vh;
}

.vw-100 {
  width: 100vw;
}

.flex {
  display: flex;
}

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

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

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

.flex-row-center-start {
  justify-content: center;
  align-items: start;
}

.flex-column-center-start {
  justify-content: start;
  align-items: center;
}

.pos-absolute {
  position: absolute;
}

.pos-relative {
  position: relative;
}

.inline {
  display: inline-block;
}

/* Components-ish */
.btn-link {
  background: none;
  color: #a4a6a7;
  border: none;
  transition: color 0.2s;

  &:hover {
    text-decoration: underline;
    cursor: pointer;
    color: #079797;
  }
}
