/*# watercss@2*/

:root {
  --global-font-size: 16px;
  --global-line-height: 1.5;
  --font-stack: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', Helvetica, Arial, sans-serif, 'Apple Color Emoji',
    'Segoe UI Emoji', 'Segoe UI Symbol';
  --mono-font-stack: Consolas, Menlo, Monaco, Lucida Console, monospace;
  --background-color: #ffffff;
  --background-color-alt: #f0f0f0;
  --input-background-color: #efefef;
  --text-color: #333;
  --text-bright: #000;
  --text-color-invert: #fff;
  --text-color-muted: #d0b3c2;
  --active-color: #904b6e;
  --active-color-hover: #6b3865; /* #796175; */
  --active-color-dark: #472643;
  --color-grey: #eee9e9;
  --highlight-color: #ffd166;
  --focus-color: #2a969dab;
  --border-color: #cdafbd; /*#CCCCCC;*/
  --error-color: #e91e63;
  --warning-color: #ff863f;
  --success-color: #4caf50;
  --animation-duration: 0.2s;
  --scrollbar-thumb: rgb(213, 213, 213);
  --scrollbar-thumb-hover: rgb(196, 196, 196);
  --select-arrow: url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0' encoding='utf-8'?%3E %3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' height='62.5' width='116.9' fill='%23161f27'%3E %3Cpath d='M115.3,1.6 C113.7,0 111.1,0 109.5,1.6 L58.5,52.7 L7.4,1.6 C5.8,0 3.2,0 1.6,1.6 C0,3.2 0,5.8 1.6,7.4 L55.5,61.3 C56.3,62.1 57.3,62.5 58.4,62.5 C59.4,62.5 60.5,62.1 61.3,61.3 L115.2,7.4 C116.9,5.8 116.9,3.2 115.3,1.6Z'/%3E %3C/svg%3E");
}

a {
  text-decoration: none;
  color: #0076d1;
  color: var(--active-color);
  transition: background-color var(--animation-duration) linear, color var(--animation-duration) linear, box-shadow var(--animation-duration) linear,
    transform var(--animation-duration) ease;
}

a:hover {
  text-decoration: underline;
}

code {
  background: #efefef;
  background: var(--input-background-color);
  color: #000;
  color: var(--text-bright);
  padding: 2.5px 5px;
  border-radius: 6px;
  font-size: 1em;
}

samp {
  background: #efefef;
  background: var(--input-background-color);
  color: #000;
  color: var(--text-bright);
  padding: 2.5px 5px;
  border-radius: 6px;
  font-size: 1em;
}

time {
  background: #efefef;
  background: var(--input-background-color);
  color: #000;
  color: var(--text-bright);
  padding: 2.5px 5px;
  border-radius: 6px;
  font-size: 1em;
}

pre > code {
  padding: 10px;
  display: block;
  overflow-x: auto;
}

var {
  color: #4caf50;
  font-style: normal;
  font-family: monospace;
  font-family: var(--mono-font-stack);
}

kbd {
  background: #efefef;
  background: var(--input-background-color);
  border: 1px solid #dbdbdb;
  border: 1px solid var(--border-color);
  border-radius: 2px;
  color: #363636;
  color: var(--text-color);
  padding: 2px 4px 2px 4px;
}

img,
video {
  max-width: 100%;
  height: auto;
}

hr {
  border: none;
  border-top: 1px solid #dbdbdb;
  border-top: 1px solid var(--border-color);
}

table {
  border-collapse: collapse;
  margin-bottom: 10px;
  width: 100%;
  table-layout: fixed;
}

table caption {
  text-align: left;
}

td,
th {
  padding: 6px;
  text-align: left;
  vertical-align: top;
  word-wrap: break-word;
}

thead {
  border-bottom: 1px solid #dbdbdb;
  border-bottom: 1px solid var(--border-color);
}

tfoot {
  border-top: 1px solid #dbdbdb;
  border-top: 1px solid var(--border-color);
}

tbody tr:nth-child(even) {
  background-color: #f7f7f7;
  background-color: var(--background-color-alt);
}

