/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/**
  * 1. Add text decoration inheritance in all browsers (opinionated).
  * 2. Add vertical alignment inheritance in all browsers (opinionated).
  */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
  * 1. Use the default cursor in all browsers (opinionated).
  * 2. Change the line height in all browsers (opinionated).
  * 3. Use a 4-space tab width in all browsers (opinionated).
  * 4. Remove the grey highlight on links in iOS (opinionated).
  * 5. Prevent adjustments of font size after orientation changes in
  *    IE on Windows Phone and in iOS.
  * 6. Breaks words to prevent overflow in all browsers (opinionated).
  */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}

/* Sections
  * ========================================================================== */
/**
  * Remove the margin in all browsers (opinionated).
  */
body {
  margin: 0;
}

/**
  * Correct the font size and margin on `h1` elements within `section` and
  * `article` contexts in Chrome, Edge, Firefox, and Safari.
  */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

dl,
ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Grouping content
  * ========================================================================== */
/**
  * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
  */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
  padding: 0;
}

/**
  * Remove the margin on nested lists in Edge 18- and IE.
  */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
  padding: 0;
}

/**
  * 1. Add the correct sizing in Firefox.
  * 2. Show the overflow in Edge 18- and IE.
  */
hr {
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
  * Add the correct display in IE.
  */
main {
  display: block;
}

/**
  * Remove the list style on navigation lists in all browsers (opinionated).
  */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
  * ========================================================================== */
/**
  * Remove the gray background on active links in IE 10.
  */
a {
  background-color: transparent;
}

*:focus {
  outline: none;
}

/**
  * Add the correct text decoration in Edge 18-, IE, and Safari.
  */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
  * Add the correct font weight in Chrome, Edge, and Safari.
  */
b,
strong {
  font-weight: bolder;
}

/**
  * 1. Correct the inheritance and scaling of font size in all browsers.
  * 2. Correct the odd `em` font sizing in all browsers.
  */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
  * Add the correct font size in all browsers.
  */
small {
  font-size: 80%;
}

/* Embedded content
  * ========================================================================== */
/*
  * Change the alignment on media elements in all browsers (opinionated).
  */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

/**
  * Add the correct display in IE 9-.
  */
audio,
video {
  display: inline-block;
}

/**
  * Add the correct display in iOS 4-7.
  */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
  * Remove the border on iframes in all browsers (opinionated).
  */
iframe {
  border-style: none;
}

/**
  * Remove the border on images within links in IE 10-.
  */
img {
  border-style: none;
}

/**
  * Change the fill color to match the text color in all browsers (opinionated).
  */
svg:not([fill]) {
  fill: currentColor;
}

/**
  * Hide the overflow in IE.
  */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
  * ========================================================================== */
/**
  * Collapse border spacing in all browsers (opinionated).
  */
table {
  border-collapse: collapse;
}

/* Forms
  * ========================================================================== */
/**
  * Remove the margin on controls in Safari.
  */
button,
input,
select {
  margin: 0;
}

/**
  * 1. Show the overflow in IE.
  * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
  */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
}

/**
  * Correct the inability to style buttons in iOS and Safari.
  */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
  * 1. Change the inconsistent appearance in all browsers (opinionated).
  * 2. Correct the padding in Firefox.
  */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
}

/**
  * Show the overflow in Edge 18- and IE.
  */
input {
  overflow: visible;
}

/**
  * 1. Correct the text wrapping in Edge 18- and IE.
  * 2. Correct the color inheritance from `fieldset` elements in IE.
  */
legend {
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */
}

/**
  * 1. Add the correct display in Edge 18- and IE.
  * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
  */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
  * Remove the inheritance of text transform in Firefox.
  */
select {
  text-transform: none;
}

/**
  * 1. Remove the margin in Firefox and Safari.
  * 2. Remove the default vertical scrollbar in IE.
  * 3. Change the resize direction in all browsers (opinionated).
  */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
}

/**
  * Remove the padding in IE 10-.
  */
[type="checkbox"],
[type="radio"] {
  padding: 0;
}

