@import "./variables.css";

*,
*:before,
*:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  background-color: var(--surface);
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  color: var(--text);
  line-height: 1.4;
  overscroll-behavior: contain;
}
h1,
h2,
h3,
h4,
h5,
h6,
p,
li {
  cursor: default;
}
h1 {
  font-weight: var(--wt-600-500);
  font-size: 30px;
  line-height: 1.3;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 18px;
}
h2 {
  font-weight: var(--wt-400-300);
  font-size: 24px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
h3 {
  font-weight: 300;
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
h4 {
  font-weight: var(--wt-400-300);
  font-size: 18px;
  color: var(--text-dark);
  margin-bottom: 12px;
}
h5 {
  font-weight: var(--wt-500-400);
  font-size: 16px;
  color: var(--text-dark);
  margin-bottom: 7px;
}
h6 {
  font-weight: var(--wt-600-500);
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 7px;
}
p {
  font-weight: var(--wt-400-300);
  margin: 0 0 12px 0;
}
a {
  text-decoration: none;
  color: var(--hm-system);
  cursor: pointer !important;
}
a:hover {
  color: var(--hm-system-hover);
}
ul,
ol {
  list-style-position: outside;
  margin: 0 0 12px 30px;
}
li {
  font-weight: var(--wt-400-300);
}
b,
strong {
  font-weight: var(--wt-600-500);
}
input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
  outline: none;
}
select {
  outline: none;
  appearance: none;
  border: none;
  background-color: var(--goldenrod);
  cursor: pointer;
  font-size: 14px;
}
.inline-flex {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px;
  flex-direction: row;
  align-content: start;
}
.label-container {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
}
.label-container-responsive {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
}
.label-container-actions {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: row;
  column-gap: 3px;
  row-gap: 6px;
  height: 24px;
}
.grid {
  display: grid;
  align-items: center;
  column-gap: 8px;
}
.column-gap-30 {
  column-gap: 30px;
}
.column-gap-50 {
  column-gap: 50px;
}
.row-gap-5 {
  row-gap: 5px;
}
.row-gap {
  row-gap: 8px;
}
.row-gap-12 {
  row-gap: 12px;
}
.row-gap-30 {
  row-gap: 30px;
}
.align-start {
  align-items: start;
}
.align-end {
  align-items: end;
}
.justify-center {
  justify-items: center;
  justify-content: center;
}
.justify-end {
  justify-items: end;
}
.fr {
  grid-template-columns: 1fr;
}
.auto-fr {
  grid-template-columns: auto 1fr;
}
.fr-fr {
  grid-template-columns: 1fr 1fr;
}
.fr-fr-responsive {
  grid-template-columns: 1fr 1fr;
}
.max-fr {
  grid-template-columns: max-content 1fr;
}
.max-fr-responsive {
  grid-template-columns: max-content 1fr;
}
.fr-max {
  grid-template-columns: 1fr max-content;
}
.fr-max-responsive {
  grid-template-columns: 1fr max-content;
}
.max-max {
  grid-template-columns: max-content max-content;
}
.max-max-responsive {
  grid-template-columns: max-content max-content;
}
.fr3-fr2-responsive {
  grid-template-columns: 3fr 2fr;
}
.fr3-fr5-responsive {
  grid-template-columns: 3fr 5fr;
}
.fr3-fr4-responsive {
  grid-template-columns: 3fr 4fr;
}
.fr-fr-fr {
  grid-template-columns: 1fr 1fr 1fr;
}
.fr-fr-fr-responsive {
  grid-template-columns: 1fr 1fr 1fr;
}
.narrow {
  max-width: 870px;
  margin: 0 auto;
}
.t-breadcrumbs {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}
.t-display {
  font-weight: 300;
  font-size: 19px;
  line-height: 1.3;
  color: var(--slate);
  padding-bottom: 15px;
}
.t-helper {
  font-size: 14px;
  line-height: 1.25;
  color: var(--text-gray-light);
}
.t-tiny {
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
  color: var(--text-gray-light);
}
.t-empty-list {
  font-size: 14px;
  color: var(--text-gray-light);
  padding: 15px 5px 15px 15px;
  margin: 0;
}
.t-checkbox {
  line-height: 1.2;
  font-weight: 300;
}
.t-big {
  font-size: 18px;
}
.t-sm {
  font-size: 14px;
  line-height: 1.25;
}
.t-300 {
  font-weight: 300;
}
.t-400 {
  font-weight: 400;
}
.t-500 {
  font-weight: 500;
  color: var(--text-dark);
}
.t-right {
  text-align: right;
}
.t-center {
  text-align: center;
}
.t-left {
  text-align: left;
}
.t-spacing-extra {
  letter-spacing: 0.2px;
}
.t-wrap {
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow: hidden;
}
.t-code {
  font-size: 14px;
  line-height: 1.25;
  color: var(--text-gray-light);
  margin-bottom: 0px;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}
.t-checkboxes-row-info {
  margin: 6px 4px 0 18px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.2;
}
.tiptap-override li p {
  margin-bottom: 0;
}
.tiptap-override img,
.tiptap-override video {
  display: block;
  height: auto;
  margin: 5px 0px 18px 0;
  max-width: 60%;
  outline: 1px solid var(--border);
}
.signature-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 30px;
  padding: 30px 40px 20px 0;
}
.signature-line {
  border-bottom: 1px solid var(--text);
  margin-top: 15px;
}
.mt {
  margin-top: 30px;
}
.mb {
  margin-bottom: 30px;
}
.pt {
  padding-top: 30px;
}
.pb {
  padding-bottom: 30px;
}
.cursor {
  cursor: pointer !important;
}
.cursor-not-allowed {
  cursor: not-allowed;
}
.hm-system {
  color: var(--hm-system);
}
.hm-system:hover {
  color: var(--hm-system-hover);
}
.hm-system-hover {
  color: var(--hm-system-hover);
}
.hm-system-hover:hover {
  color: var(--hm-system-hover-active);
}
.fuchsia {
  color: var(--fuchsia);
}
.foam {
  color: var(--foam);
}
.slate {
  color: var(--slate);
}
.module-color {
  color: var(--module-color);
}
.firebase-emulator-warning {
  display: none;
}
.only-print {
  display: none;
}
.shift-breadcrumb-text {
  margin-left: 0px;
}
.shift-breadcrumb-btn-fancy {
  margin-top: -2px;
  margin-left: 8px;
}
.border-top {
  border-top: 1px solid var(--text-gray-light);
}
/* policy sheet */
.sheet {
  background-color: var(--item);
  border: 1px solid var(--border);
  padding: 20px;
  margin-bottom: 30px;
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 22px;
  }
  .fr-fr-responsive,
  .fr-max-responsive,
  .max-fr-responsive,
  .max-max-responsive,
  .fr3-fr2-responsive,
  .fr3-fr5-responsive,
  .fr3-fr4-responsive,
  .fr-fr-fr-responsive,
  .label-container-responsive {
    grid-template-columns: 1fr;
  }
  .tiptap-override img,
  .tiptap-override video {
    max-width: 98%;
  }
}
@media screen and (max-width: 500px) {
  h3 {
    font-size: 20px;
  }
  .t-breadcrumbs {
    font-size: 18px;
  }
  .t-display {
    font-size: 17px;
  }
  h4,
  .t-big {
    font-size: 16px;
  }
  h5,
  p,
  li {
    font-size: 14px;
  }
  h6,
  select {
    font-size: 13px;
  }
  .t-sm,
  .t-sm li,
  .t-empty-list,
  .t-helper,
  .t-code {
    font-size: 12px;
  }
  .t-tiny {
    font-size: 11px;
  }
}
/* Printing */
@media print {
  .no-print {
    display: none !important;
  }
  .only-print {
    display: block;
  }
  body {
    background-color: white;
    color: black;
    line-height: 1.25;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  li,
  .border-top,
  .t-tiny {
    color: black !important;
  }
  h3,
  h4,
  p,
  ul,
  ol {
    margin-bottom: 10px;
  }
  h1 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
  }
  h2 {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 8px;
  }
  h3 {
    font-size: 20px;
    font-weight: 300;
  }
  h4 {
    font-size: 16px;
    font-weight: 400;
  }
  h5 {
    font-size: 15px;
    font-weight: 500;
  }
  h6 {
    font-size: 14px;
    font-weight: 600;
  }
  p,
  li {
    font-size: 14px;
    font-weight: 400;
    text-align: justify;
    text-justify: inter-word;
  }
  .t-checkboxes-row-info {
    text-align: left;
    font-size: 12px;
    font-weight: 300;
    line-height: 1.1;
    margin: 4px 4px 0 12px;
  }
  .sheet {
    border-radius: 0;
    background-color: var(--none);
    border: 0;
    padding: 0;
    margin-bottom: 0;
  }
}
