h1 {
  font-size: (36em/$global-size);
  font-weight: 700;
}

h2 {
  font-size: (22em/$global-size);
  font-weight: 700;
  line-height: (28/22);
}

h3 {
  font-size: (18em/$global-size);
  font-weight: 700;
}

h4 {
  font-size: (16em/$global-size);
  font-weight: 700;
  line-height: 20/16;
}

h5 {
  font-size: (14em/$global-size);
  font-weight: 700;
  line-height: 22/14;
}

h6 {
  font-size: (13em/$global-size);
  font-weight: 700;
  line-height: 22/13;
}

.text-12 {
  font-size: (12em / 16);
}

.text-13 {
  font-size: (13em / 16);
}

.text-14 {
  font-size: (14em / 16);
}

.mb-28 {
  margin-bottom: 28px;
}

.text-bold {
  font-weight: 700;
}

.font-semi-bold {
  font-weight: 600 !important;
}

.text-light {
  font-weight: 100;
  font-size: 14px;
}

.big {
  font-size: 16px;
  font-weight: bold;
  font-style: italic;
}

.text-semi-bold {
  font-weight: 600;
}

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 20px; /* Preferred icon size */
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  vertical-align: middle;

  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;

  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;

  /* Support for IE. */
  font-feature-settings: 'liga';

  &.honey {
    color: $honey;
    vertical-align: middle;
  }

  &.white {
    color: white;
    vertical-align: middle;
  }
}

.dark-mint {
  color: $dark-mint;

  &:hover {
    color: $dark-mint;
  }
}

.mint {
  color: $mint;
}

.light-grey {
  color: $light-grey;
}

.size-14 {
  font-size: 14px;
}

.grey-styling {
  font-size: (13em / 16);
  line-height: (22em / 13);
  font-weight: 600;
  color: $grey;
}

.no-checkbox-capitalize {
  .checkbox-title {
    text-transform: none;
  }
}

.admin-detail-view {
  h1 {
    border-bottom: 1px solid grey;
    margin-bottom: 0;
  }
}

.display-none {
  display: none !important;
}

.similar-results {
  .header {
    font-size: (36em / 16);
    font-weight: 600;
    line-height: (43em / 36);
    margin-right: 3px;
    display: inline-block;
    height: unset;
    padding: unset;
    margin-bottom: unset;
    vertical-align: middle;
  }

  hr {
    margin-top: 28px;
    margin-bottom: 0;
  }
}

.font-size-21 {
  font-size: 21px !important;
}

.hide-for-large-up {
  @include breakpoint(large up) {
    display: none;
  }
}

.small-text-left {
  @include breakpoint(small only) {
    text-align: left;
  }
}

.whitespace-nowrap {
  white-space: nowrap;
}

.behaviour-text {
  max-width: 30px;
  max-height: 30px;
  display: inline-block;
  margin-left: 4px;
}

.opacity-1 {
  opacity: 1 !important;
}

.min-height-mobile {
  min-height: 904px;
  @include breakpoint(large up) {
    min-height: 704px;
  }
}

.truncate {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.line-height-14 {
  line-height: 14px;
}

.hide-for-br-768-up {
  @include breakpoint(br-768 up) {
    display: none !important;
  }
}

.no-anchor-styles {
  display: block;
  color: inherit;
  text-decoration: none;
  @include breakpoint(large up) {
    &:hover {
      text-decoration: none;
      outline: none;
    }
  }
}