/**
  * 1. Correct the odd appearance in Chrome, Edge, and Safari.
  * 2. Correct the outline style in Safari.
  */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
  * Correct the cursor style of increment and decrement buttons in Safari.
  */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
  * Correct the text style of placeholders in Chrome, Edge, and Safari.
  */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
  * Remove the inner padding in Chrome, Edge, and Safari on macOS.
  */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
  * 1. Correct the inability to style upload buttons in iOS and Safari.
  * 2. Change font properties to `inherit` in Safari.
  */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
  * Remove the inner border and padding of focus outlines in Firefox.
  */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
  * Restore the focus outline styles unset by the previous rule in Firefox.
  */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
  * Remove the additional :invalid styles in Firefox.
  */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
  * ========================================================================== */
/*
  * Add the correct display in Edge 18- and IE.
  */
details {
  display: block;
}

/*
  * Add the correct styles in Edge 18-, IE, and Safari.
  */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
  * Add the correct display in all browsers.
  */
summary {
  display: list-item;
}

/* Scripting
  * ========================================================================== */
/**
  * Add the correct display in IE 9-.
  */
canvas {
  display: inline-block;
}

/**
  * Add the correct display in IE.
  */
template {
  display: none;
}

/* User interaction
  * ========================================================================== */
/*
  * 1. Remove the tapping delay in IE 10.
  * 2. Remove the tapping delay on clickable elements
	   in all browsers (opinionated).
  */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
  /* 2 */
}

/**
  * Add the correct display in IE 10-.
  */
[hidden] {
  display: none;
}

/* Accessibility
  * ========================================================================== */
/**
  * Change the cursor on busy elements in all browsers (opinionated).
  */
[aria-busy="true"] {
  cursor: progress;
}

/*
  * Change the cursor on control elements in all browsers (opinionated).
  */
[aria-controls] {
  cursor: pointer;
}

/*
  * Change the cursor on disabled, not-editable, or otherwise
  * inoperable elements in all browsers (opinionated).
  */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}

/*
  * Change the display on visually hidden accessible elements
  * in all browsers (opinionated).
  */
[aria-hidden="false"][hidden] {
  display: initial;
}

