/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

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

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

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;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

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;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[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;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

:root {
  --body-color: #2f2f2f;
  --body-bg-color: #fafafa;
  --a-color: #1676C5;
  --a-hover-color: #007B94;
  --a-active-color: #007B94;
  --disabled-color: #737373;
  --pre-color: #1a1a1a;
  --pre-bg-color: #e6e6e6;
  --table-thin-color: #2f2f2f;
  --table-thick-color: #1a1a1a;
  --formcolor-bg-color: #fafafa;
}

@media (prefers-color-scheme: dark) {
  :root {
    --body-color: #fafafa;
    --body-bg-color: #2f2f2f;
    --a-color: #1676C5;
    --a-hover-color: #007B94;
    --a-active-color: #007B94;
    --disabled-color: #969696;
    --pre-color: #e6e6e6;
    --pre-bg-color: #1a1a1a;
    --table-thin-color: #e6e6e6;
    --table-thick-color: #fafafa;
    --formcolor-bg-color: #2f2f2f;
  }
}
body {
  font: 100% Helvetica, sans-serif;
  min-height: 100vh;
  color: var(--body-color);
  background-color: var(--body-bg-color);
}

h1, h2, h3, h4, h5, h6 {
  margin: 0.75rem 0 0.25rem 0;
  padding: 0;
  width: 100%;
  line-height: 1.5rem;
}

p {
  margin: 0.25rem 0 0.25rem 0;
  padding: 0;
  width: 100%;
  line-height: 1.5rem;
}

pre {
  display: block;
  line-height: 1.25rem;
  white-space: pre-wrap;
  margin: 0.5rem 0;
  padding: 0.5rem;
  font-family: "Courier New", Courier, monospace;
  color: var(--pre-color);
  background-color: var(--pre-bg-color);
}

.code {
  border-left: 0.25rem solid #1676C5;
}

a {
  color: var(--a-color);
}

a:hover {
  color: var(--a-hover-color);
}

*.active {
  color: var(--a-active-color);
}

*.active a {
  color: var(--a-active-color);
}

*.active a:hover {
  color: var(--a-active-color);
}

a:active,
button:active,
[type=button]:active,
[type=reset]:active,
[type=submit]:active,
.button:active,
.chunky-button:active {
  transform: scale(0.98);
}

*.disabled, *.disabled a, *.disabled a:hover {
  color: var(--disabled-color);
}

a:focus-visible,
button:focus-visible,
[type=button]:focus-visible,
[type=reset]:focus-visible,
[type=submit]:focus-visible,
.button:focus-visible,
.chunky-button:focus-visible {
  outline: 2px solid var(--a-color);
  outline-offset: 2px;
}

table {
  width: 100%;
  box-sizing: border-box;
  margin: 0.5rem 0 0.25rem 0;
  padding: 0;
  border-collapse: collapse;
}

@media screen and (max-width: 59.9375em) {
  table.collapsable tr {
    border: 0.0625rem solid var(--table-thin-color);
  }
  table.collapsable th, table.collapsable td {
    border: 0;
    display: block;
  }
}
td, th {
  padding: 0.5rem 0.25rem;
  border: 0.0625rem solid var(--table-thin-color);
}

th {
  border-bottom: 0.125rem solid var(--table-thick-color);
}

.body-blck {
  width: 100%;
  margin: 0;
}

.body-cont {
  max-width: 74.9375em;
  margin: 0 auto;
}

.body-cont-full {
  width: 100%;
  margin: 0 auto;
}

ul.vnav, ul.hnav, ul.rnav {
  margin: 0.25rem 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
}

ul.hnav {
  flex-direction: row;
  flex-wrap: wrap;
}

ul.vnav li, ul.rnav li, ul.hnav li {
  margin: 0;
  padding: 0.75rem 0.5rem;
}

@media screen and (min-width: 60em) {
  ul.rnav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
ul.vnav li a, ul.hnav li a, ul.rnav li a {
  display: block;
  text-decoration: none;
}

form {
  width: 100%;
  box-sizing: border-box;
  margin: 0.5rem 0;
  padding: 0;
}

label, legend {
  margin: 0;
  padding: 0;
}

input, select, textarea, optgroup {
  margin: 0.5rem 0;
  padding: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  color: var(--body-color);
  background-color: var(--formcolor-bg-color);
  border: 0.0625rem solid var(--table-thin-color);
}

option {
  margin: 0.5rem 0;
  padding: 0.5rem;
}

button, [type=button], [type=reset], [type=submit], .button, .chunky-button {
  box-sizing: border-box;
  display: inline-block;
  width: auto;
  margin: 0.5rem 0;
  padding: 0.5rem;
  color: #fafafa;
  background-color: #1676C5;
  border-style: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  line-height: 1.25rem;
}

button:hover, [type=button]:hover, [type=reset]:hover, [type=submit]:hover, .button:hover, .chunky-button:hover {
  color: #fafafa;
  background-color: #007B94;
}

[type=checkbox], [type=radio] {
  width: auto;
  margin: 0.5rem 0;
  padding: 0.5rem;
}

input[type=checkbox] + label, input[type=radio] + label {
  display: inline-block;
  margin: 0.5rem 0;
  padding: 0.5rem;
}

[type=color] {
  background-color: var(--formcolor-bg-color);
  box-sizing: content-box;
  display: inline-block;
  height: 2.25rem;
  border: 0;
  margin: 0.5rem 0;
  padding: 0;
  width: 100%;
}

.fxy-cont {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.fxy-shrink {
  height: auto;
  max-height: 100%;
}

.fxy-auto {
  height: auto;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
}

.fx-cont, .fx-cont12 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

[class*=fx-s], [class*=fx-m], [class*=fx-l] {
  width: 100%;
  margin: 0;
  padding: 0 !important;
  flex-basis: auto;
  flex-grow: 0;
  flex-shrink: 0;
}

div.fx-s1 {
  width: 8.3333333333%;
}

div.fx-s2 {
  width: 16.6666666667%;
}

div.fx-s3 {
  width: 25%;
}

div.fx-s4 {
  width: 33.3333333333%;
}

div.fx-s5 {
  width: 41.6666666667%;
}

div.fx-s6 {
  width: 50%;
}

div.fx-s7 {
  width: 58.3333333333%;
}

div.fx-s8 {
  width: 66.6666666667%;
}

div.fx-s9 {
  width: 75%;
}

div.fx-s10 {
  width: 83.3333333333%;
}

div.fx-s11 {
  width: 91.6666666667%;
}

div.fx-s12 {
  width: 100%;
}

div.fx-sshrink {
  width: auto;
  max-width: 100%;
}

div.fx-sauto {
  width: auto;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
}

@media screen and (min-width: 60em) {
  div.fx-m1 {
    width: 8.3333333333%;
  }
  div.fx-m2 {
    width: 16.6666666667%;
  }
  div.fx-m3 {
    width: 25%;
  }
  div.fx-m4 {
    width: 33.3333333333%;
  }
  div.fx-m5 {
    width: 41.6666666667%;
  }
  div.fx-m6 {
    width: 50%;
  }
  div.fx-m7 {
    width: 58.3333333333%;
  }
  div.fx-m8 {
    width: 66.6666666667%;
  }
  div.fx-m9 {
    width: 75%;
  }
  div.fx-m10 {
    width: 83.3333333333%;
  }
  div.fx-m11 {
    width: 91.6666666667%;
  }
  div.fx-m12 {
    width: 100%;
  }
  div.fx-mshrink {
    width: auto;
    max-width: 100%;
  }
  div.fx-mauto {
    width: auto;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
  }
}
@media screen and (min-width: 75em) {
  div.fx-l1 {
    width: 8.3333333333%;
  }
  div.fx-l2 {
    width: 16.6666666667%;
  }
  div.fx-l3 {
    width: 25%;
  }
  div.fx-l4 {
    width: 33.3333333333%;
  }
  div.fx-l5 {
    width: 41.6666666667%;
  }
  div.fx-l6 {
    width: 50%;
  }
  div.fx-l7 {
    width: 58.3333333333%;
  }
  div.fx-l8 {
    width: 66.6666666667%;
  }
  div.fx-l9 {
    width: 75%;
  }
  div.fx-l10 {
    width: 83.3333333333%;
  }
  div.fx-l11 {
    width: 91.6666666667%;
  }
  div.fx-l12 {
    width: 100%;
  }
  div.fx-lshrink {
    width: auto;
    max-width: 100%;
  }
  div.fx-lauto {
    width: auto;
    flex-basis: 0;
    flex-grow: 1;
    flex-shrink: 1;
  }
}
.gd-cont, .gd-cont12 {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}

.gd-cont-auto, .gd-cont12-auto {
  display: grid;
  grid-template-columns: repeat(12, auto);
}

.gd-cont > div, .gd-cont-auto > div, .gd-cont12 > div, .gd-cont12-auto > div {
  grid-column: span 12;
}

.gd-cont10 {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
}

.gd-cont10-auto {
  display: grid;
  grid-template-columns: repeat(10, auto);
}

.gd-cont10 > div, .gd-cont10-auto > div {
  grid-column: span 10;
}

[class*=gd-s], [class*=gd-m], [class*=gd-l] {
  margin: 0;
  padding: 0;
}

div.gd-s1 {
  grid-column: span 1;
}

div.gd-s2 {
  grid-column: span 2;
}

div.gd-s3 {
  grid-column: span 3;
}

div.gd-s4 {
  grid-column: span 4;
}

div.gd-s5 {
  grid-column: span 5;
}

div.gd-s6 {
  grid-column: span 6;
}

div.gd-s7 {
  grid-column: span 7;
}

div.gd-s8 {
  grid-column: span 8;
}

div.gd-s9 {
  grid-column: span 9;
}

div.gd-s10 {
  grid-column: span 10;
}

div.gd-s11 {
  grid-column: span 11;
}

div.gd-s12 {
  grid-column: span 12;
}

@media screen and (min-width: 60em) {
  div.gd-m1 {
    grid-column: span 1;
  }
  div.gd-m2 {
    grid-column: span 2;
  }
  div.gd-m3 {
    grid-column: span 3;
  }
  div.gd-m4 {
    grid-column: span 4;
  }
  div.gd-m5 {
    grid-column: span 5;
  }
  div.gd-m6 {
    grid-column: span 6;
  }
  div.gd-m7 {
    grid-column: span 7;
  }
  div.gd-m8 {
    grid-column: span 8;
  }
  div.gd-m9 {
    grid-column: span 9;
  }
  div.gd-m10 {
    grid-column: span 10;
  }
  div.gd-m11 {
    grid-column: span 11;
  }
  div.gd-m12 {
    grid-column: span 12;
  }
}
@media screen and (min-width: 75em) {
  div.gd-l1 {
    grid-column: span 1;
  }
  div.gd-l2 {
    grid-column: span 2;
  }
  div.gd-l3 {
    grid-column: span 3;
  }
  div.gd-l4 {
    grid-column: span 4;
  }
  div.gd-l5 {
    grid-column: span 5;
  }
  div.gd-l6 {
    grid-column: span 6;
  }
  div.gd-l7 {
    grid-column: span 7;
  }
  div.gd-l8 {
    grid-column: span 8;
  }
  div.gd-l9 {
    grid-column: span 9;
  }
  div.gd-l10 {
    grid-column: span 10;
  }
  div.gd-l11 {
    grid-column: span 11;
  }
  div.gd-l12 {
    grid-column: span 12;
  }
}
.bold {
  font-weight: bold;
}

.italic {
  font-style: italic;
}

.uppercase {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.no-text-decoration {
  text-decoration: none !important;
}

.monospace {
  font-family: "Courier New", Courier, monospace;
}

.light-text {
  color: #e6e6e6;
}

.dark-text {
  color: #2f2f2f;
}

.chunky-button {
  padding: 1.25rem 1.5rem;
}

table.no-table-border tr, table.no-table-border th, table.no-table-border td {
  border: 0 !important;
}

.hide {
  display: none !important;
}

.hide-s {
  display: none !important;
}

.bold-s {
  font-weight: bold;
}

.italic-s {
  font-style: italic;
}

@media screen and (min-width: 60em) {
  .hide-m {
    display: none !important;
  }
  .bold-m {
    font-weight: bold;
  }
  .italic-m {
    font-style: italic;
  }
  .only-s {
    display: none !important;
  }
}
@media screen and (min-width: 75em) {
  .hide-l {
    display: none !important;
  }
  .bold-l {
    font-weight: bold;
  }
  .italic-l {
    font-style: italic;
  }
  .only-m {
    display: none !important;
  }
}
@media screen and (max-width: 59.9375em) {
  .only-m {
    display: none !important;
  }
}
@media screen and (max-width: 74.9375em) {
  .only-l {
    display: none !important;
  }
}
.align-center {
  text-align: center;
  display: block;
  margin: 0 auto;
  clear: both;
}

.p-x0, .px-x0, .pl-x0 {
  padding-left: 0;
}

.p-x0, .px-x0, .pr-x0 {
  padding-right: 0;
}

.p-x0, .py-x0, .pt-x0 {
  padding-top: 0;
}

.p-x0, .py-x0, .pb-x0 {
  padding-bottom: 0;
}

.m-x0, .mx-x0, .ml-x0 {
  margin-left: 0;
}

.m-x0, .mx-x0, .mr-x0 {
  margin-right: 0;
}

.m-x0, .my-x0, .mt-x0 {
  margin-top: 0;
}

.m-x0, .my-x0, .mb-x0 {
  margin-bottom: 0;
}

.p-x1, .px-x1, .pl-x1 {
  padding-left: 0.25rem;
}

.p-x1, .px-x1, .pr-x1 {
  padding-right: 0.25rem;
}

.p-x1, .py-x1, .pt-x1 {
  padding-top: 0.25rem;
}

.p-x1, .py-x1, .pb-x1 {
  padding-bottom: 0.25rem;
}

.m-x1, .mx-x1, .ml-x1 {
  margin-left: 0.25rem;
}

.m-x1, .mx-x1, .mr-x1 {
  margin-right: 0.25rem;
}

.m-x1, .my-x1, .mt-x1 {
  margin-top: 0.25rem;
}

.m-x1, .my-x1, .mb-x1 {
  margin-bottom: 0.25rem;
}

.p-x2, .px-x2, .pl-x2 {
  padding-left: 0.5rem;
}

.p-x2, .px-x2, .pr-x2 {
  padding-right: 0.5rem;
}

.p-x2, .py-x2, .pt-x2 {
  padding-top: 0.5rem;
}

.p-x2, .py-x2, .pb-x2 {
  padding-bottom: 0.5rem;
}

.m-x2, .mx-x2, .ml-x2 {
  margin-left: 0.5rem;
}

.m-x2, .mx-x2, .mr-x2 {
  margin-right: 0.5rem;
}

.m-x2, .my-x2, .mt-x2 {
  margin-top: 0.5rem;
}

.m-x2, .my-x2, .mb-x2 {
  margin-bottom: 0.5rem;
}

.p-x3, .px-x3, .pl-x3 {
  padding-left: 0.75rem;
}

.p-x3, .px-x3, .pr-x3 {
  padding-right: 0.75rem;
}

.p-x3, .py-x3, .pt-x3 {
  padding-top: 0.75rem;
}

.p-x3, .py-x3, .pb-x3 {
  padding-bottom: 0.75rem;
}

.m-x3, .mx-x3, .ml-x3 {
  margin-left: 0.75rem;
}

.m-x3, .mx-x3, .mr-x3 {
  margin-right: 0.75rem;
}

.m-x3, .my-x3, .mt-x3 {
  margin-top: 0.75rem;
}

.m-x3, .my-x3, .mb-x3 {
  margin-bottom: 0.75rem;
}

.p-x4, .px-x4, .pl-x4 {
  padding-left: 1rem;
}

.p-x4, .px-x4, .pr-x4 {
  padding-right: 1rem;
}

.p-x4, .py-x4, .pt-x4 {
  padding-top: 1rem;
}

.p-x4, .py-x4, .pb-x4 {
  padding-bottom: 1rem;
}

.m-x4, .mx-x4, .ml-x4 {
  margin-left: 1rem;
}

.m-x4, .mx-x4, .mr-x4 {
  margin-right: 1rem;
}

.m-x4, .my-x4, .mt-x4 {
  margin-top: 1rem;
}

.m-x4, .my-x4, .mb-x4 {
  margin-bottom: 1rem;
}

.p-x5, .px-x5, .pl-x5 {
  padding-left: 1.25rem;
}

.p-x5, .px-x5, .pr-x5 {
  padding-right: 1.25rem;
}

.p-x5, .py-x5, .pt-x5 {
  padding-top: 1.25rem;
}

.p-x5, .py-x5, .pb-x5 {
  padding-bottom: 1.25rem;
}

.m-x5, .mx-x5, .ml-x5 {
  margin-left: 1.25rem;
}

.m-x5, .mx-x5, .mr-x5 {
  margin-right: 1.25rem;
}

.m-x5, .my-x5, .mt-x5 {
  margin-top: 1.25rem;
}

.m-x5, .my-x5, .mb-x5 {
  margin-bottom: 1.25rem;
}

.p-x6, .px-x6, .pl-x6 {
  padding-left: 1.5rem;
}

.p-x6, .px-x6, .pr-x6 {
  padding-right: 1.5rem;
}

.p-x6, .py-x6, .pt-x6 {
  padding-top: 1.5rem;
}

.p-x6, .py-x6, .pb-x6 {
  padding-bottom: 1.5rem;
}

.m-x6, .mx-x6, .ml-x6 {
  margin-left: 1.5rem;
}

.m-x6, .mx-x6, .mr-x6 {
  margin-right: 1.5rem;
}

.m-x6, .my-x6, .mt-x6 {
  margin-top: 1.5rem;
}

.m-x6, .my-x6, .mb-x6 {
  margin-bottom: 1.5rem;
}

.p-x7, .px-x7, .pl-x7 {
  padding-left: 1.75rem;
}

.p-x7, .px-x7, .pr-x7 {
  padding-right: 1.75rem;
}

.p-x7, .py-x7, .pt-x7 {
  padding-top: 1.75rem;
}

.p-x7, .py-x7, .pb-x7 {
  padding-bottom: 1.75rem;
}

.m-x7, .mx-x7, .ml-x7 {
  margin-left: 1.75rem;
}

.m-x7, .mx-x7, .mr-x7 {
  margin-right: 1.75rem;
}

.m-x7, .my-x7, .mt-x7 {
  margin-top: 1.75rem;
}

.m-x7, .my-x7, .mb-x7 {
  margin-bottom: 1.75rem;
}

.p-x8, .px-x8, .pl-x8 {
  padding-left: 2rem;
}

.p-x8, .px-x8, .pr-x8 {
  padding-right: 2rem;
}

.p-x8, .py-x8, .pt-x8 {
  padding-top: 2rem;
}

.p-x8, .py-x8, .pb-x8 {
  padding-bottom: 2rem;
}

.m-x8, .mx-x8, .ml-x8 {
  margin-left: 2rem;
}

.m-x8, .mx-x8, .mr-x8 {
  margin-right: 2rem;
}

.m-x8, .my-x8, .mt-x8 {
  margin-top: 2rem;
}

.m-x8, .my-x8, .mb-x8 {
  margin-bottom: 2rem;
}

.p-x9, .px-x9, .pl-x9 {
  padding-left: 2.25rem;
}

.p-x9, .px-x9, .pr-x9 {
  padding-right: 2.25rem;
}

.p-x9, .py-x9, .pt-x9 {
  padding-top: 2.25rem;
}

.p-x9, .py-x9, .pb-x9 {
  padding-bottom: 2.25rem;
}

.m-x9, .mx-x9, .ml-x9 {
  margin-left: 2.25rem;
}

.m-x9, .mx-x9, .mr-x9 {
  margin-right: 2.25rem;
}

.m-x9, .my-x9, .mt-x9 {
  margin-top: 2.25rem;
}

.m-x9, .my-x9, .mb-x9 {
  margin-bottom: 2.25rem;
}

.p-x10, .px-x10, .pl-x10 {
  padding-left: 2.5rem;
}

.p-x10, .px-x10, .pr-x10 {
  padding-right: 2.5rem;
}

.p-x10, .py-x10, .pt-x10 {
  padding-top: 2.5rem;
}

.p-x10, .py-x10, .pb-x10 {
  padding-bottom: 2.5rem;
}

.m-x10, .mx-x10, .ml-x10 {
  margin-left: 2.5rem;
}

.m-x10, .mx-x10, .mr-x10 {
  margin-right: 2.5rem;
}

.m-x10, .my-x10, .mt-x10 {
  margin-top: 2.5rem;
}

.m-x10, .my-x10, .mb-x10 {
  margin-bottom: 2.5rem;
}

.p-x11, .px-x11, .pl-x11 {
  padding-left: 2.75rem;
}

.p-x11, .px-x11, .pr-x11 {
  padding-right: 2.75rem;
}

.p-x11, .py-x11, .pt-x11 {
  padding-top: 2.75rem;
}

.p-x11, .py-x11, .pb-x11 {
  padding-bottom: 2.75rem;
}

.m-x11, .mx-x11, .ml-x11 {
  margin-left: 2.75rem;
}

.m-x11, .mx-x11, .mr-x11 {
  margin-right: 2.75rem;
}

.m-x11, .my-x11, .mt-x11 {
  margin-top: 2.75rem;
}

.m-x11, .my-x11, .mb-x11 {
  margin-bottom: 2.75rem;
}

.p-x12, .px-x12, .pl-x12 {
  padding-left: 3rem;
}

.p-x12, .px-x12, .pr-x12 {
  padding-right: 3rem;
}

.p-x12, .py-x12, .pt-x12 {
  padding-top: 3rem;
}

.p-x12, .py-x12, .pb-x12 {
  padding-bottom: 3rem;
}

.m-x12, .mx-x12, .ml-x12 {
  margin-left: 3rem;
}

.m-x12, .mx-x12, .mr-x12 {
  margin-right: 3rem;
}

.m-x12, .my-x12, .mt-x12 {
  margin-top: 3rem;
}

.m-x12, .my-x12, .mb-x12 {
  margin-bottom: 3rem;
}

.m-auto, .mx-auto, .ml-auto {
  margin-left: auto;
}

.m-auto, .mx-auto, .mr-auto {
  margin-right: auto;
}

.m-auto, .my-auto, .mt-auto {
  margin-top: auto;
}

.m-auto, .my-auto, .mb-auto {
  margin-bottom: auto;
}

.no-p, .no-px, .no-pl, .no-c-p > *, .no-c-px > *, .no-c-pl > * {
  padding-left: 0 !important;
}

.no-p, .no-px, .no-pr, .no-c-p > *, .no-c-px > *, .no-c-pr > * {
  padding-right: 0 !important;
}

.no-p, .no-py, .no-pt, .no-c-p > *, .no-c-py > *, .no-c-pt > * {
  padding-top: 0 !important;
}

.no-p, .no-py, .no-pb, .no-c-p > *, .no-c-py > *, .no-c-pb > * {
  padding-bottom: 0 !important;
}

.no-m, .no-mx, .no-ml, .no-c-m > *, .no-c-mx > *, .no-c-ml > * {
  margin-left: 0 !important;
}

.no-m, .no-mx, .no-mr, .no-c-m > *, .no-c-mx > *, .no-c-mr > * {
  margin-right: 0 !important;
}

.no-m, .no-my, .no-mt, .no-c-m > *, .no-c-my > *, .no-c-mt > * {
  margin-top: 0 !important;
}

.no-m, .no-my, .no-mb, .no-c-m > *, .no-c-my > *, .no-c-mb > * {
  margin-bottom: 0 !important;
}