/*** Bootstrap Layout Common ***/
@charset "UTF-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
/* Font Face */
@font-face {
  font-family: 'cinzel-regular';
  src: url('../../fonts/cinzel-regular.otf') format('opentype');
}
@font-face {
  font-family: 'helvetica-light';
  src: url('../../fonts/helvetica-light.woff') format('woff');
}
@font-face {
  font-family: 'hiragino-sans-gb-w6';
  src: url('../../fonts/hiragino-sans-gb-w6.woff2') format('woff2'), /* Super Modern Browsers */
       url('../../fonts/hiragino-sans-gb-w6.woff') format('woff'), /* Pretty Modern Browsers */
       url('../../fonts/hiragino-sans-gb-w6.ttf') format('truetype'); /* Safari, Android, iOS */
}

/* ! フォントに関する指定 —————————————————————————————— */
@font-face {
  font-family: 'noto sans japanese';
  font-style: normal;
  font-weight: 100;
  src: url("../../fonts/NotoSansJP-Thin.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: 'noto sans japanese';
  font-style: normal;
  font-weight: 300;
  src: url("../../fonts/NotoSansJP-Light.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: 'noto sans japanese';
  font-style: normal;
  font-weight: 350;
  src: url("../../fonts/NotoSansJP-DemiLight.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: 'noto sans japanese';
  font-style: normal;
  font-weight: 400;
  src: url("../../fonts/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: 'noto sans japanese';
  font-style: normal;
  font-weight: 500;
  src: url("../../fonts/NotoSansJP-Medium.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: 'noto sans japanese';
  font-style: normal;
  font-weight: 700;
  src: url("../../fonts/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}
@font-face {
  font-family: 'noto sans japanese';
  font-style: normal;
  font-weight: 900;
  src: url("../../fonts/NotoSansJP-Black.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  font-weight: 300;
  src: url("../../fonts/Roboto-Light.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  font-weight: 400;
  src: url("../../fonts/Roboto-Regular.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  font-weight: 500;
  src: url("../../fonts/Roboto-Medium.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  font-weight: 600;
  src: url("../../fonts/Roboto-Bold.ttf") format("truetype");
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  font-weight: 700;
  src: url("../../fonts/Roboto-Black.ttf") format("truetype");
  font-display: swap;
}
/* Common CSS */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
html {
  font-family: '游ゴシック体', YuGothic, '游ゴシック', 'Yu Gothic', "Helvetica Neue", Arial, "Noto Sans";
  line-height: 1.15;
  font-size: 13px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -ms-overflow-style: scrollbar;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
  overflow-x: hidden;
}

/* Reset style all browser */
[tabindex="-1"]:focus {
  outline: 0;
}

a {
  color: #000;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  text-decoration: underline;
}

a:not([href]):not([tabindex]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):hover, a:not([href]):not([tabindex]):focus {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([tabindex]):focus {
  outline: 0;
}

b, strong {
  font-weight: bolder;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: none;
  border-bottom: 1px solid #F2EFF2;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
}

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

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

ol, ul, dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

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

/* Grid Layout */
.container {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 1120px;
}
@media screen and (max-width: 576px){
  .container {
    padding-right: 14px;
    padding-left: 14px;
  }
}

/*
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
*/

/*
@media (min-width: 1200px) {
  .container {
    max-width: 1280px;
  }
}
*/

.container_fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.row.grow_0 > .col{
  flex-grow: 0;
}
.row[class*="gap_"][class*="20"]{
  margin: -10px;
}
.row[class*="gap_"][class*="20"] > .col{
  padding: 10px;
}
.row[class*="split_"][class*="4"] > .col{
  flex: 0 0 25%;
}

.no_gutters {
  margin-right: 0;
  margin-left: 0;
}

.no_gutters > .col,
.no_gutters > [class*="col_"] {
  padding-right: 0;
  padding-left: 0;
}
.no_gutters > [class*="col_"] > .amount_select {
  padding-left: 15px;
}
@media screen and (max-width: 480px) {
  .no_gutters > [class*="col_"] > .amount_select {
    padding-left: 10px;
  }
}

.col_1, .col_2, .col_3, .col_4, .col_5, .col_6, .col_7, .col_8, .col_9, .col_10, .col_11, .col_12, .col,
.col_auto, .col_sm_1, .col_sm_2, .col_sm_3, .col_sm_4, .col_sm_5, .col_sm_6, .col_sm_7, .col_sm_8, .col_sm_9, .col_sm_10, .col_sm_11, .col_sm_12, .col_sm,
.col_sm_auto, .col_md_1, .col_md_2, .col_md_3, .col_md_4, .col_md_5, .col_md_6, .col_md_7, .col_md_8, .col_md_9, .col_md_10, .col_md_11, .col_md_12, .col_md,
.col_md_auto, .col_lg_1, .col_lg_2, .col_lg_3, .col_lg_4, .col_lg_5, .col_lg_6, .col_lg_7, .col_lg_8, .col_lg_9, .col_lg_10, .col_lg_11, .col_lg_12, .col_lg,
.col_lg_auto, .col_xl_1, .col_xl_2, .col_xl_3, .col_xl_4, .col_xl_5, .col_xl_6, .col_xl_7, .col_xl_8, .col_xl_9, .col_xl_10, .col_xl_11, .col_xl_12, .col_xl,
.col_xl_auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media screen and (max-width: 768px){
  [class*="mgn_none_"][class*="768"]{
    margin: 0;
  }
}
@media screen and (max-width: 480px){
  .row {
    margin-right: -10px;
    margin-left: -10px;
  }
  .row.no_gutters {
    margin-right: 0px;
    margin-left: 0px;
  }
  [class*="mgn_none_"][class*="480"]{
    margin: 0;
  }
  .col_1, .col_2, .col_3, .col_4, .col_5, .col_6, .col_7, .col_8, .col_9, .col_10, .col_11, .col_12, .col,
  .col_auto, .col_sm_1, .col_sm_2, .col_sm_3, .col_sm_4, .col_sm_5, .col_sm_6, .col_sm_7, .col_sm_8, .col_sm_9, .col_sm_10, .col_sm_11, .col_sm_12, .col_sm,
  .col_sm_auto, .col_md_1, .col_md_2, .col_md_3, .col_md_4, .col_md_5, .col_md_6, .col_md_7, .col_md_8, .col_md_9, .col_md_10, .col_md_11, .col_md_12, .col_md,
  .col_md_auto, .col_lg_1, .col_lg_2, .col_lg_3, .col_lg_4, .col_lg_5, .col_lg_6, .col_lg_7, .col_lg_8, .col_lg_9, .col_lg_10, .col_lg_11, .col_lg_12, .col_lg,
  .col_lg_auto, .col_xl_1, .col_xl_2, .col_xl_3, .col_xl_4, .col_xl_5, .col_xl_6, .col_xl_7, .col_xl_8, .col_xl_9, .col_xl_10, .col_xl_11, .col_xl_12, .col_xl,
  .col_xl_auto {
    padding-right: 10px;
    padding-left: 10px;
  }
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.col_auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col_1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.33333%;
          flex: 0 0 8.33333%;
  max-width: 8.33333%;
}

.col_2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.66667%;
          flex: 0 0 16.66667%;
  max-width: 16.66667%;
}

.col_3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col_4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333%;
          flex: 0 0 33.33333%;
  max-width: 33.33333%;
}

.col_5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66667%;
          flex: 0 0 41.66667%;
  max-width: 41.66667%;
}

.col_6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col_7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.33333%;
          flex: 0 0 58.33333%;
  max-width: 58.33333%;
}

.col_8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66667%;
          flex: 0 0 66.66667%;
  max-width: 66.66667%;
}

.col_9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col_10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.33333%;
          flex: 0 0 83.33333%;
  max-width: 83.33333%;
}

.col_11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.66667%;
          flex: 0 0 91.66667%;
  max-width: 91.66667%;
}

.col_12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.order_first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.order_last {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.order_0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order_1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order_2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order_3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order_4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order_5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order_6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order_7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order_8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order_9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order_10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order_11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order_12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.offset_1 {
  margin-left: 8.33333%;
}

.offset_2 {
  margin-left: 16.66667%;
}

.offset_3 {
  margin-left: 25%;
}

.offset_4 {
  margin-left: 33.33333%;
}

.offset_5 {
  margin-left: 41.66667%;
}

.offset_6 {
  margin-left: 50%;
}

.offset_7 {
  margin-left: 58.33333%;
}

.offset_8 {
  margin-left: 66.66667%;
}

.offset_9 {
  margin-left: 75%;
}

.offset_10 {
  margin-left: 83.33333%;
}

.offset_11 {
  margin-left: 91.66667%;
}

@media (min-width: 576px) {
  .col_sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col_sm_auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col_sm_1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col_sm_2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col_sm_3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col_sm_4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col_sm_5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col_sm_6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col_sm_7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col_sm_8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col_sm_9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col_sm_10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col_sm_11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col_sm_12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order_sm_first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order_sm_last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order_sm_0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order_sm_1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order_sm_2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order_sm_3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order_sm_4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order_sm_5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order_sm_6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order_sm_7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order_sm_8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order_sm_9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order_sm_10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order_sm_11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order_sm_12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset_sm_0 {
    margin-left: 0;
  }
  .offset_sm_1 {
    margin-left: 8.33333%;
  }
  .offset_sm_2 {
    margin-left: 16.66667%;
  }
  .offset_sm_3 {
    margin-left: 25%;
  }
  .offset_sm_4 {
    margin-left: 33.33333%;
  }
  .offset_sm_5 {
    margin-left: 41.66667%;
  }
  .offset_sm_6 {
    margin-left: 50%;
  }
  .offset_sm_7 {
    margin-left: 58.33333%;
  }
  .offset_sm_8 {
    margin-left: 66.66667%;
  }
  .offset_sm_9 {
    margin-left: 75%;
  }
  .offset_sm_10 {
    margin-left: 83.33333%;
  }
  .offset_sm_11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 768px) {
  .col_md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col_md_auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col_md_1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col_md_2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col_md_3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col_md_4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col_md_5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col_md_6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col_md_7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col_md_8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col_md_9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col_md_10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col_md_11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col_md_12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order_md_first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order_md_last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order_md_0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order_md_1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order_md_2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order_md_3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order_md_4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order_md_5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order_md_6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order_md_7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order_md_8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order_md_9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order_md_10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order_md_11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order_md_12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset_md_0 {
    margin-left: 0;
  }
  .offset_md_1 {
    margin-left: 8.33333%;
  }
  .offset_md_2 {
    margin-left: 16.66667%;
  }
  .offset_md_3 {
    margin-left: 25%;
  }
  .offset_md_4 {
    margin-left: 33.33333%;
  }
  .offset_md_5 {
    margin-left: 41.66667%;
  }
  .offset_md_6 {
    margin-left: 50%;
  }
  .offset_md_7 {
    margin-left: 58.33333%;
  }
  .offset_md_8 {
    margin-left: 66.66667%;
  }
  .offset_md_9 {
    margin-left: 75%;
  }
  .offset_md_10 {
    margin-left: 83.33333%;
  }
  .offset_md_11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 992px) {
  .col_lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col_lg_auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col_lg_1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col_lg_2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col_lg_3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col_lg_4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col_lg_5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col_lg_6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col_lg_7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col_lg_8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col_lg_9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col_lg_10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col_lg_11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col_lg_12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order_lg_first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order_lg_last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order_lg_0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order_lg_1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order_lg_2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order_lg_3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order_lg_4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order_lg_5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order_lg_6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order_lg_7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order_lg_8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order_lg_9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order_lg_10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order_lg_11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order_lg_12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset_lg_0 {
    margin-left: 0;
  }
  .offset_lg_1 {
    margin-left: 8.33333%;
  }
  .offset_lg_2 {
    margin-left: 16.66667%;
  }
  .offset_lg_3 {
    margin-left: 25%;
  }
  .offset_lg_4 {
    margin-left: 33.33333%;
  }
  .offset_lg_5 {
    margin-left: 41.66667%;
  }
  .offset_lg_6 {
    margin-left: 50%;
  }
  .offset_lg_7 {
    margin-left: 58.33333%;
  }
  .offset_lg_8 {
    margin-left: 66.66667%;
  }
  .offset_lg_9 {
    margin-left: 75%;
  }
  .offset_lg_10 {
    margin-left: 83.33333%;
  }
  .offset_lg_11 {
    margin-left: 91.66667%;
  }
}

@media (min-width: 1200px) {
  .col_xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .col_xl_auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col_xl_1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333%;
            flex: 0 0 8.33333%;
    max-width: 8.33333%;
  }
  .col_xl_2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66667%;
            flex: 0 0 16.66667%;
    max-width: 16.66667%;
  }
  .col_xl_3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col_xl_4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333%;
            flex: 0 0 33.33333%;
    max-width: 33.33333%;
  }
  .col_xl_5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66667%;
            flex: 0 0 41.66667%;
    max-width: 41.66667%;
  }
  .col_xl_6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col_xl_7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333%;
            flex: 0 0 58.33333%;
    max-width: 58.33333%;
  }
  .col_xl_8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66667%;
            flex: 0 0 66.66667%;
    max-width: 66.66667%;
  }
  .col_xl_9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col_xl_10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333%;
            flex: 0 0 83.33333%;
    max-width: 83.33333%;
  }
  .col_xl_11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66667%;
            flex: 0 0 91.66667%;
    max-width: 91.66667%;
  }
  .col_xl_12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order_xl_first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order_xl_last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order_xl_0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order_xl_1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order_xl_2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order_xl_3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order_xl_4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order_xl_5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order_xl_6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order_xl_7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order_xl_8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order_xl_9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order_xl_10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order_xl_11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order_xl_12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset_xl_0 {
    margin-left: 0;
  }
  .offset_xl_1 {
    margin-left: 8.33333%;
  }
  .offset_xl_2 {
    margin-left: 16.66667%;
  }
  .offset_xl_3 {
    margin-left: 25%;
  }
  .offset_xl_4 {
    margin-left: 33.33333%;
  }
  .offset_xl_5 {
    margin-left: 41.66667%;
  }
  .offset_xl_6 {
    margin-left: 50%;
  }
  .offset_xl_7 {
    margin-left: 58.33333%;
  }
  .offset_xl_8 {
    margin-left: 66.66667%;
  }
  .offset_xl_9 {
    margin-left: 75%;
  }
  .offset_xl_10 {
    margin-left: 83.33333%;
  }
  .offset_xl_11 {
    margin-left: 91.66667%;
  }
}