[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

article, aside, figure, figcaption, footer, header, nav, section, picture {
  display: block;
  margin: 0;
}

html {
  font-size: 62.5%;
  font-family: AudiTypeExtended,sans-serif;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-size: 1.6rem;
  color: #000;
}

@media (max-width: 768.98px) {
  body {
    font-size: 1.3rem;
  }
}

body a {
  text-decoration: none;
  -webkit-transition: all ease-in-out .3s;
  transition: all ease-in-out .3s;
}

body a:hover {
  opacity: 0.6;
}

body *, body ::after, body ::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body p {
  line-height: 1.5;
}

body button {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
}

body img {
  image-rendering: -webkit-optimize-contrast;
  width: 100%;
  height: auto;
}

body .inner {
  margin-right: auto;
  margin-left: auto;
  width: 86.6%;
}

@media (min-width: 769px) {
  body .inner {
    max-width: 1000px;
  }
}

body .relative {
  position: relative;
}

body .absolute {
  position: absolute;
}

body .inline-block {
  display: inline-block;
  vertical-align: top;
}

body .sp-none {
  display: none;
}

@media (min-width: 769px) {
  body .sp-none {
    display: block;
  }
}

body .pc-none {
  display: block;
}

@media (min-width: 769px) {
  body .pc-none {
    display: none;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.inline-flex {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
}

.flex.wrap, .inline-flex.wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex.flex-end, .inline-flex.flex-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.flex.flex-center, .inline-flex.flex-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.flex.space-around, .inline-flex.space-around {
  -ms-flex-pack: distribute;
      justify-content: space-around;
}

.flex.space-between, .inline-flex.space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.flex.align-start, .inline-flex.align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.flex.align-end, .inline-flex.align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.flex.align-center, .inline-flex.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.flex.align-baseline, .inline-flex.align-baseline {
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

@media (min-width: 769px) {
  .flex.wrap-p, .inline-flex.wrap-p {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex.flex-end-p, .inline-flex.flex-end-p {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .flex.flex-center-p, .inline-flex.flex-center-p {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .flex.space-around-p, .inline-flex.space-around-p {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .flex.space-between-p, .inline-flex.space-between-p {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .flex.align-start-p, .inline-flex.align-start-p {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .flex.align-end-p, .inline-flex.align-end-p {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .flex.align-center-p, .inline-flex.align-center-p {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flex.align-center-p, .inline-flex.align-center-p {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
}

ul.flex, ul.inline-flex, dl.flex, dl.inline-flex {
  list-style: none;
  padding: 0;
}

ul.flex > li, ul.flex > dt, ul.flex > dd, ul.inline-flex > li, ul.inline-flex > dt, ul.inline-flex > dd, dl.flex > li, dl.flex > dt, dl.flex > dd, dl.inline-flex > li, dl.inline-flex > dt, dl.inline-flex > dd {
  margin: 0;
}

body .w-100 {
  width: 100%;
}

body .col-2 {
  width: calc(100% / 2);
}

body .col-3 {
  width: calc(100% / 3);
}

body .col-4 {
  width: calc(100% / 4);
}

body .col-5 {
  width: calc(100% / 5);
}

body .col-2-flex {
  width: calc((100% - 2.5%) / 2);
}

body .col-3-flex {
  width: calc((100% - 5%) / 3);
}

body .col-4-flex {
  width: calc((100% - 7.5%) / 4);
}

body .col-5-flex {
  width: calc((100% - 10%) / 5);
}

@media (max-width: 768.98px) {
  body .w-100-s {
    width: 100%;
  }
  body .col-2-s {
    width: calc(100% / 2);
  }
  body .col-3-s {
    width: calc(100% / 3);
  }
  body .col-4-s {
    width: calc(100% / 4);
  }
  body .col-5-s {
    width: calc(100% / 5);
  }
  body .col-2-flex-s {
    width: calc((100% - 2.5%) / 2);
  }
  body .col-3-flex-s {
    width: calc((100% - 5%) / 3);
  }
  body .col-4-flex-s {
    width: calc((100% - 7.5%) / 4);
  }
  body .col-5-flex-s {
    width: calc((100% - 10%) / 5);
  }
}

@media (min-width: 769px) {
  body .w-100-p {
    width: 100%;
  }
  body .col-2-p {
    width: calc(100% / 2);
  }
  body .col-3-p {
    width: calc(100% / 3);
  }
  body .col-4-p {
    width: calc(100% / 4);
  }
  body .col-5-p {
    width: calc(100% / 5);
  }
  body .col-2-flex-p {
    width: calc((100% - 2.5%) / 2);
  }
  body .col-3-flex-p {
    width: calc((100% - 5%) / 3);
  }
  body .col-4-flex-p {
    width: calc((100% - 7.5%) / 4);
  }
  body .col-5-flex-p {
    width: calc((100% - 10%) / 5);
  }
}

@media (max-width: 768.98px) {
  .mt_x0 {
    margin-top: 0px !important;
  }
  .mb_x0 {
    margin-bottom: 0px !important;
  }
  .ml_x0 {
    margin-left: 0px !important;
  }
  .mr_x0 {
    margin-right: 0px !important;
  }
  .pt_x0 {
    margin-top: 0px !important;
  }
  .pb_x0 {
    margin-bottom: 0px !important;
  }
  .pl_x0 {
    margin-left: 0px !important;
  }
  .pr_x0 {
    margin-right: 0px !important;
  }
}

@media (min-width: 769px) {
  .pc_mt_x0 {
    margin-top: 0px !important;
  }
  .pc_mb_x0 {
    margin-bottom: 0px !important;
  }
  .pc_ml_x0 {
    margin-left: 0px !important;
  }
  .pc_mr_x0 {
    margin-right: 0px !important;
  }
  .pc_pt_x0 {
    margin-top: 0px !important;
  }
  .pc_pb_x0 {
    margin-bottom: 0px !important;
  }
  .pc_pl_x0 {
    margin-left: 0px !important;
  }
  .pc_pr_x0 {
    margin-right: 0px !important;
  }
}

@media (max-width: 768.98px) {
  .mt_x1 {
    margin-top: 16px !important;
  }
  .mb_x1 {
    margin-bottom: 16px !important;
  }
  .ml_x1 {
    margin-left: 16px !important;
  }
  .mr_x1 {
    margin-right: 16px !important;
  }
  .pt_x1 {
    margin-top: 16px !important;
  }
  .pb_x1 {
    margin-bottom: 16px !important;
  }
  .pl_x1 {
    margin-left: 16px !important;
  }
  .pr_x1 {
    margin-right: 16px !important;
  }
  .mt_x2 {
    margin-top: 32px !important;
  }
  .mb_x2 {
    margin-bottom: 32px !important;
  }
  .ml_x2 {
    margin-left: 32px !important;
  }
  .mr_x2 {
    margin-right: 32px !important;
  }
  .pt_x2 {
    margin-top: 32px !important;
  }
  .pb_x2 {
    margin-bottom: 32px !important;
  }
  .pl_x2 {
    margin-left: 32px !important;
  }
  .pr_x2 {
    margin-right: 32px !important;
  }
  .mt_x3 {
    margin-top: 48px !important;
  }
  .mb_x3 {
    margin-bottom: 48px !important;
  }
  .ml_x3 {
    margin-left: 48px !important;
  }
  .mr_x3 {
    margin-right: 48px !important;
  }
  .pt_x3 {
    margin-top: 48px !important;
  }
  .pb_x3 {
    margin-bottom: 48px !important;
  }
  .pl_x3 {
    margin-left: 48px !important;
  }
  .pr_x3 {
    margin-right: 48px !important;
  }
  .mt_x4 {
    margin-top: 64px !important;
  }
  .mb_x4 {
    margin-bottom: 64px !important;
  }
  .ml_x4 {
    margin-left: 64px !important;
  }
  .mr_x4 {
    margin-right: 64px !important;
  }
  .pt_x4 {
    margin-top: 64px !important;
  }
  .pb_x4 {
    margin-bottom: 64px !important;
  }
  .pl_x4 {
    margin-left: 64px !important;
  }
  .pr_x4 {
    margin-right: 64px !important;
  }
  .mt_x5 {
    margin-top: 80px !important;
  }
  .mb_x5 {
    margin-bottom: 80px !important;
  }
  .ml_x5 {
    margin-left: 80px !important;
  }
  .mr_x5 {
    margin-right: 80px !important;
  }
  .pt_x5 {
    margin-top: 80px !important;
  }
  .pb_x5 {
    margin-bottom: 80px !important;
  }
  .pl_x5 {
    margin-left: 80px !important;
  }
  .pr_x5 {
    margin-right: 80px !important;
  }
}

@media (min-width: 769px) {
  .pc_mt_x1 {
    margin-top: 16px !important;
  }
  .pc_mb_x1 {
    margin-bottom: 16px !important;
  }
  .pc_ml_x1 {
    margin-left: 16px !important;
  }
  .pc_mr_x1 {
    margin-right: 16px !important;
  }
  .pc_pt_x1 {
    margin-top: 16px !important;
  }
  .pc_pb_x1 {
    margin-bottom: 16px !important;
  }
  .pc_pl_x1 {
    margin-left: 16px !important;
  }
  .pc_pr_x1 {
    margin-right: 16px !important;
  }
  .pc_mt_x2 {
    margin-top: 32px !important;
  }
  .pc_mb_x2 {
    margin-bottom: 32px !important;
  }
  .pc_ml_x2 {
    margin-left: 32px !important;
  }
  .pc_mr_x2 {
    margin-right: 32px !important;
  }
  .pc_pt_x2 {
    margin-top: 32px !important;
  }
  .pc_pb_x2 {
    margin-bottom: 32px !important;
  }
  .pc_pl_x2 {
    margin-left: 32px !important;
  }
  .pc_pr_x2 {
    margin-right: 32px !important;
  }
  .pc_mt_x3 {
    margin-top: 48px !important;
  }
  .pc_mb_x3 {
    margin-bottom: 48px !important;
  }
  .pc_ml_x3 {
    margin-left: 48px !important;
  }
  .pc_mr_x3 {
    margin-right: 48px !important;
  }
  .pc_pt_x3 {
    margin-top: 48px !important;
  }
  .pc_pb_x3 {
    margin-bottom: 48px !important;
  }
  .pc_pl_x3 {
    margin-left: 48px !important;
  }
  .pc_pr_x3 {
    margin-right: 48px !important;
  }
  .pc_mt_x4 {
    margin-top: 64px !important;
  }
  .pc_mb_x4 {
    margin-bottom: 64px !important;
  }
  .pc_ml_x4 {
    margin-left: 64px !important;
  }
  .pc_mr_x4 {
    margin-right: 64px !important;
  }
  .pc_pt_x4 {
    margin-top: 64px !important;
  }
  .pc_pb_x4 {
    margin-bottom: 64px !important;
  }
  .pc_pl_x4 {
    margin-left: 64px !important;
  }
  .pc_pr_x4 {
    margin-right: 64px !important;
  }
  .pc_mt_x5 {
    margin-top: 80px !important;
  }
  .pc_mb_x5 {
    margin-bottom: 80px !important;
  }
  .pc_ml_x5 {
    margin-left: 80px !important;
  }
  .pc_mr_x5 {
    margin-right: 80px !important;
  }
  .pc_pt_x5 {
    margin-top: 80px !important;
  }
  .pc_pb_x5 {
    margin-bottom: 80px !important;
  }
  .pc_pl_x5 {
    margin-left: 80px !important;
  }
  .pc_pr_x5 {
    margin-right: 80px !important;
  }
}

body .m-0 {
  margin: 0 !important;
}

body .m-s {
  margin: 0.5rem !important;
}

body .m-m {
  margin: 1rem !important;
}

body .m-l {
  margin: 2rem !important;
}

body .m-xl {
  margin: 3rem !important;
}

body .mt-s {
  margin-top: 0.5rem !important;
}

body .mt-m {
  margin-top: 1rem !important;
}

body .mt-l {
  margin-top: 2rem !important;
}

body .mt-xl {
  margin-top: 3rem !important;
}

body .mb-s {
  margin-bottom: 0.5rem !important;
}

body .mb-m {
  margin-bottom: 1rem !important;
}

body .mb-l {
  margin-bottom: 2rem !important;
}

body .mb-xl {
  margin-bottom: 3rem !important;
}

body .ml-s {
  margin-left: 0.5rem !important;
}

body .ml-m {
  margin-left: 1rem !important;
}

body .ml-l {
  margin-left: 2rem !important;
}

body .ml-xl {
  margin-left: 3rem !important;
}

body .mr-s {
  margin-right: 0.5rem !important;
}

body .mr-m {
  margin-right: 1rem !important;
}

body .mr-l {
  margin-right: 2rem !important;
}

body .mr-xl {
  margin-right: 3rem !important;
}

body .mx-s {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

body .mx-m {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

body .mx-l {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

body .mx-xl {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

body .my-s {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

body .my-m {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

body .my-l {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

body .my-xl {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

body .p-0 {
  padding: 0 !important;
}

body .p-s {
  padding: 0.5rem !important;
}

body .p-m {
  padding: 1rem !important;
}

body .p-l {
  padding: 2rem !important;
}

body .p-xl {
  padding: 3rem !important;
}

body .pt-s {
  padding-top: 0.5rem !important;
}

body .pt-m {
  padding-top: 1rem !important;
}

body .pt-l {
  padding-top: 2rem !important;
}

body .pt-xl {
  padding-top: 3rem !important;
}

body .pb-s {
  padding-bottom: 0.5rem !important;
}

body .pb-m {
  padding-bottom: 1rem !important;
}

body .pb-l {
  padding-bottom: 2rem !important;
}

body .pb-xl {
  padding-bottom: 3rem !important;
}

body .pl-s {
  padding-left: 0.5rem !important;
}

body .pl-m {
  padding-left: 1rem !important;
}

body .pl-l {
  padding-left: 2rem !important;
}

body .pl-xl {
  padding-left: 3rem !important;
}

body .pr-s {
  padding-right: 0.5rem !important;
}

body .pr-m {
  padding-right: 1rem !important;
}

body .pr-l {
  padding-right: 2rem !important;
}

body .pr-xl {
  padding-right: 3rem !important;
}

body .px-s {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

body .px-m {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

body .px-l {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

body .px-xl {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

body .py-s {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

body .py-m {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

body .py-l {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

body .py-xl {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

@media (min-width: 769px) {
  body .m-0 {
    margin: 0 !important;
  }
  body .m-s {
    margin: 0.5rem !important;
  }
  body .m-m {
    margin: 1rem !important;
  }
  body .m-l {
    margin: 2rem !important;
  }
  body .m-xl {
    margin: 3rem !important;
  }
  body .mt-s {
    margin-top: 0.5rem !important;
  }
  body .mt-m {
    margin-top: 1rem !important;
  }
  body .mt-l {
    margin-top: 2rem !important;
  }
  body .mt-xl {
    margin-top: 3rem !important;
  }
  body .mb-s {
    margin-bottom: 0.5rem !important;
  }
  body .mb-m {
    margin-bottom: 1rem !important;
  }
  body .mb-l {
    margin-bottom: 2rem !important;
  }
  body .mb-xl {
    margin-bottom: 3rem !important;
  }
  body .ml-s {
    margin-left: 0.5rem !important;
  }
  body .ml-m {
    margin-left: 1rem !important;
  }
  body .ml-l {
    margin-left: 2rem !important;
  }
  body .ml-xl {
    margin-left: 3rem !important;
  }
  body .mr-s {
    margin-right: 0.5rem !important;
  }
  body .mr-m {
    margin-right: 1rem !important;
  }
  body .mr-l {
    margin-right: 2rem !important;
  }
  body .mr-xl {
    margin-right: 3rem !important;
  }
  body .mx-s {
    margin-left: 0.5rem !important;
    margin-right: 0.5rem !important;
  }
  body .mx-m {
    margin-left: 1rem !important;
    margin-right: 1rem !important;
  }
  body .mx-l {
    margin-left: 2rem !important;
    margin-right: 2rem !important;
  }
  body .mx-xl {
    margin-left: 3rem !important;
    margin-right: 3rem !important;
  }
  body .my-s {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  body .my-m {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }
  body .my-l {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }
  body .my-xl {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }
  body .p-0 {
    padding: 0 !important;
  }
  body .p-s {
    padding: 0.5rem !important;
  }
  body .p-m {
    padding: 1rem !important;
  }
  body .p-l {
    padding: 2rem !important;
  }
  body .p-xl {
    padding: 3rem !important;
  }
  body .pt-s {
    padding-top: 0.5rem !important;
  }
  body .pt-m {
    padding-top: 1rem !important;
  }
  body .pt-l {
    padding-top: 2rem !important;
  }
  body .pt-xl {
    padding-top: 3rem !important;
  }
  body .pb-s {
    padding-bottom: 0.5rem !important;
  }
  body .pb-m {
    padding-bottom: 1rem !important;
  }
  body .pb-l {
    padding-bottom: 2rem !important;
  }
  body .pb-xl {
    padding-bottom: 3rem !important;
  }
  body .pl-s {
    padding-left: 0.5rem !important;
  }
  body .pl-m {
    padding-left: 1rem !important;
  }
  body .pl-l {
    padding-left: 2rem !important;
  }
  body .pl-xl {
    padding-left: 3rem !important;
  }
  body .pr-s {
    padding-right: 0.5rem !important;
  }
  body .pr-m {
    padding-right: 1rem !important;
  }
  body .pr-l {
    padding-right: 2rem !important;
  }
  body .pr-xl {
    padding-right: 3rem !important;
  }
  body .px-s {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }
  body .px-m {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
  body .px-l {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
  body .px-xl {
    padding-left: 3rem !important;
    padding-right: 3rem !important;
  }
  body .py-s {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
  body .py-m {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }
  body .py-l {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }
  body .py-xl {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
}

body .t-center {
  text-align: center !important;
}

body .t-left {
  text-align: left !important;
}

body .t-right {
  text-align: right !important;
}

@media (min-width: 769px) {
  body .t-center-p {
    text-align: center !important;
  }
  body .t-left-p {
    text-align: left !important;
  }
  body .t-right-p {
    text-align: right !important;
  }
}

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

body .font-weight-normal {
  font-weight: normal;
}

body .underline {
  text-decoration: underline;
}

body .underline-none {
  text-decoration: none;
}

body .t-xs {
  font-size: 1rem;
}

body .t-s {
  font-size: 1.6rem;
}

body .t-m {
  font-size: 2rem;
}

body .t-l {
  font-size: 2.5rem;
}

body .t-xl {
  font-size: 3rem;
}

@media (min-width: 769px) {
  body .t-xs {
    font-size: 1.6rem;
  }
  body .t-s {
    font-size: 2rem;
  }
  body .t-m {
    font-size: 2.5rem;
  }
  body .t-l {
    font-size: 3rem;
  }
  body .t-xl {
    font-size: 4rem;
  }
}

body .c-bland {
  color: color(bland);
}

body .c-accent {
  color: color(accent);
}
