
.chroma { background-color: unset !important;} :root {
  --bg-color: #fff;
  --bg-secondary-color: #f3f3f6;
  --color-primary: #14854f;
  --color-lightGrey: #d2d6dd;
  --color-grey: #747681;
  --color-darkGrey: #3f4144;
  --color-error: #d43939;
  --color-success: #28bd14;
  --grid-maxWidth: 120rem;
  --grid-gutter: 2rem;
  --font-size: 1.6rem;
  --font-color: #333;
  --font-family-sans: -apple-system, "BlinkMacSystemFont", "Avenir",
    "Avenir Next", "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell",
    "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  --font-family-mono: monaco, "Consolas", "Lucida Console", monospace;
}
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
}
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}
body {
  background-color: var(--bg-color);
  line-height: 1.6;
  font-size: var(--font-size);
  color: var(--font-color);
  font-family: "Segoe UI", "Helvetica Neue", sans-serif; /* fallback */
  font-family: var(--font-family-sans);
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
  margin: 0.35em 0 0.7em;
}
h1 {
  font-size: 2em;
}
h2 {
  font-size: 1.75em;
}
h3 {
  font-size: 1.5em;
}
h4 {
  font-size: 1.25em;
}
h5 {
  font-size: 1em;
}
h6 {
  font-size: 0.85em;
}
a {
  color: var(--color-primary);
  text-decoration: none;
}
a:hover:not(.button) {
  opacity: 0.75;
}
button {
  font-family: inherit;
}
p {
  margin-top: 0;
}
blockquote {
  background-color: var(--bg-secondary-color);
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--color-lightGrey);
}
dl dt {
  font-weight: bold;
}
hr {
  border: none;
  background-color: var(--color-lightGrey);
  height: 1px;
  margin: 1rem 0;
}
table {
  width: 100%;
  border: none;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}