.d_none.d_none {
  display: none;
}

.d_inline {
  display: inline;
}

.d_inline_block {
  display: inline-block;
}

.d_block {
  display: block;
}

.d_table {
  display: table;
}

.d_table_row {
  display: table_row;
}

.d_table_cell {
  display: table_cell;
}

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

.d_inline_flex {
  display: inline_flex;
}

@media (min-width: 576px) {
  .d_sm_none {
    display: none;
  }
  .d_sm_inline {
    display: inline;
  }
  .d_sm_inline_block {
    display: inline-block;
  }
  .d_sm_block.d_sm_block {
    display: block ;
  }
  .d_sm_table {
    display: table;
  }
  .d_sm_table_row {
    display: table_row;
  }
  .d_sm_table_cell {
    display: table_cell;
  }
  .d_sm_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d_sm_inline_flex {
    display: inline_flex;
  }
}

@media (min-width: 768px) {
  .d_md_none {
    display: none;
  }
  .d_md_inline {
    display: inline;
  }
  .d_md_inline_block {
    display: inline-block;
  }
  .d_md_block.d_md_block {
    display: block;
  }
  .d_md_table {
    display: table;
  }
  .d_md_table_row {
    display: table_row;
  }
  .d_md_table_cell {
    display: table_cell;
  }
  .d_md_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d_md_flex-imp {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d_md_inline_flex {
    display: inline_flex;
  }
}

@media (min-width: 992px) {
  .d_lg_none {
    display: none;
  }
  .d_lg_inline {
    display: inline;
  }
  .d_lg_inline_block {
    display: inline-block;
  }
  .d_lg_block.d_lg_block {
    display: block;
  }
  .d_lg_table {
    display: table;
  }
  .d_lg_table_row {
    display: table_row;
  }
  .d_lg_table_cell {
    display: table_cell;
  }
  .d_lg_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d_lg_inline_flex {
    display: inline_flex;
  }
}

@media (min-width: 1200px) {
  .d_xl_none {
    display: none;
  }
  .d_xl_inline {
    display: inline;
  }
  .d_xl_inline_block {
    display: inline-block;
  }
  .d_xl_block.d_xl_block {
    display: block;
  }
  .d_xl_table {
    display: table;
  }
  .d_xl_table_row {
    display: table_row;
  }
  .d_xl_table_cell {
    display: table_cell;
  }
  .d_xl_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d_xl_inline_flex {
    display: inline_flex;
  }
}

@media print {
  .d_print_none {
    display: none;
  }
  .d_print_inline {
    display: inline;
  }
  .d_print_inline_block {
    display: inline-block;
  }
  .d_print_block {
    display: block;
  }
  .d_print_table {
    display: table;
  }
  .d_print_table_row {
    display: table_row;
  }
  .d_print_table_cell {
    display: table_cell;
  }
  .d_print_flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .d_print_inline_flex {
    display: inline_flex;
  }
}

.flex_row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.flex_column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex_row_reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.flex_column_reverse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.flex_wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.flex_nowrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.flex_wrap_reverse {
  -ms-flex-wrap: wrap-reverse;
      flex-wrap: wrap-reverse;
}

.flex_fill {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.flex_grow_0 {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

.flex_grow_1 {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.flex_shrink_0 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.flex_shrink_1 {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.justify_content_start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

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

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

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

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

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

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

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

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

.align_items_stretch {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.align_content_start {
  -ms-flex-line-pack: start;
      align-content: flex-start;
}

.align_content_end {
  -ms-flex-line-pack: end;
      align-content: flex-end;
}

.align_content_center {
  -ms-flex-line-pack: center;
      align-content: center;
}

.align_content_between {
  -ms-flex-line-pack: justify;
      align-content: space-between;
}

.align_content_around {
  -ms-flex-line-pack: distribute;
      align-content: space-around;
}

.align_content_stretch {
  -ms-flex-line-pack: stretch;
      align-content: stretch;
}

.align_self_auto {
  -ms-flex-item-align: auto;
      -ms-grid-row-align: auto;
      align-self: auto;
}

.align_self_start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}

.align_self_end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}

.align_self_center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

.align_self_baseline {
  -ms-flex-item-align: baseline;
      align-self: baseline;
}

.align_self_stretch {
  -ms-flex-item-align: stretch;
      -ms-grid-row-align: stretch;
      align-self: stretch;
}

@media (min-width: 480px) {
  .flex_xs_row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flex_xs_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex_xs_row_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flex_xs_column_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .flex_xs_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex_xs_nowrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .flex_xs_wrap_reverse {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .flex_xs_fill {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .flex_xs_grow_0 {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .flex_xs_grow_1 {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .flex_xs_shrink_0 {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .flex_xs_shrink_1 {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .justify_content_xs_start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .justify_content_xs_end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .justify_content_xs_center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .justify_content_xs_between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .justify_content_xs_around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .align_items_xs_start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .align_items_xs_end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .align_items_xs_center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .align_items_xs_baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .align_items_xs_stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .align_content_xs_start {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .align_content_xs_end {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .align_content_xs_center {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .align_content_xs_between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
  .align_content_xs_around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .align_content_xs_stretch {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .align_self_xs_auto {
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
  .align_self_xs_start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .align_self_xs_end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .align_self_xs_center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .align_self_xs_baseline {
    -ms-flex-item-align: baseline;
        align-self: baseline;
  }
  .align_self_xs_stretch {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}

@media (min-width: 576px) {
  .flex_sm_row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flex_sm_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex_sm_row_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flex_sm_column_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .flex_sm_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex_sm_nowrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .flex_sm_wrap_reverse {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .flex_sm_fill {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .flex_sm_grow_0 {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .flex_sm_grow_1 {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .flex_sm_shrink_0 {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .flex_sm_shrink_1 {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .justify_content_sm_start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .justify_content_sm_end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .justify_content_sm_center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .justify_content_sm_between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .justify_content_sm_around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .align_items_sm_start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .align_items_sm_end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .align_items_sm_center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .align_items_sm_baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .align_items_sm_stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .align_content_sm_start {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .align_content_sm_end {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .align_content_sm_center {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .align_content_sm_between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
  .align_content_sm_around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .align_content_sm_stretch {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .align_self_sm_auto {
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
  .align_self_sm_start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .align_self_sm_end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .align_self_sm_center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .align_self_sm_baseline {
    -ms-flex-item-align: baseline;
        align-self: baseline;
  }
  .align_self_sm_stretch {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}

@media (min-width: 768px) {
  .flex_md_row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flex_md_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex_md_row_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flex_md_column_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .flex_md_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex_md_nowrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .flex_md_wrap_reverse {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .flex_md_fill {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .flex_md_grow_0 {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .flex_md_grow_1 {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .flex_md_shrink_0 {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .flex_md_shrink_1 {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .justify_content_md_start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .justify_content_md_end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .justify_content_md_center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .justify_content_md_between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .justify_content_md_around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .align_items_md_start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .align_items_md_end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .align_items_md_center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .align_items_md_baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .align_items_md_stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .align_content_md_start {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .align_content_md_end {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .align_content_md_center {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .align_content_md_between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
  .align_content_md_around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .align_content_md_stretch {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .align_self_md_auto {
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
  .align_self_md_start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .align_self_md_end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .align_self_md_center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .align_self_md_baseline {
    -ms-flex-item-align: baseline;
        align-self: baseline;
  }
  .align_self_md_stretch {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}

@media (min-width: 992px) {
  .flex_lg_row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flex_lg_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex_lg_row_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flex_lg_column_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .flex_lg_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex_lg_nowrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .flex_lg_wrap_reverse {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .flex_lg_fill {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .flex_lg_grow_0 {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .flex_lg_grow_1 {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .flex_lg_shrink_0 {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .flex_lg_shrink_1 {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .justify_content_lg_start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .justify_content_lg_end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .justify_content_lg_center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .justify_content_lg_between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .justify_content_lg_around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .align_items_lg_start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .align_items_lg_end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .align_items_lg_center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .align_items_lg_baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .align_items_lg_stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .align_content_lg_start {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .align_content_lg_end {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .align_content_lg_center {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .align_content_lg_between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
  .align_content_lg_around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .align_content_lg_stretch {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .align_self_lg_auto {
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
  .align_self_lg_start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .align_self_lg_end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .align_self_lg_center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .align_self_lg_baseline {
    -ms-flex-item-align: baseline;
        align-self: baseline;
  }
  .align_self_lg_stretch {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}

@media (min-width: 1200px) {
  .flex_xl_row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .flex_xl_column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex_xl_row_reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .flex_xl_column_reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .flex_xl_wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .flex_xl_nowrap {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .flex_xl_wrap_reverse {
    -ms-flex-wrap: wrap-reverse;
        flex-wrap: wrap-reverse;
  }
  .flex_xl_fill {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
  .flex_xl_grow_0 {
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
  }
  .flex_xl_grow_1 {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .flex_xl_shrink_0 {
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .flex_xl_shrink_1 {
    -ms-flex-negative: 1;
        flex-shrink: 1;
  }
  .justify_content_xl_start {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .justify_content_xl_end {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .justify_content_xl_center {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .justify_content_xl_between {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .justify_content_xl_around {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .align_items_xl_start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .align_items_xl_end {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
  .align_items_xl_center {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .align_items_xl_baseline {
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
  }
  .align_items_xl_stretch {
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  .align_content_xl_start {
    -ms-flex-line-pack: start;
        align-content: flex-start;
  }
  .align_content_xl_end {
    -ms-flex-line-pack: end;
        align-content: flex-end;
  }
  .align_content_xl_center {
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .align_content_xl_between {
    -ms-flex-line-pack: justify;
        align-content: space-between;
  }
  .align_content_xl_around {
    -ms-flex-line-pack: distribute;
        align-content: space-around;
  }
  .align_content_xl_stretch {
    -ms-flex-line-pack: stretch;
        align-content: stretch;
  }
  .align_self_xl_auto {
    -ms-flex-item-align: auto;
        -ms-grid-row-align: auto;
        align-self: auto;
  }
  .align_self_xl_start {
    -ms-flex-item-align: start;
        align-self: flex-start;
  }
  .align_self_xl_end {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
  .align_self_xl_center {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  .align_self_xl_baseline {
    -ms-flex-item-align: baseline;
        align-self: baseline;
  }
  .align_self_xl_stretch {
    -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
  }
}

/* Text */
.text_justify { text-align: justify; }
.text_wrap { white-space: normal; }
.text_nowrap { white-space: nowrap; }
.text_truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.text_left { text-align: left; }
.text_right { text-align: right; }
.text_center { text-align: center; }

@media (min-width: 576px) {
  .text_sm_left {
    text-align: left;
  }
  .text_sm_right {
    text-align: right;
  }
  .text_sm_center {
    text-align: center;
  }
}

@media (min-width: 768px) {
  .text_md_left {
    text-align: left;
  }
  .text_md_right {
    text-align: right;
  }
  .text_md_center {
    text-align: center;
  }
}

@media (min-width: 992px) {
  .text_lg_left {
    text-align: left;
  }
  .text_lg_right {
    text-align: right;
  }
  .text_lg_center {
    text-align: center;
  }
}

@media (min-width: 1200px) {
  .text_xl_left {
    text-align: left;
  }
  .text_xl_right {
    text-align: right;
  }
  .text_xl_center {
    text-align: center;
  }
}

.text_lowercase {
  text-transform: lowercase;
}

.text_uppercase {
  text-transform: uppercase;
}

.text_capitalize {
  text-transform: capitalize;
}

.text_hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text_decoration {
  text-decoration: underline;
}

.text_decoration_none {
  text-decoration: none;
}

.text_break {
  word-break: break-word;
  overflow-wrap: break-word;
}

.text_reset {
  color: inherit;
}

/* Shadow utilities */
.shadow_sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.shadow_lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175);
}

.shadow_none {
  -webkit-box-shadow: none;
          box-shadow: none;
}

/* Sizing utilities START */
.w_25 {
  width: 25%;
}

.w_50 {
  width: 50%;
}

.w_75 {
  width: 75%;
}

.w_100 {
  width: 100%;
}

.w_auto {
  width: auto;
}

.h_25 {
  height: 25%;
}

.h_50 {
  height: 50%;
}

.h_75 {
  height: 75%;
}

.h_100 {
  height: 100%;
}

.h_auto {
  height: auto;
}

.mw_100 {
  max-width: 100%;
}

.mh_100 {
  max-height: 100%;
}

.min_vw_100 {
  min-width: 100vw;
}

.min_vh_100 {
  min-height: 100vh;
}

.vw_100 {
  width: 100vw;
}

.vh_100 {
  height: 100vh;
}

/* Spacing START */
.m_0 {
  margin: 0;
}

.mt_0,
.my_0 {
  margin-top: 0;
}

.mr_0,
.mx_0 {
  margin-right: 0;
}

.mb_0,
.my_0 {
  margin-bottom: 0;
}

.ml_0,
.mx_0 {
  margin-left: 0;
}

.m_1 {
  margin: 0.25rem;
}

.mt_1,
.my_1 {
  margin-top: 0.25rem;
}

.mr_1,
.mx_1 {
  margin-right: 0.25rem;
}

.mb_1,
.my_1 {
  margin-bottom: 0.25rem;
}

.ml_1,
.mx_1 {
  margin-left: 0.25rem;
}

.m_2 {
  margin: 0.5rem;
}

.mt_2,
.my_2 {
  margin-top: 0.5rem;
}

.mr_2,
.mx_2 {
  margin-right: 0.5rem;
}

.mb_2,
.my_2 {
  margin-bottom: 0.5rem;
}

.ml_2,
.mx_2 {
  margin-left: 0.5rem;
}

.m_3 {
  margin: 1rem;
}

.mt_3,
.my_3 {
  margin-top: 1rem;
}

.mr_3,
.mx_3 {
  margin-right: 1rem;
}

.mb_3,
.my_3 {
  margin-bottom: 1rem;
}

.ml_3,
.mx_3 {
  margin-left: 1rem;
}

.m_4 {
  margin: 1.5rem;
}

.mt_4,
.my_4 {
  margin-top: 1.5rem;
}

.mr_4,
.mx_4 {
  margin-right: 1.5rem;
}

.mb_4,
.my_4 {
  margin-bottom: 1.5rem;
}

.ml_4,
.mx_4 {
  margin-left: 1.5rem;
}

.m_5 {
  margin: 3rem;
}

.mt_5,
.my_5 {
  margin-top: 3rem;
}

.mr_5,
.mx_5 {
  margin-right: 3rem;
}

.mb_5,
.my_5 {
  margin-bottom: 3rem;
}

.ml_5,
.mx_5 {
  margin-left: 3rem;
}

.m_6 {
  margin: 3.5rem;
}

.mt_6,
.my_6 {
  margin-top: 3.5rem;
}

.mr_6,
.mx_6 {
  margin-right: 3.5rem;
}

.mb_6,
.my_6 {
  margin-bottom: 3.5rem;
}

.ml_6,
.mx_6 {
  margin-left: 3.5rem;
}

.m_7 {
  margin: 4rem;
}

.mt_7,
.my_7 {
  margin-top: 4rem;
}

.mr_7,
.mx_7 {
  margin-right: 4rem;
}

.mb_7,
.my_7 {
  margin-bottom: 4rem;
}

.ml_7,
.mx_7 {
  margin-left: 4rem;
}

.p_0 {
  padding: 0;
}

.pt_0,
.py_0 {
  padding-top: 0;
}

.pr_0,
.px_0 {
  padding-right: 0;
}

.pb_0,
.py_0 {
  padding-bottom: 0;
}

.pl_0,
.px_0 {
  padding-left: 0;
}

.p_1 {
  padding: 0.25rem;
}

.pt_1,
.py_1 {
  padding-top: 0.25rem;
}

.pr_1,
.px_1 {
  padding-right: 0.25rem;
}

.pb_1,
.py_1 {
  padding-bottom: 0.25rem;
}

.pl_1,
.px_1 {
  padding-left: 0.25rem;
}

.p_2 {
  padding: 0.5rem;
}

.pt_2,
.py_2 {
  padding-top: 0.5rem;
}

.pr_2,
.px_2 {
  padding-right: 0.5rem;
}

.pb_2,
.py_2 {
  padding-bottom: 0.5rem;
}

.pl_2,
.px_2 {
  padding-left: 0.5rem;
}

.p_3 {
  padding: 1rem;
}

.pt_3,
.py_3 {
  padding-top: 1rem;
}

.pr_3,
.px_3 {
  padding-right: 1rem;
}

.pb_3,
.py_3 {
  padding-bottom: 1rem;
}

.pl_3,
.px_3 {
  padding-left: 1rem;
}

.p_4 {
  padding: 1.5rem;
}

.pt_4,
.py_4 {
  padding-top: 1.5rem;
}

.pr_4,
.px_4 {
  padding-right: 1.5rem;
}

.pb_4,
.py_4 {
  padding-bottom: 1.5rem;
}

.pl_4,
.px_4 {
  padding-left: 1.5rem;
}

.p_5 {
  padding: 3rem;
}

.pt_5,
.py_5 {
  padding-top: 3rem;
}

.pr_5,
.px_5 {
  padding-right: 3rem;
}

.pb_5,
.py_5 {
  padding-bottom: 3rem;
}

.pl_5,
.px_5 {
  padding-left: 3rem;
}

.m_n1 {
  margin: -0.25rem;
}

.mt_n1,
.my_n1 {
  margin-top: -0.25rem;
}

.mr_n1,
.mx_n1 {
  margin-right: -0.25rem;
}

.mb_n1,
.my_n1 {
  margin-bottom: -0.25rem;
}

.ml_n1,
.mx_n1 {
  margin-left: -0.25rem;
}

.m_n2 {
  margin: -0.5rem;
}

.mt_n2,
.my_n2 {
  margin-top: -0.5rem;
}

.mr_n2,
.mx_n2 {
  margin-right: -0.5rem;
}

.mb_n2,
.my_n2 {
  margin-bottom: -0.5rem;
}

.ml_n2,
.mx_n2 {
  margin-left: -0.5rem;
}

.m_n3 {
  margin: -1rem;
}

.mt_n3,
.my_n3 {
  margin-top: -1rem;
}

.mr_n3,
.mx_n3 {
  margin-right: -1rem;
}

.mb_n3,
.my_n3 {
  margin-bottom: -1rem;
}

.ml_n3,
.mx_n3 {
  margin-left: -1rem;
}

.m_n4 {
  margin: -1.5rem;
}

.mt_n4,
.my_n4 {
  margin-top: -1.5rem;
}

.mr_n4,
.mx_n4 {
  margin-right: -1.5rem;
}

.mb_n4,
.my_n4 {
  margin-bottom: -1.5rem;
}

.ml_n4,
.mx_n4 {
  margin-left: -1.5rem;
}

.m_n5 {
  margin: -3rem;
}

.mt_n5,
.my_n5 {
  margin-top: -3rem;
}

.mr_n5,
.mx_n5 {
  margin-right: -3rem;
}

.mb_n5,
.my_n5 {
  margin-bottom: -3rem;
}

.ml_n5,
.mx_n5 {
  margin-left: -3rem;
}

.m_auto {
  margin: auto;
}

.mt_auto,
.my_auto {
  margin-top: auto;
}

.mr_auto,
.mx_auto {
  margin-right: auto;
}

.mb_auto,
.my_auto {
  margin-bottom: auto;
}

.ml_auto,
.mx_auto {
  margin-left: auto;
}


/* Spacing END */

.f-auto {
  flex: auto;
}

.u-max-1120{
  max-width: 1120px;
}
.u-max-800{
  max-width: 800px;
}

[class*="add_gap_"] {
  display: flex;
  gap: 0.25rem ;
}
[class*="add_gap_"][class*="0"] {
  gap: 0;
}
[class*="add_gap_"][class*="6_0"] {
    gap: 6px 0;
}
[class*="add_gap_"][class*="8"] {
  gap: 8px;
}
[class*="add_gap_"][class*="10"] {
  gap: 10px;
}
[class*="add_gap_"][class*="10-0"] {
  gap: 10px 0;
}
[class*="add_gap_"][class*="16"] {
  gap: 16px;
}
[class*="add_gap_"][class*="24"] {
  gap: 24px;
}

/* ! br ================================================== */
/* 表示 */
.on_1080 { display: none; }
@media screen and (max-width: 1080px) {.on_1080 { display: block; } }
.on_768 { display: none; }
@media screen and (max-width: 768px) { .on_768 { display: block; } }
.on_576 { display: none; }
@media screen and (max-width: 576px) { .on_576 { display: block; } }
.on_480 { display: none; }
@media screen and (max-width: 480px) { .on_480 { display: block; } }
.on_400 { display: none;}
@media screen and (max-width: 400px) { .on_400 { display: block; } }
/* 非表示 */
@media screen and (max-width: 768px) { .off_768{ display: none; } }
@media screen and (max-width: 576px) { .off_576{ display: none; } }