::-webkit-scrollbar {
  height: 10px;
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #efefef;
  background: var(--input-background-color);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb {
  background: rgb(213, 213, 213);
  background: var(--scrollbar-thumb);
  border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgb(196, 196, 196);
  background: var(--scrollbar-thumb-hover);
}

::-moz-selection {
  background-color: #ffd166;
  background-color: var(--highlight-color);
  color: #000;
  color: var(--text-bright);
}

::selection {
  background-color: #ffd166;
  background-color: var(--highlight-color);
  color: #000;
  color: var(--text-bright);
}

details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background-color: #f7f7f7;
  background-color: var(--background-color-alt);
  padding: 10px 10px 0;
  margin: 1em 0;
  border-radius: 6px;
  overflow: hidden;
}

details[open] {
  padding: 10px;
}

details > :last-child {
  margin-bottom: 0;
}

details[open] summary {
  margin-bottom: 10px;
}

summary {
  display: list-item;
  background-color: #efefef;
  background-color: var(--input-background-color);
  padding: 10px;
  margin: -10px -10px 0;
  cursor: pointer;
  outline: none;
}

summary:hover,
summary:focus {
  text-decoration: underline;
}

details > :not(summary) {
  margin-top: 0;
}

summary::-webkit-details-marker {
  color: #363636;
  color: var(--text-color);
}

footer {
  border-top: 1px dashed #dbdbdb;
  border-top: 1px dashed var(--border-color);
  background-color: var(--background-color);
  padding: 1rem;
  font-size: 0.8rem;
}

@media print {
  body,
  pre,
  code,
  summary,
  details,
  button,
  input,
  textarea {
    background-color: #fff;
  }

  button,
  input,
  textarea {
    border: 1px solid #000;
  }

  body,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  pre,
  code,
  button,
  input,
  textarea,
  footer,
  summary,
  strong {
    color: #000;
  }

  summary::marker {
    color: #000;
  }

  summary::-webkit-details-marker {
    color: #000;
  }

  tbody tr:nth-child(even) {
    background-color: #f2f2f2;
  }

  a {
    color: #00f;
    text-decoration: underline;
  }
}
/*# /watercss@2*/

/*=============================
  Base Styles
  (some include normalize css)
=============================*/
*,
::before,
::after {
  box-sizing: border-box;
}

* {
  scrollbar-color: rgb(213, 213, 213) #fff;
  scrollbar-color: var(--scrollbar-thumb) var(--background-color);
  scrollbar-width: thin;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
}

body {
  font-family: var(--font-stack);
  font-size: var(--global-font-size);
  line-height: var(--global-line-height);
  color: #333;
  color: var(--text-color);
  font-weight: 400;
  background: #fff;
  background-color: var(--background-color);
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  /* avoid flash FOUC */
  visibility: visible !important;
}