table.striped tr:nth-of-type(2n) {
  background-color: var(--bg-secondary-color);
}
td,
th {
  vertical-align: middle;
  padding: 1.2rem 0.4rem;
}
thead {
  border-bottom: 2px solid var(--color-lightGrey);
}
tfoot {
  border-top: 2px solid var(--color-lightGrey);
}
code,
kbd,
pre,
samp,
tt {
  font-family: var(--font-family-mono);
}
code,
kbd {
  font-size: 90%;
  white-space: pre-wrap;
  border-radius: 4px;
  padding: 0.2em 0.4em;
  background-color: var(--bg-secondary-color);
  color: var(--color-error);
}
pre {
  background-color: var(--bg-secondary-color);
  font-size: 1em;
  padding: 1rem;
  overflow-x: auto;
}
pre code {
  background: none;
  padding: 0;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
img {
  max-width: 100%;
}
fieldset {
  border: 1px solid var(--color-lightGrey);
}
iframe {
  border: 0;
}
.container {
  max-width: var(--grid-maxWidth);
  margin: 0 auto;
  width: 96%;
  padding: 0 calc(var(--grid-gutter) / 2);
}
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-left: calc(var(--grid-gutter) / -2);
  margin-right: calc(var(--grid-gutter) / -2);
}
.row.reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.col {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.col,
[class*=" col-"],
[class^="col-"] {
  margin: 0 calc(var(--grid-gutter) / 2) calc(var(--grid-gutter) / 2);
}
.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
  max-width: calc((100% / (12/1)) - var(--grid-gutter));
}
.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
  max-width: calc((100% / (12/2)) - var(--grid-gutter));
}
.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
  max-width: calc((100% / (12/3)) - var(--grid-gutter));
}
.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
  max-width: calc((100% / (12/4)) - var(--grid-gutter));
}
.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
  max-width: calc((100% / (12/5)) - var(--grid-gutter));
}
.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
  max-width: calc((100% / (12/6)) - var(--grid-gutter));
}
.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
  max-width: calc((100% / (12/7)) - var(--grid-gutter));
}
.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
  max-width: calc((100% / (12/8)) - var(--grid-gutter));
}
.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
  max-width: calc((100% / (12/9)) - var(--grid-gutter));
}
.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
  max-width: calc((100% / (12/10)) - var(--grid-gutter));
}
.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
  max-width: calc((100% / (12/11)) - var(--grid-gutter));
}
.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
          flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
  max-width: calc((100% / (12/12)) - var(--grid-gutter));
}
@media screen and (max-width: 599px) {
  .container {
    width: 100%;
  }

  .col,
  [class*="col-"],
  [class^="col-"] {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 100%;
            flex: 0 1 100%;
    max-width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .col-1-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
    max-width: calc((100% / (12/1)) - var(--grid-gutter));
  }

  .col-2-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
    max-width: calc((100% / (12/2)) - var(--grid-gutter));
  }

  .col-3-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
    max-width: calc((100% / (12/3)) - var(--grid-gutter));
  }

  .col-4-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
    max-width: calc((100% / (12/4)) - var(--grid-gutter));
  }

  .col-5-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
    max-width: calc((100% / (12/5)) - var(--grid-gutter));
  }

  .col-6-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
    max-width: calc((100% / (12/6)) - var(--grid-gutter));
  }

  .col-7-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
    max-width: calc((100% / (12/7)) - var(--grid-gutter));
  }

  .col-8-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
    max-width: calc((100% / (12/8)) - var(--grid-gutter));
  }

  .col-9-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
    max-width: calc((100% / (12/9)) - var(--grid-gutter));
  }

  .col-10-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
    max-width: calc((100% / (12/10)) - var(--grid-gutter));
  }

  .col-11-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
    max-width: calc((100% / (12/11)) - var(--grid-gutter));
  }

  .col-12-md {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
    max-width: calc((100% / (12/12)) - var(--grid-gutter));
  }
}
@media screen and (min-width: 1200px) {
  .col-1-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
    max-width: calc((100% / (12/1)) - var(--grid-gutter));
  }

  .col-2-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
    max-width: calc((100% / (12/2)) - var(--grid-gutter));
  }

  .col-3-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
    max-width: calc((100% / (12/3)) - var(--grid-gutter));
  }

  .col-4-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
    max-width: calc((100% / (12/4)) - var(--grid-gutter));
  }

  .col-5-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
    max-width: calc((100% / (12/5)) - var(--grid-gutter));
  }

  .col-6-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
    max-width: calc((100% / (12/6)) - var(--grid-gutter));
  }

  .col-7-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
    max-width: calc((100% / (12/7)) - var(--grid-gutter));
  }

  .col-8-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
    max-width: calc((100% / (12/8)) - var(--grid-gutter));
  }

  .col-9-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
    max-width: calc((100% / (12/9)) - var(--grid-gutter));
  }

  .col-10-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
    max-width: calc((100% / (12/10)) - var(--grid-gutter));
  }

  .col-11-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
    max-width: calc((100% / (12/11)) - var(--grid-gutter));
  }

  .col-12-lg {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
    max-width: calc((100% / (12/12)) - var(--grid-gutter));
  }
}
fieldset {
  padding: 0.5rem 2rem;
}
legend {
  text-transform: uppercase;
  font-size: 0.8em;
  letter-spacing: 0.1rem;
}
input:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]),
select,
textarea,
textarea[type="text"] {
  font-family: inherit;
  padding: 0.8rem 1rem;
  border-radius: 4px;
  border: 1px solid var(--color-lightGrey);
  font-size: 1em;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  display: block;
  width: 100%;
}
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: #f3f3f6 no-repeat 100%;
  background-size: 1ex;
  background-origin: content-box;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='60' height='40' fill='%23555'><polygon points='0,0 60,0 30,40'/></svg>");
}
.button,
[type="button"],
[type="reset"],
[type="submit"],
button {
  padding: 1rem 2.5rem;
  color: var(--color-darkGrey);
  background: var(--color-lightGrey);
  border-radius: 4px;
  border: 1px solid transparent;
  font-size: var(--font-size);
  line-height: 1;
  text-align: center;
  -webkit-transition: opacity 0.2s ease;
  transition: opacity 0.2s ease;
  text-decoration: none;
  -webkit-transform: scale(1);
          transform: scale(1);
  display: inline-block;
  cursor: pointer;
}
.button.primary,
.button.secondary,
.button.dark,
.button.error,
.button.success,
[type="submit"] {
  color: #fff;
  z-index: 1; /* hightlight from other button's border when grouped */
  background-color: #000;
  background-color: var(--color-primary);
}
.button:hover,
[type="button"]:hover,
[type="reset"]:hover,
[type="submit"]:hover,
button:hover {
  opacity: 0.8;
}
input:disabled,
input:disabled:hover,
button:disabled,
button:disabled:hover {
  opacity: 0.4;
  cursor: not-allowed;
}
.grouped {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.grouped > *:not(:last-child) {
  margin-right: 16px;
}
.grouped.gapless > * {
  margin: 0 0 0 -1px !important;
  border-radius: 0 !important;
}
.grouped.gapless > *:first-child {
  margin: 0 !important;
  border-radius: 4px 0 0 4px !important;
}
.grouped.gapless > *:last-child {
  border-radius: 0 4px 4px 0 !important;
}
input:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"], :disabled):hover,
select:hover,
textarea:hover,
textarea[type="text"]:hover {
  border-color: var(--color-grey);
}
input:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]):focus,
select:focus,
textarea:focus,
textarea[type="text"]:focus {
  outline: none;
  border-color: var(--color-primary);
  -webkit-box-shadow: 0 0 1px var(--color-primary);
          box-shadow: 0 0 1px var(--color-primary);
}
input.error:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]),
textarea.error {
  border-color: var(--color-error);
}
input.success:not([type="checkbox"], [type="radio"], [type="submit"], [type="color"], [type="button"], [type="reset"]),
textarea.success {
  border-color: var(--color-success);
}
[type="checkbox"],
[type="radio"] {
  width: 2rem;
  height: 1.6rem;
}
/* BUTTONS */
.button + .button {
  margin-left: 1rem;
}
.button.secondary {
  background-color: var(--color-grey);
}
.button.dark {
  background-color: var(--color-darkGrey);
}
.button.error {
  background-color: var(--color-error);
}
.button.success {
  background-color: var(--color-success);
}
.button.outline {
  background-color: transparent;
  border-color: var(--color-lightGrey);
}
.button.outline.primary {
  border-color: var(--color-primary);
  color: var(--color-primary);
}
.button.outline.secondary {
  border-color: var(--color-grey);
  color: var(--color-grey);
}
.button.outline.dark {
  border-color: var(--color-darkGrey);
  color: var(--color-darkGrey);
}
.button.clear {
  background-color: transparent;
  border-color: transparent;
  color: var(--color-primary);
}
.button.icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.button.icon > img {
  margin-left: 2px;
}
.button.icon-only {
  padding: 1rem;
}
.button:active:not(:disabled),
[type="button"]:active:not(:disabled),
[type="reset"]:active:not(:disabled),
[type="submit"]:active:not(:disabled),
button:active:not(:disabled) {
  -webkit-transform: scale(0.98);
          transform: scale(0.98);
}
::-webkit-input-placeholder {
  color: #bdbfc4;
}
::-moz-placeholder {
  color: #bdbfc4;
}
:-ms-input-placeholder {
  color: #bdbfc4;
}
::-ms-input-placeholder {
  color: #bdbfc4;
}
::placeholder {
  color: #bdbfc4;
}
.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 5rem;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.nav img {
  max-height: 3rem;
}
.nav > .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.nav-center,
.nav-left,
.nav-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.nav-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.nav-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.nav-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 480px) {
  .nav,
  .nav > .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }

  .nav-center,
  .nav-left,
  .nav-right {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.nav a,
.nav .brand {
  text-decoration: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1rem 2rem;
  color: var(--color-darkGrey);
}
.nav [aria-current="page"]:not(.button),
.nav .active:not(.button) {
  color: #000; /* fallback */
  color: var(--color-primary);
}
.nav .brand {
  font-size: 1.75em;
  padding-top: 0;
  padding-bottom: 0;
}
.nav .brand img {
  padding-right: 1rem;
}
.nav .button {
  margin: auto 1rem;
}
.card {
  padding: 1rem 2rem;
  border-radius: 4px;
  background: var(--bg-color);
  -webkit-box-shadow: 0 1px 3px var(--color-grey);
          box-shadow: 0 1px 3px var(--color-grey);
}
.card p:last-child {
  margin: 0;
}
.card header > * {
  margin-top: 0;
  margin-bottom: 1rem;
}
.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.tabs a {
  text-decoration: none;
}
.tabs > .dropdown > summary,
.tabs > a {
  padding: 1rem 2rem;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  color: var(--color-darkGrey);
  border-bottom: 2px solid var(--color-lightGrey);
  text-align: center;
}
.tabs > a[aria-current="page"],
.tabs > a.active,
.tabs > a:hover {
  opacity: 1;
  border-bottom: 2px solid var(--color-darkGrey);
}
.tabs > a[aria-current="page"],
.tabs > a.active {
  border-color: var(--color-primary);
}
.tabs.is-full a {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.tag {
  display: inline-block;
  border: 1px solid var(--color-lightGrey);
  text-transform: uppercase;
  color: var(--color-grey);
  padding: 0.5rem;
  line-height: 1;
  letter-spacing: 0.5px;
}
.tag.is-small {
  padding: 0.4rem;
  font-size: 0.75em;
}
.tag.is-large {
  padding: 0.7rem;
  font-size: 1.125em;
}
.tag + .tag {
  margin-left: 1rem;
}
details.dropdown {
  position: relative;
  display: inline-block;
}
details.dropdown > :last-child {
  position: absolute;
  left: 0;
  white-space: nowrap;
}
/* Colors */
.bg-primary {
  background-color: var(--color-primary) !important;
}
.bg-light {
  background-color: var(--color-lightGrey) !important;
}
.bg-dark {
  background-color: var(--color-darkGrey) !important;
}
.bg-grey {
  background-color: var(--color-grey) !important;
}
.bg-error {
  background-color: var(--color-error) !important;
}
.bg-success {
  background-color: var(--color-success) !important;
}
.bd-primary {
  border: 1px solid var(--color-primary) !important;
}
.bd-light {
  border: 1px solid var(--color-lightGrey) !important;
}
.bd-dark {
  border: 1px solid var(--color-darkGrey) !important;
}
.bd-grey {
  border: 1px solid var(--color-grey) !important;
}
.bd-error {
  border: 1px solid var(--color-error) !important;
}
.bd-success {
  border: 1px solid var(--color-success) !important;
}
.text-primary {
  color: var(--color-primary) !important;
}
.text-light {
  color: var(--color-lightGrey) !important;
}
.text-dark {
  color: var(--color-darkGrey) !important;
}
.text-grey {
  color: var(--color-grey) !important;
}
.text-error {
  color: var(--color-error) !important;
}
.text-success {
  color: var(--color-success) !important;
}
.text-white {
  color: #fff !important;
}
/* Position & alignment */
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.text-justify {
  text-align: justify;
}
.text-uppercase {
  text-transform: uppercase;
}
.text-lowercase {
  text-transform: lowercase;
}
.text-capitalize {
  text-transform: capitalize;
}
.is-full-screen {
  width: 100%;
  min-height: 100vh;
}
.is-full-width {
  width: 100% !important;
}
.is-vertical-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.is-horizontal-align {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.is-center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.is-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.is-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.is-fixed {
  position: fixed;
  width: 100%;
}
.is-paddingless {
  padding: 0 !important;
}
.is-marginless {
  margin: 0 !important;
}
.is-pointer {
  cursor: pointer !important;
}
.is-rounded {
  border-radius: 100%;
}
.clearfix {
  content: "";
  display: table;
  clear: both;
}
.is-hidden {
  display: none !important;
}
@media screen and (max-width: 599px) {
  .hide-xs {
    display: none !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 899px) {
  .hide-sm {
    display: none !important;
  }
}
@media screen and (min-width: 900px) and (max-width: 1199px) {
  .hide-md {
    display: none !important;
  }
}
@media screen and (min-width: 1200px) {
  .hide-lg {
    display: none !important;
  }
}
@media print {
  .hide-pr {
    display: none !important;
  }
}
@media screen and (max-width:279px) {
  .container {
    width: 100%;
    }
  .top-menu {
    display: none;
    }
  .mobile-menu p:nth-child(3) {
      display: none;
    }
  .mobile-menu {
    grid-template-columns: repeat(2,1fr);
    }
}

@media screen and (max-width:321px) {
  .mobile-menu p:nth-child(3) {
      display: none;
    }
  .mobile-menu {
    grid-template-columns: repeat(2,1fr);
    }

}

@media screen and (max-width: 599px) {
  .mobile-reverse {
    flex-direction: column-reverse;
  }
  .card p {
    font-size: var(--font-size-lg);
  }
}

@media screen and (min-width:768px) {
  .top-menu {
    display: none;
    }
  .mobile-menu {
    display: none;
    }
}
/* Use the 60-30-10 rule, 60% dominant color, 30% brand color, 10% CTA color */
/*
:root {
  --bg-color: #ffffff; #card color, needs a background image
  --bg-secondary-color: #f3f3f6;
  --color-primary: #14854F; #used for links
  --color-lightGrey: #d2d6dd;
  --color-grey: #747681;
  --color-darkGrey: #3f4144;
  --color-error: #d43939;
  --color-success: #28bd14;
  --font-color: #333333;
}
*/

/* mia.gallery Default */
:root {
  --bg-color: #fff;
  --bg-image: url(/img/zDHdmP8KPz.webp);
  --bg-secondary-color: #f3f3f6;
  --color-primary: #1A0DAB;
  --color-lightGrey: #d2d6dd;
  --color-grey: #747681;
  --color-darkGrey: #3f4144;
  --color-error: #d43939;
  --color-warning: #ffcc33;
  --color-success: #28bd14;
  --font-color: #333333;
  --link-color: #333;
}


body {
  background-image: var(--bg-image);
  background-position: top left;
  background-repeat: repeat;
  background-attachment: fixed;
}

article, video, footer, .end {
  max-width: 960px;
  margin: 0 auto;
}

div:nth-child(n+1) > article > a {
  border-bottom: none;
}

table {
  font-size: 0.9em;
}

/* Christmas
:root {
  --bg-color: #f0f0f0;
  --bg-image: url(/img/ZzDf43.webp);
  --bg-secondary-color: #f3f3f6;
  --color-primary: #1A0DAB;
  --color-lightGrey: #d2d6dd;
  --color-grey: #747681;
  --color-darkGrey: #3f4144;
  --color-error: #d43939;
  --color-warning: #ffcc33;
  --color-success: #ff2480;
  --font-color: #a0644d;
  --link-color: #3E404C;
  --color-sight: #ff5722;
}

body {
background: url(/img/themes/christmas/christmas-top-banner.png) top repeat-x, url(/img/themes/christmas/57879.webp) repeat fixed;
}

.christmas {
	display: inline-block;
	min-width:100px;
	padding: 15px 20px;
	text-decoration: none;
	color: #fff;
	background: red;
	outline: none;
	border-radius: 15px;
	position: relative;
}

#top > div > div > div.nav > div:nth-child(n+1) > a {
  color: white;
}

.card::before, .button::before, .christmas::before {
	content: '';
	display: block;
	position: absolute;
	top: -7px;
	left: -3px;
	right: 0;
	height: 23px;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACsAAAAXCAYAAACS5bYWAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABFpJREFUeNrUV0tIo1cUvpkYjQ4xxSA6DxuNqG0dtaUKOgs3s6i0dFd3pSsXdjeIixakiGA34sZuXCkoONLFwJTK4GMYLYXg29gatTpiXurkbd7vv9/5ub+IxuhA7eiFQ5Kbc8/57ne/e87/ywRBYLdl3GG3aNwqsLJ0k0tLS+fmcnNzWUVFBVMoFGx2djarvLxcm5OTw+bm5iytra2xc4ExNjY27iqVyvvwK6CpeDzuCYVC1urq6qDA9UcfPp+PHR4esmAwKK6tr68/l5/8rgQ2Ozub1dbWyiYmJooaGxt/VqvV38jlchX9l0qlwoFA4DWS/RKLxRxFRUVf5+XlPcaaT2AP0sVPJBL2SCRiAPBpu93+vKamZo/Ae71eZjabWV1dXVqw7CKwp43ksrCw8Bhg7MJ/PLDZ5PHx8cz29vYT5JGD/bSYLgTrcDgYdk6siSc6NjZWDaAe4ZoHQL+cmZnRpZPnhWDpD8kw7uKo9ML/NMCsd2tr61vkzboMrEyv138M7TyLRqMWMBsX3sMgaZhMpp+AR5EJrCocDpuEGzKg4x8khs+CVWxubvZfR9JkMik4nU7BarUKLpeLmLsKuwIqTLynp4fqmIzASrqQT09Pf1VVVfX0KsWZ6uHBwQHTaDSsoKAgo6/H4xHLEcrVyRwuEisrKzs5XrrIVAVwiUVDKRRrL+YI32ewdVhMApuHWvcj6vids6J2u90MF4yBHUZNgKoEBaRBQalJqFSqtJfUYrGIlQX+ydXVVTN+u0tKSjQNDQ1axJVl2iTypebn55d7e3v/kqoDgZU1NTU9LCws/Py0M+2ekuGincxJ3yF+18jIyHJLS0slQJUWFxczrBeBE0vE5tHRkbixlZWVfSR8gTX/0P5gH7S1tX3Z3t7+BW8qAvwSfr8/jA0EIRM/qoFtampqbW9vTw+XA+ojUruVd3Z2tvb19T2TQFEim81GgVJoCvvj4+NLOJZgaWmpemdn5y3a6BbcnJDAw8HBwac6ne6eqCW5XDwB3qVSqM9/DAwMUNy/eVLabT7sI25qwgujThCBhWE+mAt2yNc4SQKSZrOQQE1HS22VJkmPAGTr7+//fX19fRk+Zgq0trbGeFAKEAQT98BSqKOj47vm5uaa/Px8JeIk4GcaHh6eWlxcfAU/A8xG67BxAX3fwdcbYUpSDJ06Z49Ak8ZC3OL8f3YiA4PBYKdLQ2AJ9OTk5GpXV9cQiCVh79M94QtlPLDUE/1gPNrd3f0W33W4cBoco48zQuy/IZYAMnGqlSc4c66L9JruQUaSARXeT8HGKzxAqFBekni6+h46+pMzGiJGMgTOJh1yU/KNEGDvZWvfBawkA9ppwGg0mrRa7SOI2g+gxOgbJIpdFpj72PnxSnPX8vqRxTURgBQWKisrH+GThOm+CtAzoK/9/Uiqq/6hoaHfdnd3jaOjo7/yY7yxbwqkWy3sQzpS2C6YirwvUJk0y7hurfyGRrnduPGvAAMASmo8wzeVwfsAAAAASUVORK5CYII=) no-repeat 0 0,
	url(data:image/png;base64,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) no-repeat 50% 0,
	url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACEAAAAXCAYAAACFxybfAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAodJREFUeNrsVb1rWlEUv2pN/GqspKRSKFYXWzEloIWif0Fn6dJChQ7OQil0qd3EzcEpg0OgdHDr4CQODk7VRlLMEIVqApX4We0zflR9/Z1Ui4T34ksaaAYP/Hzc673n/M6550PG8zz73yKjn0wm83fDYDAwo9HINBrNnwOQg4MDs0ql2lQqlfdAWont7ng8Pjw+Ps44nc4G1pI9EXWaSOzt7TGO42aH5Pv7+08ajUZ0MBiUeXEZd7vdL5VK5fX29rZ+5tQiEmdxKrlcjsEYczgcynK5/BKKv/IXFNz/XiqVXkHdjUuRIA9SqdRD8or/R8Ez9fr9fqHVakUR4c2z0REjIQuHw2ZcrPBXLCA0RHTezEdHjIQqkUhEr9I4HOILhQLf6/VoOUFEvDMiQiToDx1Cdz+bzZ6bUFarlel0OkkVUK/XWbvdPoVer5fh3ntsfwJ+CJ2XA4p0Op1bpBgJyxDehQQ6nQ5DZXHBYDBZq9V+EhFUndnr9drEqoc2bwJbwGPgtohuVSwWe2Gz2TZMJpNgRKi6qtUqg2EWj8dTgUDgo0KhWPN4PC70EvXOzs67fD6/S6kiRIKeZA1YJ2MiJNbdbvfTUCjkV6vVK2hcDF8GI2w0GrGTkxM2HA5PDxaLxSOfz/cWEfk81X0XIMMFgJJ/srBjCgk8IdcfuVyuZ36//7nFYtkQyAMumUzuRiKRD0jMFLa+AZOpYwqgB/ziBVqmVBKUO7eAB/R0WG/Z7XaTVqtdbTabHJL6EK2djBaBPHA0NSqpbUsiMUeEBgpF4Q5AbZrmSJ/yEWgBTaBNHl9kdkgmMUeG7qwAq9PqovceTA3zlxlgsuswyuXsGsiSxJLEkoSY/BZgAEjRodi+uBruAAAAAElFTkSuQmCC) no-repeat 100% 0;
}
 *//* https://www.fluid-type-scale.com/calculate */
:root {
  --font-size-sm: clamp(0.8rem, 0.0886vw + 0.7845rem, 0.8908rem);
  --font-size-base: clamp(1rem, 0.1829vw + 0.968rem, 1.1875rem);
  --font-size-md: clamp(1.25rem, 0.3248vw + 1.1932rem, 1.5829rem);
  --font-size-lg: clamp(1.5625rem, 0.5342vw + 1.469rem, 2.1101rem);
  --font-size-xl: clamp(1.9531rem, 0.8386vw + 1.8064rem, 2.8127rem);
  --font-size-xxl: clamp(2.4414rem, 1.276vw + 2.2181rem, 3.7493rem);
  --font-size-xxxl: clamp(3.0518rem, 1.8986vw + 2.7195rem, 4.9979rem);
  --font-family-mono: monospace;
}

h1 {font-size: var(--font-size-xxxl);}
h2 {font-size: var(--font-size-xxl);}
h3 {font-size: var(--font-size-xl);}
h4 {font-size: var(--font-size-lg);}
h5 {font-size: var(--font-size-md);}
h6 {font-size: var(--font-size-sm);}

h1,h2,h3,h4,h5,h6 {
  font-family: Didot, 'Bodoni MT', 'Noto Serif Display', 'URW Palladio L', P052, Sylfaen, serif;
  font-weight: 900;
}

.title.is-1 {font-size: var(--font-size-xxxl); margin-bottom: 0.5em;}
.title.is-2 {font-size: var(--font-size-xxl); margin-bottom: 0.5em;}
.title.is-3 {font-size: var(--font-size-xl); margin-bottom: 0.5em;}
.title.is-4 {font-size: var(--font-size-lg); margin-bottom: 0.5em;}
.title.is-5 {font-size: var(--font-size-md); margin-bottom: 0.5em;}
.title.is-6 {font-size: var(--font-size-sm); margin-bottom: 0.5em;}
.title.is-7 {font-size: 0.75rem; margin-bottom: 0.5em;}

.title.is-1,.title.is-2,.title.is-3,.title.is-4,.title.is-5,.title.is-6,.title.is-7 {
  font-family: Didot, 'Bodoni MT', 'Noto Serif Display', 'URW Palladio L', P052, Sylfaen, serif;
  font-weight: 900;
}

h1,h2 {
  letter-spacing: -1px;
  line-height: 0.9em;
}

.subtitle:not(.is-spaced) + .title {
  margin-top: -1.25rem;
}

.subtitle.is-1 {font-size: 3rem;}
.subtitle.is-2 {font-size: 2.5rem;}
.subtitle.is-3 {font-size: 2rem;}
.subtitle.is-4 {font-size: 1.5rem;}
.subtitle.is-5 {font-size: 1.25rem;}
.subtitle.is-6 {font-size: 1rem;}
.subtitle.is-7 {font-size: 0.75rem;}

.subtitle.is-1,.subtitle.is-2,.subtitle.is-3,.subtitle.is-4,.subtitle.is-5,.subtitle.is-6,.subtitle.is-7 {
  font-family: Didot, 'Bodoni MT', 'Noto Serif Display', 'URW Palladio L', P052, Sylfaen, serif;
  font-weight: 900;
}

article p {
  font-family: Seravek, 'Gill Sans Nova', Ubuntu, Calibri, 'DejaVu Sans', source-sans-pro, sans-serif;
  line-height: 1.1em;
  font-size: var(--font-size-lg);
}

.container p {
  line-height: 1.1em;
}

header p, .card-footer {
  font-size: var(--font-size-md);
}

.text-balance {
  text-wrap: balance;
}
.sales-box {
  border: 1px solid black;
  padding: 1em;
  background-color: white;
  box-shadow: 3px 3px 1px black;
  max-width: 99%;
}

.black {
  background-color: black;
  color: white;
}

.sales-box h2, h3, h4, h5 {
  line-height: 0.85em;
}

.sales-box p {
  line-height: 1.1em;
}


mark {
  margin: 0 -0.4em;
  padding: 0.05em 0.4em;
  border-radius: 0.7em 0.3em;
  background: transparent;
  background-image: linear-gradient(
    to right,
    rgba(255, 225, 0, 0.1),
    rgba(255, 225, 0, 0.7) 4%,
    rgba(255, 225, 0, 0.3)
  );
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.sales-box-pink {
  grid-row: 2/span 2;
  border:4px solid black;
  box-shadow: 4px 4px 0px 0.5px black;
  background-color: #ff74a2;
  border-radius: 30px;
  padding: 30px;
  height: fit-content;
  text-align: center;
  font-size: 1.1rem;
  color: white;
}

.sales-box-purple-light {
  grid-row: 2/span 2;
  border:4px solid black;
  box-shadow: 4px 4px 0px 0.5px black;
  background-color: #A388EE;
  border-radius: 30px;
  padding: 30px;
  height: fit-content;
  text-align: center;
  font-size: 0.7rem;
  color: white;
}

.sales-box-yellow {
  grid-row: 2/span 2;
  background-color: #ffc300;
  border-radius: 30px;
  padding: 10px;
  height: fit-content;
  text-align: center;
  border:4px solid black;
  box-shadow: 4px 4px 0px 0.5px black;
}

.sales-box-stacked {
  border: 1px solid black;
  padding: 1em;
  box-shadow: 10px 10px 0 -1px #fff,10px 10px 0 #191a1b,20px 20px 0 -1px #fff,20px 20px 0 #191a1b;
  max-width: 99%;
  background-color: black;
  color: white;
  font-family: ui-monospace, 'Cascadia Code', 'Source Code Pro', Menlo, Consolas, 'DejaVu Sans Mono', monospace;
}


.rotate-left {
  transform: rotate(-3deg);
}

.rotate-right {
  transform: rotate(3deg);
}

.intro {
  font-size: var(--font-size-md);
  letter-spacing: -1px;
  font-family: monospace;
  font-weight: bold;
}

.color-pink {
  color: #e91e63;
  font-weight: 900;
  font-size: var(--font-size-xl);
}

.color-green {
  color: #4CAF50;
  font-weight: 900;
  font-size: var(--font-size-lg);
}

.bg-yellow {
  background-color: #ffab00;
  color: white;
  font-weight: 900;
  font-size: var(--font-size-md);
}

.sales-button {
  position: fixed;
  left: 0;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  background-color: transparant;
  text-align: center;
  font-size: 1.5rem;
  z-index: 99;
}

.sales-button .button {
  border-radius: 0px;
  font-size: var(--font-size-xl);
}
.paginav {
  display: flex;
  line-height: 30px;
}

.paginav {
  letter-spacing: 1px;
  text-transform: uppercase;

}

.nav-left a:only-of-type, .nav-right a:only-of-type {
  border-bottom: none;
}

.paginav .prev,
.paginav .next {
    width: 50%;
}

.paginav .next {
  margin-inline-start: auto;
  text-align: right;
}

[dir="rtl"] .paginav .next {
    text-align: left;
}
.meta-item {
    display: inline-block;
}
.meta-item * {
    color: var(--secondary);
}

.meta-item:not(:last-of-type):after {
    content: "·";
    margin-inline-start: .5em;
    margin-inline-end: .5em;
}

.meta-item svg {
    width: 1em;
    height: 1em;
    display: inline-block;
    vertical-align: -0.15em;
}

.meta-item a {
    transition: var(--link-transition);
}
.meta-item a:hover {
    color: var(--primary);
    box-shadow: 0 1px 0 var(--secondary);
}

.post-tags {
  font-size: var(--font-size-md);
  text-transform: lowercase;
}
.meta-item .post-tags a:not(:last-of-type) {
    margin-inline-end: .3em;
}
.meta-item .post-tags a:not(:last-of-type):after {
    content: ",";
}
.meta-item .post-tags a:before {
    content: "#";
}
.widget-movie-madness {
  border: 2px solid black;
  background-color: #222222;
  color: #f0f0f0;
  padding: 1em;
  text-align: center;
  border-radius: 5px;
}

.widget-chaturbate {
  text-align: center;
  border-radius: 5px;
  border: 2px solid black;
  padding: 0.3em;
  background-color: #f0f0f0;
}

.widget-cam {
  text-align: center;
}

.widget-cam img {
  height: 135px;
  width: auto;
}

.widget-fat-border {
  border: 10px solid #fad73d;
  border-radius: 25px;
  padding: 40px 40px 20px;
}

@media screen and (max-width:375px) {
  .widget-cam img {
    height: 100px;
    width: auto;
  }
  .widget-chaturbate img {
    height: 80px;
    width: auto;
  }
  .widget-movie-madness img {
    width: 95px;
    height: auto;
  }

}

@media screen and (min-width:768px) {
  .widget-chaturbate img {
    height: 110px;
    width: auto;
  }
  .widget-movie-madness img {
    width: 130px;
    height: auto;
  }

}
.up-down {
  -webkit-animation: action 1s infinite  alternate;
  animation: action 1s infinite  alternate;
}

@-webkit-keyframes action {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

@keyframes action {
  0% { transform: translateY(0); }
  100% { transform: translateY(-10px); }
}

.arrow-down {
  font-size: 3em;
}
.bg-dots-subtle {
  background-image:  url(/img/button-stars/ZJ7yMY.webp);
  background-repeat: repeat;
}
.card {
  padding: 0.5rem 0.5rem;
}
/* W3.css default colors
 --red: #f44336;
 --amber: #ffc107;
 --aqua: #00ffff;
 --blue: #87CEEB;
 --brown: #795548;
 --cyan: #00bcd4;
 --blue-grey: #607d8b;
 --green: #4CAF50;
 --light-green: #8bc34a;
 --indigo: #3f51b5;
 --khaki: #f0e68c;
 --lime: #cddc39;
 --orange: #ff9800;
 --deep-orange: #ff5722;
 --pink: #e91e63;
 --purple: #9c27b0;
 --deep-purple: #673ab7;
 --red: #f44336;
 --sand: #fdf5e6;
 --teal: #009688;
 --yellow: #ffeb3b;
 --white: #fff;
 --black: #000;
 --grey: #9e9e9e;
 --light-grey: #f1f1f1;
 --dark-grey: #616161;
 --pale-red: #ffdddd;
 --pale-green: #ddffdd;
 --pale-yellow: #ffffcc;
 --pale-blue: #ddffff;
*/

/* https://www.w3schools.com/w3css/w3css_color_libraries.asp
 W3 US Highway Colors
--highway-brown: #633517;
--highway-red: #a6001a;
--highway-orange: #e06000;
--highway-schoolbus: #ee9600;
--highway-yellow: #ffab00;
--highway-green: #004d33;
--highway-blue: #00477e;

--vivid-pink: #ffb5bA;
--vivid-red: #be0032;
--vivid-orange: #f38400;
--vivid-yellow: #f3c300;
--vivid-green: #008856;
--vivid-blue: #00a1c2;
 */
.copyright {
    margin: auto;
    text-align: center;
    line-height: 1.1em;
    margin-bottom: 4em;
    font-size: var(--font-size-md);
}

.copyright a {
    color: inherit;
    border-bottom: 0.1em dotted black;
}
.elot {
  background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 1.0)), url(https://elot.sbs/elot-mascot-full.webp);
  background-origin: padding-box;
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 150px;
}
.section {
  margin-top: 1em;
  margin-bottom: 1em;
}

.section-large {
  margin-top: 4em;
  margin-bottom: 4em;
}

.section-small {
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

.section-left {
  margin-left: 0.5em;
}

.padding-normal {
  padding: 1em;
}

.padding-small {
  padding: 0.5em;
}

.padding-large {
  padding: 2em;
}

.rounded {
  border-radius: 15px;
}

.cover {
  object-fit: contain;
  height: 100%;
  width: 100%;
}

a:only-of-type {
  color: var(--link-color);
  border-bottom: 1px dotted black;
}

.margin-top-small {
  margin-top: 0.5em;
}

.margin-bottom-medium {
  margin-top: 0.75em;
}

.margin-top-medium {
  margin-top: 0.75em;
}

.margin-bottom-small {
  margin-top: 0.5em;
}

.margin-top-1 {
  margin-top: 2em;
}

.margin-bottom-1 {
  margin-bottom: 2em;
}

.margin-top-2 {
  margin-top: 4em;
}

.margin-bottom-2 {
  margin-bottom: 4em;
}

.bg-white {
  background-color: #fff;
}

a.paginav  {
  background-color: #333;
  border-radius: 10px;
  padding: 5px 30px;
  color: white;
}

td, th {
  padding: 0 0.5em;
}

.mobile-menu {
  position: fixed;
  left: 0;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  background-color: #fcd12a;
  border-top: 0.5px solid black;
  color: #222222;
  text-align: center;
  font-size: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-auto-flow: row;
  z-index: 99;
}

.mobile-menu a {
  border-bottom: none;
}

.mobile-menu p {
   margin: 5px 0px;
}

.top-menu {
  position: relative;
  top: 0;
  width: 100%;
  overflow: hidden;
  color: #222222;
  text-align: center;
  font-size: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2,1fr);
  grid-auto-flow: row;
}

.top-menu p {
  margin: 5px 0px;
}

.button.warning {
  background-color: #fed24d;
}

.cover {
  height: unset;
}
.container.margin-top-2.footer h3, ul {
  margin: 0.35em 0 0 0;
}

.usage {
  font-size: 0.9em;
  padding: 0;
}

.newsletter {
  font-size: 0.8em;
  background: white;
	padding: 1em;
	border: 0.75em solid transparent;
	border-image: 16 repeating-linear-gradient(-45deg, red 0, red 1em, transparent 0, transparent 2em, #58a 0, #58a 3em, transparent 0, transparent 4em);
  background: url(/img/AzfpWEZn.webp);
}

.flip-horizontally {
    transform: scaleX(-1);
}
@media screen and (min-width: 319px) and (max-width: 599px) {
  .col-1-xs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/1)) - var(--grid-gutter));
    max-width: calc((100% / (12/1)) - var(--grid-gutter));
  }

  .col-2-xs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/2)) - var(--grid-gutter));
    max-width: calc((100% / (12/2)) - var(--grid-gutter));
  }

  .col-3-xs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/3)) - var(--grid-gutter));
    max-width: calc((100% / (12/3)) - var(--grid-gutter));
  }

  .col-4-xs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/4)) - var(--grid-gutter));
    max-width: calc((100% / (12/4)) - var(--grid-gutter));
  }

  .col-5-xs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/5)) - var(--grid-gutter));
    max-width: calc((100% / (12/5)) - var(--grid-gutter));
  }

  .col-6-xs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/6)) - var(--grid-gutter));
    max-width: calc((100% / (12/6)) - var(--grid-gutter));
  }

  .col-7-xs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/7)) - var(--grid-gutter));
    max-width: calc((100% / (12/7)) - var(--grid-gutter));
  }

  .col-8-xs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/8)) - var(--grid-gutter));
    max-width: calc((100% / (12/8)) - var(--grid-gutter));
  }

  .col-9-xs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/9)) - var(--grid-gutter));
    max-width: calc((100% / (12/9)) - var(--grid-gutter));
  }

  .col-10-xs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/10)) - var(--grid-gutter));
    max-width: calc((100% / (12/10)) - var(--grid-gutter));
  }

  .col-11-xs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/11)) - var(--grid-gutter));
    max-width: calc((100% / (12/11)) - var(--grid-gutter));
  }

  .col-12-xs {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
            flex: 0 0 calc((100% / (12/12)) - var(--grid-gutter));
    max-width: calc((100% / (12/12)) - var(--grid-gutter));
  }
}.mobile-menu {
  position: fixed;
  left: 0;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  background-color: #fcd12a;
  border-top: 0.5px solid black;
  color: #222222;
  text-align: center;
  font-size: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-flow: row;
  z-index: 99;
  padding-left: 10px;
}

