/* -----------------------------------------------------------------------------
   STRUCT utilities.scss - Basic styling utilities
   
   This file contains utility classes for common styling patterns.
   -------------------------------------------------------------------------- */
.bordered {
  border: 2px solid black; }

.bordered-3 {
  border: 2px solid black;
  border-bottom: none; }

img.adapt {
  width: 100%; }

.tr {
  text-align: right; }

input.no-style {
  border: none;
  outline: none;
  background: none;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  padding: 0; }

.center {
  margin-left: auto;
  margin-right: auto; }

.max-50rem {
  max-width: 50rem; }

.max-40rem {
  max-width: 40rem; }

.max-30rem {
  max-width: 30rem; }

.a4-50rem--height {
  height: calc(50rem * 1.414); }

.full-height {
  height: 100vh; }