html {
  height: 100%;
  font-family: var(--font-stack);
  font-size: var(--global-font-size);
  line-height: var(--global-line-height);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
img,
svg,
progress,
video {
  display: inline-block;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

img {
  max-width: 100%;
  display: block;
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

template {
  display: none;
  /*IE10*/
}

[hidden] {
  display: none;
  /*IE10*/
}

details {
  display: block;
}

summary {
  display: list-item;
}

/*=============================
  List (TODO)
=============================*/
ul,
ol {
  list-style-position: outside;
  margin-top: 0;
  margin-bottom: 1rem;
  margin-left: 0;
  padding-left: 1.5rem;
}
li,
li {
  margin-bottom: 1rem;
}
li:last-child,
li:last-child {
  margin-bottom: 0;
}
ul ul,
ol ul,
ul ol,
ol ol {
  padding-left: 1rem;
}

/*=============================
  Base Typography
  (include normalize)
=============================*/

p {
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 1rem;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  margin-top: 0;
  font-weight: 900;
  line-height: 1.5;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-bright);
  /*1.5 * 1.5  + 0.75 = 3*/
}

/* https://www.gridlover.net/try */
h1 {
  font-size: 2.5rem;
  line-height: 3rem;
  margin-bottom: 1.5rem;
}
h2 {
  font-size: 1.75rem;
  line-height: 2.5rem;
  margin-bottom: 1.25rem;
}
h3,
h4 {
  font-size: 1.5rem;
  line-height: 2.25rem;
  margin-bottom: 0.75rem;
}
h5,
h6 {
  font-size: 1.25rem;
  margin-bottom: 0.125rem;
}

code,
kbd,
samp,
pre {
  font-family: monospace, monospace;
  font-family: var(--mono-font-stack), var(--mono-font-stack);
  font-size: 1em;
}

a {
  background-color: transparent;
  /*IE 10*/
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  color: var(--text-bright);
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

q::before {
  content: none;
}

q::after {
  content: none;
}

q,
blockquote {
  border-left: 4px solid #0096bfab;
  border-left: 4px solid var(--focus-color);
  margin: 1.5em 0;
  padding: 0.5em 1em;
  font-style: italic;
}

blockquote > footer {
  font-style: normal;
  border: 0;
}

blockquote cite {
  font-style: normal;
}

address {
  font-style: normal;
}

mark {
  background-color: #ffd166;
  background-color: var(--highlight-color);
  border-radius: 2px;
  padding: 0 2px 0 2px;
  color: #000;
}

a:not([class]),
.u-link {
  outline: 0;
  background-color: transparent;
  color: var(--active-color);
  text-decoration: underline;
  text-decoration-skip-ink: auto;
}

a:not([class]):hover,
.u-link:hover {
  outline: 0;
  text-decoration: none;
}

.u-link {
  cursor: pointer;
}

/*=============================
  Base Forms
  (include normalize)
=============================*/

button,
select,
input[type='submit'],
input[type='button'],
input[type='checkbox'],
input[type='range'],
input[type='radio'] {
  cursor: pointer;
}

input:not([type='checkbox']):not([type='radio']),
select {
  display: block;
}

button,
input,
textarea,
select {
  color: inherit;
  background-color: #efefef;
  background-color: var(--input-background-color);
  font-family: inherit;
  font-size: inherit;
  margin-right: 0.5rem;
  margin-bottom: 0.5rem;
  padding: 0.625rem 2rem;
  border: none;
  border-radius: 0.4rem;
  outline: none;
  text-decoration: none;
}

button,
input[type='submit'],
input[type='button'],
input[type='checkbox'],
input[type='range'],
input[type='radio'] {
  letter-spacing: 0.005em;
  text-indent: 0.005em;
  border-radius: 2rem;
}

input[type='checkbox'],
input[type='radio'] {
  height: 1em;
  width: 1em;
}

input[type='radio'] {
  border-radius: 100%;
}

input {
  vertical-align: top;
}

input:not([type='checkbox']):not([type='radio']),
input[type='range'],
select,
button,
textarea {
  -webkit-appearance: none;
}

textarea {
  display: block;
  margin-right: 0;
  box-sizing: border-box;
  resize: vertical;
}

textarea:not([cols]) {
  width: 100%;
}

textarea:not([rows]) {
  min-height: 40px;
  height: 140px;
}

select {
  background: #efefef
    url("data:image/svg+xml;charset=utf-8,%3C?xml version='1.0' encoding='utf-8'?%3E %3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' height='62.5' width='116.9' fill='%23161f27'%3E %3Cpath d='M115.3,1.6 C113.7,0 111.1,0 109.5,1.6 L58.5,52.7 L7.4,1.6 C5.8,0 3.2,0 1.6,1.6 C0,3.2 0,5.8 1.6,7.4 L55.5,61.3 C56.3,62.1 57.3,62.5 58.4,62.5 C59.4,62.5 60.5,62.1 61.3,61.3 L115.2,7.4 C116.9,5.8 116.9,3.2 115.3,1.6Z'/%3E %3C/svg%3E")
    calc(100% - 12px) 50% / 12px no-repeat;
  background: var(--input-background-color) var(--select-arrow) calc(100% - 12px) 50% / 12px no-repeat;
  padding-right: 35px;
}

select[multiple] {
  padding-right: 10px;
  background-image: none;
  overflow-y: auto;
}

button:hover {
  background: #ddd;
  background: var(--active-color-hover);
}

input[type='submit']:hover {
  background: #ddd;
  background: var(--active-color-hover);
}

input[type='button']:hover {
  background: #ddd;
  background: var(--active-color-hover);
}

input:focus {
  box-shadow: 0 0 0 2px #0096bfab;
  box-shadow: 0 0 0 2px var(--focus-color);
}

select:focus {
  box-shadow: 0 0 0 2px #0096bfab;
  box-shadow: 0 0 0 2px var(--focus-color);
}

button:focus {
  box-shadow: 0 0 0 2px #0096bfab;
  box-shadow: 0 0 0 2px var(--focus-color);
}

textarea:focus {
  box-shadow: 0 0 0 2px #0096bfab;
  box-shadow: 0 0 0 2px var(--focus-color);
}

input[type='checkbox']:active,
input[type='radio']:active,
input[type='submit']:active,
input[type='button']:active,
input[type='range']:active,
button:active {
  transform: translateY(2px);
}

input:disabled,
select:disabled,
button:disabled,
textarea:disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

::-moz-placeholder {
  color: #949494;
  color: var(--text-color-muted);
}

:-ms-input-placeholder {
  color: #949494;
  color: var(--text-color-muted);
}

::-ms-input-placeholder {
  color: #949494;
  color: var(--text-color-muted);
}

::placeholder {
  color: #949494;
  color: var(--text-color-muted);
}

fieldset {
  border: 1px #0096bfab solid;
  border: 1px var(--focus-color) solid;
  border-radius: 6px;
  margin: 0;
  margin-bottom: 12px;
  padding: 10px;
}

legend {
  font-size: 0.9em;
  font-weight: 600;
}

input[type='range'] {
  margin: 10px 0;
  padding: 10px 0;
  background: transparent;
}

input[type='range']:focus {
  outline: none;
}

input[type='range']::-webkit-slider-runnable-track {
  width: 100%;
  height: 9.5px;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: #efefef;
  background: var(--input-background-color);
  border-radius: 3px;
}

input[type='range']::-webkit-slider-thumb {
  box-shadow: 0 1px 1px #000, 0 0 1px #0d0d0d;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #dbdbdb;
  background: var(--border-color);
  -webkit-appearance: none;
  margin-top: -7px;
}

input[type='range']:focus::-webkit-slider-runnable-track {
  background: #efefef;
  background: var(--input-background-color);
}

input[type='range']::-moz-range-track {
  width: 100%;
  height: 9.5px;
  -moz-transition: 0.2s;
  transition: 0.2s;
  background: #efefef;
  background: var(--input-background-color);
  border-radius: 3px;
}

input[type='range']::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000, 0 0 1px #0d0d0d;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #dbdbdb;
  background: var(--border-color);
}

input[type='range']::-ms-track {
  width: 100%;
  height: 9.5px;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}

input[type='range']::-ms-fill-lower {
  background: #efefef;
  background: var(--input-background-color);
  border: 0.2px solid #010101;
  border-radius: 3px;
  box-shadow: 1px 1px 1px #000, 0 0 1px #0d0d0d;
}

input[type='range']::-ms-fill-upper {
  background: #efefef;
  background: var(--input-background-color);
  border: 0.2px solid #010101;
  border-radius: 3px;
  box-shadow: 1px 1px 1px #000, 0 0 1px #0d0d0d;
}

input[type='range']::-ms-thumb {
  box-shadow: 1px 1px 1px #000, 0 0 1px #0d0d0d;
  border: 1px solid #000;
  height: 20px;
  width: 20px;
  border-radius: 50%;
  background: #dbdbdb;
  background: var(--border-color);
}

input[type='range']:focus::-ms-fill-lower {
  background: #efefef;
  background: var(--input-background-color);
}

input[type='range']:focus::-ms-fill-upper {
  background: #efefef;
  background: var(--input-background-color);
}

label {
  vertical-align: middle;
  display: inline-block;
  cursor: pointer;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

textarea {
  resize: vertical;
  overflow: auto;
}

optgroup {
  font-weight: bold;
}

fieldset,
legend {
  border: 0;
  margin: 0;
  padding: 0;
}

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.5;
}

input,
textarea {
  max-width: 100%;
  width: 100%;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

.button,
button,
input,
textarea {
  transition: background-color 0.1s linear, border-color 0.1s linear, color 0.1s linear, box-shadow 0.1s linear, transform 0.1s ease;
  transition: background-color var(--animation-duration) linear, border-color var(--animation-duration) linear, color var(--animation-duration) linear,
    box-shadow var(--animation-duration) linear, transform var(--animation-duration) ease;
}

/* select {
  appearance: none;
} */

select::-ms-expand {
  display: none;
}
select::-ms-value {
  background: none;
  color: inherit;
}

button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText;
}

progress {
  vertical-align: baseline;
}

[type='checkbox'],
[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}

[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/*=============================
  FORMS - buttons
=============================*/

button,
[type='submit'],
[type='reset'],
[type='button'],
.btn--primary,
.btn--secondary {
  display: inline-block;
  border: none;
  outline: none;
  -webkit-appearance: none;
}

button,
[type='submit'],
[type='reset'],
[type='button'],
.btn--primary {
  background-color: var(--active-color);
  color: var(--text-color-invert);
}

.btn--primary:hover,
.btn--primary:focus,
.btn--primary:active {
  background-color: var(--active-color-hover);
  color: var(--text-color-invert);
  outline: none;
  text-decoration: none;
}

.btn--secondary {
  box-shadow: inset 0 0 0 2px currentColor;
}

.btn--secondary:hover,
.btn--secondary:focus,
.btn--secondary:active {
  background-color: var(--active-color-hover);
  color: var(--text-color-invert);
  box-shadow: inset 0 0 0 2px var(--active-color-hover);
  outline: none;
  text-decoration: none;
}

[type='submit'].btn--destroy,
.btn--destroy {
  background-color: var(--error-color);
  color: var(--text-color-invert);
}

.btn--destroy:hover,
.btn--destroy:focus,
.btn--destroy:active {
  background-color: darkred;
}

/*=============================
  Base tables
  (include normalize)
=============================*/

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

td,
th {
  padding: 0;
}

th {
  vertical-align: bottom;
  font-weight: 600;
}

td {
  vertical-align: top;
}

/* ==========================================================================
   # LAYOTS (undecorated patterns)
   ========================================================================== */

body > header {
  height: 128px;
  margin: 0 !important;
  padding: 1rem;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transform: translateY(0px);
}

header > nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav a:not([class]) {
  text-decoration: none;
  color: var(--active-color);
}

nav a:not([class]):hover,
nav a:not([class]):focus {
  text-decoration: underline;
  color: var(--active-color-dark);
}

nav ul li {
  display: inline-block;
  margin: 0 0.5rem;
  position: relative;
  text-align: left;
}

/* Nav Dropdown */
nav ul li:hover ul {
  display: block;
}

nav ul li ul {
  background: var(--background-color);
  border: 1px solid var(--active-color-dark);
  border-radius: 0.5rem;
  box-shadow: 0.4rem 0.4rem 0.8rem var(--scrollbar-thumb);
  display: none;
  height: auto;
  left: -2px;
  padding: 0.5rem 1rem;
  position: absolute;
  top: 1.7rem;
  white-space: nowrap;
  width: auto;
  z-index: 1;
}

nav ul li ul::before {
  /* fill gap above to make mousing over them easier */
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: -0.5rem;
  height: 0.5rem;
}

nav ul li ul li,
nav ul li ul li a {
  display: block;
}

body > footer {
  padding: 1rem;
  font-size: 0.8rem;
  margin: 0 !important;
}

/* ==========================================================================
   # OBJECTS (undecorated patterns)
   ========================================================================== */

.o-box,
.o-island {
  display: block;
  padding: 1rem;
}
.o-box > :last-child,
.o-island > :last-child {
  margin-bottom: 0;
}

.o-box--flush {
  padding: 0;
}

.o-box--small {
  padding: 0.5rem;
}

.o-box--large {
  padding: 2rem;
}

.o-box--huge {
  padding: 4rem;
}

.o-stack > * + * {
  margin-top: 1.5rem;
}

/*EXAMPLES: https://github.com/aprietof/every-layout*/
.o-cover {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.o-cover--full {
  height: auto;
  min-height: 100vh;
}

.o-cover > * {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.o-cover > :first-child {
  margin-top: 0;
}

.o-cover > :last-child {
  margin-bottom: 0;
}

.o-cover > .o-cover__main {
  margin-top: auto;
  margin-bottom: auto;
}

.o-column {
  display: flex;
  flex-direction: column;
}
.o-column--full {
  height: 100%;
  max-height: 100%;
}
.o-column__header,
.o-column__footer {
  flex: 0 0 auto;
}
.o-column__main {
  flex: 1 1 0;
  overflow-x: hidden;
  overflow-y: auto;
}

.o-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* text-align: center; */
}

.o-center--h {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.o-center--v {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* horizontal flow*/

.o-row {
  display: flex;
  /*defaults: row nowrap;*/
}

.o-row__item {
  flex: 0 0 auto;
}

/* make the children grow / shrink automatically */
.o-row--auto > .o-row__item {
  flex: 1 1 auto;
}

.o-row--centered {
  justify-content: center;
  align-items: center;
}

.o-image {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}

/*=============================
  NOTIFICATIONS
=============================*/

.c-notification {
  background-color: #f5f5f5;
  border-radius: 0.375em;
  position: relative;
  padding: 1.25rem 2.5rem 1.25rem 1.5rem;
}
.c-notification--error {
  background-color: var(--error-color, palevioletred);
  color: var(--text-color-invert);
}

.notification a:not(.button):not(.dropdown-item) {
  color: currentColor;
  text-decoration: underline;
}
.notification strong {
  color: currentColor;
}

/*=============================
  LANDING
=============================*/

.c-landing__section {
  padding-top: 3rem;
  padding-bottom: 3rem;
  /* padding: 3rem 1rem;
  color: var(--active-color-dark); */
  scroll-snap-align: start;
}

.c-landing__section:first-child {
  min-height: 50vh;
}

.btn {
  font-weight: 600;
  letter-spacing: 0.005em;
  text-indent: 0.005em;
  white-space: nowrap;
  color: #fff;
  background-color: var(--active-color);
  border-color: currentColor;
  text-align: center;
  border-radius: 2rem;
}

.btn {
  box-shadow: 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.btn:after {
  box-shadow: 0 2px 4px -1px rgba(0, 0, 0, 0.2), 0 4px 5px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12);
}
.btn:active {
  box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12);
}

.btn--cta {
  padding: 1rem 1.5rem;
  line-height: 1.25;
  min-width: 10rem;
  text-transform: uppercase;
  box-shadow: 0px 4px 20px 0px rgba(0, 0, 0, 0.25);
  will-change: box-shadow;
  display: inline-block;
  border-radius: 2rem;
}

@media only screen and (min-width: 768px) {
  .c-columns--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
  .c-columns--align-center {
    align-items: center;
  }
}

/* .c-page {} */
/* .c-page__header {} */
/* .c-page > footer {} */

.c-page__header {
  background-color: var(--background-color);
  height: 128px;
  margin: 0 !important;
  padding: 1rem;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 9;
  transform: translateY(0px);
}

.c-nav__link {
  padding: 1rem 0;
  font-weight: 600;
  letter-spacing: 0.005em;
}

.c-page__footer {
  background-color: var(--background-color);
  padding: 1rem;
  font-size: 0.8rem;
  margin: 0 !important;
}

.c-page__content {
  width: 70rem;
  max-width: 100%;
  max-width: calc(100% - 2rem);
  margin-left: auto;
  margin-right: auto;
}

.c-page__content--inverted {
  background-color: #472643;
  color: #fff;
  border-radius: 2rem;
  box-shadow: 0 12px 40px 0 rgba(95, 95, 95, 0.5);
  margin: 1rem auto;
  padding: 2rem;
}

/*=============================
  CARD
=============================*/

.c-card {
  background-color: var(--background-color);

  display: block;
  margin: 1rem;
}

.c-card--raised {
  padding: 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 0.2rem 1rem 0 rgba(37, 42, 49, 0.15);
}

.c-card--bordered {
  padding: 1.5rem;
  border-radius: 0.5rem;
  border: 1px solid var(--color-grey);
}

.c-card--slim {
  max-width: 32rem;
}

/*=============================
  LEGAL
=============================*/

.c-legal-page {
  max-width: 48rem;
  margin: 4rem auto;
}
.c-legal-page a {
  font-weight: bold;
}

/*=============================
  FAQ
=============================*/

.c-faq-screenshots-box {
  max-width: 40rem;
}

@media only screen and (max-width: 767px) {
  .c-faq-screenshot-image {
    padding-bottom: 50px;
  }
}

/*=============================
  TEXT
=============================*/

.t-text--primary {
  color: var(--active-color);
}

.t-text--inverted {
  color: var(--text-color-invert);
}

.t-text--jumbo {
  font-size: 5rem;
  font-size: calc(min(5rem, 10vw));
  font-weight: 900;
  letter-spacing: 0.02em;
  word-break: break-word;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.t-text--subtext {
  color: grey;
}

.c-page__title--jumbo {
  font-weight: 900;
  font-size: 6rem;
  font-size: calc(min(6rem, 10vw));
  letter-spacing: 0.02em;
  word-break: break-word;
  line-height: 1;
}

.c-page__title--x-large {
  font-size: 2.125rem;
  letter-spacing: 0.0073529412em;
  word-break: break-word;
}

/*=============================
  WEATHER
=============================*/
.c-weather__table td {
  text-align: center;
  vertical-align: middle;
}

.c-weather__table img {
  display: initial;
}

.c-weather__table-title {
  margin-bottom: 1rem;
}
/*=============================
  HACKS
=============================*/

/*
 * Margins and
 * Paddings
 * 0, 1, 2 * rem
 * Note: not sure if all are needed
 */

.u-ml--auto {
  margin-left: auto;
}
.u-mr--auto {
  margin-right: auto;
}
.u-mx--auto {
  margin-left: auto;
  margin-right: auto;
}

.u-m--null {
  margin: 0;
}

.u-mb--null {
  margin-bottom: 0;
}

.u-ml--null {
  margin-left: 0;
}

.u-mr--null {
  margin-right: 0;
}

.u-mt--null {
  margin-top: 0;
}

.u-mx--null {
  margin-left: 0;
  margin-right: 0;
}

.u-my--null {
  margin-bottom: 0;
  margin-top: 0;
}

.u-m {
  margin: 1rem;
}

.u-mb {
  margin-bottom: 1rem;
}

.u-ml {
  margin-left: 1rem;
}

.u-mr {
  margin-right: 1rem;
}

.u-mt {
  margin-top: 1rem;
}

.u-mx {
  margin-left: 1rem;
  margin-right: 1rem;
}

.u-my {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.u-m--large {
  margin: 2rem;
}

.u-mb--large {
  margin-bottom: 2rem;
}

.u-ml--large {
  margin-left: 2rem;
}

.u-mr--large {
  margin-right: 2rem;
}

.u-mt--large {
  margin-top: 2rem;
}

.u-mx--large {
  margin-left: 2rem;
  margin-right: 2rem;
}

.u-my--large {
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.u-p--null {
  padding: 0;
}

.u-pb--null {
  padding-bottom: 0;
}

.u-pl--null {
  padding-left: 0;
}

.u-pr--null {
  padding-right: 0;
}

.u-pt--null {
  padding-top: 0;
}

.u-px--null {
  padding-left: 0;
  padding-right: 0;
}

.u-py--null {
  padding-bottom: 0;
  padding-top: 0;
}

.u-p {
  padding: 1rem;
}

.u-pb {
  padding-bottom: 1rem;
}

.u-pl {
  padding-left: 1rem;
}

.u-pr {
  padding-right: 1rem;
}

.u-pt {
  padding-top: 1rem;
}

.u-px {
  padding-left: 1rem;
  padding-right: 1rem;
}

.u-py {
  padding-bottom: 1rem;
  padding-top: 1rem;
}

.u-p--large {
  padding: 2rem;
}

.u-pb--large {
  padding-bottom: 2rem;
}

.u-pl--large {
  padding-left: 2rem;
}

.u-pr--large {
  padding-right: 2rem;
}

.u-pt--large {
  padding-top: 2rem;
}

.u-px--large {
  padding-left: 2rem;
  padding-right: 2rem;
}

.u-py--large {
  padding-bottom: 2rem;
  padding-top: 2rem;
}

.t-ohnohoney {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  z-index: -1;
}

/* ==========================================================================
   # UTILITIES
   ========================================================================== */

.u-appearing {
  animation: 1s animation-appear;
}
@keyframes animation-appear {
  0% {
    opacity: 0;
  }
}

.u-pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
  animation-duration: 1s;
  animation-duration: var(--duration, 1s);
  animation-iteration-count: infinite;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }
}
