@charset "utf-8";

/* ===================================================================
css information

File Name  : base.css
Author     :
Style Info :
=================================================================== */

/*********************************************************************

Import styles

*********************************************************************/

@import url('https://fonts.googleapis.com/earlyaccess/notosansjapanese.css'); /* 'Noto Sans Japanese'*/
@import url('https://fonts.googleapis.com/css?family=Barlow+Semi+Condensed:100,200,300,400,500,600,700,800,900'); /* Barlow Semi Condensed */

/*********************************************************************

Browser Default Initialization

*********************************************************************/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, figure,
b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
margin: 0;
padding: 0;
border: 0;
outline: 0;
vertical-align: baseline;
background: transparent;
font-style: normal;
/* font-weight: normal; */
font-weight: inherit; /* Use 'Noto Sans Japanese' */
}
*,
*:before,
*:after {
box-sizing: border-box;
font-size: inherit;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
html {
overflow-y:scroll;
line-height:1;
-ms-text-size-adjust: 100%;
-webkit-text-size-adjust: 100%;
}
body {
letter-spacing: normal;
}
input,
select,
textarea,
button {
margin: 0;
font-family: inherit;
font-size: inherit;
line-height: inherit;
-webkit-appearance:none;
-moz-appearance:none;
appearance:none;
}
input[type="checkbox"] {
-webkit-appearance:checkbox;
-moz-appearance:checkbox;
appearance:checkbox;
}
input[type="radio"] {
-webkit-appearance:radio;
-moz-appearance:radio;
appearance:radio;
}
dl, ol, ul {
list-style: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
a {
backface-visibility: hidden;
}
a, b, big, i, s, small, strike, strong, sub, sup, u, span, em {
font-weight: inherit;
}
img {
vertical-align: middle;
border-style: none;
}

/* cursor */
.device-mobile *,
.device-tablet * { cursor:pointer; }

/* ----------------------------------------------------------------- */

body {
font-family: 'Noto Sans Japanese', '游ゴシック体', 'Yu Gothic', YuGothic, 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'メイリオ', 'Meiryo', sans-serif;
font-size: 14px;
line-height: 1.6;
color:#333;
font-weight:300; /* Use 'Noto Sans Japanese' */
}
h1, h2, h3, h4, h5, h6 { line-height:1.3; }
a { color:#f65275; text-decoration:underline; }
a:hover { text-decoration:none; }

/* ie */
.bn-ie body { font-family:メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
font-weight:normal; /* Use 'Noto Sans Japanese' */
}

/* SP --------------------------------*/
@media (max-width: 768px) {
body { font-size:13px; /*position: relative;*/ }
img { max-width: 100%; }
}

/* ===================================================================
display:none
=================================================================== */

@media (min-width: 769px) {
.sp { display: none !important; }
}
@media (max-width: 768px) {
.pc { display: none !important; }
}

/* ===================================================================
color
=================================================================== */

.text-dark { color:#333 !important; }
.text-pink { color:#E54C78 !important; }
.text-danger { color:#f00 !important; }

/* ===================================================================
font-family
=================================================================== */

.font-en-1,
.font-en-1-100,
.font-en-1-200,
.font-en-1-300,
.font-en-1-400,
.font-en-1-500,
.font-en-1-600,
.font-en-1-700,
.font-en-1-800,
.font-en-1-900 { font-family:'Barlow Semi Condensed', sans-serif !Important; letter-spacing:0.04em !important; }
.font-en-1-100 { font-weight:100 !important; }
.font-en-1-200 { font-weight:200 !important; }
.font-en-1-300 { font-weight:300 !important; }
.font-en-1-400 { font-weight:400 !important; }
.font-en-1-500 { font-weight:500 !important; }
.font-en-1-600 { font-weight:600 !important; }
.font-en-1-700 { font-weight:700 !important; }
.font-en-1-800 { font-weight:800 !important; }
.font-en-1-900 { font-weight:900 !important; }

/* ===================================================================
font-weight
=================================================================== */

.font-weight-light { font-weight: 300 !important; }
.font-weight-normal { font-weight: 400 !important; }
.font-weight-bold { font-weight: 700 !important; }

/* ===================================================================
text-alignment
=================================================================== */

.text-justify { text-align: justify !important; }
.text-nowrap { white-space: nowrap !important; }
.text-truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }

@media (min-width: 576px) {
.text-sm-left { text-align: left !important; }
.text-sm-right { text-align: right !important; }
.text-sm-center { text-align: center !important; }
}

@media (min-width: 768px) {
.text-md-left { text-align: left !important; }
.text-md-right { text-align: right !important; }
.text-md-center { text-align: center !important; }
}

/* ===================================================================
indent
=================================================================== */
.indent-1 { text-indent:-1em; padding-left:1em; }
.indent-2 { text-indent:-2em; padding-left:2em; }
.indent-3 { text-indent:-3em; padding-left:3em; }
.indent-4 { text-indent:-4em; padding-left:4em; }

/* ===================================================================
text-size
=================================================================== */

.text-size-xl { font-size:114.3%; }
.text-size-l { font-size:107.1%; }
.text-size-md { font-size:100%; }
.text-size-s { font-size:92.9%; }
.text-size-xs { font-size:85.7%; }

/* ===================================================================
form
=================================================================== */

/* text */
input[type="text"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="email"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="number"],
input[type="range"],
input[type="color"],
input[type="tel"] { width:100%; height:38px; font-size:14px; padding:0 10px; display:inline-block; vertical-align:middle; background:#fff; border:#ccc 1px solid; border-radius:4px; -webkit-user-select:text; }

/* file */
input[type="file"] { width:100%; font-size:14px; display:block; vertical-align:middle; }

/* select */
select { width:100%; height:38px; font-size:14px; display:inline-block; vertical-align:middle; padding:0 32px 0 10px; background:#fff URL(../img/select-arrow.png) no-repeat right center; background-size:24px auto; border:#ddd 1px solid; border-radius:4px; white-space:nowrap; text-overflow:ellipsis;	}
select::-ms-expand { display:none; }

/* select multiple */
select[multiple] { height:auto; padding:0; background-image:none; }
select[multiple] option { padding:5px 10px; }

/* textarea */
textarea { width:100%; display:inline-block; vertical-align:middle; padding:7px 10px; background:#fff; border:#ddd 1px solid; border-radius:4px; resize:none; line-height:1.6; overflow:hidden; }

/* button */
button,
input[type="button"],
input[type="submit"] { cursor:pointer; }

/* ------ disabled ------ */
input[type="text"]:disabled,
input[type="password"]:disabled,
input[type="search"]:disabled,
input[type="url"]:disabled,
input[type="email"]:disabled,
input[type="datetime"]:disabled,
input[type="date"]:disabled,
input[type="month"]:disabled,
input[type="week"]:disabled,
input[type="time"]:disabled,
input[type="datetime-local"]:disabled,
input[type="number"]:disabled,
input[type="range"]:disabled,
input[type="color"]:disabled,
input[type="tel"]:disabled,
select:disabled,
textarea:disabled { color:#606060; background-color:#f9f9f9; -webkit-text-fill-color:#606060 !important; -webkit-opacity:1 !important; }
button:disabled,
input[type="button"]:disabled,
input[type="submit"]:disabled { cursor:default; }

/* ------ placeholder ------ */
:placeholder-shown { color: #909090; }
::-webkit-input-placeholder { color: #909090; }
::-moz-placeholder { color: #909090; opacity: 1; }
:-ms-input-placeholder { color: #909090; }

/* SP --------------------------------*/
@media (max-width: 768px) {
/* text */
input[type="text"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="email"],
input[type="datetime"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime-local"],
input[type="number"],
input[type="range"],
input[type="color"],
input[type="tel"] { font-size:13px; padding:0 6px; }

/* file */
input[type="file"] { font-size:13px; }

/* select */
select { font-size:13px; padding:0 27px 0 10px; background-size:21px auto; }

/* select multiple */
select[multiple] option { padding:8px 10px; }

/* select multiple - ios, android */
.og-ios select[multiple],
.og-android select[multiple] { height:38px !important; padding:0 27px 0 10px !important; background-image:URL(../img/select-arrow.png) !important; }
}

/*********************************************************************

#container

*********************************************************************/

#container { padding-top:91px; margin-bottom:50px; }
#container-middle { width:100%; max-width:1200px; margin: 0 auto;
-ms-flex-wrap: nowrap;
flex-wrap: nowrap;
}
#container-middle-left { padding-right:25px; }
#container-middle-right { padding-left:25px; }
#container-main {
-webkit-box-flex: 0;
-ms-flex: 0 0 75%;
flex: 0 0 75%;
max-width: 75%;
}
#container-middle-left,
#container-middle-right {
-webkit-box-flex: 0;
-ms-flex: 0 0 25%;
flex: 0 0 25%;
max-width: 25%;
}

/* only-child */
#container-main:only-child {
-webkit-box-flex: 0;
-ms-flex: 0 0 100%;
flex: 0 0 100%;
max-width: 100%;
}

/* size */
#container-middle.type-full { max-width:none; }

@media (max-width: 1199px) {
#container-middle-left { padding-right:15px; }
#container-middle-right { padding-left:15px; }
}

@media (max-width: 991px) {
#container-middle-left { padding-right:5px; }
#container-middle-right { padding-left:5px; }
}

/* SP --------------------------------*/
@media (max-width: 768px) {
#container { padding-top:60px; margin-bottom: 30px; }
#container-middle-left { padding-right:15px; margin-bottom: 20px; }
#container-middle-right { padding-left:15px; }
#container-main,
#container-main:only-child,
#container-middle-left,
#container-middle-right {
-webkit-box-flex: 0;
-ms-flex: 0 0 auto;
flex: 0 0 auto;
width: auto;
max-width: none;
}
}

/*********************************************************************

JavaScript

*********************************************************************/

/* ===================================================================
no-scroll
=================================================================== */

body.no-scroll { position: fixed; left: 0; width: 100%; }

/* ===================================================================
collapse
=================================================================== */

.collapse-item { display:none; }
.collapse-toggle { cursor:pointer; }

/* ===================================================================
dropdown
=================================================================== */

.dropdown-toggle,
.dropdown-close { cursor:pointer; }
.dropdown-item { height:0; overflow:hidden; opacity:0; visibility:hidden; }

/* ===================================================================
tab
=================================================================== */

.tab-item { display:none; }

/* ===================================================================
popup-modal
=================================================================== */

.popup-modal-type-1.mfp-bg { opacity:0; visibility:hidden; background:rgba(0,0,0,0.6); }
.popup-modal-type-1.mfp-wrap { opacity:0; visibility:hidden;
-webkit-transform: translateX(0px) translateY(50px);
-ms-transform: translateX(0px) translateY(50px);
transform: translateX(0px) translateY(50px);
}
.popup-modal-type-1 .mfp-container { padding:0 20px; }
.popup-modal-type-1 .mfp-content { padding:50px 0; }

/* ready */
.popup-modal-type-1.mfp-bg.mfp-ready { opacity:1; visibility:visible;
-webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-modal-type-1.mfp-wrap.mfp-ready { opacity:1; visibility:visible;
-webkit-transform: translateX(0px) translateY(0px);
-ms-transform: translateX(0px) translateY(0px);
transform: translateX(0px) translateY(0px);
-webkit-transition: opacity 0.3s ease 0.3s, visibility 0.3s ease 0.3s, -webkit-transform 0.3s ease 0.3s;
transition: opacity 0.3s ease 0.3s, visibility 0.3s ease 0.3s, transform 0.3s ease 0.3s;
}

/* removing */
.popup-modal-type-1.mfp-bg.mfp-removing { opacity:0; visibility:hidden;
-webkit-transition: opacity 0.3s ease 0.3s, visibility 0.3s ease 0.3s;
transition: opacity 0.3s ease 0.3s, visibility 0.3s ease 0.3s;
}
.popup-modal-type-1.mfp-wrap.mfp-removing { opacity:0; visibility:hidden;
-webkit-transform: translateX(0px) translateY(50px);
-ms-transform: translateX(0px) translateY(50px);
transform: translateX(0px) translateY(50px);
-webkit-transition: opacity 0.3s ease, visibility 0.3s ease, -webkit-transform 0.3s ease;
transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
}

/* SP --------------------------------*/
@media (max-width:767px) {
.popup-modal-type-1 .mfp-container { padding:0 10px; }
.popup-modal-type-1 .mfp-content { padding:44px 0; }
}

/*********************************************************************

Utility Styles

*********************************************************************/

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 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 {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
}

.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: none;
}

.col-1 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.333333%;
  flex: 0 0 8.333333%;
  max-width: 8.333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.666667%;
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.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.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.666667%;
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.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.333333%;
  flex: 0 0 58.333333%;
  max-width: 58.333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.666667%;
  flex: 0 0 66.666667%;
  max-width: 66.666667%;
}

.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.333333%;
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.666667%;
  flex: 0 0 91.666667%;
  max-width: 91.666667%;
}

.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.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@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: none;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .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.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .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.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .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.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .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.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}

@media (min-width: 769px) {
  .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: none;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .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.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .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.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .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.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .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.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}

@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: none;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .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.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .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.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .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.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .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.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}

@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: none;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
  .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.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
  }
  .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.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
  }
  .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.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
  }
  .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.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

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

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

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 769px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 992px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

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

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

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

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

.flex-wrap {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
  flex-wrap: wrap-reverse !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.align-self-auto {
  -ms-flex-item-align: auto !important;
  align-self: auto !important;
}

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

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

.align-self-center {
  -ms-flex-item-align: center !important;
  align-self: center !important;
}

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

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
  align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 769px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 992px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
    flex-wrap: wrap-reverse !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
    -ms-flex-align: start !important;
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
    -ms-flex-align: end !important;
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
    align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 769px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 992px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

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

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

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

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

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

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

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

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

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

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

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

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

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

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

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

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

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

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

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

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-auto {
  margin: auto !important;
}

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

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

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

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

@media (min-width: 576px) {
  body .m-sm-0 {
    margin: 0 !important;
  }
  body .mt-sm-0,
  body .my-sm-0 {
    margin-top: 0 !important;
  }
  body .mr-sm-0,
  body .mx-sm-0 {
    margin-right: 0 !important;
  }
  body .mb-sm-0,
  body .my-sm-0 {
    margin-bottom: 0 !important;
  }
  body .ml-sm-0,
  body .mx-sm-0 {
    margin-left: 0 !important;
  }
  body .m-sm-1 {
    margin: 0body .25rem !important;
  }
  body .mt-sm-1,
  body .my-sm-1 {
    margin-top: 0body .25rem !important;
  }
  body .mr-sm-1,
  body .mx-sm-1 {
    margin-right: 0body .25rem !important;
  }
  body .mb-sm-1,
  body .my-sm-1 {
    margin-bottom: 0body .25rem !important;
  }
  body .ml-sm-1,
  body .mx-sm-1 {
    margin-left: 0body .25rem !important;
  }
  body .m-sm-2 {
    margin: 0body .5rem !important;
  }
  body .mt-sm-2,
  body .my-sm-2 {
    margin-top: 0body .5rem !important;
  }
  body .mr-sm-2,
  body .mx-sm-2 {
    margin-right: 0body .5rem !important;
  }
  body .mb-sm-2,
  body .my-sm-2 {
    margin-bottom: 0body .5rem !important;
  }
  body .ml-sm-2,
  body .mx-sm-2 {
    margin-left: 0body .5rem !important;
  }
  body .m-sm-3 {
    margin: 1rem !important;
  }
  body .mt-sm-3,
  body .my-sm-3 {
    margin-top: 1rem !important;
  }
  body .mr-sm-3,
  body .mx-sm-3 {
    margin-right: 1rem !important;
  }
  body .mb-sm-3,
  body .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  body .ml-sm-3,
  body .mx-sm-3 {
    margin-left: 1rem !important;
  }
  body .m-sm-4 {
    margin: 1body .5rem !important;
  }
  body .mt-sm-4,
  body .my-sm-4 {
    margin-top: 1body .5rem !important;
  }
  body .mr-sm-4,
  body .mx-sm-4 {
    margin-right: 1body .5rem !important;
  }
  body .mb-sm-4,
  body .my-sm-4 {
    margin-bottom: 1body .5rem !important;
  }
  body .ml-sm-4,
  body .mx-sm-4 {
    margin-left: 1body .5rem !important;
  }
  body .m-sm-5 {
    margin: 3rem !important;
  }
  body .mt-sm-5,
  body .my-sm-5 {
    margin-top: 3rem !important;
  }
  body .mr-sm-5,
  body .mx-sm-5 {
    margin-right: 3rem !important;
  }
  body .mb-sm-5,
  body .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  body .ml-sm-5,
  body .mx-sm-5 {
    margin-left: 3rem !important;
  }
  body .p-sm-0 {
    padding: 0 !important;
  }
  body .pt-sm-0,
  body .py-sm-0 {
    padding-top: 0 !important;
  }
  body .pr-sm-0,
  body .px-sm-0 {
    padding-right: 0 !important;
  }
  body .pb-sm-0,
  body .py-sm-0 {
    padding-bottom: 0 !important;
  }
  body .pl-sm-0,
  body .px-sm-0 {
    padding-left: 0 !important;
  }
  body .p-sm-1 {
    padding: 0body .25rem !important;
  }
  body .pt-sm-1,
  body .py-sm-1 {
    padding-top: 0body .25rem !important;
  }
  body .pr-sm-1,
  body .px-sm-1 {
    padding-right: 0body .25rem !important;
  }
  body .pb-sm-1,
  body .py-sm-1 {
    padding-bottom: 0body .25rem !important;
  }
  body .pl-sm-1,
  body .px-sm-1 {
    padding-left: 0body .25rem !important;
  }
  body .p-sm-2 {
    padding: 0body .5rem !important;
  }
  body .pt-sm-2,
  body .py-sm-2 {
    padding-top: 0body .5rem !important;
  }
  body .pr-sm-2,
  body .px-sm-2 {
    padding-right: 0body .5rem !important;
  }
  body .pb-sm-2,
  body .py-sm-2 {
    padding-bottom: 0body .5rem !important;
  }
  body .pl-sm-2,
  body .px-sm-2 {
    padding-left: 0body .5rem !important;
  }
  body .p-sm-3 {
    padding: 1rem !important;
  }
  body .pt-sm-3,
  body .py-sm-3 {
    padding-top: 1rem !important;
  }
  body .pr-sm-3,
  body .px-sm-3 {
    padding-right: 1rem !important;
  }
  body .pb-sm-3,
  body .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  body .pl-sm-3,
  body .px-sm-3 {
    padding-left: 1rem !important;
  }
  body .p-sm-4 {
    padding: 1body .5rem !important;
  }
  body .pt-sm-4,
  body .py-sm-4 {
    padding-top: 1body .5rem !important;
  }
  body .pr-sm-4,
  body .px-sm-4 {
    padding-right: 1body .5rem !important;
  }
  body .pb-sm-4,
  body .py-sm-4 {
    padding-bottom: 1body .5rem !important;
  }
  body .pl-sm-4,
  body .px-sm-4 {
    padding-left: 1body .5rem !important;
  }
  body .p-sm-5 {
    padding: 3rem !important;
  }
  body .pt-sm-5,
  body .py-sm-5 {
    padding-top: 3rem !important;
  }
  body .pr-sm-5,
  body .px-sm-5 {
    padding-right: 3rem !important;
  }
  body .pb-sm-5,
  body .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  body .pl-sm-5,
  body .px-sm-5 {
    padding-left: 3rem !important;
  }
  body .m-sm-auto {
    margin: auto !important;
  }
  body .mt-sm-auto,
  body .my-sm-auto {
    margin-top: auto !important;
  }
  body .mr-sm-auto,
  body .mx-sm-auto {
    margin-right: auto !important;
  }
  body .mb-sm-auto,
  body .my-sm-auto {
    margin-bottom: auto !important;
  }
  body .ml-sm-auto,
  body .mx-sm-auto {
    margin-left: auto !important;
  }
}

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

@media (min-width: 992px) {
  body .m-lg-0 {
    margin: 0 !important;
  }
  body .mt-lg-0,
  body .my-lg-0 {
    margin-top: 0 !important;
  }
  body .mr-lg-0,
  body .mx-lg-0 {
    margin-right: 0 !important;
  }
  body .mb-lg-0,
  body .my-lg-0 {
    margin-bottom: 0 !important;
  }
  body .ml-lg-0,
  body .mx-lg-0 {
    margin-left: 0 !important;
  }
  body .m-lg-1 {
    margin: 0body .25rem !important;
  }
  body .mt-lg-1,
  body .my-lg-1 {
    margin-top: 0body .25rem !important;
  }
  body .mr-lg-1,
  body .mx-lg-1 {
    margin-right: 0body .25rem !important;
  }
  body .mb-lg-1,
  body .my-lg-1 {
    margin-bottom: 0body .25rem !important;
  }
  body .ml-lg-1,
  body .mx-lg-1 {
    margin-left: 0body .25rem !important;
  }
  body .m-lg-2 {
    margin: 0body .5rem !important;
  }
  body .mt-lg-2,
  body .my-lg-2 {
    margin-top: 0body .5rem !important;
  }
  body .mr-lg-2,
  body .mx-lg-2 {
    margin-right: 0body .5rem !important;
  }
  body .mb-lg-2,
  body .my-lg-2 {
    margin-bottom: 0body .5rem !important;
  }
  body .ml-lg-2,
  body .mx-lg-2 {
    margin-left: 0body .5rem !important;
  }
  body .m-lg-3 {
    margin: 1rem !important;
  }
  body .mt-lg-3,
  body .my-lg-3 {
    margin-top: 1rem !important;
  }
  body .mr-lg-3,
  body .mx-lg-3 {
    margin-right: 1rem !important;
  }
  body .mb-lg-3,
  body .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  body .ml-lg-3,
  body .mx-lg-3 {
    margin-left: 1rem !important;
  }
  body .m-lg-4 {
    margin: 1body .5rem !important;
  }
  body .mt-lg-4,
  body .my-lg-4 {
    margin-top: 1body .5rem !important;
  }
  body .mr-lg-4,
  body .mx-lg-4 {
    margin-right: 1body .5rem !important;
  }
  body .mb-lg-4,
  body .my-lg-4 {
    margin-bottom: 1body .5rem !important;
  }
  body .ml-lg-4,
  body .mx-lg-4 {
    margin-left: 1body .5rem !important;
  }
  body .m-lg-5 {
    margin: 3rem !important;
  }
  body .mt-lg-5,
  body .my-lg-5 {
    margin-top: 3rem !important;
  }
  body .mr-lg-5,
  body .mx-lg-5 {
    margin-right: 3rem !important;
  }
  body .mb-lg-5,
  body .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  body .ml-lg-5,
  body .mx-lg-5 {
    margin-left: 3rem !important;
  }
  body .p-lg-0 {
    padding: 0 !important;
  }
  body .pt-lg-0,
  body .py-lg-0 {
    padding-top: 0 !important;
  }
  body .pr-lg-0,
  body .px-lg-0 {
    padding-right: 0 !important;
  }
  body .pb-lg-0,
  body .py-lg-0 {
    padding-bottom: 0 !important;
  }
  body .pl-lg-0,
  body .px-lg-0 {
    padding-left: 0 !important;
  }
  body .p-lg-1 {
    padding: 0body .25rem !important;
  }
  body .pt-lg-1,
  body .py-lg-1 {
    padding-top: 0body .25rem !important;
  }
  body .pr-lg-1,
  body .px-lg-1 {
    padding-right: 0body .25rem !important;
  }
  body .pb-lg-1,
  body .py-lg-1 {
    padding-bottom: 0body .25rem !important;
  }
  body .pl-lg-1,
  body .px-lg-1 {
    padding-left: 0body .25rem !important;
  }
  body .p-lg-2 {
    padding: 0body .5rem !important;
  }
  body .pt-lg-2,
  body .py-lg-2 {
    padding-top: 0body .5rem !important;
  }
  body .pr-lg-2,
  body .px-lg-2 {
    padding-right: 0body .5rem !important;
  }
  body .pb-lg-2,
  body .py-lg-2 {
    padding-bottom: 0body .5rem !important;
  }
  body .pl-lg-2,
  body .px-lg-2 {
    padding-left: 0body .5rem !important;
  }
  body .p-lg-3 {
    padding: 1rem !important;
  }
  body .pt-lg-3,
  body .py-lg-3 {
    padding-top: 1rem !important;
  }
  body .pr-lg-3,
  body .px-lg-3 {
    padding-right: 1rem !important;
  }
  body .pb-lg-3,
  body .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  body .pl-lg-3,
  body .px-lg-3 {
    padding-left: 1rem !important;
  }
  body .p-lg-4 {
    padding: 1body .5rem !important;
  }
  body .pt-lg-4,
  body .py-lg-4 {
    padding-top: 1body .5rem !important;
  }
  body .pr-lg-4,
  body .px-lg-4 {
    padding-right: 1body .5rem !important;
  }
  body .pb-lg-4,
  body .py-lg-4 {
    padding-bottom: 1body .5rem !important;
  }
  body .pl-lg-4,
  body .px-lg-4 {
    padding-left: 1body .5rem !important;
  }
  body .p-lg-5 {
    padding: 3rem !important;
  }
  body .pt-lg-5,
  body .py-lg-5 {
    padding-top: 3rem !important;
  }
  body .pr-lg-5,
  body .px-lg-5 {
    padding-right: 3rem !important;
  }
  body .pb-lg-5,
  body .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  body .pl-lg-5,
  body .px-lg-5 {
    padding-left: 3rem !important;
  }
  body .m-lg-auto {
    margin: auto !important;
  }
  body .mt-lg-auto,
  body .my-lg-auto {
    margin-top: auto !important;
  }
  body .mr-lg-auto,
  body .mx-lg-auto {
    margin-right: auto !important;
  }
  body .mb-lg-auto,
  body .my-lg-auto {
    margin-bottom: auto !important;
  }
  body .ml-lg-auto,
  body .mx-lg-auto {
    margin-left: auto !important;
  }
}

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