.mobile-menu a {
  border-bottom: none;
}

.mobile-menu p {
   margin: 5px 0px;
}div.nav > div:nth-child(3) > a {
  border-bottom: none;
}

.nav .brand {
  font-size: 1.5em;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.nav img {
  max-height: 4rem;
  max-width: none;
}

.nav a {
  padding: 0rem 0rem;
}
.mobile-menu {
  position: fixed;
  left: 0;
  bottom: 0;
  overflow: hidden;
  width: 100%;
  background-color: #fcd12a;
  border-top: 0.5px solid black;
  color: #222222;
  text-align: center;
  font-size: 1.5rem;
  display: grid;
  grid-template-columns: repeat(4,1fr);
  grid-auto-flow: row;
  z-index: 99;
  padding-left: 10px;
}

.mobile-menu a {
  border-bottom: none;
}

.mobile-menu p {
   margin: 5px 0px;
}.gJSFchkKDxAL {
padding: 0.1em;
background: repeating-linear-gradient(
  45deg,
  #EA504A,
  #EA504A 7px,
  #E861A3 7px,
  #E861A3 10px
);
text-align: center;
font-weight: bold;
color: #fff;
border-radius: 5px;
}
/* https://developer.chrome.com/blog/introducing-popover-api/ 
https://alvarotrigo.com/blog/create-a-slider-with-pure-css/ */

#smp::backdrop {
  background: rgb(190 190 190 / 50%);
}

