/* Give these a better home when more styles are defined */

.underline {
  text-decoration: underline;
}

.unlink {
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.hidden {
  display: none;
}

.cursor-pointer {
  cursor: pointer;
}

.mobile-only {
  display: block;
}

.mobile-hide {
  display: none;
}

.tablet-show {
  display: none;
}

@media screen and (min-width: 600px) {
  .mobile-only {
    display: none;
  }

  .mobile-hide {
    display: block;
  }

  .tablet-hide {
    display: none;
  }

  .tablet-show {
    display: inherit;
  }
}

@media screen and (min-width: 1000px) {
  .desktop-hide {
    display: none;
  }
}

.opacity-70 {
  opacity: 0.7;
}