#smp {
  border: 1px black solid;
}

.slider-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.slider {
  width: 100%;
  max-width: 600px;
  height: 400px;
  margin: 20px;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.slides {
  display: flex;
  overflow-x: scroll;
  position: relative;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

/*
.slide:nth-of-type(even) {
    background-color: rgb(250, 246, 212);
}
*/

.slide {
  display: flex;
  justify-content: center;
/*  align-items: center; */
  flex-shrink: 0;
  width: 100%;
  height: 400px;
  margin-right: 0px;
  box-sizing: border-box;
  background: white;
  transform-origin: center center;
  transform: scale(1);
  scroll-snap-align: center;
}

.slide__header {
  font-size: var(--font-size-xl);
  font-weight: bold;
  font-family: serif;
}

.slide__subhead {
  font-size: var(--font-size-lg);
  font-family: serif;
  margin-top: -0.85em;
}

.slide__text {
  font-size: 1em;
  font-family: sans-serif;
}

.slide a {
  background: none;
  border: none;
}

a.slide__prev,
.slider::before {
  transform: rotate(135deg);
  -webkit-transform: rotate(135deg);
  left: 5%;
}

a.slide__next,
.slider::after {
  transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
  right: 5%;
}

.slider::before,
.slider::after,
.slide__prev,
.slide__next {
  position: absolute;
  top: 68%;
  width: 35px;
  height: 35px;
  border: solid black;
  border-width: 0 4px 4px 0;
  padding: 3px;
  box-sizing: border-box;
}

.slider::before,
.slider::after {
  content: '';
  z-index: 1;
  background: none;
  pointer-events: none;
}
video {
  position: relative;
  object-fit: contain;
  width: 100%;
  height: auto;
}
