@charset "UTF-8";
/* SMACSS + SCSS starter v2.1 Inspired by SMACSS http://smacss.com Author: @jonathanpath Date: 4 August 2015 https://github.com/jonathanpath/SASS-SMACSS See file structure in http://jonathanpath.com/sass+smacss/scss/style.scss Coding rules : https://github.com/necolas/idiomatic-css */
/* settings */
.sat { color: #0000ff; }

.sun { color: #ff0000; }

.color-white { color: #fff !important; }

.bgColor-white { background-color: #fff !important; }

.borderColor-white { border-color: #fff !important; }

.color-black { color: #1A1311 !important; }

.bgColor-black { background-color: #1A1311 !important; }

.borderColor-black { border-color: #1A1311 !important; }

.color-key { color: #FFEC00 !important; }

.bgColor-key { background-color: #FFEC00 !important; }

.borderColor-key { border-color: #FFEC00 !important; }

.color-base1 { color: #F9F6ED !important; }

.bgColor-base1 { background-color: #F9F6ED !important; }

.borderColor-base1 { border-color: #F9F6ED !important; }

.color-base2 { color: #F2EAEA !important; }

.bgColor-base2 { background-color: #F2EAEA !important; }

.borderColor-base2 { border-color: #F2EAEA !important; }

.color-base3 { color: #F9F6ED !important; }

.bgColor-base3 { background-color: #F9F6ED !important; }

.borderColor-base3 { border-color: #F9F6ED !important; }

.color-gray { color: #707070 !important; }

.bgColor-gray { background-color: #707070 !important; }

.borderColor-gray { border-color: #707070 !important; }

.font-en { font-family: "Hind", sans-serif; }

.bold { font-weight: 700; }

/* ブレークポイント */
/* ヘッダーの高さ */
/* カード内の余白(=コンテンツ内の余白の基準) */
/* アニメーションスピード */
/* 見出し系のフォントサイズに関して、スマホからPCにした時の倍率 */
/* tool */
@keyframes animeCircle1 { 0% { transform: translate(0px, 0px) scale(1); }
  17% { transform: translate(-10px, 10px) scale(0.9); }
  34% { transform: translate(-10px, 10px) scale(0.9); }
  51% { transform: translate(10px, 20px) scale(1.1); }
  68% { transform: translate(10px, 20px) scale(1.1); }
  85% { transform: translate(0px, 0px) scale(1); }
  100% { transform: translate(0px, 0px) scale(1); } }

@keyframes animeCircle2 { 0% { transform: translate(0px, 0px) scale(1); }
  17% { transform: translate(5px, 10px) scale(1.1); }
  34% { transform: translate(5px, 10px) scale(1.1); }
  51% { transform: translate(-5px, 5px) scale(0.9); }
  68% { transform: translate(-5px, 5px) scale(0.9); }
  85% { transform: translate(0px, 0px) scale(1); }
  100% { transform: translate(0px, 0px) scale(1); } }

*[class*="anime-"] { animation-duration: 4s; animation-timing-function: cubic-bezier(0.09, 0.71, 0.23, 0.93); animation-iteration-count: infinite; }

.anime-delay-1 { animation-delay: 0.1s !important; }

.anime-delay-2 { animation-delay: 0.2s !important; }

.anime-delay-3 { animation-delay: 0.3s !important; }

.anime-delay-4 { animation-delay: 0.4s !important; }

.anime-delay-5 { animation-delay: 0.5s !important; }

.anime-delay-6 { animation-delay: 0.6s !important; }

.anime-delay-7 { animation-delay: 0.7s !important; }

.anime-delay-8 { animation-delay: 0.8s !important; }

.anime-delay-9 { animation-delay: 0.9s !important; }

.anime-delay-10 { animation-delay: 1s !important; }

.anime-delay-11 { animation-delay: 1.1s !important; }

.anime-delay-12 { animation-delay: 1.2s !important; }

.anime-delay-13 { animation-delay: 1.3s !important; }

.anime-delay-14 { animation-delay: 1.4s !important; }

.anime-delay-15 { animation-delay: 1.5s !important; }

.anime-delay-16 { animation-delay: 1.6s !important; }

.anime-delay-17 { animation-delay: 1.7s !important; }

.anime-delay-18 { animation-delay: 1.8s !important; }

.anime-delay-19 { animation-delay: 1.9s !important; }

.anime-delay-20 { animation-delay: 2s !important; }

.anime-circle-1 { animation-name: animeCircle1; }

.anime-circle-2 { animation-name: animeCircle2; }

/* transition */
.delay01 { transition-delay: .1s !important; }

.delay02 { transition-delay: .2s !important; }

.delay03 { transition-delay: .3s !important; }

.delay04 { transition-delay: .4s !important; }

.delay05 { transition-delay: .5s !important; }

.delay06 { transition-delay: .6s !important; }

.delay07 { transition-delay: .7s !important; }

.delay08 { transition-delay: .8s !important; }

.delay09 { transition-delay: .9s !important; }

.delay10 { transition-delay: 1s !important; }

.delay11 { transition-delay: 1.1s !important; }

.delay12 { transition-delay: 1.2s !important; }

.delay13 { transition-delay: 1.3s !important; }

.delay14 { transition-delay: 1.4s !important; }

.delay15 { transition-delay: 1.5s !important; }

.delay16 { transition-delay: 1.6s !important; }

.delay17 { transition-delay: 1.7s !important; }

.delay18 { transition-delay: 1.8s !important; }

.delay19 { transition-delay: 1.9s !important; }

.delay20 { transition-delay: 2s !important; }

/* スクロール時のアニメーション */
.laser { position: relative; overflow: hidden; }

.laser::after { content: ""; position: absolute; top: 0; bottom: 0; left: -100%; width: 100%; background: #FFEC00; transition: all 1s ease; }

.laser .hide { opacity: 0; transition: all 1s ease; transition-delay: .5s; }

.laser.inview-js-on::after { left: 100%; }

.laser.inview-js-on .hide { opacity: 1; }

/* fade in */
.fade-in { opacity: 0; transition: all 0.2s ease; }

.fade-in.inview-js-on { opacity: 1; }

.inview-js-on .fade-in { opacity: 1; }

/* fade in zoom */
.fade-in-zoom { transform: scale(0.8); opacity: 0; transition: all 0.2s ease; }

.fade-in-zoom.inview-js-on { transform: scale(1); opacity: 1; }

.inview-js-on .fade-in-zoom { transform: scale(1); opacity: 1; }

/* fade in up */
.fade-in-up { transform: translateY(20px); opacity: 0; transition: all 0.2s ease; }

.fade-in-up.inview-js-on { transform: translateY(0px); opacity: 1; }

.inview-js-on .fade-in-up { transform: translateY(0px); opacity: 1; }

/* fade in down */
.fade-in-down { transform: translateY(-20px); opacity: 0; transition: all 0.2s ease; }

.fade-in-down.inview-js-on { transform: translateY(0px); opacity: 1; }

.inview-js-on .fade-in-down { transform: translateY(0px); opacity: 1; }

/* fade in left */
.fade-in-left { transform: translateX(20px); opacity: 0; transition: all 0.2s ease; }

.fade-in-left.inview-js-on { transform: translateX(0px); opacity: 1; }

.inview-js-on .fade-in-left { transform: translateX(0px); opacity: 1; }

/* fade in right */
.fade-in-right { transform: translateX(-20px); opacity: 0; transition: all 0.2s ease; }

.fade-in-right.inview-js-on { transform: translateX(0px); opacity: 1; }

.inview-js-on .fade-in-right { transform: translateX(0px); opacity: 1; }

/* fade in up left */
.fade-in-up-left { transform: translateY(20px) translateX(20px); opacity: 0; transition: all 0.2s ease; }

.fade-in-up-left.inview-js-on { transform: translateY(0px) translateX(0px); opacity: 1; }

.inview-js-on .fade-in-up-left { transform: translateY(0px) translateX(0px); opacity: 1; }

/* fade in up right */
.fade-in-up-right { transform: translateY(20px) translateX(-20px); opacity: 0; transition: all 0.2s ease; }

.fade-in-up-right.inview-js-on { transform: translateY(0px) translateX(0px); opacity: 1; }

.inview-js-on .fade-in-up-right { transform: translateY(0px) translateX(0px); opacity: 1; }

/* fade in down left */
.fade-in-down-left { transform: translateY(-20px) translateX(20px); opacity: 0; transition: all 0.2s ease; }

.fade-in-down-left.inview-js-on { transform: translateY(0px) translateX(0px); opacity: 1; }

.inview-js-on .fade-in-down-left { transform: translateY(0px) translateX(0px); opacity: 1; }

/* fade in down right */
.fade-in-down-right { transform: translateY(-20px) translateX(-20px); opacity: 0; transition: all 0.2s ease; }

.fade-in-down-right.inview-js-on { transform: translateY(0px) translateX(0px); opacity: 1; }

.inview-js-on .fade-in-down-right { transform: translateY(0px) translateX(0px); opacity: 1; }

/* layout */
/* =========================== Base =========================== */
html, body { width: 100%; height: 100%; background-color: #F9F6ED; }

html { font-size: 62.5%; }

@media (min-width: 767px) { html { font-size: 75%; } }

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, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { margin: 0; padding: 0; border: 0; vertical-align: baseline; letter-spacing: .1rem; line-height: 1.8; font-weight: bold; }

@media (min-width: 991px) { 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, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video { font-weight: normal; } }

body { font-feature-settings: "palt"; font-size: 1.3rem; font-family: "Noto Sans JP", sans-serif; }

body.en { font-family: "Noto Sans", sans-serif; font-weight: bold; }

body.tc { font-family: "Noto Sans TC", sans-serif; font-weight: 500; }

body.cn { font-family: "Noto Sans SC", sans-serif; font-weight: 500; }

/* HTML5 display-role reset for older browsers */
ol, ul { list-style: none; }

blockquote, q { quotes: none; }

blockquote:before, blockquote:after, q:before, q:after { content: ''; content: none; }

table { border-collapse: collapse; border-spacing: 0; }

img { display: block; max-width: 100%; vertical-align: bottom; }

svg { vertical-align: bottom; }

a { text-decoration: none; }

p { letter-spacing: .1em; line-height: 2; }

button { background-color: transparent; border: none; cursor: pointer; outline: none; padding: 0; -webkit-appearance: none; appearance: none; }

/* ================= 目次 ======================

　1.ユーティリティ
　2.装飾
　3.共通パーツ
　4.セクション

============================================= */
/* 1. ユーティリティ
---------------------------------------------- */
/* メニュー展開時など */
.body-fixed { position: fixed; width: 100%; height: 100%; }

/* スクロール時 */
.body-scrolled .pagetop { opacity: 1; }

.main { position: relative; z-index: 1; overflow: hidden; }

/* リンクエリアのマウスポインタ指定 */
.link-area { cursor: pointer; }

/* テキストアニメーション */
.txt-animate { display: inline-block; }

/* twitterタイムライン スマホ閲覧時にはみ出るバグ修正 */
.twitter iframe { width: 740px !important; }

/* レイヤーを前面に持っていくクラス */
.layer { position: relative; z-index: 2; }

/* スマホ時のグリッド調整 */
@media (max-width: 992px) { .row { margin-left: -5px; margin-right: -5px; } }

.row-adjust *[class*="col-"] { display: -ms-flexbox; display: flex; -ms-flex-direction: column; flex-direction: column; }

.row-adjust *[class*="col-"] .card { -ms-flex: 1; flex: 1; min-height: 0%; }

@media (max-width: 992px) { .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .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-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .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-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .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-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .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-auto { padding-left: 5px; padding-right: 5px; } }

/* 段落の設定 */
.sentence p { margin-bottom: 1rem; }

.sentence p:last-child { margin-bottom: 0; }

/* リスト表示の設定 */
.list li { position: relative; padding-left: 2rem; margin-bottom: 1rem; }

.list li a { color: #1A1311; }

.list-head { position: absolute; top: 0; left: .5rem; }

/* 最大幅 / 最小幅の設定 */
.max-10 { max-width: 1rem !important; margin-left: auto; margin-right: auto; }

.max-20 { max-width: 2rem !important; margin-left: auto; margin-right: auto; }

.max-30 { max-width: 3rem !important; margin-left: auto; margin-right: auto; }

.max-40 { max-width: 4rem !important; margin-left: auto; margin-right: auto; }

.max-50 { max-width: 5rem !important; margin-left: auto; margin-right: auto; }

.max-60 { max-width: 6rem !important; margin-left: auto; margin-right: auto; }

.max-70 { max-width: 7rem !important; margin-left: auto; margin-right: auto; }

.max-80 { max-width: 8rem !important; margin-left: auto; margin-right: auto; }

.max-90 { max-width: 9rem !important; margin-left: auto; margin-right: auto; }

.max-100 { max-width: 10rem !important; margin-left: auto; margin-right: auto; }

.max-110 { max-width: 11rem !important; margin-left: auto; margin-right: auto; }

.max-120 { max-width: 12rem !important; margin-left: auto; margin-right: auto; }

.max-130 { max-width: 13rem !important; margin-left: auto; margin-right: auto; }

.max-140 { max-width: 14rem !important; margin-left: auto; margin-right: auto; }

.max-150 { max-width: 15rem !important; margin-left: auto; margin-right: auto; }

.max-160 { max-width: 16rem !important; margin-left: auto; margin-right: auto; }

.max-170 { max-width: 17rem !important; margin-left: auto; margin-right: auto; }

.max-180 { max-width: 18rem !important; margin-left: auto; margin-right: auto; }

.max-190 { max-width: 19rem !important; margin-left: auto; margin-right: auto; }

.max-200 { max-width: 20rem !important; margin-left: auto; margin-right: auto; }

.max-210 { max-width: 21rem !important; margin-left: auto; margin-right: auto; }

.max-220 { max-width: 22rem !important; margin-left: auto; margin-right: auto; }

.max-230 { max-width: 23rem !important; margin-left: auto; margin-right: auto; }

.max-240 { max-width: 24rem !important; margin-left: auto; margin-right: auto; }

.max-250 { max-width: 25rem !important; margin-left: auto; margin-right: auto; }

.max-260 { max-width: 26rem !important; margin-left: auto; margin-right: auto; }

.max-270 { max-width: 27rem !important; margin-left: auto; margin-right: auto; }

.max-280 { max-width: 28rem !important; margin-left: auto; margin-right: auto; }

.max-290 { max-width: 29rem !important; margin-left: auto; margin-right: auto; }

.max-300 { max-width: 30rem !important; margin-left: auto; margin-right: auto; }

.max-310 { max-width: 31rem !important; margin-left: auto; margin-right: auto; }

.max-320 { max-width: 32rem !important; margin-left: auto; margin-right: auto; }

.max-330 { max-width: 33rem !important; margin-left: auto; margin-right: auto; }

.max-340 { max-width: 34rem !important; margin-left: auto; margin-right: auto; }

.max-350 { max-width: 35rem !important; margin-left: auto; margin-right: auto; }

.max-360 { max-width: 36rem !important; margin-left: auto; margin-right: auto; }

.max-370 { max-width: 37rem !important; margin-left: auto; margin-right: auto; }

.max-380 { max-width: 38rem !important; margin-left: auto; margin-right: auto; }

.max-390 { max-width: 39rem !important; margin-left: auto; margin-right: auto; }

.max-400 { max-width: 40rem !important; margin-left: auto; margin-right: auto; }

.max-410 { max-width: 41rem !important; margin-left: auto; margin-right: auto; }

.max-420 { max-width: 42rem !important; margin-left: auto; margin-right: auto; }

.max-430 { max-width: 43rem !important; margin-left: auto; margin-right: auto; }

.max-440 { max-width: 44rem !important; margin-left: auto; margin-right: auto; }

.max-450 { max-width: 45rem !important; margin-left: auto; margin-right: auto; }

.max-460 { max-width: 46rem !important; margin-left: auto; margin-right: auto; }

.max-470 { max-width: 47rem !important; margin-left: auto; margin-right: auto; }

.max-480 { max-width: 48rem !important; margin-left: auto; margin-right: auto; }

.max-490 { max-width: 49rem !important; margin-left: auto; margin-right: auto; }

.max-500 { max-width: 50rem !important; margin-left: auto; margin-right: auto; }

.max-510 { max-width: 51rem !important; margin-left: auto; margin-right: auto; }

.max-520 { max-width: 52rem !important; margin-left: auto; margin-right: auto; }

.max-530 { max-width: 53rem !important; margin-left: auto; margin-right: auto; }

.max-540 { max-width: 54rem !important; margin-left: auto; margin-right: auto; }

.max-550 { max-width: 55rem !important; margin-left: auto; margin-right: auto; }

.max-560 { max-width: 56rem !important; margin-left: auto; margin-right: auto; }

.max-570 { max-width: 57rem !important; margin-left: auto; margin-right: auto; }

.max-580 { max-width: 58rem !important; margin-left: auto; margin-right: auto; }

.max-590 { max-width: 59rem !important; margin-left: auto; margin-right: auto; }

.max-600 { max-width: 60rem !important; margin-left: auto; margin-right: auto; }

.max-610 { max-width: 61rem !important; margin-left: auto; margin-right: auto; }

.max-620 { max-width: 62rem !important; margin-left: auto; margin-right: auto; }

.max-630 { max-width: 63rem !important; margin-left: auto; margin-right: auto; }

.max-640 { max-width: 64rem !important; margin-left: auto; margin-right: auto; }

.max-650 { max-width: 65rem !important; margin-left: auto; margin-right: auto; }

.max-660 { max-width: 66rem !important; margin-left: auto; margin-right: auto; }

.max-670 { max-width: 67rem !important; margin-left: auto; margin-right: auto; }

.max-680 { max-width: 68rem !important; margin-left: auto; margin-right: auto; }

.max-690 { max-width: 69rem !important; margin-left: auto; margin-right: auto; }

.max-700 { max-width: 70rem !important; margin-left: auto; margin-right: auto; }

.max-710 { max-width: 71rem !important; margin-left: auto; margin-right: auto; }

.max-720 { max-width: 72rem !important; margin-left: auto; margin-right: auto; }

.max-730 { max-width: 73rem !important; margin-left: auto; margin-right: auto; }

.max-740 { max-width: 74rem !important; margin-left: auto; margin-right: auto; }

.max-750 { max-width: 75rem !important; margin-left: auto; margin-right: auto; }

.max-760 { max-width: 76rem !important; margin-left: auto; margin-right: auto; }

.max-770 { max-width: 77rem !important; margin-left: auto; margin-right: auto; }

.max-780 { max-width: 78rem !important; margin-left: auto; margin-right: auto; }

.max-790 { max-width: 79rem !important; margin-left: auto; margin-right: auto; }

.max-800 { max-width: 80rem !important; margin-left: auto; margin-right: auto; }

.max-810 { max-width: 81rem !important; margin-left: auto; margin-right: auto; }

.max-820 { max-width: 82rem !important; margin-left: auto; margin-right: auto; }

.max-830 { max-width: 83rem !important; margin-left: auto; margin-right: auto; }

.max-840 { max-width: 84rem !important; margin-left: auto; margin-right: auto; }

.max-850 { max-width: 85rem !important; margin-left: auto; margin-right: auto; }

.max-860 { max-width: 86rem !important; margin-left: auto; margin-right: auto; }

.max-870 { max-width: 87rem !important; margin-left: auto; margin-right: auto; }

.max-880 { max-width: 88rem !important; margin-left: auto; margin-right: auto; }

.max-890 { max-width: 89rem !important; margin-left: auto; margin-right: auto; }

.max-900 { max-width: 90rem !important; margin-left: auto; margin-right: auto; }

.max-910 { max-width: 91rem !important; margin-left: auto; margin-right: auto; }

.max-920 { max-width: 92rem !important; margin-left: auto; margin-right: auto; }

.max-930 { max-width: 93rem !important; margin-left: auto; margin-right: auto; }

.max-940 { max-width: 94rem !important; margin-left: auto; margin-right: auto; }

.max-950 { max-width: 95rem !important; margin-left: auto; margin-right: auto; }

.max-960 { max-width: 96rem !important; margin-left: auto; margin-right: auto; }

.max-970 { max-width: 97rem !important; margin-left: auto; margin-right: auto; }

.max-980 { max-width: 98rem !important; margin-left: auto; margin-right: auto; }

.max-990 { max-width: 99rem !important; margin-left: auto; margin-right: auto; }

.max-1000 { max-width: 100rem !important; margin-left: auto; margin-right: auto; }

.max-1010 { max-width: 101rem !important; margin-left: auto; margin-right: auto; }

.max-1020 { max-width: 102rem !important; margin-left: auto; margin-right: auto; }

.max-1030 { max-width: 103rem !important; margin-left: auto; margin-right: auto; }

.max-1040 { max-width: 104rem !important; margin-left: auto; margin-right: auto; }

.max-1050 { max-width: 105rem !important; margin-left: auto; margin-right: auto; }

.max-1060 { max-width: 106rem !important; margin-left: auto; margin-right: auto; }

.max-1070 { max-width: 107rem !important; margin-left: auto; margin-right: auto; }

.max-1080 { max-width: 108rem !important; margin-left: auto; margin-right: auto; }

.max-1090 { max-width: 109rem !important; margin-left: auto; margin-right: auto; }

.max-1100 { max-width: 110rem !important; margin-left: auto; margin-right: auto; }

.max-1110 { max-width: 111rem !important; margin-left: auto; margin-right: auto; }

.max-1120 { max-width: 112rem !important; margin-left: auto; margin-right: auto; }

.max-1130 { max-width: 113rem !important; margin-left: auto; margin-right: auto; }

.max-1140 { max-width: 114rem !important; margin-left: auto; margin-right: auto; }

.max-1150 { max-width: 115rem !important; margin-left: auto; margin-right: auto; }

.max-1160 { max-width: 116rem !important; margin-left: auto; margin-right: auto; }

.max-1170 { max-width: 117rem !important; margin-left: auto; margin-right: auto; }

.max-1180 { max-width: 118rem !important; margin-left: auto; margin-right: auto; }

.max-1190 { max-width: 119rem !important; margin-left: auto; margin-right: auto; }

.max-1200 { max-width: 120rem !important; margin-left: auto; margin-right: auto; }

.max-1210 { max-width: 121rem !important; margin-left: auto; margin-right: auto; }

.max-1220 { max-width: 122rem !important; margin-left: auto; margin-right: auto; }

.max-1230 { max-width: 123rem !important; margin-left: auto; margin-right: auto; }

.max-1240 { max-width: 124rem !important; margin-left: auto; margin-right: auto; }

.max-1250 { max-width: 125rem !important; margin-left: auto; margin-right: auto; }

.max-1260 { max-width: 126rem !important; margin-left: auto; margin-right: auto; }

.max-1270 { max-width: 127rem !important; margin-left: auto; margin-right: auto; }

.max-1280 { max-width: 128rem !important; margin-left: auto; margin-right: auto; }

.max-1290 { max-width: 129rem !important; margin-left: auto; margin-right: auto; }

.max-1300 { max-width: 130rem !important; margin-left: auto; margin-right: auto; }

.max-1310 { max-width: 131rem !important; margin-left: auto; margin-right: auto; }

.max-1320 { max-width: 132rem !important; margin-left: auto; margin-right: auto; }

.max-1330 { max-width: 133rem !important; margin-left: auto; margin-right: auto; }

.max-1340 { max-width: 134rem !important; margin-left: auto; margin-right: auto; }

.max-1350 { max-width: 135rem !important; margin-left: auto; margin-right: auto; }

.max-1360 { max-width: 136rem !important; margin-left: auto; margin-right: auto; }

.max-1370 { max-width: 137rem !important; margin-left: auto; margin-right: auto; }

.max-1380 { max-width: 138rem !important; margin-left: auto; margin-right: auto; }

.max-1390 { max-width: 139rem !important; margin-left: auto; margin-right: auto; }

.max-1400 { max-width: 140rem !important; margin-left: auto; margin-right: auto; }

.max-1410 { max-width: 141rem !important; margin-left: auto; margin-right: auto; }

.max-1420 { max-width: 142rem !important; margin-left: auto; margin-right: auto; }

.max-1430 { max-width: 143rem !important; margin-left: auto; margin-right: auto; }

.max-1440 { max-width: 144rem !important; margin-left: auto; margin-right: auto; }

.max-1450 { max-width: 145rem !important; margin-left: auto; margin-right: auto; }

.max-1460 { max-width: 146rem !important; margin-left: auto; margin-right: auto; }

.max-1470 { max-width: 147rem !important; margin-left: auto; margin-right: auto; }

.max-1480 { max-width: 148rem !important; margin-left: auto; margin-right: auto; }

.max-1490 { max-width: 149rem !important; margin-left: auto; margin-right: auto; }

.max-1500 { max-width: 150rem !important; margin-left: auto; margin-right: auto; }

.min-10 { min-width: 1rem !important; margin-left: auto; margin-right: auto; }

.min-20 { min-width: 2rem !important; margin-left: auto; margin-right: auto; }

.min-30 { min-width: 3rem !important; margin-left: auto; margin-right: auto; }

.min-40 { min-width: 4rem !important; margin-left: auto; margin-right: auto; }

.min-50 { min-width: 5rem !important; margin-left: auto; margin-right: auto; }

.min-60 { min-width: 6rem !important; margin-left: auto; margin-right: auto; }

.min-70 { min-width: 7rem !important; margin-left: auto; margin-right: auto; }

.min-80 { min-width: 8rem !important; margin-left: auto; margin-right: auto; }

.min-90 { min-width: 9rem !important; margin-left: auto; margin-right: auto; }

.min-100 { min-width: 10rem !important; margin-left: auto; margin-right: auto; }

.min-110 { min-width: 11rem !important; margin-left: auto; margin-right: auto; }

.min-120 { min-width: 12rem !important; margin-left: auto; margin-right: auto; }

.min-130 { min-width: 13rem !important; margin-left: auto; margin-right: auto; }

.min-140 { min-width: 14rem !important; margin-left: auto; margin-right: auto; }

.min-150 { min-width: 15rem !important; margin-left: auto; margin-right: auto; }

.min-160 { min-width: 16rem !important; margin-left: auto; margin-right: auto; }

.min-170 { min-width: 17rem !important; margin-left: auto; margin-right: auto; }

.min-180 { min-width: 18rem !important; margin-left: auto; margin-right: auto; }

.min-190 { min-width: 19rem !important; margin-left: auto; margin-right: auto; }

.min-200 { min-width: 20rem !important; margin-left: auto; margin-right: auto; }

.min-210 { min-width: 21rem !important; margin-left: auto; margin-right: auto; }

.min-220 { min-width: 22rem !important; margin-left: auto; margin-right: auto; }

.min-230 { min-width: 23rem !important; margin-left: auto; margin-right: auto; }

.min-240 { min-width: 24rem !important; margin-left: auto; margin-right: auto; }

.min-250 { min-width: 25rem !important; margin-left: auto; margin-right: auto; }

.min-260 { min-width: 26rem !important; margin-left: auto; margin-right: auto; }

.min-270 { min-width: 27rem !important; margin-left: auto; margin-right: auto; }

.min-280 { min-width: 28rem !important; margin-left: auto; margin-right: auto; }

.min-290 { min-width: 29rem !important; margin-left: auto; margin-right: auto; }

.min-300 { min-width: 30rem !important; margin-left: auto; margin-right: auto; }

.min-310 { min-width: 31rem !important; margin-left: auto; margin-right: auto; }

.min-320 { min-width: 32rem !important; margin-left: auto; margin-right: auto; }

.min-330 { min-width: 33rem !important; margin-left: auto; margin-right: auto; }

.min-340 { min-width: 34rem !important; margin-left: auto; margin-right: auto; }

.min-350 { min-width: 35rem !important; margin-left: auto; margin-right: auto; }

.min-360 { min-width: 36rem !important; margin-left: auto; margin-right: auto; }

.min-370 { min-width: 37rem !important; margin-left: auto; margin-right: auto; }

.min-380 { min-width: 38rem !important; margin-left: auto; margin-right: auto; }

.min-390 { min-width: 39rem !important; margin-left: auto; margin-right: auto; }

.min-400 { min-width: 40rem !important; margin-left: auto; margin-right: auto; }

.min-410 { min-width: 41rem !important; margin-left: auto; margin-right: auto; }

.min-420 { min-width: 42rem !important; margin-left: auto; margin-right: auto; }

.min-430 { min-width: 43rem !important; margin-left: auto; margin-right: auto; }

.min-440 { min-width: 44rem !important; margin-left: auto; margin-right: auto; }

.min-450 { min-width: 45rem !important; margin-left: auto; margin-right: auto; }

.min-460 { min-width: 46rem !important; margin-left: auto; margin-right: auto; }

.min-470 { min-width: 47rem !important; margin-left: auto; margin-right: auto; }

.min-480 { min-width: 48rem !important; margin-left: auto; margin-right: auto; }

.min-490 { min-width: 49rem !important; margin-left: auto; margin-right: auto; }

.min-500 { min-width: 50rem !important; margin-left: auto; margin-right: auto; }

.min-510 { min-width: 51rem !important; margin-left: auto; margin-right: auto; }

.min-520 { min-width: 52rem !important; margin-left: auto; margin-right: auto; }

.min-530 { min-width: 53rem !important; margin-left: auto; margin-right: auto; }

.min-540 { min-width: 54rem !important; margin-left: auto; margin-right: auto; }

.min-550 { min-width: 55rem !important; margin-left: auto; margin-right: auto; }

.min-560 { min-width: 56rem !important; margin-left: auto; margin-right: auto; }

.min-570 { min-width: 57rem !important; margin-left: auto; margin-right: auto; }

.min-580 { min-width: 58rem !important; margin-left: auto; margin-right: auto; }

.min-590 { min-width: 59rem !important; margin-left: auto; margin-right: auto; }

.min-600 { min-width: 60rem !important; margin-left: auto; margin-right: auto; }

.min-610 { min-width: 61rem !important; margin-left: auto; margin-right: auto; }

.min-620 { min-width: 62rem !important; margin-left: auto; margin-right: auto; }

.min-630 { min-width: 63rem !important; margin-left: auto; margin-right: auto; }

.min-640 { min-width: 64rem !important; margin-left: auto; margin-right: auto; }

.min-650 { min-width: 65rem !important; margin-left: auto; margin-right: auto; }

.min-660 { min-width: 66rem !important; margin-left: auto; margin-right: auto; }

.min-670 { min-width: 67rem !important; margin-left: auto; margin-right: auto; }

.min-680 { min-width: 68rem !important; margin-left: auto; margin-right: auto; }

.min-690 { min-width: 69rem !important; margin-left: auto; margin-right: auto; }

.min-700 { min-width: 70rem !important; margin-left: auto; margin-right: auto; }

.min-710 { min-width: 71rem !important; margin-left: auto; margin-right: auto; }

.min-720 { min-width: 72rem !important; margin-left: auto; margin-right: auto; }

.min-730 { min-width: 73rem !important; margin-left: auto; margin-right: auto; }

.min-740 { min-width: 74rem !important; margin-left: auto; margin-right: auto; }

.min-750 { min-width: 75rem !important; margin-left: auto; margin-right: auto; }

.min-760 { min-width: 76rem !important; margin-left: auto; margin-right: auto; }

.min-770 { min-width: 77rem !important; margin-left: auto; margin-right: auto; }

.min-780 { min-width: 78rem !important; margin-left: auto; margin-right: auto; }

.min-790 { min-width: 79rem !important; margin-left: auto; margin-right: auto; }

.min-800 { min-width: 80rem !important; margin-left: auto; margin-right: auto; }

.min-810 { min-width: 81rem !important; margin-left: auto; margin-right: auto; }

.min-820 { min-width: 82rem !important; margin-left: auto; margin-right: auto; }

.min-830 { min-width: 83rem !important; margin-left: auto; margin-right: auto; }

.min-840 { min-width: 84rem !important; margin-left: auto; margin-right: auto; }

.min-850 { min-width: 85rem !important; margin-left: auto; margin-right: auto; }

.min-860 { min-width: 86rem !important; margin-left: auto; margin-right: auto; }

.min-870 { min-width: 87rem !important; margin-left: auto; margin-right: auto; }

.min-880 { min-width: 88rem !important; margin-left: auto; margin-right: auto; }

.min-890 { min-width: 89rem !important; margin-left: auto; margin-right: auto; }

.min-900 { min-width: 90rem !important; margin-left: auto; margin-right: auto; }

.min-910 { min-width: 91rem !important; margin-left: auto; margin-right: auto; }

.min-920 { min-width: 92rem !important; margin-left: auto; margin-right: auto; }

.min-930 { min-width: 93rem !important; margin-left: auto; margin-right: auto; }

.min-940 { min-width: 94rem !important; margin-left: auto; margin-right: auto; }

.min-950 { min-width: 95rem !important; margin-left: auto; margin-right: auto; }

.min-960 { min-width: 96rem !important; margin-left: auto; margin-right: auto; }

.min-970 { min-width: 97rem !important; margin-left: auto; margin-right: auto; }

.min-980 { min-width: 98rem !important; margin-left: auto; margin-right: auto; }

.min-990 { min-width: 99rem !important; margin-left: auto; margin-right: auto; }

.min-1000 { min-width: 100rem !important; margin-left: auto; margin-right: auto; }

.min-1010 { min-width: 101rem !important; margin-left: auto; margin-right: auto; }

.min-1020 { min-width: 102rem !important; margin-left: auto; margin-right: auto; }

.min-1030 { min-width: 103rem !important; margin-left: auto; margin-right: auto; }

.min-1040 { min-width: 104rem !important; margin-left: auto; margin-right: auto; }

.min-1050 { min-width: 105rem !important; margin-left: auto; margin-right: auto; }

.min-1060 { min-width: 106rem !important; margin-left: auto; margin-right: auto; }

.min-1070 { min-width: 107rem !important; margin-left: auto; margin-right: auto; }

.min-1080 { min-width: 108rem !important; margin-left: auto; margin-right: auto; }

.min-1090 { min-width: 109rem !important; margin-left: auto; margin-right: auto; }

.min-1100 { min-width: 110rem !important; margin-left: auto; margin-right: auto; }

.min-1110 { min-width: 111rem !important; margin-left: auto; margin-right: auto; }

.min-1120 { min-width: 112rem !important; margin-left: auto; margin-right: auto; }

.min-1130 { min-width: 113rem !important; margin-left: auto; margin-right: auto; }

.min-1140 { min-width: 114rem !important; margin-left: auto; margin-right: auto; }

.min-1150 { min-width: 115rem !important; margin-left: auto; margin-right: auto; }

.min-1160 { min-width: 116rem !important; margin-left: auto; margin-right: auto; }

.min-1170 { min-width: 117rem !important; margin-left: auto; margin-right: auto; }

.min-1180 { min-width: 118rem !important; margin-left: auto; margin-right: auto; }

.min-1190 { min-width: 119rem !important; margin-left: auto; margin-right: auto; }

.min-1200 { min-width: 120rem !important; margin-left: auto; margin-right: auto; }

.min-1210 { min-width: 121rem !important; margin-left: auto; margin-right: auto; }

.min-1220 { min-width: 122rem !important; margin-left: auto; margin-right: auto; }

.min-1230 { min-width: 123rem !important; margin-left: auto; margin-right: auto; }

.min-1240 { min-width: 124rem !important; margin-left: auto; margin-right: auto; }

.min-1250 { min-width: 125rem !important; margin-left: auto; margin-right: auto; }

.min-1260 { min-width: 126rem !important; margin-left: auto; margin-right: auto; }

.min-1270 { min-width: 127rem !important; margin-left: auto; margin-right: auto; }

.min-1280 { min-width: 128rem !important; margin-left: auto; margin-right: auto; }

.min-1290 { min-width: 129rem !important; margin-left: auto; margin-right: auto; }

.min-1300 { min-width: 130rem !important; margin-left: auto; margin-right: auto; }

.min-1310 { min-width: 131rem !important; margin-left: auto; margin-right: auto; }

.min-1320 { min-width: 132rem !important; margin-left: auto; margin-right: auto; }

.min-1330 { min-width: 133rem !important; margin-left: auto; margin-right: auto; }

.min-1340 { min-width: 134rem !important; margin-left: auto; margin-right: auto; }

.min-1350 { min-width: 135rem !important; margin-left: auto; margin-right: auto; }

.min-1360 { min-width: 136rem !important; margin-left: auto; margin-right: auto; }

.min-1370 { min-width: 137rem !important; margin-left: auto; margin-right: auto; }

.min-1380 { min-width: 138rem !important; margin-left: auto; margin-right: auto; }

.min-1390 { min-width: 139rem !important; margin-left: auto; margin-right: auto; }

.min-1400 { min-width: 140rem !important; margin-left: auto; margin-right: auto; }

.min-1410 { min-width: 141rem !important; margin-left: auto; margin-right: auto; }

.min-1420 { min-width: 142rem !important; margin-left: auto; margin-right: auto; }

.min-1430 { min-width: 143rem !important; margin-left: auto; margin-right: auto; }

.min-1440 { min-width: 144rem !important; margin-left: auto; margin-right: auto; }

.min-1450 { min-width: 145rem !important; margin-left: auto; margin-right: auto; }

.min-1460 { min-width: 146rem !important; margin-left: auto; margin-right: auto; }

.min-1470 { min-width: 147rem !important; margin-left: auto; margin-right: auto; }

.min-1480 { min-width: 148rem !important; margin-left: auto; margin-right: auto; }

.min-1490 { min-width: 149rem !important; margin-left: auto; margin-right: auto; }

.min-1500 { min-width: 150rem !important; margin-left: auto; margin-right: auto; }

/* 幅 / 高さの設定 */
.width-10 { width: 1rem !important; }

@media (min-width: 991px) { .width-lg-10 { width: 1rem !important; } }

.width-20 { width: 2rem !important; }

@media (min-width: 991px) { .width-lg-20 { width: 2rem !important; } }

.width-30 { width: 3rem !important; }

@media (min-width: 991px) { .width-lg-30 { width: 3rem !important; } }

.width-40 { width: 4rem !important; }

@media (min-width: 991px) { .width-lg-40 { width: 4rem !important; } }

.width-50 { width: 5rem !important; }

@media (min-width: 991px) { .width-lg-50 { width: 5rem !important; } }

.width-60 { width: 6rem !important; }

@media (min-width: 991px) { .width-lg-60 { width: 6rem !important; } }

.width-70 { width: 7rem !important; }

@media (min-width: 991px) { .width-lg-70 { width: 7rem !important; } }

.width-80 { width: 8rem !important; }

@media (min-width: 991px) { .width-lg-80 { width: 8rem !important; } }

.width-90 { width: 9rem !important; }

@media (min-width: 991px) { .width-lg-90 { width: 9rem !important; } }

.width-100 { width: 10rem !important; }

@media (min-width: 991px) { .width-lg-100 { width: 10rem !important; } }

.width-110 { width: 11rem !important; }

@media (min-width: 991px) { .width-lg-110 { width: 11rem !important; } }

.width-120 { width: 12rem !important; }

@media (min-width: 991px) { .width-lg-120 { width: 12rem !important; } }

.width-130 { width: 13rem !important; }

@media (min-width: 991px) { .width-lg-130 { width: 13rem !important; } }

.width-140 { width: 14rem !important; }

@media (min-width: 991px) { .width-lg-140 { width: 14rem !important; } }

.width-150 { width: 15rem !important; }

@media (min-width: 991px) { .width-lg-150 { width: 15rem !important; } }

.width-160 { width: 16rem !important; }

@media (min-width: 991px) { .width-lg-160 { width: 16rem !important; } }

.width-170 { width: 17rem !important; }

@media (min-width: 991px) { .width-lg-170 { width: 17rem !important; } }

.width-180 { width: 18rem !important; }

@media (min-width: 991px) { .width-lg-180 { width: 18rem !important; } }

.width-190 { width: 19rem !important; }

@media (min-width: 991px) { .width-lg-190 { width: 19rem !important; } }

.width-200 { width: 20rem !important; }

@media (min-width: 991px) { .width-lg-200 { width: 20rem !important; } }

.width-210 { width: 21rem !important; }

@media (min-width: 991px) { .width-lg-210 { width: 21rem !important; } }

.width-220 { width: 22rem !important; }

@media (min-width: 991px) { .width-lg-220 { width: 22rem !important; } }

.width-230 { width: 23rem !important; }

@media (min-width: 991px) { .width-lg-230 { width: 23rem !important; } }

.width-240 { width: 24rem !important; }

@media (min-width: 991px) { .width-lg-240 { width: 24rem !important; } }

.width-250 { width: 25rem !important; }

@media (min-width: 991px) { .width-lg-250 { width: 25rem !important; } }

.width-260 { width: 26rem !important; }

@media (min-width: 991px) { .width-lg-260 { width: 26rem !important; } }

.width-270 { width: 27rem !important; }

@media (min-width: 991px) { .width-lg-270 { width: 27rem !important; } }

.width-280 { width: 28rem !important; }

@media (min-width: 991px) { .width-lg-280 { width: 28rem !important; } }

.width-290 { width: 29rem !important; }

@media (min-width: 991px) { .width-lg-290 { width: 29rem !important; } }

.width-300 { width: 30rem !important; }

@media (min-width: 991px) { .width-lg-300 { width: 30rem !important; } }

.width-310 { width: 31rem !important; }

@media (min-width: 991px) { .width-lg-310 { width: 31rem !important; } }

.width-320 { width: 32rem !important; }

@media (min-width: 991px) { .width-lg-320 { width: 32rem !important; } }

.width-330 { width: 33rem !important; }

@media (min-width: 991px) { .width-lg-330 { width: 33rem !important; } }

.width-340 { width: 34rem !important; }

@media (min-width: 991px) { .width-lg-340 { width: 34rem !important; } }

.width-350 { width: 35rem !important; }

@media (min-width: 991px) { .width-lg-350 { width: 35rem !important; } }

.width-360 { width: 36rem !important; }

@media (min-width: 991px) { .width-lg-360 { width: 36rem !important; } }

.width-370 { width: 37rem !important; }

@media (min-width: 991px) { .width-lg-370 { width: 37rem !important; } }

.width-380 { width: 38rem !important; }

@media (min-width: 991px) { .width-lg-380 { width: 38rem !important; } }

.width-390 { width: 39rem !important; }

@media (min-width: 991px) { .width-lg-390 { width: 39rem !important; } }

.width-400 { width: 40rem !important; }

@media (min-width: 991px) { .width-lg-400 { width: 40rem !important; } }

.width-410 { width: 41rem !important; }

@media (min-width: 991px) { .width-lg-410 { width: 41rem !important; } }

.width-420 { width: 42rem !important; }

@media (min-width: 991px) { .width-lg-420 { width: 42rem !important; } }

.width-430 { width: 43rem !important; }

@media (min-width: 991px) { .width-lg-430 { width: 43rem !important; } }

.width-440 { width: 44rem !important; }

@media (min-width: 991px) { .width-lg-440 { width: 44rem !important; } }

.width-450 { width: 45rem !important; }

@media (min-width: 991px) { .width-lg-450 { width: 45rem !important; } }

.width-460 { width: 46rem !important; }

@media (min-width: 991px) { .width-lg-460 { width: 46rem !important; } }

.width-470 { width: 47rem !important; }

@media (min-width: 991px) { .width-lg-470 { width: 47rem !important; } }

.width-480 { width: 48rem !important; }

@media (min-width: 991px) { .width-lg-480 { width: 48rem !important; } }

.width-490 { width: 49rem !important; }

@media (min-width: 991px) { .width-lg-490 { width: 49rem !important; } }

.width-500 { width: 50rem !important; }

@media (min-width: 991px) { .width-lg-500 { width: 50rem !important; } }

.width-510 { width: 51rem !important; }

@media (min-width: 991px) { .width-lg-510 { width: 51rem !important; } }

.width-520 { width: 52rem !important; }

@media (min-width: 991px) { .width-lg-520 { width: 52rem !important; } }

.width-530 { width: 53rem !important; }

@media (min-width: 991px) { .width-lg-530 { width: 53rem !important; } }

.width-540 { width: 54rem !important; }

@media (min-width: 991px) { .width-lg-540 { width: 54rem !important; } }

.width-550 { width: 55rem !important; }

@media (min-width: 991px) { .width-lg-550 { width: 55rem !important; } }

.width-560 { width: 56rem !important; }

@media (min-width: 991px) { .width-lg-560 { width: 56rem !important; } }

.width-570 { width: 57rem !important; }

@media (min-width: 991px) { .width-lg-570 { width: 57rem !important; } }

.width-580 { width: 58rem !important; }

@media (min-width: 991px) { .width-lg-580 { width: 58rem !important; } }

.width-590 { width: 59rem !important; }

@media (min-width: 991px) { .width-lg-590 { width: 59rem !important; } }

.width-600 { width: 60rem !important; }

@media (min-width: 991px) { .width-lg-600 { width: 60rem !important; } }

.width-610 { width: 61rem !important; }

@media (min-width: 991px) { .width-lg-610 { width: 61rem !important; } }

.width-620 { width: 62rem !important; }

@media (min-width: 991px) { .width-lg-620 { width: 62rem !important; } }

.width-630 { width: 63rem !important; }

@media (min-width: 991px) { .width-lg-630 { width: 63rem !important; } }

.width-640 { width: 64rem !important; }

@media (min-width: 991px) { .width-lg-640 { width: 64rem !important; } }

.width-650 { width: 65rem !important; }

@media (min-width: 991px) { .width-lg-650 { width: 65rem !important; } }

.width-660 { width: 66rem !important; }

@media (min-width: 991px) { .width-lg-660 { width: 66rem !important; } }

.width-670 { width: 67rem !important; }

@media (min-width: 991px) { .width-lg-670 { width: 67rem !important; } }

.width-680 { width: 68rem !important; }

@media (min-width: 991px) { .width-lg-680 { width: 68rem !important; } }

.width-690 { width: 69rem !important; }

@media (min-width: 991px) { .width-lg-690 { width: 69rem !important; } }

.width-700 { width: 70rem !important; }

@media (min-width: 991px) { .width-lg-700 { width: 70rem !important; } }

.width-710 { width: 71rem !important; }

@media (min-width: 991px) { .width-lg-710 { width: 71rem !important; } }

.width-720 { width: 72rem !important; }

@media (min-width: 991px) { .width-lg-720 { width: 72rem !important; } }

.width-730 { width: 73rem !important; }

@media (min-width: 991px) { .width-lg-730 { width: 73rem !important; } }

.width-740 { width: 74rem !important; }

@media (min-width: 991px) { .width-lg-740 { width: 74rem !important; } }

.width-750 { width: 75rem !important; }

@media (min-width: 991px) { .width-lg-750 { width: 75rem !important; } }

.width-760 { width: 76rem !important; }

@media (min-width: 991px) { .width-lg-760 { width: 76rem !important; } }

.width-770 { width: 77rem !important; }

@media (min-width: 991px) { .width-lg-770 { width: 77rem !important; } }

.width-780 { width: 78rem !important; }

@media (min-width: 991px) { .width-lg-780 { width: 78rem !important; } }

.width-790 { width: 79rem !important; }

@media (min-width: 991px) { .width-lg-790 { width: 79rem !important; } }

.width-800 { width: 80rem !important; }

@media (min-width: 991px) { .width-lg-800 { width: 80rem !important; } }

.width-810 { width: 81rem !important; }

@media (min-width: 991px) { .width-lg-810 { width: 81rem !important; } }

.width-820 { width: 82rem !important; }

@media (min-width: 991px) { .width-lg-820 { width: 82rem !important; } }

.width-830 { width: 83rem !important; }

@media (min-width: 991px) { .width-lg-830 { width: 83rem !important; } }

.width-840 { width: 84rem !important; }

@media (min-width: 991px) { .width-lg-840 { width: 84rem !important; } }

.width-850 { width: 85rem !important; }

@media (min-width: 991px) { .width-lg-850 { width: 85rem !important; } }

.width-860 { width: 86rem !important; }

@media (min-width: 991px) { .width-lg-860 { width: 86rem !important; } }

.width-870 { width: 87rem !important; }

@media (min-width: 991px) { .width-lg-870 { width: 87rem !important; } }

.width-880 { width: 88rem !important; }

@media (min-width: 991px) { .width-lg-880 { width: 88rem !important; } }

.width-890 { width: 89rem !important; }

@media (min-width: 991px) { .width-lg-890 { width: 89rem !important; } }

.width-900 { width: 90rem !important; }

@media (min-width: 991px) { .width-lg-900 { width: 90rem !important; } }

.width-910 { width: 91rem !important; }

@media (min-width: 991px) { .width-lg-910 { width: 91rem !important; } }

.width-920 { width: 92rem !important; }

@media (min-width: 991px) { .width-lg-920 { width: 92rem !important; } }

.width-930 { width: 93rem !important; }

@media (min-width: 991px) { .width-lg-930 { width: 93rem !important; } }

.width-940 { width: 94rem !important; }

@media (min-width: 991px) { .width-lg-940 { width: 94rem !important; } }

.width-950 { width: 95rem !important; }

@media (min-width: 991px) { .width-lg-950 { width: 95rem !important; } }

.width-960 { width: 96rem !important; }

@media (min-width: 991px) { .width-lg-960 { width: 96rem !important; } }

.width-970 { width: 97rem !important; }

@media (min-width: 991px) { .width-lg-970 { width: 97rem !important; } }

.width-980 { width: 98rem !important; }

@media (min-width: 991px) { .width-lg-980 { width: 98rem !important; } }

.width-990 { width: 99rem !important; }

@media (min-width: 991px) { .width-lg-990 { width: 99rem !important; } }

.width-1000 { width: 100rem !important; }

@media (min-width: 991px) { .width-lg-1000 { width: 100rem !important; } }

.width-1010 { width: 101rem !important; }

@media (min-width: 991px) { .width-lg-1010 { width: 101rem !important; } }

.width-1020 { width: 102rem !important; }

@media (min-width: 991px) { .width-lg-1020 { width: 102rem !important; } }

.width-1030 { width: 103rem !important; }

@media (min-width: 991px) { .width-lg-1030 { width: 103rem !important; } }

.width-1040 { width: 104rem !important; }

@media (min-width: 991px) { .width-lg-1040 { width: 104rem !important; } }

.width-1050 { width: 105rem !important; }

@media (min-width: 991px) { .width-lg-1050 { width: 105rem !important; } }

.width-1060 { width: 106rem !important; }

@media (min-width: 991px) { .width-lg-1060 { width: 106rem !important; } }

.width-1070 { width: 107rem !important; }

@media (min-width: 991px) { .width-lg-1070 { width: 107rem !important; } }

.width-1080 { width: 108rem !important; }

@media (min-width: 991px) { .width-lg-1080 { width: 108rem !important; } }

.width-1090 { width: 109rem !important; }

@media (min-width: 991px) { .width-lg-1090 { width: 109rem !important; } }

.width-1100 { width: 110rem !important; }

@media (min-width: 991px) { .width-lg-1100 { width: 110rem !important; } }

.width-1110 { width: 111rem !important; }

@media (min-width: 991px) { .width-lg-1110 { width: 111rem !important; } }

.width-1120 { width: 112rem !important; }

@media (min-width: 991px) { .width-lg-1120 { width: 112rem !important; } }

.width-1130 { width: 113rem !important; }

@media (min-width: 991px) { .width-lg-1130 { width: 113rem !important; } }

.width-1140 { width: 114rem !important; }

@media (min-width: 991px) { .width-lg-1140 { width: 114rem !important; } }

.width-1150 { width: 115rem !important; }

@media (min-width: 991px) { .width-lg-1150 { width: 115rem !important; } }

.width-1160 { width: 116rem !important; }

@media (min-width: 991px) { .width-lg-1160 { width: 116rem !important; } }

.width-1170 { width: 117rem !important; }

@media (min-width: 991px) { .width-lg-1170 { width: 117rem !important; } }

.width-1180 { width: 118rem !important; }

@media (min-width: 991px) { .width-lg-1180 { width: 118rem !important; } }

.width-1190 { width: 119rem !important; }

@media (min-width: 991px) { .width-lg-1190 { width: 119rem !important; } }

.width-1200 { width: 120rem !important; }

@media (min-width: 991px) { .width-lg-1200 { width: 120rem !important; } }

.width-1210 { width: 121rem !important; }

@media (min-width: 991px) { .width-lg-1210 { width: 121rem !important; } }

.width-1220 { width: 122rem !important; }

@media (min-width: 991px) { .width-lg-1220 { width: 122rem !important; } }

.width-1230 { width: 123rem !important; }

@media (min-width: 991px) { .width-lg-1230 { width: 123rem !important; } }

.width-1240 { width: 124rem !important; }

@media (min-width: 991px) { .width-lg-1240 { width: 124rem !important; } }

.width-1250 { width: 125rem !important; }

@media (min-width: 991px) { .width-lg-1250 { width: 125rem !important; } }

.width-1260 { width: 126rem !important; }

@media (min-width: 991px) { .width-lg-1260 { width: 126rem !important; } }

.width-1270 { width: 127rem !important; }

@media (min-width: 991px) { .width-lg-1270 { width: 127rem !important; } }

.width-1280 { width: 128rem !important; }

@media (min-width: 991px) { .width-lg-1280 { width: 128rem !important; } }

.width-1290 { width: 129rem !important; }

@media (min-width: 991px) { .width-lg-1290 { width: 129rem !important; } }

.width-1300 { width: 130rem !important; }

@media (min-width: 991px) { .width-lg-1300 { width: 130rem !important; } }

.width-1310 { width: 131rem !important; }

@media (min-width: 991px) { .width-lg-1310 { width: 131rem !important; } }

.width-1320 { width: 132rem !important; }

@media (min-width: 991px) { .width-lg-1320 { width: 132rem !important; } }

.width-1330 { width: 133rem !important; }

@media (min-width: 991px) { .width-lg-1330 { width: 133rem !important; } }

.width-1340 { width: 134rem !important; }

@media (min-width: 991px) { .width-lg-1340 { width: 134rem !important; } }

.width-1350 { width: 135rem !important; }

@media (min-width: 991px) { .width-lg-1350 { width: 135rem !important; } }

.width-1360 { width: 136rem !important; }

@media (min-width: 991px) { .width-lg-1360 { width: 136rem !important; } }

.width-1370 { width: 137rem !important; }

@media (min-width: 991px) { .width-lg-1370 { width: 137rem !important; } }

.width-1380 { width: 138rem !important; }

@media (min-width: 991px) { .width-lg-1380 { width: 138rem !important; } }

.width-1390 { width: 139rem !important; }

@media (min-width: 991px) { .width-lg-1390 { width: 139rem !important; } }

.width-1400 { width: 140rem !important; }

@media (min-width: 991px) { .width-lg-1400 { width: 140rem !important; } }

.width-1410 { width: 141rem !important; }

@media (min-width: 991px) { .width-lg-1410 { width: 141rem !important; } }

.width-1420 { width: 142rem !important; }

@media (min-width: 991px) { .width-lg-1420 { width: 142rem !important; } }

.width-1430 { width: 143rem !important; }

@media (min-width: 991px) { .width-lg-1430 { width: 143rem !important; } }

.width-1440 { width: 144rem !important; }

@media (min-width: 991px) { .width-lg-1440 { width: 144rem !important; } }

.width-1450 { width: 145rem !important; }

@media (min-width: 991px) { .width-lg-1450 { width: 145rem !important; } }

.width-1460 { width: 146rem !important; }

@media (min-width: 991px) { .width-lg-1460 { width: 146rem !important; } }

.width-1470 { width: 147rem !important; }

@media (min-width: 991px) { .width-lg-1470 { width: 147rem !important; } }

.width-1480 { width: 148rem !important; }

@media (min-width: 991px) { .width-lg-1480 { width: 148rem !important; } }

.width-1490 { width: 149rem !important; }

@media (min-width: 991px) { .width-lg-1490 { width: 149rem !important; } }

.width-1500 { width: 150rem !important; }

@media (min-width: 991px) { .width-lg-1500 { width: 150rem !important; } }

.width-per-10 { width: 10% !important; }

@media (min-width: 991px) { .width-lg-per-10 { width: 10% !important; } }

.width-per-20 { width: 20% !important; }

@media (min-width: 991px) { .width-lg-per-20 { width: 20% !important; } }

.width-per-30 { width: 30% !important; }

@media (min-width: 991px) { .width-lg-per-30 { width: 30% !important; } }

.width-per-40 { width: 40% !important; }

@media (min-width: 991px) { .width-lg-per-40 { width: 40% !important; } }

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

@media (min-width: 991px) { .width-lg-per-50 { width: 50% !important; } }

.width-per-60 { width: 60% !important; }

@media (min-width: 991px) { .width-lg-per-60 { width: 60% !important; } }

.width-per-70 { width: 70% !important; }

@media (min-width: 991px) { .width-lg-per-70 { width: 70% !important; } }

.width-per-80 { width: 80% !important; }

@media (min-width: 991px) { .width-lg-per-80 { width: 80% !important; } }

.width-per-90 { width: 90% !important; }

@media (min-width: 991px) { .width-lg-per-90 { width: 90% !important; } }

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

@media (min-width: 991px) { .width-lg-per-100 { width: 100% !important; } }

.height-10 { height: 1rem !important; }

@media (min-width: 991px) { .height-lg-10 { height: 1rem !important; } }

.height-20 { height: 2rem !important; }

@media (min-width: 991px) { .height-lg-20 { height: 2rem !important; } }

.height-30 { height: 3rem !important; }

@media (min-width: 991px) { .height-lg-30 { height: 3rem !important; } }

.height-40 { height: 4rem !important; }

@media (min-width: 991px) { .height-lg-40 { height: 4rem !important; } }

.height-50 { height: 5rem !important; }

@media (min-width: 991px) { .height-lg-50 { height: 5rem !important; } }

.height-60 { height: 6rem !important; }

@media (min-width: 991px) { .height-lg-60 { height: 6rem !important; } }

.height-70 { height: 7rem !important; }

@media (min-width: 991px) { .height-lg-70 { height: 7rem !important; } }

.height-80 { height: 8rem !important; }

@media (min-width: 991px) { .height-lg-80 { height: 8rem !important; } }

.height-90 { height: 9rem !important; }

@media (min-width: 991px) { .height-lg-90 { height: 9rem !important; } }

.height-100 { height: 10rem !important; }

@media (min-width: 991px) { .height-lg-100 { height: 10rem !important; } }

.height-110 { height: 11rem !important; }

@media (min-width: 991px) { .height-lg-110 { height: 11rem !important; } }

.height-120 { height: 12rem !important; }

@media (min-width: 991px) { .height-lg-120 { height: 12rem !important; } }

.height-130 { height: 13rem !important; }

@media (min-width: 991px) { .height-lg-130 { height: 13rem !important; } }

.height-140 { height: 14rem !important; }

@media (min-width: 991px) { .height-lg-140 { height: 14rem !important; } }

.height-150 { height: 15rem !important; }

@media (min-width: 991px) { .height-lg-150 { height: 15rem !important; } }

.height-160 { height: 16rem !important; }

@media (min-width: 991px) { .height-lg-160 { height: 16rem !important; } }

.height-170 { height: 17rem !important; }

@media (min-width: 991px) { .height-lg-170 { height: 17rem !important; } }

.height-180 { height: 18rem !important; }

@media (min-width: 991px) { .height-lg-180 { height: 18rem !important; } }

.height-190 { height: 19rem !important; }

@media (min-width: 991px) { .height-lg-190 { height: 19rem !important; } }

.height-200 { height: 20rem !important; }

@media (min-width: 991px) { .height-lg-200 { height: 20rem !important; } }

.height-210 { height: 21rem !important; }

@media (min-width: 991px) { .height-lg-210 { height: 21rem !important; } }

.height-220 { height: 22rem !important; }

@media (min-width: 991px) { .height-lg-220 { height: 22rem !important; } }

.height-230 { height: 23rem !important; }

@media (min-width: 991px) { .height-lg-230 { height: 23rem !important; } }

.height-240 { height: 24rem !important; }

@media (min-width: 991px) { .height-lg-240 { height: 24rem !important; } }

.height-250 { height: 25rem !important; }

@media (min-width: 991px) { .height-lg-250 { height: 25rem !important; } }

.height-260 { height: 26rem !important; }

@media (min-width: 991px) { .height-lg-260 { height: 26rem !important; } }

.height-270 { height: 27rem !important; }

@media (min-width: 991px) { .height-lg-270 { height: 27rem !important; } }

.height-280 { height: 28rem !important; }

@media (min-width: 991px) { .height-lg-280 { height: 28rem !important; } }

.height-290 { height: 29rem !important; }

@media (min-width: 991px) { .height-lg-290 { height: 29rem !important; } }

.height-300 { height: 30rem !important; }

@media (min-width: 991px) { .height-lg-300 { height: 30rem !important; } }

.height-310 { height: 31rem !important; }

@media (min-width: 991px) { .height-lg-310 { height: 31rem !important; } }

.height-320 { height: 32rem !important; }

@media (min-width: 991px) { .height-lg-320 { height: 32rem !important; } }

.height-330 { height: 33rem !important; }

@media (min-width: 991px) { .height-lg-330 { height: 33rem !important; } }

.height-340 { height: 34rem !important; }

@media (min-width: 991px) { .height-lg-340 { height: 34rem !important; } }

.height-350 { height: 35rem !important; }

@media (min-width: 991px) { .height-lg-350 { height: 35rem !important; } }

.height-360 { height: 36rem !important; }

@media (min-width: 991px) { .height-lg-360 { height: 36rem !important; } }

.height-370 { height: 37rem !important; }

@media (min-width: 991px) { .height-lg-370 { height: 37rem !important; } }

.height-380 { height: 38rem !important; }

@media (min-width: 991px) { .height-lg-380 { height: 38rem !important; } }

.height-390 { height: 39rem !important; }

@media (min-width: 991px) { .height-lg-390 { height: 39rem !important; } }

.height-400 { height: 40rem !important; }

@media (min-width: 991px) { .height-lg-400 { height: 40rem !important; } }

.height-410 { height: 41rem !important; }

@media (min-width: 991px) { .height-lg-410 { height: 41rem !important; } }

.height-420 { height: 42rem !important; }

@media (min-width: 991px) { .height-lg-420 { height: 42rem !important; } }

.height-430 { height: 43rem !important; }

@media (min-width: 991px) { .height-lg-430 { height: 43rem !important; } }

.height-440 { height: 44rem !important; }

@media (min-width: 991px) { .height-lg-440 { height: 44rem !important; } }

.height-450 { height: 45rem !important; }

@media (min-width: 991px) { .height-lg-450 { height: 45rem !important; } }

.height-460 { height: 46rem !important; }

@media (min-width: 991px) { .height-lg-460 { height: 46rem !important; } }

.height-470 { height: 47rem !important; }

@media (min-width: 991px) { .height-lg-470 { height: 47rem !important; } }

.height-480 { height: 48rem !important; }

@media (min-width: 991px) { .height-lg-480 { height: 48rem !important; } }

.height-490 { height: 49rem !important; }

@media (min-width: 991px) { .height-lg-490 { height: 49rem !important; } }

.height-500 { height: 50rem !important; }

@media (min-width: 991px) { .height-lg-500 { height: 50rem !important; } }

.height-510 { height: 51rem !important; }

@media (min-width: 991px) { .height-lg-510 { height: 51rem !important; } }

.height-520 { height: 52rem !important; }

@media (min-width: 991px) { .height-lg-520 { height: 52rem !important; } }

.height-530 { height: 53rem !important; }

@media (min-width: 991px) { .height-lg-530 { height: 53rem !important; } }

.height-540 { height: 54rem !important; }

@media (min-width: 991px) { .height-lg-540 { height: 54rem !important; } }

.height-550 { height: 55rem !important; }

@media (min-width: 991px) { .height-lg-550 { height: 55rem !important; } }

.height-560 { height: 56rem !important; }

@media (min-width: 991px) { .height-lg-560 { height: 56rem !important; } }

.height-570 { height: 57rem !important; }

@media (min-width: 991px) { .height-lg-570 { height: 57rem !important; } }

.height-580 { height: 58rem !important; }

@media (min-width: 991px) { .height-lg-580 { height: 58rem !important; } }

.height-590 { height: 59rem !important; }

@media (min-width: 991px) { .height-lg-590 { height: 59rem !important; } }

.height-600 { height: 60rem !important; }

@media (min-width: 991px) { .height-lg-600 { height: 60rem !important; } }

.height-610 { height: 61rem !important; }

@media (min-width: 991px) { .height-lg-610 { height: 61rem !important; } }

.height-620 { height: 62rem !important; }

@media (min-width: 991px) { .height-lg-620 { height: 62rem !important; } }

.height-630 { height: 63rem !important; }

@media (min-width: 991px) { .height-lg-630 { height: 63rem !important; } }

.height-640 { height: 64rem !important; }

@media (min-width: 991px) { .height-lg-640 { height: 64rem !important; } }

.height-650 { height: 65rem !important; }

@media (min-width: 991px) { .height-lg-650 { height: 65rem !important; } }

.height-660 { height: 66rem !important; }

@media (min-width: 991px) { .height-lg-660 { height: 66rem !important; } }

.height-670 { height: 67rem !important; }

@media (min-width: 991px) { .height-lg-670 { height: 67rem !important; } }

.height-680 { height: 68rem !important; }

@media (min-width: 991px) { .height-lg-680 { height: 68rem !important; } }

.height-690 { height: 69rem !important; }

@media (min-width: 991px) { .height-lg-690 { height: 69rem !important; } }

.height-700 { height: 70rem !important; }

@media (min-width: 991px) { .height-lg-700 { height: 70rem !important; } }

.height-710 { height: 71rem !important; }

@media (min-width: 991px) { .height-lg-710 { height: 71rem !important; } }

.height-720 { height: 72rem !important; }

@media (min-width: 991px) { .height-lg-720 { height: 72rem !important; } }

.height-730 { height: 73rem !important; }

@media (min-width: 991px) { .height-lg-730 { height: 73rem !important; } }

.height-740 { height: 74rem !important; }

@media (min-width: 991px) { .height-lg-740 { height: 74rem !important; } }

.height-750 { height: 75rem !important; }

@media (min-width: 991px) { .height-lg-750 { height: 75rem !important; } }

.height-760 { height: 76rem !important; }

@media (min-width: 991px) { .height-lg-760 { height: 76rem !important; } }

.height-770 { height: 77rem !important; }

@media (min-width: 991px) { .height-lg-770 { height: 77rem !important; } }

.height-780 { height: 78rem !important; }

@media (min-width: 991px) { .height-lg-780 { height: 78rem !important; } }

.height-790 { height: 79rem !important; }

@media (min-width: 991px) { .height-lg-790 { height: 79rem !important; } }

.height-800 { height: 80rem !important; }

@media (min-width: 991px) { .height-lg-800 { height: 80rem !important; } }

.height-810 { height: 81rem !important; }

@media (min-width: 991px) { .height-lg-810 { height: 81rem !important; } }

.height-820 { height: 82rem !important; }

@media (min-width: 991px) { .height-lg-820 { height: 82rem !important; } }

.height-830 { height: 83rem !important; }

@media (min-width: 991px) { .height-lg-830 { height: 83rem !important; } }

.height-840 { height: 84rem !important; }

@media (min-width: 991px) { .height-lg-840 { height: 84rem !important; } }

.height-850 { height: 85rem !important; }

@media (min-width: 991px) { .height-lg-850 { height: 85rem !important; } }

.height-860 { height: 86rem !important; }

@media (min-width: 991px) { .height-lg-860 { height: 86rem !important; } }

.height-870 { height: 87rem !important; }

@media (min-width: 991px) { .height-lg-870 { height: 87rem !important; } }

.height-880 { height: 88rem !important; }

@media (min-width: 991px) { .height-lg-880 { height: 88rem !important; } }

.height-890 { height: 89rem !important; }

@media (min-width: 991px) { .height-lg-890 { height: 89rem !important; } }

.height-900 { height: 90rem !important; }

@media (min-width: 991px) { .height-lg-900 { height: 90rem !important; } }

.height-910 { height: 91rem !important; }

@media (min-width: 991px) { .height-lg-910 { height: 91rem !important; } }

.height-920 { height: 92rem !important; }

@media (min-width: 991px) { .height-lg-920 { height: 92rem !important; } }

.height-930 { height: 93rem !important; }

@media (min-width: 991px) { .height-lg-930 { height: 93rem !important; } }

.height-940 { height: 94rem !important; }

@media (min-width: 991px) { .height-lg-940 { height: 94rem !important; } }

.height-950 { height: 95rem !important; }

@media (min-width: 991px) { .height-lg-950 { height: 95rem !important; } }

.height-960 { height: 96rem !important; }

@media (min-width: 991px) { .height-lg-960 { height: 96rem !important; } }

.height-970 { height: 97rem !important; }

@media (min-width: 991px) { .height-lg-970 { height: 97rem !important; } }

.height-980 { height: 98rem !important; }

@media (min-width: 991px) { .height-lg-980 { height: 98rem !important; } }

.height-990 { height: 99rem !important; }

@media (min-width: 991px) { .height-lg-990 { height: 99rem !important; } }

.height-1000 { height: 100rem !important; }

@media (min-width: 991px) { .height-lg-1000 { height: 100rem !important; } }

.height-1010 { height: 101rem !important; }

@media (min-width: 991px) { .height-lg-1010 { height: 101rem !important; } }

.height-1020 { height: 102rem !important; }

@media (min-width: 991px) { .height-lg-1020 { height: 102rem !important; } }

.height-1030 { height: 103rem !important; }

@media (min-width: 991px) { .height-lg-1030 { height: 103rem !important; } }

.height-1040 { height: 104rem !important; }

@media (min-width: 991px) { .height-lg-1040 { height: 104rem !important; } }

.height-1050 { height: 105rem !important; }

@media (min-width: 991px) { .height-lg-1050 { height: 105rem !important; } }

.height-1060 { height: 106rem !important; }

@media (min-width: 991px) { .height-lg-1060 { height: 106rem !important; } }

.height-1070 { height: 107rem !important; }

@media (min-width: 991px) { .height-lg-1070 { height: 107rem !important; } }

.height-1080 { height: 108rem !important; }

@media (min-width: 991px) { .height-lg-1080 { height: 108rem !important; } }

.height-1090 { height: 109rem !important; }

@media (min-width: 991px) { .height-lg-1090 { height: 109rem !important; } }

.height-1100 { height: 110rem !important; }

@media (min-width: 991px) { .height-lg-1100 { height: 110rem !important; } }

.height-1110 { height: 111rem !important; }

@media (min-width: 991px) { .height-lg-1110 { height: 111rem !important; } }

.height-1120 { height: 112rem !important; }

@media (min-width: 991px) { .height-lg-1120 { height: 112rem !important; } }

.height-1130 { height: 113rem !important; }

@media (min-width: 991px) { .height-lg-1130 { height: 113rem !important; } }

.height-1140 { height: 114rem !important; }

@media (min-width: 991px) { .height-lg-1140 { height: 114rem !important; } }

.height-1150 { height: 115rem !important; }

@media (min-width: 991px) { .height-lg-1150 { height: 115rem !important; } }

.height-1160 { height: 116rem !important; }

@media (min-width: 991px) { .height-lg-1160 { height: 116rem !important; } }

.height-1170 { height: 117rem !important; }

@media (min-width: 991px) { .height-lg-1170 { height: 117rem !important; } }

.height-1180 { height: 118rem !important; }

@media (min-width: 991px) { .height-lg-1180 { height: 118rem !important; } }

.height-1190 { height: 119rem !important; }

@media (min-width: 991px) { .height-lg-1190 { height: 119rem !important; } }

.height-1200 { height: 120rem !important; }

@media (min-width: 991px) { .height-lg-1200 { height: 120rem !important; } }

.height-1210 { height: 121rem !important; }

@media (min-width: 991px) { .height-lg-1210 { height: 121rem !important; } }

.height-1220 { height: 122rem !important; }

@media (min-width: 991px) { .height-lg-1220 { height: 122rem !important; } }

.height-1230 { height: 123rem !important; }

@media (min-width: 991px) { .height-lg-1230 { height: 123rem !important; } }

.height-1240 { height: 124rem !important; }

@media (min-width: 991px) { .height-lg-1240 { height: 124rem !important; } }

.height-1250 { height: 125rem !important; }

@media (min-width: 991px) { .height-lg-1250 { height: 125rem !important; } }

.height-1260 { height: 126rem !important; }

@media (min-width: 991px) { .height-lg-1260 { height: 126rem !important; } }

.height-1270 { height: 127rem !important; }

@media (min-width: 991px) { .height-lg-1270 { height: 127rem !important; } }

.height-1280 { height: 128rem !important; }

@media (min-width: 991px) { .height-lg-1280 { height: 128rem !important; } }

.height-1290 { height: 129rem !important; }

@media (min-width: 991px) { .height-lg-1290 { height: 129rem !important; } }

.height-1300 { height: 130rem !important; }

@media (min-width: 991px) { .height-lg-1300 { height: 130rem !important; } }

.height-1310 { height: 131rem !important; }

@media (min-width: 991px) { .height-lg-1310 { height: 131rem !important; } }

.height-1320 { height: 132rem !important; }

@media (min-width: 991px) { .height-lg-1320 { height: 132rem !important; } }

.height-1330 { height: 133rem !important; }

@media (min-width: 991px) { .height-lg-1330 { height: 133rem !important; } }

.height-1340 { height: 134rem !important; }

@media (min-width: 991px) { .height-lg-1340 { height: 134rem !important; } }

.height-1350 { height: 135rem !important; }

@media (min-width: 991px) { .height-lg-1350 { height: 135rem !important; } }

.height-1360 { height: 136rem !important; }

@media (min-width: 991px) { .height-lg-1360 { height: 136rem !important; } }

.height-1370 { height: 137rem !important; }

@media (min-width: 991px) { .height-lg-1370 { height: 137rem !important; } }

.height-1380 { height: 138rem !important; }

@media (min-width: 991px) { .height-lg-1380 { height: 138rem !important; } }

.height-1390 { height: 139rem !important; }

@media (min-width: 991px) { .height-lg-1390 { height: 139rem !important; } }

.height-1400 { height: 140rem !important; }

@media (min-width: 991px) { .height-lg-1400 { height: 140rem !important; } }

.height-1410 { height: 141rem !important; }

@media (min-width: 991px) { .height-lg-1410 { height: 141rem !important; } }

.height-1420 { height: 142rem !important; }

@media (min-width: 991px) { .height-lg-1420 { height: 142rem !important; } }

.height-1430 { height: 143rem !important; }

@media (min-width: 991px) { .height-lg-1430 { height: 143rem !important; } }

.height-1440 { height: 144rem !important; }

@media (min-width: 991px) { .height-lg-1440 { height: 144rem !important; } }

.height-1450 { height: 145rem !important; }

@media (min-width: 991px) { .height-lg-1450 { height: 145rem !important; } }

.height-1460 { height: 146rem !important; }

@media (min-width: 991px) { .height-lg-1460 { height: 146rem !important; } }

.height-1470 { height: 147rem !important; }

@media (min-width: 991px) { .height-lg-1470 { height: 147rem !important; } }

.height-1480 { height: 148rem !important; }

@media (min-width: 991px) { .height-lg-1480 { height: 148rem !important; } }

.height-1490 { height: 149rem !important; }

@media (min-width: 991px) { .height-lg-1490 { height: 149rem !important; } }

.height-1500 { height: 150rem !important; }

@media (min-width: 991px) { .height-lg-1500 { height: 150rem !important; } }

.height-per-10 { height: 10% !important; }

@media (min-width: 991px) { .height-lg-per-10 { height: 10% !important; } }

.height-per-20 { height: 20% !important; }

@media (min-width: 991px) { .height-lg-per-20 { height: 20% !important; } }

.height-per-30 { height: 30% !important; }

@media (min-width: 991px) { .height-lg-per-30 { height: 30% !important; } }

.height-per-40 { height: 40% !important; }

@media (min-width: 991px) { .height-lg-per-40 { height: 40% !important; } }

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

@media (min-width: 991px) { .height-lg-per-50 { height: 50% !important; } }

.height-per-60 { height: 60% !important; }

@media (min-width: 991px) { .height-lg-per-60 { height: 60% !important; } }

.height-per-70 { height: 70% !important; }

@media (min-width: 991px) { .height-lg-per-70 { height: 70% !important; } }

.height-per-80 { height: 80% !important; }

@media (min-width: 991px) { .height-lg-per-80 { height: 80% !important; } }

.height-per-90 { height: 90% !important; }

@media (min-width: 991px) { .height-lg-per-90 { height: 90% !important; } }

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

@media (min-width: 991px) { .height-lg-per-100 { height: 100% !important; } }

/* 位置の設定 */
.top-10 { top: 1rem !important; }

.top-minus-10 { top: -1rem !important; }

@media (min-width: 991px) { .top-lg-10 { top: 1rem !important; }
  .top-lg-minus-10 { top: -1rem !important; } }

.top-20 { top: 2rem !important; }

.top-minus-20 { top: -2rem !important; }

@media (min-width: 991px) { .top-lg-20 { top: 2rem !important; }
  .top-lg-minus-20 { top: -2rem !important; } }

.top-30 { top: 3rem !important; }

.top-minus-30 { top: -3rem !important; }

@media (min-width: 991px) { .top-lg-30 { top: 3rem !important; }
  .top-lg-minus-30 { top: -3rem !important; } }

.top-40 { top: 4rem !important; }

.top-minus-40 { top: -4rem !important; }

@media (min-width: 991px) { .top-lg-40 { top: 4rem !important; }
  .top-lg-minus-40 { top: -4rem !important; } }

.top-50 { top: 5rem !important; }

.top-minus-50 { top: -5rem !important; }

@media (min-width: 991px) { .top-lg-50 { top: 5rem !important; }
  .top-lg-minus-50 { top: -5rem !important; } }

.top-60 { top: 6rem !important; }

.top-minus-60 { top: -6rem !important; }

@media (min-width: 991px) { .top-lg-60 { top: 6rem !important; }
  .top-lg-minus-60 { top: -6rem !important; } }

.top-70 { top: 7rem !important; }

.top-minus-70 { top: -7rem !important; }

@media (min-width: 991px) { .top-lg-70 { top: 7rem !important; }
  .top-lg-minus-70 { top: -7rem !important; } }

.top-80 { top: 8rem !important; }

.top-minus-80 { top: -8rem !important; }

@media (min-width: 991px) { .top-lg-80 { top: 8rem !important; }
  .top-lg-minus-80 { top: -8rem !important; } }

.top-90 { top: 9rem !important; }

.top-minus-90 { top: -9rem !important; }

@media (min-width: 991px) { .top-lg-90 { top: 9rem !important; }
  .top-lg-minus-90 { top: -9rem !important; } }

.top-100 { top: 10rem !important; }

.top-minus-100 { top: -10rem !important; }

@media (min-width: 991px) { .top-lg-100 { top: 10rem !important; }
  .top-lg-minus-100 { top: -10rem !important; } }

.top-110 { top: 11rem !important; }

.top-minus-110 { top: -11rem !important; }

@media (min-width: 991px) { .top-lg-110 { top: 11rem !important; }
  .top-lg-minus-110 { top: -11rem !important; } }

.top-120 { top: 12rem !important; }

.top-minus-120 { top: -12rem !important; }

@media (min-width: 991px) { .top-lg-120 { top: 12rem !important; }
  .top-lg-minus-120 { top: -12rem !important; } }

.top-130 { top: 13rem !important; }

.top-minus-130 { top: -13rem !important; }

@media (min-width: 991px) { .top-lg-130 { top: 13rem !important; }
  .top-lg-minus-130 { top: -13rem !important; } }

.top-140 { top: 14rem !important; }

.top-minus-140 { top: -14rem !important; }

@media (min-width: 991px) { .top-lg-140 { top: 14rem !important; }
  .top-lg-minus-140 { top: -14rem !important; } }

.top-150 { top: 15rem !important; }

.top-minus-150 { top: -15rem !important; }

@media (min-width: 991px) { .top-lg-150 { top: 15rem !important; }
  .top-lg-minus-150 { top: -15rem !important; } }

.top-160 { top: 16rem !important; }

.top-minus-160 { top: -16rem !important; }

@media (min-width: 991px) { .top-lg-160 { top: 16rem !important; }
  .top-lg-minus-160 { top: -16rem !important; } }

.top-170 { top: 17rem !important; }

.top-minus-170 { top: -17rem !important; }

@media (min-width: 991px) { .top-lg-170 { top: 17rem !important; }
  .top-lg-minus-170 { top: -17rem !important; } }

.top-180 { top: 18rem !important; }

.top-minus-180 { top: -18rem !important; }

@media (min-width: 991px) { .top-lg-180 { top: 18rem !important; }
  .top-lg-minus-180 { top: -18rem !important; } }

.top-190 { top: 19rem !important; }

.top-minus-190 { top: -19rem !important; }

@media (min-width: 991px) { .top-lg-190 { top: 19rem !important; }
  .top-lg-minus-190 { top: -19rem !important; } }

.top-200 { top: 20rem !important; }

.top-minus-200 { top: -20rem !important; }

@media (min-width: 991px) { .top-lg-200 { top: 20rem !important; }
  .top-lg-minus-200 { top: -20rem !important; } }

.top-210 { top: 21rem !important; }

.top-minus-210 { top: -21rem !important; }

@media (min-width: 991px) { .top-lg-210 { top: 21rem !important; }
  .top-lg-minus-210 { top: -21rem !important; } }

.top-220 { top: 22rem !important; }

.top-minus-220 { top: -22rem !important; }

@media (min-width: 991px) { .top-lg-220 { top: 22rem !important; }
  .top-lg-minus-220 { top: -22rem !important; } }

.top-230 { top: 23rem !important; }

.top-minus-230 { top: -23rem !important; }

@media (min-width: 991px) { .top-lg-230 { top: 23rem !important; }
  .top-lg-minus-230 { top: -23rem !important; } }

.top-240 { top: 24rem !important; }

.top-minus-240 { top: -24rem !important; }

@media (min-width: 991px) { .top-lg-240 { top: 24rem !important; }
  .top-lg-minus-240 { top: -24rem !important; } }

.top-250 { top: 25rem !important; }

.top-minus-250 { top: -25rem !important; }

@media (min-width: 991px) { .top-lg-250 { top: 25rem !important; }
  .top-lg-minus-250 { top: -25rem !important; } }

.top-260 { top: 26rem !important; }

.top-minus-260 { top: -26rem !important; }

@media (min-width: 991px) { .top-lg-260 { top: 26rem !important; }
  .top-lg-minus-260 { top: -26rem !important; } }

.top-270 { top: 27rem !important; }

.top-minus-270 { top: -27rem !important; }

@media (min-width: 991px) { .top-lg-270 { top: 27rem !important; }
  .top-lg-minus-270 { top: -27rem !important; } }

.top-280 { top: 28rem !important; }

.top-minus-280 { top: -28rem !important; }

@media (min-width: 991px) { .top-lg-280 { top: 28rem !important; }
  .top-lg-minus-280 { top: -28rem !important; } }

.top-290 { top: 29rem !important; }

.top-minus-290 { top: -29rem !important; }

@media (min-width: 991px) { .top-lg-290 { top: 29rem !important; }
  .top-lg-minus-290 { top: -29rem !important; } }

.top-300 { top: 30rem !important; }

.top-minus-300 { top: -30rem !important; }

@media (min-width: 991px) { .top-lg-300 { top: 30rem !important; }
  .top-lg-minus-300 { top: -30rem !important; } }

.top-310 { top: 31rem !important; }

.top-minus-310 { top: -31rem !important; }

@media (min-width: 991px) { .top-lg-310 { top: 31rem !important; }
  .top-lg-minus-310 { top: -31rem !important; } }

.top-320 { top: 32rem !important; }

.top-minus-320 { top: -32rem !important; }

@media (min-width: 991px) { .top-lg-320 { top: 32rem !important; }
  .top-lg-minus-320 { top: -32rem !important; } }

.top-330 { top: 33rem !important; }

.top-minus-330 { top: -33rem !important; }

@media (min-width: 991px) { .top-lg-330 { top: 33rem !important; }
  .top-lg-minus-330 { top: -33rem !important; } }

.top-340 { top: 34rem !important; }

.top-minus-340 { top: -34rem !important; }

@media (min-width: 991px) { .top-lg-340 { top: 34rem !important; }
  .top-lg-minus-340 { top: -34rem !important; } }

.top-350 { top: 35rem !important; }

.top-minus-350 { top: -35rem !important; }

@media (min-width: 991px) { .top-lg-350 { top: 35rem !important; }
  .top-lg-minus-350 { top: -35rem !important; } }

.top-360 { top: 36rem !important; }

.top-minus-360 { top: -36rem !important; }

@media (min-width: 991px) { .top-lg-360 { top: 36rem !important; }
  .top-lg-minus-360 { top: -36rem !important; } }

.top-370 { top: 37rem !important; }

.top-minus-370 { top: -37rem !important; }

@media (min-width: 991px) { .top-lg-370 { top: 37rem !important; }
  .top-lg-minus-370 { top: -37rem !important; } }

.top-380 { top: 38rem !important; }

.top-minus-380 { top: -38rem !important; }

@media (min-width: 991px) { .top-lg-380 { top: 38rem !important; }
  .top-lg-minus-380 { top: -38rem !important; } }

.top-390 { top: 39rem !important; }

.top-minus-390 { top: -39rem !important; }

@media (min-width: 991px) { .top-lg-390 { top: 39rem !important; }
  .top-lg-minus-390 { top: -39rem !important; } }

.top-400 { top: 40rem !important; }

.top-minus-400 { top: -40rem !important; }

@media (min-width: 991px) { .top-lg-400 { top: 40rem !important; }
  .top-lg-minus-400 { top: -40rem !important; } }

.top-410 { top: 41rem !important; }

.top-minus-410 { top: -41rem !important; }

@media (min-width: 991px) { .top-lg-410 { top: 41rem !important; }
  .top-lg-minus-410 { top: -41rem !important; } }

.top-420 { top: 42rem !important; }

.top-minus-420 { top: -42rem !important; }

@media (min-width: 991px) { .top-lg-420 { top: 42rem !important; }
  .top-lg-minus-420 { top: -42rem !important; } }

.top-430 { top: 43rem !important; }

.top-minus-430 { top: -43rem !important; }

@media (min-width: 991px) { .top-lg-430 { top: 43rem !important; }
  .top-lg-minus-430 { top: -43rem !important; } }

.top-440 { top: 44rem !important; }

.top-minus-440 { top: -44rem !important; }

@media (min-width: 991px) { .top-lg-440 { top: 44rem !important; }
  .top-lg-minus-440 { top: -44rem !important; } }

.top-450 { top: 45rem !important; }

.top-minus-450 { top: -45rem !important; }

@media (min-width: 991px) { .top-lg-450 { top: 45rem !important; }
  .top-lg-minus-450 { top: -45rem !important; } }

.top-460 { top: 46rem !important; }

.top-minus-460 { top: -46rem !important; }

@media (min-width: 991px) { .top-lg-460 { top: 46rem !important; }
  .top-lg-minus-460 { top: -46rem !important; } }

.top-470 { top: 47rem !important; }

.top-minus-470 { top: -47rem !important; }

@media (min-width: 991px) { .top-lg-470 { top: 47rem !important; }
  .top-lg-minus-470 { top: -47rem !important; } }

.top-480 { top: 48rem !important; }

.top-minus-480 { top: -48rem !important; }

@media (min-width: 991px) { .top-lg-480 { top: 48rem !important; }
  .top-lg-minus-480 { top: -48rem !important; } }

.top-490 { top: 49rem !important; }

.top-minus-490 { top: -49rem !important; }

@media (min-width: 991px) { .top-lg-490 { top: 49rem !important; }
  .top-lg-minus-490 { top: -49rem !important; } }

.top-500 { top: 50rem !important; }

.top-minus-500 { top: -50rem !important; }

@media (min-width: 991px) { .top-lg-500 { top: 50rem !important; }
  .top-lg-minus-500 { top: -50rem !important; } }

.top-510 { top: 51rem !important; }

.top-minus-510 { top: -51rem !important; }

@media (min-width: 991px) { .top-lg-510 { top: 51rem !important; }
  .top-lg-minus-510 { top: -51rem !important; } }

.top-520 { top: 52rem !important; }

.top-minus-520 { top: -52rem !important; }

@media (min-width: 991px) { .top-lg-520 { top: 52rem !important; }
  .top-lg-minus-520 { top: -52rem !important; } }

.top-530 { top: 53rem !important; }

.top-minus-530 { top: -53rem !important; }

@media (min-width: 991px) { .top-lg-530 { top: 53rem !important; }
  .top-lg-minus-530 { top: -53rem !important; } }

.top-540 { top: 54rem !important; }

.top-minus-540 { top: -54rem !important; }

@media (min-width: 991px) { .top-lg-540 { top: 54rem !important; }
  .top-lg-minus-540 { top: -54rem !important; } }

.top-550 { top: 55rem !important; }

.top-minus-550 { top: -55rem !important; }

@media (min-width: 991px) { .top-lg-550 { top: 55rem !important; }
  .top-lg-minus-550 { top: -55rem !important; } }

.top-560 { top: 56rem !important; }

.top-minus-560 { top: -56rem !important; }

@media (min-width: 991px) { .top-lg-560 { top: 56rem !important; }
  .top-lg-minus-560 { top: -56rem !important; } }

.top-570 { top: 57rem !important; }

.top-minus-570 { top: -57rem !important; }

@media (min-width: 991px) { .top-lg-570 { top: 57rem !important; }
  .top-lg-minus-570 { top: -57rem !important; } }

.top-580 { top: 58rem !important; }

.top-minus-580 { top: -58rem !important; }

@media (min-width: 991px) { .top-lg-580 { top: 58rem !important; }
  .top-lg-minus-580 { top: -58rem !important; } }

.top-590 { top: 59rem !important; }

.top-minus-590 { top: -59rem !important; }

@media (min-width: 991px) { .top-lg-590 { top: 59rem !important; }
  .top-lg-minus-590 { top: -59rem !important; } }

.top-600 { top: 60rem !important; }

.top-minus-600 { top: -60rem !important; }

@media (min-width: 991px) { .top-lg-600 { top: 60rem !important; }
  .top-lg-minus-600 { top: -60rem !important; } }

.top-610 { top: 61rem !important; }

.top-minus-610 { top: -61rem !important; }

@media (min-width: 991px) { .top-lg-610 { top: 61rem !important; }
  .top-lg-minus-610 { top: -61rem !important; } }

.top-620 { top: 62rem !important; }

.top-minus-620 { top: -62rem !important; }

@media (min-width: 991px) { .top-lg-620 { top: 62rem !important; }
  .top-lg-minus-620 { top: -62rem !important; } }

.top-630 { top: 63rem !important; }

.top-minus-630 { top: -63rem !important; }

@media (min-width: 991px) { .top-lg-630 { top: 63rem !important; }
  .top-lg-minus-630 { top: -63rem !important; } }

.top-640 { top: 64rem !important; }

.top-minus-640 { top: -64rem !important; }

@media (min-width: 991px) { .top-lg-640 { top: 64rem !important; }
  .top-lg-minus-640 { top: -64rem !important; } }

.top-650 { top: 65rem !important; }

.top-minus-650 { top: -65rem !important; }

@media (min-width: 991px) { .top-lg-650 { top: 65rem !important; }
  .top-lg-minus-650 { top: -65rem !important; } }

.top-660 { top: 66rem !important; }

.top-minus-660 { top: -66rem !important; }

@media (min-width: 991px) { .top-lg-660 { top: 66rem !important; }
  .top-lg-minus-660 { top: -66rem !important; } }

.top-670 { top: 67rem !important; }

.top-minus-670 { top: -67rem !important; }

@media (min-width: 991px) { .top-lg-670 { top: 67rem !important; }
  .top-lg-minus-670 { top: -67rem !important; } }

.top-680 { top: 68rem !important; }

.top-minus-680 { top: -68rem !important; }

@media (min-width: 991px) { .top-lg-680 { top: 68rem !important; }
  .top-lg-minus-680 { top: -68rem !important; } }

.top-690 { top: 69rem !important; }

.top-minus-690 { top: -69rem !important; }

@media (min-width: 991px) { .top-lg-690 { top: 69rem !important; }
  .top-lg-minus-690 { top: -69rem !important; } }

.top-700 { top: 70rem !important; }

.top-minus-700 { top: -70rem !important; }

@media (min-width: 991px) { .top-lg-700 { top: 70rem !important; }
  .top-lg-minus-700 { top: -70rem !important; } }

.top-710 { top: 71rem !important; }

.top-minus-710 { top: -71rem !important; }

@media (min-width: 991px) { .top-lg-710 { top: 71rem !important; }
  .top-lg-minus-710 { top: -71rem !important; } }

.top-720 { top: 72rem !important; }

.top-minus-720 { top: -72rem !important; }

@media (min-width: 991px) { .top-lg-720 { top: 72rem !important; }
  .top-lg-minus-720 { top: -72rem !important; } }

.top-730 { top: 73rem !important; }

.top-minus-730 { top: -73rem !important; }

@media (min-width: 991px) { .top-lg-730 { top: 73rem !important; }
  .top-lg-minus-730 { top: -73rem !important; } }

.top-740 { top: 74rem !important; }

.top-minus-740 { top: -74rem !important; }

@media (min-width: 991px) { .top-lg-740 { top: 74rem !important; }
  .top-lg-minus-740 { top: -74rem !important; } }

.top-750 { top: 75rem !important; }

.top-minus-750 { top: -75rem !important; }

@media (min-width: 991px) { .top-lg-750 { top: 75rem !important; }
  .top-lg-minus-750 { top: -75rem !important; } }

.top-760 { top: 76rem !important; }

.top-minus-760 { top: -76rem !important; }

@media (min-width: 991px) { .top-lg-760 { top: 76rem !important; }
  .top-lg-minus-760 { top: -76rem !important; } }

.top-770 { top: 77rem !important; }

.top-minus-770 { top: -77rem !important; }

@media (min-width: 991px) { .top-lg-770 { top: 77rem !important; }
  .top-lg-minus-770 { top: -77rem !important; } }

.top-780 { top: 78rem !important; }

.top-minus-780 { top: -78rem !important; }

@media (min-width: 991px) { .top-lg-780 { top: 78rem !important; }
  .top-lg-minus-780 { top: -78rem !important; } }

.top-790 { top: 79rem !important; }

.top-minus-790 { top: -79rem !important; }

@media (min-width: 991px) { .top-lg-790 { top: 79rem !important; }
  .top-lg-minus-790 { top: -79rem !important; } }

.top-800 { top: 80rem !important; }

.top-minus-800 { top: -80rem !important; }

@media (min-width: 991px) { .top-lg-800 { top: 80rem !important; }
  .top-lg-minus-800 { top: -80rem !important; } }

.top-810 { top: 81rem !important; }

.top-minus-810 { top: -81rem !important; }

@media (min-width: 991px) { .top-lg-810 { top: 81rem !important; }
  .top-lg-minus-810 { top: -81rem !important; } }

.top-820 { top: 82rem !important; }

.top-minus-820 { top: -82rem !important; }

@media (min-width: 991px) { .top-lg-820 { top: 82rem !important; }
  .top-lg-minus-820 { top: -82rem !important; } }

.top-830 { top: 83rem !important; }

.top-minus-830 { top: -83rem !important; }

@media (min-width: 991px) { .top-lg-830 { top: 83rem !important; }
  .top-lg-minus-830 { top: -83rem !important; } }

.top-840 { top: 84rem !important; }

.top-minus-840 { top: -84rem !important; }

@media (min-width: 991px) { .top-lg-840 { top: 84rem !important; }
  .top-lg-minus-840 { top: -84rem !important; } }

.top-850 { top: 85rem !important; }

.top-minus-850 { top: -85rem !important; }

@media (min-width: 991px) { .top-lg-850 { top: 85rem !important; }
  .top-lg-minus-850 { top: -85rem !important; } }

.top-860 { top: 86rem !important; }

.top-minus-860 { top: -86rem !important; }

@media (min-width: 991px) { .top-lg-860 { top: 86rem !important; }
  .top-lg-minus-860 { top: -86rem !important; } }

.top-870 { top: 87rem !important; }

.top-minus-870 { top: -87rem !important; }

@media (min-width: 991px) { .top-lg-870 { top: 87rem !important; }
  .top-lg-minus-870 { top: -87rem !important; } }

.top-880 { top: 88rem !important; }

.top-minus-880 { top: -88rem !important; }

@media (min-width: 991px) { .top-lg-880 { top: 88rem !important; }
  .top-lg-minus-880 { top: -88rem !important; } }

.top-890 { top: 89rem !important; }

.top-minus-890 { top: -89rem !important; }

@media (min-width: 991px) { .top-lg-890 { top: 89rem !important; }
  .top-lg-minus-890 { top: -89rem !important; } }

.top-900 { top: 90rem !important; }

.top-minus-900 { top: -90rem !important; }

@media (min-width: 991px) { .top-lg-900 { top: 90rem !important; }
  .top-lg-minus-900 { top: -90rem !important; } }

.top-910 { top: 91rem !important; }

.top-minus-910 { top: -91rem !important; }

@media (min-width: 991px) { .top-lg-910 { top: 91rem !important; }
  .top-lg-minus-910 { top: -91rem !important; } }

.top-920 { top: 92rem !important; }

.top-minus-920 { top: -92rem !important; }

@media (min-width: 991px) { .top-lg-920 { top: 92rem !important; }
  .top-lg-minus-920 { top: -92rem !important; } }

.top-930 { top: 93rem !important; }

.top-minus-930 { top: -93rem !important; }

@media (min-width: 991px) { .top-lg-930 { top: 93rem !important; }
  .top-lg-minus-930 { top: -93rem !important; } }

.top-940 { top: 94rem !important; }

.top-minus-940 { top: -94rem !important; }

@media (min-width: 991px) { .top-lg-940 { top: 94rem !important; }
  .top-lg-minus-940 { top: -94rem !important; } }

.top-950 { top: 95rem !important; }

.top-minus-950 { top: -95rem !important; }

@media (min-width: 991px) { .top-lg-950 { top: 95rem !important; }
  .top-lg-minus-950 { top: -95rem !important; } }

.top-960 { top: 96rem !important; }

.top-minus-960 { top: -96rem !important; }

@media (min-width: 991px) { .top-lg-960 { top: 96rem !important; }
  .top-lg-minus-960 { top: -96rem !important; } }

.top-970 { top: 97rem !important; }

.top-minus-970 { top: -97rem !important; }

@media (min-width: 991px) { .top-lg-970 { top: 97rem !important; }
  .top-lg-minus-970 { top: -97rem !important; } }

.top-980 { top: 98rem !important; }

.top-minus-980 { top: -98rem !important; }

@media (min-width: 991px) { .top-lg-980 { top: 98rem !important; }
  .top-lg-minus-980 { top: -98rem !important; } }

.top-990 { top: 99rem !important; }

.top-minus-990 { top: -99rem !important; }

@media (min-width: 991px) { .top-lg-990 { top: 99rem !important; }
  .top-lg-minus-990 { top: -99rem !important; } }

.top-1000 { top: 100rem !important; }

.top-minus-1000 { top: -100rem !important; }

@media (min-width: 991px) { .top-lg-1000 { top: 100rem !important; }
  .top-lg-minus-1000 { top: -100rem !important; } }

.bottom-10 { bottom: 1rem !important; }

.bottom-minus-10 { bottom: -1rem !important; }

@media (min-width: 991px) { .bottom-lg-10 { bottom: 1rem !important; }
  .bottom-lg-minus-10 { bottom: -1rem !important; } }

.bottom-20 { bottom: 2rem !important; }

.bottom-minus-20 { bottom: -2rem !important; }

@media (min-width: 991px) { .bottom-lg-20 { bottom: 2rem !important; }
  .bottom-lg-minus-20 { bottom: -2rem !important; } }

.bottom-30 { bottom: 3rem !important; }

.bottom-minus-30 { bottom: -3rem !important; }

@media (min-width: 991px) { .bottom-lg-30 { bottom: 3rem !important; }
  .bottom-lg-minus-30 { bottom: -3rem !important; } }

.bottom-40 { bottom: 4rem !important; }

.bottom-minus-40 { bottom: -4rem !important; }

@media (min-width: 991px) { .bottom-lg-40 { bottom: 4rem !important; }
  .bottom-lg-minus-40 { bottom: -4rem !important; } }

.bottom-50 { bottom: 5rem !important; }

.bottom-minus-50 { bottom: -5rem !important; }

@media (min-width: 991px) { .bottom-lg-50 { bottom: 5rem !important; }
  .bottom-lg-minus-50 { bottom: -5rem !important; } }

.bottom-60 { bottom: 6rem !important; }

.bottom-minus-60 { bottom: -6rem !important; }

@media (min-width: 991px) { .bottom-lg-60 { bottom: 6rem !important; }
  .bottom-lg-minus-60 { bottom: -6rem !important; } }

.bottom-70 { bottom: 7rem !important; }

.bottom-minus-70 { bottom: -7rem !important; }

@media (min-width: 991px) { .bottom-lg-70 { bottom: 7rem !important; }
  .bottom-lg-minus-70 { bottom: -7rem !important; } }

.bottom-80 { bottom: 8rem !important; }

.bottom-minus-80 { bottom: -8rem !important; }

@media (min-width: 991px) { .bottom-lg-80 { bottom: 8rem !important; }
  .bottom-lg-minus-80 { bottom: -8rem !important; } }

.bottom-90 { bottom: 9rem !important; }

.bottom-minus-90 { bottom: -9rem !important; }

@media (min-width: 991px) { .bottom-lg-90 { bottom: 9rem !important; }
  .bottom-lg-minus-90 { bottom: -9rem !important; } }

.bottom-100 { bottom: 10rem !important; }

.bottom-minus-100 { bottom: -10rem !important; }

@media (min-width: 991px) { .bottom-lg-100 { bottom: 10rem !important; }
  .bottom-lg-minus-100 { bottom: -10rem !important; } }

.bottom-110 { bottom: 11rem !important; }

.bottom-minus-110 { bottom: -11rem !important; }

@media (min-width: 991px) { .bottom-lg-110 { bottom: 11rem !important; }
  .bottom-lg-minus-110 { bottom: -11rem !important; } }

.bottom-120 { bottom: 12rem !important; }

.bottom-minus-120 { bottom: -12rem !important; }

@media (min-width: 991px) { .bottom-lg-120 { bottom: 12rem !important; }
  .bottom-lg-minus-120 { bottom: -12rem !important; } }

.bottom-130 { bottom: 13rem !important; }

.bottom-minus-130 { bottom: -13rem !important; }

@media (min-width: 991px) { .bottom-lg-130 { bottom: 13rem !important; }
  .bottom-lg-minus-130 { bottom: -13rem !important; } }

.bottom-140 { bottom: 14rem !important; }

.bottom-minus-140 { bottom: -14rem !important; }

@media (min-width: 991px) { .bottom-lg-140 { bottom: 14rem !important; }
  .bottom-lg-minus-140 { bottom: -14rem !important; } }

.bottom-150 { bottom: 15rem !important; }

.bottom-minus-150 { bottom: -15rem !important; }

@media (min-width: 991px) { .bottom-lg-150 { bottom: 15rem !important; }
  .bottom-lg-minus-150 { bottom: -15rem !important; } }

.bottom-160 { bottom: 16rem !important; }

.bottom-minus-160 { bottom: -16rem !important; }

@media (min-width: 991px) { .bottom-lg-160 { bottom: 16rem !important; }
  .bottom-lg-minus-160 { bottom: -16rem !important; } }

.bottom-170 { bottom: 17rem !important; }

.bottom-minus-170 { bottom: -17rem !important; }

@media (min-width: 991px) { .bottom-lg-170 { bottom: 17rem !important; }
  .bottom-lg-minus-170 { bottom: -17rem !important; } }

.bottom-180 { bottom: 18rem !important; }

.bottom-minus-180 { bottom: -18rem !important; }

@media (min-width: 991px) { .bottom-lg-180 { bottom: 18rem !important; }
  .bottom-lg-minus-180 { bottom: -18rem !important; } }

.bottom-190 { bottom: 19rem !important; }

.bottom-minus-190 { bottom: -19rem !important; }

@media (min-width: 991px) { .bottom-lg-190 { bottom: 19rem !important; }
  .bottom-lg-minus-190 { bottom: -19rem !important; } }

.bottom-200 { bottom: 20rem !important; }

.bottom-minus-200 { bottom: -20rem !important; }

@media (min-width: 991px) { .bottom-lg-200 { bottom: 20rem !important; }
  .bottom-lg-minus-200 { bottom: -20rem !important; } }

.bottom-210 { bottom: 21rem !important; }

.bottom-minus-210 { bottom: -21rem !important; }

@media (min-width: 991px) { .bottom-lg-210 { bottom: 21rem !important; }
  .bottom-lg-minus-210 { bottom: -21rem !important; } }

.bottom-220 { bottom: 22rem !important; }

.bottom-minus-220 { bottom: -22rem !important; }

@media (min-width: 991px) { .bottom-lg-220 { bottom: 22rem !important; }
  .bottom-lg-minus-220 { bottom: -22rem !important; } }

.bottom-230 { bottom: 23rem !important; }

.bottom-minus-230 { bottom: -23rem !important; }

@media (min-width: 991px) { .bottom-lg-230 { bottom: 23rem !important; }
  .bottom-lg-minus-230 { bottom: -23rem !important; } }

.bottom-240 { bottom: 24rem !important; }

.bottom-minus-240 { bottom: -24rem !important; }

@media (min-width: 991px) { .bottom-lg-240 { bottom: 24rem !important; }
  .bottom-lg-minus-240 { bottom: -24rem !important; } }

.bottom-250 { bottom: 25rem !important; }

.bottom-minus-250 { bottom: -25rem !important; }

@media (min-width: 991px) { .bottom-lg-250 { bottom: 25rem !important; }
  .bottom-lg-minus-250 { bottom: -25rem !important; } }

.bottom-260 { bottom: 26rem !important; }

.bottom-minus-260 { bottom: -26rem !important; }

@media (min-width: 991px) { .bottom-lg-260 { bottom: 26rem !important; }
  .bottom-lg-minus-260 { bottom: -26rem !important; } }

.bottom-270 { bottom: 27rem !important; }

.bottom-minus-270 { bottom: -27rem !important; }

@media (min-width: 991px) { .bottom-lg-270 { bottom: 27rem !important; }
  .bottom-lg-minus-270 { bottom: -27rem !important; } }

.bottom-280 { bottom: 28rem !important; }

.bottom-minus-280 { bottom: -28rem !important; }

@media (min-width: 991px) { .bottom-lg-280 { bottom: 28rem !important; }
  .bottom-lg-minus-280 { bottom: -28rem !important; } }

.bottom-290 { bottom: 29rem !important; }

.bottom-minus-290 { bottom: -29rem !important; }

@media (min-width: 991px) { .bottom-lg-290 { bottom: 29rem !important; }
  .bottom-lg-minus-290 { bottom: -29rem !important; } }

.bottom-300 { bottom: 30rem !important; }

.bottom-minus-300 { bottom: -30rem !important; }

@media (min-width: 991px) { .bottom-lg-300 { bottom: 30rem !important; }
  .bottom-lg-minus-300 { bottom: -30rem !important; } }

.bottom-310 { bottom: 31rem !important; }

.bottom-minus-310 { bottom: -31rem !important; }

@media (min-width: 991px) { .bottom-lg-310 { bottom: 31rem !important; }
  .bottom-lg-minus-310 { bottom: -31rem !important; } }

.bottom-320 { bottom: 32rem !important; }

.bottom-minus-320 { bottom: -32rem !important; }

@media (min-width: 991px) { .bottom-lg-320 { bottom: 32rem !important; }
  .bottom-lg-minus-320 { bottom: -32rem !important; } }

.bottom-330 { bottom: 33rem !important; }

.bottom-minus-330 { bottom: -33rem !important; }

@media (min-width: 991px) { .bottom-lg-330 { bottom: 33rem !important; }
  .bottom-lg-minus-330 { bottom: -33rem !important; } }

.bottom-340 { bottom: 34rem !important; }

.bottom-minus-340 { bottom: -34rem !important; }

@media (min-width: 991px) { .bottom-lg-340 { bottom: 34rem !important; }
  .bottom-lg-minus-340 { bottom: -34rem !important; } }

.bottom-350 { bottom: 35rem !important; }

.bottom-minus-350 { bottom: -35rem !important; }

@media (min-width: 991px) { .bottom-lg-350 { bottom: 35rem !important; }
  .bottom-lg-minus-350 { bottom: -35rem !important; } }

.bottom-360 { bottom: 36rem !important; }

.bottom-minus-360 { bottom: -36rem !important; }

@media (min-width: 991px) { .bottom-lg-360 { bottom: 36rem !important; }
  .bottom-lg-minus-360 { bottom: -36rem !important; } }

.bottom-370 { bottom: 37rem !important; }

.bottom-minus-370 { bottom: -37rem !important; }

@media (min-width: 991px) { .bottom-lg-370 { bottom: 37rem !important; }
  .bottom-lg-minus-370 { bottom: -37rem !important; } }

.bottom-380 { bottom: 38rem !important; }

.bottom-minus-380 { bottom: -38rem !important; }

@media (min-width: 991px) { .bottom-lg-380 { bottom: 38rem !important; }
  .bottom-lg-minus-380 { bottom: -38rem !important; } }

.bottom-390 { bottom: 39rem !important; }

.bottom-minus-390 { bottom: -39rem !important; }

@media (min-width: 991px) { .bottom-lg-390 { bottom: 39rem !important; }
  .bottom-lg-minus-390 { bottom: -39rem !important; } }

.bottom-400 { bottom: 40rem !important; }

.bottom-minus-400 { bottom: -40rem !important; }

@media (min-width: 991px) { .bottom-lg-400 { bottom: 40rem !important; }
  .bottom-lg-minus-400 { bottom: -40rem !important; } }

.bottom-410 { bottom: 41rem !important; }

.bottom-minus-410 { bottom: -41rem !important; }

@media (min-width: 991px) { .bottom-lg-410 { bottom: 41rem !important; }
  .bottom-lg-minus-410 { bottom: -41rem !important; } }

.bottom-420 { bottom: 42rem !important; }

.bottom-minus-420 { bottom: -42rem !important; }

@media (min-width: 991px) { .bottom-lg-420 { bottom: 42rem !important; }
  .bottom-lg-minus-420 { bottom: -42rem !important; } }

.bottom-430 { bottom: 43rem !important; }

.bottom-minus-430 { bottom: -43rem !important; }

@media (min-width: 991px) { .bottom-lg-430 { bottom: 43rem !important; }
  .bottom-lg-minus-430 { bottom: -43rem !important; } }

.bottom-440 { bottom: 44rem !important; }

.bottom-minus-440 { bottom: -44rem !important; }

@media (min-width: 991px) { .bottom-lg-440 { bottom: 44rem !important; }
  .bottom-lg-minus-440 { bottom: -44rem !important; } }

.bottom-450 { bottom: 45rem !important; }

.bottom-minus-450 { bottom: -45rem !important; }

@media (min-width: 991px) { .bottom-lg-450 { bottom: 45rem !important; }
  .bottom-lg-minus-450 { bottom: -45rem !important; } }

.bottom-460 { bottom: 46rem !important; }

.bottom-minus-460 { bottom: -46rem !important; }

@media (min-width: 991px) { .bottom-lg-460 { bottom: 46rem !important; }
  .bottom-lg-minus-460 { bottom: -46rem !important; } }

.bottom-470 { bottom: 47rem !important; }

.bottom-minus-470 { bottom: -47rem !important; }

@media (min-width: 991px) { .bottom-lg-470 { bottom: 47rem !important; }
  .bottom-lg-minus-470 { bottom: -47rem !important; } }

.bottom-480 { bottom: 48rem !important; }

.bottom-minus-480 { bottom: -48rem !important; }

@media (min-width: 991px) { .bottom-lg-480 { bottom: 48rem !important; }
  .bottom-lg-minus-480 { bottom: -48rem !important; } }

.bottom-490 { bottom: 49rem !important; }

.bottom-minus-490 { bottom: -49rem !important; }

@media (min-width: 991px) { .bottom-lg-490 { bottom: 49rem !important; }
  .bottom-lg-minus-490 { bottom: -49rem !important; } }

.bottom-500 { bottom: 50rem !important; }

.bottom-minus-500 { bottom: -50rem !important; }

@media (min-width: 991px) { .bottom-lg-500 { bottom: 50rem !important; }
  .bottom-lg-minus-500 { bottom: -50rem !important; } }

.bottom-510 { bottom: 51rem !important; }

.bottom-minus-510 { bottom: -51rem !important; }

@media (min-width: 991px) { .bottom-lg-510 { bottom: 51rem !important; }
  .bottom-lg-minus-510 { bottom: -51rem !important; } }

.bottom-520 { bottom: 52rem !important; }

.bottom-minus-520 { bottom: -52rem !important; }

@media (min-width: 991px) { .bottom-lg-520 { bottom: 52rem !important; }
  .bottom-lg-minus-520 { bottom: -52rem !important; } }

.bottom-530 { bottom: 53rem !important; }

.bottom-minus-530 { bottom: -53rem !important; }

@media (min-width: 991px) { .bottom-lg-530 { bottom: 53rem !important; }
  .bottom-lg-minus-530 { bottom: -53rem !important; } }

.bottom-540 { bottom: 54rem !important; }

.bottom-minus-540 { bottom: -54rem !important; }

@media (min-width: 991px) { .bottom-lg-540 { bottom: 54rem !important; }
  .bottom-lg-minus-540 { bottom: -54rem !important; } }

.bottom-550 { bottom: 55rem !important; }

.bottom-minus-550 { bottom: -55rem !important; }

@media (min-width: 991px) { .bottom-lg-550 { bottom: 55rem !important; }
  .bottom-lg-minus-550 { bottom: -55rem !important; } }

.bottom-560 { bottom: 56rem !important; }

.bottom-minus-560 { bottom: -56rem !important; }

@media (min-width: 991px) { .bottom-lg-560 { bottom: 56rem !important; }
  .bottom-lg-minus-560 { bottom: -56rem !important; } }

.bottom-570 { bottom: 57rem !important; }

.bottom-minus-570 { bottom: -57rem !important; }

@media (min-width: 991px) { .bottom-lg-570 { bottom: 57rem !important; }
  .bottom-lg-minus-570 { bottom: -57rem !important; } }

.bottom-580 { bottom: 58rem !important; }

.bottom-minus-580 { bottom: -58rem !important; }

@media (min-width: 991px) { .bottom-lg-580 { bottom: 58rem !important; }
  .bottom-lg-minus-580 { bottom: -58rem !important; } }

.bottom-590 { bottom: 59rem !important; }

.bottom-minus-590 { bottom: -59rem !important; }

@media (min-width: 991px) { .bottom-lg-590 { bottom: 59rem !important; }
  .bottom-lg-minus-590 { bottom: -59rem !important; } }

.bottom-600 { bottom: 60rem !important; }

.bottom-minus-600 { bottom: -60rem !important; }

@media (min-width: 991px) { .bottom-lg-600 { bottom: 60rem !important; }
  .bottom-lg-minus-600 { bottom: -60rem !important; } }

.bottom-610 { bottom: 61rem !important; }

.bottom-minus-610 { bottom: -61rem !important; }

@media (min-width: 991px) { .bottom-lg-610 { bottom: 61rem !important; }
  .bottom-lg-minus-610 { bottom: -61rem !important; } }

.bottom-620 { bottom: 62rem !important; }

.bottom-minus-620 { bottom: -62rem !important; }

@media (min-width: 991px) { .bottom-lg-620 { bottom: 62rem !important; }
  .bottom-lg-minus-620 { bottom: -62rem !important; } }

.bottom-630 { bottom: 63rem !important; }

.bottom-minus-630 { bottom: -63rem !important; }

@media (min-width: 991px) { .bottom-lg-630 { bottom: 63rem !important; }
  .bottom-lg-minus-630 { bottom: -63rem !important; } }

.bottom-640 { bottom: 64rem !important; }

.bottom-minus-640 { bottom: -64rem !important; }

@media (min-width: 991px) { .bottom-lg-640 { bottom: 64rem !important; }
  .bottom-lg-minus-640 { bottom: -64rem !important; } }

.bottom-650 { bottom: 65rem !important; }

.bottom-minus-650 { bottom: -65rem !important; }

@media (min-width: 991px) { .bottom-lg-650 { bottom: 65rem !important; }
  .bottom-lg-minus-650 { bottom: -65rem !important; } }

.bottom-660 { bottom: 66rem !important; }

.bottom-minus-660 { bottom: -66rem !important; }

@media (min-width: 991px) { .bottom-lg-660 { bottom: 66rem !important; }
  .bottom-lg-minus-660 { bottom: -66rem !important; } }

.bottom-670 { bottom: 67rem !important; }

.bottom-minus-670 { bottom: -67rem !important; }

@media (min-width: 991px) { .bottom-lg-670 { bottom: 67rem !important; }
  .bottom-lg-minus-670 { bottom: -67rem !important; } }

.bottom-680 { bottom: 68rem !important; }

.bottom-minus-680 { bottom: -68rem !important; }

@media (min-width: 991px) { .bottom-lg-680 { bottom: 68rem !important; }
  .bottom-lg-minus-680 { bottom: -68rem !important; } }

.bottom-690 { bottom: 69rem !important; }

.bottom-minus-690 { bottom: -69rem !important; }

@media (min-width: 991px) { .bottom-lg-690 { bottom: 69rem !important; }
  .bottom-lg-minus-690 { bottom: -69rem !important; } }

.bottom-700 { bottom: 70rem !important; }

.bottom-minus-700 { bottom: -70rem !important; }

@media (min-width: 991px) { .bottom-lg-700 { bottom: 70rem !important; }
  .bottom-lg-minus-700 { bottom: -70rem !important; } }

.bottom-710 { bottom: 71rem !important; }

.bottom-minus-710 { bottom: -71rem !important; }

@media (min-width: 991px) { .bottom-lg-710 { bottom: 71rem !important; }
  .bottom-lg-minus-710 { bottom: -71rem !important; } }

.bottom-720 { bottom: 72rem !important; }

.bottom-minus-720 { bottom: -72rem !important; }

@media (min-width: 991px) { .bottom-lg-720 { bottom: 72rem !important; }
  .bottom-lg-minus-720 { bottom: -72rem !important; } }

.bottom-730 { bottom: 73rem !important; }

.bottom-minus-730 { bottom: -73rem !important; }

@media (min-width: 991px) { .bottom-lg-730 { bottom: 73rem !important; }
  .bottom-lg-minus-730 { bottom: -73rem !important; } }

.bottom-740 { bottom: 74rem !important; }

.bottom-minus-740 { bottom: -74rem !important; }

@media (min-width: 991px) { .bottom-lg-740 { bottom: 74rem !important; }
  .bottom-lg-minus-740 { bottom: -74rem !important; } }

.bottom-750 { bottom: 75rem !important; }

.bottom-minus-750 { bottom: -75rem !important; }

@media (min-width: 991px) { .bottom-lg-750 { bottom: 75rem !important; }
  .bottom-lg-minus-750 { bottom: -75rem !important; } }

.bottom-760 { bottom: 76rem !important; }

.bottom-minus-760 { bottom: -76rem !important; }

@media (min-width: 991px) { .bottom-lg-760 { bottom: 76rem !important; }
  .bottom-lg-minus-760 { bottom: -76rem !important; } }

.bottom-770 { bottom: 77rem !important; }

.bottom-minus-770 { bottom: -77rem !important; }

@media (min-width: 991px) { .bottom-lg-770 { bottom: 77rem !important; }
  .bottom-lg-minus-770 { bottom: -77rem !important; } }

.bottom-780 { bottom: 78rem !important; }

.bottom-minus-780 { bottom: -78rem !important; }

@media (min-width: 991px) { .bottom-lg-780 { bottom: 78rem !important; }
  .bottom-lg-minus-780 { bottom: -78rem !important; } }

.bottom-790 { bottom: 79rem !important; }

.bottom-minus-790 { bottom: -79rem !important; }

@media (min-width: 991px) { .bottom-lg-790 { bottom: 79rem !important; }
  .bottom-lg-minus-790 { bottom: -79rem !important; } }

.bottom-800 { bottom: 80rem !important; }

.bottom-minus-800 { bottom: -80rem !important; }

@media (min-width: 991px) { .bottom-lg-800 { bottom: 80rem !important; }
  .bottom-lg-minus-800 { bottom: -80rem !important; } }

.bottom-810 { bottom: 81rem !important; }

.bottom-minus-810 { bottom: -81rem !important; }

@media (min-width: 991px) { .bottom-lg-810 { bottom: 81rem !important; }
  .bottom-lg-minus-810 { bottom: -81rem !important; } }

.bottom-820 { bottom: 82rem !important; }

.bottom-minus-820 { bottom: -82rem !important; }

@media (min-width: 991px) { .bottom-lg-820 { bottom: 82rem !important; }
  .bottom-lg-minus-820 { bottom: -82rem !important; } }

.bottom-830 { bottom: 83rem !important; }

.bottom-minus-830 { bottom: -83rem !important; }

@media (min-width: 991px) { .bottom-lg-830 { bottom: 83rem !important; }
  .bottom-lg-minus-830 { bottom: -83rem !important; } }

.bottom-840 { bottom: 84rem !important; }

.bottom-minus-840 { bottom: -84rem !important; }

@media (min-width: 991px) { .bottom-lg-840 { bottom: 84rem !important; }
  .bottom-lg-minus-840 { bottom: -84rem !important; } }

.bottom-850 { bottom: 85rem !important; }

.bottom-minus-850 { bottom: -85rem !important; }

@media (min-width: 991px) { .bottom-lg-850 { bottom: 85rem !important; }
  .bottom-lg-minus-850 { bottom: -85rem !important; } }

.bottom-860 { bottom: 86rem !important; }

.bottom-minus-860 { bottom: -86rem !important; }

@media (min-width: 991px) { .bottom-lg-860 { bottom: 86rem !important; }
  .bottom-lg-minus-860 { bottom: -86rem !important; } }

.bottom-870 { bottom: 87rem !important; }

.bottom-minus-870 { bottom: -87rem !important; }

@media (min-width: 991px) { .bottom-lg-870 { bottom: 87rem !important; }
  .bottom-lg-minus-870 { bottom: -87rem !important; } }

.bottom-880 { bottom: 88rem !important; }

.bottom-minus-880 { bottom: -88rem !important; }

@media (min-width: 991px) { .bottom-lg-880 { bottom: 88rem !important; }
  .bottom-lg-minus-880 { bottom: -88rem !important; } }

.bottom-890 { bottom: 89rem !important; }

.bottom-minus-890 { bottom: -89rem !important; }

@media (min-width: 991px) { .bottom-lg-890 { bottom: 89rem !important; }
  .bottom-lg-minus-890 { bottom: -89rem !important; } }

.bottom-900 { bottom: 90rem !important; }

.bottom-minus-900 { bottom: -90rem !important; }

@media (min-width: 991px) { .bottom-lg-900 { bottom: 90rem !important; }
  .bottom-lg-minus-900 { bottom: -90rem !important; } }

.bottom-910 { bottom: 91rem !important; }

.bottom-minus-910 { bottom: -91rem !important; }

@media (min-width: 991px) { .bottom-lg-910 { bottom: 91rem !important; }
  .bottom-lg-minus-910 { bottom: -91rem !important; } }

.bottom-920 { bottom: 92rem !important; }

.bottom-minus-920 { bottom: -92rem !important; }

@media (min-width: 991px) { .bottom-lg-920 { bottom: 92rem !important; }
  .bottom-lg-minus-920 { bottom: -92rem !important; } }

.bottom-930 { bottom: 93rem !important; }

.bottom-minus-930 { bottom: -93rem !important; }

@media (min-width: 991px) { .bottom-lg-930 { bottom: 93rem !important; }
  .bottom-lg-minus-930 { bottom: -93rem !important; } }

.bottom-940 { bottom: 94rem !important; }

.bottom-minus-940 { bottom: -94rem !important; }

@media (min-width: 991px) { .bottom-lg-940 { bottom: 94rem !important; }
  .bottom-lg-minus-940 { bottom: -94rem !important; } }

.bottom-950 { bottom: 95rem !important; }

.bottom-minus-950 { bottom: -95rem !important; }

@media (min-width: 991px) { .bottom-lg-950 { bottom: 95rem !important; }
  .bottom-lg-minus-950 { bottom: -95rem !important; } }

.bottom-960 { bottom: 96rem !important; }

.bottom-minus-960 { bottom: -96rem !important; }

@media (min-width: 991px) { .bottom-lg-960 { bottom: 96rem !important; }
  .bottom-lg-minus-960 { bottom: -96rem !important; } }

.bottom-970 { bottom: 97rem !important; }

.bottom-minus-970 { bottom: -97rem !important; }

@media (min-width: 991px) { .bottom-lg-970 { bottom: 97rem !important; }
  .bottom-lg-minus-970 { bottom: -97rem !important; } }

.bottom-980 { bottom: 98rem !important; }

.bottom-minus-980 { bottom: -98rem !important; }

@media (min-width: 991px) { .bottom-lg-980 { bottom: 98rem !important; }
  .bottom-lg-minus-980 { bottom: -98rem !important; } }

.bottom-990 { bottom: 99rem !important; }

.bottom-minus-990 { bottom: -99rem !important; }

@media (min-width: 991px) { .bottom-lg-990 { bottom: 99rem !important; }
  .bottom-lg-minus-990 { bottom: -99rem !important; } }

.bottom-1000 { bottom: 100rem !important; }

.bottom-minus-1000 { bottom: -100rem !important; }

@media (min-width: 991px) { .bottom-lg-1000 { bottom: 100rem !important; }
  .bottom-lg-minus-1000 { bottom: -100rem !important; } }

.left-10 { left: 1rem !important; }

.left-minus-10 { left: -1rem !important; }

@media (min-width: 991px) { .left-lg-10 { left: 1rem !important; }
  .left-lg-minus-10 { left: -1rem !important; } }

.left-20 { left: 2rem !important; }

.left-minus-20 { left: -2rem !important; }

@media (min-width: 991px) { .left-lg-20 { left: 2rem !important; }
  .left-lg-minus-20 { left: -2rem !important; } }

.left-30 { left: 3rem !important; }

.left-minus-30 { left: -3rem !important; }

@media (min-width: 991px) { .left-lg-30 { left: 3rem !important; }
  .left-lg-minus-30 { left: -3rem !important; } }

.left-40 { left: 4rem !important; }

.left-minus-40 { left: -4rem !important; }

@media (min-width: 991px) { .left-lg-40 { left: 4rem !important; }
  .left-lg-minus-40 { left: -4rem !important; } }

.left-50 { left: 5rem !important; }

.left-minus-50 { left: -5rem !important; }

@media (min-width: 991px) { .left-lg-50 { left: 5rem !important; }
  .left-lg-minus-50 { left: -5rem !important; } }

.left-60 { left: 6rem !important; }

.left-minus-60 { left: -6rem !important; }

@media (min-width: 991px) { .left-lg-60 { left: 6rem !important; }
  .left-lg-minus-60 { left: -6rem !important; } }

.left-70 { left: 7rem !important; }

.left-minus-70 { left: -7rem !important; }

@media (min-width: 991px) { .left-lg-70 { left: 7rem !important; }
  .left-lg-minus-70 { left: -7rem !important; } }

.left-80 { left: 8rem !important; }

.left-minus-80 { left: -8rem !important; }

@media (min-width: 991px) { .left-lg-80 { left: 8rem !important; }
  .left-lg-minus-80 { left: -8rem !important; } }

.left-90 { left: 9rem !important; }

.left-minus-90 { left: -9rem !important; }

@media (min-width: 991px) { .left-lg-90 { left: 9rem !important; }
  .left-lg-minus-90 { left: -9rem !important; } }

.left-100 { left: 10rem !important; }

.left-minus-100 { left: -10rem !important; }

@media (min-width: 991px) { .left-lg-100 { left: 10rem !important; }
  .left-lg-minus-100 { left: -10rem !important; } }

.left-110 { left: 11rem !important; }

.left-minus-110 { left: -11rem !important; }

@media (min-width: 991px) { .left-lg-110 { left: 11rem !important; }
  .left-lg-minus-110 { left: -11rem !important; } }

.left-120 { left: 12rem !important; }

.left-minus-120 { left: -12rem !important; }

@media (min-width: 991px) { .left-lg-120 { left: 12rem !important; }
  .left-lg-minus-120 { left: -12rem !important; } }

.left-130 { left: 13rem !important; }

.left-minus-130 { left: -13rem !important; }

@media (min-width: 991px) { .left-lg-130 { left: 13rem !important; }
  .left-lg-minus-130 { left: -13rem !important; } }

.left-140 { left: 14rem !important; }

.left-minus-140 { left: -14rem !important; }

@media (min-width: 991px) { .left-lg-140 { left: 14rem !important; }
  .left-lg-minus-140 { left: -14rem !important; } }

.left-150 { left: 15rem !important; }

.left-minus-150 { left: -15rem !important; }

@media (min-width: 991px) { .left-lg-150 { left: 15rem !important; }
  .left-lg-minus-150 { left: -15rem !important; } }

.left-160 { left: 16rem !important; }

.left-minus-160 { left: -16rem !important; }

@media (min-width: 991px) { .left-lg-160 { left: 16rem !important; }
  .left-lg-minus-160 { left: -16rem !important; } }

.left-170 { left: 17rem !important; }

.left-minus-170 { left: -17rem !important; }

@media (min-width: 991px) { .left-lg-170 { left: 17rem !important; }
  .left-lg-minus-170 { left: -17rem !important; } }

.left-180 { left: 18rem !important; }

.left-minus-180 { left: -18rem !important; }

@media (min-width: 991px) { .left-lg-180 { left: 18rem !important; }
  .left-lg-minus-180 { left: -18rem !important; } }

.left-190 { left: 19rem !important; }

.left-minus-190 { left: -19rem !important; }

@media (min-width: 991px) { .left-lg-190 { left: 19rem !important; }
  .left-lg-minus-190 { left: -19rem !important; } }

.left-200 { left: 20rem !important; }

.left-minus-200 { left: -20rem !important; }

@media (min-width: 991px) { .left-lg-200 { left: 20rem !important; }
  .left-lg-minus-200 { left: -20rem !important; } }

.left-210 { left: 21rem !important; }

.left-minus-210 { left: -21rem !important; }

@media (min-width: 991px) { .left-lg-210 { left: 21rem !important; }
  .left-lg-minus-210 { left: -21rem !important; } }

.left-220 { left: 22rem !important; }

.left-minus-220 { left: -22rem !important; }

@media (min-width: 991px) { .left-lg-220 { left: 22rem !important; }
  .left-lg-minus-220 { left: -22rem !important; } }

.left-230 { left: 23rem !important; }

.left-minus-230 { left: -23rem !important; }

@media (min-width: 991px) { .left-lg-230 { left: 23rem !important; }
  .left-lg-minus-230 { left: -23rem !important; } }

.left-240 { left: 24rem !important; }

.left-minus-240 { left: -24rem !important; }

@media (min-width: 991px) { .left-lg-240 { left: 24rem !important; }
  .left-lg-minus-240 { left: -24rem !important; } }

.left-250 { left: 25rem !important; }

.left-minus-250 { left: -25rem !important; }

@media (min-width: 991px) { .left-lg-250 { left: 25rem !important; }
  .left-lg-minus-250 { left: -25rem !important; } }

.left-260 { left: 26rem !important; }

.left-minus-260 { left: -26rem !important; }

@media (min-width: 991px) { .left-lg-260 { left: 26rem !important; }
  .left-lg-minus-260 { left: -26rem !important; } }

.left-270 { left: 27rem !important; }

.left-minus-270 { left: -27rem !important; }

@media (min-width: 991px) { .left-lg-270 { left: 27rem !important; }
  .left-lg-minus-270 { left: -27rem !important; } }

.left-280 { left: 28rem !important; }

.left-minus-280 { left: -28rem !important; }

@media (min-width: 991px) { .left-lg-280 { left: 28rem !important; }
  .left-lg-minus-280 { left: -28rem !important; } }

.left-290 { left: 29rem !important; }

.left-minus-290 { left: -29rem !important; }

@media (min-width: 991px) { .left-lg-290 { left: 29rem !important; }
  .left-lg-minus-290 { left: -29rem !important; } }

.left-300 { left: 30rem !important; }

.left-minus-300 { left: -30rem !important; }

@media (min-width: 991px) { .left-lg-300 { left: 30rem !important; }
  .left-lg-minus-300 { left: -30rem !important; } }

.left-310 { left: 31rem !important; }

.left-minus-310 { left: -31rem !important; }

@media (min-width: 991px) { .left-lg-310 { left: 31rem !important; }
  .left-lg-minus-310 { left: -31rem !important; } }

.left-320 { left: 32rem !important; }

.left-minus-320 { left: -32rem !important; }

@media (min-width: 991px) { .left-lg-320 { left: 32rem !important; }
  .left-lg-minus-320 { left: -32rem !important; } }

.left-330 { left: 33rem !important; }

.left-minus-330 { left: -33rem !important; }

@media (min-width: 991px) { .left-lg-330 { left: 33rem !important; }
  .left-lg-minus-330 { left: -33rem !important; } }

.left-340 { left: 34rem !important; }

.left-minus-340 { left: -34rem !important; }

@media (min-width: 991px) { .left-lg-340 { left: 34rem !important; }
  .left-lg-minus-340 { left: -34rem !important; } }

.left-350 { left: 35rem !important; }

.left-minus-350 { left: -35rem !important; }

@media (min-width: 991px) { .left-lg-350 { left: 35rem !important; }
  .left-lg-minus-350 { left: -35rem !important; } }

.left-360 { left: 36rem !important; }

.left-minus-360 { left: -36rem !important; }

@media (min-width: 991px) { .left-lg-360 { left: 36rem !important; }
  .left-lg-minus-360 { left: -36rem !important; } }

.left-370 { left: 37rem !important; }

.left-minus-370 { left: -37rem !important; }

@media (min-width: 991px) { .left-lg-370 { left: 37rem !important; }
  .left-lg-minus-370 { left: -37rem !important; } }

.left-380 { left: 38rem !important; }

.left-minus-380 { left: -38rem !important; }

@media (min-width: 991px) { .left-lg-380 { left: 38rem !important; }
  .left-lg-minus-380 { left: -38rem !important; } }

.left-390 { left: 39rem !important; }

.left-minus-390 { left: -39rem !important; }

@media (min-width: 991px) { .left-lg-390 { left: 39rem !important; }
  .left-lg-minus-390 { left: -39rem !important; } }

.left-400 { left: 40rem !important; }

.left-minus-400 { left: -40rem !important; }

@media (min-width: 991px) { .left-lg-400 { left: 40rem !important; }
  .left-lg-minus-400 { left: -40rem !important; } }

.left-410 { left: 41rem !important; }

.left-minus-410 { left: -41rem !important; }

@media (min-width: 991px) { .left-lg-410 { left: 41rem !important; }
  .left-lg-minus-410 { left: -41rem !important; } }

.left-420 { left: 42rem !important; }

.left-minus-420 { left: -42rem !important; }

@media (min-width: 991px) { .left-lg-420 { left: 42rem !important; }
  .left-lg-minus-420 { left: -42rem !important; } }

.left-430 { left: 43rem !important; }

.left-minus-430 { left: -43rem !important; }

@media (min-width: 991px) { .left-lg-430 { left: 43rem !important; }
  .left-lg-minus-430 { left: -43rem !important; } }

.left-440 { left: 44rem !important; }

.left-minus-440 { left: -44rem !important; }

@media (min-width: 991px) { .left-lg-440 { left: 44rem !important; }
  .left-lg-minus-440 { left: -44rem !important; } }

.left-450 { left: 45rem !important; }

.left-minus-450 { left: -45rem !important; }

@media (min-width: 991px) { .left-lg-450 { left: 45rem !important; }
  .left-lg-minus-450 { left: -45rem !important; } }

.left-460 { left: 46rem !important; }

.left-minus-460 { left: -46rem !important; }

@media (min-width: 991px) { .left-lg-460 { left: 46rem !important; }
  .left-lg-minus-460 { left: -46rem !important; } }

.left-470 { left: 47rem !important; }

.left-minus-470 { left: -47rem !important; }

@media (min-width: 991px) { .left-lg-470 { left: 47rem !important; }
  .left-lg-minus-470 { left: -47rem !important; } }

.left-480 { left: 48rem !important; }

.left-minus-480 { left: -48rem !important; }

@media (min-width: 991px) { .left-lg-480 { left: 48rem !important; }
  .left-lg-minus-480 { left: -48rem !important; } }

.left-490 { left: 49rem !important; }

.left-minus-490 { left: -49rem !important; }

@media (min-width: 991px) { .left-lg-490 { left: 49rem !important; }
  .left-lg-minus-490 { left: -49rem !important; } }

.left-500 { left: 50rem !important; }

.left-minus-500 { left: -50rem !important; }

@media (min-width: 991px) { .left-lg-500 { left: 50rem !important; }
  .left-lg-minus-500 { left: -50rem !important; } }

.left-510 { left: 51rem !important; }

.left-minus-510 { left: -51rem !important; }

@media (min-width: 991px) { .left-lg-510 { left: 51rem !important; }
  .left-lg-minus-510 { left: -51rem !important; } }

.left-520 { left: 52rem !important; }

.left-minus-520 { left: -52rem !important; }

@media (min-width: 991px) { .left-lg-520 { left: 52rem !important; }
  .left-lg-minus-520 { left: -52rem !important; } }

.left-530 { left: 53rem !important; }

.left-minus-530 { left: -53rem !important; }

@media (min-width: 991px) { .left-lg-530 { left: 53rem !important; }
  .left-lg-minus-530 { left: -53rem !important; } }

.left-540 { left: 54rem !important; }

.left-minus-540 { left: -54rem !important; }

@media (min-width: 991px) { .left-lg-540 { left: 54rem !important; }
  .left-lg-minus-540 { left: -54rem !important; } }

.left-550 { left: 55rem !important; }

.left-minus-550 { left: -55rem !important; }

@media (min-width: 991px) { .left-lg-550 { left: 55rem !important; }
  .left-lg-minus-550 { left: -55rem !important; } }

.left-560 { left: 56rem !important; }

.left-minus-560 { left: -56rem !important; }

@media (min-width: 991px) { .left-lg-560 { left: 56rem !important; }
  .left-lg-minus-560 { left: -56rem !important; } }

.left-570 { left: 57rem !important; }

.left-minus-570 { left: -57rem !important; }

@media (min-width: 991px) { .left-lg-570 { left: 57rem !important; }
  .left-lg-minus-570 { left: -57rem !important; } }

.left-580 { left: 58rem !important; }

.left-minus-580 { left: -58rem !important; }

@media (min-width: 991px) { .left-lg-580 { left: 58rem !important; }
  .left-lg-minus-580 { left: -58rem !important; } }

.left-590 { left: 59rem !important; }

.left-minus-590 { left: -59rem !important; }

@media (min-width: 991px) { .left-lg-590 { left: 59rem !important; }
  .left-lg-minus-590 { left: -59rem !important; } }

.left-600 { left: 60rem !important; }

.left-minus-600 { left: -60rem !important; }

@media (min-width: 991px) { .left-lg-600 { left: 60rem !important; }
  .left-lg-minus-600 { left: -60rem !important; } }

.left-610 { left: 61rem !important; }

.left-minus-610 { left: -61rem !important; }

@media (min-width: 991px) { .left-lg-610 { left: 61rem !important; }
  .left-lg-minus-610 { left: -61rem !important; } }

.left-620 { left: 62rem !important; }

.left-minus-620 { left: -62rem !important; }

@media (min-width: 991px) { .left-lg-620 { left: 62rem !important; }
  .left-lg-minus-620 { left: -62rem !important; } }

.left-630 { left: 63rem !important; }

.left-minus-630 { left: -63rem !important; }

@media (min-width: 991px) { .left-lg-630 { left: 63rem !important; }
  .left-lg-minus-630 { left: -63rem !important; } }

.left-640 { left: 64rem !important; }

.left-minus-640 { left: -64rem !important; }

@media (min-width: 991px) { .left-lg-640 { left: 64rem !important; }
  .left-lg-minus-640 { left: -64rem !important; } }

.left-650 { left: 65rem !important; }

.left-minus-650 { left: -65rem !important; }

@media (min-width: 991px) { .left-lg-650 { left: 65rem !important; }
  .left-lg-minus-650 { left: -65rem !important; } }

.left-660 { left: 66rem !important; }

.left-minus-660 { left: -66rem !important; }

@media (min-width: 991px) { .left-lg-660 { left: 66rem !important; }
  .left-lg-minus-660 { left: -66rem !important; } }

.left-670 { left: 67rem !important; }

.left-minus-670 { left: -67rem !important; }

@media (min-width: 991px) { .left-lg-670 { left: 67rem !important; }
  .left-lg-minus-670 { left: -67rem !important; } }

.left-680 { left: 68rem !important; }

.left-minus-680 { left: -68rem !important; }

@media (min-width: 991px) { .left-lg-680 { left: 68rem !important; }
  .left-lg-minus-680 { left: -68rem !important; } }

.left-690 { left: 69rem !important; }

.left-minus-690 { left: -69rem !important; }

@media (min-width: 991px) { .left-lg-690 { left: 69rem !important; }
  .left-lg-minus-690 { left: -69rem !important; } }

.left-700 { left: 70rem !important; }

.left-minus-700 { left: -70rem !important; }

@media (min-width: 991px) { .left-lg-700 { left: 70rem !important; }
  .left-lg-minus-700 { left: -70rem !important; } }

.left-710 { left: 71rem !important; }

.left-minus-710 { left: -71rem !important; }

@media (min-width: 991px) { .left-lg-710 { left: 71rem !important; }
  .left-lg-minus-710 { left: -71rem !important; } }

.left-720 { left: 72rem !important; }

.left-minus-720 { left: -72rem !important; }

@media (min-width: 991px) { .left-lg-720 { left: 72rem !important; }
  .left-lg-minus-720 { left: -72rem !important; } }

.left-730 { left: 73rem !important; }

.left-minus-730 { left: -73rem !important; }

@media (min-width: 991px) { .left-lg-730 { left: 73rem !important; }
  .left-lg-minus-730 { left: -73rem !important; } }

.left-740 { left: 74rem !important; }

.left-minus-740 { left: -74rem !important; }

@media (min-width: 991px) { .left-lg-740 { left: 74rem !important; }
  .left-lg-minus-740 { left: -74rem !important; } }

.left-750 { left: 75rem !important; }

.left-minus-750 { left: -75rem !important; }

@media (min-width: 991px) { .left-lg-750 { left: 75rem !important; }
  .left-lg-minus-750 { left: -75rem !important; } }

.left-760 { left: 76rem !important; }

.left-minus-760 { left: -76rem !important; }

@media (min-width: 991px) { .left-lg-760 { left: 76rem !important; }
  .left-lg-minus-760 { left: -76rem !important; } }

.left-770 { left: 77rem !important; }

.left-minus-770 { left: -77rem !important; }

@media (min-width: 991px) { .left-lg-770 { left: 77rem !important; }
  .left-lg-minus-770 { left: -77rem !important; } }

.left-780 { left: 78rem !important; }

.left-minus-780 { left: -78rem !important; }

@media (min-width: 991px) { .left-lg-780 { left: 78rem !important; }
  .left-lg-minus-780 { left: -78rem !important; } }

.left-790 { left: 79rem !important; }

.left-minus-790 { left: -79rem !important; }

@media (min-width: 991px) { .left-lg-790 { left: 79rem !important; }
  .left-lg-minus-790 { left: -79rem !important; } }

.left-800 { left: 80rem !important; }

.left-minus-800 { left: -80rem !important; }

@media (min-width: 991px) { .left-lg-800 { left: 80rem !important; }
  .left-lg-minus-800 { left: -80rem !important; } }

.left-810 { left: 81rem !important; }

.left-minus-810 { left: -81rem !important; }

@media (min-width: 991px) { .left-lg-810 { left: 81rem !important; }
  .left-lg-minus-810 { left: -81rem !important; } }

.left-820 { left: 82rem !important; }

.left-minus-820 { left: -82rem !important; }

@media (min-width: 991px) { .left-lg-820 { left: 82rem !important; }
  .left-lg-minus-820 { left: -82rem !important; } }

.left-830 { left: 83rem !important; }

.left-minus-830 { left: -83rem !important; }

@media (min-width: 991px) { .left-lg-830 { left: 83rem !important; }
  .left-lg-minus-830 { left: -83rem !important; } }

.left-840 { left: 84rem !important; }

.left-minus-840 { left: -84rem !important; }

@media (min-width: 991px) { .left-lg-840 { left: 84rem !important; }
  .left-lg-minus-840 { left: -84rem !important; } }

.left-850 { left: 85rem !important; }

.left-minus-850 { left: -85rem !important; }

@media (min-width: 991px) { .left-lg-850 { left: 85rem !important; }
  .left-lg-minus-850 { left: -85rem !important; } }

.left-860 { left: 86rem !important; }

.left-minus-860 { left: -86rem !important; }

@media (min-width: 991px) { .left-lg-860 { left: 86rem !important; }
  .left-lg-minus-860 { left: -86rem !important; } }

.left-870 { left: 87rem !important; }

.left-minus-870 { left: -87rem !important; }

@media (min-width: 991px) { .left-lg-870 { left: 87rem !important; }
  .left-lg-minus-870 { left: -87rem !important; } }

.left-880 { left: 88rem !important; }

.left-minus-880 { left: -88rem !important; }

@media (min-width: 991px) { .left-lg-880 { left: 88rem !important; }
  .left-lg-minus-880 { left: -88rem !important; } }

.left-890 { left: 89rem !important; }

.left-minus-890 { left: -89rem !important; }

@media (min-width: 991px) { .left-lg-890 { left: 89rem !important; }
  .left-lg-minus-890 { left: -89rem !important; } }

.left-900 { left: 90rem !important; }

.left-minus-900 { left: -90rem !important; }

@media (min-width: 991px) { .left-lg-900 { left: 90rem !important; }
  .left-lg-minus-900 { left: -90rem !important; } }

.left-910 { left: 91rem !important; }

.left-minus-910 { left: -91rem !important; }

@media (min-width: 991px) { .left-lg-910 { left: 91rem !important; }
  .left-lg-minus-910 { left: -91rem !important; } }

.left-920 { left: 92rem !important; }

.left-minus-920 { left: -92rem !important; }

@media (min-width: 991px) { .left-lg-920 { left: 92rem !important; }
  .left-lg-minus-920 { left: -92rem !important; } }

.left-930 { left: 93rem !important; }

.left-minus-930 { left: -93rem !important; }

@media (min-width: 991px) { .left-lg-930 { left: 93rem !important; }
  .left-lg-minus-930 { left: -93rem !important; } }

.left-940 { left: 94rem !important; }

.left-minus-940 { left: -94rem !important; }

@media (min-width: 991px) { .left-lg-940 { left: 94rem !important; }
  .left-lg-minus-940 { left: -94rem !important; } }

.left-950 { left: 95rem !important; }

.left-minus-950 { left: -95rem !important; }

@media (min-width: 991px) { .left-lg-950 { left: 95rem !important; }
  .left-lg-minus-950 { left: -95rem !important; } }

.left-960 { left: 96rem !important; }

.left-minus-960 { left: -96rem !important; }

@media (min-width: 991px) { .left-lg-960 { left: 96rem !important; }
  .left-lg-minus-960 { left: -96rem !important; } }

.left-970 { left: 97rem !important; }

.left-minus-970 { left: -97rem !important; }

@media (min-width: 991px) { .left-lg-970 { left: 97rem !important; }
  .left-lg-minus-970 { left: -97rem !important; } }

.left-980 { left: 98rem !important; }

.left-minus-980 { left: -98rem !important; }

@media (min-width: 991px) { .left-lg-980 { left: 98rem !important; }
  .left-lg-minus-980 { left: -98rem !important; } }

.left-990 { left: 99rem !important; }

.left-minus-990 { left: -99rem !important; }

@media (min-width: 991px) { .left-lg-990 { left: 99rem !important; }
  .left-lg-minus-990 { left: -99rem !important; } }

.left-1000 { left: 100rem !important; }

.left-minus-1000 { left: -100rem !important; }

@media (min-width: 991px) { .left-lg-1000 { left: 100rem !important; }
  .left-lg-minus-1000 { left: -100rem !important; } }

.right-10 { right: 1rem !important; }

.right-minus-10 { right: -1rem !important; }

@media (min-width: 991px) { .right-lg-10 { right: 1rem !important; }
  .right-lg-minus-10 { right: -1rem !important; } }

.right-20 { right: 2rem !important; }

.right-minus-20 { right: -2rem !important; }

@media (min-width: 991px) { .right-lg-20 { right: 2rem !important; }
  .right-lg-minus-20 { right: -2rem !important; } }

.right-30 { right: 3rem !important; }

.right-minus-30 { right: -3rem !important; }

@media (min-width: 991px) { .right-lg-30 { right: 3rem !important; }
  .right-lg-minus-30 { right: -3rem !important; } }

.right-40 { right: 4rem !important; }

.right-minus-40 { right: -4rem !important; }

@media (min-width: 991px) { .right-lg-40 { right: 4rem !important; }
  .right-lg-minus-40 { right: -4rem !important; } }

.right-50 { right: 5rem !important; }

.right-minus-50 { right: -5rem !important; }

@media (min-width: 991px) { .right-lg-50 { right: 5rem !important; }
  .right-lg-minus-50 { right: -5rem !important; } }

.right-60 { right: 6rem !important; }

.right-minus-60 { right: -6rem !important; }

@media (min-width: 991px) { .right-lg-60 { right: 6rem !important; }
  .right-lg-minus-60 { right: -6rem !important; } }

.right-70 { right: 7rem !important; }

.right-minus-70 { right: -7rem !important; }

@media (min-width: 991px) { .right-lg-70 { right: 7rem !important; }
  .right-lg-minus-70 { right: -7rem !important; } }

.right-80 { right: 8rem !important; }

.right-minus-80 { right: -8rem !important; }

@media (min-width: 991px) { .right-lg-80 { right: 8rem !important; }
  .right-lg-minus-80 { right: -8rem !important; } }

.right-90 { right: 9rem !important; }

.right-minus-90 { right: -9rem !important; }

@media (min-width: 991px) { .right-lg-90 { right: 9rem !important; }
  .right-lg-minus-90 { right: -9rem !important; } }

.right-100 { right: 10rem !important; }

.right-minus-100 { right: -10rem !important; }

@media (min-width: 991px) { .right-lg-100 { right: 10rem !important; }
  .right-lg-minus-100 { right: -10rem !important; } }

.right-110 { right: 11rem !important; }

.right-minus-110 { right: -11rem !important; }

@media (min-width: 991px) { .right-lg-110 { right: 11rem !important; }
  .right-lg-minus-110 { right: -11rem !important; } }

.right-120 { right: 12rem !important; }

.right-minus-120 { right: -12rem !important; }

@media (min-width: 991px) { .right-lg-120 { right: 12rem !important; }
  .right-lg-minus-120 { right: -12rem !important; } }

.right-130 { right: 13rem !important; }

.right-minus-130 { right: -13rem !important; }

@media (min-width: 991px) { .right-lg-130 { right: 13rem !important; }
  .right-lg-minus-130 { right: -13rem !important; } }

.right-140 { right: 14rem !important; }

.right-minus-140 { right: -14rem !important; }

@media (min-width: 991px) { .right-lg-140 { right: 14rem !important; }
  .right-lg-minus-140 { right: -14rem !important; } }

.right-150 { right: 15rem !important; }

.right-minus-150 { right: -15rem !important; }

@media (min-width: 991px) { .right-lg-150 { right: 15rem !important; }
  .right-lg-minus-150 { right: -15rem !important; } }

.right-160 { right: 16rem !important; }

.right-minus-160 { right: -16rem !important; }

@media (min-width: 991px) { .right-lg-160 { right: 16rem !important; }
  .right-lg-minus-160 { right: -16rem !important; } }

.right-170 { right: 17rem !important; }

.right-minus-170 { right: -17rem !important; }

@media (min-width: 991px) { .right-lg-170 { right: 17rem !important; }
  .right-lg-minus-170 { right: -17rem !important; } }

.right-180 { right: 18rem !important; }

.right-minus-180 { right: -18rem !important; }

@media (min-width: 991px) { .right-lg-180 { right: 18rem !important; }
  .right-lg-minus-180 { right: -18rem !important; } }

.right-190 { right: 19rem !important; }

.right-minus-190 { right: -19rem !important; }

@media (min-width: 991px) { .right-lg-190 { right: 19rem !important; }
  .right-lg-minus-190 { right: -19rem !important; } }

.right-200 { right: 20rem !important; }

.right-minus-200 { right: -20rem !important; }

@media (min-width: 991px) { .right-lg-200 { right: 20rem !important; }
  .right-lg-minus-200 { right: -20rem !important; } }

.right-210 { right: 21rem !important; }

.right-minus-210 { right: -21rem !important; }

@media (min-width: 991px) { .right-lg-210 { right: 21rem !important; }
  .right-lg-minus-210 { right: -21rem !important; } }

.right-220 { right: 22rem !important; }

.right-minus-220 { right: -22rem !important; }

@media (min-width: 991px) { .right-lg-220 { right: 22rem !important; }
  .right-lg-minus-220 { right: -22rem !important; } }

.right-230 { right: 23rem !important; }

.right-minus-230 { right: -23rem !important; }

@media (min-width: 991px) { .right-lg-230 { right: 23rem !important; }
  .right-lg-minus-230 { right: -23rem !important; } }

.right-240 { right: 24rem !important; }

.right-minus-240 { right: -24rem !important; }

@media (min-width: 991px) { .right-lg-240 { right: 24rem !important; }
  .right-lg-minus-240 { right: -24rem !important; } }

.right-250 { right: 25rem !important; }

.right-minus-250 { right: -25rem !important; }

@media (min-width: 991px) { .right-lg-250 { right: 25rem !important; }
  .right-lg-minus-250 { right: -25rem !important; } }

.right-260 { right: 26rem !important; }

.right-minus-260 { right: -26rem !important; }

@media (min-width: 991px) { .right-lg-260 { right: 26rem !important; }
  .right-lg-minus-260 { right: -26rem !important; } }

.right-270 { right: 27rem !important; }

.right-minus-270 { right: -27rem !important; }

@media (min-width: 991px) { .right-lg-270 { right: 27rem !important; }
  .right-lg-minus-270 { right: -27rem !important; } }

.right-280 { right: 28rem !important; }

.right-minus-280 { right: -28rem !important; }

@media (min-width: 991px) { .right-lg-280 { right: 28rem !important; }
  .right-lg-minus-280 { right: -28rem !important; } }

.right-290 { right: 29rem !important; }

.right-minus-290 { right: -29rem !important; }

@media (min-width: 991px) { .right-lg-290 { right: 29rem !important; }
  .right-lg-minus-290 { right: -29rem !important; } }

.right-300 { right: 30rem !important; }

.right-minus-300 { right: -30rem !important; }

@media (min-width: 991px) { .right-lg-300 { right: 30rem !important; }
  .right-lg-minus-300 { right: -30rem !important; } }

.right-310 { right: 31rem !important; }

.right-minus-310 { right: -31rem !important; }

@media (min-width: 991px) { .right-lg-310 { right: 31rem !important; }
  .right-lg-minus-310 { right: -31rem !important; } }

.right-320 { right: 32rem !important; }

.right-minus-320 { right: -32rem !important; }

@media (min-width: 991px) { .right-lg-320 { right: 32rem !important; }
  .right-lg-minus-320 { right: -32rem !important; } }

.right-330 { right: 33rem !important; }

.right-minus-330 { right: -33rem !important; }

@media (min-width: 991px) { .right-lg-330 { right: 33rem !important; }
  .right-lg-minus-330 { right: -33rem !important; } }

.right-340 { right: 34rem !important; }

.right-minus-340 { right: -34rem !important; }

@media (min-width: 991px) { .right-lg-340 { right: 34rem !important; }
  .right-lg-minus-340 { right: -34rem !important; } }

.right-350 { right: 35rem !important; }

.right-minus-350 { right: -35rem !important; }

@media (min-width: 991px) { .right-lg-350 { right: 35rem !important; }
  .right-lg-minus-350 { right: -35rem !important; } }

.right-360 { right: 36rem !important; }

.right-minus-360 { right: -36rem !important; }

@media (min-width: 991px) { .right-lg-360 { right: 36rem !important; }
  .right-lg-minus-360 { right: -36rem !important; } }

.right-370 { right: 37rem !important; }

.right-minus-370 { right: -37rem !important; }

@media (min-width: 991px) { .right-lg-370 { right: 37rem !important; }
  .right-lg-minus-370 { right: -37rem !important; } }

.right-380 { right: 38rem !important; }

.right-minus-380 { right: -38rem !important; }

@media (min-width: 991px) { .right-lg-380 { right: 38rem !important; }
  .right-lg-minus-380 { right: -38rem !important; } }

.right-390 { right: 39rem !important; }

.right-minus-390 { right: -39rem !important; }

@media (min-width: 991px) { .right-lg-390 { right: 39rem !important; }
  .right-lg-minus-390 { right: -39rem !important; } }

.right-400 { right: 40rem !important; }

.right-minus-400 { right: -40rem !important; }

@media (min-width: 991px) { .right-lg-400 { right: 40rem !important; }
  .right-lg-minus-400 { right: -40rem !important; } }

.right-410 { right: 41rem !important; }

.right-minus-410 { right: -41rem !important; }

@media (min-width: 991px) { .right-lg-410 { right: 41rem !important; }
  .right-lg-minus-410 { right: -41rem !important; } }

.right-420 { right: 42rem !important; }

.right-minus-420 { right: -42rem !important; }

@media (min-width: 991px) { .right-lg-420 { right: 42rem !important; }
  .right-lg-minus-420 { right: -42rem !important; } }

.right-430 { right: 43rem !important; }

.right-minus-430 { right: -43rem !important; }

@media (min-width: 991px) { .right-lg-430 { right: 43rem !important; }
  .right-lg-minus-430 { right: -43rem !important; } }

.right-440 { right: 44rem !important; }

.right-minus-440 { right: -44rem !important; }

@media (min-width: 991px) { .right-lg-440 { right: 44rem !important; }
  .right-lg-minus-440 { right: -44rem !important; } }

.right-450 { right: 45rem !important; }

.right-minus-450 { right: -45rem !important; }

@media (min-width: 991px) { .right-lg-450 { right: 45rem !important; }
  .right-lg-minus-450 { right: -45rem !important; } }

.right-460 { right: 46rem !important; }

.right-minus-460 { right: -46rem !important; }

@media (min-width: 991px) { .right-lg-460 { right: 46rem !important; }
  .right-lg-minus-460 { right: -46rem !important; } }

.right-470 { right: 47rem !important; }

.right-minus-470 { right: -47rem !important; }

@media (min-width: 991px) { .right-lg-470 { right: 47rem !important; }
  .right-lg-minus-470 { right: -47rem !important; } }

.right-480 { right: 48rem !important; }

.right-minus-480 { right: -48rem !important; }

@media (min-width: 991px) { .right-lg-480 { right: 48rem !important; }
  .right-lg-minus-480 { right: -48rem !important; } }

.right-490 { right: 49rem !important; }

.right-minus-490 { right: -49rem !important; }

@media (min-width: 991px) { .right-lg-490 { right: 49rem !important; }
  .right-lg-minus-490 { right: -49rem !important; } }

.right-500 { right: 50rem !important; }

.right-minus-500 { right: -50rem !important; }

@media (min-width: 991px) { .right-lg-500 { right: 50rem !important; }
  .right-lg-minus-500 { right: -50rem !important; } }

.right-510 { right: 51rem !important; }

.right-minus-510 { right: -51rem !important; }

@media (min-width: 991px) { .right-lg-510 { right: 51rem !important; }
  .right-lg-minus-510 { right: -51rem !important; } }

.right-520 { right: 52rem !important; }

.right-minus-520 { right: -52rem !important; }

@media (min-width: 991px) { .right-lg-520 { right: 52rem !important; }
  .right-lg-minus-520 { right: -52rem !important; } }

.right-530 { right: 53rem !important; }

.right-minus-530 { right: -53rem !important; }

@media (min-width: 991px) { .right-lg-530 { right: 53rem !important; }
  .right-lg-minus-530 { right: -53rem !important; } }

.right-540 { right: 54rem !important; }

.right-minus-540 { right: -54rem !important; }

@media (min-width: 991px) { .right-lg-540 { right: 54rem !important; }
  .right-lg-minus-540 { right: -54rem !important; } }

.right-550 { right: 55rem !important; }

.right-minus-550 { right: -55rem !important; }

@media (min-width: 991px) { .right-lg-550 { right: 55rem !important; }
  .right-lg-minus-550 { right: -55rem !important; } }

.right-560 { right: 56rem !important; }

.right-minus-560 { right: -56rem !important; }

@media (min-width: 991px) { .right-lg-560 { right: 56rem !important; }
  .right-lg-minus-560 { right: -56rem !important; } }

.right-570 { right: 57rem !important; }

.right-minus-570 { right: -57rem !important; }

@media (min-width: 991px) { .right-lg-570 { right: 57rem !important; }
  .right-lg-minus-570 { right: -57rem !important; } }

.right-580 { right: 58rem !important; }

.right-minus-580 { right: -58rem !important; }

@media (min-width: 991px) { .right-lg-580 { right: 58rem !important; }
  .right-lg-minus-580 { right: -58rem !important; } }

.right-590 { right: 59rem !important; }

.right-minus-590 { right: -59rem !important; }

@media (min-width: 991px) { .right-lg-590 { right: 59rem !important; }
  .right-lg-minus-590 { right: -59rem !important; } }

.right-600 { right: 60rem !important; }

.right-minus-600 { right: -60rem !important; }

@media (min-width: 991px) { .right-lg-600 { right: 60rem !important; }
  .right-lg-minus-600 { right: -60rem !important; } }

.right-610 { right: 61rem !important; }

.right-minus-610 { right: -61rem !important; }

@media (min-width: 991px) { .right-lg-610 { right: 61rem !important; }
  .right-lg-minus-610 { right: -61rem !important; } }

.right-620 { right: 62rem !important; }

.right-minus-620 { right: -62rem !important; }

@media (min-width: 991px) { .right-lg-620 { right: 62rem !important; }
  .right-lg-minus-620 { right: -62rem !important; } }

.right-630 { right: 63rem !important; }

.right-minus-630 { right: -63rem !important; }

@media (min-width: 991px) { .right-lg-630 { right: 63rem !important; }
  .right-lg-minus-630 { right: -63rem !important; } }

.right-640 { right: 64rem !important; }

.right-minus-640 { right: -64rem !important; }

@media (min-width: 991px) { .right-lg-640 { right: 64rem !important; }
  .right-lg-minus-640 { right: -64rem !important; } }

.right-650 { right: 65rem !important; }

.right-minus-650 { right: -65rem !important; }

@media (min-width: 991px) { .right-lg-650 { right: 65rem !important; }
  .right-lg-minus-650 { right: -65rem !important; } }

.right-660 { right: 66rem !important; }

.right-minus-660 { right: -66rem !important; }

@media (min-width: 991px) { .right-lg-660 { right: 66rem !important; }
  .right-lg-minus-660 { right: -66rem !important; } }

.right-670 { right: 67rem !important; }

.right-minus-670 { right: -67rem !important; }

@media (min-width: 991px) { .right-lg-670 { right: 67rem !important; }
  .right-lg-minus-670 { right: -67rem !important; } }

.right-680 { right: 68rem !important; }

.right-minus-680 { right: -68rem !important; }

@media (min-width: 991px) { .right-lg-680 { right: 68rem !important; }
  .right-lg-minus-680 { right: -68rem !important; } }

.right-690 { right: 69rem !important; }

.right-minus-690 { right: -69rem !important; }

@media (min-width: 991px) { .right-lg-690 { right: 69rem !important; }
  .right-lg-minus-690 { right: -69rem !important; } }

.right-700 { right: 70rem !important; }

.right-minus-700 { right: -70rem !important; }

@media (min-width: 991px) { .right-lg-700 { right: 70rem !important; }
  .right-lg-minus-700 { right: -70rem !important; } }

.right-710 { right: 71rem !important; }

.right-minus-710 { right: -71rem !important; }

@media (min-width: 991px) { .right-lg-710 { right: 71rem !important; }
  .right-lg-minus-710 { right: -71rem !important; } }

.right-720 { right: 72rem !important; }

.right-minus-720 { right: -72rem !important; }

@media (min-width: 991px) { .right-lg-720 { right: 72rem !important; }
  .right-lg-minus-720 { right: -72rem !important; } }

.right-730 { right: 73rem !important; }

.right-minus-730 { right: -73rem !important; }

@media (min-width: 991px) { .right-lg-730 { right: 73rem !important; }
  .right-lg-minus-730 { right: -73rem !important; } }

.right-740 { right: 74rem !important; }

.right-minus-740 { right: -74rem !important; }

@media (min-width: 991px) { .right-lg-740 { right: 74rem !important; }
  .right-lg-minus-740 { right: -74rem !important; } }

.right-750 { right: 75rem !important; }

.right-minus-750 { right: -75rem !important; }

@media (min-width: 991px) { .right-lg-750 { right: 75rem !important; }
  .right-lg-minus-750 { right: -75rem !important; } }

.right-760 { right: 76rem !important; }

.right-minus-760 { right: -76rem !important; }

@media (min-width: 991px) { .right-lg-760 { right: 76rem !important; }
  .right-lg-minus-760 { right: -76rem !important; } }

.right-770 { right: 77rem !important; }

.right-minus-770 { right: -77rem !important; }

@media (min-width: 991px) { .right-lg-770 { right: 77rem !important; }
  .right-lg-minus-770 { right: -77rem !important; } }

.right-780 { right: 78rem !important; }

.right-minus-780 { right: -78rem !important; }

@media (min-width: 991px) { .right-lg-780 { right: 78rem !important; }
  .right-lg-minus-780 { right: -78rem !important; } }

.right-790 { right: 79rem !important; }

.right-minus-790 { right: -79rem !important; }

@media (min-width: 991px) { .right-lg-790 { right: 79rem !important; }
  .right-lg-minus-790 { right: -79rem !important; } }

.right-800 { right: 80rem !important; }

.right-minus-800 { right: -80rem !important; }

@media (min-width: 991px) { .right-lg-800 { right: 80rem !important; }
  .right-lg-minus-800 { right: -80rem !important; } }

.right-810 { right: 81rem !important; }

.right-minus-810 { right: -81rem !important; }

@media (min-width: 991px) { .right-lg-810 { right: 81rem !important; }
  .right-lg-minus-810 { right: -81rem !important; } }

.right-820 { right: 82rem !important; }

.right-minus-820 { right: -82rem !important; }

@media (min-width: 991px) { .right-lg-820 { right: 82rem !important; }
  .right-lg-minus-820 { right: -82rem !important; } }

.right-830 { right: 83rem !important; }

.right-minus-830 { right: -83rem !important; }

@media (min-width: 991px) { .right-lg-830 { right: 83rem !important; }
  .right-lg-minus-830 { right: -83rem !important; } }

.right-840 { right: 84rem !important; }

.right-minus-840 { right: -84rem !important; }

@media (min-width: 991px) { .right-lg-840 { right: 84rem !important; }
  .right-lg-minus-840 { right: -84rem !important; } }

.right-850 { right: 85rem !important; }

.right-minus-850 { right: -85rem !important; }

@media (min-width: 991px) { .right-lg-850 { right: 85rem !important; }
  .right-lg-minus-850 { right: -85rem !important; } }

.right-860 { right: 86rem !important; }

.right-minus-860 { right: -86rem !important; }

@media (min-width: 991px) { .right-lg-860 { right: 86rem !important; }
  .right-lg-minus-860 { right: -86rem !important; } }

.right-870 { right: 87rem !important; }

.right-minus-870 { right: -87rem !important; }

@media (min-width: 991px) { .right-lg-870 { right: 87rem !important; }
  .right-lg-minus-870 { right: -87rem !important; } }

.right-880 { right: 88rem !important; }

.right-minus-880 { right: -88rem !important; }

@media (min-width: 991px) { .right-lg-880 { right: 88rem !important; }
  .right-lg-minus-880 { right: -88rem !important; } }

.right-890 { right: 89rem !important; }

.right-minus-890 { right: -89rem !important; }

@media (min-width: 991px) { .right-lg-890 { right: 89rem !important; }
  .right-lg-minus-890 { right: -89rem !important; } }

.right-900 { right: 90rem !important; }

.right-minus-900 { right: -90rem !important; }

@media (min-width: 991px) { .right-lg-900 { right: 90rem !important; }
  .right-lg-minus-900 { right: -90rem !important; } }

.right-910 { right: 91rem !important; }

.right-minus-910 { right: -91rem !important; }

@media (min-width: 991px) { .right-lg-910 { right: 91rem !important; }
  .right-lg-minus-910 { right: -91rem !important; } }

.right-920 { right: 92rem !important; }

.right-minus-920 { right: -92rem !important; }

@media (min-width: 991px) { .right-lg-920 { right: 92rem !important; }
  .right-lg-minus-920 { right: -92rem !important; } }

.right-930 { right: 93rem !important; }

.right-minus-930 { right: -93rem !important; }

@media (min-width: 991px) { .right-lg-930 { right: 93rem !important; }
  .right-lg-minus-930 { right: -93rem !important; } }

.right-940 { right: 94rem !important; }

.right-minus-940 { right: -94rem !important; }

@media (min-width: 991px) { .right-lg-940 { right: 94rem !important; }
  .right-lg-minus-940 { right: -94rem !important; } }

.right-950 { right: 95rem !important; }

.right-minus-950 { right: -95rem !important; }

@media (min-width: 991px) { .right-lg-950 { right: 95rem !important; }
  .right-lg-minus-950 { right: -95rem !important; } }

.right-960 { right: 96rem !important; }

.right-minus-960 { right: -96rem !important; }

@media (min-width: 991px) { .right-lg-960 { right: 96rem !important; }
  .right-lg-minus-960 { right: -96rem !important; } }

.right-970 { right: 97rem !important; }

.right-minus-970 { right: -97rem !important; }

@media (min-width: 991px) { .right-lg-970 { right: 97rem !important; }
  .right-lg-minus-970 { right: -97rem !important; } }

.right-980 { right: 98rem !important; }

.right-minus-980 { right: -98rem !important; }

@media (min-width: 991px) { .right-lg-980 { right: 98rem !important; }
  .right-lg-minus-980 { right: -98rem !important; } }

.right-990 { right: 99rem !important; }

.right-minus-990 { right: -99rem !important; }

@media (min-width: 991px) { .right-lg-990 { right: 99rem !important; }
  .right-lg-minus-990 { right: -99rem !important; } }

.right-1000 { right: 100rem !important; }

.right-minus-1000 { right: -100rem !important; }

@media (min-width: 991px) { .right-lg-1000 { right: 100rem !important; }
  .right-lg-minus-1000 { right: -100rem !important; } }

/* マージンの設定 */
.m-px-10 { margin: 1rem !important; }

@media (min-width: 991px) { .m-lg-px-10 { margin: 1rem !important; } }

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

@media (min-width: 991px) { .m-lg-px-20 { margin: 2rem !important; } }

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

@media (min-width: 991px) { .m-lg-px-30 { margin: 3rem !important; } }

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

@media (min-width: 991px) { .m-lg-px-40 { margin: 4rem !important; } }

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

@media (min-width: 991px) { .m-lg-px-50 { margin: 5rem !important; } }

.m-px-60 { margin: 6rem !important; }

@media (min-width: 991px) { .m-lg-px-60 { margin: 6rem !important; } }

.m-px-70 { margin: 7rem !important; }

@media (min-width: 991px) { .m-lg-px-70 { margin: 7rem !important; } }

.m-px-80 { margin: 8rem !important; }

@media (min-width: 991px) { .m-lg-px-80 { margin: 8rem !important; } }

.m-px-90 { margin: 9rem !important; }

@media (min-width: 991px) { .m-lg-px-90 { margin: 9rem !important; } }

.m-px-100 { margin: 10rem !important; }

@media (min-width: 991px) { .m-lg-px-100 { margin: 10rem !important; } }

.mt-px-10 { margin-top: 1rem !important; }

.mt-minus-px-10 { margin-top: -1rem !important; }

@media (min-width: 991px) { .mt-lg-px-10 { margin-top: 1rem !important; }
  .mt-lg-minus-px-10 { margin-top: -1rem !important; } }

.mt-px-20 { margin-top: 2rem !important; }

.mt-minus-px-20 { margin-top: -2rem !important; }

@media (min-width: 991px) { .mt-lg-px-20 { margin-top: 2rem !important; }
  .mt-lg-minus-px-20 { margin-top: -2rem !important; } }

.mt-px-30 { margin-top: 3rem !important; }

.mt-minus-px-30 { margin-top: -3rem !important; }

@media (min-width: 991px) { .mt-lg-px-30 { margin-top: 3rem !important; }
  .mt-lg-minus-px-30 { margin-top: -3rem !important; } }

.mt-px-40 { margin-top: 4rem !important; }

.mt-minus-px-40 { margin-top: -4rem !important; }

@media (min-width: 991px) { .mt-lg-px-40 { margin-top: 4rem !important; }
  .mt-lg-minus-px-40 { margin-top: -4rem !important; } }

.mt-px-50 { margin-top: 5rem !important; }

.mt-minus-px-50 { margin-top: -5rem !important; }

@media (min-width: 991px) { .mt-lg-px-50 { margin-top: 5rem !important; }
  .mt-lg-minus-px-50 { margin-top: -5rem !important; } }

.mt-px-60 { margin-top: 6rem !important; }

.mt-minus-px-60 { margin-top: -6rem !important; }

@media (min-width: 991px) { .mt-lg-px-60 { margin-top: 6rem !important; }
  .mt-lg-minus-px-60 { margin-top: -6rem !important; } }

.mt-px-70 { margin-top: 7rem !important; }

.mt-minus-px-70 { margin-top: -7rem !important; }

@media (min-width: 991px) { .mt-lg-px-70 { margin-top: 7rem !important; }
  .mt-lg-minus-px-70 { margin-top: -7rem !important; } }

.mt-px-80 { margin-top: 8rem !important; }

.mt-minus-px-80 { margin-top: -8rem !important; }

@media (min-width: 991px) { .mt-lg-px-80 { margin-top: 8rem !important; }
  .mt-lg-minus-px-80 { margin-top: -8rem !important; } }

.mt-px-90 { margin-top: 9rem !important; }

.mt-minus-px-90 { margin-top: -9rem !important; }

@media (min-width: 991px) { .mt-lg-px-90 { margin-top: 9rem !important; }
  .mt-lg-minus-px-90 { margin-top: -9rem !important; } }

.mt-px-100 { margin-top: 10rem !important; }

.mt-minus-px-100 { margin-top: -10rem !important; }

@media (min-width: 991px) { .mt-lg-px-100 { margin-top: 10rem !important; }
  .mt-lg-minus-px-100 { margin-top: -10rem !important; } }

.mb-px-10 { margin-bottom: 1rem !important; }

.mb-minus-px-10 { margin-bottom: -1rem !important; }

@media (min-width: 991px) { .mb-lg-px-10 { margin-bottom: 1rem !important; }
  .mb-lg-minus-px-10 { margin-bottom: -1rem !important; } }

.mb-px-20 { margin-bottom: 2rem !important; }

.mb-minus-px-20 { margin-bottom: -2rem !important; }

@media (min-width: 991px) { .mb-lg-px-20 { margin-bottom: 2rem !important; }
  .mb-lg-minus-px-20 { margin-bottom: -2rem !important; } }

.mb-px-30 { margin-bottom: 3rem !important; }

.mb-minus-px-30 { margin-bottom: -3rem !important; }

@media (min-width: 991px) { .mb-lg-px-30 { margin-bottom: 3rem !important; }
  .mb-lg-minus-px-30 { margin-bottom: -3rem !important; } }

.mb-px-40 { margin-bottom: 4rem !important; }

.mb-minus-px-40 { margin-bottom: -4rem !important; }

@media (min-width: 991px) { .mb-lg-px-40 { margin-bottom: 4rem !important; }
  .mb-lg-minus-px-40 { margin-bottom: -4rem !important; } }

.mb-px-50 { margin-bottom: 5rem !important; }

.mb-minus-px-50 { margin-bottom: -5rem !important; }

@media (min-width: 991px) { .mb-lg-px-50 { margin-bottom: 5rem !important; }
  .mb-lg-minus-px-50 { margin-bottom: -5rem !important; } }

.mb-px-60 { margin-bottom: 6rem !important; }

.mb-minus-px-60 { margin-bottom: -6rem !important; }

@media (min-width: 991px) { .mb-lg-px-60 { margin-bottom: 6rem !important; }
  .mb-lg-minus-px-60 { margin-bottom: -6rem !important; } }

.mb-px-70 { margin-bottom: 7rem !important; }

.mb-minus-px-70 { margin-bottom: -7rem !important; }

@media (min-width: 991px) { .mb-lg-px-70 { margin-bottom: 7rem !important; }
  .mb-lg-minus-px-70 { margin-bottom: -7rem !important; } }

.mb-px-80 { margin-bottom: 8rem !important; }

.mb-minus-px-80 { margin-bottom: -8rem !important; }

@media (min-width: 991px) { .mb-lg-px-80 { margin-bottom: 8rem !important; }
  .mb-lg-minus-px-80 { margin-bottom: -8rem !important; } }

.mb-px-90 { margin-bottom: 9rem !important; }

.mb-minus-px-90 { margin-bottom: -9rem !important; }

@media (min-width: 991px) { .mb-lg-px-90 { margin-bottom: 9rem !important; }
  .mb-lg-minus-px-90 { margin-bottom: -9rem !important; } }

.mb-px-100 { margin-bottom: 10rem !important; }

.mb-minus-px-100 { margin-bottom: -10rem !important; }

@media (min-width: 991px) { .mb-lg-px-100 { margin-bottom: 10rem !important; }
  .mb-lg-minus-px-100 { margin-bottom: -10rem !important; } }

.mb-px-110 { margin-bottom: 11rem !important; }

.mb-minus-px-110 { margin-bottom: -11rem !important; }

@media (min-width: 991px) { .mb-lg-px-110 { margin-bottom: 11rem !important; }
  .mb-lg-minus-px-110 { margin-bottom: -11rem !important; } }

.mb-px-120 { margin-bottom: 12rem !important; }

.mb-minus-px-120 { margin-bottom: -12rem !important; }

@media (min-width: 991px) { .mb-lg-px-120 { margin-bottom: 12rem !important; }
  .mb-lg-minus-px-120 { margin-bottom: -12rem !important; } }

.mb-px-130 { margin-bottom: 13rem !important; }

.mb-minus-px-130 { margin-bottom: -13rem !important; }

@media (min-width: 991px) { .mb-lg-px-130 { margin-bottom: 13rem !important; }
  .mb-lg-minus-px-130 { margin-bottom: -13rem !important; } }

.mb-px-140 { margin-bottom: 14rem !important; }

.mb-minus-px-140 { margin-bottom: -14rem !important; }

@media (min-width: 991px) { .mb-lg-px-140 { margin-bottom: 14rem !important; }
  .mb-lg-minus-px-140 { margin-bottom: -14rem !important; } }

.mb-px-150 { margin-bottom: 15rem !important; }

.mb-minus-px-150 { margin-bottom: -15rem !important; }

@media (min-width: 991px) { .mb-lg-px-150 { margin-bottom: 15rem !important; }
  .mb-lg-minus-px-150 { margin-bottom: -15rem !important; } }

.mb-px-160 { margin-bottom: 16rem !important; }

.mb-minus-px-160 { margin-bottom: -16rem !important; }

@media (min-width: 991px) { .mb-lg-px-160 { margin-bottom: 16rem !important; }
  .mb-lg-minus-px-160 { margin-bottom: -16rem !important; } }

.mb-px-170 { margin-bottom: 17rem !important; }

.mb-minus-px-170 { margin-bottom: -17rem !important; }

@media (min-width: 991px) { .mb-lg-px-170 { margin-bottom: 17rem !important; }
  .mb-lg-minus-px-170 { margin-bottom: -17rem !important; } }

.mb-px-180 { margin-bottom: 18rem !important; }

.mb-minus-px-180 { margin-bottom: -18rem !important; }

@media (min-width: 991px) { .mb-lg-px-180 { margin-bottom: 18rem !important; }
  .mb-lg-minus-px-180 { margin-bottom: -18rem !important; } }

.mb-px-190 { margin-bottom: 19rem !important; }

.mb-minus-px-190 { margin-bottom: -19rem !important; }

@media (min-width: 991px) { .mb-lg-px-190 { margin-bottom: 19rem !important; }
  .mb-lg-minus-px-190 { margin-bottom: -19rem !important; } }

.mb-px-200 { margin-bottom: 20rem !important; }

.mb-minus-px-200 { margin-bottom: -20rem !important; }

@media (min-width: 991px) { .mb-lg-px-200 { margin-bottom: 20rem !important; }
  .mb-lg-minus-px-200 { margin-bottom: -20rem !important; } }

.ml-px-10 { margin-left: 1rem !important; }

.ml-minus-px-10 { margin-left: -1rem !important; }

@media (min-width: 991px) { .ml-lg-px-10 { margin-left: 1rem !important; }
  .ml-lg-minus-px-10 { margin-left: -1rem !important; } }

.ml-px-20 { margin-left: 2rem !important; }

.ml-minus-px-20 { margin-left: -2rem !important; }

@media (min-width: 991px) { .ml-lg-px-20 { margin-left: 2rem !important; }
  .ml-lg-minus-px-20 { margin-left: -2rem !important; } }

.ml-px-30 { margin-left: 3rem !important; }

.ml-minus-px-30 { margin-left: -3rem !important; }

@media (min-width: 991px) { .ml-lg-px-30 { margin-left: 3rem !important; }
  .ml-lg-minus-px-30 { margin-left: -3rem !important; } }

.ml-px-40 { margin-left: 4rem !important; }

.ml-minus-px-40 { margin-left: -4rem !important; }

@media (min-width: 991px) { .ml-lg-px-40 { margin-left: 4rem !important; }
  .ml-lg-minus-px-40 { margin-left: -4rem !important; } }

.ml-px-50 { margin-left: 5rem !important; }

.ml-minus-px-50 { margin-left: -5rem !important; }

@media (min-width: 991px) { .ml-lg-px-50 { margin-left: 5rem !important; }
  .ml-lg-minus-px-50 { margin-left: -5rem !important; } }

.ml-px-60 { margin-left: 6rem !important; }

.ml-minus-px-60 { margin-left: -6rem !important; }

@media (min-width: 991px) { .ml-lg-px-60 { margin-left: 6rem !important; }
  .ml-lg-minus-px-60 { margin-left: -6rem !important; } }

.ml-px-70 { margin-left: 7rem !important; }

.ml-minus-px-70 { margin-left: -7rem !important; }

@media (min-width: 991px) { .ml-lg-px-70 { margin-left: 7rem !important; }
  .ml-lg-minus-px-70 { margin-left: -7rem !important; } }

.ml-px-80 { margin-left: 8rem !important; }

.ml-minus-px-80 { margin-left: -8rem !important; }

@media (min-width: 991px) { .ml-lg-px-80 { margin-left: 8rem !important; }
  .ml-lg-minus-px-80 { margin-left: -8rem !important; } }

.ml-px-90 { margin-left: 9rem !important; }

.ml-minus-px-90 { margin-left: -9rem !important; }

@media (min-width: 991px) { .ml-lg-px-90 { margin-left: 9rem !important; }
  .ml-lg-minus-px-90 { margin-left: -9rem !important; } }

.ml-px-100 { margin-left: 10rem !important; }

.ml-minus-px-100 { margin-left: -10rem !important; }

@media (min-width: 991px) { .ml-lg-px-100 { margin-left: 10rem !important; }
  .ml-lg-minus-px-100 { margin-left: -10rem !important; } }

.ml-px-110 { margin-left: 11rem !important; }

.ml-minus-px-110 { margin-left: -11rem !important; }

@media (min-width: 991px) { .ml-lg-px-110 { margin-left: 11rem !important; }
  .ml-lg-minus-px-110 { margin-left: -11rem !important; } }

.ml-px-120 { margin-left: 12rem !important; }

.ml-minus-px-120 { margin-left: -12rem !important; }

@media (min-width: 991px) { .ml-lg-px-120 { margin-left: 12rem !important; }
  .ml-lg-minus-px-120 { margin-left: -12rem !important; } }

.ml-px-130 { margin-left: 13rem !important; }

.ml-minus-px-130 { margin-left: -13rem !important; }

@media (min-width: 991px) { .ml-lg-px-130 { margin-left: 13rem !important; }
  .ml-lg-minus-px-130 { margin-left: -13rem !important; } }

.ml-px-140 { margin-left: 14rem !important; }

.ml-minus-px-140 { margin-left: -14rem !important; }

@media (min-width: 991px) { .ml-lg-px-140 { margin-left: 14rem !important; }
  .ml-lg-minus-px-140 { margin-left: -14rem !important; } }

.ml-px-150 { margin-left: 15rem !important; }

.ml-minus-px-150 { margin-left: -15rem !important; }

@media (min-width: 991px) { .ml-lg-px-150 { margin-left: 15rem !important; }
  .ml-lg-minus-px-150 { margin-left: -15rem !important; } }

.ml-px-160 { margin-left: 16rem !important; }

.ml-minus-px-160 { margin-left: -16rem !important; }

@media (min-width: 991px) { .ml-lg-px-160 { margin-left: 16rem !important; }
  .ml-lg-minus-px-160 { margin-left: -16rem !important; } }

.ml-px-170 { margin-left: 17rem !important; }

.ml-minus-px-170 { margin-left: -17rem !important; }

@media (min-width: 991px) { .ml-lg-px-170 { margin-left: 17rem !important; }
  .ml-lg-minus-px-170 { margin-left: -17rem !important; } }

.ml-px-180 { margin-left: 18rem !important; }

.ml-minus-px-180 { margin-left: -18rem !important; }

@media (min-width: 991px) { .ml-lg-px-180 { margin-left: 18rem !important; }
  .ml-lg-minus-px-180 { margin-left: -18rem !important; } }

.ml-px-190 { margin-left: 19rem !important; }

.ml-minus-px-190 { margin-left: -19rem !important; }

@media (min-width: 991px) { .ml-lg-px-190 { margin-left: 19rem !important; }
  .ml-lg-minus-px-190 { margin-left: -19rem !important; } }

.ml-px-200 { margin-left: 20rem !important; }

.ml-minus-px-200 { margin-left: -20rem !important; }

@media (min-width: 991px) { .ml-lg-px-200 { margin-left: 20rem !important; }
  .ml-lg-minus-px-200 { margin-left: -20rem !important; } }

.mr-px-10 { margin-right: 1rem !important; }

.mr-minus-px-10 { margin-right: -1rem !important; }

@media (min-width: 991px) { .mr-lg-px-10 { margin-right: 1rem !important; }
  .mr-lg-minus-px-10 { margin-right: -1rem !important; } }

.mr-px-20 { margin-right: 2rem !important; }

.mr-minus-px-20 { margin-right: -2rem !important; }

@media (min-width: 991px) { .mr-lg-px-20 { margin-right: 2rem !important; }
  .mr-lg-minus-px-20 { margin-right: -2rem !important; } }

.mr-px-30 { margin-right: 3rem !important; }

.mr-minus-px-30 { margin-right: -3rem !important; }

@media (min-width: 991px) { .mr-lg-px-30 { margin-right: 3rem !important; }
  .mr-lg-minus-px-30 { margin-right: -3rem !important; } }

.mr-px-40 { margin-right: 4rem !important; }

.mr-minus-px-40 { margin-right: -4rem !important; }

@media (min-width: 991px) { .mr-lg-px-40 { margin-right: 4rem !important; }
  .mr-lg-minus-px-40 { margin-right: -4rem !important; } }

.mr-px-50 { margin-right: 5rem !important; }

.mr-minus-px-50 { margin-right: -5rem !important; }

@media (min-width: 991px) { .mr-lg-px-50 { margin-right: 5rem !important; }
  .mr-lg-minus-px-50 { margin-right: -5rem !important; } }

.mr-px-60 { margin-right: 6rem !important; }

.mr-minus-px-60 { margin-right: -6rem !important; }

@media (min-width: 991px) { .mr-lg-px-60 { margin-right: 6rem !important; }
  .mr-lg-minus-px-60 { margin-right: -6rem !important; } }

.mr-px-70 { margin-right: 7rem !important; }

.mr-minus-px-70 { margin-right: -7rem !important; }

@media (min-width: 991px) { .mr-lg-px-70 { margin-right: 7rem !important; }
  .mr-lg-minus-px-70 { margin-right: -7rem !important; } }

.mr-px-80 { margin-right: 8rem !important; }

.mr-minus-px-80 { margin-right: -8rem !important; }

@media (min-width: 991px) { .mr-lg-px-80 { margin-right: 8rem !important; }
  .mr-lg-minus-px-80 { margin-right: -8rem !important; } }

.mr-px-90 { margin-right: 9rem !important; }

.mr-minus-px-90 { margin-right: -9rem !important; }

@media (min-width: 991px) { .mr-lg-px-90 { margin-right: 9rem !important; }
  .mr-lg-minus-px-90 { margin-right: -9rem !important; } }

.mr-px-100 { margin-right: 10rem !important; }

.mr-minus-px-100 { margin-right: -10rem !important; }

@media (min-width: 991px) { .mr-lg-px-100 { margin-right: 10rem !important; }
  .mr-lg-minus-px-100 { margin-right: -10rem !important; } }

.mr-px-110 { margin-right: 11rem !important; }

.mr-minus-px-110 { margin-right: -11rem !important; }

@media (min-width: 991px) { .mr-lg-px-110 { margin-right: 11rem !important; }
  .mr-lg-minus-px-110 { margin-right: -11rem !important; } }

.mr-px-120 { margin-right: 12rem !important; }

.mr-minus-px-120 { margin-right: -12rem !important; }

@media (min-width: 991px) { .mr-lg-px-120 { margin-right: 12rem !important; }
  .mr-lg-minus-px-120 { margin-right: -12rem !important; } }

.mr-px-130 { margin-right: 13rem !important; }

.mr-minus-px-130 { margin-right: -13rem !important; }

@media (min-width: 991px) { .mr-lg-px-130 { margin-right: 13rem !important; }
  .mr-lg-minus-px-130 { margin-right: -13rem !important; } }

.mr-px-140 { margin-right: 14rem !important; }

.mr-minus-px-140 { margin-right: -14rem !important; }

@media (min-width: 991px) { .mr-lg-px-140 { margin-right: 14rem !important; }
  .mr-lg-minus-px-140 { margin-right: -14rem !important; } }

.mr-px-150 { margin-right: 15rem !important; }

.mr-minus-px-150 { margin-right: -15rem !important; }

@media (min-width: 991px) { .mr-lg-px-150 { margin-right: 15rem !important; }
  .mr-lg-minus-px-150 { margin-right: -15rem !important; } }

.mr-px-160 { margin-right: 16rem !important; }

.mr-minus-px-160 { margin-right: -16rem !important; }

@media (min-width: 991px) { .mr-lg-px-160 { margin-right: 16rem !important; }
  .mr-lg-minus-px-160 { margin-right: -16rem !important; } }

.mr-px-170 { margin-right: 17rem !important; }

.mr-minus-px-170 { margin-right: -17rem !important; }

@media (min-width: 991px) { .mr-lg-px-170 { margin-right: 17rem !important; }
  .mr-lg-minus-px-170 { margin-right: -17rem !important; } }

.mr-px-180 { margin-right: 18rem !important; }

.mr-minus-px-180 { margin-right: -18rem !important; }

@media (min-width: 991px) { .mr-lg-px-180 { margin-right: 18rem !important; }
  .mr-lg-minus-px-180 { margin-right: -18rem !important; } }

.mr-px-190 { margin-right: 19rem !important; }

.mr-minus-px-190 { margin-right: -19rem !important; }

@media (min-width: 991px) { .mr-lg-px-190 { margin-right: 19rem !important; }
  .mr-lg-minus-px-190 { margin-right: -19rem !important; } }

.mr-px-200 { margin-right: 20rem !important; }

.mr-minus-px-200 { margin-right: -20rem !important; }

@media (min-width: 991px) { .mr-lg-px-200 { margin-right: 20rem !important; }
  .mr-lg-minus-px-200 { margin-right: -20rem !important; } }

/* パディングの設定 */
.p-px-10 { padding: 1rem !important; }

@media (min-width: 991px) { .p-lg-px-10 { padding: 1rem !important; } }

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

@media (min-width: 991px) { .p-lg-px-20 { padding: 2rem !important; } }

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

@media (min-width: 991px) { .p-lg-px-30 { padding: 3rem !important; } }

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

@media (min-width: 991px) { .p-lg-px-40 { padding: 4rem !important; } }

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

@media (min-width: 991px) { .p-lg-px-50 { padding: 5rem !important; } }

.p-px-60 { padding: 6rem !important; }

@media (min-width: 991px) { .p-lg-px-60 { padding: 6rem !important; } }

.p-px-70 { padding: 7rem !important; }

@media (min-width: 991px) { .p-lg-px-70 { padding: 7rem !important; } }

.p-px-80 { padding: 8rem !important; }

@media (min-width: 991px) { .p-lg-px-80 { padding: 8rem !important; } }

.p-px-90 { padding: 9rem !important; }

@media (min-width: 991px) { .p-lg-px-90 { padding: 9rem !important; } }

.p-px-100 { padding: 10rem !important; }

@media (min-width: 991px) { .p-lg-px-100 { padding: 10rem !important; } }

.p-px-110 { padding: 11rem !important; }

@media (min-width: 991px) { .p-lg-px-110 { padding: 11rem !important; } }

.p-px-120 { padding: 12rem !important; }

@media (min-width: 991px) { .p-lg-px-120 { padding: 12rem !important; } }

.p-px-130 { padding: 13rem !important; }

@media (min-width: 991px) { .p-lg-px-130 { padding: 13rem !important; } }

.p-px-140 { padding: 14rem !important; }

@media (min-width: 991px) { .p-lg-px-140 { padding: 14rem !important; } }

.p-px-150 { padding: 15rem !important; }

@media (min-width: 991px) { .p-lg-px-150 { padding: 15rem !important; } }

.p-px-160 { padding: 16rem !important; }

@media (min-width: 991px) { .p-lg-px-160 { padding: 16rem !important; } }

.p-px-170 { padding: 17rem !important; }

@media (min-width: 991px) { .p-lg-px-170 { padding: 17rem !important; } }

.p-px-180 { padding: 18rem !important; }

@media (min-width: 991px) { .p-lg-px-180 { padding: 18rem !important; } }

.p-px-190 { padding: 19rem !important; }

@media (min-width: 991px) { .p-lg-px-190 { padding: 19rem !important; } }

.p-px-200 { padding: 20rem !important; }

@media (min-width: 991px) { .p-lg-px-200 { padding: 20rem !important; } }

.pt-px-10 { padding-top: 1rem !important; }

@media (min-width: 991px) { .pt-lg-px-10 { padding-top: 1rem !important; } }

.pt-px-20 { padding-top: 2rem !important; }

@media (min-width: 991px) { .pt-lg-px-20 { padding-top: 2rem !important; } }

.pt-px-30 { padding-top: 3rem !important; }

@media (min-width: 991px) { .pt-lg-px-30 { padding-top: 3rem !important; } }

.pt-px-40 { padding-top: 4rem !important; }

@media (min-width: 991px) { .pt-lg-px-40 { padding-top: 4rem !important; } }

.pt-px-50 { padding-top: 5rem !important; }

@media (min-width: 991px) { .pt-lg-px-50 { padding-top: 5rem !important; } }

.pt-px-60 { padding-top: 6rem !important; }

@media (min-width: 991px) { .pt-lg-px-60 { padding-top: 6rem !important; } }

.pt-px-70 { padding-top: 7rem !important; }

@media (min-width: 991px) { .pt-lg-px-70 { padding-top: 7rem !important; } }

.pt-px-80 { padding-top: 8rem !important; }

@media (min-width: 991px) { .pt-lg-px-80 { padding-top: 8rem !important; } }

.pt-px-90 { padding-top: 9rem !important; }

@media (min-width: 991px) { .pt-lg-px-90 { padding-top: 9rem !important; } }

.pt-px-100 { padding-top: 10rem !important; }

@media (min-width: 991px) { .pt-lg-px-100 { padding-top: 10rem !important; } }

.pt-px-110 { padding-top: 11rem !important; }

@media (min-width: 991px) { .pt-lg-px-110 { padding-top: 11rem !important; } }

.pt-px-120 { padding-top: 12rem !important; }

@media (min-width: 991px) { .pt-lg-px-120 { padding-top: 12rem !important; } }

.pt-px-130 { padding-top: 13rem !important; }

@media (min-width: 991px) { .pt-lg-px-130 { padding-top: 13rem !important; } }

.pt-px-140 { padding-top: 14rem !important; }

@media (min-width: 991px) { .pt-lg-px-140 { padding-top: 14rem !important; } }

.pt-px-150 { padding-top: 15rem !important; }

@media (min-width: 991px) { .pt-lg-px-150 { padding-top: 15rem !important; } }

.pt-px-160 { padding-top: 16rem !important; }

@media (min-width: 991px) { .pt-lg-px-160 { padding-top: 16rem !important; } }

.pt-px-170 { padding-top: 17rem !important; }

@media (min-width: 991px) { .pt-lg-px-170 { padding-top: 17rem !important; } }

.pt-px-180 { padding-top: 18rem !important; }

@media (min-width: 991px) { .pt-lg-px-180 { padding-top: 18rem !important; } }

.pt-px-190 { padding-top: 19rem !important; }

@media (min-width: 991px) { .pt-lg-px-190 { padding-top: 19rem !important; } }

.pt-px-200 { padding-top: 20rem !important; }

@media (min-width: 991px) { .pt-lg-px-200 { padding-top: 20rem !important; } }

.pb-px-10 { padding-bottom: 1rem !important; }

@media (min-width: 991px) { .pb-lg-px-10 { padding-bottom: 1rem !important; } }

.pb-px-20 { padding-bottom: 2rem !important; }

@media (min-width: 991px) { .pb-lg-px-20 { padding-bottom: 2rem !important; } }

.pb-px-30 { padding-bottom: 3rem !important; }

@media (min-width: 991px) { .pb-lg-px-30 { padding-bottom: 3rem !important; } }

.pb-px-40 { padding-bottom: 4rem !important; }

@media (min-width: 991px) { .pb-lg-px-40 { padding-bottom: 4rem !important; } }

.pb-px-50 { padding-bottom: 5rem !important; }

@media (min-width: 991px) { .pb-lg-px-50 { padding-bottom: 5rem !important; } }

.pb-px-60 { padding-bottom: 6rem !important; }

@media (min-width: 991px) { .pb-lg-px-60 { padding-bottom: 6rem !important; } }

.pb-px-70 { padding-bottom: 7rem !important; }

@media (min-width: 991px) { .pb-lg-px-70 { padding-bottom: 7rem !important; } }

.pb-px-80 { padding-bottom: 8rem !important; }

@media (min-width: 991px) { .pb-lg-px-80 { padding-bottom: 8rem !important; } }

.pb-px-90 { padding-bottom: 9rem !important; }

@media (min-width: 991px) { .pb-lg-px-90 { padding-bottom: 9rem !important; } }

.pb-px-100 { padding-bottom: 10rem !important; }

@media (min-width: 991px) { .pb-lg-px-100 { padding-bottom: 10rem !important; } }

.pb-px-110 { padding-bottom: 11rem !important; }

@media (min-width: 991px) { .pb-lg-px-110 { padding-bottom: 11rem !important; } }

.pb-px-120 { padding-bottom: 12rem !important; }

@media (min-width: 991px) { .pb-lg-px-120 { padding-bottom: 12rem !important; } }

.pb-px-130 { padding-bottom: 13rem !important; }

@media (min-width: 991px) { .pb-lg-px-130 { padding-bottom: 13rem !important; } }

.pb-px-140 { padding-bottom: 14rem !important; }

@media (min-width: 991px) { .pb-lg-px-140 { padding-bottom: 14rem !important; } }

.pb-px-150 { padding-bottom: 15rem !important; }

@media (min-width: 991px) { .pb-lg-px-150 { padding-bottom: 15rem !important; } }

.pb-px-160 { padding-bottom: 16rem !important; }

@media (min-width: 991px) { .pb-lg-px-160 { padding-bottom: 16rem !important; } }

.pb-px-170 { padding-bottom: 17rem !important; }

@media (min-width: 991px) { .pb-lg-px-170 { padding-bottom: 17rem !important; } }

.pb-px-180 { padding-bottom: 18rem !important; }

@media (min-width: 991px) { .pb-lg-px-180 { padding-bottom: 18rem !important; } }

.pb-px-190 { padding-bottom: 19rem !important; }

@media (min-width: 991px) { .pb-lg-px-190 { padding-bottom: 19rem !important; } }

.pb-px-200 { padding-bottom: 20rem !important; }

@media (min-width: 991px) { .pb-lg-px-200 { padding-bottom: 20rem !important; } }

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

@media (min-width: 991px) { .pl-lg-px-10 { padding-left: 1rem !important; } }

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

@media (min-width: 991px) { .pl-lg-px-20 { padding-left: 2rem !important; } }

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

@media (min-width: 991px) { .pl-lg-px-30 { padding-left: 3rem !important; } }

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

@media (min-width: 991px) { .pl-lg-px-40 { padding-left: 4rem !important; } }

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

@media (min-width: 991px) { .pl-lg-px-50 { padding-left: 5rem !important; } }

.pl-px-60 { padding-left: 6rem !important; }

@media (min-width: 991px) { .pl-lg-px-60 { padding-left: 6rem !important; } }

.pl-px-70 { padding-left: 7rem !important; }

@media (min-width: 991px) { .pl-lg-px-70 { padding-left: 7rem !important; } }

.pl-px-80 { padding-left: 8rem !important; }

@media (min-width: 991px) { .pl-lg-px-80 { padding-left: 8rem !important; } }

.pl-px-90 { padding-left: 9rem !important; }

@media (min-width: 991px) { .pl-lg-px-90 { padding-left: 9rem !important; } }

.pl-px-100 { padding-left: 10rem !important; }

@media (min-width: 991px) { .pl-lg-px-100 { padding-left: 10rem !important; } }

.pl-px-110 { padding-left: 11rem !important; }

@media (min-width: 991px) { .pl-lg-px-110 { padding-left: 11rem !important; } }

.pl-px-120 { padding-left: 12rem !important; }

@media (min-width: 991px) { .pl-lg-px-120 { padding-left: 12rem !important; } }

.pl-px-130 { padding-left: 13rem !important; }

@media (min-width: 991px) { .pl-lg-px-130 { padding-left: 13rem !important; } }

.pl-px-140 { padding-left: 14rem !important; }

@media (min-width: 991px) { .pl-lg-px-140 { padding-left: 14rem !important; } }

.pl-px-150 { padding-left: 15rem !important; }

@media (min-width: 991px) { .pl-lg-px-150 { padding-left: 15rem !important; } }

.pl-px-160 { padding-left: 16rem !important; }

@media (min-width: 991px) { .pl-lg-px-160 { padding-left: 16rem !important; } }

.pl-px-170 { padding-left: 17rem !important; }

@media (min-width: 991px) { .pl-lg-px-170 { padding-left: 17rem !important; } }

.pl-px-180 { padding-left: 18rem !important; }

@media (min-width: 991px) { .pl-lg-px-180 { padding-left: 18rem !important; } }

.pl-px-190 { padding-left: 19rem !important; }

@media (min-width: 991px) { .pl-lg-px-190 { padding-left: 19rem !important; } }

.pl-px-200 { padding-left: 20rem !important; }

@media (min-width: 991px) { .pl-lg-px-200 { padding-left: 20rem !important; } }

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

@media (min-width: 991px) { .pr-lg-px-10 { padding-right: 1rem !important; } }

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

@media (min-width: 991px) { .pr-lg-px-20 { padding-right: 2rem !important; } }

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

@media (min-width: 991px) { .pr-lg-px-30 { padding-right: 3rem !important; } }

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

@media (min-width: 991px) { .pr-lg-px-40 { padding-right: 4rem !important; } }

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

@media (min-width: 991px) { .pr-lg-px-50 { padding-right: 5rem !important; } }

.pr-px-60 { padding-right: 6rem !important; }

@media (min-width: 991px) { .pr-lg-px-60 { padding-right: 6rem !important; } }

.pr-px-70 { padding-right: 7rem !important; }

@media (min-width: 991px) { .pr-lg-px-70 { padding-right: 7rem !important; } }

.pr-px-80 { padding-right: 8rem !important; }

@media (min-width: 991px) { .pr-lg-px-80 { padding-right: 8rem !important; } }

.pr-px-90 { padding-right: 9rem !important; }

@media (min-width: 991px) { .pr-lg-px-90 { padding-right: 9rem !important; } }

.pr-px-100 { padding-right: 10rem !important; }

@media (min-width: 991px) { .pr-lg-px-100 { padding-right: 10rem !important; } }

.pr-px-110 { padding-right: 11rem !important; }

@media (min-width: 991px) { .pr-lg-px-110 { padding-right: 11rem !important; } }

.pr-px-120 { padding-right: 12rem !important; }

@media (min-width: 991px) { .pr-lg-px-120 { padding-right: 12rem !important; } }

.pr-px-130 { padding-right: 13rem !important; }

@media (min-width: 991px) { .pr-lg-px-130 { padding-right: 13rem !important; } }

.pr-px-140 { padding-right: 14rem !important; }

@media (min-width: 991px) { .pr-lg-px-140 { padding-right: 14rem !important; } }

.pr-px-150 { padding-right: 15rem !important; }

@media (min-width: 991px) { .pr-lg-px-150 { padding-right: 15rem !important; } }

.pr-px-160 { padding-right: 16rem !important; }

@media (min-width: 991px) { .pr-lg-px-160 { padding-right: 16rem !important; } }

.pr-px-170 { padding-right: 17rem !important; }

@media (min-width: 991px) { .pr-lg-px-170 { padding-right: 17rem !important; } }

.pr-px-180 { padding-right: 18rem !important; }

@media (min-width: 991px) { .pr-lg-px-180 { padding-right: 18rem !important; } }

.pr-px-190 { padding-right: 19rem !important; }

@media (min-width: 991px) { .pr-lg-px-190 { padding-right: 19rem !important; } }

.pr-px-200 { padding-right: 20rem !important; }

@media (min-width: 991px) { .pr-lg-px-200 { padding-right: 20rem !important; } }

/* 文字サイズの設定 */
.font-10 { font-size: 1rem !important; }

@media (min-width: 991px) { .font-lg-10 { font-size: 1rem !important; } }

.font-20 { font-size: 2rem !important; }

@media (min-width: 991px) { .font-lg-20 { font-size: 2rem !important; } }

.font-30 { font-size: 3rem !important; }

@media (min-width: 991px) { .font-lg-30 { font-size: 3rem !important; } }

.font-40 { font-size: 4rem !important; }

@media (min-width: 991px) { .font-lg-40 { font-size: 4rem !important; } }

.font-50 { font-size: 5rem !important; }

@media (min-width: 991px) { .font-lg-50 { font-size: 5rem !important; } }

.font-60 { font-size: 6rem !important; }

@media (min-width: 991px) { .font-lg-60 { font-size: 6rem !important; } }

.font-70 { font-size: 7rem !important; }

@media (min-width: 991px) { .font-lg-70 { font-size: 7rem !important; } }

.font-80 { font-size: 8rem !important; }

@media (min-width: 991px) { .font-lg-80 { font-size: 8rem !important; } }

.font-90 { font-size: 9rem !important; }

@media (min-width: 991px) { .font-lg-90 { font-size: 9rem !important; } }

.font-100 { font-size: 10rem !important; }

@media (min-width: 991px) { .font-lg-100 { font-size: 10rem !important; } }

.font-110 { font-size: 11rem !important; }

@media (min-width: 991px) { .font-lg-110 { font-size: 11rem !important; } }

.font-120 { font-size: 12rem !important; }

@media (min-width: 991px) { .font-lg-120 { font-size: 12rem !important; } }

.font-130 { font-size: 13rem !important; }

@media (min-width: 991px) { .font-lg-130 { font-size: 13rem !important; } }

.font-140 { font-size: 14rem !important; }

@media (min-width: 991px) { .font-lg-140 { font-size: 14rem !important; } }

.font-150 { font-size: 15rem !important; }

@media (min-width: 991px) { .font-lg-150 { font-size: 15rem !important; } }

.font-160 { font-size: 16rem !important; }

@media (min-width: 991px) { .font-lg-160 { font-size: 16rem !important; } }

.font-170 { font-size: 17rem !important; }

@media (min-width: 991px) { .font-lg-170 { font-size: 17rem !important; } }

.font-180 { font-size: 18rem !important; }

@media (min-width: 991px) { .font-lg-180 { font-size: 18rem !important; } }

.font-190 { font-size: 19rem !important; }

@media (min-width: 991px) { .font-lg-190 { font-size: 19rem !important; } }

.font-200 { font-size: 20rem !important; }

@media (min-width: 991px) { .font-lg-200 { font-size: 20rem !important; } }

.font-210 { font-size: 21rem !important; }

@media (min-width: 991px) { .font-lg-210 { font-size: 21rem !important; } }

.font-220 { font-size: 22rem !important; }

@media (min-width: 991px) { .font-lg-220 { font-size: 22rem !important; } }

.font-230 { font-size: 23rem !important; }

@media (min-width: 991px) { .font-lg-230 { font-size: 23rem !important; } }

.font-240 { font-size: 24rem !important; }

@media (min-width: 991px) { .font-lg-240 { font-size: 24rem !important; } }

.font-250 { font-size: 25rem !important; }

@media (min-width: 991px) { .font-lg-250 { font-size: 25rem !important; } }

.font-260 { font-size: 26rem !important; }

@media (min-width: 991px) { .font-lg-260 { font-size: 26rem !important; } }

.font-270 { font-size: 27rem !important; }

@media (min-width: 991px) { .font-lg-270 { font-size: 27rem !important; } }

.font-280 { font-size: 28rem !important; }

@media (min-width: 991px) { .font-lg-280 { font-size: 28rem !important; } }

.font-290 { font-size: 29rem !important; }

@media (min-width: 991px) { .font-lg-290 { font-size: 29rem !important; } }

.font-300 { font-size: 30rem !important; }

@media (min-width: 991px) { .font-lg-300 { font-size: 30rem !important; } }

/* 親のボックスの幅を無視して100%表示 */
.full { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }

/* ボーダーの設定 */
.border { border-style: solid; border-width: 1px; }

.border-dashed { border-style: dashed !important; }

.border-double { border-style: double !important; }

.border-dot { border-style: dot !important; }

@media (min-width: 991px) { .border-lg-dashed { border-style: dashed !important; }
  .border-lg-double { border-style: double !important; }
  .border-lg-dot { border-style: dot !important; } }

.border-1 { border-width: 1px !important; }

@media (min-width: 991px) { .border-lg-1 { border-width: 1px !important; } }

.border-2 { border-width: 2px !important; }

@media (min-width: 991px) { .border-lg-2 { border-width: 2px !important; } }

.border-3 { border-width: 3px !important; }

@media (min-width: 991px) { .border-lg-3 { border-width: 3px !important; } }

.border-4 { border-width: 4px !important; }

@media (min-width: 991px) { .border-lg-4 { border-width: 4px !important; } }

.border-5 { border-width: 5px !important; }

@media (min-width: 991px) { .border-lg-5 { border-width: 5px !important; } }

.border-6 { border-width: 6px !important; }

@media (min-width: 991px) { .border-lg-6 { border-width: 6px !important; } }

.border-7 { border-width: 7px !important; }

@media (min-width: 991px) { .border-lg-7 { border-width: 7px !important; } }

.border-8 { border-width: 8px !important; }

@media (min-width: 991px) { .border-lg-8 { border-width: 8px !important; } }

.border-9 { border-width: 9px !important; }

@media (min-width: 991px) { .border-lg-9 { border-width: 9px !important; } }

.border-10 { border-width: 10px !important; }

@media (min-width: 991px) { .border-lg-10 { border-width: 10px !important; } }

.border-radius-0 { border-radius: 0px !important; }

.border-radius-top-0 { border-radius: 0px 0px 0 0 !important; }

.border-radius-bottom-0 { border-radius: 0 0 0px 0px !important; }

.border-radius-left-0 { border-radius: 0px 0 0 0px !important; }

.border-radius-right-0 { border-radius: 0 0px 0px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-0 { border-radius: 0px !important; }
  .border-radius-lg-top-0 { border-radius: 0px 0px 0 0 !important; }
  .border-radius-lg-bottom-0 { border-radius: 0 0 0px 0px !important; }
  .border-radius-lg-left-0 { border-radius: 0px 0 0 0px !important; }
  .border-radius-lg-right-0 { border-radius: 0 0px 0px 0 !important; } }

.border-radius-1 { border-radius: 1px !important; }

.border-radius-top-1 { border-radius: 1px 1px 0 0 !important; }

.border-radius-bottom-1 { border-radius: 0 0 1px 1px !important; }

.border-radius-left-1 { border-radius: 1px 0 0 1px !important; }

.border-radius-right-1 { border-radius: 0 1px 1px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-1 { border-radius: 1px !important; }
  .border-radius-lg-top-1 { border-radius: 1px 1px 0 0 !important; }
  .border-radius-lg-bottom-1 { border-radius: 0 0 1px 1px !important; }
  .border-radius-lg-left-1 { border-radius: 1px 0 0 1px !important; }
  .border-radius-lg-right-1 { border-radius: 0 1px 1px 0 !important; } }

.border-radius-2 { border-radius: 2px !important; }

.border-radius-top-2 { border-radius: 2px 2px 0 0 !important; }

.border-radius-bottom-2 { border-radius: 0 0 2px 2px !important; }

.border-radius-left-2 { border-radius: 2px 0 0 2px !important; }

.border-radius-right-2 { border-radius: 0 2px 2px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-2 { border-radius: 2px !important; }
  .border-radius-lg-top-2 { border-radius: 2px 2px 0 0 !important; }
  .border-radius-lg-bottom-2 { border-radius: 0 0 2px 2px !important; }
  .border-radius-lg-left-2 { border-radius: 2px 0 0 2px !important; }
  .border-radius-lg-right-2 { border-radius: 0 2px 2px 0 !important; } }

.border-radius-3 { border-radius: 3px !important; }

.border-radius-top-3 { border-radius: 3px 3px 0 0 !important; }

.border-radius-bottom-3 { border-radius: 0 0 3px 3px !important; }

.border-radius-left-3 { border-radius: 3px 0 0 3px !important; }

.border-radius-right-3 { border-radius: 0 3px 3px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-3 { border-radius: 3px !important; }
  .border-radius-lg-top-3 { border-radius: 3px 3px 0 0 !important; }
  .border-radius-lg-bottom-3 { border-radius: 0 0 3px 3px !important; }
  .border-radius-lg-left-3 { border-radius: 3px 0 0 3px !important; }
  .border-radius-lg-right-3 { border-radius: 0 3px 3px 0 !important; } }

.border-radius-4 { border-radius: 4px !important; }

.border-radius-top-4 { border-radius: 4px 4px 0 0 !important; }

.border-radius-bottom-4 { border-radius: 0 0 4px 4px !important; }

.border-radius-left-4 { border-radius: 4px 0 0 4px !important; }

.border-radius-right-4 { border-radius: 0 4px 4px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-4 { border-radius: 4px !important; }
  .border-radius-lg-top-4 { border-radius: 4px 4px 0 0 !important; }
  .border-radius-lg-bottom-4 { border-radius: 0 0 4px 4px !important; }
  .border-radius-lg-left-4 { border-radius: 4px 0 0 4px !important; }
  .border-radius-lg-right-4 { border-radius: 0 4px 4px 0 !important; } }

.border-radius-5 { border-radius: 5px !important; }

.border-radius-top-5 { border-radius: 5px 5px 0 0 !important; }

.border-radius-bottom-5 { border-radius: 0 0 5px 5px !important; }

.border-radius-left-5 { border-radius: 5px 0 0 5px !important; }

.border-radius-right-5 { border-radius: 0 5px 5px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-5 { border-radius: 5px !important; }
  .border-radius-lg-top-5 { border-radius: 5px 5px 0 0 !important; }
  .border-radius-lg-bottom-5 { border-radius: 0 0 5px 5px !important; }
  .border-radius-lg-left-5 { border-radius: 5px 0 0 5px !important; }
  .border-radius-lg-right-5 { border-radius: 0 5px 5px 0 !important; } }

.border-radius-6 { border-radius: 6px !important; }

.border-radius-top-6 { border-radius: 6px 6px 0 0 !important; }

.border-radius-bottom-6 { border-radius: 0 0 6px 6px !important; }

.border-radius-left-6 { border-radius: 6px 0 0 6px !important; }

.border-radius-right-6 { border-radius: 0 6px 6px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-6 { border-radius: 6px !important; }
  .border-radius-lg-top-6 { border-radius: 6px 6px 0 0 !important; }
  .border-radius-lg-bottom-6 { border-radius: 0 0 6px 6px !important; }
  .border-radius-lg-left-6 { border-radius: 6px 0 0 6px !important; }
  .border-radius-lg-right-6 { border-radius: 0 6px 6px 0 !important; } }

.border-radius-7 { border-radius: 7px !important; }

.border-radius-top-7 { border-radius: 7px 7px 0 0 !important; }

.border-radius-bottom-7 { border-radius: 0 0 7px 7px !important; }

.border-radius-left-7 { border-radius: 7px 0 0 7px !important; }

.border-radius-right-7 { border-radius: 0 7px 7px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-7 { border-radius: 7px !important; }
  .border-radius-lg-top-7 { border-radius: 7px 7px 0 0 !important; }
  .border-radius-lg-bottom-7 { border-radius: 0 0 7px 7px !important; }
  .border-radius-lg-left-7 { border-radius: 7px 0 0 7px !important; }
  .border-radius-lg-right-7 { border-radius: 0 7px 7px 0 !important; } }

.border-radius-8 { border-radius: 8px !important; }

.border-radius-top-8 { border-radius: 8px 8px 0 0 !important; }

.border-radius-bottom-8 { border-radius: 0 0 8px 8px !important; }

.border-radius-left-8 { border-radius: 8px 0 0 8px !important; }

.border-radius-right-8 { border-radius: 0 8px 8px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-8 { border-radius: 8px !important; }
  .border-radius-lg-top-8 { border-radius: 8px 8px 0 0 !important; }
  .border-radius-lg-bottom-8 { border-radius: 0 0 8px 8px !important; }
  .border-radius-lg-left-8 { border-radius: 8px 0 0 8px !important; }
  .border-radius-lg-right-8 { border-radius: 0 8px 8px 0 !important; } }

.border-radius-9 { border-radius: 9px !important; }

.border-radius-top-9 { border-radius: 9px 9px 0 0 !important; }

.border-radius-bottom-9 { border-radius: 0 0 9px 9px !important; }

.border-radius-left-9 { border-radius: 9px 0 0 9px !important; }

.border-radius-right-9 { border-radius: 0 9px 9px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-9 { border-radius: 9px !important; }
  .border-radius-lg-top-9 { border-radius: 9px 9px 0 0 !important; }
  .border-radius-lg-bottom-9 { border-radius: 0 0 9px 9px !important; }
  .border-radius-lg-left-9 { border-radius: 9px 0 0 9px !important; }
  .border-radius-lg-right-9 { border-radius: 0 9px 9px 0 !important; } }

.border-radius-10 { border-radius: 10px !important; }

.border-radius-top-10 { border-radius: 10px 10px 0 0 !important; }

.border-radius-bottom-10 { border-radius: 0 0 10px 10px !important; }

.border-radius-left-10 { border-radius: 10px 0 0 10px !important; }

.border-radius-right-10 { border-radius: 0 10px 10px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-10 { border-radius: 10px !important; }
  .border-radius-lg-top-10 { border-radius: 10px 10px 0 0 !important; }
  .border-radius-lg-bottom-10 { border-radius: 0 0 10px 10px !important; }
  .border-radius-lg-left-10 { border-radius: 10px 0 0 10px !important; }
  .border-radius-lg-right-10 { border-radius: 0 10px 10px 0 !important; } }

.border-radius-11 { border-radius: 11px !important; }

.border-radius-top-11 { border-radius: 11px 11px 0 0 !important; }

.border-radius-bottom-11 { border-radius: 0 0 11px 11px !important; }

.border-radius-left-11 { border-radius: 11px 0 0 11px !important; }

.border-radius-right-11 { border-radius: 0 11px 11px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-11 { border-radius: 11px !important; }
  .border-radius-lg-top-11 { border-radius: 11px 11px 0 0 !important; }
  .border-radius-lg-bottom-11 { border-radius: 0 0 11px 11px !important; }
  .border-radius-lg-left-11 { border-radius: 11px 0 0 11px !important; }
  .border-radius-lg-right-11 { border-radius: 0 11px 11px 0 !important; } }

.border-radius-12 { border-radius: 12px !important; }

.border-radius-top-12 { border-radius: 12px 12px 0 0 !important; }

.border-radius-bottom-12 { border-radius: 0 0 12px 12px !important; }

.border-radius-left-12 { border-radius: 12px 0 0 12px !important; }

.border-radius-right-12 { border-radius: 0 12px 12px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-12 { border-radius: 12px !important; }
  .border-radius-lg-top-12 { border-radius: 12px 12px 0 0 !important; }
  .border-radius-lg-bottom-12 { border-radius: 0 0 12px 12px !important; }
  .border-radius-lg-left-12 { border-radius: 12px 0 0 12px !important; }
  .border-radius-lg-right-12 { border-radius: 0 12px 12px 0 !important; } }

.border-radius-13 { border-radius: 13px !important; }

.border-radius-top-13 { border-radius: 13px 13px 0 0 !important; }

.border-radius-bottom-13 { border-radius: 0 0 13px 13px !important; }

.border-radius-left-13 { border-radius: 13px 0 0 13px !important; }

.border-radius-right-13 { border-radius: 0 13px 13px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-13 { border-radius: 13px !important; }
  .border-radius-lg-top-13 { border-radius: 13px 13px 0 0 !important; }
  .border-radius-lg-bottom-13 { border-radius: 0 0 13px 13px !important; }
  .border-radius-lg-left-13 { border-radius: 13px 0 0 13px !important; }
  .border-radius-lg-right-13 { border-radius: 0 13px 13px 0 !important; } }

.border-radius-14 { border-radius: 14px !important; }

.border-radius-top-14 { border-radius: 14px 14px 0 0 !important; }

.border-radius-bottom-14 { border-radius: 0 0 14px 14px !important; }

.border-radius-left-14 { border-radius: 14px 0 0 14px !important; }

.border-radius-right-14 { border-radius: 0 14px 14px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-14 { border-radius: 14px !important; }
  .border-radius-lg-top-14 { border-radius: 14px 14px 0 0 !important; }
  .border-radius-lg-bottom-14 { border-radius: 0 0 14px 14px !important; }
  .border-radius-lg-left-14 { border-radius: 14px 0 0 14px !important; }
  .border-radius-lg-right-14 { border-radius: 0 14px 14px 0 !important; } }

.border-radius-15 { border-radius: 15px !important; }

.border-radius-top-15 { border-radius: 15px 15px 0 0 !important; }

.border-radius-bottom-15 { border-radius: 0 0 15px 15px !important; }

.border-radius-left-15 { border-radius: 15px 0 0 15px !important; }

.border-radius-right-15 { border-radius: 0 15px 15px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-15 { border-radius: 15px !important; }
  .border-radius-lg-top-15 { border-radius: 15px 15px 0 0 !important; }
  .border-radius-lg-bottom-15 { border-radius: 0 0 15px 15px !important; }
  .border-radius-lg-left-15 { border-radius: 15px 0 0 15px !important; }
  .border-radius-lg-right-15 { border-radius: 0 15px 15px 0 !important; } }

.border-radius-16 { border-radius: 16px !important; }

.border-radius-top-16 { border-radius: 16px 16px 0 0 !important; }

.border-radius-bottom-16 { border-radius: 0 0 16px 16px !important; }

.border-radius-left-16 { border-radius: 16px 0 0 16px !important; }

.border-radius-right-16 { border-radius: 0 16px 16px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-16 { border-radius: 16px !important; }
  .border-radius-lg-top-16 { border-radius: 16px 16px 0 0 !important; }
  .border-radius-lg-bottom-16 { border-radius: 0 0 16px 16px !important; }
  .border-radius-lg-left-16 { border-radius: 16px 0 0 16px !important; }
  .border-radius-lg-right-16 { border-radius: 0 16px 16px 0 !important; } }

.border-radius-17 { border-radius: 17px !important; }

.border-radius-top-17 { border-radius: 17px 17px 0 0 !important; }

.border-radius-bottom-17 { border-radius: 0 0 17px 17px !important; }

.border-radius-left-17 { border-radius: 17px 0 0 17px !important; }

.border-radius-right-17 { border-radius: 0 17px 17px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-17 { border-radius: 17px !important; }
  .border-radius-lg-top-17 { border-radius: 17px 17px 0 0 !important; }
  .border-radius-lg-bottom-17 { border-radius: 0 0 17px 17px !important; }
  .border-radius-lg-left-17 { border-radius: 17px 0 0 17px !important; }
  .border-radius-lg-right-17 { border-radius: 0 17px 17px 0 !important; } }

.border-radius-18 { border-radius: 18px !important; }

.border-radius-top-18 { border-radius: 18px 18px 0 0 !important; }

.border-radius-bottom-18 { border-radius: 0 0 18px 18px !important; }

.border-radius-left-18 { border-radius: 18px 0 0 18px !important; }

.border-radius-right-18 { border-radius: 0 18px 18px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-18 { border-radius: 18px !important; }
  .border-radius-lg-top-18 { border-radius: 18px 18px 0 0 !important; }
  .border-radius-lg-bottom-18 { border-radius: 0 0 18px 18px !important; }
  .border-radius-lg-left-18 { border-radius: 18px 0 0 18px !important; }
  .border-radius-lg-right-18 { border-radius: 0 18px 18px 0 !important; } }

.border-radius-19 { border-radius: 19px !important; }

.border-radius-top-19 { border-radius: 19px 19px 0 0 !important; }

.border-radius-bottom-19 { border-radius: 0 0 19px 19px !important; }

.border-radius-left-19 { border-radius: 19px 0 0 19px !important; }

.border-radius-right-19 { border-radius: 0 19px 19px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-19 { border-radius: 19px !important; }
  .border-radius-lg-top-19 { border-radius: 19px 19px 0 0 !important; }
  .border-radius-lg-bottom-19 { border-radius: 0 0 19px 19px !important; }
  .border-radius-lg-left-19 { border-radius: 19px 0 0 19px !important; }
  .border-radius-lg-right-19 { border-radius: 0 19px 19px 0 !important; } }

.border-radius-20 { border-radius: 20px !important; }

.border-radius-top-20 { border-radius: 20px 20px 0 0 !important; }

.border-radius-bottom-20 { border-radius: 0 0 20px 20px !important; }

.border-radius-left-20 { border-radius: 20px 0 0 20px !important; }

.border-radius-right-20 { border-radius: 0 20px 20px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-20 { border-radius: 20px !important; }
  .border-radius-lg-top-20 { border-radius: 20px 20px 0 0 !important; }
  .border-radius-lg-bottom-20 { border-radius: 0 0 20px 20px !important; }
  .border-radius-lg-left-20 { border-radius: 20px 0 0 20px !important; }
  .border-radius-lg-right-20 { border-radius: 0 20px 20px 0 !important; } }

.border-radius-21 { border-radius: 21px !important; }

.border-radius-top-21 { border-radius: 21px 21px 0 0 !important; }

.border-radius-bottom-21 { border-radius: 0 0 21px 21px !important; }

.border-radius-left-21 { border-radius: 21px 0 0 21px !important; }

.border-radius-right-21 { border-radius: 0 21px 21px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-21 { border-radius: 21px !important; }
  .border-radius-lg-top-21 { border-radius: 21px 21px 0 0 !important; }
  .border-radius-lg-bottom-21 { border-radius: 0 0 21px 21px !important; }
  .border-radius-lg-left-21 { border-radius: 21px 0 0 21px !important; }
  .border-radius-lg-right-21 { border-radius: 0 21px 21px 0 !important; } }

.border-radius-22 { border-radius: 22px !important; }

.border-radius-top-22 { border-radius: 22px 22px 0 0 !important; }

.border-radius-bottom-22 { border-radius: 0 0 22px 22px !important; }

.border-radius-left-22 { border-radius: 22px 0 0 22px !important; }

.border-radius-right-22 { border-radius: 0 22px 22px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-22 { border-radius: 22px !important; }
  .border-radius-lg-top-22 { border-radius: 22px 22px 0 0 !important; }
  .border-radius-lg-bottom-22 { border-radius: 0 0 22px 22px !important; }
  .border-radius-lg-left-22 { border-radius: 22px 0 0 22px !important; }
  .border-radius-lg-right-22 { border-radius: 0 22px 22px 0 !important; } }

.border-radius-23 { border-radius: 23px !important; }

.border-radius-top-23 { border-radius: 23px 23px 0 0 !important; }

.border-radius-bottom-23 { border-radius: 0 0 23px 23px !important; }

.border-radius-left-23 { border-radius: 23px 0 0 23px !important; }

.border-radius-right-23 { border-radius: 0 23px 23px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-23 { border-radius: 23px !important; }
  .border-radius-lg-top-23 { border-radius: 23px 23px 0 0 !important; }
  .border-radius-lg-bottom-23 { border-radius: 0 0 23px 23px !important; }
  .border-radius-lg-left-23 { border-radius: 23px 0 0 23px !important; }
  .border-radius-lg-right-23 { border-radius: 0 23px 23px 0 !important; } }

.border-radius-24 { border-radius: 24px !important; }

.border-radius-top-24 { border-radius: 24px 24px 0 0 !important; }

.border-radius-bottom-24 { border-radius: 0 0 24px 24px !important; }

.border-radius-left-24 { border-radius: 24px 0 0 24px !important; }

.border-radius-right-24 { border-radius: 0 24px 24px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-24 { border-radius: 24px !important; }
  .border-radius-lg-top-24 { border-radius: 24px 24px 0 0 !important; }
  .border-radius-lg-bottom-24 { border-radius: 0 0 24px 24px !important; }
  .border-radius-lg-left-24 { border-radius: 24px 0 0 24px !important; }
  .border-radius-lg-right-24 { border-radius: 0 24px 24px 0 !important; } }

.border-radius-25 { border-radius: 25px !important; }

.border-radius-top-25 { border-radius: 25px 25px 0 0 !important; }

.border-radius-bottom-25 { border-radius: 0 0 25px 25px !important; }

.border-radius-left-25 { border-radius: 25px 0 0 25px !important; }

.border-radius-right-25 { border-radius: 0 25px 25px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-25 { border-radius: 25px !important; }
  .border-radius-lg-top-25 { border-radius: 25px 25px 0 0 !important; }
  .border-radius-lg-bottom-25 { border-radius: 0 0 25px 25px !important; }
  .border-radius-lg-left-25 { border-radius: 25px 0 0 25px !important; }
  .border-radius-lg-right-25 { border-radius: 0 25px 25px 0 !important; } }

.border-radius-26 { border-radius: 26px !important; }

.border-radius-top-26 { border-radius: 26px 26px 0 0 !important; }

.border-radius-bottom-26 { border-radius: 0 0 26px 26px !important; }

.border-radius-left-26 { border-radius: 26px 0 0 26px !important; }

.border-radius-right-26 { border-radius: 0 26px 26px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-26 { border-radius: 26px !important; }
  .border-radius-lg-top-26 { border-radius: 26px 26px 0 0 !important; }
  .border-radius-lg-bottom-26 { border-radius: 0 0 26px 26px !important; }
  .border-radius-lg-left-26 { border-radius: 26px 0 0 26px !important; }
  .border-radius-lg-right-26 { border-radius: 0 26px 26px 0 !important; } }

.border-radius-27 { border-radius: 27px !important; }

.border-radius-top-27 { border-radius: 27px 27px 0 0 !important; }

.border-radius-bottom-27 { border-radius: 0 0 27px 27px !important; }

.border-radius-left-27 { border-radius: 27px 0 0 27px !important; }

.border-radius-right-27 { border-radius: 0 27px 27px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-27 { border-radius: 27px !important; }
  .border-radius-lg-top-27 { border-radius: 27px 27px 0 0 !important; }
  .border-radius-lg-bottom-27 { border-radius: 0 0 27px 27px !important; }
  .border-radius-lg-left-27 { border-radius: 27px 0 0 27px !important; }
  .border-radius-lg-right-27 { border-radius: 0 27px 27px 0 !important; } }

.border-radius-28 { border-radius: 28px !important; }

.border-radius-top-28 { border-radius: 28px 28px 0 0 !important; }

.border-radius-bottom-28 { border-radius: 0 0 28px 28px !important; }

.border-radius-left-28 { border-radius: 28px 0 0 28px !important; }

.border-radius-right-28 { border-radius: 0 28px 28px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-28 { border-radius: 28px !important; }
  .border-radius-lg-top-28 { border-radius: 28px 28px 0 0 !important; }
  .border-radius-lg-bottom-28 { border-radius: 0 0 28px 28px !important; }
  .border-radius-lg-left-28 { border-radius: 28px 0 0 28px !important; }
  .border-radius-lg-right-28 { border-radius: 0 28px 28px 0 !important; } }

.border-radius-29 { border-radius: 29px !important; }

.border-radius-top-29 { border-radius: 29px 29px 0 0 !important; }

.border-radius-bottom-29 { border-radius: 0 0 29px 29px !important; }

.border-radius-left-29 { border-radius: 29px 0 0 29px !important; }

.border-radius-right-29 { border-radius: 0 29px 29px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-29 { border-radius: 29px !important; }
  .border-radius-lg-top-29 { border-radius: 29px 29px 0 0 !important; }
  .border-radius-lg-bottom-29 { border-radius: 0 0 29px 29px !important; }
  .border-radius-lg-left-29 { border-radius: 29px 0 0 29px !important; }
  .border-radius-lg-right-29 { border-radius: 0 29px 29px 0 !important; } }

.border-radius-30 { border-radius: 30px !important; }

.border-radius-top-30 { border-radius: 30px 30px 0 0 !important; }

.border-radius-bottom-30 { border-radius: 0 0 30px 30px !important; }

.border-radius-left-30 { border-radius: 30px 0 0 30px !important; }

.border-radius-right-30 { border-radius: 0 30px 30px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-30 { border-radius: 30px !important; }
  .border-radius-lg-top-30 { border-radius: 30px 30px 0 0 !important; }
  .border-radius-lg-bottom-30 { border-radius: 0 0 30px 30px !important; }
  .border-radius-lg-left-30 { border-radius: 30px 0 0 30px !important; }
  .border-radius-lg-right-30 { border-radius: 0 30px 30px 0 !important; } }

.border-radius-31 { border-radius: 31px !important; }

.border-radius-top-31 { border-radius: 31px 31px 0 0 !important; }

.border-radius-bottom-31 { border-radius: 0 0 31px 31px !important; }

.border-radius-left-31 { border-radius: 31px 0 0 31px !important; }

.border-radius-right-31 { border-radius: 0 31px 31px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-31 { border-radius: 31px !important; }
  .border-radius-lg-top-31 { border-radius: 31px 31px 0 0 !important; }
  .border-radius-lg-bottom-31 { border-radius: 0 0 31px 31px !important; }
  .border-radius-lg-left-31 { border-radius: 31px 0 0 31px !important; }
  .border-radius-lg-right-31 { border-radius: 0 31px 31px 0 !important; } }

.border-radius-32 { border-radius: 32px !important; }

.border-radius-top-32 { border-radius: 32px 32px 0 0 !important; }

.border-radius-bottom-32 { border-radius: 0 0 32px 32px !important; }

.border-radius-left-32 { border-radius: 32px 0 0 32px !important; }

.border-radius-right-32 { border-radius: 0 32px 32px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-32 { border-radius: 32px !important; }
  .border-radius-lg-top-32 { border-radius: 32px 32px 0 0 !important; }
  .border-radius-lg-bottom-32 { border-radius: 0 0 32px 32px !important; }
  .border-radius-lg-left-32 { border-radius: 32px 0 0 32px !important; }
  .border-radius-lg-right-32 { border-radius: 0 32px 32px 0 !important; } }

.border-radius-33 { border-radius: 33px !important; }

.border-radius-top-33 { border-radius: 33px 33px 0 0 !important; }

.border-radius-bottom-33 { border-radius: 0 0 33px 33px !important; }

.border-radius-left-33 { border-radius: 33px 0 0 33px !important; }

.border-radius-right-33 { border-radius: 0 33px 33px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-33 { border-radius: 33px !important; }
  .border-radius-lg-top-33 { border-radius: 33px 33px 0 0 !important; }
  .border-radius-lg-bottom-33 { border-radius: 0 0 33px 33px !important; }
  .border-radius-lg-left-33 { border-radius: 33px 0 0 33px !important; }
  .border-radius-lg-right-33 { border-radius: 0 33px 33px 0 !important; } }

.border-radius-34 { border-radius: 34px !important; }

.border-radius-top-34 { border-radius: 34px 34px 0 0 !important; }

.border-radius-bottom-34 { border-radius: 0 0 34px 34px !important; }

.border-radius-left-34 { border-radius: 34px 0 0 34px !important; }

.border-radius-right-34 { border-radius: 0 34px 34px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-34 { border-radius: 34px !important; }
  .border-radius-lg-top-34 { border-radius: 34px 34px 0 0 !important; }
  .border-radius-lg-bottom-34 { border-radius: 0 0 34px 34px !important; }
  .border-radius-lg-left-34 { border-radius: 34px 0 0 34px !important; }
  .border-radius-lg-right-34 { border-radius: 0 34px 34px 0 !important; } }

.border-radius-35 { border-radius: 35px !important; }

.border-radius-top-35 { border-radius: 35px 35px 0 0 !important; }

.border-radius-bottom-35 { border-radius: 0 0 35px 35px !important; }

.border-radius-left-35 { border-radius: 35px 0 0 35px !important; }

.border-radius-right-35 { border-radius: 0 35px 35px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-35 { border-radius: 35px !important; }
  .border-radius-lg-top-35 { border-radius: 35px 35px 0 0 !important; }
  .border-radius-lg-bottom-35 { border-radius: 0 0 35px 35px !important; }
  .border-radius-lg-left-35 { border-radius: 35px 0 0 35px !important; }
  .border-radius-lg-right-35 { border-radius: 0 35px 35px 0 !important; } }

.border-radius-36 { border-radius: 36px !important; }

.border-radius-top-36 { border-radius: 36px 36px 0 0 !important; }

.border-radius-bottom-36 { border-radius: 0 0 36px 36px !important; }

.border-radius-left-36 { border-radius: 36px 0 0 36px !important; }

.border-radius-right-36 { border-radius: 0 36px 36px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-36 { border-radius: 36px !important; }
  .border-radius-lg-top-36 { border-radius: 36px 36px 0 0 !important; }
  .border-radius-lg-bottom-36 { border-radius: 0 0 36px 36px !important; }
  .border-radius-lg-left-36 { border-radius: 36px 0 0 36px !important; }
  .border-radius-lg-right-36 { border-radius: 0 36px 36px 0 !important; } }

.border-radius-37 { border-radius: 37px !important; }

.border-radius-top-37 { border-radius: 37px 37px 0 0 !important; }

.border-radius-bottom-37 { border-radius: 0 0 37px 37px !important; }

.border-radius-left-37 { border-radius: 37px 0 0 37px !important; }

.border-radius-right-37 { border-radius: 0 37px 37px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-37 { border-radius: 37px !important; }
  .border-radius-lg-top-37 { border-radius: 37px 37px 0 0 !important; }
  .border-radius-lg-bottom-37 { border-radius: 0 0 37px 37px !important; }
  .border-radius-lg-left-37 { border-radius: 37px 0 0 37px !important; }
  .border-radius-lg-right-37 { border-radius: 0 37px 37px 0 !important; } }

.border-radius-38 { border-radius: 38px !important; }

.border-radius-top-38 { border-radius: 38px 38px 0 0 !important; }

.border-radius-bottom-38 { border-radius: 0 0 38px 38px !important; }

.border-radius-left-38 { border-radius: 38px 0 0 38px !important; }

.border-radius-right-38 { border-radius: 0 38px 38px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-38 { border-radius: 38px !important; }
  .border-radius-lg-top-38 { border-radius: 38px 38px 0 0 !important; }
  .border-radius-lg-bottom-38 { border-radius: 0 0 38px 38px !important; }
  .border-radius-lg-left-38 { border-radius: 38px 0 0 38px !important; }
  .border-radius-lg-right-38 { border-radius: 0 38px 38px 0 !important; } }

.border-radius-39 { border-radius: 39px !important; }

.border-radius-top-39 { border-radius: 39px 39px 0 0 !important; }

.border-radius-bottom-39 { border-radius: 0 0 39px 39px !important; }

.border-radius-left-39 { border-radius: 39px 0 0 39px !important; }

.border-radius-right-39 { border-radius: 0 39px 39px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-39 { border-radius: 39px !important; }
  .border-radius-lg-top-39 { border-radius: 39px 39px 0 0 !important; }
  .border-radius-lg-bottom-39 { border-radius: 0 0 39px 39px !important; }
  .border-radius-lg-left-39 { border-radius: 39px 0 0 39px !important; }
  .border-radius-lg-right-39 { border-radius: 0 39px 39px 0 !important; } }

.border-radius-40 { border-radius: 40px !important; }

.border-radius-top-40 { border-radius: 40px 40px 0 0 !important; }

.border-radius-bottom-40 { border-radius: 0 0 40px 40px !important; }

.border-radius-left-40 { border-radius: 40px 0 0 40px !important; }

.border-radius-right-40 { border-radius: 0 40px 40px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-40 { border-radius: 40px !important; }
  .border-radius-lg-top-40 { border-radius: 40px 40px 0 0 !important; }
  .border-radius-lg-bottom-40 { border-radius: 0 0 40px 40px !important; }
  .border-radius-lg-left-40 { border-radius: 40px 0 0 40px !important; }
  .border-radius-lg-right-40 { border-radius: 0 40px 40px 0 !important; } }

.border-radius-41 { border-radius: 41px !important; }

.border-radius-top-41 { border-radius: 41px 41px 0 0 !important; }

.border-radius-bottom-41 { border-radius: 0 0 41px 41px !important; }

.border-radius-left-41 { border-radius: 41px 0 0 41px !important; }

.border-radius-right-41 { border-radius: 0 41px 41px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-41 { border-radius: 41px !important; }
  .border-radius-lg-top-41 { border-radius: 41px 41px 0 0 !important; }
  .border-radius-lg-bottom-41 { border-radius: 0 0 41px 41px !important; }
  .border-radius-lg-left-41 { border-radius: 41px 0 0 41px !important; }
  .border-radius-lg-right-41 { border-radius: 0 41px 41px 0 !important; } }

.border-radius-42 { border-radius: 42px !important; }

.border-radius-top-42 { border-radius: 42px 42px 0 0 !important; }

.border-radius-bottom-42 { border-radius: 0 0 42px 42px !important; }

.border-radius-left-42 { border-radius: 42px 0 0 42px !important; }

.border-radius-right-42 { border-radius: 0 42px 42px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-42 { border-radius: 42px !important; }
  .border-radius-lg-top-42 { border-radius: 42px 42px 0 0 !important; }
  .border-radius-lg-bottom-42 { border-radius: 0 0 42px 42px !important; }
  .border-radius-lg-left-42 { border-radius: 42px 0 0 42px !important; }
  .border-radius-lg-right-42 { border-radius: 0 42px 42px 0 !important; } }

.border-radius-43 { border-radius: 43px !important; }

.border-radius-top-43 { border-radius: 43px 43px 0 0 !important; }

.border-radius-bottom-43 { border-radius: 0 0 43px 43px !important; }

.border-radius-left-43 { border-radius: 43px 0 0 43px !important; }

.border-radius-right-43 { border-radius: 0 43px 43px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-43 { border-radius: 43px !important; }
  .border-radius-lg-top-43 { border-radius: 43px 43px 0 0 !important; }
  .border-radius-lg-bottom-43 { border-radius: 0 0 43px 43px !important; }
  .border-radius-lg-left-43 { border-radius: 43px 0 0 43px !important; }
  .border-radius-lg-right-43 { border-radius: 0 43px 43px 0 !important; } }

.border-radius-44 { border-radius: 44px !important; }

.border-radius-top-44 { border-radius: 44px 44px 0 0 !important; }

.border-radius-bottom-44 { border-radius: 0 0 44px 44px !important; }

.border-radius-left-44 { border-radius: 44px 0 0 44px !important; }

.border-radius-right-44 { border-radius: 0 44px 44px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-44 { border-radius: 44px !important; }
  .border-radius-lg-top-44 { border-radius: 44px 44px 0 0 !important; }
  .border-radius-lg-bottom-44 { border-radius: 0 0 44px 44px !important; }
  .border-radius-lg-left-44 { border-radius: 44px 0 0 44px !important; }
  .border-radius-lg-right-44 { border-radius: 0 44px 44px 0 !important; } }

.border-radius-45 { border-radius: 45px !important; }

.border-radius-top-45 { border-radius: 45px 45px 0 0 !important; }

.border-radius-bottom-45 { border-radius: 0 0 45px 45px !important; }

.border-radius-left-45 { border-radius: 45px 0 0 45px !important; }

.border-radius-right-45 { border-radius: 0 45px 45px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-45 { border-radius: 45px !important; }
  .border-radius-lg-top-45 { border-radius: 45px 45px 0 0 !important; }
  .border-radius-lg-bottom-45 { border-radius: 0 0 45px 45px !important; }
  .border-radius-lg-left-45 { border-radius: 45px 0 0 45px !important; }
  .border-radius-lg-right-45 { border-radius: 0 45px 45px 0 !important; } }

.border-radius-46 { border-radius: 46px !important; }

.border-radius-top-46 { border-radius: 46px 46px 0 0 !important; }

.border-radius-bottom-46 { border-radius: 0 0 46px 46px !important; }

.border-radius-left-46 { border-radius: 46px 0 0 46px !important; }

.border-radius-right-46 { border-radius: 0 46px 46px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-46 { border-radius: 46px !important; }
  .border-radius-lg-top-46 { border-radius: 46px 46px 0 0 !important; }
  .border-radius-lg-bottom-46 { border-radius: 0 0 46px 46px !important; }
  .border-radius-lg-left-46 { border-radius: 46px 0 0 46px !important; }
  .border-radius-lg-right-46 { border-radius: 0 46px 46px 0 !important; } }

.border-radius-47 { border-radius: 47px !important; }

.border-radius-top-47 { border-radius: 47px 47px 0 0 !important; }

.border-radius-bottom-47 { border-radius: 0 0 47px 47px !important; }

.border-radius-left-47 { border-radius: 47px 0 0 47px !important; }

.border-radius-right-47 { border-radius: 0 47px 47px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-47 { border-radius: 47px !important; }
  .border-radius-lg-top-47 { border-radius: 47px 47px 0 0 !important; }
  .border-radius-lg-bottom-47 { border-radius: 0 0 47px 47px !important; }
  .border-radius-lg-left-47 { border-radius: 47px 0 0 47px !important; }
  .border-radius-lg-right-47 { border-radius: 0 47px 47px 0 !important; } }

.border-radius-48 { border-radius: 48px !important; }

.border-radius-top-48 { border-radius: 48px 48px 0 0 !important; }

.border-radius-bottom-48 { border-radius: 0 0 48px 48px !important; }

.border-radius-left-48 { border-radius: 48px 0 0 48px !important; }

.border-radius-right-48 { border-radius: 0 48px 48px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-48 { border-radius: 48px !important; }
  .border-radius-lg-top-48 { border-radius: 48px 48px 0 0 !important; }
  .border-radius-lg-bottom-48 { border-radius: 0 0 48px 48px !important; }
  .border-radius-lg-left-48 { border-radius: 48px 0 0 48px !important; }
  .border-radius-lg-right-48 { border-radius: 0 48px 48px 0 !important; } }

.border-radius-49 { border-radius: 49px !important; }

.border-radius-top-49 { border-radius: 49px 49px 0 0 !important; }

.border-radius-bottom-49 { border-radius: 0 0 49px 49px !important; }

.border-radius-left-49 { border-radius: 49px 0 0 49px !important; }

.border-radius-right-49 { border-radius: 0 49px 49px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-49 { border-radius: 49px !important; }
  .border-radius-lg-top-49 { border-radius: 49px 49px 0 0 !important; }
  .border-radius-lg-bottom-49 { border-radius: 0 0 49px 49px !important; }
  .border-radius-lg-left-49 { border-radius: 49px 0 0 49px !important; }
  .border-radius-lg-right-49 { border-radius: 0 49px 49px 0 !important; } }

.border-radius-50 { border-radius: 50px !important; }

.border-radius-top-50 { border-radius: 50px 50px 0 0 !important; }

.border-radius-bottom-50 { border-radius: 0 0 50px 50px !important; }

.border-radius-left-50 { border-radius: 50px 0 0 50px !important; }

.border-radius-right-50 { border-radius: 0 50px 50px 0 !important; }

@media (min-width: 991px) { .border-radius-lg-50 { border-radius: 50px !important; }
  .border-radius-lg-top-50 { border-radius: 50px 50px 0 0 !important; }
  .border-radius-lg-bottom-50 { border-radius: 0 0 50px 50px !important; }
  .border-radius-lg-left-50 { border-radius: 50px 0 0 50px !important; }
  .border-radius-lg-right-50 { border-radius: 0 50px 50px 0 !important; } }

.border-radius-per-10 { border-radius: 10% !important; }

@media (min-width: 991px) { .border-radius-lg-per-10 { width: 10% !important; } }

.border-radius-per-20 { border-radius: 20% !important; }

@media (min-width: 991px) { .border-radius-lg-per-20 { width: 20% !important; } }

.border-radius-per-30 { border-radius: 30% !important; }

@media (min-width: 991px) { .border-radius-lg-per-30 { width: 30% !important; } }

.border-radius-per-40 { border-radius: 40% !important; }

@media (min-width: 991px) { .border-radius-lg-per-40 { width: 40% !important; } }

.border-radius-per-50 { border-radius: 50% !important; }

@media (min-width: 991px) { .border-radius-lg-per-50 { width: 50% !important; } }

.border-radius-per-60 { border-radius: 60% !important; }

@media (min-width: 991px) { .border-radius-lg-per-60 { width: 60% !important; } }

.border-radius-per-70 { border-radius: 70% !important; }

@media (min-width: 991px) { .border-radius-lg-per-70 { width: 70% !important; } }

.border-radius-per-80 { border-radius: 80% !important; }

@media (min-width: 991px) { .border-radius-lg-per-80 { width: 80% !important; } }

.border-radius-per-90 { border-radius: 90% !important; }

@media (min-width: 991px) { .border-radius-lg-per-90 { width: 90% !important; } }

.border-radius-per-100 { border-radius: 100% !important; }

@media (min-width: 991px) { .border-radius-lg-per-100 { width: 100% !important; } }

/* line-heightの設定 */
.lh-10 { line-height: 1 !important; }

@media (min-width: 991px) { .lh-lg-10 { line-height: 1 !important; } }

.lh-11 { line-height: 1.1 !important; }

@media (min-width: 991px) { .lh-lg-11 { line-height: 1.1 !important; } }

.lh-12 { line-height: 1.2 !important; }

@media (min-width: 991px) { .lh-lg-12 { line-height: 1.2 !important; } }

.lh-13 { line-height: 1.3 !important; }

@media (min-width: 991px) { .lh-lg-13 { line-height: 1.3 !important; } }

.lh-14 { line-height: 1.4 !important; }

@media (min-width: 991px) { .lh-lg-14 { line-height: 1.4 !important; } }

.lh-15 { line-height: 1.5 !important; }

@media (min-width: 991px) { .lh-lg-15 { line-height: 1.5 !important; } }

.lh-16 { line-height: 1.6 !important; }

@media (min-width: 991px) { .lh-lg-16 { line-height: 1.6 !important; } }

.lh-17 { line-height: 1.7 !important; }

@media (min-width: 991px) { .lh-lg-17 { line-height: 1.7 !important; } }

.lh-18 { line-height: 1.8 !important; }

@media (min-width: 991px) { .lh-lg-18 { line-height: 1.8 !important; } }

.lh-19 { line-height: 1.9 !important; }

@media (min-width: 991px) { .lh-lg-19 { line-height: 1.9 !important; } }

.lh-20 { line-height: 2 !important; }

@media (min-width: 991px) { .lh-lg-20 { line-height: 2 !important; } }

/* 2. 装飾
---------------------------------------------- */
/* 円形の装飾 */
.circle { display: block; position: absolute; border-radius: 100%; }

.circle img { width: 100%; height: auto; }

.wave { position: absolute; top: 1px; left: 0; right: 0; width: 100%; transform: translateY(-100%); }

.wave img { width: 100%; height: auto; vertical-align: bottom; }

#defaultCanvas0 { position: fixed; top: 0; bottom: 0; left: 0; left: 0; margin: auto; }

@media (max-width: 992px) { #defaultCanvas0 { height: 50vh !important; } }

/* 3. 共通パーツ
---------------------------------------------- */
.co { /* ディレクトリリンク */ /* パンクズ */ /* 暗転 */ /* ページトップへ戻るボタン */ /* ファーストビュー */ /* リストスタイル（黒点） */ }

@media (max-width: 992px) { .co-under-link .card-body { padding: 1.5rem; } }

.co-breadcrumb { background-color: transparent; }

.co-breadcrumb li { margin-right: .75rem; }

.co-breadcrumb a { color: #fff; text-decoration: underline; }

.co-breadcrumb a:hover { text-decoration: none; }

.co-overlay { position: fixed; top: 0; bottom: 0; left: 0; right: 0; margin: auto; background-color: rgba(0, 0, 0, 0.2); z-index: 3; pointer-events: none; opacity: 0; transition: all 0.2s ease; z-index: 9999; }

.co-overlay-on { opacity: 1; pointer-events: auto; }

.co-pagetop { display: block; position: fixed; right: 0; bottom: 60px; width: 60px; height: 60px; background-color: transparent; text-align: center; line-height: 60px; font-size: 30px; z-index: 3; color: #fff; opacity: 0; transition: all 0.2s ease; }

.co-fv { overflow: hidden; }

.co-fv-contarea { position: relative; }

.co-fv-cont { position: relative; margin: -30px 30px 0 0; padding: 30px; z-index: 2; background-color: #F2EAEA; color: #fff; }

.co-fv-ttl { font-size: 2.7rem; font-weight: normal; line-height: 1.2; margin-bottom: 1.5rem; }

.co-fv .circle { animation-duration: 4s; animation-timing-function: cubic-bezier(0.09, 0.71, 0.23, 0.93); animation-iteration-count: infinite; }

.co-fv .circle.bgColor-grd { width: 20rem; height: 20rem; top: -11rem; right: -10rem; transform: rotate(-90deg); animation-name: animeCircle1; }

.co-fv .circle.bgColor-key { width: 5rem; height: 5rem; top: -9rem; right: 5rem; animation-name: animeCircle2; animation-delay: 2s; }

.co-fv .circle.bgColor-base2 { width: 1rem; height: 1rem; top: -5rem; right: 11rem; animation-name: animeCircle2; animation-delay: 2s; }

.co-list-disc { list-style-type: disc; list-style-position: inside; }

.co-slide-cont { position: fixed; left: 15px; right: 15px; bottom: 0; border: 2px solid #1A1311; border-bottom: none; background-color: #fff; border-radius: 1rem 1rem 0 0; z-index: 9999; transition: all 0.2s ease; transform: translateY(150%); opacity: 0; }

.co-slide-cont.active { transform: translateY(0); opacity: 1; }

.co-slide-cont-head { padding: 0 1rem 1rem; border-bottom: 2px solid #1A1311; display: -ms-flexbox; display: flex; -ms-flex-align: center; align-items: center; }

.co-float-btn { position: fixed; right: 15px; bottom: 20px; width: 147px; height: 147px; z-index: 3; transition: all 0.2s ease; opacity: 0; }

@media (min-width: 991px) { .co-float-btn { width: 212px; height: 212px; right: 60px; bottom: 50px; } }

.body-scrolled .co-float-btn { opacity: 1; }

/* 4. セクション
---------------------------------------------- */
/* セクション */
.sec { padding: 4rem 0; }

.sec-head { margin-bottom: 4rem; }

.sec-ttlarea { margin-bottom: 3rem; }

/* maxwidthを持ったインナークラス */
.inner, .inner-wide { max-width: 1200px; width: calc(100% - 60px); margin-left: auto; margin-right: auto; }

.inner-wide { width: calc(100% - 40px); }

*[class*="shadow-"] { position: relative; }

*[class*="shadow-"]::after { content: ""; position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; background-position: center; background-size: cover; background-repeat: no-repeat; height: 100px; }

.shadow-top::after { top: 0; bottom: auto; background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)); }

.shadow-btm::after { top: auto; bottom: 0; background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.5)); }

.tab-pane { overflow-x: hidden; overflow-y: scroll; }

.tab-pane-inner { padding: 30px 25px; }

.cont-inner { padding: 30px 25px; }

.obj { position: absolute; }

.map-page { overflow: hidden; }

.co-skip { position: absolute; top: 15px; right: 15px; font-size: 1.5rem; line-height: 1.2; letter-spacing: 0; }

.co-next { position: absolute; top: 50%; right: 10px; margin: auto; font-size: 1.5rem; width: 15px; transform: translateY(-50%); }

.co-pager { display: -ms-flexbox; display: flex; -ms-flex-pack: center; justify-content: center; position: absolute; left: 0; right: 0; bottom: 20px; }

.co-pager-item { width: 7px; height: 7px; margin: 0 5px; border-radius: 7px; background-color: #D9D5D5; }

.co-pager-item.on { background-color: #1A1311; }

.co-checkbox { position: relative; }

.co-checkbox.on::after { content: ""; position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; display: block; background-color: #FFEC00; }

.intro-slide { transition: all 0.2s ease; opacity: 0; pointer-events: none; }

.intro-slide.on { opacity: 1; pointer-events: auto; }

.intro .intro-slide:nth-child(1) { bottom: auto; }

.intro .intro-slide:nth-child(2), .intro .intro-slide:nth-child(3) { top: auto; }

.btn.disabled { opacity: .1; pointer-events: none; }

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

.scroll-cont { overflow-y: auto; }

.footer { position: relative; position: fixed; left: 0; right: 0; bottom: 0; background-color: #fff; z-index: 9999; border-top: 1px solid #707070; }

.footer .nav-item { width: 33.3333%; display: -ms-flexbox; display: flex; padding: 12px 5px; -ms-flex-pack: center; justify-content: center; }

.footer .nav-item a { display: -ms-flexbox; display: flex; -ms-flex-pack: center; justify-content: center; -ms-flex-align: center; align-items: center; border: none; border-radius: 10px; color: #1A1311 !important; font-weight: bold; font-size: 1.5rem; min-width: 7.5rem; }

.footer .nav-item a.active { background-color: #FFEC00; }

.footer .nav-item span { text-align: center; line-height: 1.2; }

.cont-footer { padding: 4rem 1rem; font-size: 1.6rem; font-weight: normal; text-align: center; }

.cont-footer a, .cont-footer p { color: #1A1311 !important; font-weight: 300; }

.cont-footer li a { text-decoration: underline; }

.cont-footer li a:hover { text-decoration: none; }

.header { width: 100%; z-index: 3; border-bottom: 1px solid #1A1311; }

.header-inner { -ms-flex-align: center; align-items: center; height: 60px; padding: 0 0 0 15px; background-color: #F9F6ED; transition: all 0.2s ease; }

@media (min-width: 991px) { .header-inner { height: 70px; } }

.header-logo { max-width: 100px; }

@media (min-width: 991px) { .header-logo { max-width: 150px; } }

.header-cv { position: fixed; display: -ms-flexbox; display: flex; bottom: 0; right: 0; height: 60px; width: 100%; z-index: 4; transition: all 0.2s ease; }

.header-cv-item { display: -ms-flexbox; display: flex; -ms-flex: 1; flex: 1; -ms-flex-align: center; align-items: center; -ms-flex-pack: center; justify-content: center; -ms-flex-direction: column; flex-direction: column; font-size: 1.4rem !important; white-space: nowrap !important; }

@media (min-width: 991px) { .header-cv { top: 0; right: 60px; width: calc(60px * 8); } }

.header-subnav { display: -ms-flexbox; display: flex; }

@media (min-width: 991px) { .header-subnav { font-weight: normal; } }

@media (min-width: 991px) { .header-subnav ul { -ms-flex-align: center; align-items: center; } }

.header-subnav li { border-left: 1px solid #1A1311; }

@media (min-width: 991px) { .header-subnav li { border: none; } }

.header-subnav li a { display: inline-block; font-size: 1.2rem; color: #1A1311; padding: 10px 12px; line-height: 1.2; text-decoration: none; }

@media (min-width: 991px) { .header-subnav li a { text-align: center; font-weight: normal; font-size: 13px; padding: 10px 30px; } }

.header-subnav-lang { font-weight: normal; padding: 0 30px; border-left: 1px solid #1A1311; display: -ms-flexbox; display: flex; -ms-flex-align: center; align-items: center; font-size: 17px; }

.header-subnav-lang a, .header-subnav-lang span { color: #1A1311; text-decoration: none; font-weight: normal; line-height: 1.4; }

.co-close { opacity: 0; transition: all 0.2s ease; pointer-events: none; }

.menu { position: fixed; background-color: #fff; border-left: 2px solid #1A1311; top: 0; bottom: 0; right: -300px; width: 300px; margin: auto; z-index: 5; pointer-events: none; transition: all 0.2s ease; overflow-y: auto; }

.menu-on { right: 0; pointer-events: auto; }

.menu-on .co-close { opacity: 1; pointer-events: auto; }

.menu nav { padding: 50px 30px 60px; }

.menu nav a { color: #1A1311; letter-spacing: 0; }

.menu p { letter-spacing: 0; }

.menu-trigger { position: fixed; top: 0; right: 0; border: none; width: 60px; height: 60px; line-height: 1; vertical-align: middle; text-align: center; outline: none; background-color: transparent; z-index: 6; transition: all 0.2s ease; }

.menu-trigger:hover { cursor: pointer; }

@media (min-width: 991px) { .menu-trigger { top: 0; } }

.menu-trigger span { display: inline-block; position: absolute; left: 0; right: 0; width: calc( 60px / 2); height: 3px; margin: auto; background: #1A1311; line-height: 1; vertical-align: middle; }

.menu-trigger span:nth-of-type(1) { top: calc( 60px * .28); transition: all 0.2s ease; }

.menu-trigger span:nth-of-type(2) { top: 50%; margin-top: -1px; transition: all 0.2s ease; }

.menu-trigger span:nth-of-type(3) { bottom: calc( 60px * .28); transition: all 0.2s ease; }

.menu-trigger-on span { background: #fff; }

.menu-trigger-on span:nth-of-type(1) { top: 50%; margin-top: -1px; transform: rotate(-45deg); transition: all 0.2s ease; }

.menu-trigger-on span:nth-of-type(2) { display: none; }

.menu-trigger-on span:nth-of-type(3) { bottom: 50%; margin-bottom: -1px; transform: rotate(45deg); transition: all 0.2s ease; }

/* module */
.js-accordion { cursor: pointer; }

.js-accordion-sub { display: none; }

.btn { position: relative; padding: .8rem 2.8rem .8rem 2rem; background-color: #1A1311; border-radius: 5rem; color: #fff; font-size: 1.2rem; border: none; line-height: 1.2; font-weight: bold; white-space: normal; transition: all 0.2s ease; }

.btn:hover { color: #fff !important; }

.btn:hover .btn-icon { right: .8rem; }

.btn[data-color="key"] { background-color: #FFEC00; color: #1A1311 !important; }

.btn[data-color="key"]:hover { background-color: #ccbd00; }

.btn[data-color="key"]::after { border-color: #1A1311 !important; }

.btn[data-color="key"]:hover { color: #1A1311 !important; }

.btn[data-color="base1"] { background-color: #F9F6ED; color: #fff !important; }

.btn[data-color="base1"]:hover { background-color: #ece3c7; }

.btn[data-color="base1"]::after { border-color: #fff !important; }

.btn[data-color="base1"]:hover { color: #fff !important; }

.btn[data-color="base2"] { background-color: #F2EAEA; color: #fff !important; }

.btn[data-color="base2"]:hover { background-color: #dfcbcb; }

.btn[data-color="base2"]::after { border-color: #fff !important; }

.btn[data-color="base2"]:hover { color: #fff !important; }

.btn[data-color="white"] { background-color: #fff; color: #1A1311 !important; }

.btn[data-color="white"]:hover { background-color: #e6e6e6; }

.btn[data-color="white"]::after { border-color: #1A1311 !important; }

.btn[data-color="white"]:hover { color: #1A1311 !important; }

.btn[data-color="black"] { background-color: #1A1311; color: #fff !important; }

.btn[data-color="black"]:hover { background-color: black; }

.btn[data-color="black"]::after { border-color: #fff !important; }

.btn[data-color="black"]:hover { color: #fff !important; }

.btn-full { width: 100%; }

.btn-cv { padding: 1rem 3rem; font-size: 1.4rem; background: linear-gradient(-70deg, #FF003B 0%, #FF003B 20%, #495D67 50%, #32D1AC 80%, #32D1AC 100%); }

.btn-cv:hover { opacity: 0.7; }

.btn-line { background-color: transparent; border: 2px solid #1A1311; padding: .6rem 2.5rem .6rem 1.7rem; color: #1A1311; }

.btn-line::after { border-color: #1A1311; }

.btn-line[data-color="key"] { background-color: transparent; border-color: #FFEC00; color: #FFEC00; }

.btn-line[data-color="key"]::after { border-color: #FFEC00; }

.btn-line[data-color="base1"] { background-color: transparent; border-color: #F9F6ED; color: #F9F6ED; }

.btn-line[data-color="base1"]::after { border-color: #F9F6ED; }

.btn-line[data-color="base2"] { background-color: transparent; border-color: #F2EAEA; color: #F2EAEA; }

.btn-line[data-color="base2"]::after { border-color: #F2EAEA; }

.btn-line[data-color="white"] { background-color: transparent; border-color: #fff; color: #fff; }

.btn-line[data-color="white"]::after { border-color: #fff; }

.btn-txt { padding: 0 0.8rem .25rem 0; background-color: transparent !important; border-bottom: 2px solid; border-radius: 0px; }

.btn-txt .btn-icon { right: 0; }

.btn-txt:hover { padding: 0 1rem .25rem 0; }

.btn-txt:hover .btn-icon { right: 0; }

.btn-txt[data-color="white"] { color: #fff !important; border-color: #fff; }

.btn-txt[data-color="white"]:hover { color: white !important; border-color: white; }

.btn-txt[data-color="black"] { color: #1A1311 !important; border-color: #1A1311; }

.btn-txt[data-color="black"]:hover { color: #584039 !important; border-color: #584039; }

.btn-txt[data-color="key"] { color: #FFEC00 !important; border-color: #FFEC00; }

.btn-txt[data-color="key"]:hover { color: #fff466 !important; border-color: #fff466; }

.btn-txt[data-color="base1"] { color: #F9F6ED !important; border-color: #F9F6ED; }

.btn-txt[data-color="base1"]:hover { color: white !important; border-color: white; }

.btn-txt[data-color="base2"] { color: #F2EAEA !important; border-color: #F2EAEA; }

.btn-txt[data-color="base2"]:hover { color: white !important; border-color: white; }

.btn-txt[data-color="base3"] { color: #F9F6ED !important; border-color: #F9F6ED; }

.btn-txt[data-color="base3"]:hover { color: white !important; border-color: white; }

.btn-txt[data-color="gray"] { color: #707070 !important; border-color: #707070; }

.btn-txt[data-color="gray"]:hover { color: #a3a3a3 !important; border-color: #a3a3a3; }

.btn-list { display: block; text-align: left; padding-top: 0px; padding-left: 2.5rem; padding-right: 3.5rem; padding-bottom: 0px; background-color: transparent !important; color: #1A1311 !important; border-left: 5px solid; border-radius: 0; }

.btn-list .btn-icon { line-height: 1; right: 2.5rem; }

.btn-list .btn-icon::after { content: ""; position: absolute; top: 50%; left: 50%; width: 24px; height: 24px; border-radius: 100%; border: 2px solid; transform: translate(-50%, -50%); }

.btn-list[data-color="white"] { border-color: #fff; }

.btn-list[data-color="white"] .font-en { color: #fff; }

.btn-list[data-color="white"] .btn-icon { color: #fff; }

.btn-list[data-color="white"] .btn-icon::after { border-color: #fff; }

.btn-list[data-color="black"] { border-color: #1A1311; }

.btn-list[data-color="black"] .font-en { color: #1A1311; }

.btn-list[data-color="black"] .btn-icon { color: #1A1311; }

.btn-list[data-color="black"] .btn-icon::after { border-color: #1A1311; }

.btn-list[data-color="key"] { border-color: #FFEC00; }

.btn-list[data-color="key"] .font-en { color: #FFEC00; }

.btn-list[data-color="key"] .btn-icon { color: #FFEC00; }

.btn-list[data-color="key"] .btn-icon::after { border-color: #FFEC00; }

.btn-list[data-color="base1"] { border-color: #F9F6ED; }

.btn-list[data-color="base1"] .font-en { color: #F9F6ED; }

.btn-list[data-color="base1"] .btn-icon { color: #F9F6ED; }

.btn-list[data-color="base1"] .btn-icon::after { border-color: #F9F6ED; }

.btn-list[data-color="base2"] { border-color: #F2EAEA; }

.btn-list[data-color="base2"] .font-en { color: #F2EAEA; }

.btn-list[data-color="base2"] .btn-icon { color: #F2EAEA; }

.btn-list[data-color="base2"] .btn-icon::after { border-color: #F2EAEA; }

.btn-list[data-color="base3"] { border-color: #F9F6ED; }

.btn-list[data-color="base3"] .font-en { color: #F9F6ED; }

.btn-list[data-color="base3"] .btn-icon { color: #F9F6ED; }

.btn-list[data-color="base3"] .btn-icon::after { border-color: #F9F6ED; }

.btn-list[data-color="gray"] { border-color: #707070; }

.btn-list[data-color="gray"] .font-en { color: #707070; }

.btn-list[data-color="gray"] .btn-icon { color: #707070; }

.btn-list[data-color="gray"] .btn-icon::after { border-color: #707070; }

.btn-icon { position: absolute; top: 50%; right: 1rem; transform: translateY(-50%); transition: all 0.2s ease; }

.link-whole { transition: all 0.2s ease; }

.link-whole-btn { transition: all 0.2s ease; }

.link-whole:hover { opacity: .7; text-decoration: none; }

.link-whole:hover .link-whole-btn { transform: translateY(0.1rem); color: inherit !important; }

.link-whole:hover .link-whole-btn::after { right: 1rem; }

.card { border: none; margin-bottom: 2.5rem; background-color: transparent; border-radius: .2rem; }

.card-body { padding: 3.5rem 2.5rem; background-color: #fff; border-radius: 10px; border: 2px solid #1A1311; }

.card-body .btn { margin-top: 2.5rem; }

.card-body.border-radius-0 { border-radius: 0; }

.card-title { font-size: 2.7rem; font-weight: normal; line-height: 1.4; letter-spacing: .1em; }

.card-wrap .card:last-child { margin-bottom: 0; }

.card-row { display: -ms-flexbox; display: flex; -ms-flex-direction: column; flex-direction: column; -ms-flex-pack: justify; justify-content: space-between; }

.card-col { min-height: 0%; }

.card .card-img-top { min-height: 0%; border-radius: 10px 10px 0 0; }

.card-wide .card-body { margin: -20px 30px 0; }

.card-bnr .card-body { padding: 8rem 2.5rem; background-color: #1A1311; background-position: center; background-size: cover; background-repeat: no-repeat; color: #fff; }

.ttl-1 { font-size: 3rem; font-weight: normal; line-height: 1.4; letter-spacing: .1em; margin-bottom: 3rem; text-align: center; font-weight: bold; }

.ttl-1 span { font-weight: bold; }

.ttl-2 { font-size: 2.7rem; font-weight: normal; line-height: 1.4; letter-spacing: .1em; margin-bottom: 3rem; text-align: center; font-weight: bold; }

.ttl-2 span { font-weight: bold; }

.ttl-3 { font-size: 1.7rem; font-weight: normal; line-height: 1.4; letter-spacing: .1em; margin-bottom: 2rem; text-align: center; font-weight: bold; }

.ttl-3 span { font-weight: bold; }

.ttl-4 { font-size: 1.6rem; font-weight: normal; line-height: 1.4; letter-spacing: .1em; text-align: center; font-weight: bold; }

.ttl-4 span { font-weight: bold; }

.ttl-en { display: inline-block; font-size: 3.8rem; font-family: "Hind", sans-serif; letter-spacing: .2em; line-height: 1; margin-bottom: .5rem; font-weight: 600; background: linear-gradient(-70deg, #FF003B 0%, #FF003B 20%, #495D67 50%, #32D1AC 80%, #32D1AC 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

.ttl-en span { font-weight: bold; }

.ttl-style-1 { position: relative; }

.ttl-style-1 .circle { animation-duration: 4s; animation-timing-function: cubic-bezier(0.09, 0.71, 0.23, 0.93); animation-iteration-count: infinite; }

.ttl-style-1 [data-order="1"] { width: 8rem; height: 8rem; animation-name: animeCircle1; }

.ttl-style-1 [data-order="2"] { width: 3rem; height: 3rem; animation-name: animeCircle2; animation-delay: 2s; }

.ttl-style-1 [data-order="3"] { width: 1rem; height: 1rem; animation-name: animeCircle2; animation-delay: 2s; }

.ttl-style-1 [data-order="4"] { width: 3rem; height: 3rem; animation-name: animeCircle1; }

.ttl-style-1 [data-order="5"] { width: 1rem; height: 1rem; animation-name: animeCircle2; animation-delay: 2s; }

.ttl-style-1[data-direction="0"] [data-order="1"] { left: -6rem; top: 5rem; }

.ttl-style-1[data-direction="0"] [data-order="2"] { left: -1rem; top: 4rem; }

.ttl-style-1[data-direction="0"] [data-order="3"] { left: -2rem; top: 3rem; }

.ttl-style-1[data-direction="0"] [data-order="4"] { right: -2.5rem; top: -2rem; }

.ttl-style-1[data-direction="0"] [data-order="5"] { right: .5rem; top: -3rem; }

.ttl-style-1[data-direction="1"] [data-order="1"] { right: -6rem; top: 5rem; }

.ttl-style-1[data-direction="1"] [data-order="2"] { right: -1rem; top: 4rem; }

.ttl-style-1[data-direction="1"] [data-order="3"] { right: -2rem; top: 3rem; }

.ttl-style-1[data-direction="1"] [data-order="4"] { left: -2.5rem; top: -2rem; }

.ttl-style-1[data-direction="1"] [data-order="5"] { left: .5rem; top: -3rem; }

.ttl-style-2 { position: relative; padding-bottom: 2rem; }

.ttl-style-2::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; margin: auto; width: 5rem; height: .5rem; background: linear-gradient(-70deg, #FF003B 0%, #FF003B 20%, #495D67 50%, #32D1AC 80%, #32D1AC 100%); }

.ttl-style-2[data-direction="left"]::after { content: ""; right: auto; }

.ttl-style-3 { display: inline-block; position: relative; padding-left: 2.5rem; }

.ttl-style-3::after { content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%); margin: auto; width: 2rem; height: 2rem; background-image: url(/assets/images/common/circle_grd2.svg); background-repeat: no-repeat; background-size: cover; }

.leaflet-control-zoom { display: none; }

.modal-wrap { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); opacity: 0; pointer-events: none; z-index: 5; transition: all 0.5s ease; }

.modal-wrap-on { opacity: 1; pointer-events: auto; }

.modal-cont { display: none; }

.modal-close { position: absolute; top: -50px; right: 0; width: 30px; height: 30px; cursor: pointer; }

.modal-close::before, .modal-close::after { content: ""; position: absolute; top: 0; bottom: 0; margin: auto; width: 1px; margin: auto; background-color: #fff; }

.modal-close::before { left: 50%; transform: rotate(45deg); }

.modal-close::after { right: 50%; transform: rotate(-45deg); }

.tag { display: -ms-inline-flexbox; display: inline-flex; border: 2px solid #fff; -ms-flex-pack: start; justify-content: flex-start; -ms-flex-align: baseline; align-items: baseline; }

.tag-head, .tag-data { padding: .1rem .8rem .5rem; font-weight: bold; line-height: 1; }

.tag-head { color: #fff; }

.tag-head strong { font-size: 1.6rem; line-height: 1; }

.has-tooltip { position: relative; }

.has-tooltip:hover .tooltip { opacity: 1; pointer-events: auto; }

.has-tooltip:hover .tooltip-top { top: 0; transform: translateY(-100%) scale(1); }

.has-tooltip:hover .tooltip-bottom { bottom: 0; transform: translateY(100%) scale(1); }

.has-tooltip:hover .tooltip-left { left: 0; transform: translateY(-50%) translateX(-100%) scale(1); }

.has-tooltip:hover .tooltip-right { right: 0; transform: translateY(-50%) translateX(100%) scale(1); }

.tooltip { position: absolute; font-size: 10px; background-color: #FFEC00; padding: 5px 10px; opacity: 0; pointer-events: none; transition: all 0.1s ease; }

.tooltip a { text-decoration: underline; color: #1A1311; }

.tooltip a:hover { text-decoration: none; }

.tooltip:after { content: ""; position: absolute; width: 7px; height: 7px; margin: auto; box-sizing: border-box; }

.tooltip-top { width: calc(100% + 20px); top: 10px; left: -10px; transform: translateY(-100%) scale(0.9); }

.tooltip-top:after { left: 0; right: 0; bottom: -14px; border: 7px solid transparent; border-top: 7px solid #FFEC00; }

.tooltip-bottom { width: calc(100% + 20px); bottom: 10px; left: -10px; transform: translateY(100%) scale(0.9); }

.tooltip-bottom:after { left: 0; right: 0; top: -14px; border: 7px solid transparent; border-bottom: 7px solid #FFEC00; }

.tooltip-left { width: calc(100% + 20px); top: 50%; left: 10px; transform: translateY(-50%) translateX(-100%) scale(0.9); }

.tooltip-left:after { top: 0; bottom: 0; right: -14px; border: 7px solid transparent; border-left: 7px solid #FFEC00; }

.tooltip-right { width: calc(100% + 20px); top: 50%; right: 10px; transform: translateY(-50%) translateX(100%) scale(0.9); }

.tooltip-right:after { top: 0; bottom: 0; left: -14px; border: 7px solid transparent; border-right: 7px solid #FFEC00; }

/* theme */
.infomation-fv { z-index: 3; }

.infomation-cont { position: absolute; width: 300px; left: 0; right: 0; margin: auto; padding-left: 10px; padding-right: 10px; }

.infomation-cont p { letter-spacing: .05em; }

@media (min-width: 991px) { .infomation-cont { width: 90%; max-width: 830px; } }

.infomation-cont #spots ul li { font-size: 12px; }

@media (min-width: 991px) { .infomation-cont #spots ul { display: -ms-flexbox; display: flex; -ms-flex-wrap: wrap; flex-wrap: wrap; }
  .infomation-cont #spots ul li { width: 50%; font-size: 15px; margin-bottom: 5px; } }

.infomation-photo { position: absolute; }

.infomation-obj { position: absolute; z-index: 2; }

.infomation-photo01 { width: 247px; top: 243px; right: 30px; }

@media (min-width: 991px) { .infomation-photo01 { width: 367px; top: 173px; right: 100px; } }

.infomation-photo02 { width: 247px; top: 1636px; left: 25px; }

@media (min-width: 991px) { .infomation-photo02 { width: 366px; top: 1370px; left: 140px; } }

.infomation-photo03 { width: 206px; top: 2845px; right: 50px; }

@media (min-width: 991px) { .infomation-photo03 { width: 427px; top: 3605px; } }

.infomation-obj01 { width: 147px; top: 409px; right: 208px; }

@media (min-width: 991px) { .infomation-obj01 { width: 195px; top: 419px; right: 45px; } }

.infomation-obj01-1 { width: 110px; top: 750px; right: -45px; transform: rotate(-10deg); }

.infomation-obj02 { width: 77px; top: -60px; right: 15px; }

.infomation-obj02-2 { width: 80px; top: 230px; right: -40px; }

.infomation-obj03 { width: 83px; top: 492px; left: -30px; }

@media (min-width: 991px) { .infomation-obj03 { width: 142px; top: 140px; left: -70px; } }

.infomation-obj03-2 { width: 80px; top: 592px; right: -50px; }

.infomation-obj04 { width: 178px; bottom: -70px; right: -40px; }

@media (min-width: 991px) { .infomation-obj04 { width: 171px; bottom: -90px; right: 10px; } }

.infomation-obj05 { width: 120px; left: 15px; top: 1534px; }

@media (min-width: 991px) { .infomation-obj05 { width: 243px; top: 1280px; left: 50px; } }

.infomation-obj06 { width: 85px; right: -20px; top: 1542px; }

@media (min-width: 991px) { .infomation-obj06 { width: 135px; right: 140px; } }

.infomation-obj07 { width: 104px; right: 55px; top: 1857px; }

.infomation-obj08 { width: 117px; left: -50px; top: -90px; }

@media (min-width: 991px) { .infomation-obj08 { width: 182px; left: -120px; } }

.infomation-obj09 { width: 150px; right: 50px; top: -95px; }

@media (min-width: 991px) { .infomation-obj09 { width: 100px; top: -242px; right: 320px; } }

.infomation-obj10 { width: 97px; right: -50px; top: 55px; }

@media (min-width: 991px) { .infomation-obj10 { width: 225px; right: auto; top: auto; left: -120px; bottom: -100px; } }

.infomation-obj11 { width: 115px; right: 240px; top: 3000px; }

@media (min-width: 991px) { .infomation-obj11 { width: 68px; top: 2560px; right: 320px; } }

.infomation-obj12 { width: 157px; right: -30px; top: -60px; }

@media (min-width: 991px) { .infomation-obj12 { width: 181px; top: auto; right: auto; left: -90px; bottom: 0; } }

.infomation-obj13 { width: 155px; left: -30px; bottom: -65px; }

@media (min-width: 991px) { .infomation-obj13 { width: 200px; left: auto; bottom: auto; top: -70px; right: 20px; } }

.infomation-obj14 { width: 41px; right: 70px; bottom: 0; }

@media (min-width: 991px) { .infomation-obj14 { width: 127px; right: auto; left: 430px; } }

.infomation-obj15 { width: 164px; bottom: 250px; left: 100px; }

.infomation-cont01 { top: 568px; bottom: auto; }

.infomation-cont02 { top: 2120px; bottom: auto; }

@media (min-width: 991px) { .infomation-cont02 { top: 1920px; } }

.infomation-cont03 { top: 3236px; bottom: auto; }

@media (min-width: 991px) { .infomation-cont03 { top: 3036px; } }

.infomation-fv { position: relative; height: calc(100vh - 90px); }

.infomation-fv-sns { position: absolute; top: 30px; right: 25px; width: 32px; }

.infomation-fv-sns li { margin-bottom: 20px; }

.infomation-intro { overflow: hidden; }

.infomation-intro .obj1 { width: 124px; top: -30px; }

.infomation-intro .obj2 { width: 100px; top: 140px; right: -100px; }

.infomation-intro .obj3 { width: 120px; bottom: -100px; right: 0; }

@media (min-width: 991px) { .infomation-intro .obj { transform: scale(0.8); } }

@media (min-width: 991px) { .infomation-step-ttl { height: 4rem; display: -ms-flexbox; display: flex; -ms-flex-align: end; align-items: flex-end; -ms-flex-pack: center; justify-content: center; }
  .infomation-step-txt { height: 11rem; display: -ms-flexbox; display: flex; -ms-flex-pack: center; justify-content: center; }
  .infomation-step-icon { width: 186px; margin: auto; }
  .infomation-step-body p { font-weight: 600; } }

@media (max-width: 992px) { .infomation-step-icon { width: 140px; margin: auto; } }

.infomation-howto .obj1 { width: 223px; bottom: 0; left: 0; }

.infomation-howto .obj2 { width: 96px; bottom: 0; right: 80px; }

.infomation-spots .list-head { transform: scale(0.6); }

.line-bg { margin-top: 10px; position: relative; }

@media (min-width: 991px) { .line-bg { max-width: 1280px; margin: auto; } }

.line-bg-img { position: relative; width: 785px; max-width: 785px; left: 50%; transform: translateX(-50%); }

@media (min-width: 991px) { .line-bg-img { width: 1280px; max-width: 1280px; } }

@media (max-width: 992px) { .en .infomation-photo01 { top: 183px; }
  .en .infomation-photo02 { top: 1700px; }
  .en .infomation-photo03 { top: 3105px; }
  .en .infomation-obj01 { top: 300px; }
  .en .infomation-obj02-2 { top: 290px; }
  .en .infomation-obj03 { left: -40px; }
  .en .infomation-obj06 { top: 1700px; }
  .en .infomation-obj07 { top: 1900px; }
  .en .infomation-obj11 { top: 3250px; }
  .en .infomation-cont01 { top: 470px; }
  .en .infomation-cont02 { top: 2160px; }
  .en .infomation-cont03 { top: 3386px; }
  .en .line-bg-img { width: 805px; max-width: 805px; } }

.sitepolicy-obj01 { width: 96px; top: 300px; left: -40px; }

@media (min-width: 991px) { .sitepolicy-obj01 { width: 124px; top: 40%; left: auto; right: -60px; } }

.sitepolicy-obj02 { width: 94px; bottom: -30px; left: 80px; }

.sitepolicy-obj03 { width: 80px; top: 400px; right: -40px; }

@media (min-width: 991px) { .sitepolicy-obj03 { width: 97px; top: 60%; left: -50px; right: auto; } }

.sitepolicy-obj04 { width: 225px; top: 115px; left: -110px; }

.sitepolicy-obj05 { width: 80px; top: -30px; right: 0; }

@media (min-width: 991px) { .sitepolicy-obj05 { width: 153px; top: -60px; right: 70px; } }

.sitepolicy-obj06 { width: 96px; top: 650px; left: -40px; }

@media (min-width: 991px) { .sitepolicy-obj06 { width: 199px; top: auto; left: auto; bottom: -60px; right: 20px; } }

.privacypolicy-obj01 { width: 113px; top: -25px; left: 15px; }

@media (min-width: 991px) { .privacypolicy-obj01 { width: 195px; left: -120px; top: auto; bottom: 30px; } }

.privacypolicy-obj02 { width: 70px; right: -35px; top: 280px; }

@media (min-width: 991px) { .privacypolicy-obj02 { width: 135px; right: auto; left: -90px; top: 715px; } }

.privacypolicy-obj03 { width: 66px; left: -40px; top: 440px; }

@media (min-width: 991px) { .privacypolicy-obj03 { width: 123px; top: auto; left: auto; bottom: 344px; right: -100px; } }

.privacypolicy-obj04 { width: 102px; right: -60px; top: 680px; }

@media (min-width: 991px) { .privacypolicy-obj04 { width: 227px; top: 554px; right: -150px; } }

.privacypolicy-obj05 { width: 80px; right: 40px; bottom: -50px; }

@media (min-width: 991px) { .privacypolicy-obj05 { width: 158px; right: 185px; bottom: -65px; } }

.privacypolicy-obj06 { width: 181px; right: 10px; top: -70px; }

.privacypolicy-obj07 { width: 164px; left: -80px; top: 140px; }

.contact-obj01 { width: 70px; top: -30px; left: -20px; }

.contact-obj02 { width: 94px; left: 20px; bottom: -30px; }

.contact-obj03 { width: 70px; right: -30px; bottom: 80px; }

.contact-obj04 { width: 39px; right: 20px; top: 35px; }

@media (min-width: 991px) { .contact-obj01 { width: 142px; top: auto; bottom: 50px; left: -60px; }
  .contact-obj02 { width: 164px; left: 70px; bottom: auto; top: -70px; }
  .contact-obj03 { width: 124px; right: 100px; top: -80px; bottom: auto; }
  .contact-obj04 { width: 39px; right: -80px; top: 90px; }
  .contact-obj05 { width: 123px; right: 180px; bottom: -50px; }
  .contact-obj06 { width: 195px; right: -80px; bottom: 94px; } }

/* utility */
/* ユーティリティ
---------------------------------------------- */
/* レイヤーを前面に持っていくクラス */
.layer { position: relative; z-index: 2; }

.z-index-1 { z-index: 1; }

.z-index-2 { z-index: 2; }

.z-index-3 { z-index: 3; }

.z-index-4 { z-index: 4; }

.z-index-5 { z-index: 5; }

.z-index-6 { z-index: 6; }

.z-index-7 { z-index: 7; }

.z-index-8 { z-index: 8; }

.z-index-9 { z-index: 9; }

.z-index-10 { z-index: 10; }

@media (max-width: 992px) { .z-index-lg-1 { z-index: 1; }
  .z-index-lg-2 { z-index: 2; }
  .z-index-lg-3 { z-index: 3; }
  .z-index-lg-4 { z-index: 4; }
  .z-index-lg-5 { z-index: 5; }
  .z-index-lg-6 { z-index: 6; }
  .z-index-lg-7 { z-index: 7; }
  .z-index-lg-8 { z-index: 8; }
  .z-index-lg-9 { z-index: 9; }
  .z-index-lg-10 { z-index: 10; } }

/* スマホ時のグリッド調整 */
@media (max-width: 992px) { .row { margin-left: -5px; margin-right: -5px; } }

.row-adjust *[class*="col-"] { display: -ms-flexbox; display: flex; -ms-flex-direction: column; flex-direction: column; }

.row-adjust *[class*="col-"] .card { -ms-flex: 1; flex: 1; min-height: 0%; }

/* IE対策 */
@media all and (-ms-high-contrast: none) { .row-adjust *[class*="col-"] { display: block; } }

@media (max-width: 992px) { .col, .col-1, .col-10, .col-11, .col-12, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-auto, .col-lg, .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .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-auto, .col-md, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .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-auto, .col-sm, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .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-auto, .col-xl, .col-xl-1, .col-xl-10, .col-xl-11, .col-xl-12, .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-auto { padding-left: 5px; padding-right: 5px; } }

/* 最大幅 / 最小幅の設定 */
.max-10 { max-width: 1rem !important; margin-left: auto; margin-right: auto; }

.max-20 { max-width: 2rem !important; margin-left: auto; margin-right: auto; }

.max-30 { max-width: 3rem !important; margin-left: auto; margin-right: auto; }

.max-40 { max-width: 4rem !important; margin-left: auto; margin-right: auto; }

.max-50 { max-width: 5rem !important; margin-left: auto; margin-right: auto; }

.max-60 { max-width: 6rem !important; margin-left: auto; margin-right: auto; }

.max-70 { max-width: 7rem !important; margin-left: auto; margin-right: auto; }

.max-80 { max-width: 8rem !important; margin-left: auto; margin-right: auto; }

.max-90 { max-width: 9rem !important; margin-left: auto; margin-right: auto; }

.max-100 { max-width: 10rem !important; margin-left: auto; margin-right: auto; }

.max-110 { max-width: 11rem !important; margin-left: auto; margin-right: auto; }

.max-120 { max-width: 12rem !important; margin-left: auto; margin-right: auto; }

.max-130 { max-width: 13rem !important; margin-left: auto; margin-right: auto; }

.max-140 { max-width: 14rem !important; margin-left: auto; margin-right: auto; }

.max-150 { max-width: 15rem !important; margin-left: auto; margin-right: auto; }

.max-160 { max-width: 16rem !important; margin-left: auto; margin-right: auto; }

.max-170 { max-width: 17rem !important; margin-left: auto; margin-right: auto; }

.max-180 { max-width: 18rem !important; margin-left: auto; margin-right: auto; }

.max-190 { max-width: 19rem !important; margin-left: auto; margin-right: auto; }

.max-200 { max-width: 20rem !important; margin-left: auto; margin-right: auto; }

.max-210 { max-width: 21rem !important; margin-left: auto; margin-right: auto; }

.max-220 { max-width: 22rem !important; margin-left: auto; margin-right: auto; }

.max-230 { max-width: 23rem !important; margin-left: auto; margin-right: auto; }

.max-240 { max-width: 24rem !important; margin-left: auto; margin-right: auto; }

.max-250 { max-width: 25rem !important; margin-left: auto; margin-right: auto; }

.max-260 { max-width: 26rem !important; margin-left: auto; margin-right: auto; }

.max-270 { max-width: 27rem !important; margin-left: auto; margin-right: auto; }

.max-280 { max-width: 28rem !important; margin-left: auto; margin-right: auto; }

.max-290 { max-width: 29rem !important; margin-left: auto; margin-right: auto; }

.max-300 { max-width: 30rem !important; margin-left: auto; margin-right: auto; }

.max-310 { max-width: 31rem !important; margin-left: auto; margin-right: auto; }

.max-320 { max-width: 32rem !important; margin-left: auto; margin-right: auto; }

.max-330 { max-width: 33rem !important; margin-left: auto; margin-right: auto; }

.max-340 { max-width: 34rem !important; margin-left: auto; margin-right: auto; }

.max-350 { max-width: 35rem !important; margin-left: auto; margin-right: auto; }

.max-360 { max-width: 36rem !important; margin-left: auto; margin-right: auto; }

.max-370 { max-width: 37rem !important; margin-left: auto; margin-right: auto; }

.max-380 { max-width: 38rem !important; margin-left: auto; margin-right: auto; }

.max-390 { max-width: 39rem !important; margin-left: auto; margin-right: auto; }

.max-400 { max-width: 40rem !important; margin-left: auto; margin-right: auto; }

.max-410 { max-width: 41rem !important; margin-left: auto; margin-right: auto; }

.max-420 { max-width: 42rem !important; margin-left: auto; margin-right: auto; }

.max-430 { max-width: 43rem !important; margin-left: auto; margin-right: auto; }

.max-440 { max-width: 44rem !important; margin-left: auto; margin-right: auto; }

.max-450 { max-width: 45rem !important; margin-left: auto; margin-right: auto; }

.max-460 { max-width: 46rem !important; margin-left: auto; margin-right: auto; }

.max-470 { max-width: 47rem !important; margin-left: auto; margin-right: auto; }

.max-480 { max-width: 48rem !important; margin-left: auto; margin-right: auto; }

.max-490 { max-width: 49rem !important; margin-left: auto; margin-right: auto; }

.max-500 { max-width: 50rem !important; margin-left: auto; margin-right: auto; }

.max-510 { max-width: 51rem !important; margin-left: auto; margin-right: auto; }

.max-520 { max-width: 52rem !important; margin-left: auto; margin-right: auto; }

.max-530 { max-width: 53rem !important; margin-left: auto; margin-right: auto; }

.max-540 { max-width: 54rem !important; margin-left: auto; margin-right: auto; }

.max-550 { max-width: 55rem !important; margin-left: auto; margin-right: auto; }

.max-560 { max-width: 56rem !important; margin-left: auto; margin-right: auto; }

.max-570 { max-width: 57rem !important; margin-left: auto; margin-right: auto; }

.max-580 { max-width: 58rem !important; margin-left: auto; margin-right: auto; }

.max-590 { max-width: 59rem !important; margin-left: auto; margin-right: auto; }

.max-600 { max-width: 60rem !important; margin-left: auto; margin-right: auto; }

.max-610 { max-width: 61rem !important; margin-left: auto; margin-right: auto; }

.max-620 { max-width: 62rem !important; margin-left: auto; margin-right: auto; }

.max-630 { max-width: 63rem !important; margin-left: auto; margin-right: auto; }

.max-640 { max-width: 64rem !important; margin-left: auto; margin-right: auto; }

.max-650 { max-width: 65rem !important; margin-left: auto; margin-right: auto; }

.max-660 { max-width: 66rem !important; margin-left: auto; margin-right: auto; }

.max-670 { max-width: 67rem !important; margin-left: auto; margin-right: auto; }

.max-680 { max-width: 68rem !important; margin-left: auto; margin-right: auto; }

.max-690 { max-width: 69rem !important; margin-left: auto; margin-right: auto; }

.max-700 { max-width: 70rem !important; margin-left: auto; margin-right: auto; }

.max-710 { max-width: 71rem !important; margin-left: auto; margin-right: auto; }

.max-720 { max-width: 72rem !important; margin-left: auto; margin-right: auto; }

.max-730 { max-width: 73rem !important; margin-left: auto; margin-right: auto; }

.max-740 { max-width: 74rem !important; margin-left: auto; margin-right: auto; }

.max-750 { max-width: 75rem !important; margin-left: auto; margin-right: auto; }

.max-760 { max-width: 76rem !important; margin-left: auto; margin-right: auto; }

.max-770 { max-width: 77rem !important; margin-left: auto; margin-right: auto; }

.max-780 { max-width: 78rem !important; margin-left: auto; margin-right: auto; }

.max-790 { max-width: 79rem !important; margin-left: auto; margin-right: auto; }

.max-800 { max-width: 80rem !important; margin-left: auto; margin-right: auto; }

.max-810 { max-width: 81rem !important; margin-left: auto; margin-right: auto; }

.max-820 { max-width: 82rem !important; margin-left: auto; margin-right: auto; }

.max-830 { max-width: 83rem !important; margin-left: auto; margin-right: auto; }

.max-840 { max-width: 84rem !important; margin-left: auto; margin-right: auto; }

.max-850 { max-width: 85rem !important; margin-left: auto; margin-right: auto; }

.max-860 { max-width: 86rem !important; margin-left: auto; margin-right: auto; }

.max-870 { max-width: 87rem !important; margin-left: auto; margin-right: auto; }

.max-880 { max-width: 88rem !important; margin-left: auto; margin-right: auto; }

.max-890 { max-width: 89rem !important; margin-left: auto; margin-right: auto; }

.max-900 { max-width: 90rem !important; margin-left: auto; margin-right: auto; }

.max-910 { max-width: 91rem !important; margin-left: auto; margin-right: auto; }

.max-920 { max-width: 92rem !important; margin-left: auto; margin-right: auto; }

.max-930 { max-width: 93rem !important; margin-left: auto; margin-right: auto; }

.max-940 { max-width: 94rem !important; margin-left: auto; margin-right: auto; }

.max-950 { max-width: 95rem !important; margin-left: auto; margin-right: auto; }

.max-960 { max-width: 96rem !important; margin-left: auto; margin-right: auto; }

.max-970 { max-width: 97rem !important; margin-left: auto; margin-right: auto; }

.max-980 { max-width: 98rem !important; margin-left: auto; margin-right: auto; }

.max-990 { max-width: 99rem !important; margin-left: auto; margin-right: auto; }

.max-1000 { max-width: 100rem !important; margin-left: auto; margin-right: auto; }

.max-1010 { max-width: 101rem !important; margin-left: auto; margin-right: auto; }

.max-1020 { max-width: 102rem !important; margin-left: auto; margin-right: auto; }

.max-1030 { max-width: 103rem !important; margin-left: auto; margin-right: auto; }

.max-1040 { max-width: 104rem !important; margin-left: auto; margin-right: auto; }

.max-1050 { max-width: 105rem !important; margin-left: auto; margin-right: auto; }

.max-1060 { max-width: 106rem !important; margin-left: auto; margin-right: auto; }

.max-1070 { max-width: 107rem !important; margin-left: auto; margin-right: auto; }

.max-1080 { max-width: 108rem !important; margin-left: auto; margin-right: auto; }

.max-1090 { max-width: 109rem !important; margin-left: auto; margin-right: auto; }

.max-1100 { max-width: 110rem !important; margin-left: auto; margin-right: auto; }

.max-1110 { max-width: 111rem !important; margin-left: auto; margin-right: auto; }

.max-1120 { max-width: 112rem !important; margin-left: auto; margin-right: auto; }

.max-1130 { max-width: 113rem !important; margin-left: auto; margin-right: auto; }

.max-1140 { max-width: 114rem !important; margin-left: auto; margin-right: auto; }

.max-1150 { max-width: 115rem !important; margin-left: auto; margin-right: auto; }

.max-1160 { max-width: 116rem !important; margin-left: auto; margin-right: auto; }

.max-1170 { max-width: 117rem !important; margin-left: auto; margin-right: auto; }

.max-1180 { max-width: 118rem !important; margin-left: auto; margin-right: auto; }

.max-1190 { max-width: 119rem !important; margin-left: auto; margin-right: auto; }

.max-1200 { max-width: 120rem !important; margin-left: auto; margin-right: auto; }

.max-1210 { max-width: 121rem !important; margin-left: auto; margin-right: auto; }

.max-1220 { max-width: 122rem !important; margin-left: auto; margin-right: auto; }

.max-1230 { max-width: 123rem !important; margin-left: auto; margin-right: auto; }

.max-1240 { max-width: 124rem !important; margin-left: auto; margin-right: auto; }

.max-1250 { max-width: 125rem !important; margin-left: auto; margin-right: auto; }

.max-1260 { max-width: 126rem !important; margin-left: auto; margin-right: auto; }

.max-1270 { max-width: 127rem !important; margin-left: auto; margin-right: auto; }

.max-1280 { max-width: 128rem !important; margin-left: auto; margin-right: auto; }

.max-1290 { max-width: 129rem !important; margin-left: auto; margin-right: auto; }

.max-1300 { max-width: 130rem !important; margin-left: auto; margin-right: auto; }

.max-1310 { max-width: 131rem !important; margin-left: auto; margin-right: auto; }

.max-1320 { max-width: 132rem !important; margin-left: auto; margin-right: auto; }

.max-1330 { max-width: 133rem !important; margin-left: auto; margin-right: auto; }

.max-1340 { max-width: 134rem !important; margin-left: auto; margin-right: auto; }

.max-1350 { max-width: 135rem !important; margin-left: auto; margin-right: auto; }

.max-1360 { max-width: 136rem !important; margin-left: auto; margin-right: auto; }

.max-1370 { max-width: 137rem !important; margin-left: auto; margin-right: auto; }

.max-1380 { max-width: 138rem !important; margin-left: auto; margin-right: auto; }

.max-1390 { max-width: 139rem !important; margin-left: auto; margin-right: auto; }

.max-1400 { max-width: 140rem !important; margin-left: auto; margin-right: auto; }

.max-1410 { max-width: 141rem !important; margin-left: auto; margin-right: auto; }

.max-1420 { max-width: 142rem !important; margin-left: auto; margin-right: auto; }

.max-1430 { max-width: 143rem !important; margin-left: auto; margin-right: auto; }

.max-1440 { max-width: 144rem !important; margin-left: auto; margin-right: auto; }

.max-1450 { max-width: 145rem !important; margin-left: auto; margin-right: auto; }

.max-1460 { max-width: 146rem !important; margin-left: auto; margin-right: auto; }

.max-1470 { max-width: 147rem !important; margin-left: auto; margin-right: auto; }

.max-1480 { max-width: 148rem !important; margin-left: auto; margin-right: auto; }

.max-1490 { max-width: 149rem !important; margin-left: auto; margin-right: auto; }

.max-1500 { max-width: 150rem !important; margin-left: auto; margin-right: auto; }

.max-per-0 { max-width: 0% !important; margin-left: auto; margin-right: auto; }

.max-per-2 { max-width: 2% !important; margin-left: auto; margin-right: auto; }

.max-per-4 { max-width: 4% !important; margin-left: auto; margin-right: auto; }

.max-per-6 { max-width: 6% !important; margin-left: auto; margin-right: auto; }

.max-per-8 { max-width: 8% !important; margin-left: auto; margin-right: auto; }

.max-per-10 { max-width: 10% !important; margin-left: auto; margin-right: auto; }

.max-per-12 { max-width: 12% !important; margin-left: auto; margin-right: auto; }

.max-per-14 { max-width: 14% !important; margin-left: auto; margin-right: auto; }

.max-per-16 { max-width: 16% !important; margin-left: auto; margin-right: auto; }

.max-per-18 { max-width: 18% !important; margin-left: auto; margin-right: auto; }

.max-per-20 { max-width: 20% !important; margin-left: auto; margin-right: auto; }

.max-per-22 { max-width: 22% !important; margin-left: auto; margin-right: auto; }

.max-per-24 { max-width: 24% !important; margin-left: auto; margin-right: auto; }

.max-per-26 { max-width: 26% !important; margin-left: auto; margin-right: auto; }

.max-per-28 { max-width: 28% !important; margin-left: auto; margin-right: auto; }

.max-per-30 { max-width: 30% !important; margin-left: auto; margin-right: auto; }

.max-per-32 { max-width: 32% !important; margin-left: auto; margin-right: auto; }

.max-per-34 { max-width: 34% !important; margin-left: auto; margin-right: auto; }

.max-per-36 { max-width: 36% !important; margin-left: auto; margin-right: auto; }

.max-per-38 { max-width: 38% !important; margin-left: auto; margin-right: auto; }

.max-per-40 { max-width: 40% !important; margin-left: auto; margin-right: auto; }

.max-per-42 { max-width: 42% !important; margin-left: auto; margin-right: auto; }

.max-per-44 { max-width: 44% !important; margin-left: auto; margin-right: auto; }

.max-per-46 { max-width: 46% !important; margin-left: auto; margin-right: auto; }

.max-per-48 { max-width: 48% !important; margin-left: auto; margin-right: auto; }

.max-per-50 { max-width: 50% !important; margin-left: auto; margin-right: auto; }

.max-per-52 { max-width: 52% !important; margin-left: auto; margin-right: auto; }

.max-per-54 { max-width: 54% !important; margin-left: auto; margin-right: auto; }

.max-per-56 { max-width: 56% !important; margin-left: auto; margin-right: auto; }

.max-per-58 { max-width: 58% !important; margin-left: auto; margin-right: auto; }

.max-per-60 { max-width: 60% !important; margin-left: auto; margin-right: auto; }

.max-per-62 { max-width: 62% !important; margin-left: auto; margin-right: auto; }

.max-per-64 { max-width: 64% !important; margin-left: auto; margin-right: auto; }

.max-per-66 { max-width: 66% !important; margin-left: auto; margin-right: auto; }

.max-per-68 { max-width: 68% !important; margin-left: auto; margin-right: auto; }

.max-per-70 { max-width: 70% !important; margin-left: auto; margin-right: auto; }

.max-per-72 { max-width: 72% !important; margin-left: auto; margin-right: auto; }

.max-per-74 { max-width: 74% !important; margin-left: auto; margin-right: auto; }

.max-per-76 { max-width: 76% !important; margin-left: auto; margin-right: auto; }

.max-per-78 { max-width: 78% !important; margin-left: auto; margin-right: auto; }

.max-per-80 { max-width: 80% !important; margin-left: auto; margin-right: auto; }

.max-per-82 { max-width: 82% !important; margin-left: auto; margin-right: auto; }

.max-per-84 { max-width: 84% !important; margin-left: auto; margin-right: auto; }

.max-per-86 { max-width: 86% !important; margin-left: auto; margin-right: auto; }

.max-per-88 { max-width: 88% !important; margin-left: auto; margin-right: auto; }

.max-per-90 { max-width: 90% !important; margin-left: auto; margin-right: auto; }

.max-per-92 { max-width: 92% !important; margin-left: auto; margin-right: auto; }

.max-per-94 { max-width: 94% !important; margin-left: auto; margin-right: auto; }

.max-per-96 { max-width: 96% !important; margin-left: auto; margin-right: auto; }

.max-per-98 { max-width: 98% !important; margin-left: auto; margin-right: auto; }

.max-per-100 { max-width: 100% !important; margin-left: auto; margin-right: auto; }

@media (min-width: 991px) { .max-lg-10 { max-width: 1rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-20 { max-width: 2rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-30 { max-width: 3rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-40 { max-width: 4rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-50 { max-width: 5rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-60 { max-width: 6rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-70 { max-width: 7rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-80 { max-width: 8rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-90 { max-width: 9rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-100 { max-width: 10rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-110 { max-width: 11rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-120 { max-width: 12rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-130 { max-width: 13rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-140 { max-width: 14rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-150 { max-width: 15rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-160 { max-width: 16rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-170 { max-width: 17rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-180 { max-width: 18rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-190 { max-width: 19rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-200 { max-width: 20rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-210 { max-width: 21rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-220 { max-width: 22rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-230 { max-width: 23rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-240 { max-width: 24rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-250 { max-width: 25rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-260 { max-width: 26rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-270 { max-width: 27rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-280 { max-width: 28rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-290 { max-width: 29rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-300 { max-width: 30rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-310 { max-width: 31rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-320 { max-width: 32rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-330 { max-width: 33rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-340 { max-width: 34rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-350 { max-width: 35rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-360 { max-width: 36rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-370 { max-width: 37rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-380 { max-width: 38rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-390 { max-width: 39rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-400 { max-width: 40rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-410 { max-width: 41rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-420 { max-width: 42rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-430 { max-width: 43rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-440 { max-width: 44rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-450 { max-width: 45rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-460 { max-width: 46rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-470 { max-width: 47rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-480 { max-width: 48rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-490 { max-width: 49rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-500 { max-width: 50rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-510 { max-width: 51rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-520 { max-width: 52rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-530 { max-width: 53rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-540 { max-width: 54rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-550 { max-width: 55rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-560 { max-width: 56rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-570 { max-width: 57rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-580 { max-width: 58rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-590 { max-width: 59rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-600 { max-width: 60rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-610 { max-width: 61rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-620 { max-width: 62rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-630 { max-width: 63rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-640 { max-width: 64rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-650 { max-width: 65rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-660 { max-width: 66rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-670 { max-width: 67rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-680 { max-width: 68rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-690 { max-width: 69rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-700 { max-width: 70rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-710 { max-width: 71rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-720 { max-width: 72rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-730 { max-width: 73rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-740 { max-width: 74rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-750 { max-width: 75rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-760 { max-width: 76rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-770 { max-width: 77rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-780 { max-width: 78rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-790 { max-width: 79rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-800 { max-width: 80rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-810 { max-width: 81rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-820 { max-width: 82rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-830 { max-width: 83rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-840 { max-width: 84rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-850 { max-width: 85rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-860 { max-width: 86rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-870 { max-width: 87rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-880 { max-width: 88rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-890 { max-width: 89rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-900 { max-width: 90rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-910 { max-width: 91rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-920 { max-width: 92rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-930 { max-width: 93rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-940 { max-width: 94rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-950 { max-width: 95rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-960 { max-width: 96rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-970 { max-width: 97rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-980 { max-width: 98rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-990 { max-width: 99rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1000 { max-width: 100rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1010 { max-width: 101rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1020 { max-width: 102rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1030 { max-width: 103rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1040 { max-width: 104rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1050 { max-width: 105rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1060 { max-width: 106rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1070 { max-width: 107rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1080 { max-width: 108rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1090 { max-width: 109rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1100 { max-width: 110rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1110 { max-width: 111rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1120 { max-width: 112rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1130 { max-width: 113rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1140 { max-width: 114rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1150 { max-width: 115rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1160 { max-width: 116rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1170 { max-width: 117rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1180 { max-width: 118rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1190 { max-width: 119rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1200 { max-width: 120rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1210 { max-width: 121rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1220 { max-width: 122rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1230 { max-width: 123rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1240 { max-width: 124rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1250 { max-width: 125rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1260 { max-width: 126rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1270 { max-width: 127rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1280 { max-width: 128rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1290 { max-width: 129rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1300 { max-width: 130rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1310 { max-width: 131rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1320 { max-width: 132rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1330 { max-width: 133rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1340 { max-width: 134rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1350 { max-width: 135rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1360 { max-width: 136rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1370 { max-width: 137rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1380 { max-width: 138rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1390 { max-width: 139rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1400 { max-width: 140rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1410 { max-width: 141rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1420 { max-width: 142rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1430 { max-width: 143rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1440 { max-width: 144rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1450 { max-width: 145rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1460 { max-width: 146rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1470 { max-width: 147rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1480 { max-width: 148rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1490 { max-width: 149rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-1500 { max-width: 150rem !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-0 { max-width: 0% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-2 { max-width: 2% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-4 { max-width: 4% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-6 { max-width: 6% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-8 { max-width: 8% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-10 { max-width: 10% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-12 { max-width: 12% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-14 { max-width: 14% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-16 { max-width: 16% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-18 { max-width: 18% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-20 { max-width: 20% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-22 { max-width: 22% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-24 { max-width: 24% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-26 { max-width: 26% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-28 { max-width: 28% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-30 { max-width: 30% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-32 { max-width: 32% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-34 { max-width: 34% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-36 { max-width: 36% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-38 { max-width: 38% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-40 { max-width: 40% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-42 { max-width: 42% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-44 { max-width: 44% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-46 { max-width: 46% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-48 { max-width: 48% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-50 { max-width: 50% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-52 { max-width: 52% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-54 { max-width: 54% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-56 { max-width: 56% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-58 { max-width: 58% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-60 { max-width: 60% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-62 { max-width: 62% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-64 { max-width: 64% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-66 { max-width: 66% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-68 { max-width: 68% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-70 { max-width: 70% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-72 { max-width: 72% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-74 { max-width: 74% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-76 { max-width: 76% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-78 { max-width: 78% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-80 { max-width: 80% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-82 { max-width: 82% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-84 { max-width: 84% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-86 { max-width: 86% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-88 { max-width: 88% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-90 { max-width: 90% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-92 { max-width: 92% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-94 { max-width: 94% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-96 { max-width: 96% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-98 { max-width: 98% !important; margin-left: auto; margin-right: auto; }
  .max-lg-per-100 { max-width: 100% !important; margin-left: auto; margin-right: auto; } }

.min-10 { min-width: 1rem !important; margin-left: auto; margin-right: auto; }

.min-20 { min-width: 2rem !important; margin-left: auto; margin-right: auto; }

.min-30 { min-width: 3rem !important; margin-left: auto; margin-right: auto; }

.min-40 { min-width: 4rem !important; margin-left: auto; margin-right: auto; }

.min-50 { min-width: 5rem !important; margin-left: auto; margin-right: auto; }

.min-60 { min-width: 6rem !important; margin-left: auto; margin-right: auto; }

.min-70 { min-width: 7rem !important; margin-left: auto; margin-right: auto; }

.min-80 { min-width: 8rem !important; margin-left: auto; margin-right: auto; }

.min-90 { min-width: 9rem !important; margin-left: auto; margin-right: auto; }

.min-100 { min-width: 10rem !important; margin-left: auto; margin-right: auto; }

.min-110 { min-width: 11rem !important; margin-left: auto; margin-right: auto; }

.min-120 { min-width: 12rem !important; margin-left: auto; margin-right: auto; }

.min-130 { min-width: 13rem !important; margin-left: auto; margin-right: auto; }

.min-140 { min-width: 14rem !important; margin-left: auto; margin-right: auto; }

.min-150 { min-width: 15rem !important; margin-left: auto; margin-right: auto; }

.min-160 { min-width: 16rem !important; margin-left: auto; margin-right: auto; }

.min-170 { min-width: 17rem !important; margin-left: auto; margin-right: auto; }

.min-180 { min-width: 18rem !important; margin-left: auto; margin-right: auto; }

.min-190 { min-width: 19rem !important; margin-left: auto; margin-right: auto; }

.min-200 { min-width: 20rem !important; margin-left: auto; margin-right: auto; }

.min-210 { min-width: 21rem !important; margin-left: auto; margin-right: auto; }

.min-220 { min-width: 22rem !important; margin-left: auto; margin-right: auto; }

.min-230 { min-width: 23rem !important; margin-left: auto; margin-right: auto; }

.min-240 { min-width: 24rem !important; margin-left: auto; margin-right: auto; }

.min-250 { min-width: 25rem !important; margin-left: auto; margin-right: auto; }

.min-260 { min-width: 26rem !important; margin-left: auto; margin-right: auto; }

.min-270 { min-width: 27rem !important; margin-left: auto; margin-right: auto; }

.min-280 { min-width: 28rem !important; margin-left: auto; margin-right: auto; }

.min-290 { min-width: 29rem !important; margin-left: auto; margin-right: auto; }

.min-300 { min-width: 30rem !important; margin-left: auto; margin-right: auto; }

.min-310 { min-width: 31rem !important; margin-left: auto; margin-right: auto; }

.min-320 { min-width: 32rem !important; margin-left: auto; margin-right: auto; }

.min-330 { min-width: 33rem !important; margin-left: auto; margin-right: auto; }

.min-340 { min-width: 34rem !important; margin-left: auto; margin-right: auto; }

.min-350 { min-width: 35rem !important; margin-left: auto; margin-right: auto; }

.min-360 { min-width: 36rem !important; margin-left: auto; margin-right: auto; }

.min-370 { min-width: 37rem !important; margin-left: auto; margin-right: auto; }

.min-380 { min-width: 38rem !important; margin-left: auto; margin-right: auto; }

.min-390 { min-width: 39rem !important; margin-left: auto; margin-right: auto; }

.min-400 { min-width: 40rem !important; margin-left: auto; margin-right: auto; }

.min-410 { min-width: 41rem !important; margin-left: auto; margin-right: auto; }

.min-420 { min-width: 42rem !important; margin-left: auto; margin-right: auto; }

.min-430 { min-width: 43rem !important; margin-left: auto; margin-right: auto; }

.min-440 { min-width: 44rem !important; margin-left: auto; margin-right: auto; }

.min-450 { min-width: 45rem !important; margin-left: auto; margin-right: auto; }

.min-460 { min-width: 46rem !important; margin-left: auto; margin-right: auto; }

.min-470 { min-width: 47rem !important; margin-left: auto; margin-right: auto; }

.min-480 { min-width: 48rem !important; margin-left: auto; margin-right: auto; }

.min-490 { min-width: 49rem !important; margin-left: auto; margin-right: auto; }

.min-500 { min-width: 50rem !important; margin-left: auto; margin-right: auto; }

.min-510 { min-width: 51rem !important; margin-left: auto; margin-right: auto; }

.min-520 { min-width: 52rem !important; margin-left: auto; margin-right: auto; }

.min-530 { min-width: 53rem !important; margin-left: auto; margin-right: auto; }

.min-540 { min-width: 54rem !important; margin-left: auto; margin-right: auto; }

.min-550 { min-width: 55rem !important; margin-left: auto; margin-right: auto; }

.min-560 { min-width: 56rem !important; margin-left: auto; margin-right: auto; }

.min-570 { min-width: 57rem !important; margin-left: auto; margin-right: auto; }

.min-580 { min-width: 58rem !important; margin-left: auto; margin-right: auto; }

.min-590 { min-width: 59rem !important; margin-left: auto; margin-right: auto; }

.min-600 { min-width: 60rem !important; margin-left: auto; margin-right: auto; }

.min-610 { min-width: 61rem !important; margin-left: auto; margin-right: auto; }

.min-620 { min-width: 62rem !important; margin-left: auto; margin-right: auto; }

.min-630 { min-width: 63rem !important; margin-left: auto; margin-right: auto; }

.min-640 { min-width: 64rem !important; margin-left: auto; margin-right: auto; }

.min-650 { min-width: 65rem !important; margin-left: auto; margin-right: auto; }

.min-660 { min-width: 66rem !important; margin-left: auto; margin-right: auto; }

.min-670 { min-width: 67rem !important; margin-left: auto; margin-right: auto; }

.min-680 { min-width: 68rem !important; margin-left: auto; margin-right: auto; }

.min-690 { min-width: 69rem !important; margin-left: auto; margin-right: auto; }

.min-700 { min-width: 70rem !important; margin-left: auto; margin-right: auto; }

.min-710 { min-width: 71rem !important; margin-left: auto; margin-right: auto; }

.min-720 { min-width: 72rem !important; margin-left: auto; margin-right: auto; }

.min-730 { min-width: 73rem !important; margin-left: auto; margin-right: auto; }

.min-740 { min-width: 74rem !important; margin-left: auto; margin-right: auto; }

.min-750 { min-width: 75rem !important; margin-left: auto; margin-right: auto; }

.min-760 { min-width: 76rem !important; margin-left: auto; margin-right: auto; }

.min-770 { min-width: 77rem !important; margin-left: auto; margin-right: auto; }

.min-780 { min-width: 78rem !important; margin-left: auto; margin-right: auto; }

.min-790 { min-width: 79rem !important; margin-left: auto; margin-right: auto; }

.min-800 { min-width: 80rem !important; margin-left: auto; margin-right: auto; }

.min-810 { min-width: 81rem !important; margin-left: auto; margin-right: auto; }

.min-820 { min-width: 82rem !important; margin-left: auto; margin-right: auto; }

.min-830 { min-width: 83rem !important; margin-left: auto; margin-right: auto; }

.min-840 { min-width: 84rem !important; margin-left: auto; margin-right: auto; }

.min-850 { min-width: 85rem !important; margin-left: auto; margin-right: auto; }

.min-860 { min-width: 86rem !important; margin-left: auto; margin-right: auto; }

.min-870 { min-width: 87rem !important; margin-left: auto; margin-right: auto; }

.min-880 { min-width: 88rem !important; margin-left: auto; margin-right: auto; }

.min-890 { min-width: 89rem !important; margin-left: auto; margin-right: auto; }

.min-900 { min-width: 90rem !important; margin-left: auto; margin-right: auto; }

.min-910 { min-width: 91rem !important; margin-left: auto; margin-right: auto; }

.min-920 { min-width: 92rem !important; margin-left: auto; margin-right: auto; }

.min-930 { min-width: 93rem !important; margin-left: auto; margin-right: auto; }

.min-940 { min-width: 94rem !important; margin-left: auto; margin-right: auto; }

.min-950 { min-width: 95rem !important; margin-left: auto; margin-right: auto; }

.min-960 { min-width: 96rem !important; margin-left: auto; margin-right: auto; }

.min-970 { min-width: 97rem !important; margin-left: auto; margin-right: auto; }

.min-980 { min-width: 98rem !important; margin-left: auto; margin-right: auto; }

.min-990 { min-width: 99rem !important; margin-left: auto; margin-right: auto; }

.min-1000 { min-width: 100rem !important; margin-left: auto; margin-right: auto; }

.min-1010 { min-width: 101rem !important; margin-left: auto; margin-right: auto; }

.min-1020 { min-width: 102rem !important; margin-left: auto; margin-right: auto; }

.min-1030 { min-width: 103rem !important; margin-left: auto; margin-right: auto; }

.min-1040 { min-width: 104rem !important; margin-left: auto; margin-right: auto; }

.min-1050 { min-width: 105rem !important; margin-left: auto; margin-right: auto; }

.min-1060 { min-width: 106rem !important; margin-left: auto; margin-right: auto; }

.min-1070 { min-width: 107rem !important; margin-left: auto; margin-right: auto; }

.min-1080 { min-width: 108rem !important; margin-left: auto; margin-right: auto; }

.min-1090 { min-width: 109rem !important; margin-left: auto; margin-right: auto; }

.min-1100 { min-width: 110rem !important; margin-left: auto; margin-right: auto; }

.min-1110 { min-width: 111rem !important; margin-left: auto; margin-right: auto; }

.min-1120 { min-width: 112rem !important; margin-left: auto; margin-right: auto; }

.min-1130 { min-width: 113rem !important; margin-left: auto; margin-right: auto; }

.min-1140 { min-width: 114rem !important; margin-left: auto; margin-right: auto; }

.min-1150 { min-width: 115rem !important; margin-left: auto; margin-right: auto; }

.min-1160 { min-width: 116rem !important; margin-left: auto; margin-right: auto; }

.min-1170 { min-width: 117rem !important; margin-left: auto; margin-right: auto; }

.min-1180 { min-width: 118rem !important; margin-left: auto; margin-right: auto; }

.min-1190 { min-width: 119rem !important; margin-left: auto; margin-right: auto; }

.min-1200 { min-width: 120rem !important; margin-left: auto; margin-right: auto; }

.min-1210 { min-width: 121rem !important; margin-left: auto; margin-right: auto; }

.min-1220 { min-width: 122rem !important; margin-left: auto; margin-right: auto; }

.min-1230 { min-width: 123rem !important; margin-left: auto; margin-right: auto; }

.min-1240 { min-width: 124rem !important; margin-left: auto; margin-right: auto; }

.min-1250 { min-width: 125rem !important; margin-left: auto; margin-right: auto; }

.min-1260 { min-width: 126rem !important; margin-left: auto; margin-right: auto; }

.min-1270 { min-width: 127rem !important; margin-left: auto; margin-right: auto; }

.min-1280 { min-width: 128rem !important; margin-left: auto; margin-right: auto; }

.min-1290 { min-width: 129rem !important; margin-left: auto; margin-right: auto; }

.min-1300 { min-width: 130rem !important; margin-left: auto; margin-right: auto; }

.min-1310 { min-width: 131rem !important; margin-left: auto; margin-right: auto; }

.min-1320 { min-width: 132rem !important; margin-left: auto; margin-right: auto; }

.min-1330 { min-width: 133rem !important; margin-left: auto; margin-right: auto; }

.min-1340 { min-width: 134rem !important; margin-left: auto; margin-right: auto; }

.min-1350 { min-width: 135rem !important; margin-left: auto; margin-right: auto; }

.min-1360 { min-width: 136rem !important; margin-left: auto; margin-right: auto; }

.min-1370 { min-width: 137rem !important; margin-left: auto; margin-right: auto; }

.min-1380 { min-width: 138rem !important; margin-left: auto; margin-right: auto; }

.min-1390 { min-width: 139rem !important; margin-left: auto; margin-right: auto; }

.min-1400 { min-width: 140rem !important; margin-left: auto; margin-right: auto; }

.min-1410 { min-width: 141rem !important; margin-left: auto; margin-right: auto; }

.min-1420 { min-width: 142rem !important; margin-left: auto; margin-right: auto; }

.min-1430 { min-width: 143rem !important; margin-left: auto; margin-right: auto; }

.min-1440 { min-width: 144rem !important; margin-left: auto; margin-right: auto; }

.min-1450 { min-width: 145rem !important; margin-left: auto; margin-right: auto; }

.min-1460 { min-width: 146rem !important; margin-left: auto; margin-right: auto; }

.min-1470 { min-width: 147rem !important; margin-left: auto; margin-right: auto; }

.min-1480 { min-width: 148rem !important; margin-left: auto; margin-right: auto; }

.min-1490 { min-width: 149rem !important; margin-left: auto; margin-right: auto; }

.min-1500 { min-width: 150rem !important; margin-left: auto; margin-right: auto; }

@media (min-width: 991px) { .min-lg-10 { min-width: 1rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-20 { min-width: 2rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-30 { min-width: 3rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-40 { min-width: 4rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-50 { min-width: 5rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-60 { min-width: 6rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-70 { min-width: 7rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-80 { min-width: 8rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-90 { min-width: 9rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-100 { min-width: 10rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-110 { min-width: 11rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-120 { min-width: 12rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-130 { min-width: 13rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-140 { min-width: 14rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-150 { min-width: 15rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-160 { min-width: 16rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-170 { min-width: 17rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-180 { min-width: 18rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-190 { min-width: 19rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-200 { min-width: 20rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-210 { min-width: 21rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-220 { min-width: 22rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-230 { min-width: 23rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-240 { min-width: 24rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-250 { min-width: 25rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-260 { min-width: 26rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-270 { min-width: 27rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-280 { min-width: 28rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-290 { min-width: 29rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-300 { min-width: 30rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-310 { min-width: 31rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-320 { min-width: 32rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-330 { min-width: 33rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-340 { min-width: 34rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-350 { min-width: 35rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-360 { min-width: 36rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-370 { min-width: 37rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-380 { min-width: 38rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-390 { min-width: 39rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-400 { min-width: 40rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-410 { min-width: 41rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-420 { min-width: 42rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-430 { min-width: 43rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-440 { min-width: 44rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-450 { min-width: 45rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-460 { min-width: 46rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-470 { min-width: 47rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-480 { min-width: 48rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-490 { min-width: 49rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-500 { min-width: 50rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-510 { min-width: 51rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-520 { min-width: 52rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-530 { min-width: 53rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-540 { min-width: 54rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-550 { min-width: 55rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-560 { min-width: 56rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-570 { min-width: 57rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-580 { min-width: 58rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-590 { min-width: 59rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-600 { min-width: 60rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-610 { min-width: 61rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-620 { min-width: 62rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-630 { min-width: 63rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-640 { min-width: 64rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-650 { min-width: 65rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-660 { min-width: 66rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-670 { min-width: 67rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-680 { min-width: 68rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-690 { min-width: 69rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-700 { min-width: 70rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-710 { min-width: 71rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-720 { min-width: 72rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-730 { min-width: 73rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-740 { min-width: 74rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-750 { min-width: 75rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-760 { min-width: 76rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-770 { min-width: 77rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-780 { min-width: 78rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-790 { min-width: 79rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-800 { min-width: 80rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-810 { min-width: 81rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-820 { min-width: 82rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-830 { min-width: 83rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-840 { min-width: 84rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-850 { min-width: 85rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-860 { min-width: 86rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-870 { min-width: 87rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-880 { min-width: 88rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-890 { min-width: 89rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-900 { min-width: 90rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-910 { min-width: 91rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-920 { min-width: 92rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-930 { min-width: 93rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-940 { min-width: 94rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-950 { min-width: 95rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-960 { min-width: 96rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-970 { min-width: 97rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-980 { min-width: 98rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-990 { min-width: 99rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1000 { min-width: 100rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1010 { min-width: 101rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1020 { min-width: 102rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1030 { min-width: 103rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1040 { min-width: 104rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1050 { min-width: 105rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1060 { min-width: 106rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1070 { min-width: 107rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1080 { min-width: 108rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1090 { min-width: 109rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1100 { min-width: 110rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1110 { min-width: 111rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1120 { min-width: 112rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1130 { min-width: 113rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1140 { min-width: 114rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1150 { min-width: 115rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1160 { min-width: 116rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1170 { min-width: 117rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1180 { min-width: 118rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1190 { min-width: 119rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1200 { min-width: 120rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1210 { min-width: 121rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1220 { min-width: 122rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1230 { min-width: 123rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1240 { min-width: 124rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1250 { min-width: 125rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1260 { min-width: 126rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1270 { min-width: 127rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1280 { min-width: 128rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1290 { min-width: 129rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1300 { min-width: 130rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1310 { min-width: 131rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1320 { min-width: 132rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1330 { min-width: 133rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1340 { min-width: 134rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1350 { min-width: 135rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1360 { min-width: 136rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1370 { min-width: 137rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1380 { min-width: 138rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1390 { min-width: 139rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1400 { min-width: 140rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1410 { min-width: 141rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1420 { min-width: 142rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1430 { min-width: 143rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1440 { min-width: 144rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1450 { min-width: 145rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1460 { min-width: 146rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1470 { min-width: 147rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1480 { min-width: 148rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1490 { min-width: 149rem !important; margin-left: auto; margin-right: auto; }
  .min-lg-1500 { min-width: 150rem !important; margin-left: auto; margin-right: auto; } }

/* 幅 / 高さの設定 */
.width-5 { width: 0.5rem !important; }

.width-10 { width: 1rem !important; }

.width-15 { width: 1.5rem !important; }

.width-20 { width: 2rem !important; }

.width-25 { width: 2.5rem !important; }

.width-30 { width: 3rem !important; }

.width-35 { width: 3.5rem !important; }

.width-40 { width: 4rem !important; }

.width-45 { width: 4.5rem !important; }

.width-50 { width: 5rem !important; }

.width-55 { width: 5.5rem !important; }

.width-60 { width: 6rem !important; }

.width-65 { width: 6.5rem !important; }

.width-70 { width: 7rem !important; }

.width-75 { width: 7.5rem !important; }

.width-80 { width: 8rem !important; }

.width-85 { width: 8.5rem !important; }

.width-90 { width: 9rem !important; }

.width-95 { width: 9.5rem !important; }

.width-100 { width: 10rem !important; }

.width-105 { width: 10.5rem !important; }

.width-110 { width: 11rem !important; }

.width-115 { width: 11.5rem !important; }

.width-120 { width: 12rem !important; }

.width-125 { width: 12.5rem !important; }

.width-130 { width: 13rem !important; }

.width-135 { width: 13.5rem !important; }

.width-140 { width: 14rem !important; }

.width-145 { width: 14.5rem !important; }

.width-150 { width: 15rem !important; }

.width-155 { width: 15.5rem !important; }

.width-160 { width: 16rem !important; }

.width-165 { width: 16.5rem !important; }

.width-170 { width: 17rem !important; }

.width-175 { width: 17.5rem !important; }

.width-180 { width: 18rem !important; }

.width-185 { width: 18.5rem !important; }

.width-190 { width: 19rem !important; }

.width-195 { width: 19.5rem !important; }

.width-200 { width: 20rem !important; }

.width-205 { width: 20.5rem !important; }

.width-210 { width: 21rem !important; }

.width-215 { width: 21.5rem !important; }

.width-220 { width: 22rem !important; }

.width-225 { width: 22.5rem !important; }

.width-230 { width: 23rem !important; }

.width-235 { width: 23.5rem !important; }

.width-240 { width: 24rem !important; }

.width-245 { width: 24.5rem !important; }

.width-250 { width: 25rem !important; }

.width-255 { width: 25.5rem !important; }

.width-260 { width: 26rem !important; }

.width-265 { width: 26.5rem !important; }

.width-270 { width: 27rem !important; }

.width-275 { width: 27.5rem !important; }

.width-280 { width: 28rem !important; }

.width-285 { width: 28.5rem !important; }

.width-290 { width: 29rem !important; }

.width-295 { width: 29.5rem !important; }

.width-300 { width: 30rem !important; }

.width-305 { width: 30.5rem !important; }

.width-310 { width: 31rem !important; }

.width-315 { width: 31.5rem !important; }

.width-320 { width: 32rem !important; }

.width-325 { width: 32.5rem !important; }

.width-330 { width: 33rem !important; }

.width-335 { width: 33.5rem !important; }

.width-340 { width: 34rem !important; }

.width-345 { width: 34.5rem !important; }

.width-350 { width: 35rem !important; }

.width-355 { width: 35.5rem !important; }

.width-360 { width: 36rem !important; }

.width-365 { width: 36.5rem !important; }

.width-370 { width: 37rem !important; }

.width-375 { width: 37.5rem !important; }

.width-380 { width: 38rem !important; }

.width-385 { width: 38.5rem !important; }

.width-390 { width: 39rem !important; }

.width-395 { width: 39.5rem !important; }

.width-400 { width: 40rem !important; }

.width-405 { width: 40.5rem !important; }

.width-410 { width: 41rem !important; }

.width-415 { width: 41.5rem !important; }

.width-420 { width: 42rem !important; }

.width-425 { width: 42.5rem !important; }

.width-430 { width: 43rem !important; }

.width-435 { width: 43.5rem !important; }

.width-440 { width: 44rem !important; }

.width-445 { width: 44.5rem !important; }

.width-450 { width: 45rem !important; }

.width-455 { width: 45.5rem !important; }

.width-460 { width: 46rem !important; }

.width-465 { width: 46.5rem !important; }

.width-470 { width: 47rem !important; }

.width-475 { width: 47.5rem !important; }

.width-480 { width: 48rem !important; }

.width-485 { width: 48.5rem !important; }

.width-490 { width: 49rem !important; }

.width-495 { width: 49.5rem !important; }

.width-500 { width: 50rem !important; }

.width-505 { width: 50.5rem !important; }

.width-510 { width: 51rem !important; }

.width-515 { width: 51.5rem !important; }

.width-520 { width: 52rem !important; }

.width-525 { width: 52.5rem !important; }

.width-530 { width: 53rem !important; }

.width-535 { width: 53.5rem !important; }

.width-540 { width: 54rem !important; }

.width-545 { width: 54.5rem !important; }

.width-550 { width: 55rem !important; }

.width-555 { width: 55.5rem !important; }

.width-560 { width: 56rem !important; }

.width-565 { width: 56.5rem !important; }

.width-570 { width: 57rem !important; }

.width-575 { width: 57.5rem !important; }

.width-580 { width: 58rem !important; }

.width-585 { width: 58.5rem !important; }

.width-590 { width: 59rem !important; }

.width-595 { width: 59.5rem !important; }

.width-600 { width: 60rem !important; }

.width-605 { width: 60.5rem !important; }

.width-610 { width: 61rem !important; }

.width-615 { width: 61.5rem !important; }

.width-620 { width: 62rem !important; }

.width-625 { width: 62.5rem !important; }

.width-630 { width: 63rem !important; }

.width-635 { width: 63.5rem !important; }

.width-640 { width: 64rem !important; }

.width-645 { width: 64.5rem !important; }

.width-650 { width: 65rem !important; }

.width-655 { width: 65.5rem !important; }

.width-660 { width: 66rem !important; }

.width-665 { width: 66.5rem !important; }

.width-670 { width: 67rem !important; }

.width-675 { width: 67.5rem !important; }

.width-680 { width: 68rem !important; }

.width-685 { width: 68.5rem !important; }

.width-690 { width: 69rem !important; }

.width-695 { width: 69.5rem !important; }

.width-700 { width: 70rem !important; }

.width-705 { width: 70.5rem !important; }

.width-710 { width: 71rem !important; }

.width-715 { width: 71.5rem !important; }

.width-720 { width: 72rem !important; }

.width-725 { width: 72.5rem !important; }

.width-730 { width: 73rem !important; }

.width-735 { width: 73.5rem !important; }

.width-740 { width: 74rem !important; }

.width-745 { width: 74.5rem !important; }

.width-750 { width: 75rem !important; }

.width-755 { width: 75.5rem !important; }

.width-760 { width: 76rem !important; }

.width-765 { width: 76.5rem !important; }

.width-770 { width: 77rem !important; }

.width-775 { width: 77.5rem !important; }

.width-780 { width: 78rem !important; }

.width-785 { width: 78.5rem !important; }

.width-790 { width: 79rem !important; }

.width-795 { width: 79.5rem !important; }

.width-800 { width: 80rem !important; }

.width-805 { width: 80.5rem !important; }

.width-810 { width: 81rem !important; }

.width-815 { width: 81.5rem !important; }

.width-820 { width: 82rem !important; }

.width-825 { width: 82.5rem !important; }

.width-830 { width: 83rem !important; }

.width-835 { width: 83.5rem !important; }

.width-840 { width: 84rem !important; }

.width-845 { width: 84.5rem !important; }

.width-850 { width: 85rem !important; }

.width-855 { width: 85.5rem !important; }

.width-860 { width: 86rem !important; }

.width-865 { width: 86.5rem !important; }

.width-870 { width: 87rem !important; }

.width-875 { width: 87.5rem !important; }

.width-880 { width: 88rem !important; }

.width-885 { width: 88.5rem !important; }

.width-890 { width: 89rem !important; }

.width-895 { width: 89.5rem !important; }

.width-900 { width: 90rem !important; }

.width-905 { width: 90.5rem !important; }

.width-910 { width: 91rem !important; }

.width-915 { width: 91.5rem !important; }

.width-920 { width: 92rem !important; }

.width-925 { width: 92.5rem !important; }

.width-930 { width: 93rem !important; }

.width-935 { width: 93.5rem !important; }

.width-940 { width: 94rem !important; }

.width-945 { width: 94.5rem !important; }

.width-950 { width: 95rem !important; }

.width-955 { width: 95.5rem !important; }

.width-960 { width: 96rem !important; }

.width-965 { width: 96.5rem !important; }

.width-970 { width: 97rem !important; }

.width-975 { width: 97.5rem !important; }

.width-980 { width: 98rem !important; }

.width-985 { width: 98.5rem !important; }

.width-990 { width: 99rem !important; }

.width-995 { width: 99.5rem !important; }

.width-1000 { width: 100rem !important; }

.width-1005 { width: 100.5rem !important; }

.width-1010 { width: 101rem !important; }

.width-1015 { width: 101.5rem !important; }

.width-1020 { width: 102rem !important; }

.width-1025 { width: 102.5rem !important; }

.width-1030 { width: 103rem !important; }

.width-1035 { width: 103.5rem !important; }

.width-1040 { width: 104rem !important; }

.width-1045 { width: 104.5rem !important; }

.width-1050 { width: 105rem !important; }

.width-1055 { width: 105.5rem !important; }

.width-1060 { width: 106rem !important; }

.width-1065 { width: 106.5rem !important; }

.width-1070 { width: 107rem !important; }

.width-1075 { width: 107.5rem !important; }

.width-1080 { width: 108rem !important; }

.width-1085 { width: 108.5rem !important; }

.width-1090 { width: 109rem !important; }

.width-1095 { width: 109.5rem !important; }

.width-1100 { width: 110rem !important; }

.width-1105 { width: 110.5rem !important; }

.width-1110 { width: 111rem !important; }

.width-1115 { width: 111.5rem !important; }

.width-1120 { width: 112rem !important; }

.width-1125 { width: 112.5rem !important; }

.width-1130 { width: 113rem !important; }

.width-1135 { width: 113.5rem !important; }

.width-1140 { width: 114rem !important; }

.width-1145 { width: 114.5rem !important; }

.width-1150 { width: 115rem !important; }

.width-1155 { width: 115.5rem !important; }

.width-1160 { width: 116rem !important; }

.width-1165 { width: 116.5rem !important; }

.width-1170 { width: 117rem !important; }

.width-1175 { width: 117.5rem !important; }

.width-1180 { width: 118rem !important; }

.width-1185 { width: 118.5rem !important; }

.width-1190 { width: 119rem !important; }

.width-1195 { width: 119.5rem !important; }

.width-1200 { width: 120rem !important; }

.width-1205 { width: 120.5rem !important; }

.width-1210 { width: 121rem !important; }

.width-1215 { width: 121.5rem !important; }

.width-1220 { width: 122rem !important; }

.width-1225 { width: 122.5rem !important; }

.width-1230 { width: 123rem !important; }

.width-1235 { width: 123.5rem !important; }

.width-1240 { width: 124rem !important; }

.width-1245 { width: 124.5rem !important; }

.width-1250 { width: 125rem !important; }

.width-1255 { width: 125.5rem !important; }

.width-1260 { width: 126rem !important; }

.width-1265 { width: 126.5rem !important; }

.width-1270 { width: 127rem !important; }

.width-1275 { width: 127.5rem !important; }

.width-1280 { width: 128rem !important; }

.width-1285 { width: 128.5rem !important; }

.width-1290 { width: 129rem !important; }

.width-1295 { width: 129.5rem !important; }

.width-1300 { width: 130rem !important; }

.width-1305 { width: 130.5rem !important; }

.width-1310 { width: 131rem !important; }

.width-1315 { width: 131.5rem !important; }

.width-1320 { width: 132rem !important; }

.width-1325 { width: 132.5rem !important; }

.width-1330 { width: 133rem !important; }

.width-1335 { width: 133.5rem !important; }

.width-1340 { width: 134rem !important; }

.width-1345 { width: 134.5rem !important; }

.width-1350 { width: 135rem !important; }

.width-1355 { width: 135.5rem !important; }

.width-1360 { width: 136rem !important; }

.width-1365 { width: 136.5rem !important; }

.width-1370 { width: 137rem !important; }

.width-1375 { width: 137.5rem !important; }

.width-1380 { width: 138rem !important; }

.width-1385 { width: 138.5rem !important; }

.width-1390 { width: 139rem !important; }

.width-1395 { width: 139.5rem !important; }

.width-1400 { width: 140rem !important; }

.width-1405 { width: 140.5rem !important; }

.width-1410 { width: 141rem !important; }

.width-1415 { width: 141.5rem !important; }

.width-1420 { width: 142rem !important; }

.width-1425 { width: 142.5rem !important; }

.width-1430 { width: 143rem !important; }

.width-1435 { width: 143.5rem !important; }

.width-1440 { width: 144rem !important; }

.width-1445 { width: 144.5rem !important; }

.width-1450 { width: 145rem !important; }

.width-1455 { width: 145.5rem !important; }

.width-1460 { width: 146rem !important; }

.width-1465 { width: 146.5rem !important; }

.width-1470 { width: 147rem !important; }

.width-1475 { width: 147.5rem !important; }

.width-1480 { width: 148rem !important; }

.width-1485 { width: 148.5rem !important; }

.width-1490 { width: 149rem !important; }

.width-1495 { width: 149.5rem !important; }

.width-1500 { width: 150rem !important; }

.width-per-5 { width: 5% !important; }

.width-per-10 { width: 10% !important; }

.width-per-15 { width: 15% !important; }

.width-per-20 { width: 20% !important; }

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

.width-per-30 { width: 30% !important; }

.width-per-35 { width: 35% !important; }

.width-per-40 { width: 40% !important; }

.width-per-45 { width: 45% !important; }

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

.width-per-55 { width: 55% !important; }

.width-per-60 { width: 60% !important; }

.width-per-65 { width: 65% !important; }

.width-per-70 { width: 70% !important; }

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

.width-per-80 { width: 80% !important; }

.width-per-85 { width: 85% !important; }

.width-per-90 { width: 90% !important; }

.width-per-95 { width: 95% !important; }

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

@media (min-width: 991px) { .width-lg-5 { width: 0.5rem !important; }
  .width-lg-10 { width: 1rem !important; }
  .width-lg-15 { width: 1.5rem !important; }
  .width-lg-20 { width: 2rem !important; }
  .width-lg-25 { width: 2.5rem !important; }
  .width-lg-30 { width: 3rem !important; }
  .width-lg-35 { width: 3.5rem !important; }
  .width-lg-40 { width: 4rem !important; }
  .width-lg-45 { width: 4.5rem !important; }
  .width-lg-50 { width: 5rem !important; }
  .width-lg-55 { width: 5.5rem !important; }
  .width-lg-60 { width: 6rem !important; }
  .width-lg-65 { width: 6.5rem !important; }
  .width-lg-70 { width: 7rem !important; }
  .width-lg-75 { width: 7.5rem !important; }
  .width-lg-80 { width: 8rem !important; }
  .width-lg-85 { width: 8.5rem !important; }
  .width-lg-90 { width: 9rem !important; }
  .width-lg-95 { width: 9.5rem !important; }
  .width-lg-100 { width: 10rem !important; }
  .width-lg-105 { width: 10.5rem !important; }
  .width-lg-110 { width: 11rem !important; }
  .width-lg-115 { width: 11.5rem !important; }
  .width-lg-120 { width: 12rem !important; }
  .width-lg-125 { width: 12.5rem !important; }
  .width-lg-130 { width: 13rem !important; }
  .width-lg-135 { width: 13.5rem !important; }
  .width-lg-140 { width: 14rem !important; }
  .width-lg-145 { width: 14.5rem !important; }
  .width-lg-150 { width: 15rem !important; }
  .width-lg-155 { width: 15.5rem !important; }
  .width-lg-160 { width: 16rem !important; }
  .width-lg-165 { width: 16.5rem !important; }
  .width-lg-170 { width: 17rem !important; }
  .width-lg-175 { width: 17.5rem !important; }
  .width-lg-180 { width: 18rem !important; }
  .width-lg-185 { width: 18.5rem !important; }
  .width-lg-190 { width: 19rem !important; }
  .width-lg-195 { width: 19.5rem !important; }
  .width-lg-200 { width: 20rem !important; }
  .width-lg-205 { width: 20.5rem !important; }
  .width-lg-210 { width: 21rem !important; }
  .width-lg-215 { width: 21.5rem !important; }
  .width-lg-220 { width: 22rem !important; }
  .width-lg-225 { width: 22.5rem !important; }
  .width-lg-230 { width: 23rem !important; }
  .width-lg-235 { width: 23.5rem !important; }
  .width-lg-240 { width: 24rem !important; }
  .width-lg-245 { width: 24.5rem !important; }
  .width-lg-250 { width: 25rem !important; }
  .width-lg-255 { width: 25.5rem !important; }
  .width-lg-260 { width: 26rem !important; }
  .width-lg-265 { width: 26.5rem !important; }
  .width-lg-270 { width: 27rem !important; }
  .width-lg-275 { width: 27.5rem !important; }
  .width-lg-280 { width: 28rem !important; }
  .width-lg-285 { width: 28.5rem !important; }
  .width-lg-290 { width: 29rem !important; }
  .width-lg-295 { width: 29.5rem !important; }
  .width-lg-300 { width: 30rem !important; }
  .width-lg-305 { width: 30.5rem !important; }
  .width-lg-310 { width: 31rem !important; }
  .width-lg-315 { width: 31.5rem !important; }
  .width-lg-320 { width: 32rem !important; }
  .width-lg-325 { width: 32.5rem !important; }
  .width-lg-330 { width: 33rem !important; }
  .width-lg-335 { width: 33.5rem !important; }
  .width-lg-340 { width: 34rem !important; }
  .width-lg-345 { width: 34.5rem !important; }
  .width-lg-350 { width: 35rem !important; }
  .width-lg-355 { width: 35.5rem !important; }
  .width-lg-360 { width: 36rem !important; }
  .width-lg-365 { width: 36.5rem !important; }
  .width-lg-370 { width: 37rem !important; }
  .width-lg-375 { width: 37.5rem !important; }
  .width-lg-380 { width: 38rem !important; }
  .width-lg-385 { width: 38.5rem !important; }
  .width-lg-390 { width: 39rem !important; }
  .width-lg-395 { width: 39.5rem !important; }
  .width-lg-400 { width: 40rem !important; }
  .width-lg-405 { width: 40.5rem !important; }
  .width-lg-410 { width: 41rem !important; }
  .width-lg-415 { width: 41.5rem !important; }
  .width-lg-420 { width: 42rem !important; }
  .width-lg-425 { width: 42.5rem !important; }
  .width-lg-430 { width: 43rem !important; }
  .width-lg-435 { width: 43.5rem !important; }
  .width-lg-440 { width: 44rem !important; }
  .width-lg-445 { width: 44.5rem !important; }
  .width-lg-450 { width: 45rem !important; }
  .width-lg-455 { width: 45.5rem !important; }
  .width-lg-460 { width: 46rem !important; }
  .width-lg-465 { width: 46.5rem !important; }
  .width-lg-470 { width: 47rem !important; }
  .width-lg-475 { width: 47.5rem !important; }
  .width-lg-480 { width: 48rem !important; }
  .width-lg-485 { width: 48.5rem !important; }
  .width-lg-490 { width: 49rem !important; }
  .width-lg-495 { width: 49.5rem !important; }
  .width-lg-500 { width: 50rem !important; }
  .width-lg-505 { width: 50.5rem !important; }
  .width-lg-510 { width: 51rem !important; }
  .width-lg-515 { width: 51.5rem !important; }
  .width-lg-520 { width: 52rem !important; }
  .width-lg-525 { width: 52.5rem !important; }
  .width-lg-530 { width: 53rem !important; }
  .width-lg-535 { width: 53.5rem !important; }
  .width-lg-540 { width: 54rem !important; }
  .width-lg-545 { width: 54.5rem !important; }
  .width-lg-550 { width: 55rem !important; }
  .width-lg-555 { width: 55.5rem !important; }
  .width-lg-560 { width: 56rem !important; }
  .width-lg-565 { width: 56.5rem !important; }
  .width-lg-570 { width: 57rem !important; }
  .width-lg-575 { width: 57.5rem !important; }
  .width-lg-580 { width: 58rem !important; }
  .width-lg-585 { width: 58.5rem !important; }
  .width-lg-590 { width: 59rem !important; }
  .width-lg-595 { width: 59.5rem !important; }
  .width-lg-600 { width: 60rem !important; }
  .width-lg-605 { width: 60.5rem !important; }
  .width-lg-610 { width: 61rem !important; }
  .width-lg-615 { width: 61.5rem !important; }
  .width-lg-620 { width: 62rem !important; }
  .width-lg-625 { width: 62.5rem !important; }
  .width-lg-630 { width: 63rem !important; }
  .width-lg-635 { width: 63.5rem !important; }
  .width-lg-640 { width: 64rem !important; }
  .width-lg-645 { width: 64.5rem !important; }
  .width-lg-650 { width: 65rem !important; }
  .width-lg-655 { width: 65.5rem !important; }
  .width-lg-660 { width: 66rem !important; }
  .width-lg-665 { width: 66.5rem !important; }
  .width-lg-670 { width: 67rem !important; }
  .width-lg-675 { width: 67.5rem !important; }
  .width-lg-680 { width: 68rem !important; }
  .width-lg-685 { width: 68.5rem !important; }
  .width-lg-690 { width: 69rem !important; }
  .width-lg-695 { width: 69.5rem !important; }
  .width-lg-700 { width: 70rem !important; }
  .width-lg-705 { width: 70.5rem !important; }
  .width-lg-710 { width: 71rem !important; }
  .width-lg-715 { width: 71.5rem !important; }
  .width-lg-720 { width: 72rem !important; }
  .width-lg-725 { width: 72.5rem !important; }
  .width-lg-730 { width: 73rem !important; }
  .width-lg-735 { width: 73.5rem !important; }
  .width-lg-740 { width: 74rem !important; }
  .width-lg-745 { width: 74.5rem !important; }
  .width-lg-750 { width: 75rem !important; }
  .width-lg-755 { width: 75.5rem !important; }
  .width-lg-760 { width: 76rem !important; }
  .width-lg-765 { width: 76.5rem !important; }
  .width-lg-770 { width: 77rem !important; }
  .width-lg-775 { width: 77.5rem !important; }
  .width-lg-780 { width: 78rem !important; }
  .width-lg-785 { width: 78.5rem !important; }
  .width-lg-790 { width: 79rem !important; }
  .width-lg-795 { width: 79.5rem !important; }
  .width-lg-800 { width: 80rem !important; }
  .width-lg-805 { width: 80.5rem !important; }
  .width-lg-810 { width: 81rem !important; }
  .width-lg-815 { width: 81.5rem !important; }
  .width-lg-820 { width: 82rem !important; }
  .width-lg-825 { width: 82.5rem !important; }
  .width-lg-830 { width: 83rem !important; }
  .width-lg-835 { width: 83.5rem !important; }
  .width-lg-840 { width: 84rem !important; }
  .width-lg-845 { width: 84.5rem !important; }
  .width-lg-850 { width: 85rem !important; }
  .width-lg-855 { width: 85.5rem !important; }
  .width-lg-860 { width: 86rem !important; }
  .width-lg-865 { width: 86.5rem !important; }
  .width-lg-870 { width: 87rem !important; }
  .width-lg-875 { width: 87.5rem !important; }
  .width-lg-880 { width: 88rem !important; }
  .width-lg-885 { width: 88.5rem !important; }
  .width-lg-890 { width: 89rem !important; }
  .width-lg-895 { width: 89.5rem !important; }
  .width-lg-900 { width: 90rem !important; }
  .width-lg-905 { width: 90.5rem !important; }
  .width-lg-910 { width: 91rem !important; }
  .width-lg-915 { width: 91.5rem !important; }
  .width-lg-920 { width: 92rem !important; }
  .width-lg-925 { width: 92.5rem !important; }
  .width-lg-930 { width: 93rem !important; }
  .width-lg-935 { width: 93.5rem !important; }
  .width-lg-940 { width: 94rem !important; }
  .width-lg-945 { width: 94.5rem !important; }
  .width-lg-950 { width: 95rem !important; }
  .width-lg-955 { width: 95.5rem !important; }
  .width-lg-960 { width: 96rem !important; }
  .width-lg-965 { width: 96.5rem !important; }
  .width-lg-970 { width: 97rem !important; }
  .width-lg-975 { width: 97.5rem !important; }
  .width-lg-980 { width: 98rem !important; }
  .width-lg-985 { width: 98.5rem !important; }
  .width-lg-990 { width: 99rem !important; }
  .width-lg-995 { width: 99.5rem !important; }
  .width-lg-1000 { width: 100rem !important; }
  .width-lg-1005 { width: 100.5rem !important; }
  .width-lg-1010 { width: 101rem !important; }
  .width-lg-1015 { width: 101.5rem !important; }
  .width-lg-1020 { width: 102rem !important; }
  .width-lg-1025 { width: 102.5rem !important; }
  .width-lg-1030 { width: 103rem !important; }
  .width-lg-1035 { width: 103.5rem !important; }
  .width-lg-1040 { width: 104rem !important; }
  .width-lg-1045 { width: 104.5rem !important; }
  .width-lg-1050 { width: 105rem !important; }
  .width-lg-1055 { width: 105.5rem !important; }
  .width-lg-1060 { width: 106rem !important; }
  .width-lg-1065 { width: 106.5rem !important; }
  .width-lg-1070 { width: 107rem !important; }
  .width-lg-1075 { width: 107.5rem !important; }
  .width-lg-1080 { width: 108rem !important; }
  .width-lg-1085 { width: 108.5rem !important; }
  .width-lg-1090 { width: 109rem !important; }
  .width-lg-1095 { width: 109.5rem !important; }
  .width-lg-1100 { width: 110rem !important; }
  .width-lg-1105 { width: 110.5rem !important; }
  .width-lg-1110 { width: 111rem !important; }
  .width-lg-1115 { width: 111.5rem !important; }
  .width-lg-1120 { width: 112rem !important; }
  .width-lg-1125 { width: 112.5rem !important; }
  .width-lg-1130 { width: 113rem !important; }
  .width-lg-1135 { width: 113.5rem !important; }
  .width-lg-1140 { width: 114rem !important; }
  .width-lg-1145 { width: 114.5rem !important; }
  .width-lg-1150 { width: 115rem !important; }
  .width-lg-1155 { width: 115.5rem !important; }
  .width-lg-1160 { width: 116rem !important; }
  .width-lg-1165 { width: 116.5rem !important; }
  .width-lg-1170 { width: 117rem !important; }
  .width-lg-1175 { width: 117.5rem !important; }
  .width-lg-1180 { width: 118rem !important; }
  .width-lg-1185 { width: 118.5rem !important; }
  .width-lg-1190 { width: 119rem !important; }
  .width-lg-1195 { width: 119.5rem !important; }
  .width-lg-1200 { width: 120rem !important; }
  .width-lg-1205 { width: 120.5rem !important; }
  .width-lg-1210 { width: 121rem !important; }
  .width-lg-1215 { width: 121.5rem !important; }
  .width-lg-1220 { width: 122rem !important; }
  .width-lg-1225 { width: 122.5rem !important; }
  .width-lg-1230 { width: 123rem !important; }
  .width-lg-1235 { width: 123.5rem !important; }
  .width-lg-1240 { width: 124rem !important; }
  .width-lg-1245 { width: 124.5rem !important; }
  .width-lg-1250 { width: 125rem !important; }
  .width-lg-1255 { width: 125.5rem !important; }
  .width-lg-1260 { width: 126rem !important; }
  .width-lg-1265 { width: 126.5rem !important; }
  .width-lg-1270 { width: 127rem !important; }
  .width-lg-1275 { width: 127.5rem !important; }
  .width-lg-1280 { width: 128rem !important; }
  .width-lg-1285 { width: 128.5rem !important; }
  .width-lg-1290 { width: 129rem !important; }
  .width-lg-1295 { width: 129.5rem !important; }
  .width-lg-1300 { width: 130rem !important; }
  .width-lg-1305 { width: 130.5rem !important; }
  .width-lg-1310 { width: 131rem !important; }
  .width-lg-1315 { width: 131.5rem !important; }
  .width-lg-1320 { width: 132rem !important; }
  .width-lg-1325 { width: 132.5rem !important; }
  .width-lg-1330 { width: 133rem !important; }
  .width-lg-1335 { width: 133.5rem !important; }
  .width-lg-1340 { width: 134rem !important; }
  .width-lg-1345 { width: 134.5rem !important; }
  .width-lg-1350 { width: 135rem !important; }
  .width-lg-1355 { width: 135.5rem !important; }
  .width-lg-1360 { width: 136rem !important; }
  .width-lg-1365 { width: 136.5rem !important; }
  .width-lg-1370 { width: 137rem !important; }
  .width-lg-1375 { width: 137.5rem !important; }
  .width-lg-1380 { width: 138rem !important; }
  .width-lg-1385 { width: 138.5rem !important; }
  .width-lg-1390 { width: 139rem !important; }
  .width-lg-1395 { width: 139.5rem !important; }
  .width-lg-1400 { width: 140rem !important; }
  .width-lg-1405 { width: 140.5rem !important; }
  .width-lg-1410 { width: 141rem !important; }
  .width-lg-1415 { width: 141.5rem !important; }
  .width-lg-1420 { width: 142rem !important; }
  .width-lg-1425 { width: 142.5rem !important; }
  .width-lg-1430 { width: 143rem !important; }
  .width-lg-1435 { width: 143.5rem !important; }
  .width-lg-1440 { width: 144rem !important; }
  .width-lg-1445 { width: 144.5rem !important; }
  .width-lg-1450 { width: 145rem !important; }
  .width-lg-1455 { width: 145.5rem !important; }
  .width-lg-1460 { width: 146rem !important; }
  .width-lg-1465 { width: 146.5rem !important; }
  .width-lg-1470 { width: 147rem !important; }
  .width-lg-1475 { width: 147.5rem !important; }
  .width-lg-1480 { width: 148rem !important; }
  .width-lg-1485 { width: 148.5rem !important; }
  .width-lg-1490 { width: 149rem !important; }
  .width-lg-1495 { width: 149.5rem !important; }
  .width-lg-1500 { width: 150rem !important; }
  .width-lg-per-5 { width: 5% !important; }
  .width-lg-per-10 { width: 10% !important; }
  .width-lg-per-15 { width: 15% !important; }
  .width-lg-per-20 { width: 20% !important; }
  .width-lg-per-25 { width: 25% !important; }
  .width-lg-per-30 { width: 30% !important; }
  .width-lg-per-35 { width: 35% !important; }
  .width-lg-per-40 { width: 40% !important; }
  .width-lg-per-45 { width: 45% !important; }
  .width-lg-per-50 { width: 50% !important; }
  .width-lg-per-55 { width: 55% !important; }
  .width-lg-per-60 { width: 60% !important; }
  .width-lg-per-65 { width: 65% !important; }
  .width-lg-per-70 { width: 70% !important; }
  .width-lg-per-75 { width: 75% !important; }
  .width-lg-per-80 { width: 80% !important; }
  .width-lg-per-85 { width: 85% !important; }
  .width-lg-per-90 { width: 90% !important; }
  .width-lg-per-95 { width: 95% !important; }
  .width-lg-per-100 { width: 100% !important; } }

.height-5 { height: 0.5rem !important; }

.height-10 { height: 1rem !important; }

.height-15 { height: 1.5rem !important; }

.height-20 { height: 2rem !important; }

.height-25 { height: 2.5rem !important; }

.height-30 { height: 3rem !important; }

.height-35 { height: 3.5rem !important; }

.height-40 { height: 4rem !important; }

.height-45 { height: 4.5rem !important; }

.height-50 { height: 5rem !important; }

.height-55 { height: 5.5rem !important; }

.height-60 { height: 6rem !important; }

.height-65 { height: 6.5rem !important; }

.height-70 { height: 7rem !important; }

.height-75 { height: 7.5rem !important; }

.height-80 { height: 8rem !important; }

.height-85 { height: 8.5rem !important; }

.height-90 { height: 9rem !important; }

.height-95 { height: 9.5rem !important; }

.height-100 { height: 10rem !important; }

.height-105 { height: 10.5rem !important; }

.height-110 { height: 11rem !important; }

.height-115 { height: 11.5rem !important; }

.height-120 { height: 12rem !important; }

.height-125 { height: 12.5rem !important; }

.height-130 { height: 13rem !important; }

.height-135 { height: 13.5rem !important; }

.height-140 { height: 14rem !important; }

.height-145 { height: 14.5rem !important; }

.height-150 { height: 15rem !important; }

.height-155 { height: 15.5rem !important; }

.height-160 { height: 16rem !important; }

.height-165 { height: 16.5rem !important; }

.height-170 { height: 17rem !important; }

.height-175 { height: 17.5rem !important; }

.height-180 { height: 18rem !important; }

.height-185 { height: 18.5rem !important; }

.height-190 { height: 19rem !important; }

.height-195 { height: 19.5rem !important; }

.height-200 { height: 20rem !important; }

.height-205 { height: 20.5rem !important; }

.height-210 { height: 21rem !important; }

.height-215 { height: 21.5rem !important; }

.height-220 { height: 22rem !important; }

.height-225 { height: 22.5rem !important; }

.height-230 { height: 23rem !important; }

.height-235 { height: 23.5rem !important; }

.height-240 { height: 24rem !important; }

.height-245 { height: 24.5rem !important; }

.height-250 { height: 25rem !important; }

.height-255 { height: 25.5rem !important; }

.height-260 { height: 26rem !important; }

.height-265 { height: 26.5rem !important; }

.height-270 { height: 27rem !important; }

.height-275 { height: 27.5rem !important; }

.height-280 { height: 28rem !important; }

.height-285 { height: 28.5rem !important; }

.height-290 { height: 29rem !important; }

.height-295 { height: 29.5rem !important; }

.height-300 { height: 30rem !important; }

.height-305 { height: 30.5rem !important; }

.height-310 { height: 31rem !important; }

.height-315 { height: 31.5rem !important; }

.height-320 { height: 32rem !important; }

.height-325 { height: 32.5rem !important; }

.height-330 { height: 33rem !important; }

.height-335 { height: 33.5rem !important; }

.height-340 { height: 34rem !important; }

.height-345 { height: 34.5rem !important; }

.height-350 { height: 35rem !important; }

.height-355 { height: 35.5rem !important; }

.height-360 { height: 36rem !important; }

.height-365 { height: 36.5rem !important; }

.height-370 { height: 37rem !important; }

.height-375 { height: 37.5rem !important; }

.height-380 { height: 38rem !important; }

.height-385 { height: 38.5rem !important; }

.height-390 { height: 39rem !important; }

.height-395 { height: 39.5rem !important; }

.height-400 { height: 40rem !important; }

.height-405 { height: 40.5rem !important; }

.height-410 { height: 41rem !important; }

.height-415 { height: 41.5rem !important; }

.height-420 { height: 42rem !important; }

.height-425 { height: 42.5rem !important; }

.height-430 { height: 43rem !important; }

.height-435 { height: 43.5rem !important; }

.height-440 { height: 44rem !important; }

.height-445 { height: 44.5rem !important; }

.height-450 { height: 45rem !important; }

.height-455 { height: 45.5rem !important; }

.height-460 { height: 46rem !important; }

.height-465 { height: 46.5rem !important; }

.height-470 { height: 47rem !important; }

.height-475 { height: 47.5rem !important; }

.height-480 { height: 48rem !important; }

.height-485 { height: 48.5rem !important; }

.height-490 { height: 49rem !important; }

.height-495 { height: 49.5rem !important; }

.height-500 { height: 50rem !important; }

.height-505 { height: 50.5rem !important; }

.height-510 { height: 51rem !important; }

.height-515 { height: 51.5rem !important; }

.height-520 { height: 52rem !important; }

.height-525 { height: 52.5rem !important; }

.height-530 { height: 53rem !important; }

.height-535 { height: 53.5rem !important; }

.height-540 { height: 54rem !important; }

.height-545 { height: 54.5rem !important; }

.height-550 { height: 55rem !important; }

.height-555 { height: 55.5rem !important; }

.height-560 { height: 56rem !important; }

.height-565 { height: 56.5rem !important; }

.height-570 { height: 57rem !important; }

.height-575 { height: 57.5rem !important; }

.height-580 { height: 58rem !important; }

.height-585 { height: 58.5rem !important; }

.height-590 { height: 59rem !important; }

.height-595 { height: 59.5rem !important; }

.height-600 { height: 60rem !important; }

.height-605 { height: 60.5rem !important; }

.height-610 { height: 61rem !important; }

.height-615 { height: 61.5rem !important; }

.height-620 { height: 62rem !important; }

.height-625 { height: 62.5rem !important; }

.height-630 { height: 63rem !important; }

.height-635 { height: 63.5rem !important; }

.height-640 { height: 64rem !important; }

.height-645 { height: 64.5rem !important; }

.height-650 { height: 65rem !important; }

.height-655 { height: 65.5rem !important; }

.height-660 { height: 66rem !important; }

.height-665 { height: 66.5rem !important; }

.height-670 { height: 67rem !important; }

.height-675 { height: 67.5rem !important; }

.height-680 { height: 68rem !important; }

.height-685 { height: 68.5rem !important; }

.height-690 { height: 69rem !important; }

.height-695 { height: 69.5rem !important; }

.height-700 { height: 70rem !important; }

.height-705 { height: 70.5rem !important; }

.height-710 { height: 71rem !important; }

.height-715 { height: 71.5rem !important; }

.height-720 { height: 72rem !important; }

.height-725 { height: 72.5rem !important; }

.height-730 { height: 73rem !important; }

.height-735 { height: 73.5rem !important; }

.height-740 { height: 74rem !important; }

.height-745 { height: 74.5rem !important; }

.height-750 { height: 75rem !important; }

.height-755 { height: 75.5rem !important; }

.height-760 { height: 76rem !important; }

.height-765 { height: 76.5rem !important; }

.height-770 { height: 77rem !important; }

.height-775 { height: 77.5rem !important; }

.height-780 { height: 78rem !important; }

.height-785 { height: 78.5rem !important; }

.height-790 { height: 79rem !important; }

.height-795 { height: 79.5rem !important; }

.height-800 { height: 80rem !important; }

.height-805 { height: 80.5rem !important; }

.height-810 { height: 81rem !important; }

.height-815 { height: 81.5rem !important; }

.height-820 { height: 82rem !important; }

.height-825 { height: 82.5rem !important; }

.height-830 { height: 83rem !important; }

.height-835 { height: 83.5rem !important; }

.height-840 { height: 84rem !important; }

.height-845 { height: 84.5rem !important; }

.height-850 { height: 85rem !important; }

.height-855 { height: 85.5rem !important; }

.height-860 { height: 86rem !important; }

.height-865 { height: 86.5rem !important; }

.height-870 { height: 87rem !important; }

.height-875 { height: 87.5rem !important; }

.height-880 { height: 88rem !important; }

.height-885 { height: 88.5rem !important; }

.height-890 { height: 89rem !important; }

.height-895 { height: 89.5rem !important; }

.height-900 { height: 90rem !important; }

.height-905 { height: 90.5rem !important; }

.height-910 { height: 91rem !important; }

.height-915 { height: 91.5rem !important; }

.height-920 { height: 92rem !important; }

.height-925 { height: 92.5rem !important; }

.height-930 { height: 93rem !important; }

.height-935 { height: 93.5rem !important; }

.height-940 { height: 94rem !important; }

.height-945 { height: 94.5rem !important; }

.height-950 { height: 95rem !important; }

.height-955 { height: 95.5rem !important; }

.height-960 { height: 96rem !important; }

.height-965 { height: 96.5rem !important; }

.height-970 { height: 97rem !important; }

.height-975 { height: 97.5rem !important; }

.height-980 { height: 98rem !important; }

.height-985 { height: 98.5rem !important; }

.height-990 { height: 99rem !important; }

.height-995 { height: 99.5rem !important; }

.height-1000 { height: 100rem !important; }

.height-1005 { height: 100.5rem !important; }

.height-1010 { height: 101rem !important; }

.height-1015 { height: 101.5rem !important; }

.height-1020 { height: 102rem !important; }

.height-1025 { height: 102.5rem !important; }

.height-1030 { height: 103rem !important; }

.height-1035 { height: 103.5rem !important; }

.height-1040 { height: 104rem !important; }

.height-1045 { height: 104.5rem !important; }

.height-1050 { height: 105rem !important; }

.height-1055 { height: 105.5rem !important; }

.height-1060 { height: 106rem !important; }

.height-1065 { height: 106.5rem !important; }

.height-1070 { height: 107rem !important; }

.height-1075 { height: 107.5rem !important; }

.height-1080 { height: 108rem !important; }

.height-1085 { height: 108.5rem !important; }

.height-1090 { height: 109rem !important; }

.height-1095 { height: 109.5rem !important; }

.height-1100 { height: 110rem !important; }

.height-1105 { height: 110.5rem !important; }

.height-1110 { height: 111rem !important; }

.height-1115 { height: 111.5rem !important; }

.height-1120 { height: 112rem !important; }

.height-1125 { height: 112.5rem !important; }

.height-1130 { height: 113rem !important; }

.height-1135 { height: 113.5rem !important; }

.height-1140 { height: 114rem !important; }

.height-1145 { height: 114.5rem !important; }

.height-1150 { height: 115rem !important; }

.height-1155 { height: 115.5rem !important; }

.height-1160 { height: 116rem !important; }

.height-1165 { height: 116.5rem !important; }

.height-1170 { height: 117rem !important; }

.height-1175 { height: 117.5rem !important; }

.height-1180 { height: 118rem !important; }

.height-1185 { height: 118.5rem !important; }

.height-1190 { height: 119rem !important; }

.height-1195 { height: 119.5rem !important; }

.height-1200 { height: 120rem !important; }

.height-1205 { height: 120.5rem !important; }

.height-1210 { height: 121rem !important; }

.height-1215 { height: 121.5rem !important; }

.height-1220 { height: 122rem !important; }

.height-1225 { height: 122.5rem !important; }

.height-1230 { height: 123rem !important; }

.height-1235 { height: 123.5rem !important; }

.height-1240 { height: 124rem !important; }

.height-1245 { height: 124.5rem !important; }

.height-1250 { height: 125rem !important; }

.height-1255 { height: 125.5rem !important; }

.height-1260 { height: 126rem !important; }

.height-1265 { height: 126.5rem !important; }

.height-1270 { height: 127rem !important; }

.height-1275 { height: 127.5rem !important; }

.height-1280 { height: 128rem !important; }

.height-1285 { height: 128.5rem !important; }

.height-1290 { height: 129rem !important; }

.height-1295 { height: 129.5rem !important; }

.height-1300 { height: 130rem !important; }

.height-1305 { height: 130.5rem !important; }

.height-1310 { height: 131rem !important; }

.height-1315 { height: 131.5rem !important; }

.height-1320 { height: 132rem !important; }

.height-1325 { height: 132.5rem !important; }

.height-1330 { height: 133rem !important; }

.height-1335 { height: 133.5rem !important; }

.height-1340 { height: 134rem !important; }

.height-1345 { height: 134.5rem !important; }

.height-1350 { height: 135rem !important; }

.height-1355 { height: 135.5rem !important; }

.height-1360 { height: 136rem !important; }

.height-1365 { height: 136.5rem !important; }

.height-1370 { height: 137rem !important; }

.height-1375 { height: 137.5rem !important; }

.height-1380 { height: 138rem !important; }

.height-1385 { height: 138.5rem !important; }

.height-1390 { height: 139rem !important; }

.height-1395 { height: 139.5rem !important; }

.height-1400 { height: 140rem !important; }

.height-1405 { height: 140.5rem !important; }

.height-1410 { height: 141rem !important; }

.height-1415 { height: 141.5rem !important; }

.height-1420 { height: 142rem !important; }

.height-1425 { height: 142.5rem !important; }

.height-1430 { height: 143rem !important; }

.height-1435 { height: 143.5rem !important; }

.height-1440 { height: 144rem !important; }

.height-1445 { height: 144.5rem !important; }

.height-1450 { height: 145rem !important; }

.height-1455 { height: 145.5rem !important; }

.height-1460 { height: 146rem !important; }

.height-1465 { height: 146.5rem !important; }

.height-1470 { height: 147rem !important; }

.height-1475 { height: 147.5rem !important; }

.height-1480 { height: 148rem !important; }

.height-1485 { height: 148.5rem !important; }

.height-1490 { height: 149rem !important; }

.height-1495 { height: 149.5rem !important; }

.height-1500 { height: 150rem !important; }

.height-per-5 { height: 5% !important; }

.height-per-10 { height: 10% !important; }

.height-per-15 { height: 15% !important; }

.height-per-20 { height: 20% !important; }

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

.height-per-30 { height: 30% !important; }

.height-per-35 { height: 35% !important; }

.height-per-40 { height: 40% !important; }

.height-per-45 { height: 45% !important; }

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

.height-per-55 { height: 55% !important; }

.height-per-60 { height: 60% !important; }

.height-per-65 { height: 65% !important; }

.height-per-70 { height: 70% !important; }

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

.height-per-80 { height: 80% !important; }

.height-per-85 { height: 85% !important; }

.height-per-90 { height: 90% !important; }

.height-per-95 { height: 95% !important; }

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

@media (min-width: 991px) { .height-lg-5 { height: 0.5rem !important; }
  .height-lg-10 { height: 1rem !important; }
  .height-lg-15 { height: 1.5rem !important; }
  .height-lg-20 { height: 2rem !important; }
  .height-lg-25 { height: 2.5rem !important; }
  .height-lg-30 { height: 3rem !important; }
  .height-lg-35 { height: 3.5rem !important; }
  .height-lg-40 { height: 4rem !important; }
  .height-lg-45 { height: 4.5rem !important; }
  .height-lg-50 { height: 5rem !important; }
  .height-lg-55 { height: 5.5rem !important; }
  .height-lg-60 { height: 6rem !important; }
  .height-lg-65 { height: 6.5rem !important; }
  .height-lg-70 { height: 7rem !important; }
  .height-lg-75 { height: 7.5rem !important; }
  .height-lg-80 { height: 8rem !important; }
  .height-lg-85 { height: 8.5rem !important; }
  .height-lg-90 { height: 9rem !important; }
  .height-lg-95 { height: 9.5rem !important; }
  .height-lg-100 { height: 10rem !important; }
  .height-lg-105 { height: 10.5rem !important; }
  .height-lg-110 { height: 11rem !important; }
  .height-lg-115 { height: 11.5rem !important; }
  .height-lg-120 { height: 12rem !important; }
  .height-lg-125 { height: 12.5rem !important; }
  .height-lg-130 { height: 13rem !important; }
  .height-lg-135 { height: 13.5rem !important; }
  .height-lg-140 { height: 14rem !important; }
  .height-lg-145 { height: 14.5rem !important; }
  .height-lg-150 { height: 15rem !important; }
  .height-lg-155 { height: 15.5rem !important; }
  .height-lg-160 { height: 16rem !important; }
  .height-lg-165 { height: 16.5rem !important; }
  .height-lg-170 { height: 17rem !important; }
  .height-lg-175 { height: 17.5rem !important; }
  .height-lg-180 { height: 18rem !important; }
  .height-lg-185 { height: 18.5rem !important; }
  .height-lg-190 { height: 19rem !important; }
  .height-lg-195 { height: 19.5rem !important; }
  .height-lg-200 { height: 20rem !important; }
  .height-lg-205 { height: 20.5rem !important; }
  .height-lg-210 { height: 21rem !important; }
  .height-lg-215 { height: 21.5rem !important; }
  .height-lg-220 { height: 22rem !important; }
  .height-lg-225 { height: 22.5rem !important; }
  .height-lg-230 { height: 23rem !important; }
  .height-lg-235 { height: 23.5rem !important; }
  .height-lg-240 { height: 24rem !important; }
  .height-lg-245 { height: 24.5rem !important; }
  .height-lg-250 { height: 25rem !important; }
  .height-lg-255 { height: 25.5rem !important; }
  .height-lg-260 { height: 26rem !important; }
  .height-lg-265 { height: 26.5rem !important; }
  .height-lg-270 { height: 27rem !important; }
  .height-lg-275 { height: 27.5rem !important; }
  .height-lg-280 { height: 28rem !important; }
  .height-lg-285 { height: 28.5rem !important; }
  .height-lg-290 { height: 29rem !important; }
  .height-lg-295 { height: 29.5rem !important; }
  .height-lg-300 { height: 30rem !important; }
  .height-lg-305 { height: 30.5rem !important; }
  .height-lg-310 { height: 31rem !important; }
  .height-lg-315 { height: 31.5rem !important; }
  .height-lg-320 { height: 32rem !important; }
  .height-lg-325 { height: 32.5rem !important; }
  .height-lg-330 { height: 33rem !important; }
  .height-lg-335 { height: 33.5rem !important; }
  .height-lg-340 { height: 34rem !important; }
  .height-lg-345 { height: 34.5rem !important; }
  .height-lg-350 { height: 35rem !important; }
  .height-lg-355 { height: 35.5rem !important; }
  .height-lg-360 { height: 36rem !important; }
  .height-lg-365 { height: 36.5rem !important; }
  .height-lg-370 { height: 37rem !important; }
  .height-lg-375 { height: 37.5rem !important; }
  .height-lg-380 { height: 38rem !important; }
  .height-lg-385 { height: 38.5rem !important; }
  .height-lg-390 { height: 39rem !important; }
  .height-lg-395 { height: 39.5rem !important; }
  .height-lg-400 { height: 40rem !important; }
  .height-lg-405 { height: 40.5rem !important; }
  .height-lg-410 { height: 41rem !important; }
  .height-lg-415 { height: 41.5rem !important; }
  .height-lg-420 { height: 42rem !important; }
  .height-lg-425 { height: 42.5rem !important; }
  .height-lg-430 { height: 43rem !important; }
  .height-lg-435 { height: 43.5rem !important; }
  .height-lg-440 { height: 44rem !important; }
  .height-lg-445 { height: 44.5rem !important; }
  .height-lg-450 { height: 45rem !important; }
  .height-lg-455 { height: 45.5rem !important; }
  .height-lg-460 { height: 46rem !important; }
  .height-lg-465 { height: 46.5rem !important; }
  .height-lg-470 { height: 47rem !important; }
  .height-lg-475 { height: 47.5rem !important; }
  .height-lg-480 { height: 48rem !important; }
  .height-lg-485 { height: 48.5rem !important; }
  .height-lg-490 { height: 49rem !important; }
  .height-lg-495 { height: 49.5rem !important; }
  .height-lg-500 { height: 50rem !important; }
  .height-lg-505 { height: 50.5rem !important; }
  .height-lg-510 { height: 51rem !important; }
  .height-lg-515 { height: 51.5rem !important; }
  .height-lg-520 { height: 52rem !important; }
  .height-lg-525 { height: 52.5rem !important; }
  .height-lg-530 { height: 53rem !important; }
  .height-lg-535 { height: 53.5rem !important; }
  .height-lg-540 { height: 54rem !important; }
  .height-lg-545 { height: 54.5rem !important; }
  .height-lg-550 { height: 55rem !important; }
  .height-lg-555 { height: 55.5rem !important; }
  .height-lg-560 { height: 56rem !important; }
  .height-lg-565 { height: 56.5rem !important; }
  .height-lg-570 { height: 57rem !important; }
  .height-lg-575 { height: 57.5rem !important; }
  .height-lg-580 { height: 58rem !important; }
  .height-lg-585 { height: 58.5rem !important; }
  .height-lg-590 { height: 59rem !important; }
  .height-lg-595 { height: 59.5rem !important; }
  .height-lg-600 { height: 60rem !important; }
  .height-lg-605 { height: 60.5rem !important; }
  .height-lg-610 { height: 61rem !important; }
  .height-lg-615 { height: 61.5rem !important; }
  .height-lg-620 { height: 62rem !important; }
  .height-lg-625 { height: 62.5rem !important; }
  .height-lg-630 { height: 63rem !important; }
  .height-lg-635 { height: 63.5rem !important; }
  .height-lg-640 { height: 64rem !important; }
  .height-lg-645 { height: 64.5rem !important; }
  .height-lg-650 { height: 65rem !important; }
  .height-lg-655 { height: 65.5rem !important; }
  .height-lg-660 { height: 66rem !important; }
  .height-lg-665 { height: 66.5rem !important; }
  .height-lg-670 { height: 67rem !important; }
  .height-lg-675 { height: 67.5rem !important; }
  .height-lg-680 { height: 68rem !important; }
  .height-lg-685 { height: 68.5rem !important; }
  .height-lg-690 { height: 69rem !important; }
  .height-lg-695 { height: 69.5rem !important; }
  .height-lg-700 { height: 70rem !important; }
  .height-lg-705 { height: 70.5rem !important; }
  .height-lg-710 { height: 71rem !important; }
  .height-lg-715 { height: 71.5rem !important; }
  .height-lg-720 { height: 72rem !important; }
  .height-lg-725 { height: 72.5rem !important; }
  .height-lg-730 { height: 73rem !important; }
  .height-lg-735 { height: 73.5rem !important; }
  .height-lg-740 { height: 74rem !important; }
  .height-lg-745 { height: 74.5rem !important; }
  .height-lg-750 { height: 75rem !important; }
  .height-lg-755 { height: 75.5rem !important; }
  .height-lg-760 { height: 76rem !important; }
  .height-lg-765 { height: 76.5rem !important; }
  .height-lg-770 { height: 77rem !important; }
  .height-lg-775 { height: 77.5rem !important; }
  .height-lg-780 { height: 78rem !important; }
  .height-lg-785 { height: 78.5rem !important; }
  .height-lg-790 { height: 79rem !important; }
  .height-lg-795 { height: 79.5rem !important; }
  .height-lg-800 { height: 80rem !important; }
  .height-lg-805 { height: 80.5rem !important; }
  .height-lg-810 { height: 81rem !important; }
  .height-lg-815 { height: 81.5rem !important; }
  .height-lg-820 { height: 82rem !important; }
  .height-lg-825 { height: 82.5rem !important; }
  .height-lg-830 { height: 83rem !important; }
  .height-lg-835 { height: 83.5rem !important; }
  .height-lg-840 { height: 84rem !important; }
  .height-lg-845 { height: 84.5rem !important; }
  .height-lg-850 { height: 85rem !important; }
  .height-lg-855 { height: 85.5rem !important; }
  .height-lg-860 { height: 86rem !important; }
  .height-lg-865 { height: 86.5rem !important; }
  .height-lg-870 { height: 87rem !important; }
  .height-lg-875 { height: 87.5rem !important; }
  .height-lg-880 { height: 88rem !important; }
  .height-lg-885 { height: 88.5rem !important; }
  .height-lg-890 { height: 89rem !important; }
  .height-lg-895 { height: 89.5rem !important; }
  .height-lg-900 { height: 90rem !important; }
  .height-lg-905 { height: 90.5rem !important; }
  .height-lg-910 { height: 91rem !important; }
  .height-lg-915 { height: 91.5rem !important; }
  .height-lg-920 { height: 92rem !important; }
  .height-lg-925 { height: 92.5rem !important; }
  .height-lg-930 { height: 93rem !important; }
  .height-lg-935 { height: 93.5rem !important; }
  .height-lg-940 { height: 94rem !important; }
  .height-lg-945 { height: 94.5rem !important; }
  .height-lg-950 { height: 95rem !important; }
  .height-lg-955 { height: 95.5rem !important; }
  .height-lg-960 { height: 96rem !important; }
  .height-lg-965 { height: 96.5rem !important; }
  .height-lg-970 { height: 97rem !important; }
  .height-lg-975 { height: 97.5rem !important; }
  .height-lg-980 { height: 98rem !important; }
  .height-lg-985 { height: 98.5rem !important; }
  .height-lg-990 { height: 99rem !important; }
  .height-lg-995 { height: 99.5rem !important; }
  .height-lg-1000 { height: 100rem !important; }
  .height-lg-1005 { height: 100.5rem !important; }
  .height-lg-1010 { height: 101rem !important; }
  .height-lg-1015 { height: 101.5rem !important; }
  .height-lg-1020 { height: 102rem !important; }
  .height-lg-1025 { height: 102.5rem !important; }
  .height-lg-1030 { height: 103rem !important; }
  .height-lg-1035 { height: 103.5rem !important; }
  .height-lg-1040 { height: 104rem !important; }
  .height-lg-1045 { height: 104.5rem !important; }
  .height-lg-1050 { height: 105rem !important; }
  .height-lg-1055 { height: 105.5rem !important; }
  .height-lg-1060 { height: 106rem !important; }
  .height-lg-1065 { height: 106.5rem !important; }
  .height-lg-1070 { height: 107rem !important; }
  .height-lg-1075 { height: 107.5rem !important; }
  .height-lg-1080 { height: 108rem !important; }
  .height-lg-1085 { height: 108.5rem !important; }
  .height-lg-1090 { height: 109rem !important; }
  .height-lg-1095 { height: 109.5rem !important; }
  .height-lg-1100 { height: 110rem !important; }
  .height-lg-1105 { height: 110.5rem !important; }
  .height-lg-1110 { height: 111rem !important; }
  .height-lg-1115 { height: 111.5rem !important; }
  .height-lg-1120 { height: 112rem !important; }
  .height-lg-1125 { height: 112.5rem !important; }
  .height-lg-1130 { height: 113rem !important; }
  .height-lg-1135 { height: 113.5rem !important; }
  .height-lg-1140 { height: 114rem !important; }
  .height-lg-1145 { height: 114.5rem !important; }
  .height-lg-1150 { height: 115rem !important; }
  .height-lg-1155 { height: 115.5rem !important; }
  .height-lg-1160 { height: 116rem !important; }
  .height-lg-1165 { height: 116.5rem !important; }
  .height-lg-1170 { height: 117rem !important; }
  .height-lg-1175 { height: 117.5rem !important; }
  .height-lg-1180 { height: 118rem !important; }
  .height-lg-1185 { height: 118.5rem !important; }
  .height-lg-1190 { height: 119rem !important; }
  .height-lg-1195 { height: 119.5rem !important; }
  .height-lg-1200 { height: 120rem !important; }
  .height-lg-1205 { height: 120.5rem !important; }
  .height-lg-1210 { height: 121rem !important; }
  .height-lg-1215 { height: 121.5rem !important; }
  .height-lg-1220 { height: 122rem !important; }
  .height-lg-1225 { height: 122.5rem !important; }
  .height-lg-1230 { height: 123rem !important; }
  .height-lg-1235 { height: 123.5rem !important; }
  .height-lg-1240 { height: 124rem !important; }
  .height-lg-1245 { height: 124.5rem !important; }
  .height-lg-1250 { height: 125rem !important; }
  .height-lg-1255 { height: 125.5rem !important; }
  .height-lg-1260 { height: 126rem !important; }
  .height-lg-1265 { height: 126.5rem !important; }
  .height-lg-1270 { height: 127rem !important; }
  .height-lg-1275 { height: 127.5rem !important; }
  .height-lg-1280 { height: 128rem !important; }
  .height-lg-1285 { height: 128.5rem !important; }
  .height-lg-1290 { height: 129rem !important; }
  .height-lg-1295 { height: 129.5rem !important; }
  .height-lg-1300 { height: 130rem !important; }
  .height-lg-1305 { height: 130.5rem !important; }
  .height-lg-1310 { height: 131rem !important; }
  .height-lg-1315 { height: 131.5rem !important; }
  .height-lg-1320 { height: 132rem !important; }
  .height-lg-1325 { height: 132.5rem !important; }
  .height-lg-1330 { height: 133rem !important; }
  .height-lg-1335 { height: 133.5rem !important; }
  .height-lg-1340 { height: 134rem !important; }
  .height-lg-1345 { height: 134.5rem !important; }
  .height-lg-1350 { height: 135rem !important; }
  .height-lg-1355 { height: 135.5rem !important; }
  .height-lg-1360 { height: 136rem !important; }
  .height-lg-1365 { height: 136.5rem !important; }
  .height-lg-1370 { height: 137rem !important; }
  .height-lg-1375 { height: 137.5rem !important; }
  .height-lg-1380 { height: 138rem !important; }
  .height-lg-1385 { height: 138.5rem !important; }
  .height-lg-1390 { height: 139rem !important; }
  .height-lg-1395 { height: 139.5rem !important; }
  .height-lg-1400 { height: 140rem !important; }
  .height-lg-1405 { height: 140.5rem !important; }
  .height-lg-1410 { height: 141rem !important; }
  .height-lg-1415 { height: 141.5rem !important; }
  .height-lg-1420 { height: 142rem !important; }
  .height-lg-1425 { height: 142.5rem !important; }
  .height-lg-1430 { height: 143rem !important; }
  .height-lg-1435 { height: 143.5rem !important; }
  .height-lg-1440 { height: 144rem !important; }
  .height-lg-1445 { height: 144.5rem !important; }
  .height-lg-1450 { height: 145rem !important; }
  .height-lg-1455 { height: 145.5rem !important; }
  .height-lg-1460 { height: 146rem !important; }
  .height-lg-1465 { height: 146.5rem !important; }
  .height-lg-1470 { height: 147rem !important; }
  .height-lg-1475 { height: 147.5rem !important; }
  .height-lg-1480 { height: 148rem !important; }
  .height-lg-1485 { height: 148.5rem !important; }
  .height-lg-1490 { height: 149rem !important; }
  .height-lg-1495 { height: 149.5rem !important; }
  .height-lg-1500 { height: 150rem !important; }
  .height-lg-per-5 { height: 5% !important; }
  .height-lg-per-10 { height: 10% !important; }
  .height-lg-per-15 { height: 15% !important; }
  .height-lg-per-20 { height: 20% !important; }
  .height-lg-per-25 { height: 25% !important; }
  .height-lg-per-30 { height: 30% !important; }
  .height-lg-per-35 { height: 35% !important; }
  .height-lg-per-40 { height: 40% !important; }
  .height-lg-per-45 { height: 45% !important; }
  .height-lg-per-50 { height: 50% !important; }
  .height-lg-per-55 { height: 55% !important; }
  .height-lg-per-60 { height: 60% !important; }
  .height-lg-per-65 { height: 65% !important; }
  .height-lg-per-70 { height: 70% !important; }
  .height-lg-per-75 { height: 75% !important; }
  .height-lg-per-80 { height: 80% !important; }
  .height-lg-per-85 { height: 85% !important; }
  .height-lg-per-90 { height: 90% !important; }
  .height-lg-per-95 { height: 95% !important; }
  .height-lg-per-100 { height: 100% !important; } }

/* 位置の設定 */
.top-0 { top: 0rem !important; }

.top-minus-0 { top: 0rem !important; }

.top-per-0 { top: 0% !important; }

.top-minus-per-0 { top: 0% !important; }

.top-5 { top: 0.5rem !important; }

.top-minus-5 { top: -0.5rem !important; }

.top-per-5 { top: 5% !important; }

.top-minus-per-5 { top: -5% !important; }

.top-10 { top: 1rem !important; }

.top-minus-10 { top: -1rem !important; }

.top-per-10 { top: 10% !important; }

.top-minus-per-10 { top: -10% !important; }

.top-15 { top: 1.5rem !important; }

.top-minus-15 { top: -1.5rem !important; }

.top-per-15 { top: 15% !important; }

.top-minus-per-15 { top: -15% !important; }

.top-20 { top: 2rem !important; }

.top-minus-20 { top: -2rem !important; }

.top-per-20 { top: 20% !important; }

.top-minus-per-20 { top: -20% !important; }

.top-25 { top: 2.5rem !important; }

.top-minus-25 { top: -2.5rem !important; }

.top-per-25 { top: 25% !important; }

.top-minus-per-25 { top: -25% !important; }

.top-30 { top: 3rem !important; }

.top-minus-30 { top: -3rem !important; }

.top-per-30 { top: 30% !important; }

.top-minus-per-30 { top: -30% !important; }

.top-35 { top: 3.5rem !important; }

.top-minus-35 { top: -3.5rem !important; }

.top-per-35 { top: 35% !important; }

.top-minus-per-35 { top: -35% !important; }

.top-40 { top: 4rem !important; }

.top-minus-40 { top: -4rem !important; }

.top-per-40 { top: 40% !important; }

.top-minus-per-40 { top: -40% !important; }

.top-45 { top: 4.5rem !important; }

.top-minus-45 { top: -4.5rem !important; }

.top-per-45 { top: 45% !important; }

.top-minus-per-45 { top: -45% !important; }

.top-50 { top: 5rem !important; }

.top-minus-50 { top: -5rem !important; }

.top-per-50 { top: 50% !important; }

.top-minus-per-50 { top: -50% !important; }

.top-55 { top: 5.5rem !important; }

.top-minus-55 { top: -5.5rem !important; }

.top-per-55 { top: 55% !important; }

.top-minus-per-55 { top: -55% !important; }

.top-60 { top: 6rem !important; }

.top-minus-60 { top: -6rem !important; }

.top-per-60 { top: 60% !important; }

.top-minus-per-60 { top: -60% !important; }

.top-65 { top: 6.5rem !important; }

.top-minus-65 { top: -6.5rem !important; }

.top-per-65 { top: 65% !important; }

.top-minus-per-65 { top: -65% !important; }

.top-70 { top: 7rem !important; }

.top-minus-70 { top: -7rem !important; }

.top-per-70 { top: 70% !important; }

.top-minus-per-70 { top: -70% !important; }

.top-75 { top: 7.5rem !important; }

.top-minus-75 { top: -7.5rem !important; }

.top-per-75 { top: 75% !important; }

.top-minus-per-75 { top: -75% !important; }

.top-80 { top: 8rem !important; }

.top-minus-80 { top: -8rem !important; }

.top-per-80 { top: 80% !important; }

.top-minus-per-80 { top: -80% !important; }

.top-85 { top: 8.5rem !important; }

.top-minus-85 { top: -8.5rem !important; }

.top-per-85 { top: 85% !important; }

.top-minus-per-85 { top: -85% !important; }

.top-90 { top: 9rem !important; }

.top-minus-90 { top: -9rem !important; }

.top-per-90 { top: 90% !important; }

.top-minus-per-90 { top: -90% !important; }

.top-95 { top: 9.5rem !important; }

.top-minus-95 { top: -9.5rem !important; }

.top-per-95 { top: 95% !important; }

.top-minus-per-95 { top: -95% !important; }

.top-100 { top: 10rem !important; }

.top-minus-100 { top: -10rem !important; }

.top-per-100 { top: 100% !important; }

.top-minus-per-100 { top: -100% !important; }

.top-105 { top: 10.5rem !important; }

.top-minus-105 { top: -10.5rem !important; }

.top-per-105 { top: 105% !important; }

.top-minus-per-105 { top: -105% !important; }

.top-110 { top: 11rem !important; }

.top-minus-110 { top: -11rem !important; }

.top-per-110 { top: 110% !important; }

.top-minus-per-110 { top: -110% !important; }

.top-115 { top: 11.5rem !important; }

.top-minus-115 { top: -11.5rem !important; }

.top-per-115 { top: 115% !important; }

.top-minus-per-115 { top: -115% !important; }

.top-120 { top: 12rem !important; }

.top-minus-120 { top: -12rem !important; }

.top-per-120 { top: 120% !important; }

.top-minus-per-120 { top: -120% !important; }

.top-125 { top: 12.5rem !important; }

.top-minus-125 { top: -12.5rem !important; }

.top-per-125 { top: 125% !important; }

.top-minus-per-125 { top: -125% !important; }

.top-130 { top: 13rem !important; }

.top-minus-130 { top: -13rem !important; }

.top-per-130 { top: 130% !important; }

.top-minus-per-130 { top: -130% !important; }

.top-135 { top: 13.5rem !important; }

.top-minus-135 { top: -13.5rem !important; }

.top-per-135 { top: 135% !important; }

.top-minus-per-135 { top: -135% !important; }

.top-140 { top: 14rem !important; }

.top-minus-140 { top: -14rem !important; }

.top-per-140 { top: 140% !important; }

.top-minus-per-140 { top: -140% !important; }

.top-145 { top: 14.5rem !important; }

.top-minus-145 { top: -14.5rem !important; }

.top-per-145 { top: 145% !important; }

.top-minus-per-145 { top: -145% !important; }

.top-150 { top: 15rem !important; }

.top-minus-150 { top: -15rem !important; }

.top-per-150 { top: 150% !important; }

.top-minus-per-150 { top: -150% !important; }

.top-155 { top: 15.5rem !important; }

.top-minus-155 { top: -15.5rem !important; }

.top-per-155 { top: 155% !important; }

.top-minus-per-155 { top: -155% !important; }

.top-160 { top: 16rem !important; }

.top-minus-160 { top: -16rem !important; }

.top-per-160 { top: 160% !important; }

.top-minus-per-160 { top: -160% !important; }

.top-165 { top: 16.5rem !important; }

.top-minus-165 { top: -16.5rem !important; }

.top-per-165 { top: 165% !important; }

.top-minus-per-165 { top: -165% !important; }

.top-170 { top: 17rem !important; }

.top-minus-170 { top: -17rem !important; }

.top-per-170 { top: 170% !important; }

.top-minus-per-170 { top: -170% !important; }

.top-175 { top: 17.5rem !important; }

.top-minus-175 { top: -17.5rem !important; }

.top-per-175 { top: 175% !important; }

.top-minus-per-175 { top: -175% !important; }

.top-180 { top: 18rem !important; }

.top-minus-180 { top: -18rem !important; }

.top-per-180 { top: 180% !important; }

.top-minus-per-180 { top: -180% !important; }

.top-185 { top: 18.5rem !important; }

.top-minus-185 { top: -18.5rem !important; }

.top-per-185 { top: 185% !important; }

.top-minus-per-185 { top: -185% !important; }

.top-190 { top: 19rem !important; }

.top-minus-190 { top: -19rem !important; }

.top-per-190 { top: 190% !important; }

.top-minus-per-190 { top: -190% !important; }

.top-195 { top: 19.5rem !important; }

.top-minus-195 { top: -19.5rem !important; }

.top-per-195 { top: 195% !important; }

.top-minus-per-195 { top: -195% !important; }

.top-200 { top: 20rem !important; }

.top-minus-200 { top: -20rem !important; }

.top-per-200 { top: 200% !important; }

.top-minus-per-200 { top: -200% !important; }

.top-205 { top: 20.5rem !important; }

.top-minus-205 { top: -20.5rem !important; }

.top-per-205 { top: 205% !important; }

.top-minus-per-205 { top: -205% !important; }

.top-210 { top: 21rem !important; }

.top-minus-210 { top: -21rem !important; }

.top-per-210 { top: 210% !important; }

.top-minus-per-210 { top: -210% !important; }

.top-215 { top: 21.5rem !important; }

.top-minus-215 { top: -21.5rem !important; }

.top-per-215 { top: 215% !important; }

.top-minus-per-215 { top: -215% !important; }

.top-220 { top: 22rem !important; }

.top-minus-220 { top: -22rem !important; }

.top-per-220 { top: 220% !important; }

.top-minus-per-220 { top: -220% !important; }

.top-225 { top: 22.5rem !important; }

.top-minus-225 { top: -22.5rem !important; }

.top-per-225 { top: 225% !important; }

.top-minus-per-225 { top: -225% !important; }

.top-230 { top: 23rem !important; }

.top-minus-230 { top: -23rem !important; }

.top-per-230 { top: 230% !important; }

.top-minus-per-230 { top: -230% !important; }

.top-235 { top: 23.5rem !important; }

.top-minus-235 { top: -23.5rem !important; }

.top-per-235 { top: 235% !important; }

.top-minus-per-235 { top: -235% !important; }

.top-240 { top: 24rem !important; }

.top-minus-240 { top: -24rem !important; }

.top-per-240 { top: 240% !important; }

.top-minus-per-240 { top: -240% !important; }

.top-245 { top: 24.5rem !important; }

.top-minus-245 { top: -24.5rem !important; }

.top-per-245 { top: 245% !important; }

.top-minus-per-245 { top: -245% !important; }

.top-250 { top: 25rem !important; }

.top-minus-250 { top: -25rem !important; }

.top-per-250 { top: 250% !important; }

.top-minus-per-250 { top: -250% !important; }

.top-255 { top: 25.5rem !important; }

.top-minus-255 { top: -25.5rem !important; }

.top-per-255 { top: 255% !important; }

.top-minus-per-255 { top: -255% !important; }

.top-260 { top: 26rem !important; }

.top-minus-260 { top: -26rem !important; }

.top-per-260 { top: 260% !important; }

.top-minus-per-260 { top: -260% !important; }

.top-265 { top: 26.5rem !important; }

.top-minus-265 { top: -26.5rem !important; }

.top-per-265 { top: 265% !important; }

.top-minus-per-265 { top: -265% !important; }

.top-270 { top: 27rem !important; }

.top-minus-270 { top: -27rem !important; }

.top-per-270 { top: 270% !important; }

.top-minus-per-270 { top: -270% !important; }

.top-275 { top: 27.5rem !important; }

.top-minus-275 { top: -27.5rem !important; }

.top-per-275 { top: 275% !important; }

.top-minus-per-275 { top: -275% !important; }

.top-280 { top: 28rem !important; }

.top-minus-280 { top: -28rem !important; }

.top-per-280 { top: 280% !important; }

.top-minus-per-280 { top: -280% !important; }

.top-285 { top: 28.5rem !important; }

.top-minus-285 { top: -28.5rem !important; }

.top-per-285 { top: 285% !important; }

.top-minus-per-285 { top: -285% !important; }

.top-290 { top: 29rem !important; }

.top-minus-290 { top: -29rem !important; }

.top-per-290 { top: 290% !important; }

.top-minus-per-290 { top: -290% !important; }

.top-295 { top: 29.5rem !important; }

.top-minus-295 { top: -29.5rem !important; }

.top-per-295 { top: 295% !important; }

.top-minus-per-295 { top: -295% !important; }

.top-300 { top: 30rem !important; }

.top-minus-300 { top: -30rem !important; }

.top-per-300 { top: 300% !important; }

.top-minus-per-300 { top: -300% !important; }

.top-305 { top: 30.5rem !important; }

.top-minus-305 { top: -30.5rem !important; }

.top-per-305 { top: 305% !important; }

.top-minus-per-305 { top: -305% !important; }

.top-310 { top: 31rem !important; }

.top-minus-310 { top: -31rem !important; }

.top-per-310 { top: 310% !important; }

.top-minus-per-310 { top: -310% !important; }

.top-315 { top: 31.5rem !important; }

.top-minus-315 { top: -31.5rem !important; }

.top-per-315 { top: 315% !important; }

.top-minus-per-315 { top: -315% !important; }

.top-320 { top: 32rem !important; }

.top-minus-320 { top: -32rem !important; }

.top-per-320 { top: 320% !important; }

.top-minus-per-320 { top: -320% !important; }

.top-325 { top: 32.5rem !important; }

.top-minus-325 { top: -32.5rem !important; }

.top-per-325 { top: 325% !important; }

.top-minus-per-325 { top: -325% !important; }

.top-330 { top: 33rem !important; }

.top-minus-330 { top: -33rem !important; }

.top-per-330 { top: 330% !important; }

.top-minus-per-330 { top: -330% !important; }

.top-335 { top: 33.5rem !important; }

.top-minus-335 { top: -33.5rem !important; }

.top-per-335 { top: 335% !important; }

.top-minus-per-335 { top: -335% !important; }

.top-340 { top: 34rem !important; }

.top-minus-340 { top: -34rem !important; }

.top-per-340 { top: 340% !important; }

.top-minus-per-340 { top: -340% !important; }

.top-345 { top: 34.5rem !important; }

.top-minus-345 { top: -34.5rem !important; }

.top-per-345 { top: 345% !important; }

.top-minus-per-345 { top: -345% !important; }

.top-350 { top: 35rem !important; }

.top-minus-350 { top: -35rem !important; }

.top-per-350 { top: 350% !important; }

.top-minus-per-350 { top: -350% !important; }

.top-355 { top: 35.5rem !important; }

.top-minus-355 { top: -35.5rem !important; }

.top-per-355 { top: 355% !important; }

.top-minus-per-355 { top: -355% !important; }

.top-360 { top: 36rem !important; }

.top-minus-360 { top: -36rem !important; }

.top-per-360 { top: 360% !important; }

.top-minus-per-360 { top: -360% !important; }

.top-365 { top: 36.5rem !important; }

.top-minus-365 { top: -36.5rem !important; }

.top-per-365 { top: 365% !important; }

.top-minus-per-365 { top: -365% !important; }

.top-370 { top: 37rem !important; }

.top-minus-370 { top: -37rem !important; }

.top-per-370 { top: 370% !important; }

.top-minus-per-370 { top: -370% !important; }

.top-375 { top: 37.5rem !important; }

.top-minus-375 { top: -37.5rem !important; }

.top-per-375 { top: 375% !important; }

.top-minus-per-375 { top: -375% !important; }

.top-380 { top: 38rem !important; }

.top-minus-380 { top: -38rem !important; }

.top-per-380 { top: 380% !important; }

.top-minus-per-380 { top: -380% !important; }

.top-385 { top: 38.5rem !important; }

.top-minus-385 { top: -38.5rem !important; }

.top-per-385 { top: 385% !important; }

.top-minus-per-385 { top: -385% !important; }

.top-390 { top: 39rem !important; }

.top-minus-390 { top: -39rem !important; }

.top-per-390 { top: 390% !important; }

.top-minus-per-390 { top: -390% !important; }

.top-395 { top: 39.5rem !important; }

.top-minus-395 { top: -39.5rem !important; }

.top-per-395 { top: 395% !important; }

.top-minus-per-395 { top: -395% !important; }

.top-400 { top: 40rem !important; }

.top-minus-400 { top: -40rem !important; }

.top-per-400 { top: 400% !important; }

.top-minus-per-400 { top: -400% !important; }

.top-405 { top: 40.5rem !important; }

.top-minus-405 { top: -40.5rem !important; }

.top-per-405 { top: 405% !important; }

.top-minus-per-405 { top: -405% !important; }

.top-410 { top: 41rem !important; }

.top-minus-410 { top: -41rem !important; }

.top-per-410 { top: 410% !important; }

.top-minus-per-410 { top: -410% !important; }

.top-415 { top: 41.5rem !important; }

.top-minus-415 { top: -41.5rem !important; }

.top-per-415 { top: 415% !important; }

.top-minus-per-415 { top: -415% !important; }

.top-420 { top: 42rem !important; }

.top-minus-420 { top: -42rem !important; }

.top-per-420 { top: 420% !important; }

.top-minus-per-420 { top: -420% !important; }

.top-425 { top: 42.5rem !important; }

.top-minus-425 { top: -42.5rem !important; }

.top-per-425 { top: 425% !important; }

.top-minus-per-425 { top: -425% !important; }

.top-430 { top: 43rem !important; }

.top-minus-430 { top: -43rem !important; }

.top-per-430 { top: 430% !important; }

.top-minus-per-430 { top: -430% !important; }

.top-435 { top: 43.5rem !important; }

.top-minus-435 { top: -43.5rem !important; }

.top-per-435 { top: 435% !important; }

.top-minus-per-435 { top: -435% !important; }

.top-440 { top: 44rem !important; }

.top-minus-440 { top: -44rem !important; }

.top-per-440 { top: 440% !important; }

.top-minus-per-440 { top: -440% !important; }

.top-445 { top: 44.5rem !important; }

.top-minus-445 { top: -44.5rem !important; }

.top-per-445 { top: 445% !important; }

.top-minus-per-445 { top: -445% !important; }

.top-450 { top: 45rem !important; }

.top-minus-450 { top: -45rem !important; }

.top-per-450 { top: 450% !important; }

.top-minus-per-450 { top: -450% !important; }

.top-455 { top: 45.5rem !important; }

.top-minus-455 { top: -45.5rem !important; }

.top-per-455 { top: 455% !important; }

.top-minus-per-455 { top: -455% !important; }

.top-460 { top: 46rem !important; }

.top-minus-460 { top: -46rem !important; }

.top-per-460 { top: 460% !important; }

.top-minus-per-460 { top: -460% !important; }

.top-465 { top: 46.5rem !important; }

.top-minus-465 { top: -46.5rem !important; }

.top-per-465 { top: 465% !important; }

.top-minus-per-465 { top: -465% !important; }

.top-470 { top: 47rem !important; }

.top-minus-470 { top: -47rem !important; }

.top-per-470 { top: 470% !important; }

.top-minus-per-470 { top: -470% !important; }

.top-475 { top: 47.5rem !important; }

.top-minus-475 { top: -47.5rem !important; }

.top-per-475 { top: 475% !important; }

.top-minus-per-475 { top: -475% !important; }

.top-480 { top: 48rem !important; }

.top-minus-480 { top: -48rem !important; }

.top-per-480 { top: 480% !important; }

.top-minus-per-480 { top: -480% !important; }

.top-485 { top: 48.5rem !important; }

.top-minus-485 { top: -48.5rem !important; }

.top-per-485 { top: 485% !important; }

.top-minus-per-485 { top: -485% !important; }

.top-490 { top: 49rem !important; }

.top-minus-490 { top: -49rem !important; }

.top-per-490 { top: 490% !important; }

.top-minus-per-490 { top: -490% !important; }

.top-495 { top: 49.5rem !important; }

.top-minus-495 { top: -49.5rem !important; }

.top-per-495 { top: 495% !important; }

.top-minus-per-495 { top: -495% !important; }

.top-500 { top: 50rem !important; }

.top-minus-500 { top: -50rem !important; }

.top-per-500 { top: 500% !important; }

.top-minus-per-500 { top: -500% !important; }

.top-auto { top: auto !important; }

@media (min-width: 991px) { .top-lg-0 { top: 0rem !important; }
  .top-lg-minus-0 { top: 0rem !important; }
  .top-lg-per-0 { top: 0% !important; }
  .top-lg-minus-per-0 { top: 0% !important; }
  .top-lg-5 { top: 0.5rem !important; }
  .top-lg-minus-5 { top: -0.5rem !important; }
  .top-lg-per-5 { top: 5% !important; }
  .top-lg-minus-per-5 { top: -5% !important; }
  .top-lg-10 { top: 1rem !important; }
  .top-lg-minus-10 { top: -1rem !important; }
  .top-lg-per-10 { top: 10% !important; }
  .top-lg-minus-per-10 { top: -10% !important; }
  .top-lg-15 { top: 1.5rem !important; }
  .top-lg-minus-15 { top: -1.5rem !important; }
  .top-lg-per-15 { top: 15% !important; }
  .top-lg-minus-per-15 { top: -15% !important; }
  .top-lg-20 { top: 2rem !important; }
  .top-lg-minus-20 { top: -2rem !important; }
  .top-lg-per-20 { top: 20% !important; }
  .top-lg-minus-per-20 { top: -20% !important; }
  .top-lg-25 { top: 2.5rem !important; }
  .top-lg-minus-25 { top: -2.5rem !important; }
  .top-lg-per-25 { top: 25% !important; }
  .top-lg-minus-per-25 { top: -25% !important; }
  .top-lg-30 { top: 3rem !important; }
  .top-lg-minus-30 { top: -3rem !important; }
  .top-lg-per-30 { top: 30% !important; }
  .top-lg-minus-per-30 { top: -30% !important; }
  .top-lg-35 { top: 3.5rem !important; }
  .top-lg-minus-35 { top: -3.5rem !important; }
  .top-lg-per-35 { top: 35% !important; }
  .top-lg-minus-per-35 { top: -35% !important; }
  .top-lg-40 { top: 4rem !important; }
  .top-lg-minus-40 { top: -4rem !important; }
  .top-lg-per-40 { top: 40% !important; }
  .top-lg-minus-per-40 { top: -40% !important; }
  .top-lg-45 { top: 4.5rem !important; }
  .top-lg-minus-45 { top: -4.5rem !important; }
  .top-lg-per-45 { top: 45% !important; }
  .top-lg-minus-per-45 { top: -45% !important; }
  .top-lg-50 { top: 5rem !important; }
  .top-lg-minus-50 { top: -5rem !important; }
  .top-lg-per-50 { top: 50% !important; }
  .top-lg-minus-per-50 { top: -50% !important; }
  .top-lg-55 { top: 5.5rem !important; }
  .top-lg-minus-55 { top: -5.5rem !important; }
  .top-lg-per-55 { top: 55% !important; }
  .top-lg-minus-per-55 { top: -55% !important; }
  .top-lg-60 { top: 6rem !important; }
  .top-lg-minus-60 { top: -6rem !important; }
  .top-lg-per-60 { top: 60% !important; }
  .top-lg-minus-per-60 { top: -60% !important; }
  .top-lg-65 { top: 6.5rem !important; }
  .top-lg-minus-65 { top: -6.5rem !important; }
  .top-lg-per-65 { top: 65% !important; }
  .top-lg-minus-per-65 { top: -65% !important; }
  .top-lg-70 { top: 7rem !important; }
  .top-lg-minus-70 { top: -7rem !important; }
  .top-lg-per-70 { top: 70% !important; }
  .top-lg-minus-per-70 { top: -70% !important; }
  .top-lg-75 { top: 7.5rem !important; }
  .top-lg-minus-75 { top: -7.5rem !important; }
  .top-lg-per-75 { top: 75% !important; }
  .top-lg-minus-per-75 { top: -75% !important; }
  .top-lg-80 { top: 8rem !important; }
  .top-lg-minus-80 { top: -8rem !important; }
  .top-lg-per-80 { top: 80% !important; }
  .top-lg-minus-per-80 { top: -80% !important; }
  .top-lg-85 { top: 8.5rem !important; }
  .top-lg-minus-85 { top: -8.5rem !important; }
  .top-lg-per-85 { top: 85% !important; }
  .top-lg-minus-per-85 { top: -85% !important; }
  .top-lg-90 { top: 9rem !important; }
  .top-lg-minus-90 { top: -9rem !important; }
  .top-lg-per-90 { top: 90% !important; }
  .top-lg-minus-per-90 { top: -90% !important; }
  .top-lg-95 { top: 9.5rem !important; }
  .top-lg-minus-95 { top: -9.5rem !important; }
  .top-lg-per-95 { top: 95% !important; }
  .top-lg-minus-per-95 { top: -95% !important; }
  .top-lg-100 { top: 10rem !important; }
  .top-lg-minus-100 { top: -10rem !important; }
  .top-lg-per-100 { top: 100% !important; }
  .top-lg-minus-per-100 { top: -100% !important; }
  .top-lg-105 { top: 10.5rem !important; }
  .top-lg-minus-105 { top: -10.5rem !important; }
  .top-lg-per-105 { top: 105% !important; }
  .top-lg-minus-per-105 { top: -105% !important; }
  .top-lg-110 { top: 11rem !important; }
  .top-lg-minus-110 { top: -11rem !important; }
  .top-lg-per-110 { top: 110% !important; }
  .top-lg-minus-per-110 { top: -110% !important; }
  .top-lg-115 { top: 11.5rem !important; }
  .top-lg-minus-115 { top: -11.5rem !important; }
  .top-lg-per-115 { top: 115% !important; }
  .top-lg-minus-per-115 { top: -115% !important; }
  .top-lg-120 { top: 12rem !important; }
  .top-lg-minus-120 { top: -12rem !important; }
  .top-lg-per-120 { top: 120% !important; }
  .top-lg-minus-per-120 { top: -120% !important; }
  .top-lg-125 { top: 12.5rem !important; }
  .top-lg-minus-125 { top: -12.5rem !important; }
  .top-lg-per-125 { top: 125% !important; }
  .top-lg-minus-per-125 { top: -125% !important; }
  .top-lg-130 { top: 13rem !important; }
  .top-lg-minus-130 { top: -13rem !important; }
  .top-lg-per-130 { top: 130% !important; }
  .top-lg-minus-per-130 { top: -130% !important; }
  .top-lg-135 { top: 13.5rem !important; }
  .top-lg-minus-135 { top: -13.5rem !important; }
  .top-lg-per-135 { top: 135% !important; }
  .top-lg-minus-per-135 { top: -135% !important; }
  .top-lg-140 { top: 14rem !important; }
  .top-lg-minus-140 { top: -14rem !important; }
  .top-lg-per-140 { top: 140% !important; }
  .top-lg-minus-per-140 { top: -140% !important; }
  .top-lg-145 { top: 14.5rem !important; }
  .top-lg-minus-145 { top: -14.5rem !important; }
  .top-lg-per-145 { top: 145% !important; }
  .top-lg-minus-per-145 { top: -145% !important; }
  .top-lg-150 { top: 15rem !important; }
  .top-lg-minus-150 { top: -15rem !important; }
  .top-lg-per-150 { top: 150% !important; }
  .top-lg-minus-per-150 { top: -150% !important; }
  .top-lg-155 { top: 15.5rem !important; }
  .top-lg-minus-155 { top: -15.5rem !important; }
  .top-lg-per-155 { top: 155% !important; }
  .top-lg-minus-per-155 { top: -155% !important; }
  .top-lg-160 { top: 16rem !important; }
  .top-lg-minus-160 { top: -16rem !important; }
  .top-lg-per-160 { top: 160% !important; }
  .top-lg-minus-per-160 { top: -160% !important; }
  .top-lg-165 { top: 16.5rem !important; }
  .top-lg-minus-165 { top: -16.5rem !important; }
  .top-lg-per-165 { top: 165% !important; }
  .top-lg-minus-per-165 { top: -165% !important; }
  .top-lg-170 { top: 17rem !important; }
  .top-lg-minus-170 { top: -17rem !important; }
  .top-lg-per-170 { top: 170% !important; }
  .top-lg-minus-per-170 { top: -170% !important; }
  .top-lg-175 { top: 17.5rem !important; }
  .top-lg-minus-175 { top: -17.5rem !important; }
  .top-lg-per-175 { top: 175% !important; }
  .top-lg-minus-per-175 { top: -175% !important; }
  .top-lg-180 { top: 18rem !important; }
  .top-lg-minus-180 { top: -18rem !important; }
  .top-lg-per-180 { top: 180% !important; }
  .top-lg-minus-per-180 { top: -180% !important; }
  .top-lg-185 { top: 18.5rem !important; }
  .top-lg-minus-185 { top: -18.5rem !important; }
  .top-lg-per-185 { top: 185% !important; }
  .top-lg-minus-per-185 { top: -185% !important; }
  .top-lg-190 { top: 19rem !important; }
  .top-lg-minus-190 { top: -19rem !important; }
  .top-lg-per-190 { top: 190% !important; }
  .top-lg-minus-per-190 { top: -190% !important; }
  .top-lg-195 { top: 19.5rem !important; }
  .top-lg-minus-195 { top: -19.5rem !important; }
  .top-lg-per-195 { top: 195% !important; }
  .top-lg-minus-per-195 { top: -195% !important; }
  .top-lg-200 { top: 20rem !important; }
  .top-lg-minus-200 { top: -20rem !important; }
  .top-lg-per-200 { top: 200% !important; }
  .top-lg-minus-per-200 { top: -200% !important; }
  .top-lg-205 { top: 20.5rem !important; }
  .top-lg-minus-205 { top: -20.5rem !important; }
  .top-lg-per-205 { top: 205% !important; }
  .top-lg-minus-per-205 { top: -205% !important; }
  .top-lg-210 { top: 21rem !important; }
  .top-lg-minus-210 { top: -21rem !important; }
  .top-lg-per-210 { top: 210% !important; }
  .top-lg-minus-per-210 { top: -210% !important; }
  .top-lg-215 { top: 21.5rem !important; }
  .top-lg-minus-215 { top: -21.5rem !important; }
  .top-lg-per-215 { top: 215% !important; }
  .top-lg-minus-per-215 { top: -215% !important; }
  .top-lg-220 { top: 22rem !important; }
  .top-lg-minus-220 { top: -22rem !important; }
  .top-lg-per-220 { top: 220% !important; }
  .top-lg-minus-per-220 { top: -220% !important; }
  .top-lg-225 { top: 22.5rem !important; }
  .top-lg-minus-225 { top: -22.5rem !important; }
  .top-lg-per-225 { top: 225% !important; }
  .top-lg-minus-per-225 { top: -225% !important; }
  .top-lg-230 { top: 23rem !important; }
  .top-lg-minus-230 { top: -23rem !important; }
  .top-lg-per-230 { top: 230% !important; }
  .top-lg-minus-per-230 { top: -230% !important; }
  .top-lg-235 { top: 23.5rem !important; }
  .top-lg-minus-235 { top: -23.5rem !important; }
  .top-lg-per-235 { top: 235% !important; }
  .top-lg-minus-per-235 { top: -235% !important; }
  .top-lg-240 { top: 24rem !important; }
  .top-lg-minus-240 { top: -24rem !important; }
  .top-lg-per-240 { top: 240% !important; }
  .top-lg-minus-per-240 { top: -240% !important; }
  .top-lg-245 { top: 24.5rem !important; }
  .top-lg-minus-245 { top: -24.5rem !important; }
  .top-lg-per-245 { top: 245% !important; }
  .top-lg-minus-per-245 { top: -245% !important; }
  .top-lg-250 { top: 25rem !important; }
  .top-lg-minus-250 { top: -25rem !important; }
  .top-lg-per-250 { top: 250% !important; }
  .top-lg-minus-per-250 { top: -250% !important; }
  .top-lg-255 { top: 25.5rem !important; }
  .top-lg-minus-255 { top: -25.5rem !important; }
  .top-lg-per-255 { top: 255% !important; }
  .top-lg-minus-per-255 { top: -255% !important; }
  .top-lg-260 { top: 26rem !important; }
  .top-lg-minus-260 { top: -26rem !important; }
  .top-lg-per-260 { top: 260% !important; }
  .top-lg-minus-per-260 { top: -260% !important; }
  .top-lg-265 { top: 26.5rem !important; }
  .top-lg-minus-265 { top: -26.5rem !important; }
  .top-lg-per-265 { top: 265% !important; }
  .top-lg-minus-per-265 { top: -265% !important; }
  .top-lg-270 { top: 27rem !important; }
  .top-lg-minus-270 { top: -27rem !important; }
  .top-lg-per-270 { top: 270% !important; }
  .top-lg-minus-per-270 { top: -270% !important; }
  .top-lg-275 { top: 27.5rem !important; }
  .top-lg-minus-275 { top: -27.5rem !important; }
  .top-lg-per-275 { top: 275% !important; }
  .top-lg-minus-per-275 { top: -275% !important; }
  .top-lg-280 { top: 28rem !important; }
  .top-lg-minus-280 { top: -28rem !important; }
  .top-lg-per-280 { top: 280% !important; }
  .top-lg-minus-per-280 { top: -280% !important; }
  .top-lg-285 { top: 28.5rem !important; }
  .top-lg-minus-285 { top: -28.5rem !important; }
  .top-lg-per-285 { top: 285% !important; }
  .top-lg-minus-per-285 { top: -285% !important; }
  .top-lg-290 { top: 29rem !important; }
  .top-lg-minus-290 { top: -29rem !important; }
  .top-lg-per-290 { top: 290% !important; }
  .top-lg-minus-per-290 { top: -290% !important; }
  .top-lg-295 { top: 29.5rem !important; }
  .top-lg-minus-295 { top: -29.5rem !important; }
  .top-lg-per-295 { top: 295% !important; }
  .top-lg-minus-per-295 { top: -295% !important; }
  .top-lg-300 { top: 30rem !important; }
  .top-lg-minus-300 { top: -30rem !important; }
  .top-lg-per-300 { top: 300% !important; }
  .top-lg-minus-per-300 { top: -300% !important; }
  .top-lg-305 { top: 30.5rem !important; }
  .top-lg-minus-305 { top: -30.5rem !important; }
  .top-lg-per-305 { top: 305% !important; }
  .top-lg-minus-per-305 { top: -305% !important; }
  .top-lg-310 { top: 31rem !important; }
  .top-lg-minus-310 { top: -31rem !important; }
  .top-lg-per-310 { top: 310% !important; }
  .top-lg-minus-per-310 { top: -310% !important; }
  .top-lg-315 { top: 31.5rem !important; }
  .top-lg-minus-315 { top: -31.5rem !important; }
  .top-lg-per-315 { top: 315% !important; }
  .top-lg-minus-per-315 { top: -315% !important; }
  .top-lg-320 { top: 32rem !important; }
  .top-lg-minus-320 { top: -32rem !important; }
  .top-lg-per-320 { top: 320% !important; }
  .top-lg-minus-per-320 { top: -320% !important; }
  .top-lg-325 { top: 32.5rem !important; }
  .top-lg-minus-325 { top: -32.5rem !important; }
  .top-lg-per-325 { top: 325% !important; }
  .top-lg-minus-per-325 { top: -325% !important; }
  .top-lg-330 { top: 33rem !important; }
  .top-lg-minus-330 { top: -33rem !important; }
  .top-lg-per-330 { top: 330% !important; }
  .top-lg-minus-per-330 { top: -330% !important; }
  .top-lg-335 { top: 33.5rem !important; }
  .top-lg-minus-335 { top: -33.5rem !important; }
  .top-lg-per-335 { top: 335% !important; }
  .top-lg-minus-per-335 { top: -335% !important; }
  .top-lg-340 { top: 34rem !important; }
  .top-lg-minus-340 { top: -34rem !important; }
  .top-lg-per-340 { top: 340% !important; }
  .top-lg-minus-per-340 { top: -340% !important; }
  .top-lg-345 { top: 34.5rem !important; }
  .top-lg-minus-345 { top: -34.5rem !important; }
  .top-lg-per-345 { top: 345% !important; }
  .top-lg-minus-per-345 { top: -345% !important; }
  .top-lg-350 { top: 35rem !important; }
  .top-lg-minus-350 { top: -35rem !important; }
  .top-lg-per-350 { top: 350% !important; }
  .top-lg-minus-per-350 { top: -350% !important; }
  .top-lg-355 { top: 35.5rem !important; }
  .top-lg-minus-355 { top: -35.5rem !important; }
  .top-lg-per-355 { top: 355% !important; }
  .top-lg-minus-per-355 { top: -355% !important; }
  .top-lg-360 { top: 36rem !important; }
  .top-lg-minus-360 { top: -36rem !important; }
  .top-lg-per-360 { top: 360% !important; }
  .top-lg-minus-per-360 { top: -360% !important; }
  .top-lg-365 { top: 36.5rem !important; }
  .top-lg-minus-365 { top: -36.5rem !important; }
  .top-lg-per-365 { top: 365% !important; }
  .top-lg-minus-per-365 { top: -365% !important; }
  .top-lg-370 { top: 37rem !important; }
  .top-lg-minus-370 { top: -37rem !important; }
  .top-lg-per-370 { top: 370% !important; }
  .top-lg-minus-per-370 { top: -370% !important; }
  .top-lg-375 { top: 37.5rem !important; }
  .top-lg-minus-375 { top: -37.5rem !important; }
  .top-lg-per-375 { top: 375% !important; }
  .top-lg-minus-per-375 { top: -375% !important; }
  .top-lg-380 { top: 38rem !important; }
  .top-lg-minus-380 { top: -38rem !important; }
  .top-lg-per-380 { top: 380% !important; }
  .top-lg-minus-per-380 { top: -380% !important; }
  .top-lg-385 { top: 38.5rem !important; }
  .top-lg-minus-385 { top: -38.5rem !important; }
  .top-lg-per-385 { top: 385% !important; }
  .top-lg-minus-per-385 { top: -385% !important; }
  .top-lg-390 { top: 39rem !important; }
  .top-lg-minus-390 { top: -39rem !important; }
  .top-lg-per-390 { top: 390% !important; }
  .top-lg-minus-per-390 { top: -390% !important; }
  .top-lg-395 { top: 39.5rem !important; }
  .top-lg-minus-395 { top: -39.5rem !important; }
  .top-lg-per-395 { top: 395% !important; }
  .top-lg-minus-per-395 { top: -395% !important; }
  .top-lg-400 { top: 40rem !important; }
  .top-lg-minus-400 { top: -40rem !important; }
  .top-lg-per-400 { top: 400% !important; }
  .top-lg-minus-per-400 { top: -400% !important; }
  .top-lg-405 { top: 40.5rem !important; }
  .top-lg-minus-405 { top: -40.5rem !important; }
  .top-lg-per-405 { top: 405% !important; }
  .top-lg-minus-per-405 { top: -405% !important; }
  .top-lg-410 { top: 41rem !important; }
  .top-lg-minus-410 { top: -41rem !important; }
  .top-lg-per-410 { top: 410% !important; }
  .top-lg-minus-per-410 { top: -410% !important; }
  .top-lg-415 { top: 41.5rem !important; }
  .top-lg-minus-415 { top: -41.5rem !important; }
  .top-lg-per-415 { top: 415% !important; }
  .top-lg-minus-per-415 { top: -415% !important; }
  .top-lg-420 { top: 42rem !important; }
  .top-lg-minus-420 { top: -42rem !important; }
  .top-lg-per-420 { top: 420% !important; }
  .top-lg-minus-per-420 { top: -420% !important; }
  .top-lg-425 { top: 42.5rem !important; }
  .top-lg-minus-425 { top: -42.5rem !important; }
  .top-lg-per-425 { top: 425% !important; }
  .top-lg-minus-per-425 { top: -425% !important; }
  .top-lg-430 { top: 43rem !important; }
  .top-lg-minus-430 { top: -43rem !important; }
  .top-lg-per-430 { top: 430% !important; }
  .top-lg-minus-per-430 { top: -430% !important; }
  .top-lg-435 { top: 43.5rem !important; }
  .top-lg-minus-435 { top: -43.5rem !important; }
  .top-lg-per-435 { top: 435% !important; }
  .top-lg-minus-per-435 { top: -435% !important; }
  .top-lg-440 { top: 44rem !important; }
  .top-lg-minus-440 { top: -44rem !important; }
  .top-lg-per-440 { top: 440% !important; }
  .top-lg-minus-per-440 { top: -440% !important; }
  .top-lg-445 { top: 44.5rem !important; }
  .top-lg-minus-445 { top: -44.5rem !important; }
  .top-lg-per-445 { top: 445% !important; }
  .top-lg-minus-per-445 { top: -445% !important; }
  .top-lg-450 { top: 45rem !important; }
  .top-lg-minus-450 { top: -45rem !important; }
  .top-lg-per-450 { top: 450% !important; }
  .top-lg-minus-per-450 { top: -450% !important; }
  .top-lg-455 { top: 45.5rem !important; }
  .top-lg-minus-455 { top: -45.5rem !important; }
  .top-lg-per-455 { top: 455% !important; }
  .top-lg-minus-per-455 { top: -455% !important; }
  .top-lg-460 { top: 46rem !important; }
  .top-lg-minus-460 { top: -46rem !important; }
  .top-lg-per-460 { top: 460% !important; }
  .top-lg-minus-per-460 { top: -460% !important; }
  .top-lg-465 { top: 46.5rem !important; }
  .top-lg-minus-465 { top: -46.5rem !important; }
  .top-lg-per-465 { top: 465% !important; }
  .top-lg-minus-per-465 { top: -465% !important; }
  .top-lg-470 { top: 47rem !important; }
  .top-lg-minus-470 { top: -47rem !important; }
  .top-lg-per-470 { top: 470% !important; }
  .top-lg-minus-per-470 { top: -470% !important; }
  .top-lg-475 { top: 47.5rem !important; }
  .top-lg-minus-475 { top: -47.5rem !important; }
  .top-lg-per-475 { top: 475% !important; }
  .top-lg-minus-per-475 { top: -475% !important; }
  .top-lg-480 { top: 48rem !important; }
  .top-lg-minus-480 { top: -48rem !important; }
  .top-lg-per-480 { top: 480% !important; }
  .top-lg-minus-per-480 { top: -480% !important; }
  .top-lg-485 { top: 48.5rem !important; }
  .top-lg-minus-485 { top: -48.5rem !important; }
  .top-lg-per-485 { top: 485% !important; }
  .top-lg-minus-per-485 { top: -485% !important; }
  .top-lg-490 { top: 49rem !important; }
  .top-lg-minus-490 { top: -49rem !important; }
  .top-lg-per-490 { top: 490% !important; }
  .top-lg-minus-per-490 { top: -490% !important; }
  .top-lg-495 { top: 49.5rem !important; }
  .top-lg-minus-495 { top: -49.5rem !important; }
  .top-lg-per-495 { top: 495% !important; }
  .top-lg-minus-per-495 { top: -495% !important; }
  .top-lg-500 { top: 50rem !important; }
  .top-lg-minus-500 { top: -50rem !important; }
  .top-lg-per-500 { top: 500% !important; }
  .top-lg-minus-per-500 { top: -500% !important; }
  .top-lg-auto { top: auto !important; } }

.bottom-0 { bottom: 0rem !important; }

.bottom-minus-0 { bottom: 0rem !important; }

.bottom-per-0 { bottom: 0% !important; }

.bottom-minus-per-0 { bottom: 0% !important; }

.bottom-5 { bottom: 0.5rem !important; }

.bottom-minus-5 { bottom: -0.5rem !important; }

.bottom-per-5 { bottom: 5% !important; }

.bottom-minus-per-5 { bottom: -5% !important; }

.bottom-10 { bottom: 1rem !important; }

.bottom-minus-10 { bottom: -1rem !important; }

.bottom-per-10 { bottom: 10% !important; }

.bottom-minus-per-10 { bottom: -10% !important; }

.bottom-15 { bottom: 1.5rem !important; }

.bottom-minus-15 { bottom: -1.5rem !important; }

.bottom-per-15 { bottom: 15% !important; }

.bottom-minus-per-15 { bottom: -15% !important; }

.bottom-20 { bottom: 2rem !important; }

.bottom-minus-20 { bottom: -2rem !important; }

.bottom-per-20 { bottom: 20% !important; }

.bottom-minus-per-20 { bottom: -20% !important; }

.bottom-25 { bottom: 2.5rem !important; }

.bottom-minus-25 { bottom: -2.5rem !important; }

.bottom-per-25 { bottom: 25% !important; }

.bottom-minus-per-25 { bottom: -25% !important; }

.bottom-30 { bottom: 3rem !important; }

.bottom-minus-30 { bottom: -3rem !important; }

.bottom-per-30 { bottom: 30% !important; }

.bottom-minus-per-30 { bottom: -30% !important; }

.bottom-35 { bottom: 3.5rem !important; }

.bottom-minus-35 { bottom: -3.5rem !important; }

.bottom-per-35 { bottom: 35% !important; }

.bottom-minus-per-35 { bottom: -35% !important; }

.bottom-40 { bottom: 4rem !important; }

.bottom-minus-40 { bottom: -4rem !important; }

.bottom-per-40 { bottom: 40% !important; }

.bottom-minus-per-40 { bottom: -40% !important; }

.bottom-45 { bottom: 4.5rem !important; }

.bottom-minus-45 { bottom: -4.5rem !important; }

.bottom-per-45 { bottom: 45% !important; }

.bottom-minus-per-45 { bottom: -45% !important; }

.bottom-50 { bottom: 5rem !important; }

.bottom-minus-50 { bottom: -5rem !important; }

.bottom-per-50 { bottom: 50% !important; }

.bottom-minus-per-50 { bottom: -50% !important; }

.bottom-55 { bottom: 5.5rem !important; }

.bottom-minus-55 { bottom: -5.5rem !important; }

.bottom-per-55 { bottom: 55% !important; }

.bottom-minus-per-55 { bottom: -55% !important; }

.bottom-60 { bottom: 6rem !important; }

.bottom-minus-60 { bottom: -6rem !important; }

.bottom-per-60 { bottom: 60% !important; }

.bottom-minus-per-60 { bottom: -60% !important; }

.bottom-65 { bottom: 6.5rem !important; }

.bottom-minus-65 { bottom: -6.5rem !important; }

.bottom-per-65 { bottom: 65% !important; }

.bottom-minus-per-65 { bottom: -65% !important; }

.bottom-70 { bottom: 7rem !important; }

.bottom-minus-70 { bottom: -7rem !important; }

.bottom-per-70 { bottom: 70% !important; }

.bottom-minus-per-70 { bottom: -70% !important; }

.bottom-75 { bottom: 7.5rem !important; }

.bottom-minus-75 { bottom: -7.5rem !important; }

.bottom-per-75 { bottom: 75% !important; }

.bottom-minus-per-75 { bottom: -75% !important; }

.bottom-80 { bottom: 8rem !important; }

.bottom-minus-80 { bottom: -8rem !important; }

.bottom-per-80 { bottom: 80% !important; }

.bottom-minus-per-80 { bottom: -80% !important; }

.bottom-85 { bottom: 8.5rem !important; }

.bottom-minus-85 { bottom: -8.5rem !important; }

.bottom-per-85 { bottom: 85% !important; }

.bottom-minus-per-85 { bottom: -85% !important; }

.bottom-90 { bottom: 9rem !important; }

.bottom-minus-90 { bottom: -9rem !important; }

.bottom-per-90 { bottom: 90% !important; }

.bottom-minus-per-90 { bottom: -90% !important; }

.bottom-95 { bottom: 9.5rem !important; }

.bottom-minus-95 { bottom: -9.5rem !important; }

.bottom-per-95 { bottom: 95% !important; }

.bottom-minus-per-95 { bottom: -95% !important; }

.bottom-100 { bottom: 10rem !important; }

.bottom-minus-100 { bottom: -10rem !important; }

.bottom-per-100 { bottom: 100% !important; }

.bottom-minus-per-100 { bottom: -100% !important; }

.bottom-105 { bottom: 10.5rem !important; }

.bottom-minus-105 { bottom: -10.5rem !important; }

.bottom-per-105 { bottom: 105% !important; }

.bottom-minus-per-105 { bottom: -105% !important; }

.bottom-110 { bottom: 11rem !important; }

.bottom-minus-110 { bottom: -11rem !important; }

.bottom-per-110 { bottom: 110% !important; }

.bottom-minus-per-110 { bottom: -110% !important; }

.bottom-115 { bottom: 11.5rem !important; }

.bottom-minus-115 { bottom: -11.5rem !important; }

.bottom-per-115 { bottom: 115% !important; }

.bottom-minus-per-115 { bottom: -115% !important; }

.bottom-120 { bottom: 12rem !important; }

.bottom-minus-120 { bottom: -12rem !important; }

.bottom-per-120 { bottom: 120% !important; }

.bottom-minus-per-120 { bottom: -120% !important; }

.bottom-125 { bottom: 12.5rem !important; }

.bottom-minus-125 { bottom: -12.5rem !important; }

.bottom-per-125 { bottom: 125% !important; }

.bottom-minus-per-125 { bottom: -125% !important; }

.bottom-130 { bottom: 13rem !important; }

.bottom-minus-130 { bottom: -13rem !important; }

.bottom-per-130 { bottom: 130% !important; }

.bottom-minus-per-130 { bottom: -130% !important; }

.bottom-135 { bottom: 13.5rem !important; }

.bottom-minus-135 { bottom: -13.5rem !important; }

.bottom-per-135 { bottom: 135% !important; }

.bottom-minus-per-135 { bottom: -135% !important; }

.bottom-140 { bottom: 14rem !important; }

.bottom-minus-140 { bottom: -14rem !important; }

.bottom-per-140 { bottom: 140% !important; }

.bottom-minus-per-140 { bottom: -140% !important; }

.bottom-145 { bottom: 14.5rem !important; }

.bottom-minus-145 { bottom: -14.5rem !important; }

.bottom-per-145 { bottom: 145% !important; }

.bottom-minus-per-145 { bottom: -145% !important; }

.bottom-150 { bottom: 15rem !important; }

.bottom-minus-150 { bottom: -15rem !important; }

.bottom-per-150 { bottom: 150% !important; }

.bottom-minus-per-150 { bottom: -150% !important; }

.bottom-155 { bottom: 15.5rem !important; }

.bottom-minus-155 { bottom: -15.5rem !important; }

.bottom-per-155 { bottom: 155% !important; }

.bottom-minus-per-155 { bottom: -155% !important; }

.bottom-160 { bottom: 16rem !important; }

.bottom-minus-160 { bottom: -16rem !important; }

.bottom-per-160 { bottom: 160% !important; }

.bottom-minus-per-160 { bottom: -160% !important; }

.bottom-165 { bottom: 16.5rem !important; }

.bottom-minus-165 { bottom: -16.5rem !important; }

.bottom-per-165 { bottom: 165% !important; }

.bottom-minus-per-165 { bottom: -165% !important; }

.bottom-170 { bottom: 17rem !important; }

.bottom-minus-170 { bottom: -17rem !important; }

.bottom-per-170 { bottom: 170% !important; }

.bottom-minus-per-170 { bottom: -170% !important; }

.bottom-175 { bottom: 17.5rem !important; }

.bottom-minus-175 { bottom: -17.5rem !important; }

.bottom-per-175 { bottom: 175% !important; }

.bottom-minus-per-175 { bottom: -175% !important; }

.bottom-180 { bottom: 18rem !important; }

.bottom-minus-180 { bottom: -18rem !important; }

.bottom-per-180 { bottom: 180% !important; }

.bottom-minus-per-180 { bottom: -180% !important; }

.bottom-185 { bottom: 18.5rem !important; }

.bottom-minus-185 { bottom: -18.5rem !important; }

.bottom-per-185 { bottom: 185% !important; }

.bottom-minus-per-185 { bottom: -185% !important; }

.bottom-190 { bottom: 19rem !important; }

.bottom-minus-190 { bottom: -19rem !important; }

.bottom-per-190 { bottom: 190% !important; }

.bottom-minus-per-190 { bottom: -190% !important; }

.bottom-195 { bottom: 19.5rem !important; }

.bottom-minus-195 { bottom: -19.5rem !important; }

.bottom-per-195 { bottom: 195% !important; }

.bottom-minus-per-195 { bottom: -195% !important; }

.bottom-200 { bottom: 20rem !important; }

.bottom-minus-200 { bottom: -20rem !important; }

.bottom-per-200 { bottom: 200% !important; }

.bottom-minus-per-200 { bottom: -200% !important; }

.bottom-205 { bottom: 20.5rem !important; }

.bottom-minus-205 { bottom: -20.5rem !important; }

.bottom-per-205 { bottom: 205% !important; }

.bottom-minus-per-205 { bottom: -205% !important; }

.bottom-210 { bottom: 21rem !important; }

.bottom-minus-210 { bottom: -21rem !important; }

.bottom-per-210 { bottom: 210% !important; }

.bottom-minus-per-210 { bottom: -210% !important; }

.bottom-215 { bottom: 21.5rem !important; }

.bottom-minus-215 { bottom: -21.5rem !important; }

.bottom-per-215 { bottom: 215% !important; }

.bottom-minus-per-215 { bottom: -215% !important; }

.bottom-220 { bottom: 22rem !important; }

.bottom-minus-220 { bottom: -22rem !important; }

.bottom-per-220 { bottom: 220% !important; }

.bottom-minus-per-220 { bottom: -220% !important; }

.bottom-225 { bottom: 22.5rem !important; }

.bottom-minus-225 { bottom: -22.5rem !important; }

.bottom-per-225 { bottom: 225% !important; }

.bottom-minus-per-225 { bottom: -225% !important; }

.bottom-230 { bottom: 23rem !important; }

.bottom-minus-230 { bottom: -23rem !important; }

.bottom-per-230 { bottom: 230% !important; }

.bottom-minus-per-230 { bottom: -230% !important; }

.bottom-235 { bottom: 23.5rem !important; }

.bottom-minus-235 { bottom: -23.5rem !important; }

.bottom-per-235 { bottom: 235% !important; }

.bottom-minus-per-235 { bottom: -235% !important; }

.bottom-240 { bottom: 24rem !important; }

.bottom-minus-240 { bottom: -24rem !important; }

.bottom-per-240 { bottom: 240% !important; }

.bottom-minus-per-240 { bottom: -240% !important; }

.bottom-245 { bottom: 24.5rem !important; }

.bottom-minus-245 { bottom: -24.5rem !important; }

.bottom-per-245 { bottom: 245% !important; }

.bottom-minus-per-245 { bottom: -245% !important; }

.bottom-250 { bottom: 25rem !important; }

.bottom-minus-250 { bottom: -25rem !important; }

.bottom-per-250 { bottom: 250% !important; }

.bottom-minus-per-250 { bottom: -250% !important; }

.bottom-255 { bottom: 25.5rem !important; }

.bottom-minus-255 { bottom: -25.5rem !important; }

.bottom-per-255 { bottom: 255% !important; }

.bottom-minus-per-255 { bottom: -255% !important; }

.bottom-260 { bottom: 26rem !important; }

.bottom-minus-260 { bottom: -26rem !important; }

.bottom-per-260 { bottom: 260% !important; }

.bottom-minus-per-260 { bottom: -260% !important; }

.bottom-265 { bottom: 26.5rem !important; }

.bottom-minus-265 { bottom: -26.5rem !important; }

.bottom-per-265 { bottom: 265% !important; }

.bottom-minus-per-265 { bottom: -265% !important; }

.bottom-270 { bottom: 27rem !important; }

.bottom-minus-270 { bottom: -27rem !important; }

.bottom-per-270 { bottom: 270% !important; }

.bottom-minus-per-270 { bottom: -270% !important; }

.bottom-275 { bottom: 27.5rem !important; }

.bottom-minus-275 { bottom: -27.5rem !important; }

.bottom-per-275 { bottom: 275% !important; }

.bottom-minus-per-275 { bottom: -275% !important; }

.bottom-280 { bottom: 28rem !important; }

.bottom-minus-280 { bottom: -28rem !important; }

.bottom-per-280 { bottom: 280% !important; }

.bottom-minus-per-280 { bottom: -280% !important; }

.bottom-285 { bottom: 28.5rem !important; }

.bottom-minus-285 { bottom: -28.5rem !important; }

.bottom-per-285 { bottom: 285% !important; }

.bottom-minus-per-285 { bottom: -285% !important; }

.bottom-290 { bottom: 29rem !important; }

.bottom-minus-290 { bottom: -29rem !important; }

.bottom-per-290 { bottom: 290% !important; }

.bottom-minus-per-290 { bottom: -290% !important; }

.bottom-295 { bottom: 29.5rem !important; }

.bottom-minus-295 { bottom: -29.5rem !important; }

.bottom-per-295 { bottom: 295% !important; }

.bottom-minus-per-295 { bottom: -295% !important; }

.bottom-300 { bottom: 30rem !important; }

.bottom-minus-300 { bottom: -30rem !important; }

.bottom-per-300 { bottom: 300% !important; }

.bottom-minus-per-300 { bottom: -300% !important; }

.bottom-305 { bottom: 30.5rem !important; }

.bottom-minus-305 { bottom: -30.5rem !important; }

.bottom-per-305 { bottom: 305% !important; }

.bottom-minus-per-305 { bottom: -305% !important; }

.bottom-310 { bottom: 31rem !important; }

.bottom-minus-310 { bottom: -31rem !important; }

.bottom-per-310 { bottom: 310% !important; }

.bottom-minus-per-310 { bottom: -310% !important; }

.bottom-315 { bottom: 31.5rem !important; }

.bottom-minus-315 { bottom: -31.5rem !important; }

.bottom-per-315 { bottom: 315% !important; }

.bottom-minus-per-315 { bottom: -315% !important; }

.bottom-320 { bottom: 32rem !important; }

.bottom-minus-320 { bottom: -32rem !important; }

.bottom-per-320 { bottom: 320% !important; }

.bottom-minus-per-320 { bottom: -320% !important; }

.bottom-325 { bottom: 32.5rem !important; }

.bottom-minus-325 { bottom: -32.5rem !important; }

.bottom-per-325 { bottom: 325% !important; }

.bottom-minus-per-325 { bottom: -325% !important; }

.bottom-330 { bottom: 33rem !important; }

.bottom-minus-330 { bottom: -33rem !important; }

.bottom-per-330 { bottom: 330% !important; }

.bottom-minus-per-330 { bottom: -330% !important; }

.bottom-335 { bottom: 33.5rem !important; }

.bottom-minus-335 { bottom: -33.5rem !important; }

.bottom-per-335 { bottom: 335% !important; }

.bottom-minus-per-335 { bottom: -335% !important; }

.bottom-340 { bottom: 34rem !important; }

.bottom-minus-340 { bottom: -34rem !important; }

.bottom-per-340 { bottom: 340% !important; }

.bottom-minus-per-340 { bottom: -340% !important; }

.bottom-345 { bottom: 34.5rem !important; }

.bottom-minus-345 { bottom: -34.5rem !important; }

.bottom-per-345 { bottom: 345% !important; }

.bottom-minus-per-345 { bottom: -345% !important; }

.bottom-350 { bottom: 35rem !important; }

.bottom-minus-350 { bottom: -35rem !important; }

.bottom-per-350 { bottom: 350% !important; }

.bottom-minus-per-350 { bottom: -350% !important; }

.bottom-355 { bottom: 35.5rem !important; }

.bottom-minus-355 { bottom: -35.5rem !important; }

.bottom-per-355 { bottom: 355% !important; }

.bottom-minus-per-355 { bottom: -355% !important; }

.bottom-360 { bottom: 36rem !important; }

.bottom-minus-360 { bottom: -36rem !important; }

.bottom-per-360 { bottom: 360% !important; }

.bottom-minus-per-360 { bottom: -360% !important; }

.bottom-365 { bottom: 36.5rem !important; }

.bottom-minus-365 { bottom: -36.5rem !important; }

.bottom-per-365 { bottom: 365% !important; }

.bottom-minus-per-365 { bottom: -365% !important; }

.bottom-370 { bottom: 37rem !important; }

.bottom-minus-370 { bottom: -37rem !important; }

.bottom-per-370 { bottom: 370% !important; }

.bottom-minus-per-370 { bottom: -370% !important; }

.bottom-375 { bottom: 37.5rem !important; }

.bottom-minus-375 { bottom: -37.5rem !important; }

.bottom-per-375 { bottom: 375% !important; }

.bottom-minus-per-375 { bottom: -375% !important; }

.bottom-380 { bottom: 38rem !important; }

.bottom-minus-380 { bottom: -38rem !important; }

.bottom-per-380 { bottom: 380% !important; }

.bottom-minus-per-380 { bottom: -380% !important; }

.bottom-385 { bottom: 38.5rem !important; }

.bottom-minus-385 { bottom: -38.5rem !important; }

.bottom-per-385 { bottom: 385% !important; }

.bottom-minus-per-385 { bottom: -385% !important; }

.bottom-390 { bottom: 39rem !important; }

.bottom-minus-390 { bottom: -39rem !important; }

.bottom-per-390 { bottom: 390% !important; }

.bottom-minus-per-390 { bottom: -390% !important; }

.bottom-395 { bottom: 39.5rem !important; }

.bottom-minus-395 { bottom: -39.5rem !important; }

.bottom-per-395 { bottom: 395% !important; }

.bottom-minus-per-395 { bottom: -395% !important; }

.bottom-400 { bottom: 40rem !important; }

.bottom-minus-400 { bottom: -40rem !important; }

.bottom-per-400 { bottom: 400% !important; }

.bottom-minus-per-400 { bottom: -400% !important; }

.bottom-405 { bottom: 40.5rem !important; }

.bottom-minus-405 { bottom: -40.5rem !important; }

.bottom-per-405 { bottom: 405% !important; }

.bottom-minus-per-405 { bottom: -405% !important; }

.bottom-410 { bottom: 41rem !important; }

.bottom-minus-410 { bottom: -41rem !important; }

.bottom-per-410 { bottom: 410% !important; }

.bottom-minus-per-410 { bottom: -410% !important; }

.bottom-415 { bottom: 41.5rem !important; }

.bottom-minus-415 { bottom: -41.5rem !important; }

.bottom-per-415 { bottom: 415% !important; }

.bottom-minus-per-415 { bottom: -415% !important; }

.bottom-420 { bottom: 42rem !important; }

.bottom-minus-420 { bottom: -42rem !important; }

.bottom-per-420 { bottom: 420% !important; }

.bottom-minus-per-420 { bottom: -420% !important; }

.bottom-425 { bottom: 42.5rem !important; }

.bottom-minus-425 { bottom: -42.5rem !important; }

.bottom-per-425 { bottom: 425% !important; }

.bottom-minus-per-425 { bottom: -425% !important; }

.bottom-430 { bottom: 43rem !important; }

.bottom-minus-430 { bottom: -43rem !important; }

.bottom-per-430 { bottom: 430% !important; }

.bottom-minus-per-430 { bottom: -430% !important; }

.bottom-435 { bottom: 43.5rem !important; }

.bottom-minus-435 { bottom: -43.5rem !important; }

.bottom-per-435 { bottom: 435% !important; }

.bottom-minus-per-435 { bottom: -435% !important; }

.bottom-440 { bottom: 44rem !important; }

.bottom-minus-440 { bottom: -44rem !important; }

.bottom-per-440 { bottom: 440% !important; }

.bottom-minus-per-440 { bottom: -440% !important; }

.bottom-445 { bottom: 44.5rem !important; }

.bottom-minus-445 { bottom: -44.5rem !important; }

.bottom-per-445 { bottom: 445% !important; }

.bottom-minus-per-445 { bottom: -445% !important; }

.bottom-450 { bottom: 45rem !important; }

.bottom-minus-450 { bottom: -45rem !important; }

.bottom-per-450 { bottom: 450% !important; }

.bottom-minus-per-450 { bottom: -450% !important; }

.bottom-455 { bottom: 45.5rem !important; }

.bottom-minus-455 { bottom: -45.5rem !important; }

.bottom-per-455 { bottom: 455% !important; }

.bottom-minus-per-455 { bottom: -455% !important; }

.bottom-460 { bottom: 46rem !important; }

.bottom-minus-460 { bottom: -46rem !important; }

.bottom-per-460 { bottom: 460% !important; }

.bottom-minus-per-460 { bottom: -460% !important; }

.bottom-465 { bottom: 46.5rem !important; }

.bottom-minus-465 { bottom: -46.5rem !important; }

.bottom-per-465 { bottom: 465% !important; }

.bottom-minus-per-465 { bottom: -465% !important; }

.bottom-470 { bottom: 47rem !important; }

.bottom-minus-470 { bottom: -47rem !important; }

.bottom-per-470 { bottom: 470% !important; }

.bottom-minus-per-470 { bottom: -470% !important; }

.bottom-475 { bottom: 47.5rem !important; }

.bottom-minus-475 { bottom: -47.5rem !important; }

.bottom-per-475 { bottom: 475% !important; }

.bottom-minus-per-475 { bottom: -475% !important; }

.bottom-480 { bottom: 48rem !important; }

.bottom-minus-480 { bottom: -48rem !important; }

.bottom-per-480 { bottom: 480% !important; }

.bottom-minus-per-480 { bottom: -480% !important; }

.bottom-485 { bottom: 48.5rem !important; }

.bottom-minus-485 { bottom: -48.5rem !important; }

.bottom-per-485 { bottom: 485% !important; }

.bottom-minus-per-485 { bottom: -485% !important; }

.bottom-490 { bottom: 49rem !important; }

.bottom-minus-490 { bottom: -49rem !important; }

.bottom-per-490 { bottom: 490% !important; }

.bottom-minus-per-490 { bottom: -490% !important; }

.bottom-495 { bottom: 49.5rem !important; }

.bottom-minus-495 { bottom: -49.5rem !important; }

.bottom-per-495 { bottom: 495% !important; }

.bottom-minus-per-495 { bottom: -495% !important; }

.bottom-500 { bottom: 50rem !important; }

.bottom-minus-500 { bottom: -50rem !important; }

.bottom-per-500 { bottom: 500% !important; }

.bottom-minus-per-500 { bottom: -500% !important; }

.bottom-auto { bottom: auto !important; }

@media (min-width: 991px) { .bottom-lg-0 { bottom: 0rem !important; }
  .bottom-lg-minus-0 { bottom: 0rem !important; }
  .bottom-lg-per-0 { bottom: 0% !important; }
  .bottom-lg-minus-per-0 { bottom: 0% !important; }
  .bottom-lg-5 { bottom: 0.5rem !important; }
  .bottom-lg-minus-5 { bottom: -0.5rem !important; }
  .bottom-lg-per-5 { bottom: 5% !important; }
  .bottom-lg-minus-per-5 { bottom: -5% !important; }
  .bottom-lg-10 { bottom: 1rem !important; }
  .bottom-lg-minus-10 { bottom: -1rem !important; }
  .bottom-lg-per-10 { bottom: 10% !important; }
  .bottom-lg-minus-per-10 { bottom: -10% !important; }
  .bottom-lg-15 { bottom: 1.5rem !important; }
  .bottom-lg-minus-15 { bottom: -1.5rem !important; }
  .bottom-lg-per-15 { bottom: 15% !important; }
  .bottom-lg-minus-per-15 { bottom: -15% !important; }
  .bottom-lg-20 { bottom: 2rem !important; }
  .bottom-lg-minus-20 { bottom: -2rem !important; }
  .bottom-lg-per-20 { bottom: 20% !important; }
  .bottom-lg-minus-per-20 { bottom: -20% !important; }
  .bottom-lg-25 { bottom: 2.5rem !important; }
  .bottom-lg-minus-25 { bottom: -2.5rem !important; }
  .bottom-lg-per-25 { bottom: 25% !important; }
  .bottom-lg-minus-per-25 { bottom: -25% !important; }
  .bottom-lg-30 { bottom: 3rem !important; }
  .bottom-lg-minus-30 { bottom: -3rem !important; }
  .bottom-lg-per-30 { bottom: 30% !important; }
  .bottom-lg-minus-per-30 { bottom: -30% !important; }
  .bottom-lg-35 { bottom: 3.5rem !important; }
  .bottom-lg-minus-35 { bottom: -3.5rem !important; }
  .bottom-lg-per-35 { bottom: 35% !important; }
  .bottom-lg-minus-per-35 { bottom: -35% !important; }
  .bottom-lg-40 { bottom: 4rem !important; }
  .bottom-lg-minus-40 { bottom: -4rem !important; }
  .bottom-lg-per-40 { bottom: 40% !important; }
  .bottom-lg-minus-per-40 { bottom: -40% !important; }
  .bottom-lg-45 { bottom: 4.5rem !important; }
  .bottom-lg-minus-45 { bottom: -4.5rem !important; }
  .bottom-lg-per-45 { bottom: 45% !important; }
  .bottom-lg-minus-per-45 { bottom: -45% !important; }
  .bottom-lg-50 { bottom: 5rem !important; }
  .bottom-lg-minus-50 { bottom: -5rem !important; }
  .bottom-lg-per-50 { bottom: 50% !important; }
  .bottom-lg-minus-per-50 { bottom: -50% !important; }
  .bottom-lg-55 { bottom: 5.5rem !important; }
  .bottom-lg-minus-55 { bottom: -5.5rem !important; }
  .bottom-lg-per-55 { bottom: 55% !important; }
  .bottom-lg-minus-per-55 { bottom: -55% !important; }
  .bottom-lg-60 { bottom: 6rem !important; }
  .bottom-lg-minus-60 { bottom: -6rem !important; }
  .bottom-lg-per-60 { bottom: 60% !important; }
  .bottom-lg-minus-per-60 { bottom: -60% !important; }
  .bottom-lg-65 { bottom: 6.5rem !important; }
  .bottom-lg-minus-65 { bottom: -6.5rem !important; }
  .bottom-lg-per-65 { bottom: 65% !important; }
  .bottom-lg-minus-per-65 { bottom: -65% !important; }
  .bottom-lg-70 { bottom: 7rem !important; }
  .bottom-lg-minus-70 { bottom: -7rem !important; }
  .bottom-lg-per-70 { bottom: 70% !important; }
  .bottom-lg-minus-per-70 { bottom: -70% !important; }
  .bottom-lg-75 { bottom: 7.5rem !important; }
  .bottom-lg-minus-75 { bottom: -7.5rem !important; }
  .bottom-lg-per-75 { bottom: 75% !important; }
  .bottom-lg-minus-per-75 { bottom: -75% !important; }
  .bottom-lg-80 { bottom: 8rem !important; }
  .bottom-lg-minus-80 { bottom: -8rem !important; }
  .bottom-lg-per-80 { bottom: 80% !important; }
  .bottom-lg-minus-per-80 { bottom: -80% !important; }
  .bottom-lg-85 { bottom: 8.5rem !important; }
  .bottom-lg-minus-85 { bottom: -8.5rem !important; }
  .bottom-lg-per-85 { bottom: 85% !important; }
  .bottom-lg-minus-per-85 { bottom: -85% !important; }
  .bottom-lg-90 { bottom: 9rem !important; }
  .bottom-lg-minus-90 { bottom: -9rem !important; }
  .bottom-lg-per-90 { bottom: 90% !important; }
  .bottom-lg-minus-per-90 { bottom: -90% !important; }
  .bottom-lg-95 { bottom: 9.5rem !important; }
  .bottom-lg-minus-95 { bottom: -9.5rem !important; }
  .bottom-lg-per-95 { bottom: 95% !important; }
  .bottom-lg-minus-per-95 { bottom: -95% !important; }
  .bottom-lg-100 { bottom: 10rem !important; }
  .bottom-lg-minus-100 { bottom: -10rem !important; }
  .bottom-lg-per-100 { bottom: 100% !important; }
  .bottom-lg-minus-per-100 { bottom: -100% !important; }
  .bottom-lg-105 { bottom: 10.5rem !important; }
  .bottom-lg-minus-105 { bottom: -10.5rem !important; }
  .bottom-lg-per-105 { bottom: 105% !important; }
  .bottom-lg-minus-per-105 { bottom: -105% !important; }
  .bottom-lg-110 { bottom: 11rem !important; }
  .bottom-lg-minus-110 { bottom: -11rem !important; }
  .bottom-lg-per-110 { bottom: 110% !important; }
  .bottom-lg-minus-per-110 { bottom: -110% !important; }
  .bottom-lg-115 { bottom: 11.5rem !important; }
  .bottom-lg-minus-115 { bottom: -11.5rem !important; }
  .bottom-lg-per-115 { bottom: 115% !important; }
  .bottom-lg-minus-per-115 { bottom: -115% !important; }
  .bottom-lg-120 { bottom: 12rem !important; }
  .bottom-lg-minus-120 { bottom: -12rem !important; }
  .bottom-lg-per-120 { bottom: 120% !important; }
  .bottom-lg-minus-per-120 { bottom: -120% !important; }
  .bottom-lg-125 { bottom: 12.5rem !important; }
  .bottom-lg-minus-125 { bottom: -12.5rem !important; }
  .bottom-lg-per-125 { bottom: 125% !important; }
  .bottom-lg-minus-per-125 { bottom: -125% !important; }
  .bottom-lg-130 { bottom: 13rem !important; }
  .bottom-lg-minus-130 { bottom: -13rem !important; }
  .bottom-lg-per-130 { bottom: 130% !important; }
  .bottom-lg-minus-per-130 { bottom: -130% !important; }
  .bottom-lg-135 { bottom: 13.5rem !important; }
  .bottom-lg-minus-135 { bottom: -13.5rem !important; }
  .bottom-lg-per-135 { bottom: 135% !important; }
  .bottom-lg-minus-per-135 { bottom: -135% !important; }
  .bottom-lg-140 { bottom: 14rem !important; }
  .bottom-lg-minus-140 { bottom: -14rem !important; }
  .bottom-lg-per-140 { bottom: 140% !important; }
  .bottom-lg-minus-per-140 { bottom: -140% !important; }
  .bottom-lg-145 { bottom: 14.5rem !important; }
  .bottom-lg-minus-145 { bottom: -14.5rem !important; }
  .bottom-lg-per-145 { bottom: 145% !important; }
  .bottom-lg-minus-per-145 { bottom: -145% !important; }
  .bottom-lg-150 { bottom: 15rem !important; }
  .bottom-lg-minus-150 { bottom: -15rem !important; }
  .bottom-lg-per-150 { bottom: 150% !important; }
  .bottom-lg-minus-per-150 { bottom: -150% !important; }
  .bottom-lg-155 { bottom: 15.5rem !important; }
  .bottom-lg-minus-155 { bottom: -15.5rem !important; }
  .bottom-lg-per-155 { bottom: 155% !important; }
  .bottom-lg-minus-per-155 { bottom: -155% !important; }
  .bottom-lg-160 { bottom: 16rem !important; }
  .bottom-lg-minus-160 { bottom: -16rem !important; }
  .bottom-lg-per-160 { bottom: 160% !important; }
  .bottom-lg-minus-per-160 { bottom: -160% !important; }
  .bottom-lg-165 { bottom: 16.5rem !important; }
  .bottom-lg-minus-165 { bottom: -16.5rem !important; }
  .bottom-lg-per-165 { bottom: 165% !important; }
  .bottom-lg-minus-per-165 { bottom: -165% !important; }
  .bottom-lg-170 { bottom: 17rem !important; }
  .bottom-lg-minus-170 { bottom: -17rem !important; }
  .bottom-lg-per-170 { bottom: 170% !important; }
  .bottom-lg-minus-per-170 { bottom: -170% !important; }
  .bottom-lg-175 { bottom: 17.5rem !important; }
  .bottom-lg-minus-175 { bottom: -17.5rem !important; }
  .bottom-lg-per-175 { bottom: 175% !important; }
  .bottom-lg-minus-per-175 { bottom: -175% !important; }
  .bottom-lg-180 { bottom: 18rem !important; }
  .bottom-lg-minus-180 { bottom: -18rem !important; }
  .bottom-lg-per-180 { bottom: 180% !important; }
  .bottom-lg-minus-per-180 { bottom: -180% !important; }
  .bottom-lg-185 { bottom: 18.5rem !important; }
  .bottom-lg-minus-185 { bottom: -18.5rem !important; }
  .bottom-lg-per-185 { bottom: 185% !important; }
  .bottom-lg-minus-per-185 { bottom: -185% !important; }
  .bottom-lg-190 { bottom: 19rem !important; }
  .bottom-lg-minus-190 { bottom: -19rem !important; }
  .bottom-lg-per-190 { bottom: 190% !important; }
  .bottom-lg-minus-per-190 { bottom: -190% !important; }
  .bottom-lg-195 { bottom: 19.5rem !important; }
  .bottom-lg-minus-195 { bottom: -19.5rem !important; }
  .bottom-lg-per-195 { bottom: 195% !important; }
  .bottom-lg-minus-per-195 { bottom: -195% !important; }
  .bottom-lg-200 { bottom: 20rem !important; }
  .bottom-lg-minus-200 { bottom: -20rem !important; }
  .bottom-lg-per-200 { bottom: 200% !important; }
  .bottom-lg-minus-per-200 { bottom: -200% !important; }
  .bottom-lg-205 { bottom: 20.5rem !important; }
  .bottom-lg-minus-205 { bottom: -20.5rem !important; }
  .bottom-lg-per-205 { bottom: 205% !important; }
  .bottom-lg-minus-per-205 { bottom: -205% !important; }
  .bottom-lg-210 { bottom: 21rem !important; }
  .bottom-lg-minus-210 { bottom: -21rem !important; }
  .bottom-lg-per-210 { bottom: 210% !important; }
  .bottom-lg-minus-per-210 { bottom: -210% !important; }
  .bottom-lg-215 { bottom: 21.5rem !important; }
  .bottom-lg-minus-215 { bottom: -21.5rem !important; }
  .bottom-lg-per-215 { bottom: 215% !important; }
  .bottom-lg-minus-per-215 { bottom: -215% !important; }
  .bottom-lg-220 { bottom: 22rem !important; }
  .bottom-lg-minus-220 { bottom: -22rem !important; }
  .bottom-lg-per-220 { bottom: 220% !important; }
  .bottom-lg-minus-per-220 { bottom: -220% !important; }
  .bottom-lg-225 { bottom: 22.5rem !important; }
  .bottom-lg-minus-225 { bottom: -22.5rem !important; }
  .bottom-lg-per-225 { bottom: 225% !important; }
  .bottom-lg-minus-per-225 { bottom: -225% !important; }
  .bottom-lg-230 { bottom: 23rem !important; }
  .bottom-lg-minus-230 { bottom: -23rem !important; }
  .bottom-lg-per-230 { bottom: 230% !important; }
  .bottom-lg-minus-per-230 { bottom: -230% !important; }
  .bottom-lg-235 { bottom: 23.5rem !important; }
  .bottom-lg-minus-235 { bottom: -23.5rem !important; }
  .bottom-lg-per-235 { bottom: 235% !important; }
  .bottom-lg-minus-per-235 { bottom: -235% !important; }
  .bottom-lg-240 { bottom: 24rem !important; }
  .bottom-lg-minus-240 { bottom: -24rem !important; }
  .bottom-lg-per-240 { bottom: 240% !important; }
  .bottom-lg-minus-per-240 { bottom: -240% !important; }
  .bottom-lg-245 { bottom: 24.5rem !important; }
  .bottom-lg-minus-245 { bottom: -24.5rem !important; }
  .bottom-lg-per-245 { bottom: 245% !important; }
  .bottom-lg-minus-per-245 { bottom: -245% !important; }
  .bottom-lg-250 { bottom: 25rem !important; }
  .bottom-lg-minus-250 { bottom: -25rem !important; }
  .bottom-lg-per-250 { bottom: 250% !important; }
  .bottom-lg-minus-per-250 { bottom: -250% !important; }
  .bottom-lg-255 { bottom: 25.5rem !important; }
  .bottom-lg-minus-255 { bottom: -25.5rem !important; }
  .bottom-lg-per-255 { bottom: 255% !important; }
  .bottom-lg-minus-per-255 { bottom: -255% !important; }
  .bottom-lg-260 { bottom: 26rem !important; }
  .bottom-lg-minus-260 { bottom: -26rem !important; }
  .bottom-lg-per-260 { bottom: 260% !important; }
  .bottom-lg-minus-per-260 { bottom: -260% !important; }
  .bottom-lg-265 { bottom: 26.5rem !important; }
  .bottom-lg-minus-265 { bottom: -26.5rem !important; }
  .bottom-lg-per-265 { bottom: 265% !important; }
  .bottom-lg-minus-per-265 { bottom: -265% !important; }
  .bottom-lg-270 { bottom: 27rem !important; }
  .bottom-lg-minus-270 { bottom: -27rem !important; }
  .bottom-lg-per-270 { bottom: 270% !important; }
  .bottom-lg-minus-per-270 { bottom: -270% !important; }
  .bottom-lg-275 { bottom: 27.5rem !important; }
  .bottom-lg-minus-275 { bottom: -27.5rem !important; }
  .bottom-lg-per-275 { bottom: 275% !important; }
  .bottom-lg-minus-per-275 { bottom: -275% !important; }
  .bottom-lg-280 { bottom: 28rem !important; }
  .bottom-lg-minus-280 { bottom: -28rem !important; }
  .bottom-lg-per-280 { bottom: 280% !important; }
  .bottom-lg-minus-per-280 { bottom: -280% !important; }
  .bottom-lg-285 { bottom: 28.5rem !important; }
  .bottom-lg-minus-285 { bottom: -28.5rem !important; }
  .bottom-lg-per-285 { bottom: 285% !important; }
  .bottom-lg-minus-per-285 { bottom: -285% !important; }
  .bottom-lg-290 { bottom: 29rem !important; }
  .bottom-lg-minus-290 { bottom: -29rem !important; }
  .bottom-lg-per-290 { bottom: 290% !important; }
  .bottom-lg-minus-per-290 { bottom: -290% !important; }
  .bottom-lg-295 { bottom: 29.5rem !important; }
  .bottom-lg-minus-295 { bottom: -29.5rem !important; }
  .bottom-lg-per-295 { bottom: 295% !important; }
  .bottom-lg-minus-per-295 { bottom: -295% !important; }
  .bottom-lg-300 { bottom: 30rem !important; }
  .bottom-lg-minus-300 { bottom: -30rem !important; }
  .bottom-lg-per-300 { bottom: 300% !important; }
  .bottom-lg-minus-per-300 { bottom: -300% !important; }
  .bottom-lg-305 { bottom: 30.5rem !important; }
  .bottom-lg-minus-305 { bottom: -30.5rem !important; }
  .bottom-lg-per-305 { bottom: 305% !important; }
  .bottom-lg-minus-per-305 { bottom: -305% !important; }
  .bottom-lg-310 { bottom: 31rem !important; }
  .bottom-lg-minus-310 { bottom: -31rem !important; }
  .bottom-lg-per-310 { bottom: 310% !important; }
  .bottom-lg-minus-per-310 { bottom: -310% !important; }
  .bottom-lg-315 { bottom: 31.5rem !important; }
  .bottom-lg-minus-315 { bottom: -31.5rem !important; }
  .bottom-lg-per-315 { bottom: 315% !important; }
  .bottom-lg-minus-per-315 { bottom: -315% !important; }
  .bottom-lg-320 { bottom: 32rem !important; }
  .bottom-lg-minus-320 { bottom: -32rem !important; }
  .bottom-lg-per-320 { bottom: 320% !important; }
  .bottom-lg-minus-per-320 { bottom: -320% !important; }
  .bottom-lg-325 { bottom: 32.5rem !important; }
  .bottom-lg-minus-325 { bottom: -32.5rem !important; }
  .bottom-lg-per-325 { bottom: 325% !important; }
  .bottom-lg-minus-per-325 { bottom: -325% !important; }
  .bottom-lg-330 { bottom: 33rem !important; }
  .bottom-lg-minus-330 { bottom: -33rem !important; }
  .bottom-lg-per-330 { bottom: 330% !important; }
  .bottom-lg-minus-per-330 { bottom: -330% !important; }
  .bottom-lg-335 { bottom: 33.5rem !important; }
  .bottom-lg-minus-335 { bottom: -33.5rem !important; }
  .bottom-lg-per-335 { bottom: 335% !important; }
  .bottom-lg-minus-per-335 { bottom: -335% !important; }
  .bottom-lg-340 { bottom: 34rem !important; }
  .bottom-lg-minus-340 { bottom: -34rem !important; }
  .bottom-lg-per-340 { bottom: 340% !important; }
  .bottom-lg-minus-per-340 { bottom: -340% !important; }
  .bottom-lg-345 { bottom: 34.5rem !important; }
  .bottom-lg-minus-345 { bottom: -34.5rem !important; }
  .bottom-lg-per-345 { bottom: 345% !important; }
  .bottom-lg-minus-per-345 { bottom: -345% !important; }
  .bottom-lg-350 { bottom: 35rem !important; }
  .bottom-lg-minus-350 { bottom: -35rem !important; }
  .bottom-lg-per-350 { bottom: 350% !important; }
  .bottom-lg-minus-per-350 { bottom: -350% !important; }
  .bottom-lg-355 { bottom: 35.5rem !important; }
  .bottom-lg-minus-355 { bottom: -35.5rem !important; }
  .bottom-lg-per-355 { bottom: 355% !important; }
  .bottom-lg-minus-per-355 { bottom: -355% !important; }
  .bottom-lg-360 { bottom: 36rem !important; }
  .bottom-lg-minus-360 { bottom: -36rem !important; }
  .bottom-lg-per-360 { bottom: 360% !important; }
  .bottom-lg-minus-per-360 { bottom: -360% !important; }
  .bottom-lg-365 { bottom: 36.5rem !important; }
  .bottom-lg-minus-365 { bottom: -36.5rem !important; }
  .bottom-lg-per-365 { bottom: 365% !important; }
  .bottom-lg-minus-per-365 { bottom: -365% !important; }
  .bottom-lg-370 { bottom: 37rem !important; }
  .bottom-lg-minus-370 { bottom: -37rem !important; }
  .bottom-lg-per-370 { bottom: 370% !important; }
  .bottom-lg-minus-per-370 { bottom: -370% !important; }
  .bottom-lg-375 { bottom: 37.5rem !important; }
  .bottom-lg-minus-375 { bottom: -37.5rem !important; }
  .bottom-lg-per-375 { bottom: 375% !important; }
  .bottom-lg-minus-per-375 { bottom: -375% !important; }
  .bottom-lg-380 { bottom: 38rem !important; }
  .bottom-lg-minus-380 { bottom: -38rem !important; }
  .bottom-lg-per-380 { bottom: 380% !important; }
  .bottom-lg-minus-per-380 { bottom: -380% !important; }
  .bottom-lg-385 { bottom: 38.5rem !important; }
  .bottom-lg-minus-385 { bottom: -38.5rem !important; }
  .bottom-lg-per-385 { bottom: 385% !important; }
  .bottom-lg-minus-per-385 { bottom: -385% !important; }
  .bottom-lg-390 { bottom: 39rem !important; }
  .bottom-lg-minus-390 { bottom: -39rem !important; }
  .bottom-lg-per-390 { bottom: 390% !important; }
  .bottom-lg-minus-per-390 { bottom: -390% !important; }
  .bottom-lg-395 { bottom: 39.5rem !important; }
  .bottom-lg-minus-395 { bottom: -39.5rem !important; }
  .bottom-lg-per-395 { bottom: 395% !important; }
  .bottom-lg-minus-per-395 { bottom: -395% !important; }
  .bottom-lg-400 { bottom: 40rem !important; }
  .bottom-lg-minus-400 { bottom: -40rem !important; }
  .bottom-lg-per-400 { bottom: 400% !important; }
  .bottom-lg-minus-per-400 { bottom: -400% !important; }
  .bottom-lg-405 { bottom: 40.5rem !important; }
  .bottom-lg-minus-405 { bottom: -40.5rem !important; }
  .bottom-lg-per-405 { bottom: 405% !important; }
  .bottom-lg-minus-per-405 { bottom: -405% !important; }
  .bottom-lg-410 { bottom: 41rem !important; }
  .bottom-lg-minus-410 { bottom: -41rem !important; }
  .bottom-lg-per-410 { bottom: 410% !important; }
  .bottom-lg-minus-per-410 { bottom: -410% !important; }
  .bottom-lg-415 { bottom: 41.5rem !important; }
  .bottom-lg-minus-415 { bottom: -41.5rem !important; }
  .bottom-lg-per-415 { bottom: 415% !important; }
  .bottom-lg-minus-per-415 { bottom: -415% !important; }
  .bottom-lg-420 { bottom: 42rem !important; }
  .bottom-lg-minus-420 { bottom: -42rem !important; }
  .bottom-lg-per-420 { bottom: 420% !important; }
  .bottom-lg-minus-per-420 { bottom: -420% !important; }
  .bottom-lg-425 { bottom: 42.5rem !important; }
  .bottom-lg-minus-425 { bottom: -42.5rem !important; }
  .bottom-lg-per-425 { bottom: 425% !important; }
  .bottom-lg-minus-per-425 { bottom: -425% !important; }
  .bottom-lg-430 { bottom: 43rem !important; }
  .bottom-lg-minus-430 { bottom: -43rem !important; }
  .bottom-lg-per-430 { bottom: 430% !important; }
  .bottom-lg-minus-per-430 { bottom: -430% !important; }
  .bottom-lg-435 { bottom: 43.5rem !important; }
  .bottom-lg-minus-435 { bottom: -43.5rem !important; }
  .bottom-lg-per-435 { bottom: 435% !important; }
  .bottom-lg-minus-per-435 { bottom: -435% !important; }
  .bottom-lg-440 { bottom: 44rem !important; }
  .bottom-lg-minus-440 { bottom: -44rem !important; }
  .bottom-lg-per-440 { bottom: 440% !important; }
  .bottom-lg-minus-per-440 { bottom: -440% !important; }
  .bottom-lg-445 { bottom: 44.5rem !important; }
  .bottom-lg-minus-445 { bottom: -44.5rem !important; }
  .bottom-lg-per-445 { bottom: 445% !important; }
  .bottom-lg-minus-per-445 { bottom: -445% !important; }
  .bottom-lg-450 { bottom: 45rem !important; }
  .bottom-lg-minus-450 { bottom: -45rem !important; }
  .bottom-lg-per-450 { bottom: 450% !important; }
  .bottom-lg-minus-per-450 { bottom: -450% !important; }
  .bottom-lg-455 { bottom: 45.5rem !important; }
  .bottom-lg-minus-455 { bottom: -45.5rem !important; }
  .bottom-lg-per-455 { bottom: 455% !important; }
  .bottom-lg-minus-per-455 { bottom: -455% !important; }
  .bottom-lg-460 { bottom: 46rem !important; }
  .bottom-lg-minus-460 { bottom: -46rem !important; }
  .bottom-lg-per-460 { bottom: 460% !important; }
  .bottom-lg-minus-per-460 { bottom: -460% !important; }
  .bottom-lg-465 { bottom: 46.5rem !important; }
  .bottom-lg-minus-465 { bottom: -46.5rem !important; }
  .bottom-lg-per-465 { bottom: 465% !important; }
  .bottom-lg-minus-per-465 { bottom: -465% !important; }
  .bottom-lg-470 { bottom: 47rem !important; }
  .bottom-lg-minus-470 { bottom: -47rem !important; }
  .bottom-lg-per-470 { bottom: 470% !important; }
  .bottom-lg-minus-per-470 { bottom: -470% !important; }
  .bottom-lg-475 { bottom: 47.5rem !important; }
  .bottom-lg-minus-475 { bottom: -47.5rem !important; }
  .bottom-lg-per-475 { bottom: 475% !important; }
  .bottom-lg-minus-per-475 { bottom: -475% !important; }
  .bottom-lg-480 { bottom: 48rem !important; }
  .bottom-lg-minus-480 { bottom: -48rem !important; }
  .bottom-lg-per-480 { bottom: 480% !important; }
  .bottom-lg-minus-per-480 { bottom: -480% !important; }
  .bottom-lg-485 { bottom: 48.5rem !important; }
  .bottom-lg-minus-485 { bottom: -48.5rem !important; }
  .bottom-lg-per-485 { bottom: 485% !important; }
  .bottom-lg-minus-per-485 { bottom: -485% !important; }
  .bottom-lg-490 { bottom: 49rem !important; }
  .bottom-lg-minus-490 { bottom: -49rem !important; }
  .bottom-lg-per-490 { bottom: 490% !important; }
  .bottom-lg-minus-per-490 { bottom: -490% !important; }
  .bottom-lg-495 { bottom: 49.5rem !important; }
  .bottom-lg-minus-495 { bottom: -49.5rem !important; }
  .bottom-lg-per-495 { bottom: 495% !important; }
  .bottom-lg-minus-per-495 { bottom: -495% !important; }
  .bottom-lg-500 { bottom: 50rem !important; }
  .bottom-lg-minus-500 { bottom: -50rem !important; }
  .bottom-lg-per-500 { bottom: 500% !important; }
  .bottom-lg-minus-per-500 { bottom: -500% !important; }
  .bottom-lg-auto { bottom: auto !important; } }

.left-0 { left: 0rem !important; }

.left-minus-0 { left: 0rem !important; }

.left-per-0 { left: 0% !important; }

.left-minus-per-0 { left: 0% !important; }

.left-5 { left: 0.5rem !important; }

.left-minus-5 { left: -0.5rem !important; }

.left-per-5 { left: 5% !important; }

.left-minus-per-5 { left: -5% !important; }

.left-10 { left: 1rem !important; }

.left-minus-10 { left: -1rem !important; }

.left-per-10 { left: 10% !important; }

.left-minus-per-10 { left: -10% !important; }

.left-15 { left: 1.5rem !important; }

.left-minus-15 { left: -1.5rem !important; }

.left-per-15 { left: 15% !important; }

.left-minus-per-15 { left: -15% !important; }

.left-20 { left: 2rem !important; }

.left-minus-20 { left: -2rem !important; }

.left-per-20 { left: 20% !important; }

.left-minus-per-20 { left: -20% !important; }

.left-25 { left: 2.5rem !important; }

.left-minus-25 { left: -2.5rem !important; }

.left-per-25 { left: 25% !important; }

.left-minus-per-25 { left: -25% !important; }

.left-30 { left: 3rem !important; }

.left-minus-30 { left: -3rem !important; }

.left-per-30 { left: 30% !important; }

.left-minus-per-30 { left: -30% !important; }

.left-35 { left: 3.5rem !important; }

.left-minus-35 { left: -3.5rem !important; }

.left-per-35 { left: 35% !important; }

.left-minus-per-35 { left: -35% !important; }

.left-40 { left: 4rem !important; }

.left-minus-40 { left: -4rem !important; }

.left-per-40 { left: 40% !important; }

.left-minus-per-40 { left: -40% !important; }

.left-45 { left: 4.5rem !important; }

.left-minus-45 { left: -4.5rem !important; }

.left-per-45 { left: 45% !important; }

.left-minus-per-45 { left: -45% !important; }

.left-50 { left: 5rem !important; }

.left-minus-50 { left: -5rem !important; }

.left-per-50 { left: 50% !important; }

.left-minus-per-50 { left: -50% !important; }

.left-55 { left: 5.5rem !important; }

.left-minus-55 { left: -5.5rem !important; }

.left-per-55 { left: 55% !important; }

.left-minus-per-55 { left: -55% !important; }

.left-60 { left: 6rem !important; }

.left-minus-60 { left: -6rem !important; }

.left-per-60 { left: 60% !important; }

.left-minus-per-60 { left: -60% !important; }

.left-65 { left: 6.5rem !important; }

.left-minus-65 { left: -6.5rem !important; }

.left-per-65 { left: 65% !important; }

.left-minus-per-65 { left: -65% !important; }

.left-70 { left: 7rem !important; }

.left-minus-70 { left: -7rem !important; }

.left-per-70 { left: 70% !important; }

.left-minus-per-70 { left: -70% !important; }

.left-75 { left: 7.5rem !important; }

.left-minus-75 { left: -7.5rem !important; }

.left-per-75 { left: 75% !important; }

.left-minus-per-75 { left: -75% !important; }

.left-80 { left: 8rem !important; }

.left-minus-80 { left: -8rem !important; }

.left-per-80 { left: 80% !important; }

.left-minus-per-80 { left: -80% !important; }

.left-85 { left: 8.5rem !important; }

.left-minus-85 { left: -8.5rem !important; }

.left-per-85 { left: 85% !important; }

.left-minus-per-85 { left: -85% !important; }

.left-90 { left: 9rem !important; }

.left-minus-90 { left: -9rem !important; }

.left-per-90 { left: 90% !important; }

.left-minus-per-90 { left: -90% !important; }

.left-95 { left: 9.5rem !important; }

.left-minus-95 { left: -9.5rem !important; }

.left-per-95 { left: 95% !important; }

.left-minus-per-95 { left: -95% !important; }

.left-100 { left: 10rem !important; }

.left-minus-100 { left: -10rem !important; }

.left-per-100 { left: 100% !important; }

.left-minus-per-100 { left: -100% !important; }

.left-105 { left: 10.5rem !important; }

.left-minus-105 { left: -10.5rem !important; }

.left-per-105 { left: 105% !important; }

.left-minus-per-105 { left: -105% !important; }

.left-110 { left: 11rem !important; }

.left-minus-110 { left: -11rem !important; }

.left-per-110 { left: 110% !important; }

.left-minus-per-110 { left: -110% !important; }

.left-115 { left: 11.5rem !important; }

.left-minus-115 { left: -11.5rem !important; }

.left-per-115 { left: 115% !important; }

.left-minus-per-115 { left: -115% !important; }

.left-120 { left: 12rem !important; }

.left-minus-120 { left: -12rem !important; }

.left-per-120 { left: 120% !important; }

.left-minus-per-120 { left: -120% !important; }

.left-125 { left: 12.5rem !important; }

.left-minus-125 { left: -12.5rem !important; }

.left-per-125 { left: 125% !important; }

.left-minus-per-125 { left: -125% !important; }

.left-130 { left: 13rem !important; }

.left-minus-130 { left: -13rem !important; }

.left-per-130 { left: 130% !important; }

.left-minus-per-130 { left: -130% !important; }

.left-135 { left: 13.5rem !important; }

.left-minus-135 { left: -13.5rem !important; }

.left-per-135 { left: 135% !important; }

.left-minus-per-135 { left: -135% !important; }

.left-140 { left: 14rem !important; }

.left-minus-140 { left: -14rem !important; }

.left-per-140 { left: 140% !important; }

.left-minus-per-140 { left: -140% !important; }

.left-145 { left: 14.5rem !important; }

.left-minus-145 { left: -14.5rem !important; }

.left-per-145 { left: 145% !important; }

.left-minus-per-145 { left: -145% !important; }

.left-150 { left: 15rem !important; }

.left-minus-150 { left: -15rem !important; }

.left-per-150 { left: 150% !important; }

.left-minus-per-150 { left: -150% !important; }

.left-155 { left: 15.5rem !important; }

.left-minus-155 { left: -15.5rem !important; }

.left-per-155 { left: 155% !important; }

.left-minus-per-155 { left: -155% !important; }

.left-160 { left: 16rem !important; }

.left-minus-160 { left: -16rem !important; }

.left-per-160 { left: 160% !important; }

.left-minus-per-160 { left: -160% !important; }

.left-165 { left: 16.5rem !important; }

.left-minus-165 { left: -16.5rem !important; }

.left-per-165 { left: 165% !important; }

.left-minus-per-165 { left: -165% !important; }

.left-170 { left: 17rem !important; }

.left-minus-170 { left: -17rem !important; }

.left-per-170 { left: 170% !important; }

.left-minus-per-170 { left: -170% !important; }

.left-175 { left: 17.5rem !important; }

.left-minus-175 { left: -17.5rem !important; }

.left-per-175 { left: 175% !important; }

.left-minus-per-175 { left: -175% !important; }

.left-180 { left: 18rem !important; }

.left-minus-180 { left: -18rem !important; }

.left-per-180 { left: 180% !important; }

.left-minus-per-180 { left: -180% !important; }

.left-185 { left: 18.5rem !important; }

.left-minus-185 { left: -18.5rem !important; }

.left-per-185 { left: 185% !important; }

.left-minus-per-185 { left: -185% !important; }

.left-190 { left: 19rem !important; }

.left-minus-190 { left: -19rem !important; }

.left-per-190 { left: 190% !important; }

.left-minus-per-190 { left: -190% !important; }

.left-195 { left: 19.5rem !important; }

.left-minus-195 { left: -19.5rem !important; }

.left-per-195 { left: 195% !important; }

.left-minus-per-195 { left: -195% !important; }

.left-200 { left: 20rem !important; }

.left-minus-200 { left: -20rem !important; }

.left-per-200 { left: 200% !important; }

.left-minus-per-200 { left: -200% !important; }

.left-205 { left: 20.5rem !important; }

.left-minus-205 { left: -20.5rem !important; }

.left-per-205 { left: 205% !important; }

.left-minus-per-205 { left: -205% !important; }

.left-210 { left: 21rem !important; }

.left-minus-210 { left: -21rem !important; }

.left-per-210 { left: 210% !important; }

.left-minus-per-210 { left: -210% !important; }

.left-215 { left: 21.5rem !important; }

.left-minus-215 { left: -21.5rem !important; }

.left-per-215 { left: 215% !important; }

.left-minus-per-215 { left: -215% !important; }

.left-220 { left: 22rem !important; }

.left-minus-220 { left: -22rem !important; }

.left-per-220 { left: 220% !important; }

.left-minus-per-220 { left: -220% !important; }

.left-225 { left: 22.5rem !important; }

.left-minus-225 { left: -22.5rem !important; }

.left-per-225 { left: 225% !important; }

.left-minus-per-225 { left: -225% !important; }

.left-230 { left: 23rem !important; }

.left-minus-230 { left: -23rem !important; }

.left-per-230 { left: 230% !important; }

.left-minus-per-230 { left: -230% !important; }

.left-235 { left: 23.5rem !important; }

.left-minus-235 { left: -23.5rem !important; }

.left-per-235 { left: 235% !important; }

.left-minus-per-235 { left: -235% !important; }

.left-240 { left: 24rem !important; }

.left-minus-240 { left: -24rem !important; }

.left-per-240 { left: 240% !important; }

.left-minus-per-240 { left: -240% !important; }

.left-245 { left: 24.5rem !important; }

.left-minus-245 { left: -24.5rem !important; }

.left-per-245 { left: 245% !important; }

.left-minus-per-245 { left: -245% !important; }

.left-250 { left: 25rem !important; }

.left-minus-250 { left: -25rem !important; }

.left-per-250 { left: 250% !important; }

.left-minus-per-250 { left: -250% !important; }

.left-255 { left: 25.5rem !important; }

.left-minus-255 { left: -25.5rem !important; }

.left-per-255 { left: 255% !important; }

.left-minus-per-255 { left: -255% !important; }

.left-260 { left: 26rem !important; }

.left-minus-260 { left: -26rem !important; }

.left-per-260 { left: 260% !important; }

.left-minus-per-260 { left: -260% !important; }

.left-265 { left: 26.5rem !important; }

.left-minus-265 { left: -26.5rem !important; }

.left-per-265 { left: 265% !important; }

.left-minus-per-265 { left: -265% !important; }

.left-270 { left: 27rem !important; }

.left-minus-270 { left: -27rem !important; }

.left-per-270 { left: 270% !important; }

.left-minus-per-270 { left: -270% !important; }

.left-275 { left: 27.5rem !important; }

.left-minus-275 { left: -27.5rem !important; }

.left-per-275 { left: 275% !important; }

.left-minus-per-275 { left: -275% !important; }

.left-280 { left: 28rem !important; }

.left-minus-280 { left: -28rem !important; }

.left-per-280 { left: 280% !important; }

.left-minus-per-280 { left: -280% !important; }

.left-285 { left: 28.5rem !important; }

.left-minus-285 { left: -28.5rem !important; }

.left-per-285 { left: 285% !important; }

.left-minus-per-285 { left: -285% !important; }

.left-290 { left: 29rem !important; }

.left-minus-290 { left: -29rem !important; }

.left-per-290 { left: 290% !important; }

.left-minus-per-290 { left: -290% !important; }

.left-295 { left: 29.5rem !important; }

.left-minus-295 { left: -29.5rem !important; }

.left-per-295 { left: 295% !important; }

.left-minus-per-295 { left: -295% !important; }

.left-300 { left: 30rem !important; }

.left-minus-300 { left: -30rem !important; }

.left-per-300 { left: 300% !important; }

.left-minus-per-300 { left: -300% !important; }

.left-305 { left: 30.5rem !important; }

.left-minus-305 { left: -30.5rem !important; }

.left-per-305 { left: 305% !important; }

.left-minus-per-305 { left: -305% !important; }

.left-310 { left: 31rem !important; }

.left-minus-310 { left: -31rem !important; }

.left-per-310 { left: 310% !important; }

.left-minus-per-310 { left: -310% !important; }

.left-315 { left: 31.5rem !important; }

.left-minus-315 { left: -31.5rem !important; }

.left-per-315 { left: 315% !important; }

.left-minus-per-315 { left: -315% !important; }

.left-320 { left: 32rem !important; }

.left-minus-320 { left: -32rem !important; }

.left-per-320 { left: 320% !important; }

.left-minus-per-320 { left: -320% !important; }

.left-325 { left: 32.5rem !important; }

.left-minus-325 { left: -32.5rem !important; }

.left-per-325 { left: 325% !important; }

.left-minus-per-325 { left: -325% !important; }

.left-330 { left: 33rem !important; }

.left-minus-330 { left: -33rem !important; }

.left-per-330 { left: 330% !important; }

.left-minus-per-330 { left: -330% !important; }

.left-335 { left: 33.5rem !important; }

.left-minus-335 { left: -33.5rem !important; }

.left-per-335 { left: 335% !important; }

.left-minus-per-335 { left: -335% !important; }

.left-340 { left: 34rem !important; }

.left-minus-340 { left: -34rem !important; }

.left-per-340 { left: 340% !important; }

.left-minus-per-340 { left: -340% !important; }

.left-345 { left: 34.5rem !important; }

.left-minus-345 { left: -34.5rem !important; }

.left-per-345 { left: 345% !important; }

.left-minus-per-345 { left: -345% !important; }

.left-350 { left: 35rem !important; }

.left-minus-350 { left: -35rem !important; }

.left-per-350 { left: 350% !important; }

.left-minus-per-350 { left: -350% !important; }

.left-355 { left: 35.5rem !important; }

.left-minus-355 { left: -35.5rem !important; }

.left-per-355 { left: 355% !important; }

.left-minus-per-355 { left: -355% !important; }

.left-360 { left: 36rem !important; }

.left-minus-360 { left: -36rem !important; }

.left-per-360 { left: 360% !important; }

.left-minus-per-360 { left: -360% !important; }

.left-365 { left: 36.5rem !important; }

.left-minus-365 { left: -36.5rem !important; }

.left-per-365 { left: 365% !important; }

.left-minus-per-365 { left: -365% !important; }

.left-370 { left: 37rem !important; }

.left-minus-370 { left: -37rem !important; }

.left-per-370 { left: 370% !important; }

.left-minus-per-370 { left: -370% !important; }

.left-375 { left: 37.5rem !important; }

.left-minus-375 { left: -37.5rem !important; }

.left-per-375 { left: 375% !important; }

.left-minus-per-375 { left: -375% !important; }

.left-380 { left: 38rem !important; }

.left-minus-380 { left: -38rem !important; }

.left-per-380 { left: 380% !important; }

.left-minus-per-380 { left: -380% !important; }

.left-385 { left: 38.5rem !important; }

.left-minus-385 { left: -38.5rem !important; }

.left-per-385 { left: 385% !important; }

.left-minus-per-385 { left: -385% !important; }

.left-390 { left: 39rem !important; }

.left-minus-390 { left: -39rem !important; }

.left-per-390 { left: 390% !important; }

.left-minus-per-390 { left: -390% !important; }

.left-395 { left: 39.5rem !important; }

.left-minus-395 { left: -39.5rem !important; }

.left-per-395 { left: 395% !important; }

.left-minus-per-395 { left: -395% !important; }

.left-400 { left: 40rem !important; }

.left-minus-400 { left: -40rem !important; }

.left-per-400 { left: 400% !important; }

.left-minus-per-400 { left: -400% !important; }

.left-405 { left: 40.5rem !important; }

.left-minus-405 { left: -40.5rem !important; }

.left-per-405 { left: 405% !important; }

.left-minus-per-405 { left: -405% !important; }

.left-410 { left: 41rem !important; }

.left-minus-410 { left: -41rem !important; }

.left-per-410 { left: 410% !important; }

.left-minus-per-410 { left: -410% !important; }

.left-415 { left: 41.5rem !important; }

.left-minus-415 { left: -41.5rem !important; }

.left-per-415 { left: 415% !important; }

.left-minus-per-415 { left: -415% !important; }

.left-420 { left: 42rem !important; }

.left-minus-420 { left: -42rem !important; }

.left-per-420 { left: 420% !important; }

.left-minus-per-420 { left: -420% !important; }

.left-425 { left: 42.5rem !important; }

.left-minus-425 { left: -42.5rem !important; }

.left-per-425 { left: 425% !important; }

.left-minus-per-425 { left: -425% !important; }

.left-430 { left: 43rem !important; }

.left-minus-430 { left: -43rem !important; }

.left-per-430 { left: 430% !important; }

.left-minus-per-430 { left: -430% !important; }

.left-435 { left: 43.5rem !important; }

.left-minus-435 { left: -43.5rem !important; }

.left-per-435 { left: 435% !important; }

.left-minus-per-435 { left: -435% !important; }

.left-440 { left: 44rem !important; }

.left-minus-440 { left: -44rem !important; }

.left-per-440 { left: 440% !important; }

.left-minus-per-440 { left: -440% !important; }

.left-445 { left: 44.5rem !important; }

.left-minus-445 { left: -44.5rem !important; }

.left-per-445 { left: 445% !important; }

.left-minus-per-445 { left: -445% !important; }

.left-450 { left: 45rem !important; }

.left-minus-450 { left: -45rem !important; }

.left-per-450 { left: 450% !important; }

.left-minus-per-450 { left: -450% !important; }

.left-455 { left: 45.5rem !important; }

.left-minus-455 { left: -45.5rem !important; }

.left-per-455 { left: 455% !important; }

.left-minus-per-455 { left: -455% !important; }

.left-460 { left: 46rem !important; }

.left-minus-460 { left: -46rem !important; }

.left-per-460 { left: 460% !important; }

.left-minus-per-460 { left: -460% !important; }

.left-465 { left: 46.5rem !important; }

.left-minus-465 { left: -46.5rem !important; }

.left-per-465 { left: 465% !important; }

.left-minus-per-465 { left: -465% !important; }

.left-470 { left: 47rem !important; }

.left-minus-470 { left: -47rem !important; }

.left-per-470 { left: 470% !important; }

.left-minus-per-470 { left: -470% !important; }

.left-475 { left: 47.5rem !important; }

.left-minus-475 { left: -47.5rem !important; }

.left-per-475 { left: 475% !important; }

.left-minus-per-475 { left: -475% !important; }

.left-480 { left: 48rem !important; }

.left-minus-480 { left: -48rem !important; }

.left-per-480 { left: 480% !important; }

.left-minus-per-480 { left: -480% !important; }

.left-485 { left: 48.5rem !important; }

.left-minus-485 { left: -48.5rem !important; }

.left-per-485 { left: 485% !important; }

.left-minus-per-485 { left: -485% !important; }

.left-490 { left: 49rem !important; }

.left-minus-490 { left: -49rem !important; }

.left-per-490 { left: 490% !important; }

.left-minus-per-490 { left: -490% !important; }

.left-495 { left: 49.5rem !important; }

.left-minus-495 { left: -49.5rem !important; }

.left-per-495 { left: 495% !important; }

.left-minus-per-495 { left: -495% !important; }

.left-500 { left: 50rem !important; }

.left-minus-500 { left: -50rem !important; }

.left-per-500 { left: 500% !important; }

.left-minus-per-500 { left: -500% !important; }

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

@media (min-width: 991px) { .left-lg-0 { left: 0rem !important; }
  .left-lg-minus-0 { left: 0rem !important; }
  .left-lg-per-0 { left: 0% !important; }
  .left-lg-minus-per-0 { left: 0% !important; }
  .left-lg-5 { left: 0.5rem !important; }
  .left-lg-minus-5 { left: -0.5rem !important; }
  .left-lg-per-5 { left: 5% !important; }
  .left-lg-minus-per-5 { left: -5% !important; }
  .left-lg-10 { left: 1rem !important; }
  .left-lg-minus-10 { left: -1rem !important; }
  .left-lg-per-10 { left: 10% !important; }
  .left-lg-minus-per-10 { left: -10% !important; }
  .left-lg-15 { left: 1.5rem !important; }
  .left-lg-minus-15 { left: -1.5rem !important; }
  .left-lg-per-15 { left: 15% !important; }
  .left-lg-minus-per-15 { left: -15% !important; }
  .left-lg-20 { left: 2rem !important; }
  .left-lg-minus-20 { left: -2rem !important; }
  .left-lg-per-20 { left: 20% !important; }
  .left-lg-minus-per-20 { left: -20% !important; }
  .left-lg-25 { left: 2.5rem !important; }
  .left-lg-minus-25 { left: -2.5rem !important; }
  .left-lg-per-25 { left: 25% !important; }
  .left-lg-minus-per-25 { left: -25% !important; }
  .left-lg-30 { left: 3rem !important; }
  .left-lg-minus-30 { left: -3rem !important; }
  .left-lg-per-30 { left: 30% !important; }
  .left-lg-minus-per-30 { left: -30% !important; }
  .left-lg-35 { left: 3.5rem !important; }
  .left-lg-minus-35 { left: -3.5rem !important; }
  .left-lg-per-35 { left: 35% !important; }
  .left-lg-minus-per-35 { left: -35% !important; }
  .left-lg-40 { left: 4rem !important; }
  .left-lg-minus-40 { left: -4rem !important; }
  .left-lg-per-40 { left: 40% !important; }
  .left-lg-minus-per-40 { left: -40% !important; }
  .left-lg-45 { left: 4.5rem !important; }
  .left-lg-minus-45 { left: -4.5rem !important; }
  .left-lg-per-45 { left: 45% !important; }
  .left-lg-minus-per-45 { left: -45% !important; }
  .left-lg-50 { left: 5rem !important; }
  .left-lg-minus-50 { left: -5rem !important; }
  .left-lg-per-50 { left: 50% !important; }
  .left-lg-minus-per-50 { left: -50% !important; }
  .left-lg-55 { left: 5.5rem !important; }
  .left-lg-minus-55 { left: -5.5rem !important; }
  .left-lg-per-55 { left: 55% !important; }
  .left-lg-minus-per-55 { left: -55% !important; }
  .left-lg-60 { left: 6rem !important; }
  .left-lg-minus-60 { left: -6rem !important; }
  .left-lg-per-60 { left: 60% !important; }
  .left-lg-minus-per-60 { left: -60% !important; }
  .left-lg-65 { left: 6.5rem !important; }
  .left-lg-minus-65 { left: -6.5rem !important; }
  .left-lg-per-65 { left: 65% !important; }
  .left-lg-minus-per-65 { left: -65% !important; }
  .left-lg-70 { left: 7rem !important; }
  .left-lg-minus-70 { left: -7rem !important; }
  .left-lg-per-70 { left: 70% !important; }
  .left-lg-minus-per-70 { left: -70% !important; }
  .left-lg-75 { left: 7.5rem !important; }
  .left-lg-minus-75 { left: -7.5rem !important; }
  .left-lg-per-75 { left: 75% !important; }
  .left-lg-minus-per-75 { left: -75% !important; }
  .left-lg-80 { left: 8rem !important; }
  .left-lg-minus-80 { left: -8rem !important; }
  .left-lg-per-80 { left: 80% !important; }
  .left-lg-minus-per-80 { left: -80% !important; }
  .left-lg-85 { left: 8.5rem !important; }
  .left-lg-minus-85 { left: -8.5rem !important; }
  .left-lg-per-85 { left: 85% !important; }
  .left-lg-minus-per-85 { left: -85% !important; }
  .left-lg-90 { left: 9rem !important; }
  .left-lg-minus-90 { left: -9rem !important; }
  .left-lg-per-90 { left: 90% !important; }
  .left-lg-minus-per-90 { left: -90% !important; }
  .left-lg-95 { left: 9.5rem !important; }
  .left-lg-minus-95 { left: -9.5rem !important; }
  .left-lg-per-95 { left: 95% !important; }
  .left-lg-minus-per-95 { left: -95% !important; }
  .left-lg-100 { left: 10rem !important; }
  .left-lg-minus-100 { left: -10rem !important; }
  .left-lg-per-100 { left: 100% !important; }
  .left-lg-minus-per-100 { left: -100% !important; }
  .left-lg-105 { left: 10.5rem !important; }
  .left-lg-minus-105 { left: -10.5rem !important; }
  .left-lg-per-105 { left: 105% !important; }
  .left-lg-minus-per-105 { left: -105% !important; }
  .left-lg-110 { left: 11rem !important; }
  .left-lg-minus-110 { left: -11rem !important; }
  .left-lg-per-110 { left: 110% !important; }
  .left-lg-minus-per-110 { left: -110% !important; }
  .left-lg-115 { left: 11.5rem !important; }
  .left-lg-minus-115 { left: -11.5rem !important; }
  .left-lg-per-115 { left: 115% !important; }
  .left-lg-minus-per-115 { left: -115% !important; }
  .left-lg-120 { left: 12rem !important; }
  .left-lg-minus-120 { left: -12rem !important; }
  .left-lg-per-120 { left: 120% !important; }
  .left-lg-minus-per-120 { left: -120% !important; }
  .left-lg-125 { left: 12.5rem !important; }
  .left-lg-minus-125 { left: -12.5rem !important; }
  .left-lg-per-125 { left: 125% !important; }
  .left-lg-minus-per-125 { left: -125% !important; }
  .left-lg-130 { left: 13rem !important; }
  .left-lg-minus-130 { left: -13rem !important; }
  .left-lg-per-130 { left: 130% !important; }
  .left-lg-minus-per-130 { left: -130% !important; }
  .left-lg-135 { left: 13.5rem !important; }
  .left-lg-minus-135 { left: -13.5rem !important; }
  .left-lg-per-135 { left: 135% !important; }
  .left-lg-minus-per-135 { left: -135% !important; }
  .left-lg-140 { left: 14rem !important; }
  .left-lg-minus-140 { left: -14rem !important; }
  .left-lg-per-140 { left: 140% !important; }
  .left-lg-minus-per-140 { left: -140% !important; }
  .left-lg-145 { left: 14.5rem !important; }
  .left-lg-minus-145 { left: -14.5rem !important; }
  .left-lg-per-145 { left: 145% !important; }
  .left-lg-minus-per-145 { left: -145% !important; }
  .left-lg-150 { left: 15rem !important; }
  .left-lg-minus-150 { left: -15rem !important; }
  .left-lg-per-150 { left: 150% !important; }
  .left-lg-minus-per-150 { left: -150% !important; }
  .left-lg-155 { left: 15.5rem !important; }
  .left-lg-minus-155 { left: -15.5rem !important; }
  .left-lg-per-155 { left: 155% !important; }
  .left-lg-minus-per-155 { left: -155% !important; }
  .left-lg-160 { left: 16rem !important; }
  .left-lg-minus-160 { left: -16rem !important; }
  .left-lg-per-160 { left: 160% !important; }
  .left-lg-minus-per-160 { left: -160% !important; }
  .left-lg-165 { left: 16.5rem !important; }
  .left-lg-minus-165 { left: -16.5rem !important; }
  .left-lg-per-165 { left: 165% !important; }
  .left-lg-minus-per-165 { left: -165% !important; }
  .left-lg-170 { left: 17rem !important; }
  .left-lg-minus-170 { left: -17rem !important; }
  .left-lg-per-170 { left: 170% !important; }
  .left-lg-minus-per-170 { left: -170% !important; }
  .left-lg-175 { left: 17.5rem !important; }
  .left-lg-minus-175 { left: -17.5rem !important; }
  .left-lg-per-175 { left: 175% !important; }
  .left-lg-minus-per-175 { left: -175% !important; }
  .left-lg-180 { left: 18rem !important; }
  .left-lg-minus-180 { left: -18rem !important; }
  .left-lg-per-180 { left: 180% !important; }
  .left-lg-minus-per-180 { left: -180% !important; }
  .left-lg-185 { left: 18.5rem !important; }
  .left-lg-minus-185 { left: -18.5rem !important; }
  .left-lg-per-185 { left: 185% !important; }
  .left-lg-minus-per-185 { left: -185% !important; }
  .left-lg-190 { left: 19rem !important; }
  .left-lg-minus-190 { left: -19rem !important; }
  .left-lg-per-190 { left: 190% !important; }
  .left-lg-minus-per-190 { left: -190% !important; }
  .left-lg-195 { left: 19.5rem !important; }
  .left-lg-minus-195 { left: -19.5rem !important; }
  .left-lg-per-195 { left: 195% !important; }
  .left-lg-minus-per-195 { left: -195% !important; }
  .left-lg-200 { left: 20rem !important; }
  .left-lg-minus-200 { left: -20rem !important; }
  .left-lg-per-200 { left: 200% !important; }
  .left-lg-minus-per-200 { left: -200% !important; }
  .left-lg-205 { left: 20.5rem !important; }
  .left-lg-minus-205 { left: -20.5rem !important; }
  .left-lg-per-205 { left: 205% !important; }
  .left-lg-minus-per-205 { left: -205% !important; }
  .left-lg-210 { left: 21rem !important; }
  .left-lg-minus-210 { left: -21rem !important; }
  .left-lg-per-210 { left: 210% !important; }
  .left-lg-minus-per-210 { left: -210% !important; }
  .left-lg-215 { left: 21.5rem !important; }
  .left-lg-minus-215 { left: -21.5rem !important; }
  .left-lg-per-215 { left: 215% !important; }
  .left-lg-minus-per-215 { left: -215% !important; }
  .left-lg-220 { left: 22rem !important; }
  .left-lg-minus-220 { left: -22rem !important; }
  .left-lg-per-220 { left: 220% !important; }
  .left-lg-minus-per-220 { left: -220% !important; }
  .left-lg-225 { left: 22.5rem !important; }
  .left-lg-minus-225 { left: -22.5rem !important; }
  .left-lg-per-225 { left: 225% !important; }
  .left-lg-minus-per-225 { left: -225% !important; }
  .left-lg-230 { left: 23rem !important; }
  .left-lg-minus-230 { left: -23rem !important; }
  .left-lg-per-230 { left: 230% !important; }
  .left-lg-minus-per-230 { left: -230% !important; }
  .left-lg-235 { left: 23.5rem !important; }
  .left-lg-minus-235 { left: -23.5rem !important; }
  .left-lg-per-235 { left: 235% !important; }
  .left-lg-minus-per-235 { left: -235% !important; }
  .left-lg-240 { left: 24rem !important; }
  .left-lg-minus-240 { left: -24rem !important; }
  .left-lg-per-240 { left: 240% !important; }
  .left-lg-minus-per-240 { left: -240% !important; }
  .left-lg-245 { left: 24.5rem !important; }
  .left-lg-minus-245 { left: -24.5rem !important; }
  .left-lg-per-245 { left: 245% !important; }
  .left-lg-minus-per-245 { left: -245% !important; }
  .left-lg-250 { left: 25rem !important; }
  .left-lg-minus-250 { left: -25rem !important; }
  .left-lg-per-250 { left: 250% !important; }
  .left-lg-minus-per-250 { left: -250% !important; }
  .left-lg-255 { left: 25.5rem !important; }
  .left-lg-minus-255 { left: -25.5rem !important; }
  .left-lg-per-255 { left: 255% !important; }
  .left-lg-minus-per-255 { left: -255% !important; }
  .left-lg-260 { left: 26rem !important; }
  .left-lg-minus-260 { left: -26rem !important; }
  .left-lg-per-260 { left: 260% !important; }
  .left-lg-minus-per-260 { left: -260% !important; }
  .left-lg-265 { left: 26.5rem !important; }
  .left-lg-minus-265 { left: -26.5rem !important; }
  .left-lg-per-265 { left: 265% !important; }
  .left-lg-minus-per-265 { left: -265% !important; }
  .left-lg-270 { left: 27rem !important; }
  .left-lg-minus-270 { left: -27rem !important; }
  .left-lg-per-270 { left: 270% !important; }
  .left-lg-minus-per-270 { left: -270% !important; }
  .left-lg-275 { left: 27.5rem !important; }
  .left-lg-minus-275 { left: -27.5rem !important; }
  .left-lg-per-275 { left: 275% !important; }
  .left-lg-minus-per-275 { left: -275% !important; }
  .left-lg-280 { left: 28rem !important; }
  .left-lg-minus-280 { left: -28rem !important; }
  .left-lg-per-280 { left: 280% !important; }
  .left-lg-minus-per-280 { left: -280% !important; }
  .left-lg-285 { left: 28.5rem !important; }
  .left-lg-minus-285 { left: -28.5rem !important; }
  .left-lg-per-285 { left: 285% !important; }
  .left-lg-minus-per-285 { left: -285% !important; }
  .left-lg-290 { left: 29rem !important; }
  .left-lg-minus-290 { left: -29rem !important; }
  .left-lg-per-290 { left: 290% !important; }
  .left-lg-minus-per-290 { left: -290% !important; }
  .left-lg-295 { left: 29.5rem !important; }
  .left-lg-minus-295 { left: -29.5rem !important; }
  .left-lg-per-295 { left: 295% !important; }
  .left-lg-minus-per-295 { left: -295% !important; }
  .left-lg-300 { left: 30rem !important; }
  .left-lg-minus-300 { left: -30rem !important; }
  .left-lg-per-300 { left: 300% !important; }
  .left-lg-minus-per-300 { left: -300% !important; }
  .left-lg-305 { left: 30.5rem !important; }
  .left-lg-minus-305 { left: -30.5rem !important; }
  .left-lg-per-305 { left: 305% !important; }
  .left-lg-minus-per-305 { left: -305% !important; }
  .left-lg-310 { left: 31rem !important; }
  .left-lg-minus-310 { left: -31rem !important; }
  .left-lg-per-310 { left: 310% !important; }
  .left-lg-minus-per-310 { left: -310% !important; }
  .left-lg-315 { left: 31.5rem !important; }
  .left-lg-minus-315 { left: -31.5rem !important; }
  .left-lg-per-315 { left: 315% !important; }
  .left-lg-minus-per-315 { left: -315% !important; }
  .left-lg-320 { left: 32rem !important; }
  .left-lg-minus-320 { left: -32rem !important; }
  .left-lg-per-320 { left: 320% !important; }
  .left-lg-minus-per-320 { left: -320% !important; }
  .left-lg-325 { left: 32.5rem !important; }
  .left-lg-minus-325 { left: -32.5rem !important; }
  .left-lg-per-325 { left: 325% !important; }
  .left-lg-minus-per-325 { left: -325% !important; }
  .left-lg-330 { left: 33rem !important; }
  .left-lg-minus-330 { left: -33rem !important; }
  .left-lg-per-330 { left: 330% !important; }
  .left-lg-minus-per-330 { left: -330% !important; }
  .left-lg-335 { left: 33.5rem !important; }
  .left-lg-minus-335 { left: -33.5rem !important; }
  .left-lg-per-335 { left: 335% !important; }
  .left-lg-minus-per-335 { left: -335% !important; }
  .left-lg-340 { left: 34rem !important; }
  .left-lg-minus-340 { left: -34rem !important; }
  .left-lg-per-340 { left: 340% !important; }
  .left-lg-minus-per-340 { left: -340% !important; }
  .left-lg-345 { left: 34.5rem !important; }
  .left-lg-minus-345 { left: -34.5rem !important; }
  .left-lg-per-345 { left: 345% !important; }
  .left-lg-minus-per-345 { left: -345% !important; }
  .left-lg-350 { left: 35rem !important; }
  .left-lg-minus-350 { left: -35rem !important; }
  .left-lg-per-350 { left: 350% !important; }
  .left-lg-minus-per-350 { left: -350% !important; }
  .left-lg-355 { left: 35.5rem !important; }
  .left-lg-minus-355 { left: -35.5rem !important; }
  .left-lg-per-355 { left: 355% !important; }
  .left-lg-minus-per-355 { left: -355% !important; }
  .left-lg-360 { left: 36rem !important; }
  .left-lg-minus-360 { left: -36rem !important; }
  .left-lg-per-360 { left: 360% !important; }
  .left-lg-minus-per-360 { left: -360% !important; }
  .left-lg-365 { left: 36.5rem !important; }
  .left-lg-minus-365 { left: -36.5rem !important; }
  .left-lg-per-365 { left: 365% !important; }
  .left-lg-minus-per-365 { left: -365% !important; }
  .left-lg-370 { left: 37rem !important; }
  .left-lg-minus-370 { left: -37rem !important; }
  .left-lg-per-370 { left: 370% !important; }
  .left-lg-minus-per-370 { left: -370% !important; }
  .left-lg-375 { left: 37.5rem !important; }
  .left-lg-minus-375 { left: -37.5rem !important; }
  .left-lg-per-375 { left: 375% !important; }
  .left-lg-minus-per-375 { left: -375% !important; }
  .left-lg-380 { left: 38rem !important; }
  .left-lg-minus-380 { left: -38rem !important; }
  .left-lg-per-380 { left: 380% !important; }
  .left-lg-minus-per-380 { left: -380% !important; }
  .left-lg-385 { left: 38.5rem !important; }
  .left-lg-minus-385 { left: -38.5rem !important; }
  .left-lg-per-385 { left: 385% !important; }
  .left-lg-minus-per-385 { left: -385% !important; }
  .left-lg-390 { left: 39rem !important; }
  .left-lg-minus-390 { left: -39rem !important; }
  .left-lg-per-390 { left: 390% !important; }
  .left-lg-minus-per-390 { left: -390% !important; }
  .left-lg-395 { left: 39.5rem !important; }
  .left-lg-minus-395 { left: -39.5rem !important; }
  .left-lg-per-395 { left: 395% !important; }
  .left-lg-minus-per-395 { left: -395% !important; }
  .left-lg-400 { left: 40rem !important; }
  .left-lg-minus-400 { left: -40rem !important; }
  .left-lg-per-400 { left: 400% !important; }
  .left-lg-minus-per-400 { left: -400% !important; }
  .left-lg-405 { left: 40.5rem !important; }
  .left-lg-minus-405 { left: -40.5rem !important; }
  .left-lg-per-405 { left: 405% !important; }
  .left-lg-minus-per-405 { left: -405% !important; }
  .left-lg-410 { left: 41rem !important; }
  .left-lg-minus-410 { left: -41rem !important; }
  .left-lg-per-410 { left: 410% !important; }
  .left-lg-minus-per-410 { left: -410% !important; }
  .left-lg-415 { left: 41.5rem !important; }
  .left-lg-minus-415 { left: -41.5rem !important; }
  .left-lg-per-415 { left: 415% !important; }
  .left-lg-minus-per-415 { left: -415% !important; }
  .left-lg-420 { left: 42rem !important; }
  .left-lg-minus-420 { left: -42rem !important; }
  .left-lg-per-420 { left: 420% !important; }
  .left-lg-minus-per-420 { left: -420% !important; }
  .left-lg-425 { left: 42.5rem !important; }
  .left-lg-minus-425 { left: -42.5rem !important; }
  .left-lg-per-425 { left: 425% !important; }
  .left-lg-minus-per-425 { left: -425% !important; }
  .left-lg-430 { left: 43rem !important; }
  .left-lg-minus-430 { left: -43rem !important; }
  .left-lg-per-430 { left: 430% !important; }
  .left-lg-minus-per-430 { left: -430% !important; }
  .left-lg-435 { left: 43.5rem !important; }
  .left-lg-minus-435 { left: -43.5rem !important; }
  .left-lg-per-435 { left: 435% !important; }
  .left-lg-minus-per-435 { left: -435% !important; }
  .left-lg-440 { left: 44rem !important; }
  .left-lg-minus-440 { left: -44rem !important; }
  .left-lg-per-440 { left: 440% !important; }
  .left-lg-minus-per-440 { left: -440% !important; }
  .left-lg-445 { left: 44.5rem !important; }
  .left-lg-minus-445 { left: -44.5rem !important; }
  .left-lg-per-445 { left: 445% !important; }
  .left-lg-minus-per-445 { left: -445% !important; }
  .left-lg-450 { left: 45rem !important; }
  .left-lg-minus-450 { left: -45rem !important; }
  .left-lg-per-450 { left: 450% !important; }
  .left-lg-minus-per-450 { left: -450% !important; }
  .left-lg-455 { left: 45.5rem !important; }
  .left-lg-minus-455 { left: -45.5rem !important; }
  .left-lg-per-455 { left: 455% !important; }
  .left-lg-minus-per-455 { left: -455% !important; }
  .left-lg-460 { left: 46rem !important; }
  .left-lg-minus-460 { left: -46rem !important; }
  .left-lg-per-460 { left: 460% !important; }
  .left-lg-minus-per-460 { left: -460% !important; }
  .left-lg-465 { left: 46.5rem !important; }
  .left-lg-minus-465 { left: -46.5rem !important; }
  .left-lg-per-465 { left: 465% !important; }
  .left-lg-minus-per-465 { left: -465% !important; }
  .left-lg-470 { left: 47rem !important; }
  .left-lg-minus-470 { left: -47rem !important; }
  .left-lg-per-470 { left: 470% !important; }
  .left-lg-minus-per-470 { left: -470% !important; }
  .left-lg-475 { left: 47.5rem !important; }
  .left-lg-minus-475 { left: -47.5rem !important; }
  .left-lg-per-475 { left: 475% !important; }
  .left-lg-minus-per-475 { left: -475% !important; }
  .left-lg-480 { left: 48rem !important; }
  .left-lg-minus-480 { left: -48rem !important; }
  .left-lg-per-480 { left: 480% !important; }
  .left-lg-minus-per-480 { left: -480% !important; }
  .left-lg-485 { left: 48.5rem !important; }
  .left-lg-minus-485 { left: -48.5rem !important; }
  .left-lg-per-485 { left: 485% !important; }
  .left-lg-minus-per-485 { left: -485% !important; }
  .left-lg-490 { left: 49rem !important; }
  .left-lg-minus-490 { left: -49rem !important; }
  .left-lg-per-490 { left: 490% !important; }
  .left-lg-minus-per-490 { left: -490% !important; }
  .left-lg-495 { left: 49.5rem !important; }
  .left-lg-minus-495 { left: -49.5rem !important; }
  .left-lg-per-495 { left: 495% !important; }
  .left-lg-minus-per-495 { left: -495% !important; }
  .left-lg-500 { left: 50rem !important; }
  .left-lg-minus-500 { left: -50rem !important; }
  .left-lg-per-500 { left: 500% !important; }
  .left-lg-minus-per-500 { left: -500% !important; }
  .left-lg-auto { left: auto !important; } }

.right-0 { right: 0rem !important; }

.right-minus-0 { right: 0rem !important; }

.right-per-0 { right: 0% !important; }

.right-minus-per-0 { right: 0% !important; }

.right-5 { right: 0.5rem !important; }

.right-minus-5 { right: -0.5rem !important; }

.right-per-5 { right: 5% !important; }

.right-minus-per-5 { right: -5% !important; }

.right-10 { right: 1rem !important; }

.right-minus-10 { right: -1rem !important; }

.right-per-10 { right: 10% !important; }

.right-minus-per-10 { right: -10% !important; }

.right-15 { right: 1.5rem !important; }

.right-minus-15 { right: -1.5rem !important; }

.right-per-15 { right: 15% !important; }

.right-minus-per-15 { right: -15% !important; }

.right-20 { right: 2rem !important; }

.right-minus-20 { right: -2rem !important; }

.right-per-20 { right: 20% !important; }

.right-minus-per-20 { right: -20% !important; }

.right-25 { right: 2.5rem !important; }

.right-minus-25 { right: -2.5rem !important; }

.right-per-25 { right: 25% !important; }

.right-minus-per-25 { right: -25% !important; }

.right-30 { right: 3rem !important; }

.right-minus-30 { right: -3rem !important; }

.right-per-30 { right: 30% !important; }

.right-minus-per-30 { right: -30% !important; }

.right-35 { right: 3.5rem !important; }

.right-minus-35 { right: -3.5rem !important; }

.right-per-35 { right: 35% !important; }

.right-minus-per-35 { right: -35% !important; }

.right-40 { right: 4rem !important; }

.right-minus-40 { right: -4rem !important; }

.right-per-40 { right: 40% !important; }

.right-minus-per-40 { right: -40% !important; }

.right-45 { right: 4.5rem !important; }

.right-minus-45 { right: -4.5rem !important; }

.right-per-45 { right: 45% !important; }

.right-minus-per-45 { right: -45% !important; }

.right-50 { right: 5rem !important; }

.right-minus-50 { right: -5rem !important; }

.right-per-50 { right: 50% !important; }

.right-minus-per-50 { right: -50% !important; }

.right-55 { right: 5.5rem !important; }

.right-minus-55 { right: -5.5rem !important; }

.right-per-55 { right: 55% !important; }

.right-minus-per-55 { right: -55% !important; }

.right-60 { right: 6rem !important; }

.right-minus-60 { right: -6rem !important; }

.right-per-60 { right: 60% !important; }

.right-minus-per-60 { right: -60% !important; }

.right-65 { right: 6.5rem !important; }

.right-minus-65 { right: -6.5rem !important; }

.right-per-65 { right: 65% !important; }

.right-minus-per-65 { right: -65% !important; }

.right-70 { right: 7rem !important; }

.right-minus-70 { right: -7rem !important; }

.right-per-70 { right: 70% !important; }

.right-minus-per-70 { right: -70% !important; }

.right-75 { right: 7.5rem !important; }

.right-minus-75 { right: -7.5rem !important; }

.right-per-75 { right: 75% !important; }

.right-minus-per-75 { right: -75% !important; }

.right-80 { right: 8rem !important; }

.right-minus-80 { right: -8rem !important; }

.right-per-80 { right: 80% !important; }

.right-minus-per-80 { right: -80% !important; }

.right-85 { right: 8.5rem !important; }

.right-minus-85 { right: -8.5rem !important; }

.right-per-85 { right: 85% !important; }

.right-minus-per-85 { right: -85% !important; }

.right-90 { right: 9rem !important; }

.right-minus-90 { right: -9rem !important; }

.right-per-90 { right: 90% !important; }

.right-minus-per-90 { right: -90% !important; }

.right-95 { right: 9.5rem !important; }

.right-minus-95 { right: -9.5rem !important; }

.right-per-95 { right: 95% !important; }

.right-minus-per-95 { right: -95% !important; }

.right-100 { right: 10rem !important; }

.right-minus-100 { right: -10rem !important; }

.right-per-100 { right: 100% !important; }

.right-minus-per-100 { right: -100% !important; }

.right-105 { right: 10.5rem !important; }

.right-minus-105 { right: -10.5rem !important; }

.right-per-105 { right: 105% !important; }

.right-minus-per-105 { right: -105% !important; }

.right-110 { right: 11rem !important; }

.right-minus-110 { right: -11rem !important; }

.right-per-110 { right: 110% !important; }

.right-minus-per-110 { right: -110% !important; }

.right-115 { right: 11.5rem !important; }

.right-minus-115 { right: -11.5rem !important; }

.right-per-115 { right: 115% !important; }

.right-minus-per-115 { right: -115% !important; }

.right-120 { right: 12rem !important; }

.right-minus-120 { right: -12rem !important; }

.right-per-120 { right: 120% !important; }

.right-minus-per-120 { right: -120% !important; }

.right-125 { right: 12.5rem !important; }

.right-minus-125 { right: -12.5rem !important; }

.right-per-125 { right: 125% !important; }

.right-minus-per-125 { right: -125% !important; }

.right-130 { right: 13rem !important; }

.right-minus-130 { right: -13rem !important; }

.right-per-130 { right: 130% !important; }

.right-minus-per-130 { right: -130% !important; }

.right-135 { right: 13.5rem !important; }

.right-minus-135 { right: -13.5rem !important; }

.right-per-135 { right: 135% !important; }

.right-minus-per-135 { right: -135% !important; }

.right-140 { right: 14rem !important; }

.right-minus-140 { right: -14rem !important; }

.right-per-140 { right: 140% !important; }

.right-minus-per-140 { right: -140% !important; }

.right-145 { right: 14.5rem !important; }

.right-minus-145 { right: -14.5rem !important; }

.right-per-145 { right: 145% !important; }

.right-minus-per-145 { right: -145% !important; }

.right-150 { right: 15rem !important; }

.right-minus-150 { right: -15rem !important; }

.right-per-150 { right: 150% !important; }

.right-minus-per-150 { right: -150% !important; }

.right-155 { right: 15.5rem !important; }

.right-minus-155 { right: -15.5rem !important; }

.right-per-155 { right: 155% !important; }

.right-minus-per-155 { right: -155% !important; }

.right-160 { right: 16rem !important; }

.right-minus-160 { right: -16rem !important; }

.right-per-160 { right: 160% !important; }

.right-minus-per-160 { right: -160% !important; }

.right-165 { right: 16.5rem !important; }

.right-minus-165 { right: -16.5rem !important; }

.right-per-165 { right: 165% !important; }

.right-minus-per-165 { right: -165% !important; }

.right-170 { right: 17rem !important; }

.right-minus-170 { right: -17rem !important; }

.right-per-170 { right: 170% !important; }

.right-minus-per-170 { right: -170% !important; }

.right-175 { right: 17.5rem !important; }

.right-minus-175 { right: -17.5rem !important; }

.right-per-175 { right: 175% !important; }

.right-minus-per-175 { right: -175% !important; }

.right-180 { right: 18rem !important; }

.right-minus-180 { right: -18rem !important; }

.right-per-180 { right: 180% !important; }

.right-minus-per-180 { right: -180% !important; }

.right-185 { right: 18.5rem !important; }

.right-minus-185 { right: -18.5rem !important; }

.right-per-185 { right: 185% !important; }

.right-minus-per-185 { right: -185% !important; }

.right-190 { right: 19rem !important; }

.right-minus-190 { right: -19rem !important; }

.right-per-190 { right: 190% !important; }

.right-minus-per-190 { right: -190% !important; }

.right-195 { right: 19.5rem !important; }

.right-minus-195 { right: -19.5rem !important; }

.right-per-195 { right: 195% !important; }

.right-minus-per-195 { right: -195% !important; }

.right-200 { right: 20rem !important; }

.right-minus-200 { right: -20rem !important; }

.right-per-200 { right: 200% !important; }

.right-minus-per-200 { right: -200% !important; }

.right-205 { right: 20.5rem !important; }

.right-minus-205 { right: -20.5rem !important; }

.right-per-205 { right: 205% !important; }

.right-minus-per-205 { right: -205% !important; }

.right-210 { right: 21rem !important; }

.right-minus-210 { right: -21rem !important; }

.right-per-210 { right: 210% !important; }

.right-minus-per-210 { right: -210% !important; }

.right-215 { right: 21.5rem !important; }

.right-minus-215 { right: -21.5rem !important; }

.right-per-215 { right: 215% !important; }

.right-minus-per-215 { right: -215% !important; }

.right-220 { right: 22rem !important; }

.right-minus-220 { right: -22rem !important; }

.right-per-220 { right: 220% !important; }

.right-minus-per-220 { right: -220% !important; }

.right-225 { right: 22.5rem !important; }

.right-minus-225 { right: -22.5rem !important; }

.right-per-225 { right: 225% !important; }

.right-minus-per-225 { right: -225% !important; }

.right-230 { right: 23rem !important; }

.right-minus-230 { right: -23rem !important; }

.right-per-230 { right: 230% !important; }

.right-minus-per-230 { right: -230% !important; }

.right-235 { right: 23.5rem !important; }

.right-minus-235 { right: -23.5rem !important; }

.right-per-235 { right: 235% !important; }

.right-minus-per-235 { right: -235% !important; }

.right-240 { right: 24rem !important; }

.right-minus-240 { right: -24rem !important; }

.right-per-240 { right: 240% !important; }

.right-minus-per-240 { right: -240% !important; }

.right-245 { right: 24.5rem !important; }

.right-minus-245 { right: -24.5rem !important; }

.right-per-245 { right: 245% !important; }

.right-minus-per-245 { right: -245% !important; }

.right-250 { right: 25rem !important; }

.right-minus-250 { right: -25rem !important; }

.right-per-250 { right: 250% !important; }

.right-minus-per-250 { right: -250% !important; }

.right-255 { right: 25.5rem !important; }

.right-minus-255 { right: -25.5rem !important; }

.right-per-255 { right: 255% !important; }

.right-minus-per-255 { right: -255% !important; }

.right-260 { right: 26rem !important; }

.right-minus-260 { right: -26rem !important; }

.right-per-260 { right: 260% !important; }

.right-minus-per-260 { right: -260% !important; }

.right-265 { right: 26.5rem !important; }

.right-minus-265 { right: -26.5rem !important; }

.right-per-265 { right: 265% !important; }

.right-minus-per-265 { right: -265% !important; }

.right-270 { right: 27rem !important; }

.right-minus-270 { right: -27rem !important; }

.right-per-270 { right: 270% !important; }

.right-minus-per-270 { right: -270% !important; }

.right-275 { right: 27.5rem !important; }

.right-minus-275 { right: -27.5rem !important; }

.right-per-275 { right: 275% !important; }

.right-minus-per-275 { right: -275% !important; }

.right-280 { right: 28rem !important; }

.right-minus-280 { right: -28rem !important; }

.right-per-280 { right: 280% !important; }

.right-minus-per-280 { right: -280% !important; }

.right-285 { right: 28.5rem !important; }

.right-minus-285 { right: -28.5rem !important; }

.right-per-285 { right: 285% !important; }

.right-minus-per-285 { right: -285% !important; }

.right-290 { right: 29rem !important; }

.right-minus-290 { right: -29rem !important; }

.right-per-290 { right: 290% !important; }

.right-minus-per-290 { right: -290% !important; }

.right-295 { right: 29.5rem !important; }

.right-minus-295 { right: -29.5rem !important; }

.right-per-295 { right: 295% !important; }

.right-minus-per-295 { right: -295% !important; }

.right-300 { right: 30rem !important; }

.right-minus-300 { right: -30rem !important; }

.right-per-300 { right: 300% !important; }

.right-minus-per-300 { right: -300% !important; }

.right-305 { right: 30.5rem !important; }

.right-minus-305 { right: -30.5rem !important; }

.right-per-305 { right: 305% !important; }

.right-minus-per-305 { right: -305% !important; }

.right-310 { right: 31rem !important; }

.right-minus-310 { right: -31rem !important; }

.right-per-310 { right: 310% !important; }

.right-minus-per-310 { right: -310% !important; }

.right-315 { right: 31.5rem !important; }

.right-minus-315 { right: -31.5rem !important; }

.right-per-315 { right: 315% !important; }

.right-minus-per-315 { right: -315% !important; }

.right-320 { right: 32rem !important; }

.right-minus-320 { right: -32rem !important; }

.right-per-320 { right: 320% !important; }

.right-minus-per-320 { right: -320% !important; }

.right-325 { right: 32.5rem !important; }

.right-minus-325 { right: -32.5rem !important; }

.right-per-325 { right: 325% !important; }

.right-minus-per-325 { right: -325% !important; }

.right-330 { right: 33rem !important; }

.right-minus-330 { right: -33rem !important; }

.right-per-330 { right: 330% !important; }

.right-minus-per-330 { right: -330% !important; }

.right-335 { right: 33.5rem !important; }

.right-minus-335 { right: -33.5rem !important; }

.right-per-335 { right: 335% !important; }

.right-minus-per-335 { right: -335% !important; }

.right-340 { right: 34rem !important; }

.right-minus-340 { right: -34rem !important; }

.right-per-340 { right: 340% !important; }

.right-minus-per-340 { right: -340% !important; }

.right-345 { right: 34.5rem !important; }

.right-minus-345 { right: -34.5rem !important; }

.right-per-345 { right: 345% !important; }

.right-minus-per-345 { right: -345% !important; }

.right-350 { right: 35rem !important; }

.right-minus-350 { right: -35rem !important; }

.right-per-350 { right: 350% !important; }

.right-minus-per-350 { right: -350% !important; }

.right-355 { right: 35.5rem !important; }

.right-minus-355 { right: -35.5rem !important; }

.right-per-355 { right: 355% !important; }

.right-minus-per-355 { right: -355% !important; }

.right-360 { right: 36rem !important; }

.right-minus-360 { right: -36rem !important; }

.right-per-360 { right: 360% !important; }

.right-minus-per-360 { right: -360% !important; }

.right-365 { right: 36.5rem !important; }

.right-minus-365 { right: -36.5rem !important; }

.right-per-365 { right: 365% !important; }

.right-minus-per-365 { right: -365% !important; }

.right-370 { right: 37rem !important; }

.right-minus-370 { right: -37rem !important; }

.right-per-370 { right: 370% !important; }

.right-minus-per-370 { right: -370% !important; }

.right-375 { right: 37.5rem !important; }

.right-minus-375 { right: -37.5rem !important; }

.right-per-375 { right: 375% !important; }

.right-minus-per-375 { right: -375% !important; }

.right-380 { right: 38rem !important; }

.right-minus-380 { right: -38rem !important; }

.right-per-380 { right: 380% !important; }

.right-minus-per-380 { right: -380% !important; }

.right-385 { right: 38.5rem !important; }

.right-minus-385 { right: -38.5rem !important; }

.right-per-385 { right: 385% !important; }

.right-minus-per-385 { right: -385% !important; }

.right-390 { right: 39rem !important; }

.right-minus-390 { right: -39rem !important; }

.right-per-390 { right: 390% !important; }

.right-minus-per-390 { right: -390% !important; }

.right-395 { right: 39.5rem !important; }

.right-minus-395 { right: -39.5rem !important; }

.right-per-395 { right: 395% !important; }

.right-minus-per-395 { right: -395% !important; }

.right-400 { right: 40rem !important; }

.right-minus-400 { right: -40rem !important; }

.right-per-400 { right: 400% !important; }

.right-minus-per-400 { right: -400% !important; }

.right-405 { right: 40.5rem !important; }

.right-minus-405 { right: -40.5rem !important; }

.right-per-405 { right: 405% !important; }

.right-minus-per-405 { right: -405% !important; }

.right-410 { right: 41rem !important; }

.right-minus-410 { right: -41rem !important; }

.right-per-410 { right: 410% !important; }

.right-minus-per-410 { right: -410% !important; }

.right-415 { right: 41.5rem !important; }

.right-minus-415 { right: -41.5rem !important; }

.right-per-415 { right: 415% !important; }

.right-minus-per-415 { right: -415% !important; }

.right-420 { right: 42rem !important; }

.right-minus-420 { right: -42rem !important; }

.right-per-420 { right: 420% !important; }

.right-minus-per-420 { right: -420% !important; }

.right-425 { right: 42.5rem !important; }

.right-minus-425 { right: -42.5rem !important; }

.right-per-425 { right: 425% !important; }

.right-minus-per-425 { right: -425% !important; }

.right-430 { right: 43rem !important; }

.right-minus-430 { right: -43rem !important; }

.right-per-430 { right: 430% !important; }

.right-minus-per-430 { right: -430% !important; }

.right-435 { right: 43.5rem !important; }

.right-minus-435 { right: -43.5rem !important; }

.right-per-435 { right: 435% !important; }

.right-minus-per-435 { right: -435% !important; }

.right-440 { right: 44rem !important; }

.right-minus-440 { right: -44rem !important; }

.right-per-440 { right: 440% !important; }

.right-minus-per-440 { right: -440% !important; }

.right-445 { right: 44.5rem !important; }

.right-minus-445 { right: -44.5rem !important; }

.right-per-445 { right: 445% !important; }

.right-minus-per-445 { right: -445% !important; }

.right-450 { right: 45rem !important; }

.right-minus-450 { right: -45rem !important; }

.right-per-450 { right: 450% !important; }

.right-minus-per-450 { right: -450% !important; }

.right-455 { right: 45.5rem !important; }

.right-minus-455 { right: -45.5rem !important; }

.right-per-455 { right: 455% !important; }

.right-minus-per-455 { right: -455% !important; }

.right-460 { right: 46rem !important; }

.right-minus-460 { right: -46rem !important; }

.right-per-460 { right: 460% !important; }

.right-minus-per-460 { right: -460% !important; }

.right-465 { right: 46.5rem !important; }

.right-minus-465 { right: -46.5rem !important; }

.right-per-465 { right: 465% !important; }

.right-minus-per-465 { right: -465% !important; }

.right-470 { right: 47rem !important; }

.right-minus-470 { right: -47rem !important; }

.right-per-470 { right: 470% !important; }

.right-minus-per-470 { right: -470% !important; }

.right-475 { right: 47.5rem !important; }

.right-minus-475 { right: -47.5rem !important; }

.right-per-475 { right: 475% !important; }

.right-minus-per-475 { right: -475% !important; }

.right-480 { right: 48rem !important; }

.right-minus-480 { right: -48rem !important; }

.right-per-480 { right: 480% !important; }

.right-minus-per-480 { right: -480% !important; }

.right-485 { right: 48.5rem !important; }

.right-minus-485 { right: -48.5rem !important; }

.right-per-485 { right: 485% !important; }

.right-minus-per-485 { right: -485% !important; }

.right-490 { right: 49rem !important; }

.right-minus-490 { right: -49rem !important; }

.right-per-490 { right: 490% !important; }

.right-minus-per-490 { right: -490% !important; }

.right-495 { right: 49.5rem !important; }

.right-minus-495 { right: -49.5rem !important; }

.right-per-495 { right: 495% !important; }

.right-minus-per-495 { right: -495% !important; }

.right-500 { right: 50rem !important; }

.right-minus-500 { right: -50rem !important; }

.right-per-500 { right: 500% !important; }

.right-minus-per-500 { right: -500% !important; }

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

@media (min-width: 991px) { .right-lg-0 { right: 0rem !important; }
  .right-lg-minus-0 { right: 0rem !important; }
  .right-lg-per-0 { right: 0% !important; }
  .right-lg-minus-per-0 { right: 0% !important; }
  .right-lg-5 { right: 0.5rem !important; }
  .right-lg-minus-5 { right: -0.5rem !important; }
  .right-lg-per-5 { right: 5% !important; }
  .right-lg-minus-per-5 { right: -5% !important; }
  .right-lg-10 { right: 1rem !important; }
  .right-lg-minus-10 { right: -1rem !important; }
  .right-lg-per-10 { right: 10% !important; }
  .right-lg-minus-per-10 { right: -10% !important; }
  .right-lg-15 { right: 1.5rem !important; }
  .right-lg-minus-15 { right: -1.5rem !important; }
  .right-lg-per-15 { right: 15% !important; }
  .right-lg-minus-per-15 { right: -15% !important; }
  .right-lg-20 { right: 2rem !important; }
  .right-lg-minus-20 { right: -2rem !important; }
  .right-lg-per-20 { right: 20% !important; }
  .right-lg-minus-per-20 { right: -20% !important; }
  .right-lg-25 { right: 2.5rem !important; }
  .right-lg-minus-25 { right: -2.5rem !important; }
  .right-lg-per-25 { right: 25% !important; }
  .right-lg-minus-per-25 { right: -25% !important; }
  .right-lg-30 { right: 3rem !important; }
  .right-lg-minus-30 { right: -3rem !important; }
  .right-lg-per-30 { right: 30% !important; }
  .right-lg-minus-per-30 { right: -30% !important; }
  .right-lg-35 { right: 3.5rem !important; }
  .right-lg-minus-35 { right: -3.5rem !important; }
  .right-lg-per-35 { right: 35% !important; }
  .right-lg-minus-per-35 { right: -35% !important; }
  .right-lg-40 { right: 4rem !important; }
  .right-lg-minus-40 { right: -4rem !important; }
  .right-lg-per-40 { right: 40% !important; }
  .right-lg-minus-per-40 { right: -40% !important; }
  .right-lg-45 { right: 4.5rem !important; }
  .right-lg-minus-45 { right: -4.5rem !important; }
  .right-lg-per-45 { right: 45% !important; }
  .right-lg-minus-per-45 { right: -45% !important; }
  .right-lg-50 { right: 5rem !important; }
  .right-lg-minus-50 { right: -5rem !important; }
  .right-lg-per-50 { right: 50% !important; }
  .right-lg-minus-per-50 { right: -50% !important; }
  .right-lg-55 { right: 5.5rem !important; }
  .right-lg-minus-55 { right: -5.5rem !important; }
  .right-lg-per-55 { right: 55% !important; }
  .right-lg-minus-per-55 { right: -55% !important; }
  .right-lg-60 { right: 6rem !important; }
  .right-lg-minus-60 { right: -6rem !important; }
  .right-lg-per-60 { right: 60% !important; }
  .right-lg-minus-per-60 { right: -60% !important; }
  .right-lg-65 { right: 6.5rem !important; }
  .right-lg-minus-65 { right: -6.5rem !important; }
  .right-lg-per-65 { right: 65% !important; }
  .right-lg-minus-per-65 { right: -65% !important; }
  .right-lg-70 { right: 7rem !important; }
  .right-lg-minus-70 { right: -7rem !important; }
  .right-lg-per-70 { right: 70% !important; }
  .right-lg-minus-per-70 { right: -70% !important; }
  .right-lg-75 { right: 7.5rem !important; }
  .right-lg-minus-75 { right: -7.5rem !important; }
  .right-lg-per-75 { right: 75% !important; }
  .right-lg-minus-per-75 { right: -75% !important; }
  .right-lg-80 { right: 8rem !important; }
  .right-lg-minus-80 { right: -8rem !important; }
  .right-lg-per-80 { right: 80% !important; }
  .right-lg-minus-per-80 { right: -80% !important; }
  .right-lg-85 { right: 8.5rem !important; }
  .right-lg-minus-85 { right: -8.5rem !important; }
  .right-lg-per-85 { right: 85% !important; }
  .right-lg-minus-per-85 { right: -85% !important; }
  .right-lg-90 { right: 9rem !important; }
  .right-lg-minus-90 { right: -9rem !important; }
  .right-lg-per-90 { right: 90% !important; }
  .right-lg-minus-per-90 { right: -90% !important; }
  .right-lg-95 { right: 9.5rem !important; }
  .right-lg-minus-95 { right: -9.5rem !important; }
  .right-lg-per-95 { right: 95% !important; }
  .right-lg-minus-per-95 { right: -95% !important; }
  .right-lg-100 { right: 10rem !important; }
  .right-lg-minus-100 { right: -10rem !important; }
  .right-lg-per-100 { right: 100% !important; }
  .right-lg-minus-per-100 { right: -100% !important; }
  .right-lg-105 { right: 10.5rem !important; }
  .right-lg-minus-105 { right: -10.5rem !important; }
  .right-lg-per-105 { right: 105% !important; }
  .right-lg-minus-per-105 { right: -105% !important; }
  .right-lg-110 { right: 11rem !important; }
  .right-lg-minus-110 { right: -11rem !important; }
  .right-lg-per-110 { right: 110% !important; }
  .right-lg-minus-per-110 { right: -110% !important; }
  .right-lg-115 { right: 11.5rem !important; }
  .right-lg-minus-115 { right: -11.5rem !important; }
  .right-lg-per-115 { right: 115% !important; }
  .right-lg-minus-per-115 { right: -115% !important; }
  .right-lg-120 { right: 12rem !important; }
  .right-lg-minus-120 { right: -12rem !important; }
  .right-lg-per-120 { right: 120% !important; }
  .right-lg-minus-per-120 { right: -120% !important; }
  .right-lg-125 { right: 12.5rem !important; }
  .right-lg-minus-125 { right: -12.5rem !important; }
  .right-lg-per-125 { right: 125% !important; }
  .right-lg-minus-per-125 { right: -125% !important; }
  .right-lg-130 { right: 13rem !important; }
  .right-lg-minus-130 { right: -13rem !important; }
  .right-lg-per-130 { right: 130% !important; }
  .right-lg-minus-per-130 { right: -130% !important; }
  .right-lg-135 { right: 13.5rem !important; }
  .right-lg-minus-135 { right: -13.5rem !important; }
  .right-lg-per-135 { right: 135% !important; }
  .right-lg-minus-per-135 { right: -135% !important; }
  .right-lg-140 { right: 14rem !important; }
  .right-lg-minus-140 { right: -14rem !important; }
  .right-lg-per-140 { right: 140% !important; }
  .right-lg-minus-per-140 { right: -140% !important; }
  .right-lg-145 { right: 14.5rem !important; }
  .right-lg-minus-145 { right: -14.5rem !important; }
  .right-lg-per-145 { right: 145% !important; }
  .right-lg-minus-per-145 { right: -145% !important; }
  .right-lg-150 { right: 15rem !important; }
  .right-lg-minus-150 { right: -15rem !important; }
  .right-lg-per-150 { right: 150% !important; }
  .right-lg-minus-per-150 { right: -150% !important; }
  .right-lg-155 { right: 15.5rem !important; }
  .right-lg-minus-155 { right: -15.5rem !important; }
  .right-lg-per-155 { right: 155% !important; }
  .right-lg-minus-per-155 { right: -155% !important; }
  .right-lg-160 { right: 16rem !important; }
  .right-lg-minus-160 { right: -16rem !important; }
  .right-lg-per-160 { right: 160% !important; }
  .right-lg-minus-per-160 { right: -160% !important; }
  .right-lg-165 { right: 16.5rem !important; }
  .right-lg-minus-165 { right: -16.5rem !important; }
  .right-lg-per-165 { right: 165% !important; }
  .right-lg-minus-per-165 { right: -165% !important; }
  .right-lg-170 { right: 17rem !important; }
  .right-lg-minus-170 { right: -17rem !important; }
  .right-lg-per-170 { right: 170% !important; }
  .right-lg-minus-per-170 { right: -170% !important; }
  .right-lg-175 { right: 17.5rem !important; }
  .right-lg-minus-175 { right: -17.5rem !important; }
  .right-lg-per-175 { right: 175% !important; }
  .right-lg-minus-per-175 { right: -175% !important; }
  .right-lg-180 { right: 18rem !important; }
  .right-lg-minus-180 { right: -18rem !important; }
  .right-lg-per-180 { right: 180% !important; }
  .right-lg-minus-per-180 { right: -180% !important; }
  .right-lg-185 { right: 18.5rem !important; }
  .right-lg-minus-185 { right: -18.5rem !important; }
  .right-lg-per-185 { right: 185% !important; }
  .right-lg-minus-per-185 { right: -185% !important; }
  .right-lg-190 { right: 19rem !important; }
  .right-lg-minus-190 { right: -19rem !important; }
  .right-lg-per-190 { right: 190% !important; }
  .right-lg-minus-per-190 { right: -190% !important; }
  .right-lg-195 { right: 19.5rem !important; }
  .right-lg-minus-195 { right: -19.5rem !important; }
  .right-lg-per-195 { right: 195% !important; }
  .right-lg-minus-per-195 { right: -195% !important; }
  .right-lg-200 { right: 20rem !important; }
  .right-lg-minus-200 { right: -20rem !important; }
  .right-lg-per-200 { right: 200% !important; }
  .right-lg-minus-per-200 { right: -200% !important; }
  .right-lg-205 { right: 20.5rem !important; }
  .right-lg-minus-205 { right: -20.5rem !important; }
  .right-lg-per-205 { right: 205% !important; }
  .right-lg-minus-per-205 { right: -205% !important; }
  .right-lg-210 { right: 21rem !important; }
  .right-lg-minus-210 { right: -21rem !important; }
  .right-lg-per-210 { right: 210% !important; }
  .right-lg-minus-per-210 { right: -210% !important; }
  .right-lg-215 { right: 21.5rem !important; }
  .right-lg-minus-215 { right: -21.5rem !important; }
  .right-lg-per-215 { right: 215% !important; }
  .right-lg-minus-per-215 { right: -215% !important; }
  .right-lg-220 { right: 22rem !important; }
  .right-lg-minus-220 { right: -22rem !important; }
  .right-lg-per-220 { right: 220% !important; }
  .right-lg-minus-per-220 { right: -220% !important; }
  .right-lg-225 { right: 22.5rem !important; }
  .right-lg-minus-225 { right: -22.5rem !important; }
  .right-lg-per-225 { right: 225% !important; }
  .right-lg-minus-per-225 { right: -225% !important; }
  .right-lg-230 { right: 23rem !important; }
  .right-lg-minus-230 { right: -23rem !important; }
  .right-lg-per-230 { right: 230% !important; }
  .right-lg-minus-per-230 { right: -230% !important; }
  .right-lg-235 { right: 23.5rem !important; }
  .right-lg-minus-235 { right: -23.5rem !important; }
  .right-lg-per-235 { right: 235% !important; }
  .right-lg-minus-per-235 { right: -235% !important; }
  .right-lg-240 { right: 24rem !important; }
  .right-lg-minus-240 { right: -24rem !important; }
  .right-lg-per-240 { right: 240% !important; }
  .right-lg-minus-per-240 { right: -240% !important; }
  .right-lg-245 { right: 24.5rem !important; }
  .right-lg-minus-245 { right: -24.5rem !important; }
  .right-lg-per-245 { right: 245% !important; }
  .right-lg-minus-per-245 { right: -245% !important; }
  .right-lg-250 { right: 25rem !important; }
  .right-lg-minus-250 { right: -25rem !important; }
  .right-lg-per-250 { right: 250% !important; }
  .right-lg-minus-per-250 { right: -250% !important; }
  .right-lg-255 { right: 25.5rem !important; }
  .right-lg-minus-255 { right: -25.5rem !important; }
  .right-lg-per-255 { right: 255% !important; }
  .right-lg-minus-per-255 { right: -255% !important; }
  .right-lg-260 { right: 26rem !important; }
  .right-lg-minus-260 { right: -26rem !important; }
  .right-lg-per-260 { right: 260% !important; }
  .right-lg-minus-per-260 { right: -260% !important; }
  .right-lg-265 { right: 26.5rem !important; }
  .right-lg-minus-265 { right: -26.5rem !important; }
  .right-lg-per-265 { right: 265% !important; }
  .right-lg-minus-per-265 { right: -265% !important; }
  .right-lg-270 { right: 27rem !important; }
  .right-lg-minus-270 { right: -27rem !important; }
  .right-lg-per-270 { right: 270% !important; }
  .right-lg-minus-per-270 { right: -270% !important; }
  .right-lg-275 { right: 27.5rem !important; }
  .right-lg-minus-275 { right: -27.5rem !important; }
  .right-lg-per-275 { right: 275% !important; }
  .right-lg-minus-per-275 { right: -275% !important; }
  .right-lg-280 { right: 28rem !important; }
  .right-lg-minus-280 { right: -28rem !important; }
  .right-lg-per-280 { right: 280% !important; }
  .right-lg-minus-per-280 { right: -280% !important; }
  .right-lg-285 { right: 28.5rem !important; }
  .right-lg-minus-285 { right: -28.5rem !important; }
  .right-lg-per-285 { right: 285% !important; }
  .right-lg-minus-per-285 { right: -285% !important; }
  .right-lg-290 { right: 29rem !important; }
  .right-lg-minus-290 { right: -29rem !important; }
  .right-lg-per-290 { right: 290% !important; }
  .right-lg-minus-per-290 { right: -290% !important; }
  .right-lg-295 { right: 29.5rem !important; }
  .right-lg-minus-295 { right: -29.5rem !important; }
  .right-lg-per-295 { right: 295% !important; }
  .right-lg-minus-per-295 { right: -295% !important; }
  .right-lg-300 { right: 30rem !important; }
  .right-lg-minus-300 { right: -30rem !important; }
  .right-lg-per-300 { right: 300% !important; }
  .right-lg-minus-per-300 { right: -300% !important; }
  .right-lg-305 { right: 30.5rem !important; }
  .right-lg-minus-305 { right: -30.5rem !important; }
  .right-lg-per-305 { right: 305% !important; }
  .right-lg-minus-per-305 { right: -305% !important; }
  .right-lg-310 { right: 31rem !important; }
  .right-lg-minus-310 { right: -31rem !important; }
  .right-lg-per-310 { right: 310% !important; }
  .right-lg-minus-per-310 { right: -310% !important; }
  .right-lg-315 { right: 31.5rem !important; }
  .right-lg-minus-315 { right: -31.5rem !important; }
  .right-lg-per-315 { right: 315% !important; }
  .right-lg-minus-per-315 { right: -315% !important; }
  .right-lg-320 { right: 32rem !important; }
  .right-lg-minus-320 { right: -32rem !important; }
  .right-lg-per-320 { right: 320% !important; }
  .right-lg-minus-per-320 { right: -320% !important; }
  .right-lg-325 { right: 32.5rem !important; }
  .right-lg-minus-325 { right: -32.5rem !important; }
  .right-lg-per-325 { right: 325% !important; }
  .right-lg-minus-per-325 { right: -325% !important; }
  .right-lg-330 { right: 33rem !important; }
  .right-lg-minus-330 { right: -33rem !important; }
  .right-lg-per-330 { right: 330% !important; }
  .right-lg-minus-per-330 { right: -330% !important; }
  .right-lg-335 { right: 33.5rem !important; }
  .right-lg-minus-335 { right: -33.5rem !important; }
  .right-lg-per-335 { right: 335% !important; }
  .right-lg-minus-per-335 { right: -335% !important; }
  .right-lg-340 { right: 34rem !important; }
  .right-lg-minus-340 { right: -34rem !important; }
  .right-lg-per-340 { right: 340% !important; }
  .right-lg-minus-per-340 { right: -340% !important; }
  .right-lg-345 { right: 34.5rem !important; }
  .right-lg-minus-345 { right: -34.5rem !important; }
  .right-lg-per-345 { right: 345% !important; }
  .right-lg-minus-per-345 { right: -345% !important; }
  .right-lg-350 { right: 35rem !important; }
  .right-lg-minus-350 { right: -35rem !important; }
  .right-lg-per-350 { right: 350% !important; }
  .right-lg-minus-per-350 { right: -350% !important; }
  .right-lg-355 { right: 35.5rem !important; }
  .right-lg-minus-355 { right: -35.5rem !important; }
  .right-lg-per-355 { right: 355% !important; }
  .right-lg-minus-per-355 { right: -355% !important; }
  .right-lg-360 { right: 36rem !important; }
  .right-lg-minus-360 { right: -36rem !important; }
  .right-lg-per-360 { right: 360% !important; }
  .right-lg-minus-per-360 { right: -360% !important; }
  .right-lg-365 { right: 36.5rem !important; }
  .right-lg-minus-365 { right: -36.5rem !important; }
  .right-lg-per-365 { right: 365% !important; }
  .right-lg-minus-per-365 { right: -365% !important; }
  .right-lg-370 { right: 37rem !important; }
  .right-lg-minus-370 { right: -37rem !important; }
  .right-lg-per-370 { right: 370% !important; }
  .right-lg-minus-per-370 { right: -370% !important; }
  .right-lg-375 { right: 37.5rem !important; }
  .right-lg-minus-375 { right: -37.5rem !important; }
  .right-lg-per-375 { right: 375% !important; }
  .right-lg-minus-per-375 { right: -375% !important; }
  .right-lg-380 { right: 38rem !important; }
  .right-lg-minus-380 { right: -38rem !important; }
  .right-lg-per-380 { right: 380% !important; }
  .right-lg-minus-per-380 { right: -380% !important; }
  .right-lg-385 { right: 38.5rem !important; }
  .right-lg-minus-385 { right: -38.5rem !important; }
  .right-lg-per-385 { right: 385% !important; }
  .right-lg-minus-per-385 { right: -385% !important; }
  .right-lg-390 { right: 39rem !important; }
  .right-lg-minus-390 { right: -39rem !important; }
  .right-lg-per-390 { right: 390% !important; }
  .right-lg-minus-per-390 { right: -390% !important; }
  .right-lg-395 { right: 39.5rem !important; }
  .right-lg-minus-395 { right: -39.5rem !important; }
  .right-lg-per-395 { right: 395% !important; }
  .right-lg-minus-per-395 { right: -395% !important; }
  .right-lg-400 { right: 40rem !important; }
  .right-lg-minus-400 { right: -40rem !important; }
  .right-lg-per-400 { right: 400% !important; }
  .right-lg-minus-per-400 { right: -400% !important; }
  .right-lg-405 { right: 40.5rem !important; }
  .right-lg-minus-405 { right: -40.5rem !important; }
  .right-lg-per-405 { right: 405% !important; }
  .right-lg-minus-per-405 { right: -405% !important; }
  .right-lg-410 { right: 41rem !important; }
  .right-lg-minus-410 { right: -41rem !important; }
  .right-lg-per-410 { right: 410% !important; }
  .right-lg-minus-per-410 { right: -410% !important; }
  .right-lg-415 { right: 41.5rem !important; }
  .right-lg-minus-415 { right: -41.5rem !important; }
  .right-lg-per-415 { right: 415% !important; }
  .right-lg-minus-per-415 { right: -415% !important; }
  .right-lg-420 { right: 42rem !important; }
  .right-lg-minus-420 { right: -42rem !important; }
  .right-lg-per-420 { right: 420% !important; }
  .right-lg-minus-per-420 { right: -420% !important; }
  .right-lg-425 { right: 42.5rem !important; }
  .right-lg-minus-425 { right: -42.5rem !important; }
  .right-lg-per-425 { right: 425% !important; }
  .right-lg-minus-per-425 { right: -425% !important; }
  .right-lg-430 { right: 43rem !important; }
  .right-lg-minus-430 { right: -43rem !important; }
  .right-lg-per-430 { right: 430% !important; }
  .right-lg-minus-per-430 { right: -430% !important; }
  .right-lg-435 { right: 43.5rem !important; }
  .right-lg-minus-435 { right: -43.5rem !important; }
  .right-lg-per-435 { right: 435% !important; }
  .right-lg-minus-per-435 { right: -435% !important; }
  .right-lg-440 { right: 44rem !important; }
  .right-lg-minus-440 { right: -44rem !important; }
  .right-lg-per-440 { right: 440% !important; }
  .right-lg-minus-per-440 { right: -440% !important; }
  .right-lg-445 { right: 44.5rem !important; }
  .right-lg-minus-445 { right: -44.5rem !important; }
  .right-lg-per-445 { right: 445% !important; }
  .right-lg-minus-per-445 { right: -445% !important; }
  .right-lg-450 { right: 45rem !important; }
  .right-lg-minus-450 { right: -45rem !important; }
  .right-lg-per-450 { right: 450% !important; }
  .right-lg-minus-per-450 { right: -450% !important; }
  .right-lg-455 { right: 45.5rem !important; }
  .right-lg-minus-455 { right: -45.5rem !important; }
  .right-lg-per-455 { right: 455% !important; }
  .right-lg-minus-per-455 { right: -455% !important; }
  .right-lg-460 { right: 46rem !important; }
  .right-lg-minus-460 { right: -46rem !important; }
  .right-lg-per-460 { right: 460% !important; }
  .right-lg-minus-per-460 { right: -460% !important; }
  .right-lg-465 { right: 46.5rem !important; }
  .right-lg-minus-465 { right: -46.5rem !important; }
  .right-lg-per-465 { right: 465% !important; }
  .right-lg-minus-per-465 { right: -465% !important; }
  .right-lg-470 { right: 47rem !important; }
  .right-lg-minus-470 { right: -47rem !important; }
  .right-lg-per-470 { right: 470% !important; }
  .right-lg-minus-per-470 { right: -470% !important; }
  .right-lg-475 { right: 47.5rem !important; }
  .right-lg-minus-475 { right: -47.5rem !important; }
  .right-lg-per-475 { right: 475% !important; }
  .right-lg-minus-per-475 { right: -475% !important; }
  .right-lg-480 { right: 48rem !important; }
  .right-lg-minus-480 { right: -48rem !important; }
  .right-lg-per-480 { right: 480% !important; }
  .right-lg-minus-per-480 { right: -480% !important; }
  .right-lg-485 { right: 48.5rem !important; }
  .right-lg-minus-485 { right: -48.5rem !important; }
  .right-lg-per-485 { right: 485% !important; }
  .right-lg-minus-per-485 { right: -485% !important; }
  .right-lg-490 { right: 49rem !important; }
  .right-lg-minus-490 { right: -49rem !important; }
  .right-lg-per-490 { right: 490% !important; }
  .right-lg-minus-per-490 { right: -490% !important; }
  .right-lg-495 { right: 49.5rem !important; }
  .right-lg-minus-495 { right: -49.5rem !important; }
  .right-lg-per-495 { right: 495% !important; }
  .right-lg-minus-per-495 { right: -495% !important; }
  .right-lg-500 { right: 50rem !important; }
  .right-lg-minus-500 { right: -50rem !important; }
  .right-lg-per-500 { right: 500% !important; }
  .right-lg-minus-per-500 { right: -500% !important; }
  .right-lg-auto { right: auto !important; } }

/* マージンの設定 */
.m-px-0 { margin: 0rem !important; }

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

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

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

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

.m-px-25 { margin: 2.5rem !important; }

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

.m-px-35 { margin: 3.5rem !important; }

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

.m-px-45 { margin: 4.5rem !important; }

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

.m-px-55 { margin: 5.5rem !important; }

.m-px-60 { margin: 6rem !important; }

.m-px-65 { margin: 6.5rem !important; }

.m-px-70 { margin: 7rem !important; }

.m-px-75 { margin: 7.5rem !important; }

.m-px-80 { margin: 8rem !important; }

.m-px-85 { margin: 8.5rem !important; }

.m-px-90 { margin: 9rem !important; }

.m-px-95 { margin: 9.5rem !important; }

.m-px-100 { margin: 10rem !important; }

.m-px-105 { margin: 10.5rem !important; }

.m-px-110 { margin: 11rem !important; }

.m-px-115 { margin: 11.5rem !important; }

.m-px-120 { margin: 12rem !important; }

.m-px-125 { margin: 12.5rem !important; }

.m-px-130 { margin: 13rem !important; }

.m-px-135 { margin: 13.5rem !important; }

.m-px-140 { margin: 14rem !important; }

.m-px-145 { margin: 14.5rem !important; }

.m-px-150 { margin: 15rem !important; }

.m-px-155 { margin: 15.5rem !important; }

.m-px-160 { margin: 16rem !important; }

.m-px-165 { margin: 16.5rem !important; }

.m-px-170 { margin: 17rem !important; }

.m-px-175 { margin: 17.5rem !important; }

.m-px-180 { margin: 18rem !important; }

.m-px-185 { margin: 18.5rem !important; }

.m-px-190 { margin: 19rem !important; }

.m-px-195 { margin: 19.5rem !important; }

.m-px-200 { margin: 20rem !important; }

.m-px-205 { margin: 20.5rem !important; }

.m-px-210 { margin: 21rem !important; }

.m-px-215 { margin: 21.5rem !important; }

.m-px-220 { margin: 22rem !important; }

.m-px-225 { margin: 22.5rem !important; }

.m-px-230 { margin: 23rem !important; }

.m-px-235 { margin: 23.5rem !important; }

.m-px-240 { margin: 24rem !important; }

.m-px-245 { margin: 24.5rem !important; }

.m-px-250 { margin: 25rem !important; }

.m-px-255 { margin: 25.5rem !important; }

.m-px-260 { margin: 26rem !important; }

.m-px-265 { margin: 26.5rem !important; }

.m-px-270 { margin: 27rem !important; }

.m-px-275 { margin: 27.5rem !important; }

.m-px-280 { margin: 28rem !important; }

.m-px-285 { margin: 28.5rem !important; }

.m-px-290 { margin: 29rem !important; }

.m-px-295 { margin: 29.5rem !important; }

.m-px-300 { margin: 30rem !important; }

.m-px-305 { margin: 30.5rem !important; }

.m-px-310 { margin: 31rem !important; }

.m-px-315 { margin: 31.5rem !important; }

.m-px-320 { margin: 32rem !important; }

.m-px-325 { margin: 32.5rem !important; }

.m-px-330 { margin: 33rem !important; }

.m-px-335 { margin: 33.5rem !important; }

.m-px-340 { margin: 34rem !important; }

.m-px-345 { margin: 34.5rem !important; }

.m-px-350 { margin: 35rem !important; }

.m-px-355 { margin: 35.5rem !important; }

.m-px-360 { margin: 36rem !important; }

.m-px-365 { margin: 36.5rem !important; }

.m-px-370 { margin: 37rem !important; }

.m-px-375 { margin: 37.5rem !important; }

.m-px-380 { margin: 38rem !important; }

.m-px-385 { margin: 38.5rem !important; }

.m-px-390 { margin: 39rem !important; }

.m-px-395 { margin: 39.5rem !important; }

.m-px-400 { margin: 40rem !important; }

.m-px-405 { margin: 40.5rem !important; }

.m-px-410 { margin: 41rem !important; }

.m-px-415 { margin: 41.5rem !important; }

.m-px-420 { margin: 42rem !important; }

.m-px-425 { margin: 42.5rem !important; }

.m-px-430 { margin: 43rem !important; }

.m-px-435 { margin: 43.5rem !important; }

.m-px-440 { margin: 44rem !important; }

.m-px-445 { margin: 44.5rem !important; }

.m-px-450 { margin: 45rem !important; }

.m-px-455 { margin: 45.5rem !important; }

.m-px-460 { margin: 46rem !important; }

.m-px-465 { margin: 46.5rem !important; }

.m-px-470 { margin: 47rem !important; }

.m-px-475 { margin: 47.5rem !important; }

.m-px-480 { margin: 48rem !important; }

.m-px-485 { margin: 48.5rem !important; }

.m-px-490 { margin: 49rem !important; }

.m-px-495 { margin: 49.5rem !important; }

.m-px-500 { margin: 50rem !important; }

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

@media (min-width: 991px) { .m-lg-px-0 { margin: 0rem !important; }
  .m-lg-px-5 { margin: 0.5rem !important; }
  .m-lg-px-10 { margin: 1rem !important; }
  .m-lg-px-15 { margin: 1.5rem !important; }
  .m-lg-px-20 { margin: 2rem !important; }
  .m-lg-px-25 { margin: 2.5rem !important; }
  .m-lg-px-30 { margin: 3rem !important; }
  .m-lg-px-35 { margin: 3.5rem !important; }
  .m-lg-px-40 { margin: 4rem !important; }
  .m-lg-px-45 { margin: 4.5rem !important; }
  .m-lg-px-50 { margin: 5rem !important; }
  .m-lg-px-55 { margin: 5.5rem !important; }
  .m-lg-px-60 { margin: 6rem !important; }
  .m-lg-px-65 { margin: 6.5rem !important; }
  .m-lg-px-70 { margin: 7rem !important; }
  .m-lg-px-75 { margin: 7.5rem !important; }
  .m-lg-px-80 { margin: 8rem !important; }
  .m-lg-px-85 { margin: 8.5rem !important; }
  .m-lg-px-90 { margin: 9rem !important; }
  .m-lg-px-95 { margin: 9.5rem !important; }
  .m-lg-px-100 { margin: 10rem !important; }
  .m-lg-px-105 { margin: 10.5rem !important; }
  .m-lg-px-110 { margin: 11rem !important; }
  .m-lg-px-115 { margin: 11.5rem !important; }
  .m-lg-px-120 { margin: 12rem !important; }
  .m-lg-px-125 { margin: 12.5rem !important; }
  .m-lg-px-130 { margin: 13rem !important; }
  .m-lg-px-135 { margin: 13.5rem !important; }
  .m-lg-px-140 { margin: 14rem !important; }
  .m-lg-px-145 { margin: 14.5rem !important; }
  .m-lg-px-150 { margin: 15rem !important; }
  .m-lg-px-155 { margin: 15.5rem !important; }
  .m-lg-px-160 { margin: 16rem !important; }
  .m-lg-px-165 { margin: 16.5rem !important; }
  .m-lg-px-170 { margin: 17rem !important; }
  .m-lg-px-175 { margin: 17.5rem !important; }
  .m-lg-px-180 { margin: 18rem !important; }
  .m-lg-px-185 { margin: 18.5rem !important; }
  .m-lg-px-190 { margin: 19rem !important; }
  .m-lg-px-195 { margin: 19.5rem !important; }
  .m-lg-px-200 { margin: 20rem !important; }
  .m-lg-px-205 { margin: 20.5rem !important; }
  .m-lg-px-210 { margin: 21rem !important; }
  .m-lg-px-215 { margin: 21.5rem !important; }
  .m-lg-px-220 { margin: 22rem !important; }
  .m-lg-px-225 { margin: 22.5rem !important; }
  .m-lg-px-230 { margin: 23rem !important; }
  .m-lg-px-235 { margin: 23.5rem !important; }
  .m-lg-px-240 { margin: 24rem !important; }
  .m-lg-px-245 { margin: 24.5rem !important; }
  .m-lg-px-250 { margin: 25rem !important; }
  .m-lg-px-255 { margin: 25.5rem !important; }
  .m-lg-px-260 { margin: 26rem !important; }
  .m-lg-px-265 { margin: 26.5rem !important; }
  .m-lg-px-270 { margin: 27rem !important; }
  .m-lg-px-275 { margin: 27.5rem !important; }
  .m-lg-px-280 { margin: 28rem !important; }
  .m-lg-px-285 { margin: 28.5rem !important; }
  .m-lg-px-290 { margin: 29rem !important; }
  .m-lg-px-295 { margin: 29.5rem !important; }
  .m-lg-px-300 { margin: 30rem !important; }
  .m-lg-px-305 { margin: 30.5rem !important; }
  .m-lg-px-310 { margin: 31rem !important; }
  .m-lg-px-315 { margin: 31.5rem !important; }
  .m-lg-px-320 { margin: 32rem !important; }
  .m-lg-px-325 { margin: 32.5rem !important; }
  .m-lg-px-330 { margin: 33rem !important; }
  .m-lg-px-335 { margin: 33.5rem !important; }
  .m-lg-px-340 { margin: 34rem !important; }
  .m-lg-px-345 { margin: 34.5rem !important; }
  .m-lg-px-350 { margin: 35rem !important; }
  .m-lg-px-355 { margin: 35.5rem !important; }
  .m-lg-px-360 { margin: 36rem !important; }
  .m-lg-px-365 { margin: 36.5rem !important; }
  .m-lg-px-370 { margin: 37rem !important; }
  .m-lg-px-375 { margin: 37.5rem !important; }
  .m-lg-px-380 { margin: 38rem !important; }
  .m-lg-px-385 { margin: 38.5rem !important; }
  .m-lg-px-390 { margin: 39rem !important; }
  .m-lg-px-395 { margin: 39.5rem !important; }
  .m-lg-px-400 { margin: 40rem !important; }
  .m-lg-px-405 { margin: 40.5rem !important; }
  .m-lg-px-410 { margin: 41rem !important; }
  .m-lg-px-415 { margin: 41.5rem !important; }
  .m-lg-px-420 { margin: 42rem !important; }
  .m-lg-px-425 { margin: 42.5rem !important; }
  .m-lg-px-430 { margin: 43rem !important; }
  .m-lg-px-435 { margin: 43.5rem !important; }
  .m-lg-px-440 { margin: 44rem !important; }
  .m-lg-px-445 { margin: 44.5rem !important; }
  .m-lg-px-450 { margin: 45rem !important; }
  .m-lg-px-455 { margin: 45.5rem !important; }
  .m-lg-px-460 { margin: 46rem !important; }
  .m-lg-px-465 { margin: 46.5rem !important; }
  .m-lg-px-470 { margin: 47rem !important; }
  .m-lg-px-475 { margin: 47.5rem !important; }
  .m-lg-px-480 { margin: 48rem !important; }
  .m-lg-px-485 { margin: 48.5rem !important; }
  .m-lg-px-490 { margin: 49rem !important; }
  .m-lg-px-495 { margin: 49.5rem !important; }
  .m-lg-px-500 { margin: 50rem !important; }
  .m-lg-auto { margin: auto !important; } }

.mt-px-0 { margin-top: 0rem !important; }

.mt-minus-px-0 { margin-top: 0rem !important; }

.mt-px-5 { margin-top: 0.5rem !important; }

.mt-minus-px-5 { margin-top: -0.5rem !important; }

.mt-px-10 { margin-top: 1rem !important; }

.mt-minus-px-10 { margin-top: -1rem !important; }

.mt-px-15 { margin-top: 1.5rem !important; }

.mt-minus-px-15 { margin-top: -1.5rem !important; }

.mt-px-20 { margin-top: 2rem !important; }

.mt-minus-px-20 { margin-top: -2rem !important; }

.mt-px-25 { margin-top: 2.5rem !important; }

.mt-minus-px-25 { margin-top: -2.5rem !important; }

.mt-px-30 { margin-top: 3rem !important; }

.mt-minus-px-30 { margin-top: -3rem !important; }

.mt-px-35 { margin-top: 3.5rem !important; }

.mt-minus-px-35 { margin-top: -3.5rem !important; }

.mt-px-40 { margin-top: 4rem !important; }

.mt-minus-px-40 { margin-top: -4rem !important; }

.mt-px-45 { margin-top: 4.5rem !important; }

.mt-minus-px-45 { margin-top: -4.5rem !important; }

.mt-px-50 { margin-top: 5rem !important; }

.mt-minus-px-50 { margin-top: -5rem !important; }

.mt-px-55 { margin-top: 5.5rem !important; }

.mt-minus-px-55 { margin-top: -5.5rem !important; }

.mt-px-60 { margin-top: 6rem !important; }

.mt-minus-px-60 { margin-top: -6rem !important; }

.mt-px-65 { margin-top: 6.5rem !important; }

.mt-minus-px-65 { margin-top: -6.5rem !important; }

.mt-px-70 { margin-top: 7rem !important; }

.mt-minus-px-70 { margin-top: -7rem !important; }

.mt-px-75 { margin-top: 7.5rem !important; }

.mt-minus-px-75 { margin-top: -7.5rem !important; }

.mt-px-80 { margin-top: 8rem !important; }

.mt-minus-px-80 { margin-top: -8rem !important; }

.mt-px-85 { margin-top: 8.5rem !important; }

.mt-minus-px-85 { margin-top: -8.5rem !important; }

.mt-px-90 { margin-top: 9rem !important; }

.mt-minus-px-90 { margin-top: -9rem !important; }

.mt-px-95 { margin-top: 9.5rem !important; }

.mt-minus-px-95 { margin-top: -9.5rem !important; }

.mt-px-100 { margin-top: 10rem !important; }

.mt-minus-px-100 { margin-top: -10rem !important; }

.mt-px-105 { margin-top: 10.5rem !important; }

.mt-minus-px-105 { margin-top: -10.5rem !important; }

.mt-px-110 { margin-top: 11rem !important; }

.mt-minus-px-110 { margin-top: -11rem !important; }

.mt-px-115 { margin-top: 11.5rem !important; }

.mt-minus-px-115 { margin-top: -11.5rem !important; }

.mt-px-120 { margin-top: 12rem !important; }

.mt-minus-px-120 { margin-top: -12rem !important; }

.mt-px-125 { margin-top: 12.5rem !important; }

.mt-minus-px-125 { margin-top: -12.5rem !important; }

.mt-px-130 { margin-top: 13rem !important; }

.mt-minus-px-130 { margin-top: -13rem !important; }

.mt-px-135 { margin-top: 13.5rem !important; }

.mt-minus-px-135 { margin-top: -13.5rem !important; }

.mt-px-140 { margin-top: 14rem !important; }

.mt-minus-px-140 { margin-top: -14rem !important; }

.mt-px-145 { margin-top: 14.5rem !important; }

.mt-minus-px-145 { margin-top: -14.5rem !important; }

.mt-px-150 { margin-top: 15rem !important; }

.mt-minus-px-150 { margin-top: -15rem !important; }

.mt-px-155 { margin-top: 15.5rem !important; }

.mt-minus-px-155 { margin-top: -15.5rem !important; }

.mt-px-160 { margin-top: 16rem !important; }

.mt-minus-px-160 { margin-top: -16rem !important; }

.mt-px-165 { margin-top: 16.5rem !important; }

.mt-minus-px-165 { margin-top: -16.5rem !important; }

.mt-px-170 { margin-top: 17rem !important; }

.mt-minus-px-170 { margin-top: -17rem !important; }

.mt-px-175 { margin-top: 17.5rem !important; }

.mt-minus-px-175 { margin-top: -17.5rem !important; }

.mt-px-180 { margin-top: 18rem !important; }

.mt-minus-px-180 { margin-top: -18rem !important; }

.mt-px-185 { margin-top: 18.5rem !important; }

.mt-minus-px-185 { margin-top: -18.5rem !important; }

.mt-px-190 { margin-top: 19rem !important; }

.mt-minus-px-190 { margin-top: -19rem !important; }

.mt-px-195 { margin-top: 19.5rem !important; }

.mt-minus-px-195 { margin-top: -19.5rem !important; }

.mt-px-200 { margin-top: 20rem !important; }

.mt-minus-px-200 { margin-top: -20rem !important; }

.mt-px-205 { margin-top: 20.5rem !important; }

.mt-minus-px-205 { margin-top: -20.5rem !important; }

.mt-px-210 { margin-top: 21rem !important; }

.mt-minus-px-210 { margin-top: -21rem !important; }

.mt-px-215 { margin-top: 21.5rem !important; }

.mt-minus-px-215 { margin-top: -21.5rem !important; }

.mt-px-220 { margin-top: 22rem !important; }

.mt-minus-px-220 { margin-top: -22rem !important; }

.mt-px-225 { margin-top: 22.5rem !important; }

.mt-minus-px-225 { margin-top: -22.5rem !important; }

.mt-px-230 { margin-top: 23rem !important; }

.mt-minus-px-230 { margin-top: -23rem !important; }

.mt-px-235 { margin-top: 23.5rem !important; }

.mt-minus-px-235 { margin-top: -23.5rem !important; }

.mt-px-240 { margin-top: 24rem !important; }

.mt-minus-px-240 { margin-top: -24rem !important; }

.mt-px-245 { margin-top: 24.5rem !important; }

.mt-minus-px-245 { margin-top: -24.5rem !important; }

.mt-px-250 { margin-top: 25rem !important; }

.mt-minus-px-250 { margin-top: -25rem !important; }

.mt-px-255 { margin-top: 25.5rem !important; }

.mt-minus-px-255 { margin-top: -25.5rem !important; }

.mt-px-260 { margin-top: 26rem !important; }

.mt-minus-px-260 { margin-top: -26rem !important; }

.mt-px-265 { margin-top: 26.5rem !important; }

.mt-minus-px-265 { margin-top: -26.5rem !important; }

.mt-px-270 { margin-top: 27rem !important; }

.mt-minus-px-270 { margin-top: -27rem !important; }

.mt-px-275 { margin-top: 27.5rem !important; }

.mt-minus-px-275 { margin-top: -27.5rem !important; }

.mt-px-280 { margin-top: 28rem !important; }

.mt-minus-px-280 { margin-top: -28rem !important; }

.mt-px-285 { margin-top: 28.5rem !important; }

.mt-minus-px-285 { margin-top: -28.5rem !important; }

.mt-px-290 { margin-top: 29rem !important; }

.mt-minus-px-290 { margin-top: -29rem !important; }

.mt-px-295 { margin-top: 29.5rem !important; }

.mt-minus-px-295 { margin-top: -29.5rem !important; }

.mt-px-300 { margin-top: 30rem !important; }

.mt-minus-px-300 { margin-top: -30rem !important; }

.mt-px-305 { margin-top: 30.5rem !important; }

.mt-minus-px-305 { margin-top: -30.5rem !important; }

.mt-px-310 { margin-top: 31rem !important; }

.mt-minus-px-310 { margin-top: -31rem !important; }

.mt-px-315 { margin-top: 31.5rem !important; }

.mt-minus-px-315 { margin-top: -31.5rem !important; }

.mt-px-320 { margin-top: 32rem !important; }

.mt-minus-px-320 { margin-top: -32rem !important; }

.mt-px-325 { margin-top: 32.5rem !important; }

.mt-minus-px-325 { margin-top: -32.5rem !important; }

.mt-px-330 { margin-top: 33rem !important; }

.mt-minus-px-330 { margin-top: -33rem !important; }

.mt-px-335 { margin-top: 33.5rem !important; }

.mt-minus-px-335 { margin-top: -33.5rem !important; }

.mt-px-340 { margin-top: 34rem !important; }

.mt-minus-px-340 { margin-top: -34rem !important; }

.mt-px-345 { margin-top: 34.5rem !important; }

.mt-minus-px-345 { margin-top: -34.5rem !important; }

.mt-px-350 { margin-top: 35rem !important; }

.mt-minus-px-350 { margin-top: -35rem !important; }

.mt-px-355 { margin-top: 35.5rem !important; }

.mt-minus-px-355 { margin-top: -35.5rem !important; }

.mt-px-360 { margin-top: 36rem !important; }

.mt-minus-px-360 { margin-top: -36rem !important; }

.mt-px-365 { margin-top: 36.5rem !important; }

.mt-minus-px-365 { margin-top: -36.5rem !important; }

.mt-px-370 { margin-top: 37rem !important; }

.mt-minus-px-370 { margin-top: -37rem !important; }

.mt-px-375 { margin-top: 37.5rem !important; }

.mt-minus-px-375 { margin-top: -37.5rem !important; }

.mt-px-380 { margin-top: 38rem !important; }

.mt-minus-px-380 { margin-top: -38rem !important; }

.mt-px-385 { margin-top: 38.5rem !important; }

.mt-minus-px-385 { margin-top: -38.5rem !important; }

.mt-px-390 { margin-top: 39rem !important; }

.mt-minus-px-390 { margin-top: -39rem !important; }

.mt-px-395 { margin-top: 39.5rem !important; }

.mt-minus-px-395 { margin-top: -39.5rem !important; }

.mt-px-400 { margin-top: 40rem !important; }

.mt-minus-px-400 { margin-top: -40rem !important; }

.mt-px-405 { margin-top: 40.5rem !important; }

.mt-minus-px-405 { margin-top: -40.5rem !important; }

.mt-px-410 { margin-top: 41rem !important; }

.mt-minus-px-410 { margin-top: -41rem !important; }

.mt-px-415 { margin-top: 41.5rem !important; }

.mt-minus-px-415 { margin-top: -41.5rem !important; }

.mt-px-420 { margin-top: 42rem !important; }

.mt-minus-px-420 { margin-top: -42rem !important; }

.mt-px-425 { margin-top: 42.5rem !important; }

.mt-minus-px-425 { margin-top: -42.5rem !important; }

.mt-px-430 { margin-top: 43rem !important; }

.mt-minus-px-430 { margin-top: -43rem !important; }

.mt-px-435 { margin-top: 43.5rem !important; }

.mt-minus-px-435 { margin-top: -43.5rem !important; }

.mt-px-440 { margin-top: 44rem !important; }

.mt-minus-px-440 { margin-top: -44rem !important; }

.mt-px-445 { margin-top: 44.5rem !important; }

.mt-minus-px-445 { margin-top: -44.5rem !important; }

.mt-px-450 { margin-top: 45rem !important; }

.mt-minus-px-450 { margin-top: -45rem !important; }

.mt-px-455 { margin-top: 45.5rem !important; }

.mt-minus-px-455 { margin-top: -45.5rem !important; }

.mt-px-460 { margin-top: 46rem !important; }

.mt-minus-px-460 { margin-top: -46rem !important; }

.mt-px-465 { margin-top: 46.5rem !important; }

.mt-minus-px-465 { margin-top: -46.5rem !important; }

.mt-px-470 { margin-top: 47rem !important; }

.mt-minus-px-470 { margin-top: -47rem !important; }

.mt-px-475 { margin-top: 47.5rem !important; }

.mt-minus-px-475 { margin-top: -47.5rem !important; }

.mt-px-480 { margin-top: 48rem !important; }

.mt-minus-px-480 { margin-top: -48rem !important; }

.mt-px-485 { margin-top: 48.5rem !important; }

.mt-minus-px-485 { margin-top: -48.5rem !important; }

.mt-px-490 { margin-top: 49rem !important; }

.mt-minus-px-490 { margin-top: -49rem !important; }

.mt-px-495 { margin-top: 49.5rem !important; }

.mt-minus-px-495 { margin-top: -49.5rem !important; }

.mt-px-500 { margin-top: 50rem !important; }

.mt-minus-px-500 { margin-top: -50rem !important; }

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

@media (min-width: 991px) { .mt-lg-px-0 { margin-top: 0rem !important; }
  .mt-lg-minus-px-0 { margin-top: 0rem !important; }
  .mt-lg-px-5 { margin-top: 0.5rem !important; }
  .mt-lg-minus-px-5 { margin-top: -0.5rem !important; }
  .mt-lg-px-10 { margin-top: 1rem !important; }
  .mt-lg-minus-px-10 { margin-top: -1rem !important; }
  .mt-lg-px-15 { margin-top: 1.5rem !important; }
  .mt-lg-minus-px-15 { margin-top: -1.5rem !important; }
  .mt-lg-px-20 { margin-top: 2rem !important; }
  .mt-lg-minus-px-20 { margin-top: -2rem !important; }
  .mt-lg-px-25 { margin-top: 2.5rem !important; }
  .mt-lg-minus-px-25 { margin-top: -2.5rem !important; }
  .mt-lg-px-30 { margin-top: 3rem !important; }
  .mt-lg-minus-px-30 { margin-top: -3rem !important; }
  .mt-lg-px-35 { margin-top: 3.5rem !important; }
  .mt-lg-minus-px-35 { margin-top: -3.5rem !important; }
  .mt-lg-px-40 { margin-top: 4rem !important; }
  .mt-lg-minus-px-40 { margin-top: -4rem !important; }
  .mt-lg-px-45 { margin-top: 4.5rem !important; }
  .mt-lg-minus-px-45 { margin-top: -4.5rem !important; }
  .mt-lg-px-50 { margin-top: 5rem !important; }
  .mt-lg-minus-px-50 { margin-top: -5rem !important; }
  .mt-lg-px-55 { margin-top: 5.5rem !important; }
  .mt-lg-minus-px-55 { margin-top: -5.5rem !important; }
  .mt-lg-px-60 { margin-top: 6rem !important; }
  .mt-lg-minus-px-60 { margin-top: -6rem !important; }
  .mt-lg-px-65 { margin-top: 6.5rem !important; }
  .mt-lg-minus-px-65 { margin-top: -6.5rem !important; }
  .mt-lg-px-70 { margin-top: 7rem !important; }
  .mt-lg-minus-px-70 { margin-top: -7rem !important; }
  .mt-lg-px-75 { margin-top: 7.5rem !important; }
  .mt-lg-minus-px-75 { margin-top: -7.5rem !important; }
  .mt-lg-px-80 { margin-top: 8rem !important; }
  .mt-lg-minus-px-80 { margin-top: -8rem !important; }
  .mt-lg-px-85 { margin-top: 8.5rem !important; }
  .mt-lg-minus-px-85 { margin-top: -8.5rem !important; }
  .mt-lg-px-90 { margin-top: 9rem !important; }
  .mt-lg-minus-px-90 { margin-top: -9rem !important; }
  .mt-lg-px-95 { margin-top: 9.5rem !important; }
  .mt-lg-minus-px-95 { margin-top: -9.5rem !important; }
  .mt-lg-px-100 { margin-top: 10rem !important; }
  .mt-lg-minus-px-100 { margin-top: -10rem !important; }
  .mt-lg-px-105 { margin-top: 10.5rem !important; }
  .mt-lg-minus-px-105 { margin-top: -10.5rem !important; }
  .mt-lg-px-110 { margin-top: 11rem !important; }
  .mt-lg-minus-px-110 { margin-top: -11rem !important; }
  .mt-lg-px-115 { margin-top: 11.5rem !important; }
  .mt-lg-minus-px-115 { margin-top: -11.5rem !important; }
  .mt-lg-px-120 { margin-top: 12rem !important; }
  .mt-lg-minus-px-120 { margin-top: -12rem !important; }
  .mt-lg-px-125 { margin-top: 12.5rem !important; }
  .mt-lg-minus-px-125 { margin-top: -12.5rem !important; }
  .mt-lg-px-130 { margin-top: 13rem !important; }
  .mt-lg-minus-px-130 { margin-top: -13rem !important; }
  .mt-lg-px-135 { margin-top: 13.5rem !important; }
  .mt-lg-minus-px-135 { margin-top: -13.5rem !important; }
  .mt-lg-px-140 { margin-top: 14rem !important; }
  .mt-lg-minus-px-140 { margin-top: -14rem !important; }
  .mt-lg-px-145 { margin-top: 14.5rem !important; }
  .mt-lg-minus-px-145 { margin-top: -14.5rem !important; }
  .mt-lg-px-150 { margin-top: 15rem !important; }
  .mt-lg-minus-px-150 { margin-top: -15rem !important; }
  .mt-lg-px-155 { margin-top: 15.5rem !important; }
  .mt-lg-minus-px-155 { margin-top: -15.5rem !important; }
  .mt-lg-px-160 { margin-top: 16rem !important; }
  .mt-lg-minus-px-160 { margin-top: -16rem !important; }
  .mt-lg-px-165 { margin-top: 16.5rem !important; }
  .mt-lg-minus-px-165 { margin-top: -16.5rem !important; }
  .mt-lg-px-170 { margin-top: 17rem !important; }
  .mt-lg-minus-px-170 { margin-top: -17rem !important; }
  .mt-lg-px-175 { margin-top: 17.5rem !important; }
  .mt-lg-minus-px-175 { margin-top: -17.5rem !important; }
  .mt-lg-px-180 { margin-top: 18rem !important; }
  .mt-lg-minus-px-180 { margin-top: -18rem !important; }
  .mt-lg-px-185 { margin-top: 18.5rem !important; }
  .mt-lg-minus-px-185 { margin-top: -18.5rem !important; }
  .mt-lg-px-190 { margin-top: 19rem !important; }
  .mt-lg-minus-px-190 { margin-top: -19rem !important; }
  .mt-lg-px-195 { margin-top: 19.5rem !important; }
  .mt-lg-minus-px-195 { margin-top: -19.5rem !important; }
  .mt-lg-px-200 { margin-top: 20rem !important; }
  .mt-lg-minus-px-200 { margin-top: -20rem !important; }
  .mt-lg-px-205 { margin-top: 20.5rem !important; }
  .mt-lg-minus-px-205 { margin-top: -20.5rem !important; }
  .mt-lg-px-210 { margin-top: 21rem !important; }
  .mt-lg-minus-px-210 { margin-top: -21rem !important; }
  .mt-lg-px-215 { margin-top: 21.5rem !important; }
  .mt-lg-minus-px-215 { margin-top: -21.5rem !important; }
  .mt-lg-px-220 { margin-top: 22rem !important; }
  .mt-lg-minus-px-220 { margin-top: -22rem !important; }
  .mt-lg-px-225 { margin-top: 22.5rem !important; }
  .mt-lg-minus-px-225 { margin-top: -22.5rem !important; }
  .mt-lg-px-230 { margin-top: 23rem !important; }
  .mt-lg-minus-px-230 { margin-top: -23rem !important; }
  .mt-lg-px-235 { margin-top: 23.5rem !important; }
  .mt-lg-minus-px-235 { margin-top: -23.5rem !important; }
  .mt-lg-px-240 { margin-top: 24rem !important; }
  .mt-lg-minus-px-240 { margin-top: -24rem !important; }
  .mt-lg-px-245 { margin-top: 24.5rem !important; }
  .mt-lg-minus-px-245 { margin-top: -24.5rem !important; }
  .mt-lg-px-250 { margin-top: 25rem !important; }
  .mt-lg-minus-px-250 { margin-top: -25rem !important; }
  .mt-lg-px-255 { margin-top: 25.5rem !important; }
  .mt-lg-minus-px-255 { margin-top: -25.5rem !important; }
  .mt-lg-px-260 { margin-top: 26rem !important; }
  .mt-lg-minus-px-260 { margin-top: -26rem !important; }
  .mt-lg-px-265 { margin-top: 26.5rem !important; }
  .mt-lg-minus-px-265 { margin-top: -26.5rem !important; }
  .mt-lg-px-270 { margin-top: 27rem !important; }
  .mt-lg-minus-px-270 { margin-top: -27rem !important; }
  .mt-lg-px-275 { margin-top: 27.5rem !important; }
  .mt-lg-minus-px-275 { margin-top: -27.5rem !important; }
  .mt-lg-px-280 { margin-top: 28rem !important; }
  .mt-lg-minus-px-280 { margin-top: -28rem !important; }
  .mt-lg-px-285 { margin-top: 28.5rem !important; }
  .mt-lg-minus-px-285 { margin-top: -28.5rem !important; }
  .mt-lg-px-290 { margin-top: 29rem !important; }
  .mt-lg-minus-px-290 { margin-top: -29rem !important; }
  .mt-lg-px-295 { margin-top: 29.5rem !important; }
  .mt-lg-minus-px-295 { margin-top: -29.5rem !important; }
  .mt-lg-px-300 { margin-top: 30rem !important; }
  .mt-lg-minus-px-300 { margin-top: -30rem !important; }
  .mt-lg-px-305 { margin-top: 30.5rem !important; }
  .mt-lg-minus-px-305 { margin-top: -30.5rem !important; }
  .mt-lg-px-310 { margin-top: 31rem !important; }
  .mt-lg-minus-px-310 { margin-top: -31rem !important; }
  .mt-lg-px-315 { margin-top: 31.5rem !important; }
  .mt-lg-minus-px-315 { margin-top: -31.5rem !important; }
  .mt-lg-px-320 { margin-top: 32rem !important; }
  .mt-lg-minus-px-320 { margin-top: -32rem !important; }
  .mt-lg-px-325 { margin-top: 32.5rem !important; }
  .mt-lg-minus-px-325 { margin-top: -32.5rem !important; }
  .mt-lg-px-330 { margin-top: 33rem !important; }
  .mt-lg-minus-px-330 { margin-top: -33rem !important; }
  .mt-lg-px-335 { margin-top: 33.5rem !important; }
  .mt-lg-minus-px-335 { margin-top: -33.5rem !important; }
  .mt-lg-px-340 { margin-top: 34rem !important; }
  .mt-lg-minus-px-340 { margin-top: -34rem !important; }
  .mt-lg-px-345 { margin-top: 34.5rem !important; }
  .mt-lg-minus-px-345 { margin-top: -34.5rem !important; }
  .mt-lg-px-350 { margin-top: 35rem !important; }
  .mt-lg-minus-px-350 { margin-top: -35rem !important; }
  .mt-lg-px-355 { margin-top: 35.5rem !important; }
  .mt-lg-minus-px-355 { margin-top: -35.5rem !important; }
  .mt-lg-px-360 { margin-top: 36rem !important; }
  .mt-lg-minus-px-360 { margin-top: -36rem !important; }
  .mt-lg-px-365 { margin-top: 36.5rem !important; }
  .mt-lg-minus-px-365 { margin-top: -36.5rem !important; }
  .mt-lg-px-370 { margin-top: 37rem !important; }
  .mt-lg-minus-px-370 { margin-top: -37rem !important; }
  .mt-lg-px-375 { margin-top: 37.5rem !important; }
  .mt-lg-minus-px-375 { margin-top: -37.5rem !important; }
  .mt-lg-px-380 { margin-top: 38rem !important; }
  .mt-lg-minus-px-380 { margin-top: -38rem !important; }
  .mt-lg-px-385 { margin-top: 38.5rem !important; }
  .mt-lg-minus-px-385 { margin-top: -38.5rem !important; }
  .mt-lg-px-390 { margin-top: 39rem !important; }
  .mt-lg-minus-px-390 { margin-top: -39rem !important; }
  .mt-lg-px-395 { margin-top: 39.5rem !important; }
  .mt-lg-minus-px-395 { margin-top: -39.5rem !important; }
  .mt-lg-px-400 { margin-top: 40rem !important; }
  .mt-lg-minus-px-400 { margin-top: -40rem !important; }
  .mt-lg-px-405 { margin-top: 40.5rem !important; }
  .mt-lg-minus-px-405 { margin-top: -40.5rem !important; }
  .mt-lg-px-410 { margin-top: 41rem !important; }
  .mt-lg-minus-px-410 { margin-top: -41rem !important; }
  .mt-lg-px-415 { margin-top: 41.5rem !important; }
  .mt-lg-minus-px-415 { margin-top: -41.5rem !important; }
  .mt-lg-px-420 { margin-top: 42rem !important; }
  .mt-lg-minus-px-420 { margin-top: -42rem !important; }
  .mt-lg-px-425 { margin-top: 42.5rem !important; }
  .mt-lg-minus-px-425 { margin-top: -42.5rem !important; }
  .mt-lg-px-430 { margin-top: 43rem !important; }
  .mt-lg-minus-px-430 { margin-top: -43rem !important; }
  .mt-lg-px-435 { margin-top: 43.5rem !important; }
  .mt-lg-minus-px-435 { margin-top: -43.5rem !important; }
  .mt-lg-px-440 { margin-top: 44rem !important; }
  .mt-lg-minus-px-440 { margin-top: -44rem !important; }
  .mt-lg-px-445 { margin-top: 44.5rem !important; }
  .mt-lg-minus-px-445 { margin-top: -44.5rem !important; }
  .mt-lg-px-450 { margin-top: 45rem !important; }
  .mt-lg-minus-px-450 { margin-top: -45rem !important; }
  .mt-lg-px-455 { margin-top: 45.5rem !important; }
  .mt-lg-minus-px-455 { margin-top: -45.5rem !important; }
  .mt-lg-px-460 { margin-top: 46rem !important; }
  .mt-lg-minus-px-460 { margin-top: -46rem !important; }
  .mt-lg-px-465 { margin-top: 46.5rem !important; }
  .mt-lg-minus-px-465 { margin-top: -46.5rem !important; }
  .mt-lg-px-470 { margin-top: 47rem !important; }
  .mt-lg-minus-px-470 { margin-top: -47rem !important; }
  .mt-lg-px-475 { margin-top: 47.5rem !important; }
  .mt-lg-minus-px-475 { margin-top: -47.5rem !important; }
  .mt-lg-px-480 { margin-top: 48rem !important; }
  .mt-lg-minus-px-480 { margin-top: -48rem !important; }
  .mt-lg-px-485 { margin-top: 48.5rem !important; }
  .mt-lg-minus-px-485 { margin-top: -48.5rem !important; }
  .mt-lg-px-490 { margin-top: 49rem !important; }
  .mt-lg-minus-px-490 { margin-top: -49rem !important; }
  .mt-lg-px-495 { margin-top: 49.5rem !important; }
  .mt-lg-minus-px-495 { margin-top: -49.5rem !important; }
  .mt-lg-px-500 { margin-top: 50rem !important; }
  .mt-lg-minus-px-500 { margin-top: -50rem !important; }
  .mt-lg-auto { margin-top: auto !important; } }

.mb-px-0 { margin-bottom: 0rem !important; }

.mb-minus-px-0 { margin-bottom: 0rem !important; }

.mb-px-5 { margin-bottom: 0.5rem !important; }

.mb-minus-px-5 { margin-bottom: -0.5rem !important; }

.mb-px-10 { margin-bottom: 1rem !important; }

.mb-minus-px-10 { margin-bottom: -1rem !important; }

.mb-px-15 { margin-bottom: 1.5rem !important; }

.mb-minus-px-15 { margin-bottom: -1.5rem !important; }

.mb-px-20 { margin-bottom: 2rem !important; }

.mb-minus-px-20 { margin-bottom: -2rem !important; }

.mb-px-25 { margin-bottom: 2.5rem !important; }

.mb-minus-px-25 { margin-bottom: -2.5rem !important; }

.mb-px-30 { margin-bottom: 3rem !important; }

.mb-minus-px-30 { margin-bottom: -3rem !important; }

.mb-px-35 { margin-bottom: 3.5rem !important; }

.mb-minus-px-35 { margin-bottom: -3.5rem !important; }

.mb-px-40 { margin-bottom: 4rem !important; }

.mb-minus-px-40 { margin-bottom: -4rem !important; }

.mb-px-45 { margin-bottom: 4.5rem !important; }

.mb-minus-px-45 { margin-bottom: -4.5rem !important; }

.mb-px-50 { margin-bottom: 5rem !important; }

.mb-minus-px-50 { margin-bottom: -5rem !important; }

.mb-px-55 { margin-bottom: 5.5rem !important; }

.mb-minus-px-55 { margin-bottom: -5.5rem !important; }

.mb-px-60 { margin-bottom: 6rem !important; }

.mb-minus-px-60 { margin-bottom: -6rem !important; }

.mb-px-65 { margin-bottom: 6.5rem !important; }

.mb-minus-px-65 { margin-bottom: -6.5rem !important; }

.mb-px-70 { margin-bottom: 7rem !important; }

.mb-minus-px-70 { margin-bottom: -7rem !important; }

.mb-px-75 { margin-bottom: 7.5rem !important; }

.mb-minus-px-75 { margin-bottom: -7.5rem !important; }

.mb-px-80 { margin-bottom: 8rem !important; }

.mb-minus-px-80 { margin-bottom: -8rem !important; }

.mb-px-85 { margin-bottom: 8.5rem !important; }

.mb-minus-px-85 { margin-bottom: -8.5rem !important; }

.mb-px-90 { margin-bottom: 9rem !important; }

.mb-minus-px-90 { margin-bottom: -9rem !important; }

.mb-px-95 { margin-bottom: 9.5rem !important; }

.mb-minus-px-95 { margin-bottom: -9.5rem !important; }

.mb-px-100 { margin-bottom: 10rem !important; }

.mb-minus-px-100 { margin-bottom: -10rem !important; }

.mb-px-105 { margin-bottom: 10.5rem !important; }

.mb-minus-px-105 { margin-bottom: -10.5rem !important; }

.mb-px-110 { margin-bottom: 11rem !important; }

.mb-minus-px-110 { margin-bottom: -11rem !important; }

.mb-px-115 { margin-bottom: 11.5rem !important; }

.mb-minus-px-115 { margin-bottom: -11.5rem !important; }

.mb-px-120 { margin-bottom: 12rem !important; }

.mb-minus-px-120 { margin-bottom: -12rem !important; }

.mb-px-125 { margin-bottom: 12.5rem !important; }

.mb-minus-px-125 { margin-bottom: -12.5rem !important; }

.mb-px-130 { margin-bottom: 13rem !important; }

.mb-minus-px-130 { margin-bottom: -13rem !important; }

.mb-px-135 { margin-bottom: 13.5rem !important; }

.mb-minus-px-135 { margin-bottom: -13.5rem !important; }

.mb-px-140 { margin-bottom: 14rem !important; }

.mb-minus-px-140 { margin-bottom: -14rem !important; }

.mb-px-145 { margin-bottom: 14.5rem !important; }

.mb-minus-px-145 { margin-bottom: -14.5rem !important; }

.mb-px-150 { margin-bottom: 15rem !important; }

.mb-minus-px-150 { margin-bottom: -15rem !important; }

.mb-px-155 { margin-bottom: 15.5rem !important; }

.mb-minus-px-155 { margin-bottom: -15.5rem !important; }

.mb-px-160 { margin-bottom: 16rem !important; }

.mb-minus-px-160 { margin-bottom: -16rem !important; }

.mb-px-165 { margin-bottom: 16.5rem !important; }

.mb-minus-px-165 { margin-bottom: -16.5rem !important; }

.mb-px-170 { margin-bottom: 17rem !important; }

.mb-minus-px-170 { margin-bottom: -17rem !important; }

.mb-px-175 { margin-bottom: 17.5rem !important; }

.mb-minus-px-175 { margin-bottom: -17.5rem !important; }

.mb-px-180 { margin-bottom: 18rem !important; }

.mb-minus-px-180 { margin-bottom: -18rem !important; }

.mb-px-185 { margin-bottom: 18.5rem !important; }

.mb-minus-px-185 { margin-bottom: -18.5rem !important; }

.mb-px-190 { margin-bottom: 19rem !important; }

.mb-minus-px-190 { margin-bottom: -19rem !important; }

.mb-px-195 { margin-bottom: 19.5rem !important; }

.mb-minus-px-195 { margin-bottom: -19.5rem !important; }

.mb-px-200 { margin-bottom: 20rem !important; }

.mb-minus-px-200 { margin-bottom: -20rem !important; }

.mb-px-205 { margin-bottom: 20.5rem !important; }

.mb-minus-px-205 { margin-bottom: -20.5rem !important; }

.mb-px-210 { margin-bottom: 21rem !important; }

.mb-minus-px-210 { margin-bottom: -21rem !important; }

.mb-px-215 { margin-bottom: 21.5rem !important; }

.mb-minus-px-215 { margin-bottom: -21.5rem !important; }

.mb-px-220 { margin-bottom: 22rem !important; }

.mb-minus-px-220 { margin-bottom: -22rem !important; }

.mb-px-225 { margin-bottom: 22.5rem !important; }

.mb-minus-px-225 { margin-bottom: -22.5rem !important; }

.mb-px-230 { margin-bottom: 23rem !important; }

.mb-minus-px-230 { margin-bottom: -23rem !important; }

.mb-px-235 { margin-bottom: 23.5rem !important; }

.mb-minus-px-235 { margin-bottom: -23.5rem !important; }

.mb-px-240 { margin-bottom: 24rem !important; }

.mb-minus-px-240 { margin-bottom: -24rem !important; }

.mb-px-245 { margin-bottom: 24.5rem !important; }

.mb-minus-px-245 { margin-bottom: -24.5rem !important; }

.mb-px-250 { margin-bottom: 25rem !important; }

.mb-minus-px-250 { margin-bottom: -25rem !important; }

.mb-px-255 { margin-bottom: 25.5rem !important; }

.mb-minus-px-255 { margin-bottom: -25.5rem !important; }

.mb-px-260 { margin-bottom: 26rem !important; }

.mb-minus-px-260 { margin-bottom: -26rem !important; }

.mb-px-265 { margin-bottom: 26.5rem !important; }

.mb-minus-px-265 { margin-bottom: -26.5rem !important; }

.mb-px-270 { margin-bottom: 27rem !important; }

.mb-minus-px-270 { margin-bottom: -27rem !important; }

.mb-px-275 { margin-bottom: 27.5rem !important; }

.mb-minus-px-275 { margin-bottom: -27.5rem !important; }

.mb-px-280 { margin-bottom: 28rem !important; }

.mb-minus-px-280 { margin-bottom: -28rem !important; }

.mb-px-285 { margin-bottom: 28.5rem !important; }

.mb-minus-px-285 { margin-bottom: -28.5rem !important; }

.mb-px-290 { margin-bottom: 29rem !important; }

.mb-minus-px-290 { margin-bottom: -29rem !important; }

.mb-px-295 { margin-bottom: 29.5rem !important; }

.mb-minus-px-295 { margin-bottom: -29.5rem !important; }

.mb-px-300 { margin-bottom: 30rem !important; }

.mb-minus-px-300 { margin-bottom: -30rem !important; }

.mb-px-305 { margin-bottom: 30.5rem !important; }

.mb-minus-px-305 { margin-bottom: -30.5rem !important; }

.mb-px-310 { margin-bottom: 31rem !important; }

.mb-minus-px-310 { margin-bottom: -31rem !important; }

.mb-px-315 { margin-bottom: 31.5rem !important; }

.mb-minus-px-315 { margin-bottom: -31.5rem !important; }

.mb-px-320 { margin-bottom: 32rem !important; }

.mb-minus-px-320 { margin-bottom: -32rem !important; }

.mb-px-325 { margin-bottom: 32.5rem !important; }

.mb-minus-px-325 { margin-bottom: -32.5rem !important; }

.mb-px-330 { margin-bottom: 33rem !important; }

.mb-minus-px-330 { margin-bottom: -33rem !important; }

.mb-px-335 { margin-bottom: 33.5rem !important; }

.mb-minus-px-335 { margin-bottom: -33.5rem !important; }

.mb-px-340 { margin-bottom: 34rem !important; }

.mb-minus-px-340 { margin-bottom: -34rem !important; }

.mb-px-345 { margin-bottom: 34.5rem !important; }

.mb-minus-px-345 { margin-bottom: -34.5rem !important; }

.mb-px-350 { margin-bottom: 35rem !important; }

.mb-minus-px-350 { margin-bottom: -35rem !important; }

.mb-px-355 { margin-bottom: 35.5rem !important; }

.mb-minus-px-355 { margin-bottom: -35.5rem !important; }

.mb-px-360 { margin-bottom: 36rem !important; }

.mb-minus-px-360 { margin-bottom: -36rem !important; }

.mb-px-365 { margin-bottom: 36.5rem !important; }

.mb-minus-px-365 { margin-bottom: -36.5rem !important; }

.mb-px-370 { margin-bottom: 37rem !important; }

.mb-minus-px-370 { margin-bottom: -37rem !important; }

.mb-px-375 { margin-bottom: 37.5rem !important; }

.mb-minus-px-375 { margin-bottom: -37.5rem !important; }

.mb-px-380 { margin-bottom: 38rem !important; }

.mb-minus-px-380 { margin-bottom: -38rem !important; }

.mb-px-385 { margin-bottom: 38.5rem !important; }

.mb-minus-px-385 { margin-bottom: -38.5rem !important; }

.mb-px-390 { margin-bottom: 39rem !important; }

.mb-minus-px-390 { margin-bottom: -39rem !important; }

.mb-px-395 { margin-bottom: 39.5rem !important; }

.mb-minus-px-395 { margin-bottom: -39.5rem !important; }

.mb-px-400 { margin-bottom: 40rem !important; }

.mb-minus-px-400 { margin-bottom: -40rem !important; }

.mb-px-405 { margin-bottom: 40.5rem !important; }

.mb-minus-px-405 { margin-bottom: -40.5rem !important; }

.mb-px-410 { margin-bottom: 41rem !important; }

.mb-minus-px-410 { margin-bottom: -41rem !important; }

.mb-px-415 { margin-bottom: 41.5rem !important; }

.mb-minus-px-415 { margin-bottom: -41.5rem !important; }

.mb-px-420 { margin-bottom: 42rem !important; }

.mb-minus-px-420 { margin-bottom: -42rem !important; }

.mb-px-425 { margin-bottom: 42.5rem !important; }

.mb-minus-px-425 { margin-bottom: -42.5rem !important; }

.mb-px-430 { margin-bottom: 43rem !important; }

.mb-minus-px-430 { margin-bottom: -43rem !important; }

.mb-px-435 { margin-bottom: 43.5rem !important; }

.mb-minus-px-435 { margin-bottom: -43.5rem !important; }

.mb-px-440 { margin-bottom: 44rem !important; }

.mb-minus-px-440 { margin-bottom: -44rem !important; }

.mb-px-445 { margin-bottom: 44.5rem !important; }

.mb-minus-px-445 { margin-bottom: -44.5rem !important; }

.mb-px-450 { margin-bottom: 45rem !important; }

.mb-minus-px-450 { margin-bottom: -45rem !important; }

.mb-px-455 { margin-bottom: 45.5rem !important; }

.mb-minus-px-455 { margin-bottom: -45.5rem !important; }

.mb-px-460 { margin-bottom: 46rem !important; }

.mb-minus-px-460 { margin-bottom: -46rem !important; }

.mb-px-465 { margin-bottom: 46.5rem !important; }

.mb-minus-px-465 { margin-bottom: -46.5rem !important; }

.mb-px-470 { margin-bottom: 47rem !important; }

.mb-minus-px-470 { margin-bottom: -47rem !important; }

.mb-px-475 { margin-bottom: 47.5rem !important; }

.mb-minus-px-475 { margin-bottom: -47.5rem !important; }

.mb-px-480 { margin-bottom: 48rem !important; }

.mb-minus-px-480 { margin-bottom: -48rem !important; }

.mb-px-485 { margin-bottom: 48.5rem !important; }

.mb-minus-px-485 { margin-bottom: -48.5rem !important; }

.mb-px-490 { margin-bottom: 49rem !important; }

.mb-minus-px-490 { margin-bottom: -49rem !important; }

.mb-px-495 { margin-bottom: 49.5rem !important; }

.mb-minus-px-495 { margin-bottom: -49.5rem !important; }

.mb-px-500 { margin-bottom: 50rem !important; }

.mb-minus-px-500 { margin-bottom: -50rem !important; }

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

@media (min-width: 991px) { .mb-lg-px-0 { margin-bottom: 0rem !important; }
  .mb-lg-minus-px-0 { margin-bottom: 0rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-5 { margin-bottom: 0.5rem !important; }
  .mb-lg-minus-px-5 { margin-bottom: -0.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-10 { margin-bottom: 1rem !important; }
  .mb-lg-minus-px-10 { margin-bottom: -1rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-15 { margin-bottom: 1.5rem !important; }
  .mb-lg-minus-px-15 { margin-bottom: -1.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-20 { margin-bottom: 2rem !important; }
  .mb-lg-minus-px-20 { margin-bottom: -2rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-25 { margin-bottom: 2.5rem !important; }
  .mb-lg-minus-px-25 { margin-bottom: -2.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-30 { margin-bottom: 3rem !important; }
  .mb-lg-minus-px-30 { margin-bottom: -3rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-35 { margin-bottom: 3.5rem !important; }
  .mb-lg-minus-px-35 { margin-bottom: -3.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-40 { margin-bottom: 4rem !important; }
  .mb-lg-minus-px-40 { margin-bottom: -4rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-45 { margin-bottom: 4.5rem !important; }
  .mb-lg-minus-px-45 { margin-bottom: -4.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-50 { margin-bottom: 5rem !important; }
  .mb-lg-minus-px-50 { margin-bottom: -5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-55 { margin-bottom: 5.5rem !important; }
  .mb-lg-minus-px-55 { margin-bottom: -5.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-60 { margin-bottom: 6rem !important; }
  .mb-lg-minus-px-60 { margin-bottom: -6rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-65 { margin-bottom: 6.5rem !important; }
  .mb-lg-minus-px-65 { margin-bottom: -6.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-70 { margin-bottom: 7rem !important; }
  .mb-lg-minus-px-70 { margin-bottom: -7rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-75 { margin-bottom: 7.5rem !important; }
  .mb-lg-minus-px-75 { margin-bottom: -7.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-80 { margin-bottom: 8rem !important; }
  .mb-lg-minus-px-80 { margin-bottom: -8rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-85 { margin-bottom: 8.5rem !important; }
  .mb-lg-minus-px-85 { margin-bottom: -8.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-90 { margin-bottom: 9rem !important; }
  .mb-lg-minus-px-90 { margin-bottom: -9rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-95 { margin-bottom: 9.5rem !important; }
  .mb-lg-minus-px-95 { margin-bottom: -9.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-100 { margin-bottom: 10rem !important; }
  .mb-lg-minus-px-100 { margin-bottom: -10rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-105 { margin-bottom: 10.5rem !important; }
  .mb-lg-minus-px-105 { margin-bottom: -10.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-110 { margin-bottom: 11rem !important; }
  .mb-lg-minus-px-110 { margin-bottom: -11rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-115 { margin-bottom: 11.5rem !important; }
  .mb-lg-minus-px-115 { margin-bottom: -11.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-120 { margin-bottom: 12rem !important; }
  .mb-lg-minus-px-120 { margin-bottom: -12rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-125 { margin-bottom: 12.5rem !important; }
  .mb-lg-minus-px-125 { margin-bottom: -12.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-130 { margin-bottom: 13rem !important; }
  .mb-lg-minus-px-130 { margin-bottom: -13rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-135 { margin-bottom: 13.5rem !important; }
  .mb-lg-minus-px-135 { margin-bottom: -13.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-140 { margin-bottom: 14rem !important; }
  .mb-lg-minus-px-140 { margin-bottom: -14rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-145 { margin-bottom: 14.5rem !important; }
  .mb-lg-minus-px-145 { margin-bottom: -14.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-150 { margin-bottom: 15rem !important; }
  .mb-lg-minus-px-150 { margin-bottom: -15rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-155 { margin-bottom: 15.5rem !important; }
  .mb-lg-minus-px-155 { margin-bottom: -15.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-160 { margin-bottom: 16rem !important; }
  .mb-lg-minus-px-160 { margin-bottom: -16rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-165 { margin-bottom: 16.5rem !important; }
  .mb-lg-minus-px-165 { margin-bottom: -16.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-170 { margin-bottom: 17rem !important; }
  .mb-lg-minus-px-170 { margin-bottom: -17rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-175 { margin-bottom: 17.5rem !important; }
  .mb-lg-minus-px-175 { margin-bottom: -17.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-180 { margin-bottom: 18rem !important; }
  .mb-lg-minus-px-180 { margin-bottom: -18rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-185 { margin-bottom: 18.5rem !important; }
  .mb-lg-minus-px-185 { margin-bottom: -18.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-190 { margin-bottom: 19rem !important; }
  .mb-lg-minus-px-190 { margin-bottom: -19rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-195 { margin-bottom: 19.5rem !important; }
  .mb-lg-minus-px-195 { margin-bottom: -19.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-200 { margin-bottom: 20rem !important; }
  .mb-lg-minus-px-200 { margin-bottom: -20rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-205 { margin-bottom: 20.5rem !important; }
  .mb-lg-minus-px-205 { margin-bottom: -20.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-210 { margin-bottom: 21rem !important; }
  .mb-lg-minus-px-210 { margin-bottom: -21rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-215 { margin-bottom: 21.5rem !important; }
  .mb-lg-minus-px-215 { margin-bottom: -21.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-220 { margin-bottom: 22rem !important; }
  .mb-lg-minus-px-220 { margin-bottom: -22rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-225 { margin-bottom: 22.5rem !important; }
  .mb-lg-minus-px-225 { margin-bottom: -22.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-230 { margin-bottom: 23rem !important; }
  .mb-lg-minus-px-230 { margin-bottom: -23rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-235 { margin-bottom: 23.5rem !important; }
  .mb-lg-minus-px-235 { margin-bottom: -23.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-240 { margin-bottom: 24rem !important; }
  .mb-lg-minus-px-240 { margin-bottom: -24rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-245 { margin-bottom: 24.5rem !important; }
  .mb-lg-minus-px-245 { margin-bottom: -24.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-250 { margin-bottom: 25rem !important; }
  .mb-lg-minus-px-250 { margin-bottom: -25rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-255 { margin-bottom: 25.5rem !important; }
  .mb-lg-minus-px-255 { margin-bottom: -25.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-260 { margin-bottom: 26rem !important; }
  .mb-lg-minus-px-260 { margin-bottom: -26rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-265 { margin-bottom: 26.5rem !important; }
  .mb-lg-minus-px-265 { margin-bottom: -26.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-270 { margin-bottom: 27rem !important; }
  .mb-lg-minus-px-270 { margin-bottom: -27rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-275 { margin-bottom: 27.5rem !important; }
  .mb-lg-minus-px-275 { margin-bottom: -27.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-280 { margin-bottom: 28rem !important; }
  .mb-lg-minus-px-280 { margin-bottom: -28rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-285 { margin-bottom: 28.5rem !important; }
  .mb-lg-minus-px-285 { margin-bottom: -28.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-290 { margin-bottom: 29rem !important; }
  .mb-lg-minus-px-290 { margin-bottom: -29rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-295 { margin-bottom: 29.5rem !important; }
  .mb-lg-minus-px-295 { margin-bottom: -29.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-300 { margin-bottom: 30rem !important; }
  .mb-lg-minus-px-300 { margin-bottom: -30rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-305 { margin-bottom: 30.5rem !important; }
  .mb-lg-minus-px-305 { margin-bottom: -30.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-310 { margin-bottom: 31rem !important; }
  .mb-lg-minus-px-310 { margin-bottom: -31rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-315 { margin-bottom: 31.5rem !important; }
  .mb-lg-minus-px-315 { margin-bottom: -31.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-320 { margin-bottom: 32rem !important; }
  .mb-lg-minus-px-320 { margin-bottom: -32rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-325 { margin-bottom: 32.5rem !important; }
  .mb-lg-minus-px-325 { margin-bottom: -32.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-330 { margin-bottom: 33rem !important; }
  .mb-lg-minus-px-330 { margin-bottom: -33rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-335 { margin-bottom: 33.5rem !important; }
  .mb-lg-minus-px-335 { margin-bottom: -33.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-340 { margin-bottom: 34rem !important; }
  .mb-lg-minus-px-340 { margin-bottom: -34rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-345 { margin-bottom: 34.5rem !important; }
  .mb-lg-minus-px-345 { margin-bottom: -34.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-350 { margin-bottom: 35rem !important; }
  .mb-lg-minus-px-350 { margin-bottom: -35rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-355 { margin-bottom: 35.5rem !important; }
  .mb-lg-minus-px-355 { margin-bottom: -35.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-360 { margin-bottom: 36rem !important; }
  .mb-lg-minus-px-360 { margin-bottom: -36rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-365 { margin-bottom: 36.5rem !important; }
  .mb-lg-minus-px-365 { margin-bottom: -36.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-370 { margin-bottom: 37rem !important; }
  .mb-lg-minus-px-370 { margin-bottom: -37rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-375 { margin-bottom: 37.5rem !important; }
  .mb-lg-minus-px-375 { margin-bottom: -37.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-380 { margin-bottom: 38rem !important; }
  .mb-lg-minus-px-380 { margin-bottom: -38rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-385 { margin-bottom: 38.5rem !important; }
  .mb-lg-minus-px-385 { margin-bottom: -38.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-390 { margin-bottom: 39rem !important; }
  .mb-lg-minus-px-390 { margin-bottom: -39rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-395 { margin-bottom: 39.5rem !important; }
  .mb-lg-minus-px-395 { margin-bottom: -39.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-400 { margin-bottom: 40rem !important; }
  .mb-lg-minus-px-400 { margin-bottom: -40rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-405 { margin-bottom: 40.5rem !important; }
  .mb-lg-minus-px-405 { margin-bottom: -40.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-410 { margin-bottom: 41rem !important; }
  .mb-lg-minus-px-410 { margin-bottom: -41rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-415 { margin-bottom: 41.5rem !important; }
  .mb-lg-minus-px-415 { margin-bottom: -41.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-420 { margin-bottom: 42rem !important; }
  .mb-lg-minus-px-420 { margin-bottom: -42rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-425 { margin-bottom: 42.5rem !important; }
  .mb-lg-minus-px-425 { margin-bottom: -42.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-430 { margin-bottom: 43rem !important; }
  .mb-lg-minus-px-430 { margin-bottom: -43rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-435 { margin-bottom: 43.5rem !important; }
  .mb-lg-minus-px-435 { margin-bottom: -43.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-440 { margin-bottom: 44rem !important; }
  .mb-lg-minus-px-440 { margin-bottom: -44rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-445 { margin-bottom: 44.5rem !important; }
  .mb-lg-minus-px-445 { margin-bottom: -44.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-450 { margin-bottom: 45rem !important; }
  .mb-lg-minus-px-450 { margin-bottom: -45rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-455 { margin-bottom: 45.5rem !important; }
  .mb-lg-minus-px-455 { margin-bottom: -45.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-460 { margin-bottom: 46rem !important; }
  .mb-lg-minus-px-460 { margin-bottom: -46rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-465 { margin-bottom: 46.5rem !important; }
  .mb-lg-minus-px-465 { margin-bottom: -46.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-470 { margin-bottom: 47rem !important; }
  .mb-lg-minus-px-470 { margin-bottom: -47rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-475 { margin-bottom: 47.5rem !important; }
  .mb-lg-minus-px-475 { margin-bottom: -47.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-480 { margin-bottom: 48rem !important; }
  .mb-lg-minus-px-480 { margin-bottom: -48rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-485 { margin-bottom: 48.5rem !important; }
  .mb-lg-minus-px-485 { margin-bottom: -48.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-490 { margin-bottom: 49rem !important; }
  .mb-lg-minus-px-490 { margin-bottom: -49rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-495 { margin-bottom: 49.5rem !important; }
  .mb-lg-minus-px-495 { margin-bottom: -49.5rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; }
  .mb-lg-px-500 { margin-bottom: 50rem !important; }
  .mb-lg-minus-px-500 { margin-bottom: -50rem !important; }
  .mb-lg-auto { margin-bottom: auto !important; } }

.ml-px-0 { margin-left: 0rem !important; }

.ml-minus-px-0 { margin-left: 0rem !important; }

.ml-px-5 { margin-left: 0.5rem !important; }

.ml-minus-px-5 { margin-left: -0.5rem !important; }

.ml-px-10 { margin-left: 1rem !important; }

.ml-minus-px-10 { margin-left: -1rem !important; }

.ml-px-15 { margin-left: 1.5rem !important; }

.ml-minus-px-15 { margin-left: -1.5rem !important; }

.ml-px-20 { margin-left: 2rem !important; }

.ml-minus-px-20 { margin-left: -2rem !important; }

.ml-px-25 { margin-left: 2.5rem !important; }

.ml-minus-px-25 { margin-left: -2.5rem !important; }

.ml-px-30 { margin-left: 3rem !important; }

.ml-minus-px-30 { margin-left: -3rem !important; }

.ml-px-35 { margin-left: 3.5rem !important; }

.ml-minus-px-35 { margin-left: -3.5rem !important; }

.ml-px-40 { margin-left: 4rem !important; }

.ml-minus-px-40 { margin-left: -4rem !important; }

.ml-px-45 { margin-left: 4.5rem !important; }

.ml-minus-px-45 { margin-left: -4.5rem !important; }

.ml-px-50 { margin-left: 5rem !important; }

.ml-minus-px-50 { margin-left: -5rem !important; }

.ml-px-55 { margin-left: 5.5rem !important; }

.ml-minus-px-55 { margin-left: -5.5rem !important; }

.ml-px-60 { margin-left: 6rem !important; }

.ml-minus-px-60 { margin-left: -6rem !important; }

.ml-px-65 { margin-left: 6.5rem !important; }

.ml-minus-px-65 { margin-left: -6.5rem !important; }

.ml-px-70 { margin-left: 7rem !important; }

.ml-minus-px-70 { margin-left: -7rem !important; }

.ml-px-75 { margin-left: 7.5rem !important; }

.ml-minus-px-75 { margin-left: -7.5rem !important; }

.ml-px-80 { margin-left: 8rem !important; }

.ml-minus-px-80 { margin-left: -8rem !important; }

.ml-px-85 { margin-left: 8.5rem !important; }

.ml-minus-px-85 { margin-left: -8.5rem !important; }

.ml-px-90 { margin-left: 9rem !important; }

.ml-minus-px-90 { margin-left: -9rem !important; }

.ml-px-95 { margin-left: 9.5rem !important; }

.ml-minus-px-95 { margin-left: -9.5rem !important; }

.ml-px-100 { margin-left: 10rem !important; }

.ml-minus-px-100 { margin-left: -10rem !important; }

.ml-px-105 { margin-left: 10.5rem !important; }

.ml-minus-px-105 { margin-left: -10.5rem !important; }

.ml-px-110 { margin-left: 11rem !important; }

.ml-minus-px-110 { margin-left: -11rem !important; }

.ml-px-115 { margin-left: 11.5rem !important; }

.ml-minus-px-115 { margin-left: -11.5rem !important; }

.ml-px-120 { margin-left: 12rem !important; }

.ml-minus-px-120 { margin-left: -12rem !important; }

.ml-px-125 { margin-left: 12.5rem !important; }

.ml-minus-px-125 { margin-left: -12.5rem !important; }

.ml-px-130 { margin-left: 13rem !important; }

.ml-minus-px-130 { margin-left: -13rem !important; }

.ml-px-135 { margin-left: 13.5rem !important; }

.ml-minus-px-135 { margin-left: -13.5rem !important; }

.ml-px-140 { margin-left: 14rem !important; }

.ml-minus-px-140 { margin-left: -14rem !important; }

.ml-px-145 { margin-left: 14.5rem !important; }

.ml-minus-px-145 { margin-left: -14.5rem !important; }

.ml-px-150 { margin-left: 15rem !important; }

.ml-minus-px-150 { margin-left: -15rem !important; }

.ml-px-155 { margin-left: 15.5rem !important; }

.ml-minus-px-155 { margin-left: -15.5rem !important; }

.ml-px-160 { margin-left: 16rem !important; }

.ml-minus-px-160 { margin-left: -16rem !important; }

.ml-px-165 { margin-left: 16.5rem !important; }

.ml-minus-px-165 { margin-left: -16.5rem !important; }

.ml-px-170 { margin-left: 17rem !important; }

.ml-minus-px-170 { margin-left: -17rem !important; }

.ml-px-175 { margin-left: 17.5rem !important; }

.ml-minus-px-175 { margin-left: -17.5rem !important; }

.ml-px-180 { margin-left: 18rem !important; }

.ml-minus-px-180 { margin-left: -18rem !important; }

.ml-px-185 { margin-left: 18.5rem !important; }

.ml-minus-px-185 { margin-left: -18.5rem !important; }

.ml-px-190 { margin-left: 19rem !important; }

.ml-minus-px-190 { margin-left: -19rem !important; }

.ml-px-195 { margin-left: 19.5rem !important; }

.ml-minus-px-195 { margin-left: -19.5rem !important; }

.ml-px-200 { margin-left: 20rem !important; }

.ml-minus-px-200 { margin-left: -20rem !important; }

.ml-px-205 { margin-left: 20.5rem !important; }

.ml-minus-px-205 { margin-left: -20.5rem !important; }

.ml-px-210 { margin-left: 21rem !important; }

.ml-minus-px-210 { margin-left: -21rem !important; }

.ml-px-215 { margin-left: 21.5rem !important; }

.ml-minus-px-215 { margin-left: -21.5rem !important; }

.ml-px-220 { margin-left: 22rem !important; }

.ml-minus-px-220 { margin-left: -22rem !important; }

.ml-px-225 { margin-left: 22.5rem !important; }

.ml-minus-px-225 { margin-left: -22.5rem !important; }

.ml-px-230 { margin-left: 23rem !important; }

.ml-minus-px-230 { margin-left: -23rem !important; }

.ml-px-235 { margin-left: 23.5rem !important; }

.ml-minus-px-235 { margin-left: -23.5rem !important; }

.ml-px-240 { margin-left: 24rem !important; }

.ml-minus-px-240 { margin-left: -24rem !important; }

.ml-px-245 { margin-left: 24.5rem !important; }

.ml-minus-px-245 { margin-left: -24.5rem !important; }

.ml-px-250 { margin-left: 25rem !important; }

.ml-minus-px-250 { margin-left: -25rem !important; }

.ml-px-255 { margin-left: 25.5rem !important; }

.ml-minus-px-255 { margin-left: -25.5rem !important; }

.ml-px-260 { margin-left: 26rem !important; }

.ml-minus-px-260 { margin-left: -26rem !important; }

.ml-px-265 { margin-left: 26.5rem !important; }

.ml-minus-px-265 { margin-left: -26.5rem !important; }

.ml-px-270 { margin-left: 27rem !important; }

.ml-minus-px-270 { margin-left: -27rem !important; }

.ml-px-275 { margin-left: 27.5rem !important; }

.ml-minus-px-275 { margin-left: -27.5rem !important; }

.ml-px-280 { margin-left: 28rem !important; }

.ml-minus-px-280 { margin-left: -28rem !important; }

.ml-px-285 { margin-left: 28.5rem !important; }

.ml-minus-px-285 { margin-left: -28.5rem !important; }

.ml-px-290 { margin-left: 29rem !important; }

.ml-minus-px-290 { margin-left: -29rem !important; }

.ml-px-295 { margin-left: 29.5rem !important; }

.ml-minus-px-295 { margin-left: -29.5rem !important; }

.ml-px-300 { margin-left: 30rem !important; }

.ml-minus-px-300 { margin-left: -30rem !important; }

.ml-px-305 { margin-left: 30.5rem !important; }

.ml-minus-px-305 { margin-left: -30.5rem !important; }

.ml-px-310 { margin-left: 31rem !important; }

.ml-minus-px-310 { margin-left: -31rem !important; }

.ml-px-315 { margin-left: 31.5rem !important; }

.ml-minus-px-315 { margin-left: -31.5rem !important; }

.ml-px-320 { margin-left: 32rem !important; }

.ml-minus-px-320 { margin-left: -32rem !important; }

.ml-px-325 { margin-left: 32.5rem !important; }

.ml-minus-px-325 { margin-left: -32.5rem !important; }

.ml-px-330 { margin-left: 33rem !important; }

.ml-minus-px-330 { margin-left: -33rem !important; }

.ml-px-335 { margin-left: 33.5rem !important; }

.ml-minus-px-335 { margin-left: -33.5rem !important; }

.ml-px-340 { margin-left: 34rem !important; }

.ml-minus-px-340 { margin-left: -34rem !important; }

.ml-px-345 { margin-left: 34.5rem !important; }

.ml-minus-px-345 { margin-left: -34.5rem !important; }

.ml-px-350 { margin-left: 35rem !important; }

.ml-minus-px-350 { margin-left: -35rem !important; }

.ml-px-355 { margin-left: 35.5rem !important; }

.ml-minus-px-355 { margin-left: -35.5rem !important; }

.ml-px-360 { margin-left: 36rem !important; }

.ml-minus-px-360 { margin-left: -36rem !important; }

.ml-px-365 { margin-left: 36.5rem !important; }

.ml-minus-px-365 { margin-left: -36.5rem !important; }

.ml-px-370 { margin-left: 37rem !important; }

.ml-minus-px-370 { margin-left: -37rem !important; }

.ml-px-375 { margin-left: 37.5rem !important; }

.ml-minus-px-375 { margin-left: -37.5rem !important; }

.ml-px-380 { margin-left: 38rem !important; }

.ml-minus-px-380 { margin-left: -38rem !important; }

.ml-px-385 { margin-left: 38.5rem !important; }

.ml-minus-px-385 { margin-left: -38.5rem !important; }

.ml-px-390 { margin-left: 39rem !important; }

.ml-minus-px-390 { margin-left: -39rem !important; }

.ml-px-395 { margin-left: 39.5rem !important; }

.ml-minus-px-395 { margin-left: -39.5rem !important; }

.ml-px-400 { margin-left: 40rem !important; }

.ml-minus-px-400 { margin-left: -40rem !important; }

.ml-px-405 { margin-left: 40.5rem !important; }

.ml-minus-px-405 { margin-left: -40.5rem !important; }

.ml-px-410 { margin-left: 41rem !important; }

.ml-minus-px-410 { margin-left: -41rem !important; }

.ml-px-415 { margin-left: 41.5rem !important; }

.ml-minus-px-415 { margin-left: -41.5rem !important; }

.ml-px-420 { margin-left: 42rem !important; }

.ml-minus-px-420 { margin-left: -42rem !important; }

.ml-px-425 { margin-left: 42.5rem !important; }

.ml-minus-px-425 { margin-left: -42.5rem !important; }

.ml-px-430 { margin-left: 43rem !important; }

.ml-minus-px-430 { margin-left: -43rem !important; }

.ml-px-435 { margin-left: 43.5rem !important; }

.ml-minus-px-435 { margin-left: -43.5rem !important; }

.ml-px-440 { margin-left: 44rem !important; }

.ml-minus-px-440 { margin-left: -44rem !important; }

.ml-px-445 { margin-left: 44.5rem !important; }

.ml-minus-px-445 { margin-left: -44.5rem !important; }

.ml-px-450 { margin-left: 45rem !important; }

.ml-minus-px-450 { margin-left: -45rem !important; }

.ml-px-455 { margin-left: 45.5rem !important; }

.ml-minus-px-455 { margin-left: -45.5rem !important; }

.ml-px-460 { margin-left: 46rem !important; }

.ml-minus-px-460 { margin-left: -46rem !important; }

.ml-px-465 { margin-left: 46.5rem !important; }

.ml-minus-px-465 { margin-left: -46.5rem !important; }

.ml-px-470 { margin-left: 47rem !important; }

.ml-minus-px-470 { margin-left: -47rem !important; }

.ml-px-475 { margin-left: 47.5rem !important; }

.ml-minus-px-475 { margin-left: -47.5rem !important; }

.ml-px-480 { margin-left: 48rem !important; }

.ml-minus-px-480 { margin-left: -48rem !important; }

.ml-px-485 { margin-left: 48.5rem !important; }

.ml-minus-px-485 { margin-left: -48.5rem !important; }

.ml-px-490 { margin-left: 49rem !important; }

.ml-minus-px-490 { margin-left: -49rem !important; }

.ml-px-495 { margin-left: 49.5rem !important; }

.ml-minus-px-495 { margin-left: -49.5rem !important; }

.ml-px-500 { margin-left: 50rem !important; }

.ml-minus-px-500 { margin-left: -50rem !important; }

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

@media (min-width: 991px) { .ml-lg-px-0 { margin-left: 0rem !important; }
  .ml-lg-minus-px-0 { margin-left: 0rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-5 { margin-left: 0.5rem !important; }
  .ml-lg-minus-px-5 { margin-left: -0.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-10 { margin-left: 1rem !important; }
  .ml-lg-minus-px-10 { margin-left: -1rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-15 { margin-left: 1.5rem !important; }
  .ml-lg-minus-px-15 { margin-left: -1.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-20 { margin-left: 2rem !important; }
  .ml-lg-minus-px-20 { margin-left: -2rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-25 { margin-left: 2.5rem !important; }
  .ml-lg-minus-px-25 { margin-left: -2.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-30 { margin-left: 3rem !important; }
  .ml-lg-minus-px-30 { margin-left: -3rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-35 { margin-left: 3.5rem !important; }
  .ml-lg-minus-px-35 { margin-left: -3.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-40 { margin-left: 4rem !important; }
  .ml-lg-minus-px-40 { margin-left: -4rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-45 { margin-left: 4.5rem !important; }
  .ml-lg-minus-px-45 { margin-left: -4.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-50 { margin-left: 5rem !important; }
  .ml-lg-minus-px-50 { margin-left: -5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-55 { margin-left: 5.5rem !important; }
  .ml-lg-minus-px-55 { margin-left: -5.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-60 { margin-left: 6rem !important; }
  .ml-lg-minus-px-60 { margin-left: -6rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-65 { margin-left: 6.5rem !important; }
  .ml-lg-minus-px-65 { margin-left: -6.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-70 { margin-left: 7rem !important; }
  .ml-lg-minus-px-70 { margin-left: -7rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-75 { margin-left: 7.5rem !important; }
  .ml-lg-minus-px-75 { margin-left: -7.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-80 { margin-left: 8rem !important; }
  .ml-lg-minus-px-80 { margin-left: -8rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-85 { margin-left: 8.5rem !important; }
  .ml-lg-minus-px-85 { margin-left: -8.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-90 { margin-left: 9rem !important; }
  .ml-lg-minus-px-90 { margin-left: -9rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-95 { margin-left: 9.5rem !important; }
  .ml-lg-minus-px-95 { margin-left: -9.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-100 { margin-left: 10rem !important; }
  .ml-lg-minus-px-100 { margin-left: -10rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-105 { margin-left: 10.5rem !important; }
  .ml-lg-minus-px-105 { margin-left: -10.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-110 { margin-left: 11rem !important; }
  .ml-lg-minus-px-110 { margin-left: -11rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-115 { margin-left: 11.5rem !important; }
  .ml-lg-minus-px-115 { margin-left: -11.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-120 { margin-left: 12rem !important; }
  .ml-lg-minus-px-120 { margin-left: -12rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-125 { margin-left: 12.5rem !important; }
  .ml-lg-minus-px-125 { margin-left: -12.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-130 { margin-left: 13rem !important; }
  .ml-lg-minus-px-130 { margin-left: -13rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-135 { margin-left: 13.5rem !important; }
  .ml-lg-minus-px-135 { margin-left: -13.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-140 { margin-left: 14rem !important; }
  .ml-lg-minus-px-140 { margin-left: -14rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-145 { margin-left: 14.5rem !important; }
  .ml-lg-minus-px-145 { margin-left: -14.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-150 { margin-left: 15rem !important; }
  .ml-lg-minus-px-150 { margin-left: -15rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-155 { margin-left: 15.5rem !important; }
  .ml-lg-minus-px-155 { margin-left: -15.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-160 { margin-left: 16rem !important; }
  .ml-lg-minus-px-160 { margin-left: -16rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-165 { margin-left: 16.5rem !important; }
  .ml-lg-minus-px-165 { margin-left: -16.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-170 { margin-left: 17rem !important; }
  .ml-lg-minus-px-170 { margin-left: -17rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-175 { margin-left: 17.5rem !important; }
  .ml-lg-minus-px-175 { margin-left: -17.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-180 { margin-left: 18rem !important; }
  .ml-lg-minus-px-180 { margin-left: -18rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-185 { margin-left: 18.5rem !important; }
  .ml-lg-minus-px-185 { margin-left: -18.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-190 { margin-left: 19rem !important; }
  .ml-lg-minus-px-190 { margin-left: -19rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-195 { margin-left: 19.5rem !important; }
  .ml-lg-minus-px-195 { margin-left: -19.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-200 { margin-left: 20rem !important; }
  .ml-lg-minus-px-200 { margin-left: -20rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-205 { margin-left: 20.5rem !important; }
  .ml-lg-minus-px-205 { margin-left: -20.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-210 { margin-left: 21rem !important; }
  .ml-lg-minus-px-210 { margin-left: -21rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-215 { margin-left: 21.5rem !important; }
  .ml-lg-minus-px-215 { margin-left: -21.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-220 { margin-left: 22rem !important; }
  .ml-lg-minus-px-220 { margin-left: -22rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-225 { margin-left: 22.5rem !important; }
  .ml-lg-minus-px-225 { margin-left: -22.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-230 { margin-left: 23rem !important; }
  .ml-lg-minus-px-230 { margin-left: -23rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-235 { margin-left: 23.5rem !important; }
  .ml-lg-minus-px-235 { margin-left: -23.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-240 { margin-left: 24rem !important; }
  .ml-lg-minus-px-240 { margin-left: -24rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-245 { margin-left: 24.5rem !important; }
  .ml-lg-minus-px-245 { margin-left: -24.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-250 { margin-left: 25rem !important; }
  .ml-lg-minus-px-250 { margin-left: -25rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-255 { margin-left: 25.5rem !important; }
  .ml-lg-minus-px-255 { margin-left: -25.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-260 { margin-left: 26rem !important; }
  .ml-lg-minus-px-260 { margin-left: -26rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-265 { margin-left: 26.5rem !important; }
  .ml-lg-minus-px-265 { margin-left: -26.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-270 { margin-left: 27rem !important; }
  .ml-lg-minus-px-270 { margin-left: -27rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-275 { margin-left: 27.5rem !important; }
  .ml-lg-minus-px-275 { margin-left: -27.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-280 { margin-left: 28rem !important; }
  .ml-lg-minus-px-280 { margin-left: -28rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-285 { margin-left: 28.5rem !important; }
  .ml-lg-minus-px-285 { margin-left: -28.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-290 { margin-left: 29rem !important; }
  .ml-lg-minus-px-290 { margin-left: -29rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-295 { margin-left: 29.5rem !important; }
  .ml-lg-minus-px-295 { margin-left: -29.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-300 { margin-left: 30rem !important; }
  .ml-lg-minus-px-300 { margin-left: -30rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-305 { margin-left: 30.5rem !important; }
  .ml-lg-minus-px-305 { margin-left: -30.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-310 { margin-left: 31rem !important; }
  .ml-lg-minus-px-310 { margin-left: -31rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-315 { margin-left: 31.5rem !important; }
  .ml-lg-minus-px-315 { margin-left: -31.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-320 { margin-left: 32rem !important; }
  .ml-lg-minus-px-320 { margin-left: -32rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-325 { margin-left: 32.5rem !important; }
  .ml-lg-minus-px-325 { margin-left: -32.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-330 { margin-left: 33rem !important; }
  .ml-lg-minus-px-330 { margin-left: -33rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-335 { margin-left: 33.5rem !important; }
  .ml-lg-minus-px-335 { margin-left: -33.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-340 { margin-left: 34rem !important; }
  .ml-lg-minus-px-340 { margin-left: -34rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-345 { margin-left: 34.5rem !important; }
  .ml-lg-minus-px-345 { margin-left: -34.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-350 { margin-left: 35rem !important; }
  .ml-lg-minus-px-350 { margin-left: -35rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-355 { margin-left: 35.5rem !important; }
  .ml-lg-minus-px-355 { margin-left: -35.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-360 { margin-left: 36rem !important; }
  .ml-lg-minus-px-360 { margin-left: -36rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-365 { margin-left: 36.5rem !important; }
  .ml-lg-minus-px-365 { margin-left: -36.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-370 { margin-left: 37rem !important; }
  .ml-lg-minus-px-370 { margin-left: -37rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-375 { margin-left: 37.5rem !important; }
  .ml-lg-minus-px-375 { margin-left: -37.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-380 { margin-left: 38rem !important; }
  .ml-lg-minus-px-380 { margin-left: -38rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-385 { margin-left: 38.5rem !important; }
  .ml-lg-minus-px-385 { margin-left: -38.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-390 { margin-left: 39rem !important; }
  .ml-lg-minus-px-390 { margin-left: -39rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-395 { margin-left: 39.5rem !important; }
  .ml-lg-minus-px-395 { margin-left: -39.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-400 { margin-left: 40rem !important; }
  .ml-lg-minus-px-400 { margin-left: -40rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-405 { margin-left: 40.5rem !important; }
  .ml-lg-minus-px-405 { margin-left: -40.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-410 { margin-left: 41rem !important; }
  .ml-lg-minus-px-410 { margin-left: -41rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-415 { margin-left: 41.5rem !important; }
  .ml-lg-minus-px-415 { margin-left: -41.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-420 { margin-left: 42rem !important; }
  .ml-lg-minus-px-420 { margin-left: -42rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-425 { margin-left: 42.5rem !important; }
  .ml-lg-minus-px-425 { margin-left: -42.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-430 { margin-left: 43rem !important; }
  .ml-lg-minus-px-430 { margin-left: -43rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-435 { margin-left: 43.5rem !important; }
  .ml-lg-minus-px-435 { margin-left: -43.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-440 { margin-left: 44rem !important; }
  .ml-lg-minus-px-440 { margin-left: -44rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-445 { margin-left: 44.5rem !important; }
  .ml-lg-minus-px-445 { margin-left: -44.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-450 { margin-left: 45rem !important; }
  .ml-lg-minus-px-450 { margin-left: -45rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-455 { margin-left: 45.5rem !important; }
  .ml-lg-minus-px-455 { margin-left: -45.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-460 { margin-left: 46rem !important; }
  .ml-lg-minus-px-460 { margin-left: -46rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-465 { margin-left: 46.5rem !important; }
  .ml-lg-minus-px-465 { margin-left: -46.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-470 { margin-left: 47rem !important; }
  .ml-lg-minus-px-470 { margin-left: -47rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-475 { margin-left: 47.5rem !important; }
  .ml-lg-minus-px-475 { margin-left: -47.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-480 { margin-left: 48rem !important; }
  .ml-lg-minus-px-480 { margin-left: -48rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-485 { margin-left: 48.5rem !important; }
  .ml-lg-minus-px-485 { margin-left: -48.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-490 { margin-left: 49rem !important; }
  .ml-lg-minus-px-490 { margin-left: -49rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-495 { margin-left: 49.5rem !important; }
  .ml-lg-minus-px-495 { margin-left: -49.5rem !important; }
  .ml-lg-auto { margin-left: auto !important; }
  .ml-lg-px-500 { margin-left: 50rem !important; }
  .ml-lg-minus-px-500 { margin-left: -50rem !important; }
  .ml-lg-auto { margin-left: auto !important; } }

.mr-px-0 { margin-right: 0rem !important; }

.mr-minus-px-0 { margin-right: 0rem !important; }

.mr-px-5 { margin-right: 0.5rem !important; }

.mr-minus-px-5 { margin-right: -0.5rem !important; }

.mr-px-10 { margin-right: 1rem !important; }

.mr-minus-px-10 { margin-right: -1rem !important; }

.mr-px-15 { margin-right: 1.5rem !important; }

.mr-minus-px-15 { margin-right: -1.5rem !important; }

.mr-px-20 { margin-right: 2rem !important; }

.mr-minus-px-20 { margin-right: -2rem !important; }

.mr-px-25 { margin-right: 2.5rem !important; }

.mr-minus-px-25 { margin-right: -2.5rem !important; }

.mr-px-30 { margin-right: 3rem !important; }

.mr-minus-px-30 { margin-right: -3rem !important; }

.mr-px-35 { margin-right: 3.5rem !important; }

.mr-minus-px-35 { margin-right: -3.5rem !important; }

.mr-px-40 { margin-right: 4rem !important; }

.mr-minus-px-40 { margin-right: -4rem !important; }

.mr-px-45 { margin-right: 4.5rem !important; }

.mr-minus-px-45 { margin-right: -4.5rem !important; }

.mr-px-50 { margin-right: 5rem !important; }

.mr-minus-px-50 { margin-right: -5rem !important; }

.mr-px-55 { margin-right: 5.5rem !important; }

.mr-minus-px-55 { margin-right: -5.5rem !important; }

.mr-px-60 { margin-right: 6rem !important; }

.mr-minus-px-60 { margin-right: -6rem !important; }

.mr-px-65 { margin-right: 6.5rem !important; }

.mr-minus-px-65 { margin-right: -6.5rem !important; }

.mr-px-70 { margin-right: 7rem !important; }

.mr-minus-px-70 { margin-right: -7rem !important; }

.mr-px-75 { margin-right: 7.5rem !important; }

.mr-minus-px-75 { margin-right: -7.5rem !important; }

.mr-px-80 { margin-right: 8rem !important; }

.mr-minus-px-80 { margin-right: -8rem !important; }

.mr-px-85 { margin-right: 8.5rem !important; }

.mr-minus-px-85 { margin-right: -8.5rem !important; }

.mr-px-90 { margin-right: 9rem !important; }

.mr-minus-px-90 { margin-right: -9rem !important; }

.mr-px-95 { margin-right: 9.5rem !important; }

.mr-minus-px-95 { margin-right: -9.5rem !important; }

.mr-px-100 { margin-right: 10rem !important; }

.mr-minus-px-100 { margin-right: -10rem !important; }

.mr-px-105 { margin-right: 10.5rem !important; }

.mr-minus-px-105 { margin-right: -10.5rem !important; }

.mr-px-110 { margin-right: 11rem !important; }

.mr-minus-px-110 { margin-right: -11rem !important; }

.mr-px-115 { margin-right: 11.5rem !important; }

.mr-minus-px-115 { margin-right: -11.5rem !important; }

.mr-px-120 { margin-right: 12rem !important; }

.mr-minus-px-120 { margin-right: -12rem !important; }

.mr-px-125 { margin-right: 12.5rem !important; }

.mr-minus-px-125 { margin-right: -12.5rem !important; }

.mr-px-130 { margin-right: 13rem !important; }

.mr-minus-px-130 { margin-right: -13rem !important; }

.mr-px-135 { margin-right: 13.5rem !important; }

.mr-minus-px-135 { margin-right: -13.5rem !important; }

.mr-px-140 { margin-right: 14rem !important; }

.mr-minus-px-140 { margin-right: -14rem !important; }

.mr-px-145 { margin-right: 14.5rem !important; }

.mr-minus-px-145 { margin-right: -14.5rem !important; }

.mr-px-150 { margin-right: 15rem !important; }

.mr-minus-px-150 { margin-right: -15rem !important; }

.mr-px-155 { margin-right: 15.5rem !important; }

.mr-minus-px-155 { margin-right: -15.5rem !important; }

.mr-px-160 { margin-right: 16rem !important; }

.mr-minus-px-160 { margin-right: -16rem !important; }

.mr-px-165 { margin-right: 16.5rem !important; }

.mr-minus-px-165 { margin-right: -16.5rem !important; }

.mr-px-170 { margin-right: 17rem !important; }

.mr-minus-px-170 { margin-right: -17rem !important; }

.mr-px-175 { margin-right: 17.5rem !important; }

.mr-minus-px-175 { margin-right: -17.5rem !important; }

.mr-px-180 { margin-right: 18rem !important; }

.mr-minus-px-180 { margin-right: -18rem !important; }

.mr-px-185 { margin-right: 18.5rem !important; }

.mr-minus-px-185 { margin-right: -18.5rem !important; }

.mr-px-190 { margin-right: 19rem !important; }

.mr-minus-px-190 { margin-right: -19rem !important; }

.mr-px-195 { margin-right: 19.5rem !important; }

.mr-minus-px-195 { margin-right: -19.5rem !important; }

.mr-px-200 { margin-right: 20rem !important; }

.mr-minus-px-200 { margin-right: -20rem !important; }

.mr-px-205 { margin-right: 20.5rem !important; }

.mr-minus-px-205 { margin-right: -20.5rem !important; }

.mr-px-210 { margin-right: 21rem !important; }

.mr-minus-px-210 { margin-right: -21rem !important; }

.mr-px-215 { margin-right: 21.5rem !important; }

.mr-minus-px-215 { margin-right: -21.5rem !important; }

.mr-px-220 { margin-right: 22rem !important; }

.mr-minus-px-220 { margin-right: -22rem !important; }

.mr-px-225 { margin-right: 22.5rem !important; }

.mr-minus-px-225 { margin-right: -22.5rem !important; }

.mr-px-230 { margin-right: 23rem !important; }

.mr-minus-px-230 { margin-right: -23rem !important; }

.mr-px-235 { margin-right: 23.5rem !important; }

.mr-minus-px-235 { margin-right: -23.5rem !important; }

.mr-px-240 { margin-right: 24rem !important; }

.mr-minus-px-240 { margin-right: -24rem !important; }

.mr-px-245 { margin-right: 24.5rem !important; }

.mr-minus-px-245 { margin-right: -24.5rem !important; }

.mr-px-250 { margin-right: 25rem !important; }

.mr-minus-px-250 { margin-right: -25rem !important; }

.mr-px-255 { margin-right: 25.5rem !important; }

.mr-minus-px-255 { margin-right: -25.5rem !important; }

.mr-px-260 { margin-right: 26rem !important; }

.mr-minus-px-260 { margin-right: -26rem !important; }

.mr-px-265 { margin-right: 26.5rem !important; }

.mr-minus-px-265 { margin-right: -26.5rem !important; }

.mr-px-270 { margin-right: 27rem !important; }

.mr-minus-px-270 { margin-right: -27rem !important; }

.mr-px-275 { margin-right: 27.5rem !important; }

.mr-minus-px-275 { margin-right: -27.5rem !important; }

.mr-px-280 { margin-right: 28rem !important; }

.mr-minus-px-280 { margin-right: -28rem !important; }

.mr-px-285 { margin-right: 28.5rem !important; }

.mr-minus-px-285 { margin-right: -28.5rem !important; }

.mr-px-290 { margin-right: 29rem !important; }

.mr-minus-px-290 { margin-right: -29rem !important; }

.mr-px-295 { margin-right: 29.5rem !important; }

.mr-minus-px-295 { margin-right: -29.5rem !important; }

.mr-px-300 { margin-right: 30rem !important; }

.mr-minus-px-300 { margin-right: -30rem !important; }

.mr-px-305 { margin-right: 30.5rem !important; }

.mr-minus-px-305 { margin-right: -30.5rem !important; }

.mr-px-310 { margin-right: 31rem !important; }

.mr-minus-px-310 { margin-right: -31rem !important; }

.mr-px-315 { margin-right: 31.5rem !important; }

.mr-minus-px-315 { margin-right: -31.5rem !important; }

.mr-px-320 { margin-right: 32rem !important; }

.mr-minus-px-320 { margin-right: -32rem !important; }

.mr-px-325 { margin-right: 32.5rem !important; }

.mr-minus-px-325 { margin-right: -32.5rem !important; }

.mr-px-330 { margin-right: 33rem !important; }

.mr-minus-px-330 { margin-right: -33rem !important; }

.mr-px-335 { margin-right: 33.5rem !important; }

.mr-minus-px-335 { margin-right: -33.5rem !important; }

.mr-px-340 { margin-right: 34rem !important; }

.mr-minus-px-340 { margin-right: -34rem !important; }

.mr-px-345 { margin-right: 34.5rem !important; }

.mr-minus-px-345 { margin-right: -34.5rem !important; }

.mr-px-350 { margin-right: 35rem !important; }

.mr-minus-px-350 { margin-right: -35rem !important; }

.mr-px-355 { margin-right: 35.5rem !important; }

.mr-minus-px-355 { margin-right: -35.5rem !important; }

.mr-px-360 { margin-right: 36rem !important; }

.mr-minus-px-360 { margin-right: -36rem !important; }

.mr-px-365 { margin-right: 36.5rem !important; }

.mr-minus-px-365 { margin-right: -36.5rem !important; }

.mr-px-370 { margin-right: 37rem !important; }

.mr-minus-px-370 { margin-right: -37rem !important; }

.mr-px-375 { margin-right: 37.5rem !important; }

.mr-minus-px-375 { margin-right: -37.5rem !important; }

.mr-px-380 { margin-right: 38rem !important; }

.mr-minus-px-380 { margin-right: -38rem !important; }

.mr-px-385 { margin-right: 38.5rem !important; }

.mr-minus-px-385 { margin-right: -38.5rem !important; }

.mr-px-390 { margin-right: 39rem !important; }

.mr-minus-px-390 { margin-right: -39rem !important; }

.mr-px-395 { margin-right: 39.5rem !important; }

.mr-minus-px-395 { margin-right: -39.5rem !important; }

.mr-px-400 { margin-right: 40rem !important; }

.mr-minus-px-400 { margin-right: -40rem !important; }

.mr-px-405 { margin-right: 40.5rem !important; }

.mr-minus-px-405 { margin-right: -40.5rem !important; }

.mr-px-410 { margin-right: 41rem !important; }

.mr-minus-px-410 { margin-right: -41rem !important; }

.mr-px-415 { margin-right: 41.5rem !important; }

.mr-minus-px-415 { margin-right: -41.5rem !important; }

.mr-px-420 { margin-right: 42rem !important; }

.mr-minus-px-420 { margin-right: -42rem !important; }

.mr-px-425 { margin-right: 42.5rem !important; }

.mr-minus-px-425 { margin-right: -42.5rem !important; }

.mr-px-430 { margin-right: 43rem !important; }

.mr-minus-px-430 { margin-right: -43rem !important; }

.mr-px-435 { margin-right: 43.5rem !important; }

.mr-minus-px-435 { margin-right: -43.5rem !important; }

.mr-px-440 { margin-right: 44rem !important; }

.mr-minus-px-440 { margin-right: -44rem !important; }

.mr-px-445 { margin-right: 44.5rem !important; }

.mr-minus-px-445 { margin-right: -44.5rem !important; }

.mr-px-450 { margin-right: 45rem !important; }

.mr-minus-px-450 { margin-right: -45rem !important; }

.mr-px-455 { margin-right: 45.5rem !important; }

.mr-minus-px-455 { margin-right: -45.5rem !important; }

.mr-px-460 { margin-right: 46rem !important; }

.mr-minus-px-460 { margin-right: -46rem !important; }

.mr-px-465 { margin-right: 46.5rem !important; }

.mr-minus-px-465 { margin-right: -46.5rem !important; }

.mr-px-470 { margin-right: 47rem !important; }

.mr-minus-px-470 { margin-right: -47rem !important; }

.mr-px-475 { margin-right: 47.5rem !important; }

.mr-minus-px-475 { margin-right: -47.5rem !important; }

.mr-px-480 { margin-right: 48rem !important; }

.mr-minus-px-480 { margin-right: -48rem !important; }

.mr-px-485 { margin-right: 48.5rem !important; }

.mr-minus-px-485 { margin-right: -48.5rem !important; }

.mr-px-490 { margin-right: 49rem !important; }

.mr-minus-px-490 { margin-right: -49rem !important; }

.mr-px-495 { margin-right: 49.5rem !important; }

.mr-minus-px-495 { margin-right: -49.5rem !important; }

.mr-px-500 { margin-right: 50rem !important; }

.mr-minus-px-500 { margin-right: -50rem !important; }

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

@media (min-width: 991px) { .mr-lg-px-0 { margin-right: 0rem !important; }
  .mr-lg-minus-px-0 { margin-right: 0rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-5 { margin-right: 0.5rem !important; }
  .mr-lg-minus-px-5 { margin-right: -0.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-10 { margin-right: 1rem !important; }
  .mr-lg-minus-px-10 { margin-right: -1rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-15 { margin-right: 1.5rem !important; }
  .mr-lg-minus-px-15 { margin-right: -1.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-20 { margin-right: 2rem !important; }
  .mr-lg-minus-px-20 { margin-right: -2rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-25 { margin-right: 2.5rem !important; }
  .mr-lg-minus-px-25 { margin-right: -2.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-30 { margin-right: 3rem !important; }
  .mr-lg-minus-px-30 { margin-right: -3rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-35 { margin-right: 3.5rem !important; }
  .mr-lg-minus-px-35 { margin-right: -3.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-40 { margin-right: 4rem !important; }
  .mr-lg-minus-px-40 { margin-right: -4rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-45 { margin-right: 4.5rem !important; }
  .mr-lg-minus-px-45 { margin-right: -4.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-50 { margin-right: 5rem !important; }
  .mr-lg-minus-px-50 { margin-right: -5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-55 { margin-right: 5.5rem !important; }
  .mr-lg-minus-px-55 { margin-right: -5.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-60 { margin-right: 6rem !important; }
  .mr-lg-minus-px-60 { margin-right: -6rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-65 { margin-right: 6.5rem !important; }
  .mr-lg-minus-px-65 { margin-right: -6.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-70 { margin-right: 7rem !important; }
  .mr-lg-minus-px-70 { margin-right: -7rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-75 { margin-right: 7.5rem !important; }
  .mr-lg-minus-px-75 { margin-right: -7.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-80 { margin-right: 8rem !important; }
  .mr-lg-minus-px-80 { margin-right: -8rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-85 { margin-right: 8.5rem !important; }
  .mr-lg-minus-px-85 { margin-right: -8.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-90 { margin-right: 9rem !important; }
  .mr-lg-minus-px-90 { margin-right: -9rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-95 { margin-right: 9.5rem !important; }
  .mr-lg-minus-px-95 { margin-right: -9.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-100 { margin-right: 10rem !important; }
  .mr-lg-minus-px-100 { margin-right: -10rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-105 { margin-right: 10.5rem !important; }
  .mr-lg-minus-px-105 { margin-right: -10.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-110 { margin-right: 11rem !important; }
  .mr-lg-minus-px-110 { margin-right: -11rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-115 { margin-right: 11.5rem !important; }
  .mr-lg-minus-px-115 { margin-right: -11.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-120 { margin-right: 12rem !important; }
  .mr-lg-minus-px-120 { margin-right: -12rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-125 { margin-right: 12.5rem !important; }
  .mr-lg-minus-px-125 { margin-right: -12.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-130 { margin-right: 13rem !important; }
  .mr-lg-minus-px-130 { margin-right: -13rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-135 { margin-right: 13.5rem !important; }
  .mr-lg-minus-px-135 { margin-right: -13.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-140 { margin-right: 14rem !important; }
  .mr-lg-minus-px-140 { margin-right: -14rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-145 { margin-right: 14.5rem !important; }
  .mr-lg-minus-px-145 { margin-right: -14.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-150 { margin-right: 15rem !important; }
  .mr-lg-minus-px-150 { margin-right: -15rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-155 { margin-right: 15.5rem !important; }
  .mr-lg-minus-px-155 { margin-right: -15.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-160 { margin-right: 16rem !important; }
  .mr-lg-minus-px-160 { margin-right: -16rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-165 { margin-right: 16.5rem !important; }
  .mr-lg-minus-px-165 { margin-right: -16.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-170 { margin-right: 17rem !important; }
  .mr-lg-minus-px-170 { margin-right: -17rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-175 { margin-right: 17.5rem !important; }
  .mr-lg-minus-px-175 { margin-right: -17.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-180 { margin-right: 18rem !important; }
  .mr-lg-minus-px-180 { margin-right: -18rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-185 { margin-right: 18.5rem !important; }
  .mr-lg-minus-px-185 { margin-right: -18.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-190 { margin-right: 19rem !important; }
  .mr-lg-minus-px-190 { margin-right: -19rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-195 { margin-right: 19.5rem !important; }
  .mr-lg-minus-px-195 { margin-right: -19.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-200 { margin-right: 20rem !important; }
  .mr-lg-minus-px-200 { margin-right: -20rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-205 { margin-right: 20.5rem !important; }
  .mr-lg-minus-px-205 { margin-right: -20.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-210 { margin-right: 21rem !important; }
  .mr-lg-minus-px-210 { margin-right: -21rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-215 { margin-right: 21.5rem !important; }
  .mr-lg-minus-px-215 { margin-right: -21.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-220 { margin-right: 22rem !important; }
  .mr-lg-minus-px-220 { margin-right: -22rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-225 { margin-right: 22.5rem !important; }
  .mr-lg-minus-px-225 { margin-right: -22.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-230 { margin-right: 23rem !important; }
  .mr-lg-minus-px-230 { margin-right: -23rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-235 { margin-right: 23.5rem !important; }
  .mr-lg-minus-px-235 { margin-right: -23.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-240 { margin-right: 24rem !important; }
  .mr-lg-minus-px-240 { margin-right: -24rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-245 { margin-right: 24.5rem !important; }
  .mr-lg-minus-px-245 { margin-right: -24.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-250 { margin-right: 25rem !important; }
  .mr-lg-minus-px-250 { margin-right: -25rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-255 { margin-right: 25.5rem !important; }
  .mr-lg-minus-px-255 { margin-right: -25.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-260 { margin-right: 26rem !important; }
  .mr-lg-minus-px-260 { margin-right: -26rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-265 { margin-right: 26.5rem !important; }
  .mr-lg-minus-px-265 { margin-right: -26.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-270 { margin-right: 27rem !important; }
  .mr-lg-minus-px-270 { margin-right: -27rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-275 { margin-right: 27.5rem !important; }
  .mr-lg-minus-px-275 { margin-right: -27.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-280 { margin-right: 28rem !important; }
  .mr-lg-minus-px-280 { margin-right: -28rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-285 { margin-right: 28.5rem !important; }
  .mr-lg-minus-px-285 { margin-right: -28.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-290 { margin-right: 29rem !important; }
  .mr-lg-minus-px-290 { margin-right: -29rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-295 { margin-right: 29.5rem !important; }
  .mr-lg-minus-px-295 { margin-right: -29.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-300 { margin-right: 30rem !important; }
  .mr-lg-minus-px-300 { margin-right: -30rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-305 { margin-right: 30.5rem !important; }
  .mr-lg-minus-px-305 { margin-right: -30.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-310 { margin-right: 31rem !important; }
  .mr-lg-minus-px-310 { margin-right: -31rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-315 { margin-right: 31.5rem !important; }
  .mr-lg-minus-px-315 { margin-right: -31.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-320 { margin-right: 32rem !important; }
  .mr-lg-minus-px-320 { margin-right: -32rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-325 { margin-right: 32.5rem !important; }
  .mr-lg-minus-px-325 { margin-right: -32.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-330 { margin-right: 33rem !important; }
  .mr-lg-minus-px-330 { margin-right: -33rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-335 { margin-right: 33.5rem !important; }
  .mr-lg-minus-px-335 { margin-right: -33.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-340 { margin-right: 34rem !important; }
  .mr-lg-minus-px-340 { margin-right: -34rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-345 { margin-right: 34.5rem !important; }
  .mr-lg-minus-px-345 { margin-right: -34.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-350 { margin-right: 35rem !important; }
  .mr-lg-minus-px-350 { margin-right: -35rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-355 { margin-right: 35.5rem !important; }
  .mr-lg-minus-px-355 { margin-right: -35.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-360 { margin-right: 36rem !important; }
  .mr-lg-minus-px-360 { margin-right: -36rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-365 { margin-right: 36.5rem !important; }
  .mr-lg-minus-px-365 { margin-right: -36.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-370 { margin-right: 37rem !important; }
  .mr-lg-minus-px-370 { margin-right: -37rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-375 { margin-right: 37.5rem !important; }
  .mr-lg-minus-px-375 { margin-right: -37.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-380 { margin-right: 38rem !important; }
  .mr-lg-minus-px-380 { margin-right: -38rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-385 { margin-right: 38.5rem !important; }
  .mr-lg-minus-px-385 { margin-right: -38.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-390 { margin-right: 39rem !important; }
  .mr-lg-minus-px-390 { margin-right: -39rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-395 { margin-right: 39.5rem !important; }
  .mr-lg-minus-px-395 { margin-right: -39.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-400 { margin-right: 40rem !important; }
  .mr-lg-minus-px-400 { margin-right: -40rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-405 { margin-right: 40.5rem !important; }
  .mr-lg-minus-px-405 { margin-right: -40.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-410 { margin-right: 41rem !important; }
  .mr-lg-minus-px-410 { margin-right: -41rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-415 { margin-right: 41.5rem !important; }
  .mr-lg-minus-px-415 { margin-right: -41.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-420 { margin-right: 42rem !important; }
  .mr-lg-minus-px-420 { margin-right: -42rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-425 { margin-right: 42.5rem !important; }
  .mr-lg-minus-px-425 { margin-right: -42.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-430 { margin-right: 43rem !important; }
  .mr-lg-minus-px-430 { margin-right: -43rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-435 { margin-right: 43.5rem !important; }
  .mr-lg-minus-px-435 { margin-right: -43.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-440 { margin-right: 44rem !important; }
  .mr-lg-minus-px-440 { margin-right: -44rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-445 { margin-right: 44.5rem !important; }
  .mr-lg-minus-px-445 { margin-right: -44.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-450 { margin-right: 45rem !important; }
  .mr-lg-minus-px-450 { margin-right: -45rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-455 { margin-right: 45.5rem !important; }
  .mr-lg-minus-px-455 { margin-right: -45.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-460 { margin-right: 46rem !important; }
  .mr-lg-minus-px-460 { margin-right: -46rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-465 { margin-right: 46.5rem !important; }
  .mr-lg-minus-px-465 { margin-right: -46.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-470 { margin-right: 47rem !important; }
  .mr-lg-minus-px-470 { margin-right: -47rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-475 { margin-right: 47.5rem !important; }
  .mr-lg-minus-px-475 { margin-right: -47.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-480 { margin-right: 48rem !important; }
  .mr-lg-minus-px-480 { margin-right: -48rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-485 { margin-right: 48.5rem !important; }
  .mr-lg-minus-px-485 { margin-right: -48.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-490 { margin-right: 49rem !important; }
  .mr-lg-minus-px-490 { margin-right: -49rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-495 { margin-right: 49.5rem !important; }
  .mr-lg-minus-px-495 { margin-right: -49.5rem !important; }
  .mr-lg-auto { margin-right: auto !important; }
  .mr-lg-px-500 { margin-right: 50rem !important; }
  .mr-lg-minus-px-500 { margin-right: -50rem !important; }
  .mr-lg-auto { margin-right: auto !important; } }

/* パディングの設定 */
.p-px-0 { padding: 0rem !important; }

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

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

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

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

.p-px-25 { padding: 2.5rem !important; }

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

.p-px-35 { padding: 3.5rem !important; }

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

.p-px-45 { padding: 4.5rem !important; }

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

.p-px-55 { padding: 5.5rem !important; }

.p-px-60 { padding: 6rem !important; }

.p-px-65 { padding: 6.5rem !important; }

.p-px-70 { padding: 7rem !important; }

.p-px-75 { padding: 7.5rem !important; }

.p-px-80 { padding: 8rem !important; }

.p-px-85 { padding: 8.5rem !important; }

.p-px-90 { padding: 9rem !important; }

.p-px-95 { padding: 9.5rem !important; }

.p-px-100 { padding: 10rem !important; }

.p-px-105 { padding: 10.5rem !important; }

.p-px-110 { padding: 11rem !important; }

.p-px-115 { padding: 11.5rem !important; }

.p-px-120 { padding: 12rem !important; }

.p-px-125 { padding: 12.5rem !important; }

.p-px-130 { padding: 13rem !important; }

.p-px-135 { padding: 13.5rem !important; }

.p-px-140 { padding: 14rem !important; }

.p-px-145 { padding: 14.5rem !important; }

.p-px-150 { padding: 15rem !important; }

.p-px-155 { padding: 15.5rem !important; }

.p-px-160 { padding: 16rem !important; }

.p-px-165 { padding: 16.5rem !important; }

.p-px-170 { padding: 17rem !important; }

.p-px-175 { padding: 17.5rem !important; }

.p-px-180 { padding: 18rem !important; }

.p-px-185 { padding: 18.5rem !important; }

.p-px-190 { padding: 19rem !important; }

.p-px-195 { padding: 19.5rem !important; }

.p-px-200 { padding: 20rem !important; }

.p-px-205 { padding: 20.5rem !important; }

.p-px-210 { padding: 21rem !important; }

.p-px-215 { padding: 21.5rem !important; }

.p-px-220 { padding: 22rem !important; }

.p-px-225 { padding: 22.5rem !important; }

.p-px-230 { padding: 23rem !important; }

.p-px-235 { padding: 23.5rem !important; }

.p-px-240 { padding: 24rem !important; }

.p-px-245 { padding: 24.5rem !important; }

.p-px-250 { padding: 25rem !important; }

.p-px-255 { padding: 25.5rem !important; }

.p-px-260 { padding: 26rem !important; }

.p-px-265 { padding: 26.5rem !important; }

.p-px-270 { padding: 27rem !important; }

.p-px-275 { padding: 27.5rem !important; }

.p-px-280 { padding: 28rem !important; }

.p-px-285 { padding: 28.5rem !important; }

.p-px-290 { padding: 29rem !important; }

.p-px-295 { padding: 29.5rem !important; }

.p-px-300 { padding: 30rem !important; }

.p-px-305 { padding: 30.5rem !important; }

.p-px-310 { padding: 31rem !important; }

.p-px-315 { padding: 31.5rem !important; }

.p-px-320 { padding: 32rem !important; }

.p-px-325 { padding: 32.5rem !important; }

.p-px-330 { padding: 33rem !important; }

.p-px-335 { padding: 33.5rem !important; }

.p-px-340 { padding: 34rem !important; }

.p-px-345 { padding: 34.5rem !important; }

.p-px-350 { padding: 35rem !important; }

.p-px-355 { padding: 35.5rem !important; }

.p-px-360 { padding: 36rem !important; }

.p-px-365 { padding: 36.5rem !important; }

.p-px-370 { padding: 37rem !important; }

.p-px-375 { padding: 37.5rem !important; }

.p-px-380 { padding: 38rem !important; }

.p-px-385 { padding: 38.5rem !important; }

.p-px-390 { padding: 39rem !important; }

.p-px-395 { padding: 39.5rem !important; }

.p-px-400 { padding: 40rem !important; }

.p-px-405 { padding: 40.5rem !important; }

.p-px-410 { padding: 41rem !important; }

.p-px-415 { padding: 41.5rem !important; }

.p-px-420 { padding: 42rem !important; }

.p-px-425 { padding: 42.5rem !important; }

.p-px-430 { padding: 43rem !important; }

.p-px-435 { padding: 43.5rem !important; }

.p-px-440 { padding: 44rem !important; }

.p-px-445 { padding: 44.5rem !important; }

.p-px-450 { padding: 45rem !important; }

.p-px-455 { padding: 45.5rem !important; }

.p-px-460 { padding: 46rem !important; }

.p-px-465 { padding: 46.5rem !important; }

.p-px-470 { padding: 47rem !important; }

.p-px-475 { padding: 47.5rem !important; }

.p-px-480 { padding: 48rem !important; }

.p-px-485 { padding: 48.5rem !important; }

.p-px-490 { padding: 49rem !important; }

.p-px-495 { padding: 49.5rem !important; }

.p-px-500 { padding: 50rem !important; }

@media (min-width: 991px) { .p-lg-px-0 { padding: 0rem !important; }
  .p-lg-px-5 { padding: 0.5rem !important; }
  .p-lg-px-10 { padding: 1rem !important; }
  .p-lg-px-15 { padding: 1.5rem !important; }
  .p-lg-px-20 { padding: 2rem !important; }
  .p-lg-px-25 { padding: 2.5rem !important; }
  .p-lg-px-30 { padding: 3rem !important; }
  .p-lg-px-35 { padding: 3.5rem !important; }
  .p-lg-px-40 { padding: 4rem !important; }
  .p-lg-px-45 { padding: 4.5rem !important; }
  .p-lg-px-50 { padding: 5rem !important; }
  .p-lg-px-55 { padding: 5.5rem !important; }
  .p-lg-px-60 { padding: 6rem !important; }
  .p-lg-px-65 { padding: 6.5rem !important; }
  .p-lg-px-70 { padding: 7rem !important; }
  .p-lg-px-75 { padding: 7.5rem !important; }
  .p-lg-px-80 { padding: 8rem !important; }
  .p-lg-px-85 { padding: 8.5rem !important; }
  .p-lg-px-90 { padding: 9rem !important; }
  .p-lg-px-95 { padding: 9.5rem !important; }
  .p-lg-px-100 { padding: 10rem !important; }
  .p-lg-px-105 { padding: 10.5rem !important; }
  .p-lg-px-110 { padding: 11rem !important; }
  .p-lg-px-115 { padding: 11.5rem !important; }
  .p-lg-px-120 { padding: 12rem !important; }
  .p-lg-px-125 { padding: 12.5rem !important; }
  .p-lg-px-130 { padding: 13rem !important; }
  .p-lg-px-135 { padding: 13.5rem !important; }
  .p-lg-px-140 { padding: 14rem !important; }
  .p-lg-px-145 { padding: 14.5rem !important; }
  .p-lg-px-150 { padding: 15rem !important; }
  .p-lg-px-155 { padding: 15.5rem !important; }
  .p-lg-px-160 { padding: 16rem !important; }
  .p-lg-px-165 { padding: 16.5rem !important; }
  .p-lg-px-170 { padding: 17rem !important; }
  .p-lg-px-175 { padding: 17.5rem !important; }
  .p-lg-px-180 { padding: 18rem !important; }
  .p-lg-px-185 { padding: 18.5rem !important; }
  .p-lg-px-190 { padding: 19rem !important; }
  .p-lg-px-195 { padding: 19.5rem !important; }
  .p-lg-px-200 { padding: 20rem !important; }
  .p-lg-px-205 { padding: 20.5rem !important; }
  .p-lg-px-210 { padding: 21rem !important; }
  .p-lg-px-215 { padding: 21.5rem !important; }
  .p-lg-px-220 { padding: 22rem !important; }
  .p-lg-px-225 { padding: 22.5rem !important; }
  .p-lg-px-230 { padding: 23rem !important; }
  .p-lg-px-235 { padding: 23.5rem !important; }
  .p-lg-px-240 { padding: 24rem !important; }
  .p-lg-px-245 { padding: 24.5rem !important; }
  .p-lg-px-250 { padding: 25rem !important; }
  .p-lg-px-255 { padding: 25.5rem !important; }
  .p-lg-px-260 { padding: 26rem !important; }
  .p-lg-px-265 { padding: 26.5rem !important; }
  .p-lg-px-270 { padding: 27rem !important; }
  .p-lg-px-275 { padding: 27.5rem !important; }
  .p-lg-px-280 { padding: 28rem !important; }
  .p-lg-px-285 { padding: 28.5rem !important; }
  .p-lg-px-290 { padding: 29rem !important; }
  .p-lg-px-295 { padding: 29.5rem !important; }
  .p-lg-px-300 { padding: 30rem !important; }
  .p-lg-px-305 { padding: 30.5rem !important; }
  .p-lg-px-310 { padding: 31rem !important; }
  .p-lg-px-315 { padding: 31.5rem !important; }
  .p-lg-px-320 { padding: 32rem !important; }
  .p-lg-px-325 { padding: 32.5rem !important; }
  .p-lg-px-330 { padding: 33rem !important; }
  .p-lg-px-335 { padding: 33.5rem !important; }
  .p-lg-px-340 { padding: 34rem !important; }
  .p-lg-px-345 { padding: 34.5rem !important; }
  .p-lg-px-350 { padding: 35rem !important; }
  .p-lg-px-355 { padding: 35.5rem !important; }
  .p-lg-px-360 { padding: 36rem !important; }
  .p-lg-px-365 { padding: 36.5rem !important; }
  .p-lg-px-370 { padding: 37rem !important; }
  .p-lg-px-375 { padding: 37.5rem !important; }
  .p-lg-px-380 { padding: 38rem !important; }
  .p-lg-px-385 { padding: 38.5rem !important; }
  .p-lg-px-390 { padding: 39rem !important; }
  .p-lg-px-395 { padding: 39.5rem !important; }
  .p-lg-px-400 { padding: 40rem !important; }
  .p-lg-px-405 { padding: 40.5rem !important; }
  .p-lg-px-410 { padding: 41rem !important; }
  .p-lg-px-415 { padding: 41.5rem !important; }
  .p-lg-px-420 { padding: 42rem !important; }
  .p-lg-px-425 { padding: 42.5rem !important; }
  .p-lg-px-430 { padding: 43rem !important; }
  .p-lg-px-435 { padding: 43.5rem !important; }
  .p-lg-px-440 { padding: 44rem !important; }
  .p-lg-px-445 { padding: 44.5rem !important; }
  .p-lg-px-450 { padding: 45rem !important; }
  .p-lg-px-455 { padding: 45.5rem !important; }
  .p-lg-px-460 { padding: 46rem !important; }
  .p-lg-px-465 { padding: 46.5rem !important; }
  .p-lg-px-470 { padding: 47rem !important; }
  .p-lg-px-475 { padding: 47.5rem !important; }
  .p-lg-px-480 { padding: 48rem !important; }
  .p-lg-px-485 { padding: 48.5rem !important; }
  .p-lg-px-490 { padding: 49rem !important; }
  .p-lg-px-495 { padding: 49.5rem !important; }
  .p-lg-px-500 { padding: 50rem !important; } }

.pt-px-0 { padding-top: 0rem !important; }

.pt-px-5 { padding-top: 0.5rem !important; }

.pt-px-10 { padding-top: 1rem !important; }

.pt-px-15 { padding-top: 1.5rem !important; }

.pt-px-20 { padding-top: 2rem !important; }

.pt-px-25 { padding-top: 2.5rem !important; }

.pt-px-30 { padding-top: 3rem !important; }

.pt-px-35 { padding-top: 3.5rem !important; }

.pt-px-40 { padding-top: 4rem !important; }

.pt-px-45 { padding-top: 4.5rem !important; }

.pt-px-50 { padding-top: 5rem !important; }

.pt-px-55 { padding-top: 5.5rem !important; }

.pt-px-60 { padding-top: 6rem !important; }

.pt-px-65 { padding-top: 6.5rem !important; }

.pt-px-70 { padding-top: 7rem !important; }

.pt-px-75 { padding-top: 7.5rem !important; }

.pt-px-80 { padding-top: 8rem !important; }

.pt-px-85 { padding-top: 8.5rem !important; }

.pt-px-90 { padding-top: 9rem !important; }

.pt-px-95 { padding-top: 9.5rem !important; }

.pt-px-100 { padding-top: 10rem !important; }

.pt-px-105 { padding-top: 10.5rem !important; }

.pt-px-110 { padding-top: 11rem !important; }

.pt-px-115 { padding-top: 11.5rem !important; }

.pt-px-120 { padding-top: 12rem !important; }

.pt-px-125 { padding-top: 12.5rem !important; }

.pt-px-130 { padding-top: 13rem !important; }

.pt-px-135 { padding-top: 13.5rem !important; }

.pt-px-140 { padding-top: 14rem !important; }

.pt-px-145 { padding-top: 14.5rem !important; }

.pt-px-150 { padding-top: 15rem !important; }

.pt-px-155 { padding-top: 15.5rem !important; }

.pt-px-160 { padding-top: 16rem !important; }

.pt-px-165 { padding-top: 16.5rem !important; }

.pt-px-170 { padding-top: 17rem !important; }

.pt-px-175 { padding-top: 17.5rem !important; }

.pt-px-180 { padding-top: 18rem !important; }

.pt-px-185 { padding-top: 18.5rem !important; }

.pt-px-190 { padding-top: 19rem !important; }

.pt-px-195 { padding-top: 19.5rem !important; }

.pt-px-200 { padding-top: 20rem !important; }

.pt-px-205 { padding-top: 20.5rem !important; }

.pt-px-210 { padding-top: 21rem !important; }

.pt-px-215 { padding-top: 21.5rem !important; }

.pt-px-220 { padding-top: 22rem !important; }

.pt-px-225 { padding-top: 22.5rem !important; }

.pt-px-230 { padding-top: 23rem !important; }

.pt-px-235 { padding-top: 23.5rem !important; }

.pt-px-240 { padding-top: 24rem !important; }

.pt-px-245 { padding-top: 24.5rem !important; }

.pt-px-250 { padding-top: 25rem !important; }

.pt-px-255 { padding-top: 25.5rem !important; }

.pt-px-260 { padding-top: 26rem !important; }

.pt-px-265 { padding-top: 26.5rem !important; }

.pt-px-270 { padding-top: 27rem !important; }

.pt-px-275 { padding-top: 27.5rem !important; }

.pt-px-280 { padding-top: 28rem !important; }

.pt-px-285 { padding-top: 28.5rem !important; }

.pt-px-290 { padding-top: 29rem !important; }

.pt-px-295 { padding-top: 29.5rem !important; }

.pt-px-300 { padding-top: 30rem !important; }

.pt-px-305 { padding-top: 30.5rem !important; }

.pt-px-310 { padding-top: 31rem !important; }

.pt-px-315 { padding-top: 31.5rem !important; }

.pt-px-320 { padding-top: 32rem !important; }

.pt-px-325 { padding-top: 32.5rem !important; }

.pt-px-330 { padding-top: 33rem !important; }

.pt-px-335 { padding-top: 33.5rem !important; }

.pt-px-340 { padding-top: 34rem !important; }

.pt-px-345 { padding-top: 34.5rem !important; }

.pt-px-350 { padding-top: 35rem !important; }

.pt-px-355 { padding-top: 35.5rem !important; }

.pt-px-360 { padding-top: 36rem !important; }

.pt-px-365 { padding-top: 36.5rem !important; }

.pt-px-370 { padding-top: 37rem !important; }

.pt-px-375 { padding-top: 37.5rem !important; }

.pt-px-380 { padding-top: 38rem !important; }

.pt-px-385 { padding-top: 38.5rem !important; }

.pt-px-390 { padding-top: 39rem !important; }

.pt-px-395 { padding-top: 39.5rem !important; }

.pt-px-400 { padding-top: 40rem !important; }

.pt-px-405 { padding-top: 40.5rem !important; }

.pt-px-410 { padding-top: 41rem !important; }

.pt-px-415 { padding-top: 41.5rem !important; }

.pt-px-420 { padding-top: 42rem !important; }

.pt-px-425 { padding-top: 42.5rem !important; }

.pt-px-430 { padding-top: 43rem !important; }

.pt-px-435 { padding-top: 43.5rem !important; }

.pt-px-440 { padding-top: 44rem !important; }

.pt-px-445 { padding-top: 44.5rem !important; }

.pt-px-450 { padding-top: 45rem !important; }

.pt-px-455 { padding-top: 45.5rem !important; }

.pt-px-460 { padding-top: 46rem !important; }

.pt-px-465 { padding-top: 46.5rem !important; }

.pt-px-470 { padding-top: 47rem !important; }

.pt-px-475 { padding-top: 47.5rem !important; }

.pt-px-480 { padding-top: 48rem !important; }

.pt-px-485 { padding-top: 48.5rem !important; }

.pt-px-490 { padding-top: 49rem !important; }

.pt-px-495 { padding-top: 49.5rem !important; }

.pt-px-500 { padding-top: 50rem !important; }

@media (min-width: 991px) { .pt-lg-px-0 { padding-top: 0rem !important; }
  .pt-lg-px-5 { padding-top: 0.5rem !important; }
  .pt-lg-px-10 { padding-top: 1rem !important; }
  .pt-lg-px-15 { padding-top: 1.5rem !important; }
  .pt-lg-px-20 { padding-top: 2rem !important; }
  .pt-lg-px-25 { padding-top: 2.5rem !important; }
  .pt-lg-px-30 { padding-top: 3rem !important; }
  .pt-lg-px-35 { padding-top: 3.5rem !important; }
  .pt-lg-px-40 { padding-top: 4rem !important; }
  .pt-lg-px-45 { padding-top: 4.5rem !important; }
  .pt-lg-px-50 { padding-top: 5rem !important; }
  .pt-lg-px-55 { padding-top: 5.5rem !important; }
  .pt-lg-px-60 { padding-top: 6rem !important; }
  .pt-lg-px-65 { padding-top: 6.5rem !important; }
  .pt-lg-px-70 { padding-top: 7rem !important; }
  .pt-lg-px-75 { padding-top: 7.5rem !important; }
  .pt-lg-px-80 { padding-top: 8rem !important; }
  .pt-lg-px-85 { padding-top: 8.5rem !important; }
  .pt-lg-px-90 { padding-top: 9rem !important; }
  .pt-lg-px-95 { padding-top: 9.5rem !important; }
  .pt-lg-px-100 { padding-top: 10rem !important; }
  .pt-lg-px-105 { padding-top: 10.5rem !important; }
  .pt-lg-px-110 { padding-top: 11rem !important; }
  .pt-lg-px-115 { padding-top: 11.5rem !important; }
  .pt-lg-px-120 { padding-top: 12rem !important; }
  .pt-lg-px-125 { padding-top: 12.5rem !important; }
  .pt-lg-px-130 { padding-top: 13rem !important; }
  .pt-lg-px-135 { padding-top: 13.5rem !important; }
  .pt-lg-px-140 { padding-top: 14rem !important; }
  .pt-lg-px-145 { padding-top: 14.5rem !important; }
  .pt-lg-px-150 { padding-top: 15rem !important; }
  .pt-lg-px-155 { padding-top: 15.5rem !important; }
  .pt-lg-px-160 { padding-top: 16rem !important; }
  .pt-lg-px-165 { padding-top: 16.5rem !important; }
  .pt-lg-px-170 { padding-top: 17rem !important; }
  .pt-lg-px-175 { padding-top: 17.5rem !important; }
  .pt-lg-px-180 { padding-top: 18rem !important; }
  .pt-lg-px-185 { padding-top: 18.5rem !important; }
  .pt-lg-px-190 { padding-top: 19rem !important; }
  .pt-lg-px-195 { padding-top: 19.5rem !important; }
  .pt-lg-px-200 { padding-top: 20rem !important; }
  .pt-lg-px-205 { padding-top: 20.5rem !important; }
  .pt-lg-px-210 { padding-top: 21rem !important; }
  .pt-lg-px-215 { padding-top: 21.5rem !important; }
  .pt-lg-px-220 { padding-top: 22rem !important; }
  .pt-lg-px-225 { padding-top: 22.5rem !important; }
  .pt-lg-px-230 { padding-top: 23rem !important; }
  .pt-lg-px-235 { padding-top: 23.5rem !important; }
  .pt-lg-px-240 { padding-top: 24rem !important; }
  .pt-lg-px-245 { padding-top: 24.5rem !important; }
  .pt-lg-px-250 { padding-top: 25rem !important; }
  .pt-lg-px-255 { padding-top: 25.5rem !important; }
  .pt-lg-px-260 { padding-top: 26rem !important; }
  .pt-lg-px-265 { padding-top: 26.5rem !important; }
  .pt-lg-px-270 { padding-top: 27rem !important; }
  .pt-lg-px-275 { padding-top: 27.5rem !important; }
  .pt-lg-px-280 { padding-top: 28rem !important; }
  .pt-lg-px-285 { padding-top: 28.5rem !important; }
  .pt-lg-px-290 { padding-top: 29rem !important; }
  .pt-lg-px-295 { padding-top: 29.5rem !important; }
  .pt-lg-px-300 { padding-top: 30rem !important; }
  .pt-lg-px-305 { padding-top: 30.5rem !important; }
  .pt-lg-px-310 { padding-top: 31rem !important; }
  .pt-lg-px-315 { padding-top: 31.5rem !important; }
  .pt-lg-px-320 { padding-top: 32rem !important; }
  .pt-lg-px-325 { padding-top: 32.5rem !important; }
  .pt-lg-px-330 { padding-top: 33rem !important; }
  .pt-lg-px-335 { padding-top: 33.5rem !important; }
  .pt-lg-px-340 { padding-top: 34rem !important; }
  .pt-lg-px-345 { padding-top: 34.5rem !important; }
  .pt-lg-px-350 { padding-top: 35rem !important; }
  .pt-lg-px-355 { padding-top: 35.5rem !important; }
  .pt-lg-px-360 { padding-top: 36rem !important; }
  .pt-lg-px-365 { padding-top: 36.5rem !important; }
  .pt-lg-px-370 { padding-top: 37rem !important; }
  .pt-lg-px-375 { padding-top: 37.5rem !important; }
  .pt-lg-px-380 { padding-top: 38rem !important; }
  .pt-lg-px-385 { padding-top: 38.5rem !important; }
  .pt-lg-px-390 { padding-top: 39rem !important; }
  .pt-lg-px-395 { padding-top: 39.5rem !important; }
  .pt-lg-px-400 { padding-top: 40rem !important; }
  .pt-lg-px-405 { padding-top: 40.5rem !important; }
  .pt-lg-px-410 { padding-top: 41rem !important; }
  .pt-lg-px-415 { padding-top: 41.5rem !important; }
  .pt-lg-px-420 { padding-top: 42rem !important; }
  .pt-lg-px-425 { padding-top: 42.5rem !important; }
  .pt-lg-px-430 { padding-top: 43rem !important; }
  .pt-lg-px-435 { padding-top: 43.5rem !important; }
  .pt-lg-px-440 { padding-top: 44rem !important; }
  .pt-lg-px-445 { padding-top: 44.5rem !important; }
  .pt-lg-px-450 { padding-top: 45rem !important; }
  .pt-lg-px-455 { padding-top: 45.5rem !important; }
  .pt-lg-px-460 { padding-top: 46rem !important; }
  .pt-lg-px-465 { padding-top: 46.5rem !important; }
  .pt-lg-px-470 { padding-top: 47rem !important; }
  .pt-lg-px-475 { padding-top: 47.5rem !important; }
  .pt-lg-px-480 { padding-top: 48rem !important; }
  .pt-lg-px-485 { padding-top: 48.5rem !important; }
  .pt-lg-px-490 { padding-top: 49rem !important; }
  .pt-lg-px-495 { padding-top: 49.5rem !important; }
  .pt-lg-px-500 { padding-top: 50rem !important; } }

.pb-px-0 { padding-bottom: 0rem !important; }

.pb-px-5 { padding-bottom: 0.5rem !important; }

.pb-px-10 { padding-bottom: 1rem !important; }

.pb-px-15 { padding-bottom: 1.5rem !important; }

.pb-px-20 { padding-bottom: 2rem !important; }

.pb-px-25 { padding-bottom: 2.5rem !important; }

.pb-px-30 { padding-bottom: 3rem !important; }

.pb-px-35 { padding-bottom: 3.5rem !important; }

.pb-px-40 { padding-bottom: 4rem !important; }

.pb-px-45 { padding-bottom: 4.5rem !important; }

.pb-px-50 { padding-bottom: 5rem !important; }

.pb-px-55 { padding-bottom: 5.5rem !important; }

.pb-px-60 { padding-bottom: 6rem !important; }

.pb-px-65 { padding-bottom: 6.5rem !important; }

.pb-px-70 { padding-bottom: 7rem !important; }

.pb-px-75 { padding-bottom: 7.5rem !important; }

.pb-px-80 { padding-bottom: 8rem !important; }

.pb-px-85 { padding-bottom: 8.5rem !important; }

.pb-px-90 { padding-bottom: 9rem !important; }

.pb-px-95 { padding-bottom: 9.5rem !important; }

.pb-px-100 { padding-bottom: 10rem !important; }

.pb-px-105 { padding-bottom: 10.5rem !important; }

.pb-px-110 { padding-bottom: 11rem !important; }

.pb-px-115 { padding-bottom: 11.5rem !important; }

.pb-px-120 { padding-bottom: 12rem !important; }

.pb-px-125 { padding-bottom: 12.5rem !important; }

.pb-px-130 { padding-bottom: 13rem !important; }

.pb-px-135 { padding-bottom: 13.5rem !important; }

.pb-px-140 { padding-bottom: 14rem !important; }

.pb-px-145 { padding-bottom: 14.5rem !important; }

.pb-px-150 { padding-bottom: 15rem !important; }

.pb-px-155 { padding-bottom: 15.5rem !important; }

.pb-px-160 { padding-bottom: 16rem !important; }

.pb-px-165 { padding-bottom: 16.5rem !important; }

.pb-px-170 { padding-bottom: 17rem !important; }

.pb-px-175 { padding-bottom: 17.5rem !important; }

.pb-px-180 { padding-bottom: 18rem !important; }

.pb-px-185 { padding-bottom: 18.5rem !important; }

.pb-px-190 { padding-bottom: 19rem !important; }

.pb-px-195 { padding-bottom: 19.5rem !important; }

.pb-px-200 { padding-bottom: 20rem !important; }

.pb-px-205 { padding-bottom: 20.5rem !important; }

.pb-px-210 { padding-bottom: 21rem !important; }

.pb-px-215 { padding-bottom: 21.5rem !important; }

.pb-px-220 { padding-bottom: 22rem !important; }

.pb-px-225 { padding-bottom: 22.5rem !important; }

.pb-px-230 { padding-bottom: 23rem !important; }

.pb-px-235 { padding-bottom: 23.5rem !important; }

.pb-px-240 { padding-bottom: 24rem !important; }

.pb-px-245 { padding-bottom: 24.5rem !important; }

.pb-px-250 { padding-bottom: 25rem !important; }

.pb-px-255 { padding-bottom: 25.5rem !important; }

.pb-px-260 { padding-bottom: 26rem !important; }

.pb-px-265 { padding-bottom: 26.5rem !important; }

.pb-px-270 { padding-bottom: 27rem !important; }

.pb-px-275 { padding-bottom: 27.5rem !important; }

.pb-px-280 { padding-bottom: 28rem !important; }

.pb-px-285 { padding-bottom: 28.5rem !important; }

.pb-px-290 { padding-bottom: 29rem !important; }

.pb-px-295 { padding-bottom: 29.5rem !important; }

.pb-px-300 { padding-bottom: 30rem !important; }

.pb-px-305 { padding-bottom: 30.5rem !important; }

.pb-px-310 { padding-bottom: 31rem !important; }

.pb-px-315 { padding-bottom: 31.5rem !important; }

.pb-px-320 { padding-bottom: 32rem !important; }

.pb-px-325 { padding-bottom: 32.5rem !important; }

.pb-px-330 { padding-bottom: 33rem !important; }

.pb-px-335 { padding-bottom: 33.5rem !important; }

.pb-px-340 { padding-bottom: 34rem !important; }

.pb-px-345 { padding-bottom: 34.5rem !important; }

.pb-px-350 { padding-bottom: 35rem !important; }

.pb-px-355 { padding-bottom: 35.5rem !important; }

.pb-px-360 { padding-bottom: 36rem !important; }

.pb-px-365 { padding-bottom: 36.5rem !important; }

.pb-px-370 { padding-bottom: 37rem !important; }

.pb-px-375 { padding-bottom: 37.5rem !important; }

.pb-px-380 { padding-bottom: 38rem !important; }

.pb-px-385 { padding-bottom: 38.5rem !important; }

.pb-px-390 { padding-bottom: 39rem !important; }

.pb-px-395 { padding-bottom: 39.5rem !important; }

.pb-px-400 { padding-bottom: 40rem !important; }

.pb-px-405 { padding-bottom: 40.5rem !important; }

.pb-px-410 { padding-bottom: 41rem !important; }

.pb-px-415 { padding-bottom: 41.5rem !important; }

.pb-px-420 { padding-bottom: 42rem !important; }

.pb-px-425 { padding-bottom: 42.5rem !important; }

.pb-px-430 { padding-bottom: 43rem !important; }

.pb-px-435 { padding-bottom: 43.5rem !important; }

.pb-px-440 { padding-bottom: 44rem !important; }

.pb-px-445 { padding-bottom: 44.5rem !important; }

.pb-px-450 { padding-bottom: 45rem !important; }

.pb-px-455 { padding-bottom: 45.5rem !important; }

.pb-px-460 { padding-bottom: 46rem !important; }

.pb-px-465 { padding-bottom: 46.5rem !important; }

.pb-px-470 { padding-bottom: 47rem !important; }

.pb-px-475 { padding-bottom: 47.5rem !important; }

.pb-px-480 { padding-bottom: 48rem !important; }

.pb-px-485 { padding-bottom: 48.5rem !important; }

.pb-px-490 { padding-bottom: 49rem !important; }

.pb-px-495 { padding-bottom: 49.5rem !important; }

.pb-px-500 { padding-bottom: 50rem !important; }

@media (min-width: 991px) { .pb-lg-px-0 { padding-bottom: 0rem !important; }
  .pb-lg-px-5 { padding-bottom: 0.5rem !important; }
  .pb-lg-px-10 { padding-bottom: 1rem !important; }
  .pb-lg-px-15 { padding-bottom: 1.5rem !important; }
  .pb-lg-px-20 { padding-bottom: 2rem !important; }
  .pb-lg-px-25 { padding-bottom: 2.5rem !important; }
  .pb-lg-px-30 { padding-bottom: 3rem !important; }
  .pb-lg-px-35 { padding-bottom: 3.5rem !important; }
  .pb-lg-px-40 { padding-bottom: 4rem !important; }
  .pb-lg-px-45 { padding-bottom: 4.5rem !important; }
  .pb-lg-px-50 { padding-bottom: 5rem !important; }
  .pb-lg-px-55 { padding-bottom: 5.5rem !important; }
  .pb-lg-px-60 { padding-bottom: 6rem !important; }
  .pb-lg-px-65 { padding-bottom: 6.5rem !important; }
  .pb-lg-px-70 { padding-bottom: 7rem !important; }
  .pb-lg-px-75 { padding-bottom: 7.5rem !important; }
  .pb-lg-px-80 { padding-bottom: 8rem !important; }
  .pb-lg-px-85 { padding-bottom: 8.5rem !important; }
  .pb-lg-px-90 { padding-bottom: 9rem !important; }
  .pb-lg-px-95 { padding-bottom: 9.5rem !important; }
  .pb-lg-px-100 { padding-bottom: 10rem !important; }
  .pb-lg-px-105 { padding-bottom: 10.5rem !important; }
  .pb-lg-px-110 { padding-bottom: 11rem !important; }
  .pb-lg-px-115 { padding-bottom: 11.5rem !important; }
  .pb-lg-px-120 { padding-bottom: 12rem !important; }
  .pb-lg-px-125 { padding-bottom: 12.5rem !important; }
  .pb-lg-px-130 { padding-bottom: 13rem !important; }
  .pb-lg-px-135 { padding-bottom: 13.5rem !important; }
  .pb-lg-px-140 { padding-bottom: 14rem !important; }
  .pb-lg-px-145 { padding-bottom: 14.5rem !important; }
  .pb-lg-px-150 { padding-bottom: 15rem !important; }
  .pb-lg-px-155 { padding-bottom: 15.5rem !important; }
  .pb-lg-px-160 { padding-bottom: 16rem !important; }
  .pb-lg-px-165 { padding-bottom: 16.5rem !important; }
  .pb-lg-px-170 { padding-bottom: 17rem !important; }
  .pb-lg-px-175 { padding-bottom: 17.5rem !important; }
  .pb-lg-px-180 { padding-bottom: 18rem !important; }
  .pb-lg-px-185 { padding-bottom: 18.5rem !important; }
  .pb-lg-px-190 { padding-bottom: 19rem !important; }
  .pb-lg-px-195 { padding-bottom: 19.5rem !important; }
  .pb-lg-px-200 { padding-bottom: 20rem !important; }
  .pb-lg-px-205 { padding-bottom: 20.5rem !important; }
  .pb-lg-px-210 { padding-bottom: 21rem !important; }
  .pb-lg-px-215 { padding-bottom: 21.5rem !important; }
  .pb-lg-px-220 { padding-bottom: 22rem !important; }
  .pb-lg-px-225 { padding-bottom: 22.5rem !important; }
  .pb-lg-px-230 { padding-bottom: 23rem !important; }
  .pb-lg-px-235 { padding-bottom: 23.5rem !important; }
  .pb-lg-px-240 { padding-bottom: 24rem !important; }
  .pb-lg-px-245 { padding-bottom: 24.5rem !important; }
  .pb-lg-px-250 { padding-bottom: 25rem !important; }
  .pb-lg-px-255 { padding-bottom: 25.5rem !important; }
  .pb-lg-px-260 { padding-bottom: 26rem !important; }
  .pb-lg-px-265 { padding-bottom: 26.5rem !important; }
  .pb-lg-px-270 { padding-bottom: 27rem !important; }
  .pb-lg-px-275 { padding-bottom: 27.5rem !important; }
  .pb-lg-px-280 { padding-bottom: 28rem !important; }
  .pb-lg-px-285 { padding-bottom: 28.5rem !important; }
  .pb-lg-px-290 { padding-bottom: 29rem !important; }
  .pb-lg-px-295 { padding-bottom: 29.5rem !important; }
  .pb-lg-px-300 { padding-bottom: 30rem !important; }
  .pb-lg-px-305 { padding-bottom: 30.5rem !important; }
  .pb-lg-px-310 { padding-bottom: 31rem !important; }
  .pb-lg-px-315 { padding-bottom: 31.5rem !important; }
  .pb-lg-px-320 { padding-bottom: 32rem !important; }
  .pb-lg-px-325 { padding-bottom: 32.5rem !important; }
  .pb-lg-px-330 { padding-bottom: 33rem !important; }
  .pb-lg-px-335 { padding-bottom: 33.5rem !important; }
  .pb-lg-px-340 { padding-bottom: 34rem !important; }
  .pb-lg-px-345 { padding-bottom: 34.5rem !important; }
  .pb-lg-px-350 { padding-bottom: 35rem !important; }
  .pb-lg-px-355 { padding-bottom: 35.5rem !important; }
  .pb-lg-px-360 { padding-bottom: 36rem !important; }
  .pb-lg-px-365 { padding-bottom: 36.5rem !important; }
  .pb-lg-px-370 { padding-bottom: 37rem !important; }
  .pb-lg-px-375 { padding-bottom: 37.5rem !important; }
  .pb-lg-px-380 { padding-bottom: 38rem !important; }
  .pb-lg-px-385 { padding-bottom: 38.5rem !important; }
  .pb-lg-px-390 { padding-bottom: 39rem !important; }
  .pb-lg-px-395 { padding-bottom: 39.5rem !important; }
  .pb-lg-px-400 { padding-bottom: 40rem !important; }
  .pb-lg-px-405 { padding-bottom: 40.5rem !important; }
  .pb-lg-px-410 { padding-bottom: 41rem !important; }
  .pb-lg-px-415 { padding-bottom: 41.5rem !important; }
  .pb-lg-px-420 { padding-bottom: 42rem !important; }
  .pb-lg-px-425 { padding-bottom: 42.5rem !important; }
  .pb-lg-px-430 { padding-bottom: 43rem !important; }
  .pb-lg-px-435 { padding-bottom: 43.5rem !important; }
  .pb-lg-px-440 { padding-bottom: 44rem !important; }
  .pb-lg-px-445 { padding-bottom: 44.5rem !important; }
  .pb-lg-px-450 { padding-bottom: 45rem !important; }
  .pb-lg-px-455 { padding-bottom: 45.5rem !important; }
  .pb-lg-px-460 { padding-bottom: 46rem !important; }
  .pb-lg-px-465 { padding-bottom: 46.5rem !important; }
  .pb-lg-px-470 { padding-bottom: 47rem !important; }
  .pb-lg-px-475 { padding-bottom: 47.5rem !important; }
  .pb-lg-px-480 { padding-bottom: 48rem !important; }
  .pb-lg-px-485 { padding-bottom: 48.5rem !important; }
  .pb-lg-px-490 { padding-bottom: 49rem !important; }
  .pb-lg-px-495 { padding-bottom: 49.5rem !important; }
  .pb-lg-px-500 { padding-bottom: 50rem !important; } }

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

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

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

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

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

.pl-px-25 { padding-left: 2.5rem !important; }

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

.pl-px-35 { padding-left: 3.5rem !important; }

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

.pl-px-45 { padding-left: 4.5rem !important; }

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

.pl-px-55 { padding-left: 5.5rem !important; }

.pl-px-60 { padding-left: 6rem !important; }

.pl-px-65 { padding-left: 6.5rem !important; }

.pl-px-70 { padding-left: 7rem !important; }

.pl-px-75 { padding-left: 7.5rem !important; }

.pl-px-80 { padding-left: 8rem !important; }

.pl-px-85 { padding-left: 8.5rem !important; }

.pl-px-90 { padding-left: 9rem !important; }

.pl-px-95 { padding-left: 9.5rem !important; }

.pl-px-100 { padding-left: 10rem !important; }

.pl-px-105 { padding-left: 10.5rem !important; }

.pl-px-110 { padding-left: 11rem !important; }

.pl-px-115 { padding-left: 11.5rem !important; }

.pl-px-120 { padding-left: 12rem !important; }

.pl-px-125 { padding-left: 12.5rem !important; }

.pl-px-130 { padding-left: 13rem !important; }

.pl-px-135 { padding-left: 13.5rem !important; }

.pl-px-140 { padding-left: 14rem !important; }

.pl-px-145 { padding-left: 14.5rem !important; }

.pl-px-150 { padding-left: 15rem !important; }

.pl-px-155 { padding-left: 15.5rem !important; }

.pl-px-160 { padding-left: 16rem !important; }

.pl-px-165 { padding-left: 16.5rem !important; }

.pl-px-170 { padding-left: 17rem !important; }

.pl-px-175 { padding-left: 17.5rem !important; }

.pl-px-180 { padding-left: 18rem !important; }

.pl-px-185 { padding-left: 18.5rem !important; }

.pl-px-190 { padding-left: 19rem !important; }

.pl-px-195 { padding-left: 19.5rem !important; }

.pl-px-200 { padding-left: 20rem !important; }

.pl-px-205 { padding-left: 20.5rem !important; }

.pl-px-210 { padding-left: 21rem !important; }

.pl-px-215 { padding-left: 21.5rem !important; }

.pl-px-220 { padding-left: 22rem !important; }

.pl-px-225 { padding-left: 22.5rem !important; }

.pl-px-230 { padding-left: 23rem !important; }

.pl-px-235 { padding-left: 23.5rem !important; }

.pl-px-240 { padding-left: 24rem !important; }

.pl-px-245 { padding-left: 24.5rem !important; }

.pl-px-250 { padding-left: 25rem !important; }

.pl-px-255 { padding-left: 25.5rem !important; }

.pl-px-260 { padding-left: 26rem !important; }

.pl-px-265 { padding-left: 26.5rem !important; }

.pl-px-270 { padding-left: 27rem !important; }

.pl-px-275 { padding-left: 27.5rem !important; }

.pl-px-280 { padding-left: 28rem !important; }

.pl-px-285 { padding-left: 28.5rem !important; }

.pl-px-290 { padding-left: 29rem !important; }

.pl-px-295 { padding-left: 29.5rem !important; }

.pl-px-300 { padding-left: 30rem !important; }

.pl-px-305 { padding-left: 30.5rem !important; }

.pl-px-310 { padding-left: 31rem !important; }

.pl-px-315 { padding-left: 31.5rem !important; }

.pl-px-320 { padding-left: 32rem !important; }

.pl-px-325 { padding-left: 32.5rem !important; }

.pl-px-330 { padding-left: 33rem !important; }

.pl-px-335 { padding-left: 33.5rem !important; }

.pl-px-340 { padding-left: 34rem !important; }

.pl-px-345 { padding-left: 34.5rem !important; }

.pl-px-350 { padding-left: 35rem !important; }

.pl-px-355 { padding-left: 35.5rem !important; }

.pl-px-360 { padding-left: 36rem !important; }

.pl-px-365 { padding-left: 36.5rem !important; }

.pl-px-370 { padding-left: 37rem !important; }

.pl-px-375 { padding-left: 37.5rem !important; }

.pl-px-380 { padding-left: 38rem !important; }

.pl-px-385 { padding-left: 38.5rem !important; }

.pl-px-390 { padding-left: 39rem !important; }

.pl-px-395 { padding-left: 39.5rem !important; }

.pl-px-400 { padding-left: 40rem !important; }

.pl-px-405 { padding-left: 40.5rem !important; }

.pl-px-410 { padding-left: 41rem !important; }

.pl-px-415 { padding-left: 41.5rem !important; }

.pl-px-420 { padding-left: 42rem !important; }

.pl-px-425 { padding-left: 42.5rem !important; }

.pl-px-430 { padding-left: 43rem !important; }

.pl-px-435 { padding-left: 43.5rem !important; }

.pl-px-440 { padding-left: 44rem !important; }

.pl-px-445 { padding-left: 44.5rem !important; }

.pl-px-450 { padding-left: 45rem !important; }

.pl-px-455 { padding-left: 45.5rem !important; }

.pl-px-460 { padding-left: 46rem !important; }

.pl-px-465 { padding-left: 46.5rem !important; }

.pl-px-470 { padding-left: 47rem !important; }

.pl-px-475 { padding-left: 47.5rem !important; }

.pl-px-480 { padding-left: 48rem !important; }

.pl-px-485 { padding-left: 48.5rem !important; }

.pl-px-490 { padding-left: 49rem !important; }

.pl-px-495 { padding-left: 49.5rem !important; }

.pl-px-500 { padding-left: 50rem !important; }

@media (min-width: 991px) { .pl-lg-px-0 { padding-left: 0rem !important; }
  .pl-lg-px-5 { padding-left: 0.5rem !important; }
  .pl-lg-px-10 { padding-left: 1rem !important; }
  .pl-lg-px-15 { padding-left: 1.5rem !important; }
  .pl-lg-px-20 { padding-left: 2rem !important; }
  .pl-lg-px-25 { padding-left: 2.5rem !important; }
  .pl-lg-px-30 { padding-left: 3rem !important; }
  .pl-lg-px-35 { padding-left: 3.5rem !important; }
  .pl-lg-px-40 { padding-left: 4rem !important; }
  .pl-lg-px-45 { padding-left: 4.5rem !important; }
  .pl-lg-px-50 { padding-left: 5rem !important; }
  .pl-lg-px-55 { padding-left: 5.5rem !important; }
  .pl-lg-px-60 { padding-left: 6rem !important; }
  .pl-lg-px-65 { padding-left: 6.5rem !important; }
  .pl-lg-px-70 { padding-left: 7rem !important; }
  .pl-lg-px-75 { padding-left: 7.5rem !important; }
  .pl-lg-px-80 { padding-left: 8rem !important; }
  .pl-lg-px-85 { padding-left: 8.5rem !important; }
  .pl-lg-px-90 { padding-left: 9rem !important; }
  .pl-lg-px-95 { padding-left: 9.5rem !important; }
  .pl-lg-px-100 { padding-left: 10rem !important; }
  .pl-lg-px-105 { padding-left: 10.5rem !important; }
  .pl-lg-px-110 { padding-left: 11rem !important; }
  .pl-lg-px-115 { padding-left: 11.5rem !important; }
  .pl-lg-px-120 { padding-left: 12rem !important; }
  .pl-lg-px-125 { padding-left: 12.5rem !important; }
  .pl-lg-px-130 { padding-left: 13rem !important; }
  .pl-lg-px-135 { padding-left: 13.5rem !important; }
  .pl-lg-px-140 { padding-left: 14rem !important; }
  .pl-lg-px-145 { padding-left: 14.5rem !important; }
  .pl-lg-px-150 { padding-left: 15rem !important; }
  .pl-lg-px-155 { padding-left: 15.5rem !important; }
  .pl-lg-px-160 { padding-left: 16rem !important; }
  .pl-lg-px-165 { padding-left: 16.5rem !important; }
  .pl-lg-px-170 { padding-left: 17rem !important; }
  .pl-lg-px-175 { padding-left: 17.5rem !important; }
  .pl-lg-px-180 { padding-left: 18rem !important; }
  .pl-lg-px-185 { padding-left: 18.5rem !important; }
  .pl-lg-px-190 { padding-left: 19rem !important; }
  .pl-lg-px-195 { padding-left: 19.5rem !important; }
  .pl-lg-px-200 { padding-left: 20rem !important; }
  .pl-lg-px-205 { padding-left: 20.5rem !important; }
  .pl-lg-px-210 { padding-left: 21rem !important; }
  .pl-lg-px-215 { padding-left: 21.5rem !important; }
  .pl-lg-px-220 { padding-left: 22rem !important; }
  .pl-lg-px-225 { padding-left: 22.5rem !important; }
  .pl-lg-px-230 { padding-left: 23rem !important; }
  .pl-lg-px-235 { padding-left: 23.5rem !important; }
  .pl-lg-px-240 { padding-left: 24rem !important; }
  .pl-lg-px-245 { padding-left: 24.5rem !important; }
  .pl-lg-px-250 { padding-left: 25rem !important; }
  .pl-lg-px-255 { padding-left: 25.5rem !important; }
  .pl-lg-px-260 { padding-left: 26rem !important; }
  .pl-lg-px-265 { padding-left: 26.5rem !important; }
  .pl-lg-px-270 { padding-left: 27rem !important; }
  .pl-lg-px-275 { padding-left: 27.5rem !important; }
  .pl-lg-px-280 { padding-left: 28rem !important; }
  .pl-lg-px-285 { padding-left: 28.5rem !important; }
  .pl-lg-px-290 { padding-left: 29rem !important; }
  .pl-lg-px-295 { padding-left: 29.5rem !important; }
  .pl-lg-px-300 { padding-left: 30rem !important; }
  .pl-lg-px-305 { padding-left: 30.5rem !important; }
  .pl-lg-px-310 { padding-left: 31rem !important; }
  .pl-lg-px-315 { padding-left: 31.5rem !important; }
  .pl-lg-px-320 { padding-left: 32rem !important; }
  .pl-lg-px-325 { padding-left: 32.5rem !important; }
  .pl-lg-px-330 { padding-left: 33rem !important; }
  .pl-lg-px-335 { padding-left: 33.5rem !important; }
  .pl-lg-px-340 { padding-left: 34rem !important; }
  .pl-lg-px-345 { padding-left: 34.5rem !important; }
  .pl-lg-px-350 { padding-left: 35rem !important; }
  .pl-lg-px-355 { padding-left: 35.5rem !important; }
  .pl-lg-px-360 { padding-left: 36rem !important; }
  .pl-lg-px-365 { padding-left: 36.5rem !important; }
  .pl-lg-px-370 { padding-left: 37rem !important; }
  .pl-lg-px-375 { padding-left: 37.5rem !important; }
  .pl-lg-px-380 { padding-left: 38rem !important; }
  .pl-lg-px-385 { padding-left: 38.5rem !important; }
  .pl-lg-px-390 { padding-left: 39rem !important; }
  .pl-lg-px-395 { padding-left: 39.5rem !important; }
  .pl-lg-px-400 { padding-left: 40rem !important; }
  .pl-lg-px-405 { padding-left: 40.5rem !important; }
  .pl-lg-px-410 { padding-left: 41rem !important; }
  .pl-lg-px-415 { padding-left: 41.5rem !important; }
  .pl-lg-px-420 { padding-left: 42rem !important; }
  .pl-lg-px-425 { padding-left: 42.5rem !important; }
  .pl-lg-px-430 { padding-left: 43rem !important; }
  .pl-lg-px-435 { padding-left: 43.5rem !important; }
  .pl-lg-px-440 { padding-left: 44rem !important; }
  .pl-lg-px-445 { padding-left: 44.5rem !important; }
  .pl-lg-px-450 { padding-left: 45rem !important; }
  .pl-lg-px-455 { padding-left: 45.5rem !important; }
  .pl-lg-px-460 { padding-left: 46rem !important; }
  .pl-lg-px-465 { padding-left: 46.5rem !important; }
  .pl-lg-px-470 { padding-left: 47rem !important; }
  .pl-lg-px-475 { padding-left: 47.5rem !important; }
  .pl-lg-px-480 { padding-left: 48rem !important; }
  .pl-lg-px-485 { padding-left: 48.5rem !important; }
  .pl-lg-px-490 { padding-left: 49rem !important; }
  .pl-lg-px-495 { padding-left: 49.5rem !important; }
  .pl-lg-px-500 { padding-left: 50rem !important; } }

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

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

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

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

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

.pr-px-25 { padding-right: 2.5rem !important; }

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

.pr-px-35 { padding-right: 3.5rem !important; }

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

.pr-px-45 { padding-right: 4.5rem !important; }

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

.pr-px-55 { padding-right: 5.5rem !important; }

.pr-px-60 { padding-right: 6rem !important; }

.pr-px-65 { padding-right: 6.5rem !important; }

.pr-px-70 { padding-right: 7rem !important; }

.pr-px-75 { padding-right: 7.5rem !important; }

.pr-px-80 { padding-right: 8rem !important; }

.pr-px-85 { padding-right: 8.5rem !important; }

.pr-px-90 { padding-right: 9rem !important; }

.pr-px-95 { padding-right: 9.5rem !important; }

.pr-px-100 { padding-right: 10rem !important; }

.pr-px-105 { padding-right: 10.5rem !important; }

.pr-px-110 { padding-right: 11rem !important; }

.pr-px-115 { padding-right: 11.5rem !important; }

.pr-px-120 { padding-right: 12rem !important; }

.pr-px-125 { padding-right: 12.5rem !important; }

.pr-px-130 { padding-right: 13rem !important; }

.pr-px-135 { padding-right: 13.5rem !important; }

.pr-px-140 { padding-right: 14rem !important; }

.pr-px-145 { padding-right: 14.5rem !important; }

.pr-px-150 { padding-right: 15rem !important; }

.pr-px-155 { padding-right: 15.5rem !important; }

.pr-px-160 { padding-right: 16rem !important; }

.pr-px-165 { padding-right: 16.5rem !important; }

.pr-px-170 { padding-right: 17rem !important; }

.pr-px-175 { padding-right: 17.5rem !important; }

.pr-px-180 { padding-right: 18rem !important; }

.pr-px-185 { padding-right: 18.5rem !important; }

.pr-px-190 { padding-right: 19rem !important; }

.pr-px-195 { padding-right: 19.5rem !important; }

.pr-px-200 { padding-right: 20rem !important; }

.pr-px-205 { padding-right: 20.5rem !important; }

.pr-px-210 { padding-right: 21rem !important; }

.pr-px-215 { padding-right: 21.5rem !important; }

.pr-px-220 { padding-right: 22rem !important; }

.pr-px-225 { padding-right: 22.5rem !important; }

.pr-px-230 { padding-right: 23rem !important; }

.pr-px-235 { padding-right: 23.5rem !important; }

.pr-px-240 { padding-right: 24rem !important; }

.pr-px-245 { padding-right: 24.5rem !important; }

.pr-px-250 { padding-right: 25rem !important; }

.pr-px-255 { padding-right: 25.5rem !important; }

.pr-px-260 { padding-right: 26rem !important; }

.pr-px-265 { padding-right: 26.5rem !important; }

.pr-px-270 { padding-right: 27rem !important; }

.pr-px-275 { padding-right: 27.5rem !important; }

.pr-px-280 { padding-right: 28rem !important; }

.pr-px-285 { padding-right: 28.5rem !important; }

.pr-px-290 { padding-right: 29rem !important; }

.pr-px-295 { padding-right: 29.5rem !important; }

.pr-px-300 { padding-right: 30rem !important; }

.pr-px-305 { padding-right: 30.5rem !important; }

.pr-px-310 { padding-right: 31rem !important; }

.pr-px-315 { padding-right: 31.5rem !important; }

.pr-px-320 { padding-right: 32rem !important; }

.pr-px-325 { padding-right: 32.5rem !important; }

.pr-px-330 { padding-right: 33rem !important; }

.pr-px-335 { padding-right: 33.5rem !important; }

.pr-px-340 { padding-right: 34rem !important; }

.pr-px-345 { padding-right: 34.5rem !important; }

.pr-px-350 { padding-right: 35rem !important; }

.pr-px-355 { padding-right: 35.5rem !important; }

.pr-px-360 { padding-right: 36rem !important; }

.pr-px-365 { padding-right: 36.5rem !important; }

.pr-px-370 { padding-right: 37rem !important; }

.pr-px-375 { padding-right: 37.5rem !important; }

.pr-px-380 { padding-right: 38rem !important; }

.pr-px-385 { padding-right: 38.5rem !important; }

.pr-px-390 { padding-right: 39rem !important; }

.pr-px-395 { padding-right: 39.5rem !important; }

.pr-px-400 { padding-right: 40rem !important; }

.pr-px-405 { padding-right: 40.5rem !important; }

.pr-px-410 { padding-right: 41rem !important; }

.pr-px-415 { padding-right: 41.5rem !important; }

.pr-px-420 { padding-right: 42rem !important; }

.pr-px-425 { padding-right: 42.5rem !important; }

.pr-px-430 { padding-right: 43rem !important; }

.pr-px-435 { padding-right: 43.5rem !important; }

.pr-px-440 { padding-right: 44rem !important; }

.pr-px-445 { padding-right: 44.5rem !important; }

.pr-px-450 { padding-right: 45rem !important; }

.pr-px-455 { padding-right: 45.5rem !important; }

.pr-px-460 { padding-right: 46rem !important; }

.pr-px-465 { padding-right: 46.5rem !important; }

.pr-px-470 { padding-right: 47rem !important; }

.pr-px-475 { padding-right: 47.5rem !important; }

.pr-px-480 { padding-right: 48rem !important; }

.pr-px-485 { padding-right: 48.5rem !important; }

.pr-px-490 { padding-right: 49rem !important; }

.pr-px-495 { padding-right: 49.5rem !important; }

.pr-px-500 { padding-right: 50rem !important; }

@media (min-width: 991px) { .pr-lg-px-0 { padding-right: 0rem !important; }
  .pr-lg-px-5 { padding-right: 0.5rem !important; }
  .pr-lg-px-10 { padding-right: 1rem !important; }
  .pr-lg-px-15 { padding-right: 1.5rem !important; }
  .pr-lg-px-20 { padding-right: 2rem !important; }
  .pr-lg-px-25 { padding-right: 2.5rem !important; }
  .pr-lg-px-30 { padding-right: 3rem !important; }
  .pr-lg-px-35 { padding-right: 3.5rem !important; }
  .pr-lg-px-40 { padding-right: 4rem !important; }
  .pr-lg-px-45 { padding-right: 4.5rem !important; }
  .pr-lg-px-50 { padding-right: 5rem !important; }
  .pr-lg-px-55 { padding-right: 5.5rem !important; }
  .pr-lg-px-60 { padding-right: 6rem !important; }
  .pr-lg-px-65 { padding-right: 6.5rem !important; }
  .pr-lg-px-70 { padding-right: 7rem !important; }
  .pr-lg-px-75 { padding-right: 7.5rem !important; }
  .pr-lg-px-80 { padding-right: 8rem !important; }
  .pr-lg-px-85 { padding-right: 8.5rem !important; }
  .pr-lg-px-90 { padding-right: 9rem !important; }
  .pr-lg-px-95 { padding-right: 9.5rem !important; }
  .pr-lg-px-100 { padding-right: 10rem !important; }
  .pr-lg-px-105 { padding-right: 10.5rem !important; }
  .pr-lg-px-110 { padding-right: 11rem !important; }
  .pr-lg-px-115 { padding-right: 11.5rem !important; }
  .pr-lg-px-120 { padding-right: 12rem !important; }
  .pr-lg-px-125 { padding-right: 12.5rem !important; }
  .pr-lg-px-130 { padding-right: 13rem !important; }
  .pr-lg-px-135 { padding-right: 13.5rem !important; }
  .pr-lg-px-140 { padding-right: 14rem !important; }
  .pr-lg-px-145 { padding-right: 14.5rem !important; }
  .pr-lg-px-150 { padding-right: 15rem !important; }
  .pr-lg-px-155 { padding-right: 15.5rem !important; }
  .pr-lg-px-160 { padding-right: 16rem !important; }
  .pr-lg-px-165 { padding-right: 16.5rem !important; }
  .pr-lg-px-170 { padding-right: 17rem !important; }
  .pr-lg-px-175 { padding-right: 17.5rem !important; }
  .pr-lg-px-180 { padding-right: 18rem !important; }
  .pr-lg-px-185 { padding-right: 18.5rem !important; }
  .pr-lg-px-190 { padding-right: 19rem !important; }
  .pr-lg-px-195 { padding-right: 19.5rem !important; }
  .pr-lg-px-200 { padding-right: 20rem !important; }
  .pr-lg-px-205 { padding-right: 20.5rem !important; }
  .pr-lg-px-210 { padding-right: 21rem !important; }
  .pr-lg-px-215 { padding-right: 21.5rem !important; }
  .pr-lg-px-220 { padding-right: 22rem !important; }
  .pr-lg-px-225 { padding-right: 22.5rem !important; }
  .pr-lg-px-230 { padding-right: 23rem !important; }
  .pr-lg-px-235 { padding-right: 23.5rem !important; }
  .pr-lg-px-240 { padding-right: 24rem !important; }
  .pr-lg-px-245 { padding-right: 24.5rem !important; }
  .pr-lg-px-250 { padding-right: 25rem !important; }
  .pr-lg-px-255 { padding-right: 25.5rem !important; }
  .pr-lg-px-260 { padding-right: 26rem !important; }
  .pr-lg-px-265 { padding-right: 26.5rem !important; }
  .pr-lg-px-270 { padding-right: 27rem !important; }
  .pr-lg-px-275 { padding-right: 27.5rem !important; }
  .pr-lg-px-280 { padding-right: 28rem !important; }
  .pr-lg-px-285 { padding-right: 28.5rem !important; }
  .pr-lg-px-290 { padding-right: 29rem !important; }
  .pr-lg-px-295 { padding-right: 29.5rem !important; }
  .pr-lg-px-300 { padding-right: 30rem !important; }
  .pr-lg-px-305 { padding-right: 30.5rem !important; }
  .pr-lg-px-310 { padding-right: 31rem !important; }
  .pr-lg-px-315 { padding-right: 31.5rem !important; }
  .pr-lg-px-320 { padding-right: 32rem !important; }
  .pr-lg-px-325 { padding-right: 32.5rem !important; }
  .pr-lg-px-330 { padding-right: 33rem !important; }
  .pr-lg-px-335 { padding-right: 33.5rem !important; }
  .pr-lg-px-340 { padding-right: 34rem !important; }
  .pr-lg-px-345 { padding-right: 34.5rem !important; }
  .pr-lg-px-350 { padding-right: 35rem !important; }
  .pr-lg-px-355 { padding-right: 35.5rem !important; }
  .pr-lg-px-360 { padding-right: 36rem !important; }
  .pr-lg-px-365 { padding-right: 36.5rem !important; }
  .pr-lg-px-370 { padding-right: 37rem !important; }
  .pr-lg-px-375 { padding-right: 37.5rem !important; }
  .pr-lg-px-380 { padding-right: 38rem !important; }
  .pr-lg-px-385 { padding-right: 38.5rem !important; }
  .pr-lg-px-390 { padding-right: 39rem !important; }
  .pr-lg-px-395 { padding-right: 39.5rem !important; }
  .pr-lg-px-400 { padding-right: 40rem !important; }
  .pr-lg-px-405 { padding-right: 40.5rem !important; }
  .pr-lg-px-410 { padding-right: 41rem !important; }
  .pr-lg-px-415 { padding-right: 41.5rem !important; }
  .pr-lg-px-420 { padding-right: 42rem !important; }
  .pr-lg-px-425 { padding-right: 42.5rem !important; }
  .pr-lg-px-430 { padding-right: 43rem !important; }
  .pr-lg-px-435 { padding-right: 43.5rem !important; }
  .pr-lg-px-440 { padding-right: 44rem !important; }
  .pr-lg-px-445 { padding-right: 44.5rem !important; }
  .pr-lg-px-450 { padding-right: 45rem !important; }
  .pr-lg-px-455 { padding-right: 45.5rem !important; }
  .pr-lg-px-460 { padding-right: 46rem !important; }
  .pr-lg-px-465 { padding-right: 46.5rem !important; }
  .pr-lg-px-470 { padding-right: 47rem !important; }
  .pr-lg-px-475 { padding-right: 47.5rem !important; }
  .pr-lg-px-480 { padding-right: 48rem !important; }
  .pr-lg-px-485 { padding-right: 48.5rem !important; }
  .pr-lg-px-490 { padding-right: 49rem !important; }
  .pr-lg-px-495 { padding-right: 49.5rem !important; }
  .pr-lg-px-500 { padding-right: 50rem !important; } }

/* 文字サイズの設定 */
.font-10 { font-size: 1rem !important; }

.font-11 { font-size: 1.1rem !important; }

.font-12 { font-size: 1.2rem !important; }

.font-13 { font-size: 1.3rem !important; }

.font-14 { font-size: 1.4rem !important; }

.font-15 { font-size: 1.5rem !important; }

.font-16 { font-size: 1.6rem !important; }

.font-17 { font-size: 1.7rem !important; }

.font-18 { font-size: 1.8rem !important; }

.font-19 { font-size: 1.9rem !important; }

.font-20 { font-size: 2rem !important; }

.font-21 { font-size: 2.1rem !important; }

.font-22 { font-size: 2.2rem !important; }

.font-23 { font-size: 2.3rem !important; }

.font-24 { font-size: 2.4rem !important; }

.font-25 { font-size: 2.5rem !important; }

.font-26 { font-size: 2.6rem !important; }

.font-27 { font-size: 2.7rem !important; }

.font-28 { font-size: 2.8rem !important; }

.font-29 { font-size: 2.9rem !important; }

.font-30 { font-size: 3rem !important; }

.font-31 { font-size: 3.1rem !important; }

.font-32 { font-size: 3.2rem !important; }

.font-33 { font-size: 3.3rem !important; }

.font-34 { font-size: 3.4rem !important; }

.font-35 { font-size: 3.5rem !important; }

.font-36 { font-size: 3.6rem !important; }

.font-37 { font-size: 3.7rem !important; }

.font-38 { font-size: 3.8rem !important; }

.font-39 { font-size: 3.9rem !important; }

.font-40 { font-size: 4rem !important; }

.font-41 { font-size: 4.1rem !important; }

.font-42 { font-size: 4.2rem !important; }

.font-43 { font-size: 4.3rem !important; }

.font-44 { font-size: 4.4rem !important; }

.font-45 { font-size: 4.5rem !important; }

.font-46 { font-size: 4.6rem !important; }

.font-47 { font-size: 4.7rem !important; }

.font-48 { font-size: 4.8rem !important; }

.font-49 { font-size: 4.9rem !important; }

.font-50 { font-size: 5rem !important; }

.font-51 { font-size: 5.1rem !important; }

.font-52 { font-size: 5.2rem !important; }

.font-53 { font-size: 5.3rem !important; }

.font-54 { font-size: 5.4rem !important; }

.font-55 { font-size: 5.5rem !important; }

.font-56 { font-size: 5.6rem !important; }

.font-57 { font-size: 5.7rem !important; }

.font-58 { font-size: 5.8rem !important; }

.font-59 { font-size: 5.9rem !important; }

.font-60 { font-size: 6rem !important; }

.font-61 { font-size: 6.1rem !important; }

.font-62 { font-size: 6.2rem !important; }

.font-63 { font-size: 6.3rem !important; }

.font-64 { font-size: 6.4rem !important; }

.font-65 { font-size: 6.5rem !important; }

.font-66 { font-size: 6.6rem !important; }

.font-67 { font-size: 6.7rem !important; }

.font-68 { font-size: 6.8rem !important; }

.font-69 { font-size: 6.9rem !important; }

.font-70 { font-size: 7rem !important; }

.font-71 { font-size: 7.1rem !important; }

.font-72 { font-size: 7.2rem !important; }

.font-73 { font-size: 7.3rem !important; }

.font-74 { font-size: 7.4rem !important; }

.font-75 { font-size: 7.5rem !important; }

.font-76 { font-size: 7.6rem !important; }

.font-77 { font-size: 7.7rem !important; }

.font-78 { font-size: 7.8rem !important; }

.font-79 { font-size: 7.9rem !important; }

.font-80 { font-size: 8rem !important; }

.font-81 { font-size: 8.1rem !important; }

.font-82 { font-size: 8.2rem !important; }

.font-83 { font-size: 8.3rem !important; }

.font-84 { font-size: 8.4rem !important; }

.font-85 { font-size: 8.5rem !important; }

.font-86 { font-size: 8.6rem !important; }

.font-87 { font-size: 8.7rem !important; }

.font-88 { font-size: 8.8rem !important; }

.font-89 { font-size: 8.9rem !important; }

.font-90 { font-size: 9rem !important; }

.font-91 { font-size: 9.1rem !important; }

.font-92 { font-size: 9.2rem !important; }

.font-93 { font-size: 9.3rem !important; }

.font-94 { font-size: 9.4rem !important; }

.font-95 { font-size: 9.5rem !important; }

.font-96 { font-size: 9.6rem !important; }

.font-97 { font-size: 9.7rem !important; }

.font-98 { font-size: 9.8rem !important; }

.font-99 { font-size: 9.9rem !important; }

.font-100 { font-size: 10rem !important; }

@media (min-width: 991px) { .font-lg-10 { font-size: 1rem !important; }
  .font-lg-11 { font-size: 1.1rem !important; }
  .font-lg-12 { font-size: 1.2rem !important; }
  .font-lg-13 { font-size: 1.3rem !important; }
  .font-lg-14 { font-size: 1.4rem !important; }
  .font-lg-15 { font-size: 1.5rem !important; }
  .font-lg-16 { font-size: 1.6rem !important; }
  .font-lg-17 { font-size: 1.7rem !important; }
  .font-lg-18 { font-size: 1.8rem !important; }
  .font-lg-19 { font-size: 1.9rem !important; }
  .font-lg-20 { font-size: 2rem !important; }
  .font-lg-21 { font-size: 2.1rem !important; }
  .font-lg-22 { font-size: 2.2rem !important; }
  .font-lg-23 { font-size: 2.3rem !important; }
  .font-lg-24 { font-size: 2.4rem !important; }
  .font-lg-25 { font-size: 2.5rem !important; }
  .font-lg-26 { font-size: 2.6rem !important; }
  .font-lg-27 { font-size: 2.7rem !important; }
  .font-lg-28 { font-size: 2.8rem !important; }
  .font-lg-29 { font-size: 2.9rem !important; }
  .font-lg-30 { font-size: 3rem !important; }
  .font-lg-31 { font-size: 3.1rem !important; }
  .font-lg-32 { font-size: 3.2rem !important; }
  .font-lg-33 { font-size: 3.3rem !important; }
  .font-lg-34 { font-size: 3.4rem !important; }
  .font-lg-35 { font-size: 3.5rem !important; }
  .font-lg-36 { font-size: 3.6rem !important; }
  .font-lg-37 { font-size: 3.7rem !important; }
  .font-lg-38 { font-size: 3.8rem !important; }
  .font-lg-39 { font-size: 3.9rem !important; }
  .font-lg-40 { font-size: 4rem !important; }
  .font-lg-41 { font-size: 4.1rem !important; }
  .font-lg-42 { font-size: 4.2rem !important; }
  .font-lg-43 { font-size: 4.3rem !important; }
  .font-lg-44 { font-size: 4.4rem !important; }
  .font-lg-45 { font-size: 4.5rem !important; }
  .font-lg-46 { font-size: 4.6rem !important; }
  .font-lg-47 { font-size: 4.7rem !important; }
  .font-lg-48 { font-size: 4.8rem !important; }
  .font-lg-49 { font-size: 4.9rem !important; }
  .font-lg-50 { font-size: 5rem !important; }
  .font-lg-51 { font-size: 5.1rem !important; }
  .font-lg-52 { font-size: 5.2rem !important; }
  .font-lg-53 { font-size: 5.3rem !important; }
  .font-lg-54 { font-size: 5.4rem !important; }
  .font-lg-55 { font-size: 5.5rem !important; }
  .font-lg-56 { font-size: 5.6rem !important; }
  .font-lg-57 { font-size: 5.7rem !important; }
  .font-lg-58 { font-size: 5.8rem !important; }
  .font-lg-59 { font-size: 5.9rem !important; }
  .font-lg-60 { font-size: 6rem !important; }
  .font-lg-61 { font-size: 6.1rem !important; }
  .font-lg-62 { font-size: 6.2rem !important; }
  .font-lg-63 { font-size: 6.3rem !important; }
  .font-lg-64 { font-size: 6.4rem !important; }
  .font-lg-65 { font-size: 6.5rem !important; }
  .font-lg-66 { font-size: 6.6rem !important; }
  .font-lg-67 { font-size: 6.7rem !important; }
  .font-lg-68 { font-size: 6.8rem !important; }
  .font-lg-69 { font-size: 6.9rem !important; }
  .font-lg-70 { font-size: 7rem !important; }
  .font-lg-71 { font-size: 7.1rem !important; }
  .font-lg-72 { font-size: 7.2rem !important; }
  .font-lg-73 { font-size: 7.3rem !important; }
  .font-lg-74 { font-size: 7.4rem !important; }
  .font-lg-75 { font-size: 7.5rem !important; }
  .font-lg-76 { font-size: 7.6rem !important; }
  .font-lg-77 { font-size: 7.7rem !important; }
  .font-lg-78 { font-size: 7.8rem !important; }
  .font-lg-79 { font-size: 7.9rem !important; }
  .font-lg-80 { font-size: 8rem !important; }
  .font-lg-81 { font-size: 8.1rem !important; }
  .font-lg-82 { font-size: 8.2rem !important; }
  .font-lg-83 { font-size: 8.3rem !important; }
  .font-lg-84 { font-size: 8.4rem !important; }
  .font-lg-85 { font-size: 8.5rem !important; }
  .font-lg-86 { font-size: 8.6rem !important; }
  .font-lg-87 { font-size: 8.7rem !important; }
  .font-lg-88 { font-size: 8.8rem !important; }
  .font-lg-89 { font-size: 8.9rem !important; }
  .font-lg-90 { font-size: 9rem !important; }
  .font-lg-91 { font-size: 9.1rem !important; }
  .font-lg-92 { font-size: 9.2rem !important; }
  .font-lg-93 { font-size: 9.3rem !important; }
  .font-lg-94 { font-size: 9.4rem !important; }
  .font-lg-95 { font-size: 9.5rem !important; }
  .font-lg-96 { font-size: 9.6rem !important; }
  .font-lg-97 { font-size: 9.7rem !important; }
  .font-lg-98 { font-size: 9.8rem !important; }
  .font-lg-99 { font-size: 9.9rem !important; }
  .font-lg-100 { font-size: 10rem !important; } }

/* 親のボックスの幅を無視して100%表示 */
.full { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); }

@media (min-width: 991px) { .full-lg { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); } }

@media (max-width: 992px) { .full-maxlg { margin-left: calc(50% - 50vw); margin-right: calc(50% - 50vw); } }

/* ボーダーの設定 */
.border { border-style: solid; border-width: 1px; }

.border-dashed { border-style: dashed !important; }

.border-double { border-style: double !important; }

.border-dot { border-style: dot !important; }

@media (min-width: 991px) { .border-lg-dashed { border-style: dashed !important; }
  .border-lg-double { border-style: double !important; }
  .border-lg-dot { border-style: dot !important; } }

.border-1 { border-style: solid; border-width: 1px !important; }

.border-2 { border-style: solid; border-width: 2px !important; }

.border-3 { border-style: solid; border-width: 3px !important; }

.border-4 { border-style: solid; border-width: 4px !important; }

.border-5 { border-style: solid; border-width: 5px !important; }

.border-6 { border-style: solid; border-width: 6px !important; }

.border-7 { border-style: solid; border-width: 7px !important; }

.border-8 { border-style: solid; border-width: 8px !important; }

.border-9 { border-style: solid; border-width: 9px !important; }

.border-10 { border-style: solid; border-width: 10px !important; }

@media (min-width: 991px) { .border-lg-1 { border-width: 1px !important; }
  .border-lg-2 { border-width: 2px !important; }
  .border-lg-3 { border-width: 3px !important; }
  .border-lg-4 { border-width: 4px !important; }
  .border-lg-5 { border-width: 5px !important; }
  .border-lg-6 { border-width: 6px !important; }
  .border-lg-7 { border-width: 7px !important; }
  .border-lg-8 { border-width: 8px !important; }
  .border-lg-9 { border-width: 9px !important; }
  .border-lg-10 { border-width: 10px !important; } }

.border-radius-0 { border-radius: 0px !important; }

.border-radius-top-0 { border-radius: 0px 0px 0 0 !important; }

.border-radius-bottom-0 { border-radius: 0 0 0px 0px !important; }

.border-radius-left-0 { border-radius: 0px 0 0 0px !important; }

.border-radius-right-0 { border-radius: 0 0px 0px 0 !important; }

.border-radius-top-left-0 { border-radius: 0px 0 0 0 !important; }

.border-radius-top-right-0 { border-radius: 0 0px 0 0 !important; }

.border-radius-bottom-left-0 { border-radius: 0 0 0 0px !important; }

.border-radius-bottom-right-0 { border-radius: 0 0 0px 0 !important; }

.border-radius-1 { border-radius: 1px !important; }

.border-radius-top-1 { border-radius: 1px 1px 0 0 !important; }

.border-radius-bottom-1 { border-radius: 0 0 1px 1px !important; }

.border-radius-left-1 { border-radius: 1px 0 0 1px !important; }

.border-radius-right-1 { border-radius: 0 1px 1px 0 !important; }

.border-radius-top-left-1 { border-radius: 1px 0 0 0 !important; }

.border-radius-top-right-1 { border-radius: 0 1px 0 0 !important; }

.border-radius-bottom-left-1 { border-radius: 0 0 0 1px !important; }

.border-radius-bottom-right-1 { border-radius: 0 0 1px 0 !important; }

.border-radius-2 { border-radius: 2px !important; }

.border-radius-top-2 { border-radius: 2px 2px 0 0 !important; }

.border-radius-bottom-2 { border-radius: 0 0 2px 2px !important; }

.border-radius-left-2 { border-radius: 2px 0 0 2px !important; }

.border-radius-right-2 { border-radius: 0 2px 2px 0 !important; }

.border-radius-top-left-2 { border-radius: 2px 0 0 0 !important; }

.border-radius-top-right-2 { border-radius: 0 2px 0 0 !important; }

.border-radius-bottom-left-2 { border-radius: 0 0 0 2px !important; }

.border-radius-bottom-right-2 { border-radius: 0 0 2px 0 !important; }

.border-radius-3 { border-radius: 3px !important; }

.border-radius-top-3 { border-radius: 3px 3px 0 0 !important; }

.border-radius-bottom-3 { border-radius: 0 0 3px 3px !important; }

.border-radius-left-3 { border-radius: 3px 0 0 3px !important; }

.border-radius-right-3 { border-radius: 0 3px 3px 0 !important; }

.border-radius-top-left-3 { border-radius: 3px 0 0 0 !important; }

.border-radius-top-right-3 { border-radius: 0 3px 0 0 !important; }

.border-radius-bottom-left-3 { border-radius: 0 0 0 3px !important; }

.border-radius-bottom-right-3 { border-radius: 0 0 3px 0 !important; }

.border-radius-4 { border-radius: 4px !important; }

.border-radius-top-4 { border-radius: 4px 4px 0 0 !important; }

.border-radius-bottom-4 { border-radius: 0 0 4px 4px !important; }

.border-radius-left-4 { border-radius: 4px 0 0 4px !important; }

.border-radius-right-4 { border-radius: 0 4px 4px 0 !important; }

.border-radius-top-left-4 { border-radius: 4px 0 0 0 !important; }

.border-radius-top-right-4 { border-radius: 0 4px 0 0 !important; }

.border-radius-bottom-left-4 { border-radius: 0 0 0 4px !important; }

.border-radius-bottom-right-4 { border-radius: 0 0 4px 0 !important; }

.border-radius-5 { border-radius: 5px !important; }

.border-radius-top-5 { border-radius: 5px 5px 0 0 !important; }

.border-radius-bottom-5 { border-radius: 0 0 5px 5px !important; }

.border-radius-left-5 { border-radius: 5px 0 0 5px !important; }

.border-radius-right-5 { border-radius: 0 5px 5px 0 !important; }

.border-radius-top-left-5 { border-radius: 5px 0 0 0 !important; }

.border-radius-top-right-5 { border-radius: 0 5px 0 0 !important; }

.border-radius-bottom-left-5 { border-radius: 0 0 0 5px !important; }

.border-radius-bottom-right-5 { border-radius: 0 0 5px 0 !important; }

.border-radius-6 { border-radius: 6px !important; }

.border-radius-top-6 { border-radius: 6px 6px 0 0 !important; }

.border-radius-bottom-6 { border-radius: 0 0 6px 6px !important; }

.border-radius-left-6 { border-radius: 6px 0 0 6px !important; }

.border-radius-right-6 { border-radius: 0 6px 6px 0 !important; }

.border-radius-top-left-6 { border-radius: 6px 0 0 0 !important; }

.border-radius-top-right-6 { border-radius: 0 6px 0 0 !important; }

.border-radius-bottom-left-6 { border-radius: 0 0 0 6px !important; }

.border-radius-bottom-right-6 { border-radius: 0 0 6px 0 !important; }

.border-radius-7 { border-radius: 7px !important; }

.border-radius-top-7 { border-radius: 7px 7px 0 0 !important; }

.border-radius-bottom-7 { border-radius: 0 0 7px 7px !important; }

.border-radius-left-7 { border-radius: 7px 0 0 7px !important; }

.border-radius-right-7 { border-radius: 0 7px 7px 0 !important; }

.border-radius-top-left-7 { border-radius: 7px 0 0 0 !important; }

.border-radius-top-right-7 { border-radius: 0 7px 0 0 !important; }

.border-radius-bottom-left-7 { border-radius: 0 0 0 7px !important; }

.border-radius-bottom-right-7 { border-radius: 0 0 7px 0 !important; }

.border-radius-8 { border-radius: 8px !important; }

.border-radius-top-8 { border-radius: 8px 8px 0 0 !important; }

.border-radius-bottom-8 { border-radius: 0 0 8px 8px !important; }

.border-radius-left-8 { border-radius: 8px 0 0 8px !important; }

.border-radius-right-8 { border-radius: 0 8px 8px 0 !important; }

.border-radius-top-left-8 { border-radius: 8px 0 0 0 !important; }

.border-radius-top-right-8 { border-radius: 0 8px 0 0 !important; }

.border-radius-bottom-left-8 { border-radius: 0 0 0 8px !important; }

.border-radius-bottom-right-8 { border-radius: 0 0 8px 0 !important; }

.border-radius-9 { border-radius: 9px !important; }

.border-radius-top-9 { border-radius: 9px 9px 0 0 !important; }

.border-radius-bottom-9 { border-radius: 0 0 9px 9px !important; }

.border-radius-left-9 { border-radius: 9px 0 0 9px !important; }

.border-radius-right-9 { border-radius: 0 9px 9px 0 !important; }

.border-radius-top-left-9 { border-radius: 9px 0 0 0 !important; }

.border-radius-top-right-9 { border-radius: 0 9px 0 0 !important; }

.border-radius-bottom-left-9 { border-radius: 0 0 0 9px !important; }

.border-radius-bottom-right-9 { border-radius: 0 0 9px 0 !important; }

.border-radius-10 { border-radius: 10px !important; }

.border-radius-top-10 { border-radius: 10px 10px 0 0 !important; }

.border-radius-bottom-10 { border-radius: 0 0 10px 10px !important; }

.border-radius-left-10 { border-radius: 10px 0 0 10px !important; }

.border-radius-right-10 { border-radius: 0 10px 10px 0 !important; }

.border-radius-top-left-10 { border-radius: 10px 0 0 0 !important; }

.border-radius-top-right-10 { border-radius: 0 10px 0 0 !important; }

.border-radius-bottom-left-10 { border-radius: 0 0 0 10px !important; }

.border-radius-bottom-right-10 { border-radius: 0 0 10px 0 !important; }

.border-radius-11 { border-radius: 11px !important; }

.border-radius-top-11 { border-radius: 11px 11px 0 0 !important; }

.border-radius-bottom-11 { border-radius: 0 0 11px 11px !important; }

.border-radius-left-11 { border-radius: 11px 0 0 11px !important; }

.border-radius-right-11 { border-radius: 0 11px 11px 0 !important; }

.border-radius-top-left-11 { border-radius: 11px 0 0 0 !important; }

.border-radius-top-right-11 { border-radius: 0 11px 0 0 !important; }

.border-radius-bottom-left-11 { border-radius: 0 0 0 11px !important; }

.border-radius-bottom-right-11 { border-radius: 0 0 11px 0 !important; }

.border-radius-12 { border-radius: 12px !important; }

.border-radius-top-12 { border-radius: 12px 12px 0 0 !important; }

.border-radius-bottom-12 { border-radius: 0 0 12px 12px !important; }

.border-radius-left-12 { border-radius: 12px 0 0 12px !important; }

.border-radius-right-12 { border-radius: 0 12px 12px 0 !important; }

.border-radius-top-left-12 { border-radius: 12px 0 0 0 !important; }

.border-radius-top-right-12 { border-radius: 0 12px 0 0 !important; }

.border-radius-bottom-left-12 { border-radius: 0 0 0 12px !important; }

.border-radius-bottom-right-12 { border-radius: 0 0 12px 0 !important; }

.border-radius-13 { border-radius: 13px !important; }

.border-radius-top-13 { border-radius: 13px 13px 0 0 !important; }

.border-radius-bottom-13 { border-radius: 0 0 13px 13px !important; }

.border-radius-left-13 { border-radius: 13px 0 0 13px !important; }

.border-radius-right-13 { border-radius: 0 13px 13px 0 !important; }

.border-radius-top-left-13 { border-radius: 13px 0 0 0 !important; }

.border-radius-top-right-13 { border-radius: 0 13px 0 0 !important; }

.border-radius-bottom-left-13 { border-radius: 0 0 0 13px !important; }

.border-radius-bottom-right-13 { border-radius: 0 0 13px 0 !important; }

.border-radius-14 { border-radius: 14px !important; }

.border-radius-top-14 { border-radius: 14px 14px 0 0 !important; }

.border-radius-bottom-14 { border-radius: 0 0 14px 14px !important; }

.border-radius-left-14 { border-radius: 14px 0 0 14px !important; }

.border-radius-right-14 { border-radius: 0 14px 14px 0 !important; }

.border-radius-top-left-14 { border-radius: 14px 0 0 0 !important; }

.border-radius-top-right-14 { border-radius: 0 14px 0 0 !important; }

.border-radius-bottom-left-14 { border-radius: 0 0 0 14px !important; }

.border-radius-bottom-right-14 { border-radius: 0 0 14px 0 !important; }

.border-radius-15 { border-radius: 15px !important; }

.border-radius-top-15 { border-radius: 15px 15px 0 0 !important; }

.border-radius-bottom-15 { border-radius: 0 0 15px 15px !important; }

.border-radius-left-15 { border-radius: 15px 0 0 15px !important; }

.border-radius-right-15 { border-radius: 0 15px 15px 0 !important; }

.border-radius-top-left-15 { border-radius: 15px 0 0 0 !important; }

.border-radius-top-right-15 { border-radius: 0 15px 0 0 !important; }

.border-radius-bottom-left-15 { border-radius: 0 0 0 15px !important; }

.border-radius-bottom-right-15 { border-radius: 0 0 15px 0 !important; }

.border-radius-16 { border-radius: 16px !important; }

.border-radius-top-16 { border-radius: 16px 16px 0 0 !important; }

.border-radius-bottom-16 { border-radius: 0 0 16px 16px !important; }

.border-radius-left-16 { border-radius: 16px 0 0 16px !important; }

.border-radius-right-16 { border-radius: 0 16px 16px 0 !important; }

.border-radius-top-left-16 { border-radius: 16px 0 0 0 !important; }

.border-radius-top-right-16 { border-radius: 0 16px 0 0 !important; }

.border-radius-bottom-left-16 { border-radius: 0 0 0 16px !important; }

.border-radius-bottom-right-16 { border-radius: 0 0 16px 0 !important; }

.border-radius-17 { border-radius: 17px !important; }

.border-radius-top-17 { border-radius: 17px 17px 0 0 !important; }

.border-radius-bottom-17 { border-radius: 0 0 17px 17px !important; }

.border-radius-left-17 { border-radius: 17px 0 0 17px !important; }

.border-radius-right-17 { border-radius: 0 17px 17px 0 !important; }

.border-radius-top-left-17 { border-radius: 17px 0 0 0 !important; }

.border-radius-top-right-17 { border-radius: 0 17px 0 0 !important; }

.border-radius-bottom-left-17 { border-radius: 0 0 0 17px !important; }

.border-radius-bottom-right-17 { border-radius: 0 0 17px 0 !important; }

.border-radius-18 { border-radius: 18px !important; }

.border-radius-top-18 { border-radius: 18px 18px 0 0 !important; }

.border-radius-bottom-18 { border-radius: 0 0 18px 18px !important; }

.border-radius-left-18 { border-radius: 18px 0 0 18px !important; }

.border-radius-right-18 { border-radius: 0 18px 18px 0 !important; }

.border-radius-top-left-18 { border-radius: 18px 0 0 0 !important; }

.border-radius-top-right-18 { border-radius: 0 18px 0 0 !important; }

.border-radius-bottom-left-18 { border-radius: 0 0 0 18px !important; }

.border-radius-bottom-right-18 { border-radius: 0 0 18px 0 !important; }

.border-radius-19 { border-radius: 19px !important; }

.border-radius-top-19 { border-radius: 19px 19px 0 0 !important; }

.border-radius-bottom-19 { border-radius: 0 0 19px 19px !important; }

.border-radius-left-19 { border-radius: 19px 0 0 19px !important; }

.border-radius-right-19 { border-radius: 0 19px 19px 0 !important; }

.border-radius-top-left-19 { border-radius: 19px 0 0 0 !important; }

.border-radius-top-right-19 { border-radius: 0 19px 0 0 !important; }

.border-radius-bottom-left-19 { border-radius: 0 0 0 19px !important; }

.border-radius-bottom-right-19 { border-radius: 0 0 19px 0 !important; }

.border-radius-20 { border-radius: 20px !important; }

.border-radius-top-20 { border-radius: 20px 20px 0 0 !important; }

.border-radius-bottom-20 { border-radius: 0 0 20px 20px !important; }

.border-radius-left-20 { border-radius: 20px 0 0 20px !important; }

.border-radius-right-20 { border-radius: 0 20px 20px 0 !important; }

.border-radius-top-left-20 { border-radius: 20px 0 0 0 !important; }

.border-radius-top-right-20 { border-radius: 0 20px 0 0 !important; }

.border-radius-bottom-left-20 { border-radius: 0 0 0 20px !important; }

.border-radius-bottom-right-20 { border-radius: 0 0 20px 0 !important; }

.border-radius-21 { border-radius: 21px !important; }

.border-radius-top-21 { border-radius: 21px 21px 0 0 !important; }

.border-radius-bottom-21 { border-radius: 0 0 21px 21px !important; }

.border-radius-left-21 { border-radius: 21px 0 0 21px !important; }

.border-radius-right-21 { border-radius: 0 21px 21px 0 !important; }

.border-radius-top-left-21 { border-radius: 21px 0 0 0 !important; }

.border-radius-top-right-21 { border-radius: 0 21px 0 0 !important; }

.border-radius-bottom-left-21 { border-radius: 0 0 0 21px !important; }

.border-radius-bottom-right-21 { border-radius: 0 0 21px 0 !important; }

.border-radius-22 { border-radius: 22px !important; }

.border-radius-top-22 { border-radius: 22px 22px 0 0 !important; }

.border-radius-bottom-22 { border-radius: 0 0 22px 22px !important; }

.border-radius-left-22 { border-radius: 22px 0 0 22px !important; }

.border-radius-right-22 { border-radius: 0 22px 22px 0 !important; }

.border-radius-top-left-22 { border-radius: 22px 0 0 0 !important; }

.border-radius-top-right-22 { border-radius: 0 22px 0 0 !important; }

.border-radius-bottom-left-22 { border-radius: 0 0 0 22px !important; }

.border-radius-bottom-right-22 { border-radius: 0 0 22px 0 !important; }

.border-radius-23 { border-radius: 23px !important; }

.border-radius-top-23 { border-radius: 23px 23px 0 0 !important; }

.border-radius-bottom-23 { border-radius: 0 0 23px 23px !important; }

.border-radius-left-23 { border-radius: 23px 0 0 23px !important; }

.border-radius-right-23 { border-radius: 0 23px 23px 0 !important; }

.border-radius-top-left-23 { border-radius: 23px 0 0 0 !important; }

.border-radius-top-right-23 { border-radius: 0 23px 0 0 !important; }

.border-radius-bottom-left-23 { border-radius: 0 0 0 23px !important; }

.border-radius-bottom-right-23 { border-radius: 0 0 23px 0 !important; }

.border-radius-24 { border-radius: 24px !important; }

.border-radius-top-24 { border-radius: 24px 24px 0 0 !important; }

.border-radius-bottom-24 { border-radius: 0 0 24px 24px !important; }

.border-radius-left-24 { border-radius: 24px 0 0 24px !important; }

.border-radius-right-24 { border-radius: 0 24px 24px 0 !important; }

.border-radius-top-left-24 { border-radius: 24px 0 0 0 !important; }

.border-radius-top-right-24 { border-radius: 0 24px 0 0 !important; }

.border-radius-bottom-left-24 { border-radius: 0 0 0 24px !important; }

.border-radius-bottom-right-24 { border-radius: 0 0 24px 0 !important; }

.border-radius-25 { border-radius: 25px !important; }

.border-radius-top-25 { border-radius: 25px 25px 0 0 !important; }

.border-radius-bottom-25 { border-radius: 0 0 25px 25px !important; }

.border-radius-left-25 { border-radius: 25px 0 0 25px !important; }

.border-radius-right-25 { border-radius: 0 25px 25px 0 !important; }

.border-radius-top-left-25 { border-radius: 25px 0 0 0 !important; }

.border-radius-top-right-25 { border-radius: 0 25px 0 0 !important; }

.border-radius-bottom-left-25 { border-radius: 0 0 0 25px !important; }

.border-radius-bottom-right-25 { border-radius: 0 0 25px 0 !important; }

.border-radius-26 { border-radius: 26px !important; }

.border-radius-top-26 { border-radius: 26px 26px 0 0 !important; }

.border-radius-bottom-26 { border-radius: 0 0 26px 26px !important; }

.border-radius-left-26 { border-radius: 26px 0 0 26px !important; }

.border-radius-right-26 { border-radius: 0 26px 26px 0 !important; }

.border-radius-top-left-26 { border-radius: 26px 0 0 0 !important; }

.border-radius-top-right-26 { border-radius: 0 26px 0 0 !important; }

.border-radius-bottom-left-26 { border-radius: 0 0 0 26px !important; }

.border-radius-bottom-right-26 { border-radius: 0 0 26px 0 !important; }

.border-radius-27 { border-radius: 27px !important; }

.border-radius-top-27 { border-radius: 27px 27px 0 0 !important; }

.border-radius-bottom-27 { border-radius: 0 0 27px 27px !important; }

.border-radius-left-27 { border-radius: 27px 0 0 27px !important; }

.border-radius-right-27 { border-radius: 0 27px 27px 0 !important; }

.border-radius-top-left-27 { border-radius: 27px 0 0 0 !important; }

.border-radius-top-right-27 { border-radius: 0 27px 0 0 !important; }

.border-radius-bottom-left-27 { border-radius: 0 0 0 27px !important; }

.border-radius-bottom-right-27 { border-radius: 0 0 27px 0 !important; }

.border-radius-28 { border-radius: 28px !important; }

.border-radius-top-28 { border-radius: 28px 28px 0 0 !important; }

.border-radius-bottom-28 { border-radius: 0 0 28px 28px !important; }

.border-radius-left-28 { border-radius: 28px 0 0 28px !important; }

.border-radius-right-28 { border-radius: 0 28px 28px 0 !important; }

.border-radius-top-left-28 { border-radius: 28px 0 0 0 !important; }

.border-radius-top-right-28 { border-radius: 0 28px 0 0 !important; }

.border-radius-bottom-left-28 { border-radius: 0 0 0 28px !important; }

.border-radius-bottom-right-28 { border-radius: 0 0 28px 0 !important; }

.border-radius-29 { border-radius: 29px !important; }

.border-radius-top-29 { border-radius: 29px 29px 0 0 !important; }

.border-radius-bottom-29 { border-radius: 0 0 29px 29px !important; }

.border-radius-left-29 { border-radius: 29px 0 0 29px !important; }

.border-radius-right-29 { border-radius: 0 29px 29px 0 !important; }

.border-radius-top-left-29 { border-radius: 29px 0 0 0 !important; }

.border-radius-top-right-29 { border-radius: 0 29px 0 0 !important; }

.border-radius-bottom-left-29 { border-radius: 0 0 0 29px !important; }

.border-radius-bottom-right-29 { border-radius: 0 0 29px 0 !important; }

.border-radius-30 { border-radius: 30px !important; }

.border-radius-top-30 { border-radius: 30px 30px 0 0 !important; }

.border-radius-bottom-30 { border-radius: 0 0 30px 30px !important; }

.border-radius-left-30 { border-radius: 30px 0 0 30px !important; }

.border-radius-right-30 { border-radius: 0 30px 30px 0 !important; }

.border-radius-top-left-30 { border-radius: 30px 0 0 0 !important; }

.border-radius-top-right-30 { border-radius: 0 30px 0 0 !important; }

.border-radius-bottom-left-30 { border-radius: 0 0 0 30px !important; }

.border-radius-bottom-right-30 { border-radius: 0 0 30px 0 !important; }

.border-radius-31 { border-radius: 31px !important; }

.border-radius-top-31 { border-radius: 31px 31px 0 0 !important; }

.border-radius-bottom-31 { border-radius: 0 0 31px 31px !important; }

.border-radius-left-31 { border-radius: 31px 0 0 31px !important; }

.border-radius-right-31 { border-radius: 0 31px 31px 0 !important; }

.border-radius-top-left-31 { border-radius: 31px 0 0 0 !important; }

.border-radius-top-right-31 { border-radius: 0 31px 0 0 !important; }

.border-radius-bottom-left-31 { border-radius: 0 0 0 31px !important; }

.border-radius-bottom-right-31 { border-radius: 0 0 31px 0 !important; }

.border-radius-32 { border-radius: 32px !important; }

.border-radius-top-32 { border-radius: 32px 32px 0 0 !important; }

.border-radius-bottom-32 { border-radius: 0 0 32px 32px !important; }

.border-radius-left-32 { border-radius: 32px 0 0 32px !important; }

.border-radius-right-32 { border-radius: 0 32px 32px 0 !important; }

.border-radius-top-left-32 { border-radius: 32px 0 0 0 !important; }

.border-radius-top-right-32 { border-radius: 0 32px 0 0 !important; }

.border-radius-bottom-left-32 { border-radius: 0 0 0 32px !important; }

.border-radius-bottom-right-32 { border-radius: 0 0 32px 0 !important; }

.border-radius-33 { border-radius: 33px !important; }

.border-radius-top-33 { border-radius: 33px 33px 0 0 !important; }

.border-radius-bottom-33 { border-radius: 0 0 33px 33px !important; }

.border-radius-left-33 { border-radius: 33px 0 0 33px !important; }

.border-radius-right-33 { border-radius: 0 33px 33px 0 !important; }

.border-radius-top-left-33 { border-radius: 33px 0 0 0 !important; }

.border-radius-top-right-33 { border-radius: 0 33px 0 0 !important; }

.border-radius-bottom-left-33 { border-radius: 0 0 0 33px !important; }

.border-radius-bottom-right-33 { border-radius: 0 0 33px 0 !important; }

.border-radius-34 { border-radius: 34px !important; }

.border-radius-top-34 { border-radius: 34px 34px 0 0 !important; }

.border-radius-bottom-34 { border-radius: 0 0 34px 34px !important; }

.border-radius-left-34 { border-radius: 34px 0 0 34px !important; }

.border-radius-right-34 { border-radius: 0 34px 34px 0 !important; }

.border-radius-top-left-34 { border-radius: 34px 0 0 0 !important; }

.border-radius-top-right-34 { border-radius: 0 34px 0 0 !important; }

.border-radius-bottom-left-34 { border-radius: 0 0 0 34px !important; }

.border-radius-bottom-right-34 { border-radius: 0 0 34px 0 !important; }

.border-radius-35 { border-radius: 35px !important; }

.border-radius-top-35 { border-radius: 35px 35px 0 0 !important; }

.border-radius-bottom-35 { border-radius: 0 0 35px 35px !important; }

.border-radius-left-35 { border-radius: 35px 0 0 35px !important; }

.border-radius-right-35 { border-radius: 0 35px 35px 0 !important; }

.border-radius-top-left-35 { border-radius: 35px 0 0 0 !important; }

.border-radius-top-right-35 { border-radius: 0 35px 0 0 !important; }

.border-radius-bottom-left-35 { border-radius: 0 0 0 35px !important; }

.border-radius-bottom-right-35 { border-radius: 0 0 35px 0 !important; }

.border-radius-36 { border-radius: 36px !important; }

.border-radius-top-36 { border-radius: 36px 36px 0 0 !important; }

.border-radius-bottom-36 { border-radius: 0 0 36px 36px !important; }

.border-radius-left-36 { border-radius: 36px 0 0 36px !important; }

.border-radius-right-36 { border-radius: 0 36px 36px 0 !important; }

.border-radius-top-left-36 { border-radius: 36px 0 0 0 !important; }

.border-radius-top-right-36 { border-radius: 0 36px 0 0 !important; }

.border-radius-bottom-left-36 { border-radius: 0 0 0 36px !important; }

.border-radius-bottom-right-36 { border-radius: 0 0 36px 0 !important; }

.border-radius-37 { border-radius: 37px !important; }

.border-radius-top-37 { border-radius: 37px 37px 0 0 !important; }

.border-radius-bottom-37 { border-radius: 0 0 37px 37px !important; }

.border-radius-left-37 { border-radius: 37px 0 0 37px !important; }

.border-radius-right-37 { border-radius: 0 37px 37px 0 !important; }

.border-radius-top-left-37 { border-radius: 37px 0 0 0 !important; }

.border-radius-top-right-37 { border-radius: 0 37px 0 0 !important; }

.border-radius-bottom-left-37 { border-radius: 0 0 0 37px !important; }

.border-radius-bottom-right-37 { border-radius: 0 0 37px 0 !important; }

.border-radius-38 { border-radius: 38px !important; }

.border-radius-top-38 { border-radius: 38px 38px 0 0 !important; }

.border-radius-bottom-38 { border-radius: 0 0 38px 38px !important; }

.border-radius-left-38 { border-radius: 38px 0 0 38px !important; }

.border-radius-right-38 { border-radius: 0 38px 38px 0 !important; }

.border-radius-top-left-38 { border-radius: 38px 0 0 0 !important; }

.border-radius-top-right-38 { border-radius: 0 38px 0 0 !important; }

.border-radius-bottom-left-38 { border-radius: 0 0 0 38px !important; }

.border-radius-bottom-right-38 { border-radius: 0 0 38px 0 !important; }

.border-radius-39 { border-radius: 39px !important; }

.border-radius-top-39 { border-radius: 39px 39px 0 0 !important; }

.border-radius-bottom-39 { border-radius: 0 0 39px 39px !important; }

.border-radius-left-39 { border-radius: 39px 0 0 39px !important; }

.border-radius-right-39 { border-radius: 0 39px 39px 0 !important; }

.border-radius-top-left-39 { border-radius: 39px 0 0 0 !important; }

.border-radius-top-right-39 { border-radius: 0 39px 0 0 !important; }

.border-radius-bottom-left-39 { border-radius: 0 0 0 39px !important; }

.border-radius-bottom-right-39 { border-radius: 0 0 39px 0 !important; }

.border-radius-40 { border-radius: 40px !important; }

.border-radius-top-40 { border-radius: 40px 40px 0 0 !important; }

.border-radius-bottom-40 { border-radius: 0 0 40px 40px !important; }

.border-radius-left-40 { border-radius: 40px 0 0 40px !important; }

.border-radius-right-40 { border-radius: 0 40px 40px 0 !important; }

.border-radius-top-left-40 { border-radius: 40px 0 0 0 !important; }

.border-radius-top-right-40 { border-radius: 0 40px 0 0 !important; }

.border-radius-bottom-left-40 { border-radius: 0 0 0 40px !important; }

.border-radius-bottom-right-40 { border-radius: 0 0 40px 0 !important; }

.border-radius-41 { border-radius: 41px !important; }

.border-radius-top-41 { border-radius: 41px 41px 0 0 !important; }

.border-radius-bottom-41 { border-radius: 0 0 41px 41px !important; }

.border-radius-left-41 { border-radius: 41px 0 0 41px !important; }

.border-radius-right-41 { border-radius: 0 41px 41px 0 !important; }

.border-radius-top-left-41 { border-radius: 41px 0 0 0 !important; }

.border-radius-top-right-41 { border-radius: 0 41px 0 0 !important; }

.border-radius-bottom-left-41 { border-radius: 0 0 0 41px !important; }

.border-radius-bottom-right-41 { border-radius: 0 0 41px 0 !important; }

.border-radius-42 { border-radius: 42px !important; }

.border-radius-top-42 { border-radius: 42px 42px 0 0 !important; }

.border-radius-bottom-42 { border-radius: 0 0 42px 42px !important; }

.border-radius-left-42 { border-radius: 42px 0 0 42px !important; }

.border-radius-right-42 { border-radius: 0 42px 42px 0 !important; }

.border-radius-top-left-42 { border-radius: 42px 0 0 0 !important; }

.border-radius-top-right-42 { border-radius: 0 42px 0 0 !important; }

.border-radius-bottom-left-42 { border-radius: 0 0 0 42px !important; }

.border-radius-bottom-right-42 { border-radius: 0 0 42px 0 !important; }

.border-radius-43 { border-radius: 43px !important; }

.border-radius-top-43 { border-radius: 43px 43px 0 0 !important; }

.border-radius-bottom-43 { border-radius: 0 0 43px 43px !important; }

.border-radius-left-43 { border-radius: 43px 0 0 43px !important; }

.border-radius-right-43 { border-radius: 0 43px 43px 0 !important; }

.border-radius-top-left-43 { border-radius: 43px 0 0 0 !important; }

.border-radius-top-right-43 { border-radius: 0 43px 0 0 !important; }

.border-radius-bottom-left-43 { border-radius: 0 0 0 43px !important; }

.border-radius-bottom-right-43 { border-radius: 0 0 43px 0 !important; }

.border-radius-44 { border-radius: 44px !important; }

.border-radius-top-44 { border-radius: 44px 44px 0 0 !important; }

.border-radius-bottom-44 { border-radius: 0 0 44px 44px !important; }

.border-radius-left-44 { border-radius: 44px 0 0 44px !important; }

.border-radius-right-44 { border-radius: 0 44px 44px 0 !important; }

.border-radius-top-left-44 { border-radius: 44px 0 0 0 !important; }

.border-radius-top-right-44 { border-radius: 0 44px 0 0 !important; }

.border-radius-bottom-left-44 { border-radius: 0 0 0 44px !important; }

.border-radius-bottom-right-44 { border-radius: 0 0 44px 0 !important; }

.border-radius-45 { border-radius: 45px !important; }

.border-radius-top-45 { border-radius: 45px 45px 0 0 !important; }

.border-radius-bottom-45 { border-radius: 0 0 45px 45px !important; }

.border-radius-left-45 { border-radius: 45px 0 0 45px !important; }

.border-radius-right-45 { border-radius: 0 45px 45px 0 !important; }

.border-radius-top-left-45 { border-radius: 45px 0 0 0 !important; }

.border-radius-top-right-45 { border-radius: 0 45px 0 0 !important; }

.border-radius-bottom-left-45 { border-radius: 0 0 0 45px !important; }

.border-radius-bottom-right-45 { border-radius: 0 0 45px 0 !important; }

.border-radius-46 { border-radius: 46px !important; }

.border-radius-top-46 { border-radius: 46px 46px 0 0 !important; }

.border-radius-bottom-46 { border-radius: 0 0 46px 46px !important; }

.border-radius-left-46 { border-radius: 46px 0 0 46px !important; }

.border-radius-right-46 { border-radius: 0 46px 46px 0 !important; }

.border-radius-top-left-46 { border-radius: 46px 0 0 0 !important; }

.border-radius-top-right-46 { border-radius: 0 46px 0 0 !important; }

.border-radius-bottom-left-46 { border-radius: 0 0 0 46px !important; }

.border-radius-bottom-right-46 { border-radius: 0 0 46px 0 !important; }

.border-radius-47 { border-radius: 47px !important; }

.border-radius-top-47 { border-radius: 47px 47px 0 0 !important; }

.border-radius-bottom-47 { border-radius: 0 0 47px 47px !important; }

.border-radius-left-47 { border-radius: 47px 0 0 47px !important; }

.border-radius-right-47 { border-radius: 0 47px 47px 0 !important; }

.border-radius-top-left-47 { border-radius: 47px 0 0 0 !important; }

.border-radius-top-right-47 { border-radius: 0 47px 0 0 !important; }

.border-radius-bottom-left-47 { border-radius: 0 0 0 47px !important; }

.border-radius-bottom-right-47 { border-radius: 0 0 47px 0 !important; }

.border-radius-48 { border-radius: 48px !important; }

.border-radius-top-48 { border-radius: 48px 48px 0 0 !important; }

.border-radius-bottom-48 { border-radius: 0 0 48px 48px !important; }

.border-radius-left-48 { border-radius: 48px 0 0 48px !important; }

.border-radius-right-48 { border-radius: 0 48px 48px 0 !important; }

.border-radius-top-left-48 { border-radius: 48px 0 0 0 !important; }

.border-radius-top-right-48 { border-radius: 0 48px 0 0 !important; }

.border-radius-bottom-left-48 { border-radius: 0 0 0 48px !important; }

.border-radius-bottom-right-48 { border-radius: 0 0 48px 0 !important; }

.border-radius-49 { border-radius: 49px !important; }

.border-radius-top-49 { border-radius: 49px 49px 0 0 !important; }

.border-radius-bottom-49 { border-radius: 0 0 49px 49px !important; }

.border-radius-left-49 { border-radius: 49px 0 0 49px !important; }

.border-radius-right-49 { border-radius: 0 49px 49px 0 !important; }

.border-radius-top-left-49 { border-radius: 49px 0 0 0 !important; }

.border-radius-top-right-49 { border-radius: 0 49px 0 0 !important; }

.border-radius-bottom-left-49 { border-radius: 0 0 0 49px !important; }

.border-radius-bottom-right-49 { border-radius: 0 0 49px 0 !important; }

.border-radius-50 { border-radius: 50px !important; }

.border-radius-top-50 { border-radius: 50px 50px 0 0 !important; }

.border-radius-bottom-50 { border-radius: 0 0 50px 50px !important; }

.border-radius-left-50 { border-radius: 50px 0 0 50px !important; }

.border-radius-right-50 { border-radius: 0 50px 50px 0 !important; }

.border-radius-top-left-50 { border-radius: 50px 0 0 0 !important; }

.border-radius-top-right-50 { border-radius: 0 50px 0 0 !important; }

.border-radius-bottom-left-50 { border-radius: 0 0 0 50px !important; }

.border-radius-bottom-right-50 { border-radius: 0 0 50px 0 !important; }

.border-radius-per-10 { border-radius: 10% !important; }

.border-radius-per-20 { border-radius: 20% !important; }

.border-radius-per-30 { border-radius: 30% !important; }

.border-radius-per-40 { border-radius: 40% !important; }

.border-radius-per-50 { border-radius: 50% !important; }

.border-radius-per-60 { border-radius: 60% !important; }

.border-radius-per-70 { border-radius: 70% !important; }

.border-radius-per-80 { border-radius: 80% !important; }

.border-radius-per-90 { border-radius: 90% !important; }

.border-radius-per-100 { border-radius: 100% !important; }

@media (min-width: 991px) { .border-radius-lg-0 { border-radius: 0px !important; }
  .border-radius-lg-top-0 { border-radius: 0px 0px 0 0 !important; }
  .border-radius-lg-bottom-0 { border-radius: 0 0 0px 0px !important; }
  .border-radius-lg-left-0 { border-radius: 0px 0 0 0px !important; }
  .border-radius-lg-right-0 { border-radius: 0 0px 0px 0 !important; }
  .border-radius-lg-1 { border-radius: 1px !important; }
  .border-radius-lg-top-1 { border-radius: 1px 1px 0 0 !important; }
  .border-radius-lg-bottom-1 { border-radius: 0 0 1px 1px !important; }
  .border-radius-lg-left-1 { border-radius: 1px 0 0 1px !important; }
  .border-radius-lg-right-1 { border-radius: 0 1px 1px 0 !important; }
  .border-radius-lg-2 { border-radius: 2px !important; }
  .border-radius-lg-top-2 { border-radius: 2px 2px 0 0 !important; }
  .border-radius-lg-bottom-2 { border-radius: 0 0 2px 2px !important; }
  .border-radius-lg-left-2 { border-radius: 2px 0 0 2px !important; }
  .border-radius-lg-right-2 { border-radius: 0 2px 2px 0 !important; }
  .border-radius-lg-3 { border-radius: 3px !important; }
  .border-radius-lg-top-3 { border-radius: 3px 3px 0 0 !important; }
  .border-radius-lg-bottom-3 { border-radius: 0 0 3px 3px !important; }
  .border-radius-lg-left-3 { border-radius: 3px 0 0 3px !important; }
  .border-radius-lg-right-3 { border-radius: 0 3px 3px 0 !important; }
  .border-radius-lg-4 { border-radius: 4px !important; }
  .border-radius-lg-top-4 { border-radius: 4px 4px 0 0 !important; }
  .border-radius-lg-bottom-4 { border-radius: 0 0 4px 4px !important; }
  .border-radius-lg-left-4 { border-radius: 4px 0 0 4px !important; }
  .border-radius-lg-right-4 { border-radius: 0 4px 4px 0 !important; }
  .border-radius-lg-5 { border-radius: 5px !important; }
  .border-radius-lg-top-5 { border-radius: 5px 5px 0 0 !important; }
  .border-radius-lg-bottom-5 { border-radius: 0 0 5px 5px !important; }
  .border-radius-lg-left-5 { border-radius: 5px 0 0 5px !important; }
  .border-radius-lg-right-5 { border-radius: 0 5px 5px 0 !important; }
  .border-radius-lg-6 { border-radius: 6px !important; }
  .border-radius-lg-top-6 { border-radius: 6px 6px 0 0 !important; }
  .border-radius-lg-bottom-6 { border-radius: 0 0 6px 6px !important; }
  .border-radius-lg-left-6 { border-radius: 6px 0 0 6px !important; }
  .border-radius-lg-right-6 { border-radius: 0 6px 6px 0 !important; }
  .border-radius-lg-7 { border-radius: 7px !important; }
  .border-radius-lg-top-7 { border-radius: 7px 7px 0 0 !important; }
  .border-radius-lg-bottom-7 { border-radius: 0 0 7px 7px !important; }
  .border-radius-lg-left-7 { border-radius: 7px 0 0 7px !important; }
  .border-radius-lg-right-7 { border-radius: 0 7px 7px 0 !important; }
  .border-radius-lg-8 { border-radius: 8px !important; }
  .border-radius-lg-top-8 { border-radius: 8px 8px 0 0 !important; }
  .border-radius-lg-bottom-8 { border-radius: 0 0 8px 8px !important; }
  .border-radius-lg-left-8 { border-radius: 8px 0 0 8px !important; }
  .border-radius-lg-right-8 { border-radius: 0 8px 8px 0 !important; }
  .border-radius-lg-9 { border-radius: 9px !important; }
  .border-radius-lg-top-9 { border-radius: 9px 9px 0 0 !important; }
  .border-radius-lg-bottom-9 { border-radius: 0 0 9px 9px !important; }
  .border-radius-lg-left-9 { border-radius: 9px 0 0 9px !important; }
  .border-radius-lg-right-9 { border-radius: 0 9px 9px 0 !important; }
  .border-radius-lg-10 { border-radius: 10px !important; }
  .border-radius-lg-top-10 { border-radius: 10px 10px 0 0 !important; }
  .border-radius-lg-bottom-10 { border-radius: 0 0 10px 10px !important; }
  .border-radius-lg-left-10 { border-radius: 10px 0 0 10px !important; }
  .border-radius-lg-right-10 { border-radius: 0 10px 10px 0 !important; }
  .border-radius-lg-11 { border-radius: 11px !important; }
  .border-radius-lg-top-11 { border-radius: 11px 11px 0 0 !important; }
  .border-radius-lg-bottom-11 { border-radius: 0 0 11px 11px !important; }
  .border-radius-lg-left-11 { border-radius: 11px 0 0 11px !important; }
  .border-radius-lg-right-11 { border-radius: 0 11px 11px 0 !important; }
  .border-radius-lg-12 { border-radius: 12px !important; }
  .border-radius-lg-top-12 { border-radius: 12px 12px 0 0 !important; }
  .border-radius-lg-bottom-12 { border-radius: 0 0 12px 12px !important; }
  .border-radius-lg-left-12 { border-radius: 12px 0 0 12px !important; }
  .border-radius-lg-right-12 { border-radius: 0 12px 12px 0 !important; }
  .border-radius-lg-13 { border-radius: 13px !important; }
  .border-radius-lg-top-13 { border-radius: 13px 13px 0 0 !important; }
  .border-radius-lg-bottom-13 { border-radius: 0 0 13px 13px !important; }
  .border-radius-lg-left-13 { border-radius: 13px 0 0 13px !important; }
  .border-radius-lg-right-13 { border-radius: 0 13px 13px 0 !important; }
  .border-radius-lg-14 { border-radius: 14px !important; }
  .border-radius-lg-top-14 { border-radius: 14px 14px 0 0 !important; }
  .border-radius-lg-bottom-14 { border-radius: 0 0 14px 14px !important; }
  .border-radius-lg-left-14 { border-radius: 14px 0 0 14px !important; }
  .border-radius-lg-right-14 { border-radius: 0 14px 14px 0 !important; }
  .border-radius-lg-15 { border-radius: 15px !important; }
  .border-radius-lg-top-15 { border-radius: 15px 15px 0 0 !important; }
  .border-radius-lg-bottom-15 { border-radius: 0 0 15px 15px !important; }
  .border-radius-lg-left-15 { border-radius: 15px 0 0 15px !important; }
  .border-radius-lg-right-15 { border-radius: 0 15px 15px 0 !important; }
  .border-radius-lg-16 { border-radius: 16px !important; }
  .border-radius-lg-top-16 { border-radius: 16px 16px 0 0 !important; }
  .border-radius-lg-bottom-16 { border-radius: 0 0 16px 16px !important; }
  .border-radius-lg-left-16 { border-radius: 16px 0 0 16px !important; }
  .border-radius-lg-right-16 { border-radius: 0 16px 16px 0 !important; }
  .border-radius-lg-17 { border-radius: 17px !important; }
  .border-radius-lg-top-17 { border-radius: 17px 17px 0 0 !important; }
  .border-radius-lg-bottom-17 { border-radius: 0 0 17px 17px !important; }
  .border-radius-lg-left-17 { border-radius: 17px 0 0 17px !important; }
  .border-radius-lg-right-17 { border-radius: 0 17px 17px 0 !important; }
  .border-radius-lg-18 { border-radius: 18px !important; }
  .border-radius-lg-top-18 { border-radius: 18px 18px 0 0 !important; }
  .border-radius-lg-bottom-18 { border-radius: 0 0 18px 18px !important; }
  .border-radius-lg-left-18 { border-radius: 18px 0 0 18px !important; }
  .border-radius-lg-right-18 { border-radius: 0 18px 18px 0 !important; }
  .border-radius-lg-19 { border-radius: 19px !important; }
  .border-radius-lg-top-19 { border-radius: 19px 19px 0 0 !important; }
  .border-radius-lg-bottom-19 { border-radius: 0 0 19px 19px !important; }
  .border-radius-lg-left-19 { border-radius: 19px 0 0 19px !important; }
  .border-radius-lg-right-19 { border-radius: 0 19px 19px 0 !important; }
  .border-radius-lg-20 { border-radius: 20px !important; }
  .border-radius-lg-top-20 { border-radius: 20px 20px 0 0 !important; }
  .border-radius-lg-bottom-20 { border-radius: 0 0 20px 20px !important; }
  .border-radius-lg-left-20 { border-radius: 20px 0 0 20px !important; }
  .border-radius-lg-right-20 { border-radius: 0 20px 20px 0 !important; }
  .border-radius-lg-21 { border-radius: 21px !important; }
  .border-radius-lg-top-21 { border-radius: 21px 21px 0 0 !important; }
  .border-radius-lg-bottom-21 { border-radius: 0 0 21px 21px !important; }
  .border-radius-lg-left-21 { border-radius: 21px 0 0 21px !important; }
  .border-radius-lg-right-21 { border-radius: 0 21px 21px 0 !important; }
  .border-radius-lg-22 { border-radius: 22px !important; }
  .border-radius-lg-top-22 { border-radius: 22px 22px 0 0 !important; }
  .border-radius-lg-bottom-22 { border-radius: 0 0 22px 22px !important; }
  .border-radius-lg-left-22 { border-radius: 22px 0 0 22px !important; }
  .border-radius-lg-right-22 { border-radius: 0 22px 22px 0 !important; }
  .border-radius-lg-23 { border-radius: 23px !important; }
  .border-radius-lg-top-23 { border-radius: 23px 23px 0 0 !important; }
  .border-radius-lg-bottom-23 { border-radius: 0 0 23px 23px !important; }
  .border-radius-lg-left-23 { border-radius: 23px 0 0 23px !important; }
  .border-radius-lg-right-23 { border-radius: 0 23px 23px 0 !important; }
  .border-radius-lg-24 { border-radius: 24px !important; }
  .border-radius-lg-top-24 { border-radius: 24px 24px 0 0 !important; }
  .border-radius-lg-bottom-24 { border-radius: 0 0 24px 24px !important; }
  .border-radius-lg-left-24 { border-radius: 24px 0 0 24px !important; }
  .border-radius-lg-right-24 { border-radius: 0 24px 24px 0 !important; }
  .border-radius-lg-25 { border-radius: 25px !important; }
  .border-radius-lg-top-25 { border-radius: 25px 25px 0 0 !important; }
  .border-radius-lg-bottom-25 { border-radius: 0 0 25px 25px !important; }
  .border-radius-lg-left-25 { border-radius: 25px 0 0 25px !important; }
  .border-radius-lg-right-25 { border-radius: 0 25px 25px 0 !important; }
  .border-radius-lg-26 { border-radius: 26px !important; }
  .border-radius-lg-top-26 { border-radius: 26px 26px 0 0 !important; }
  .border-radius-lg-bottom-26 { border-radius: 0 0 26px 26px !important; }
  .border-radius-lg-left-26 { border-radius: 26px 0 0 26px !important; }
  .border-radius-lg-right-26 { border-radius: 0 26px 26px 0 !important; }
  .border-radius-lg-27 { border-radius: 27px !important; }
  .border-radius-lg-top-27 { border-radius: 27px 27px 0 0 !important; }
  .border-radius-lg-bottom-27 { border-radius: 0 0 27px 27px !important; }
  .border-radius-lg-left-27 { border-radius: 27px 0 0 27px !important; }
  .border-radius-lg-right-27 { border-radius: 0 27px 27px 0 !important; }
  .border-radius-lg-28 { border-radius: 28px !important; }
  .border-radius-lg-top-28 { border-radius: 28px 28px 0 0 !important; }
  .border-radius-lg-bottom-28 { border-radius: 0 0 28px 28px !important; }
  .border-radius-lg-left-28 { border-radius: 28px 0 0 28px !important; }
  .border-radius-lg-right-28 { border-radius: 0 28px 28px 0 !important; }
  .border-radius-lg-29 { border-radius: 29px !important; }
  .border-radius-lg-top-29 { border-radius: 29px 29px 0 0 !important; }
  .border-radius-lg-bottom-29 { border-radius: 0 0 29px 29px !important; }
  .border-radius-lg-left-29 { border-radius: 29px 0 0 29px !important; }
  .border-radius-lg-right-29 { border-radius: 0 29px 29px 0 !important; }
  .border-radius-lg-30 { border-radius: 30px !important; }
  .border-radius-lg-top-30 { border-radius: 30px 30px 0 0 !important; }
  .border-radius-lg-bottom-30 { border-radius: 0 0 30px 30px !important; }
  .border-radius-lg-left-30 { border-radius: 30px 0 0 30px !important; }
  .border-radius-lg-right-30 { border-radius: 0 30px 30px 0 !important; }
  .border-radius-lg-31 { border-radius: 31px !important; }
  .border-radius-lg-top-31 { border-radius: 31px 31px 0 0 !important; }
  .border-radius-lg-bottom-31 { border-radius: 0 0 31px 31px !important; }
  .border-radius-lg-left-31 { border-radius: 31px 0 0 31px !important; }
  .border-radius-lg-right-31 { border-radius: 0 31px 31px 0 !important; }
  .border-radius-lg-32 { border-radius: 32px !important; }
  .border-radius-lg-top-32 { border-radius: 32px 32px 0 0 !important; }
  .border-radius-lg-bottom-32 { border-radius: 0 0 32px 32px !important; }
  .border-radius-lg-left-32 { border-radius: 32px 0 0 32px !important; }
  .border-radius-lg-right-32 { border-radius: 0 32px 32px 0 !important; }
  .border-radius-lg-33 { border-radius: 33px !important; }
  .border-radius-lg-top-33 { border-radius: 33px 33px 0 0 !important; }
  .border-radius-lg-bottom-33 { border-radius: 0 0 33px 33px !important; }
  .border-radius-lg-left-33 { border-radius: 33px 0 0 33px !important; }
  .border-radius-lg-right-33 { border-radius: 0 33px 33px 0 !important; }
  .border-radius-lg-34 { border-radius: 34px !important; }
  .border-radius-lg-top-34 { border-radius: 34px 34px 0 0 !important; }
  .border-radius-lg-bottom-34 { border-radius: 0 0 34px 34px !important; }
  .border-radius-lg-left-34 { border-radius: 34px 0 0 34px !important; }
  .border-radius-lg-right-34 { border-radius: 0 34px 34px 0 !important; }
  .border-radius-lg-35 { border-radius: 35px !important; }
  .border-radius-lg-top-35 { border-radius: 35px 35px 0 0 !important; }
  .border-radius-lg-bottom-35 { border-radius: 0 0 35px 35px !important; }
  .border-radius-lg-left-35 { border-radius: 35px 0 0 35px !important; }
  .border-radius-lg-right-35 { border-radius: 0 35px 35px 0 !important; }
  .border-radius-lg-36 { border-radius: 36px !important; }
  .border-radius-lg-top-36 { border-radius: 36px 36px 0 0 !important; }
  .border-radius-lg-bottom-36 { border-radius: 0 0 36px 36px !important; }
  .border-radius-lg-left-36 { border-radius: 36px 0 0 36px !important; }
  .border-radius-lg-right-36 { border-radius: 0 36px 36px 0 !important; }
  .border-radius-lg-37 { border-radius: 37px !important; }
  .border-radius-lg-top-37 { border-radius: 37px 37px 0 0 !important; }
  .border-radius-lg-bottom-37 { border-radius: 0 0 37px 37px !important; }
  .border-radius-lg-left-37 { border-radius: 37px 0 0 37px !important; }
  .border-radius-lg-right-37 { border-radius: 0 37px 37px 0 !important; }
  .border-radius-lg-38 { border-radius: 38px !important; }
  .border-radius-lg-top-38 { border-radius: 38px 38px 0 0 !important; }
  .border-radius-lg-bottom-38 { border-radius: 0 0 38px 38px !important; }
  .border-radius-lg-left-38 { border-radius: 38px 0 0 38px !important; }
  .border-radius-lg-right-38 { border-radius: 0 38px 38px 0 !important; }
  .border-radius-lg-39 { border-radius: 39px !important; }
  .border-radius-lg-top-39 { border-radius: 39px 39px 0 0 !important; }
  .border-radius-lg-bottom-39 { border-radius: 0 0 39px 39px !important; }
  .border-radius-lg-left-39 { border-radius: 39px 0 0 39px !important; }
  .border-radius-lg-right-39 { border-radius: 0 39px 39px 0 !important; }
  .border-radius-lg-40 { border-radius: 40px !important; }
  .border-radius-lg-top-40 { border-radius: 40px 40px 0 0 !important; }
  .border-radius-lg-bottom-40 { border-radius: 0 0 40px 40px !important; }
  .border-radius-lg-left-40 { border-radius: 40px 0 0 40px !important; }
  .border-radius-lg-right-40 { border-radius: 0 40px 40px 0 !important; }
  .border-radius-lg-41 { border-radius: 41px !important; }
  .border-radius-lg-top-41 { border-radius: 41px 41px 0 0 !important; }
  .border-radius-lg-bottom-41 { border-radius: 0 0 41px 41px !important; }
  .border-radius-lg-left-41 { border-radius: 41px 0 0 41px !important; }
  .border-radius-lg-right-41 { border-radius: 0 41px 41px 0 !important; }
  .border-radius-lg-42 { border-radius: 42px !important; }
  .border-radius-lg-top-42 { border-radius: 42px 42px 0 0 !important; }
  .border-radius-lg-bottom-42 { border-radius: 0 0 42px 42px !important; }
  .border-radius-lg-left-42 { border-radius: 42px 0 0 42px !important; }
  .border-radius-lg-right-42 { border-radius: 0 42px 42px 0 !important; }
  .border-radius-lg-43 { border-radius: 43px !important; }
  .border-radius-lg-top-43 { border-radius: 43px 43px 0 0 !important; }
  .border-radius-lg-bottom-43 { border-radius: 0 0 43px 43px !important; }
  .border-radius-lg-left-43 { border-radius: 43px 0 0 43px !important; }
  .border-radius-lg-right-43 { border-radius: 0 43px 43px 0 !important; }
  .border-radius-lg-44 { border-radius: 44px !important; }
  .border-radius-lg-top-44 { border-radius: 44px 44px 0 0 !important; }
  .border-radius-lg-bottom-44 { border-radius: 0 0 44px 44px !important; }
  .border-radius-lg-left-44 { border-radius: 44px 0 0 44px !important; }
  .border-radius-lg-right-44 { border-radius: 0 44px 44px 0 !important; }
  .border-radius-lg-45 { border-radius: 45px !important; }
  .border-radius-lg-top-45 { border-radius: 45px 45px 0 0 !important; }
  .border-radius-lg-bottom-45 { border-radius: 0 0 45px 45px !important; }
  .border-radius-lg-left-45 { border-radius: 45px 0 0 45px !important; }
  .border-radius-lg-right-45 { border-radius: 0 45px 45px 0 !important; }
  .border-radius-lg-46 { border-radius: 46px !important; }
  .border-radius-lg-top-46 { border-radius: 46px 46px 0 0 !important; }
  .border-radius-lg-bottom-46 { border-radius: 0 0 46px 46px !important; }
  .border-radius-lg-left-46 { border-radius: 46px 0 0 46px !important; }
  .border-radius-lg-right-46 { border-radius: 0 46px 46px 0 !important; }
  .border-radius-lg-47 { border-radius: 47px !important; }
  .border-radius-lg-top-47 { border-radius: 47px 47px 0 0 !important; }
  .border-radius-lg-bottom-47 { border-radius: 0 0 47px 47px !important; }
  .border-radius-lg-left-47 { border-radius: 47px 0 0 47px !important; }
  .border-radius-lg-right-47 { border-radius: 0 47px 47px 0 !important; }
  .border-radius-lg-48 { border-radius: 48px !important; }
  .border-radius-lg-top-48 { border-radius: 48px 48px 0 0 !important; }
  .border-radius-lg-bottom-48 { border-radius: 0 0 48px 48px !important; }
  .border-radius-lg-left-48 { border-radius: 48px 0 0 48px !important; }
  .border-radius-lg-right-48 { border-radius: 0 48px 48px 0 !important; }
  .border-radius-lg-49 { border-radius: 49px !important; }
  .border-radius-lg-top-49 { border-radius: 49px 49px 0 0 !important; }
  .border-radius-lg-bottom-49 { border-radius: 0 0 49px 49px !important; }
  .border-radius-lg-left-49 { border-radius: 49px 0 0 49px !important; }
  .border-radius-lg-right-49 { border-radius: 0 49px 49px 0 !important; }
  .border-radius-lg-50 { border-radius: 50px !important; }
  .border-radius-lg-top-50 { border-radius: 50px 50px 0 0 !important; }
  .border-radius-lg-bottom-50 { border-radius: 0 0 50px 50px !important; }
  .border-radius-lg-left-50 { border-radius: 50px 0 0 50px !important; }
  .border-radius-lg-right-50 { border-radius: 0 50px 50px 0 !important; }
  .border-radius-lg-per-10 { width: 10% !important; }
  .border-radius-lg-per-20 { width: 20% !important; }
  .border-radius-lg-per-30 { width: 30% !important; }
  .border-radius-lg-per-40 { width: 40% !important; }
  .border-radius-lg-per-50 { width: 50% !important; }
  .border-radius-lg-per-60 { width: 60% !important; }
  .border-radius-lg-per-70 { width: 70% !important; }
  .border-radius-lg-per-80 { width: 80% !important; }
  .border-radius-lg-per-90 { width: 90% !important; }
  .border-radius-lg-per-100 { width: 100% !important; } }

@media (max-width: 992px) { .border-radius-maxlg-0 { border-radius: 0px !important; }
  .border-radius-maxlg-top-0 { border-radius: 0px 0px 0 0 !important; }
  .border-radius-maxlg-bottom-0 { border-radius: 0 0 0px 0px !important; }
  .border-radius-maxlg-left-0 { border-radius: 0px 0 0 0px !important; }
  .border-radius-maxlg-right-0 { border-radius: 0 0px 0px 0 !important; }
  .border-radius-maxlg-1 { border-radius: 1px !important; }
  .border-radius-maxlg-top-1 { border-radius: 1px 1px 0 0 !important; }
  .border-radius-maxlg-bottom-1 { border-radius: 0 0 1px 1px !important; }
  .border-radius-maxlg-left-1 { border-radius: 1px 0 0 1px !important; }
  .border-radius-maxlg-right-1 { border-radius: 0 1px 1px 0 !important; }
  .border-radius-maxlg-2 { border-radius: 2px !important; }
  .border-radius-maxlg-top-2 { border-radius: 2px 2px 0 0 !important; }
  .border-radius-maxlg-bottom-2 { border-radius: 0 0 2px 2px !important; }
  .border-radius-maxlg-left-2 { border-radius: 2px 0 0 2px !important; }
  .border-radius-maxlg-right-2 { border-radius: 0 2px 2px 0 !important; }
  .border-radius-maxlg-3 { border-radius: 3px !important; }
  .border-radius-maxlg-top-3 { border-radius: 3px 3px 0 0 !important; }
  .border-radius-maxlg-bottom-3 { border-radius: 0 0 3px 3px !important; }
  .border-radius-maxlg-left-3 { border-radius: 3px 0 0 3px !important; }
  .border-radius-maxlg-right-3 { border-radius: 0 3px 3px 0 !important; }
  .border-radius-maxlg-4 { border-radius: 4px !important; }
  .border-radius-maxlg-top-4 { border-radius: 4px 4px 0 0 !important; }
  .border-radius-maxlg-bottom-4 { border-radius: 0 0 4px 4px !important; }
  .border-radius-maxlg-left-4 { border-radius: 4px 0 0 4px !important; }
  .border-radius-maxlg-right-4 { border-radius: 0 4px 4px 0 !important; }
  .border-radius-maxlg-5 { border-radius: 5px !important; }
  .border-radius-maxlg-top-5 { border-radius: 5px 5px 0 0 !important; }
  .border-radius-maxlg-bottom-5 { border-radius: 0 0 5px 5px !important; }
  .border-radius-maxlg-left-5 { border-radius: 5px 0 0 5px !important; }
  .border-radius-maxlg-right-5 { border-radius: 0 5px 5px 0 !important; }
  .border-radius-maxlg-6 { border-radius: 6px !important; }
  .border-radius-maxlg-top-6 { border-radius: 6px 6px 0 0 !important; }
  .border-radius-maxlg-bottom-6 { border-radius: 0 0 6px 6px !important; }
  .border-radius-maxlg-left-6 { border-radius: 6px 0 0 6px !important; }
  .border-radius-maxlg-right-6 { border-radius: 0 6px 6px 0 !important; }
  .border-radius-maxlg-7 { border-radius: 7px !important; }
  .border-radius-maxlg-top-7 { border-radius: 7px 7px 0 0 !important; }
  .border-radius-maxlg-bottom-7 { border-radius: 0 0 7px 7px !important; }
  .border-radius-maxlg-left-7 { border-radius: 7px 0 0 7px !important; }
  .border-radius-maxlg-right-7 { border-radius: 0 7px 7px 0 !important; }
  .border-radius-maxlg-8 { border-radius: 8px !important; }
  .border-radius-maxlg-top-8 { border-radius: 8px 8px 0 0 !important; }
  .border-radius-maxlg-bottom-8 { border-radius: 0 0 8px 8px !important; }
  .border-radius-maxlg-left-8 { border-radius: 8px 0 0 8px !important; }
  .border-radius-maxlg-right-8 { border-radius: 0 8px 8px 0 !important; }
  .border-radius-maxlg-9 { border-radius: 9px !important; }
  .border-radius-maxlg-top-9 { border-radius: 9px 9px 0 0 !important; }
  .border-radius-maxlg-bottom-9 { border-radius: 0 0 9px 9px !important; }
  .border-radius-maxlg-left-9 { border-radius: 9px 0 0 9px !important; }
  .border-radius-maxlg-right-9 { border-radius: 0 9px 9px 0 !important; }
  .border-radius-maxlg-10 { border-radius: 10px !important; }
  .border-radius-maxlg-top-10 { border-radius: 10px 10px 0 0 !important; }
  .border-radius-maxlg-bottom-10 { border-radius: 0 0 10px 10px !important; }
  .border-radius-maxlg-left-10 { border-radius: 10px 0 0 10px !important; }
  .border-radius-maxlg-right-10 { border-radius: 0 10px 10px 0 !important; }
  .border-radius-maxlg-11 { border-radius: 11px !important; }
  .border-radius-maxlg-top-11 { border-radius: 11px 11px 0 0 !important; }
  .border-radius-maxlg-bottom-11 { border-radius: 0 0 11px 11px !important; }
  .border-radius-maxlg-left-11 { border-radius: 11px 0 0 11px !important; }
  .border-radius-maxlg-right-11 { border-radius: 0 11px 11px 0 !important; }
  .border-radius-maxlg-12 { border-radius: 12px !important; }
  .border-radius-maxlg-top-12 { border-radius: 12px 12px 0 0 !important; }
  .border-radius-maxlg-bottom-12 { border-radius: 0 0 12px 12px !important; }
  .border-radius-maxlg-left-12 { border-radius: 12px 0 0 12px !important; }
  .border-radius-maxlg-right-12 { border-radius: 0 12px 12px 0 !important; }
  .border-radius-maxlg-13 { border-radius: 13px !important; }
  .border-radius-maxlg-top-13 { border-radius: 13px 13px 0 0 !important; }
  .border-radius-maxlg-bottom-13 { border-radius: 0 0 13px 13px !important; }
  .border-radius-maxlg-left-13 { border-radius: 13px 0 0 13px !important; }
  .border-radius-maxlg-right-13 { border-radius: 0 13px 13px 0 !important; }
  .border-radius-maxlg-14 { border-radius: 14px !important; }
  .border-radius-maxlg-top-14 { border-radius: 14px 14px 0 0 !important; }
  .border-radius-maxlg-bottom-14 { border-radius: 0 0 14px 14px !important; }
  .border-radius-maxlg-left-14 { border-radius: 14px 0 0 14px !important; }
  .border-radius-maxlg-right-14 { border-radius: 0 14px 14px 0 !important; }
  .border-radius-maxlg-15 { border-radius: 15px !important; }
  .border-radius-maxlg-top-15 { border-radius: 15px 15px 0 0 !important; }
  .border-radius-maxlg-bottom-15 { border-radius: 0 0 15px 15px !important; }
  .border-radius-maxlg-left-15 { border-radius: 15px 0 0 15px !important; }
  .border-radius-maxlg-right-15 { border-radius: 0 15px 15px 0 !important; }
  .border-radius-maxlg-16 { border-radius: 16px !important; }
  .border-radius-maxlg-top-16 { border-radius: 16px 16px 0 0 !important; }
  .border-radius-maxlg-bottom-16 { border-radius: 0 0 16px 16px !important; }
  .border-radius-maxlg-left-16 { border-radius: 16px 0 0 16px !important; }
  .border-radius-maxlg-right-16 { border-radius: 0 16px 16px 0 !important; }
  .border-radius-maxlg-17 { border-radius: 17px !important; }
  .border-radius-maxlg-top-17 { border-radius: 17px 17px 0 0 !important; }
  .border-radius-maxlg-bottom-17 { border-radius: 0 0 17px 17px !important; }
  .border-radius-maxlg-left-17 { border-radius: 17px 0 0 17px !important; }
  .border-radius-maxlg-right-17 { border-radius: 0 17px 17px 0 !important; }
  .border-radius-maxlg-18 { border-radius: 18px !important; }
  .border-radius-maxlg-top-18 { border-radius: 18px 18px 0 0 !important; }
  .border-radius-maxlg-bottom-18 { border-radius: 0 0 18px 18px !important; }
  .border-radius-maxlg-left-18 { border-radius: 18px 0 0 18px !important; }
  .border-radius-maxlg-right-18 { border-radius: 0 18px 18px 0 !important; }
  .border-radius-maxlg-19 { border-radius: 19px !important; }
  .border-radius-maxlg-top-19 { border-radius: 19px 19px 0 0 !important; }
  .border-radius-maxlg-bottom-19 { border-radius: 0 0 19px 19px !important; }
  .border-radius-maxlg-left-19 { border-radius: 19px 0 0 19px !important; }
  .border-radius-maxlg-right-19 { border-radius: 0 19px 19px 0 !important; }
  .border-radius-maxlg-20 { border-radius: 20px !important; }
  .border-radius-maxlg-top-20 { border-radius: 20px 20px 0 0 !important; }
  .border-radius-maxlg-bottom-20 { border-radius: 0 0 20px 20px !important; }
  .border-radius-maxlg-left-20 { border-radius: 20px 0 0 20px !important; }
  .border-radius-maxlg-right-20 { border-radius: 0 20px 20px 0 !important; }
  .border-radius-maxlg-21 { border-radius: 21px !important; }
  .border-radius-maxlg-top-21 { border-radius: 21px 21px 0 0 !important; }
  .border-radius-maxlg-bottom-21 { border-radius: 0 0 21px 21px !important; }
  .border-radius-maxlg-left-21 { border-radius: 21px 0 0 21px !important; }
  .border-radius-maxlg-right-21 { border-radius: 0 21px 21px 0 !important; }
  .border-radius-maxlg-22 { border-radius: 22px !important; }
  .border-radius-maxlg-top-22 { border-radius: 22px 22px 0 0 !important; }
  .border-radius-maxlg-bottom-22 { border-radius: 0 0 22px 22px !important; }
  .border-radius-maxlg-left-22 { border-radius: 22px 0 0 22px !important; }
  .border-radius-maxlg-right-22 { border-radius: 0 22px 22px 0 !important; }
  .border-radius-maxlg-23 { border-radius: 23px !important; }
  .border-radius-maxlg-top-23 { border-radius: 23px 23px 0 0 !important; }
  .border-radius-maxlg-bottom-23 { border-radius: 0 0 23px 23px !important; }
  .border-radius-maxlg-left-23 { border-radius: 23px 0 0 23px !important; }
  .border-radius-maxlg-right-23 { border-radius: 0 23px 23px 0 !important; }
  .border-radius-maxlg-24 { border-radius: 24px !important; }
  .border-radius-maxlg-top-24 { border-radius: 24px 24px 0 0 !important; }
  .border-radius-maxlg-bottom-24 { border-radius: 0 0 24px 24px !important; }
  .border-radius-maxlg-left-24 { border-radius: 24px 0 0 24px !important; }
  .border-radius-maxlg-right-24 { border-radius: 0 24px 24px 0 !important; }
  .border-radius-maxlg-25 { border-radius: 25px !important; }
  .border-radius-maxlg-top-25 { border-radius: 25px 25px 0 0 !important; }
  .border-radius-maxlg-bottom-25 { border-radius: 0 0 25px 25px !important; }
  .border-radius-maxlg-left-25 { border-radius: 25px 0 0 25px !important; }
  .border-radius-maxlg-right-25 { border-radius: 0 25px 25px 0 !important; }
  .border-radius-maxlg-26 { border-radius: 26px !important; }
  .border-radius-maxlg-top-26 { border-radius: 26px 26px 0 0 !important; }
  .border-radius-maxlg-bottom-26 { border-radius: 0 0 26px 26px !important; }
  .border-radius-maxlg-left-26 { border-radius: 26px 0 0 26px !important; }
  .border-radius-maxlg-right-26 { border-radius: 0 26px 26px 0 !important; }
  .border-radius-maxlg-27 { border-radius: 27px !important; }
  .border-radius-maxlg-top-27 { border-radius: 27px 27px 0 0 !important; }
  .border-radius-maxlg-bottom-27 { border-radius: 0 0 27px 27px !important; }
  .border-radius-maxlg-left-27 { border-radius: 27px 0 0 27px !important; }
  .border-radius-maxlg-right-27 { border-radius: 0 27px 27px 0 !important; }
  .border-radius-maxlg-28 { border-radius: 28px !important; }
  .border-radius-maxlg-top-28 { border-radius: 28px 28px 0 0 !important; }
  .border-radius-maxlg-bottom-28 { border-radius: 0 0 28px 28px !important; }
  .border-radius-maxlg-left-28 { border-radius: 28px 0 0 28px !important; }
  .border-radius-maxlg-right-28 { border-radius: 0 28px 28px 0 !important; }
  .border-radius-maxlg-29 { border-radius: 29px !important; }
  .border-radius-maxlg-top-29 { border-radius: 29px 29px 0 0 !important; }
  .border-radius-maxlg-bottom-29 { border-radius: 0 0 29px 29px !important; }
  .border-radius-maxlg-left-29 { border-radius: 29px 0 0 29px !important; }
  .border-radius-maxlg-right-29 { border-radius: 0 29px 29px 0 !important; }
  .border-radius-maxlg-30 { border-radius: 30px !important; }
  .border-radius-maxlg-top-30 { border-radius: 30px 30px 0 0 !important; }
  .border-radius-maxlg-bottom-30 { border-radius: 0 0 30px 30px !important; }
  .border-radius-maxlg-left-30 { border-radius: 30px 0 0 30px !important; }
  .border-radius-maxlg-right-30 { border-radius: 0 30px 30px 0 !important; }
  .border-radius-maxlg-31 { border-radius: 31px !important; }
  .border-radius-maxlg-top-31 { border-radius: 31px 31px 0 0 !important; }
  .border-radius-maxlg-bottom-31 { border-radius: 0 0 31px 31px !important; }
  .border-radius-maxlg-left-31 { border-radius: 31px 0 0 31px !important; }
  .border-radius-maxlg-right-31 { border-radius: 0 31px 31px 0 !important; }
  .border-radius-maxlg-32 { border-radius: 32px !important; }
  .border-radius-maxlg-top-32 { border-radius: 32px 32px 0 0 !important; }
  .border-radius-maxlg-bottom-32 { border-radius: 0 0 32px 32px !important; }
  .border-radius-maxlg-left-32 { border-radius: 32px 0 0 32px !important; }
  .border-radius-maxlg-right-32 { border-radius: 0 32px 32px 0 !important; }
  .border-radius-maxlg-33 { border-radius: 33px !important; }
  .border-radius-maxlg-top-33 { border-radius: 33px 33px 0 0 !important; }
  .border-radius-maxlg-bottom-33 { border-radius: 0 0 33px 33px !important; }
  .border-radius-maxlg-left-33 { border-radius: 33px 0 0 33px !important; }
  .border-radius-maxlg-right-33 { border-radius: 0 33px 33px 0 !important; }
  .border-radius-maxlg-34 { border-radius: 34px !important; }
  .border-radius-maxlg-top-34 { border-radius: 34px 34px 0 0 !important; }
  .border-radius-maxlg-bottom-34 { border-radius: 0 0 34px 34px !important; }
  .border-radius-maxlg-left-34 { border-radius: 34px 0 0 34px !important; }
  .border-radius-maxlg-right-34 { border-radius: 0 34px 34px 0 !important; }
  .border-radius-maxlg-35 { border-radius: 35px !important; }
  .border-radius-maxlg-top-35 { border-radius: 35px 35px 0 0 !important; }
  .border-radius-maxlg-bottom-35 { border-radius: 0 0 35px 35px !important; }
  .border-radius-maxlg-left-35 { border-radius: 35px 0 0 35px !important; }
  .border-radius-maxlg-right-35 { border-radius: 0 35px 35px 0 !important; }
  .border-radius-maxlg-36 { border-radius: 36px !important; }
  .border-radius-maxlg-top-36 { border-radius: 36px 36px 0 0 !important; }
  .border-radius-maxlg-bottom-36 { border-radius: 0 0 36px 36px !important; }
  .border-radius-maxlg-left-36 { border-radius: 36px 0 0 36px !important; }
  .border-radius-maxlg-right-36 { border-radius: 0 36px 36px 0 !important; }
  .border-radius-maxlg-37 { border-radius: 37px !important; }
  .border-radius-maxlg-top-37 { border-radius: 37px 37px 0 0 !important; }
  .border-radius-maxlg-bottom-37 { border-radius: 0 0 37px 37px !important; }
  .border-radius-maxlg-left-37 { border-radius: 37px 0 0 37px !important; }
  .border-radius-maxlg-right-37 { border-radius: 0 37px 37px 0 !important; }
  .border-radius-maxlg-38 { border-radius: 38px !important; }
  .border-radius-maxlg-top-38 { border-radius: 38px 38px 0 0 !important; }
  .border-radius-maxlg-bottom-38 { border-radius: 0 0 38px 38px !important; }
  .border-radius-maxlg-left-38 { border-radius: 38px 0 0 38px !important; }
  .border-radius-maxlg-right-38 { border-radius: 0 38px 38px 0 !important; }
  .border-radius-maxlg-39 { border-radius: 39px !important; }
  .border-radius-maxlg-top-39 { border-radius: 39px 39px 0 0 !important; }
  .border-radius-maxlg-bottom-39 { border-radius: 0 0 39px 39px !important; }
  .border-radius-maxlg-left-39 { border-radius: 39px 0 0 39px !important; }
  .border-radius-maxlg-right-39 { border-radius: 0 39px 39px 0 !important; }
  .border-radius-maxlg-40 { border-radius: 40px !important; }
  .border-radius-maxlg-top-40 { border-radius: 40px 40px 0 0 !important; }
  .border-radius-maxlg-bottom-40 { border-radius: 0 0 40px 40px !important; }
  .border-radius-maxlg-left-40 { border-radius: 40px 0 0 40px !important; }
  .border-radius-maxlg-right-40 { border-radius: 0 40px 40px 0 !important; }
  .border-radius-maxlg-41 { border-radius: 41px !important; }
  .border-radius-maxlg-top-41 { border-radius: 41px 41px 0 0 !important; }
  .border-radius-maxlg-bottom-41 { border-radius: 0 0 41px 41px !important; }
  .border-radius-maxlg-left-41 { border-radius: 41px 0 0 41px !important; }
  .border-radius-maxlg-right-41 { border-radius: 0 41px 41px 0 !important; }
  .border-radius-maxlg-42 { border-radius: 42px !important; }
  .border-radius-maxlg-top-42 { border-radius: 42px 42px 0 0 !important; }
  .border-radius-maxlg-bottom-42 { border-radius: 0 0 42px 42px !important; }
  .border-radius-maxlg-left-42 { border-radius: 42px 0 0 42px !important; }
  .border-radius-maxlg-right-42 { border-radius: 0 42px 42px 0 !important; }
  .border-radius-maxlg-43 { border-radius: 43px !important; }
  .border-radius-maxlg-top-43 { border-radius: 43px 43px 0 0 !important; }
  .border-radius-maxlg-bottom-43 { border-radius: 0 0 43px 43px !important; }
  .border-radius-maxlg-left-43 { border-radius: 43px 0 0 43px !important; }
  .border-radius-maxlg-right-43 { border-radius: 0 43px 43px 0 !important; }
  .border-radius-maxlg-44 { border-radius: 44px !important; }
  .border-radius-maxlg-top-44 { border-radius: 44px 44px 0 0 !important; }
  .border-radius-maxlg-bottom-44 { border-radius: 0 0 44px 44px !important; }
  .border-radius-maxlg-left-44 { border-radius: 44px 0 0 44px !important; }
  .border-radius-maxlg-right-44 { border-radius: 0 44px 44px 0 !important; }
  .border-radius-maxlg-45 { border-radius: 45px !important; }
  .border-radius-maxlg-top-45 { border-radius: 45px 45px 0 0 !important; }
  .border-radius-maxlg-bottom-45 { border-radius: 0 0 45px 45px !important; }
  .border-radius-maxlg-left-45 { border-radius: 45px 0 0 45px !important; }
  .border-radius-maxlg-right-45 { border-radius: 0 45px 45px 0 !important; }
  .border-radius-maxlg-46 { border-radius: 46px !important; }
  .border-radius-maxlg-top-46 { border-radius: 46px 46px 0 0 !important; }
  .border-radius-maxlg-bottom-46 { border-radius: 0 0 46px 46px !important; }
  .border-radius-maxlg-left-46 { border-radius: 46px 0 0 46px !important; }
  .border-radius-maxlg-right-46 { border-radius: 0 46px 46px 0 !important; }
  .border-radius-maxlg-47 { border-radius: 47px !important; }
  .border-radius-maxlg-top-47 { border-radius: 47px 47px 0 0 !important; }
  .border-radius-maxlg-bottom-47 { border-radius: 0 0 47px 47px !important; }
  .border-radius-maxlg-left-47 { border-radius: 47px 0 0 47px !important; }
  .border-radius-maxlg-right-47 { border-radius: 0 47px 47px 0 !important; }
  .border-radius-maxlg-48 { border-radius: 48px !important; }
  .border-radius-maxlg-top-48 { border-radius: 48px 48px 0 0 !important; }
  .border-radius-maxlg-bottom-48 { border-radius: 0 0 48px 48px !important; }
  .border-radius-maxlg-left-48 { border-radius: 48px 0 0 48px !important; }
  .border-radius-maxlg-right-48 { border-radius: 0 48px 48px 0 !important; }
  .border-radius-maxlg-49 { border-radius: 49px !important; }
  .border-radius-maxlg-top-49 { border-radius: 49px 49px 0 0 !important; }
  .border-radius-maxlg-bottom-49 { border-radius: 0 0 49px 49px !important; }
  .border-radius-maxlg-left-49 { border-radius: 49px 0 0 49px !important; }
  .border-radius-maxlg-right-49 { border-radius: 0 49px 49px 0 !important; }
  .border-radius-maxlg-50 { border-radius: 50px !important; }
  .border-radius-maxlg-top-50 { border-radius: 50px 50px 0 0 !important; }
  .border-radius-maxlg-bottom-50 { border-radius: 0 0 50px 50px !important; }
  .border-radius-maxlg-left-50 { border-radius: 50px 0 0 50px !important; }
  .border-radius-maxlg-right-50 { border-radius: 0 50px 50px 0 !important; }
  .border-radius-maxlg-per-10 { width: 10% !important; }
  .border-radius-maxlg-per-20 { width: 20% !important; }
  .border-radius-maxlg-per-30 { width: 30% !important; }
  .border-radius-maxlg-per-40 { width: 40% !important; }
  .border-radius-maxlg-per-50 { width: 50% !important; }
  .border-radius-maxlg-per-60 { width: 60% !important; }
  .border-radius-maxlg-per-70 { width: 70% !important; }
  .border-radius-maxlg-per-80 { width: 80% !important; }
  .border-radius-maxlg-per-90 { width: 90% !important; }
  .border-radius-maxlg-per-100 { width: 100% !important; } }

/* line-heightの設定 */
.lh-0 { line-height: 0 !important; }

.lh-10 { line-height: 1 !important; }

.lh-11 { line-height: 1.1 !important; }

.lh-12 { line-height: 1.2 !important; }

.lh-13 { line-height: 1.3 !important; }

.lh-14 { line-height: 1.4 !important; }

.lh-15 { line-height: 1.5 !important; }

.lh-16 { line-height: 1.6 !important; }

.lh-17 { line-height: 1.7 !important; }

.lh-18 { line-height: 1.8 !important; }

.lh-19 { line-height: 1.9 !important; }

.lh-20 { line-height: 2 !important; }

@media (min-width: 991px) { .lh-lg-0 { line-height: 0 !important; }
  .lh-lg-10 { line-height: 1 !important; }
  .lh-lg-11 { line-height: 1.1 !important; }
  .lh-lg-12 { line-height: 1.2 !important; }
  .lh-lg-13 { line-height: 1.3 !important; }
  .lh-lg-14 { line-height: 1.4 !important; }
  .lh-lg-15 { line-height: 1.5 !important; }
  .lh-lg-16 { line-height: 1.6 !important; }
  .lh-lg-17 { line-height: 1.7 !important; }
  .lh-lg-18 { line-height: 1.8 !important; }
  .lh-lg-19 { line-height: 1.9 !important; }
  .lh-lg-20 { line-height: 2 !important; } }

/* スケール */
.scale-1 { transform: scale(0.1) !important; }

.scale-2 { transform: scale(0.2) !important; }

.scale-3 { transform: scale(0.3) !important; }

.scale-4 { transform: scale(0.4) !important; }

.scale-5 { transform: scale(0.5) !important; }

.scale-6 { transform: scale(0.6) !important; }

.scale-7 { transform: scale(0.7) !important; }

.scale-8 { transform: scale(0.8) !important; }

.scale-9 { transform: scale(0.9) !important; }

.scale-10 { transform: scale(1) !important; }

.scale-11 { transform: scale(1.1) !important; }

.scale-12 { transform: scale(1.2) !important; }

.scale-13 { transform: scale(1.3) !important; }

.scale-14 { transform: scale(1.4) !important; }

.scale-15 { transform: scale(1.5) !important; }

.scale-16 { transform: scale(1.6) !important; }

.scale-17 { transform: scale(1.7) !important; }

.scale-18 { transform: scale(1.8) !important; }

.scale-19 { transform: scale(1.9) !important; }

.scale-20 { transform: scale(2) !important; }

@media (min-width: 991px) { .scale-lg-1 { transform: scale(0.1) !important; }
  .scale-lg-2 { transform: scale(0.2) !important; }
  .scale-lg-3 { transform: scale(0.3) !important; }
  .scale-lg-4 { transform: scale(0.4) !important; }
  .scale-lg-5 { transform: scale(0.5) !important; }
  .scale-lg-6 { transform: scale(0.6) !important; }
  .scale-lg-7 { transform: scale(0.7) !important; }
  .scale-lg-8 { transform: scale(0.8) !important; }
  .scale-lg-9 { transform: scale(0.9) !important; }
  .scale-lg-10 { transform: scale(1) !important; }
  .scale-lg-11 { transform: scale(1.1) !important; }
  .scale-lg-12 { transform: scale(1.2) !important; }
  .scale-lg-13 { transform: scale(1.3) !important; }
  .scale-lg-14 { transform: scale(1.4) !important; }
  .scale-lg-15 { transform: scale(1.5) !important; }
  .scale-lg-16 { transform: scale(1.6) !important; }
  .scale-lg-17 { transform: scale(1.7) !important; }
  .scale-lg-18 { transform: scale(1.8) !important; }
  .scale-lg-19 { transform: scale(1.9) !important; }
  .scale-lg-20 { transform: scale(2) !important; } }

/* 回転 */
.rotate-1 { transform: rotate(1deg) !important; }

.rotate-2 { transform: rotate(2deg) !important; }

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

.rotate-4 { transform: rotate(4deg) !important; }

.rotate-5 { transform: rotate(5deg) !important; }

.rotate-6 { transform: rotate(6deg) !important; }

.rotate-7 { transform: rotate(7deg) !important; }

.rotate-8 { transform: rotate(8deg) !important; }

.rotate-9 { transform: rotate(9deg) !important; }

.rotate-10 { transform: rotate(10deg) !important; }

.rotate-11 { transform: rotate(11deg) !important; }

.rotate-12 { transform: rotate(12deg) !important; }

.rotate-13 { transform: rotate(13deg) !important; }

.rotate-14 { transform: rotate(14deg) !important; }

.rotate-15 { transform: rotate(15deg) !important; }

.rotate-16 { transform: rotate(16deg) !important; }

.rotate-17 { transform: rotate(17deg) !important; }

.rotate-18 { transform: rotate(18deg) !important; }

.rotate-19 { transform: rotate(19deg) !important; }

.rotate-20 { transform: rotate(20deg) !important; }

.rotate-21 { transform: rotate(21deg) !important; }

.rotate-22 { transform: rotate(22deg) !important; }

.rotate-23 { transform: rotate(23deg) !important; }

.rotate-24 { transform: rotate(24deg) !important; }

.rotate-25 { transform: rotate(25deg) !important; }

.rotate-26 { transform: rotate(26deg) !important; }

.rotate-27 { transform: rotate(27deg) !important; }

.rotate-28 { transform: rotate(28deg) !important; }

.rotate-29 { transform: rotate(29deg) !important; }

.rotate-30 { transform: rotate(30deg) !important; }

.rotate-31 { transform: rotate(31deg) !important; }

.rotate-32 { transform: rotate(32deg) !important; }

.rotate-33 { transform: rotate(33deg) !important; }

.rotate-34 { transform: rotate(34deg) !important; }

.rotate-35 { transform: rotate(35deg) !important; }

.rotate-36 { transform: rotate(36deg) !important; }

.rotate-37 { transform: rotate(37deg) !important; }

.rotate-38 { transform: rotate(38deg) !important; }

.rotate-39 { transform: rotate(39deg) !important; }

.rotate-40 { transform: rotate(40deg) !important; }

.rotate-41 { transform: rotate(41deg) !important; }

.rotate-42 { transform: rotate(42deg) !important; }

.rotate-43 { transform: rotate(43deg) !important; }

.rotate-44 { transform: rotate(44deg) !important; }

.rotate-45 { transform: rotate(45deg) !important; }

.rotate-46 { transform: rotate(46deg) !important; }

.rotate-47 { transform: rotate(47deg) !important; }

.rotate-48 { transform: rotate(48deg) !important; }

.rotate-49 { transform: rotate(49deg) !important; }

.rotate-50 { transform: rotate(50deg) !important; }

.rotate-51 { transform: rotate(51deg) !important; }

.rotate-52 { transform: rotate(52deg) !important; }

.rotate-53 { transform: rotate(53deg) !important; }

.rotate-54 { transform: rotate(54deg) !important; }

.rotate-55 { transform: rotate(55deg) !important; }

.rotate-56 { transform: rotate(56deg) !important; }

.rotate-57 { transform: rotate(57deg) !important; }

.rotate-58 { transform: rotate(58deg) !important; }

.rotate-59 { transform: rotate(59deg) !important; }

.rotate-60 { transform: rotate(60deg) !important; }

.rotate-61 { transform: rotate(61deg) !important; }

.rotate-62 { transform: rotate(62deg) !important; }

.rotate-63 { transform: rotate(63deg) !important; }

.rotate-64 { transform: rotate(64deg) !important; }

.rotate-65 { transform: rotate(65deg) !important; }

.rotate-66 { transform: rotate(66deg) !important; }

.rotate-67 { transform: rotate(67deg) !important; }

.rotate-68 { transform: rotate(68deg) !important; }

.rotate-69 { transform: rotate(69deg) !important; }

.rotate-70 { transform: rotate(70deg) !important; }

.rotate-71 { transform: rotate(71deg) !important; }

.rotate-72 { transform: rotate(72deg) !important; }

.rotate-73 { transform: rotate(73deg) !important; }

.rotate-74 { transform: rotate(74deg) !important; }

.rotate-75 { transform: rotate(75deg) !important; }

.rotate-76 { transform: rotate(76deg) !important; }

.rotate-77 { transform: rotate(77deg) !important; }

.rotate-78 { transform: rotate(78deg) !important; }

.rotate-79 { transform: rotate(79deg) !important; }

.rotate-80 { transform: rotate(80deg) !important; }

.rotate-81 { transform: rotate(81deg) !important; }

.rotate-82 { transform: rotate(82deg) !important; }

.rotate-83 { transform: rotate(83deg) !important; }

.rotate-84 { transform: rotate(84deg) !important; }

.rotate-85 { transform: rotate(85deg) !important; }

.rotate-86 { transform: rotate(86deg) !important; }

.rotate-87 { transform: rotate(87deg) !important; }

.rotate-88 { transform: rotate(88deg) !important; }

.rotate-89 { transform: rotate(89deg) !important; }

.rotate-90 { transform: rotate(90deg) !important; }

.rotate-91 { transform: rotate(91deg) !important; }

.rotate-92 { transform: rotate(92deg) !important; }

.rotate-93 { transform: rotate(93deg) !important; }

.rotate-94 { transform: rotate(94deg) !important; }

.rotate-95 { transform: rotate(95deg) !important; }

.rotate-96 { transform: rotate(96deg) !important; }

.rotate-97 { transform: rotate(97deg) !important; }

.rotate-98 { transform: rotate(98deg) !important; }

.rotate-99 { transform: rotate(99deg) !important; }

.rotate-100 { transform: rotate(100deg) !important; }

.rotate-101 { transform: rotate(101deg) !important; }

.rotate-102 { transform: rotate(102deg) !important; }

.rotate-103 { transform: rotate(103deg) !important; }

.rotate-104 { transform: rotate(104deg) !important; }

.rotate-105 { transform: rotate(105deg) !important; }

.rotate-106 { transform: rotate(106deg) !important; }

.rotate-107 { transform: rotate(107deg) !important; }

.rotate-108 { transform: rotate(108deg) !important; }

.rotate-109 { transform: rotate(109deg) !important; }

.rotate-110 { transform: rotate(110deg) !important; }

.rotate-111 { transform: rotate(111deg) !important; }

.rotate-112 { transform: rotate(112deg) !important; }

.rotate-113 { transform: rotate(113deg) !important; }

.rotate-114 { transform: rotate(114deg) !important; }

.rotate-115 { transform: rotate(115deg) !important; }

.rotate-116 { transform: rotate(116deg) !important; }

.rotate-117 { transform: rotate(117deg) !important; }

.rotate-118 { transform: rotate(118deg) !important; }

.rotate-119 { transform: rotate(119deg) !important; }

.rotate-120 { transform: rotate(120deg) !important; }

.rotate-121 { transform: rotate(121deg) !important; }

.rotate-122 { transform: rotate(122deg) !important; }

.rotate-123 { transform: rotate(123deg) !important; }

.rotate-124 { transform: rotate(124deg) !important; }

.rotate-125 { transform: rotate(125deg) !important; }

.rotate-126 { transform: rotate(126deg) !important; }

.rotate-127 { transform: rotate(127deg) !important; }

.rotate-128 { transform: rotate(128deg) !important; }

.rotate-129 { transform: rotate(129deg) !important; }

.rotate-130 { transform: rotate(130deg) !important; }

.rotate-131 { transform: rotate(131deg) !important; }

.rotate-132 { transform: rotate(132deg) !important; }

.rotate-133 { transform: rotate(133deg) !important; }

.rotate-134 { transform: rotate(134deg) !important; }

.rotate-135 { transform: rotate(135deg) !important; }

.rotate-136 { transform: rotate(136deg) !important; }

.rotate-137 { transform: rotate(137deg) !important; }

.rotate-138 { transform: rotate(138deg) !important; }

.rotate-139 { transform: rotate(139deg) !important; }

.rotate-140 { transform: rotate(140deg) !important; }

.rotate-141 { transform: rotate(141deg) !important; }

.rotate-142 { transform: rotate(142deg) !important; }

.rotate-143 { transform: rotate(143deg) !important; }

.rotate-144 { transform: rotate(144deg) !important; }

.rotate-145 { transform: rotate(145deg) !important; }

.rotate-146 { transform: rotate(146deg) !important; }

.rotate-147 { transform: rotate(147deg) !important; }

.rotate-148 { transform: rotate(148deg) !important; }

.rotate-149 { transform: rotate(149deg) !important; }

.rotate-150 { transform: rotate(150deg) !important; }

.rotate-151 { transform: rotate(151deg) !important; }

.rotate-152 { transform: rotate(152deg) !important; }

.rotate-153 { transform: rotate(153deg) !important; }

.rotate-154 { transform: rotate(154deg) !important; }

.rotate-155 { transform: rotate(155deg) !important; }

.rotate-156 { transform: rotate(156deg) !important; }

.rotate-157 { transform: rotate(157deg) !important; }

.rotate-158 { transform: rotate(158deg) !important; }

.rotate-159 { transform: rotate(159deg) !important; }

.rotate-160 { transform: rotate(160deg) !important; }

.rotate-161 { transform: rotate(161deg) !important; }

.rotate-162 { transform: rotate(162deg) !important; }

.rotate-163 { transform: rotate(163deg) !important; }

.rotate-164 { transform: rotate(164deg) !important; }

.rotate-165 { transform: rotate(165deg) !important; }

.rotate-166 { transform: rotate(166deg) !important; }

.rotate-167 { transform: rotate(167deg) !important; }

.rotate-168 { transform: rotate(168deg) !important; }

.rotate-169 { transform: rotate(169deg) !important; }

.rotate-170 { transform: rotate(170deg) !important; }

.rotate-171 { transform: rotate(171deg) !important; }

.rotate-172 { transform: rotate(172deg) !important; }

.rotate-173 { transform: rotate(173deg) !important; }

.rotate-174 { transform: rotate(174deg) !important; }

.rotate-175 { transform: rotate(175deg) !important; }

.rotate-176 { transform: rotate(176deg) !important; }

.rotate-177 { transform: rotate(177deg) !important; }

.rotate-178 { transform: rotate(178deg) !important; }

.rotate-179 { transform: rotate(179deg) !important; }

.rotate-180 { transform: rotate(180deg) !important; }

.rotate-181 { transform: rotate(181deg) !important; }

.rotate-182 { transform: rotate(182deg) !important; }

.rotate-183 { transform: rotate(183deg) !important; }

.rotate-184 { transform: rotate(184deg) !important; }

.rotate-185 { transform: rotate(185deg) !important; }

.rotate-186 { transform: rotate(186deg) !important; }

.rotate-187 { transform: rotate(187deg) !important; }

.rotate-188 { transform: rotate(188deg) !important; }

.rotate-189 { transform: rotate(189deg) !important; }

.rotate-190 { transform: rotate(190deg) !important; }

.rotate-191 { transform: rotate(191deg) !important; }

.rotate-192 { transform: rotate(192deg) !important; }

.rotate-193 { transform: rotate(193deg) !important; }

.rotate-194 { transform: rotate(194deg) !important; }

.rotate-195 { transform: rotate(195deg) !important; }

.rotate-196 { transform: rotate(196deg) !important; }

.rotate-197 { transform: rotate(197deg) !important; }

.rotate-198 { transform: rotate(198deg) !important; }

.rotate-199 { transform: rotate(199deg) !important; }

.rotate-200 { transform: rotate(200deg) !important; }

.rotate-201 { transform: rotate(201deg) !important; }

.rotate-202 { transform: rotate(202deg) !important; }

.rotate-203 { transform: rotate(203deg) !important; }

.rotate-204 { transform: rotate(204deg) !important; }

.rotate-205 { transform: rotate(205deg) !important; }

.rotate-206 { transform: rotate(206deg) !important; }

.rotate-207 { transform: rotate(207deg) !important; }

.rotate-208 { transform: rotate(208deg) !important; }

.rotate-209 { transform: rotate(209deg) !important; }

.rotate-210 { transform: rotate(210deg) !important; }

.rotate-211 { transform: rotate(211deg) !important; }

.rotate-212 { transform: rotate(212deg) !important; }

.rotate-213 { transform: rotate(213deg) !important; }

.rotate-214 { transform: rotate(214deg) !important; }

.rotate-215 { transform: rotate(215deg) !important; }

.rotate-216 { transform: rotate(216deg) !important; }

.rotate-217 { transform: rotate(217deg) !important; }

.rotate-218 { transform: rotate(218deg) !important; }

.rotate-219 { transform: rotate(219deg) !important; }

.rotate-220 { transform: rotate(220deg) !important; }

.rotate-221 { transform: rotate(221deg) !important; }

.rotate-222 { transform: rotate(222deg) !important; }

.rotate-223 { transform: rotate(223deg) !important; }

.rotate-224 { transform: rotate(224deg) !important; }

.rotate-225 { transform: rotate(225deg) !important; }

.rotate-226 { transform: rotate(226deg) !important; }

.rotate-227 { transform: rotate(227deg) !important; }

.rotate-228 { transform: rotate(228deg) !important; }

.rotate-229 { transform: rotate(229deg) !important; }

.rotate-230 { transform: rotate(230deg) !important; }

.rotate-231 { transform: rotate(231deg) !important; }

.rotate-232 { transform: rotate(232deg) !important; }

.rotate-233 { transform: rotate(233deg) !important; }

.rotate-234 { transform: rotate(234deg) !important; }

.rotate-235 { transform: rotate(235deg) !important; }

.rotate-236 { transform: rotate(236deg) !important; }

.rotate-237 { transform: rotate(237deg) !important; }

.rotate-238 { transform: rotate(238deg) !important; }

.rotate-239 { transform: rotate(239deg) !important; }

.rotate-240 { transform: rotate(240deg) !important; }

.rotate-241 { transform: rotate(241deg) !important; }

.rotate-242 { transform: rotate(242deg) !important; }

.rotate-243 { transform: rotate(243deg) !important; }

.rotate-244 { transform: rotate(244deg) !important; }

.rotate-245 { transform: rotate(245deg) !important; }

.rotate-246 { transform: rotate(246deg) !important; }

.rotate-247 { transform: rotate(247deg) !important; }

.rotate-248 { transform: rotate(248deg) !important; }

.rotate-249 { transform: rotate(249deg) !important; }

.rotate-250 { transform: rotate(250deg) !important; }

.rotate-251 { transform: rotate(251deg) !important; }

.rotate-252 { transform: rotate(252deg) !important; }

.rotate-253 { transform: rotate(253deg) !important; }

.rotate-254 { transform: rotate(254deg) !important; }

.rotate-255 { transform: rotate(255deg) !important; }

.rotate-256 { transform: rotate(256deg) !important; }

.rotate-257 { transform: rotate(257deg) !important; }

.rotate-258 { transform: rotate(258deg) !important; }

.rotate-259 { transform: rotate(259deg) !important; }

.rotate-260 { transform: rotate(260deg) !important; }

.rotate-261 { transform: rotate(261deg) !important; }

.rotate-262 { transform: rotate(262deg) !important; }

.rotate-263 { transform: rotate(263deg) !important; }

.rotate-264 { transform: rotate(264deg) !important; }

.rotate-265 { transform: rotate(265deg) !important; }

.rotate-266 { transform: rotate(266deg) !important; }

.rotate-267 { transform: rotate(267deg) !important; }

.rotate-268 { transform: rotate(268deg) !important; }

.rotate-269 { transform: rotate(269deg) !important; }

.rotate-270 { transform: rotate(270deg) !important; }

.rotate-271 { transform: rotate(271deg) !important; }

.rotate-272 { transform: rotate(272deg) !important; }

.rotate-273 { transform: rotate(273deg) !important; }

.rotate-274 { transform: rotate(274deg) !important; }

.rotate-275 { transform: rotate(275deg) !important; }

.rotate-276 { transform: rotate(276deg) !important; }

.rotate-277 { transform: rotate(277deg) !important; }

.rotate-278 { transform: rotate(278deg) !important; }

.rotate-279 { transform: rotate(279deg) !important; }

.rotate-280 { transform: rotate(280deg) !important; }

.rotate-281 { transform: rotate(281deg) !important; }

.rotate-282 { transform: rotate(282deg) !important; }

.rotate-283 { transform: rotate(283deg) !important; }

.rotate-284 { transform: rotate(284deg) !important; }

.rotate-285 { transform: rotate(285deg) !important; }

.rotate-286 { transform: rotate(286deg) !important; }

.rotate-287 { transform: rotate(287deg) !important; }

.rotate-288 { transform: rotate(288deg) !important; }

.rotate-289 { transform: rotate(289deg) !important; }

.rotate-290 { transform: rotate(290deg) !important; }

.rotate-291 { transform: rotate(291deg) !important; }

.rotate-292 { transform: rotate(292deg) !important; }

.rotate-293 { transform: rotate(293deg) !important; }

.rotate-294 { transform: rotate(294deg) !important; }

.rotate-295 { transform: rotate(295deg) !important; }

.rotate-296 { transform: rotate(296deg) !important; }

.rotate-297 { transform: rotate(297deg) !important; }

.rotate-298 { transform: rotate(298deg) !important; }

.rotate-299 { transform: rotate(299deg) !important; }

.rotate-300 { transform: rotate(300deg) !important; }

.rotate-301 { transform: rotate(301deg) !important; }

.rotate-302 { transform: rotate(302deg) !important; }

.rotate-303 { transform: rotate(303deg) !important; }

.rotate-304 { transform: rotate(304deg) !important; }

.rotate-305 { transform: rotate(305deg) !important; }

.rotate-306 { transform: rotate(306deg) !important; }

.rotate-307 { transform: rotate(307deg) !important; }

.rotate-308 { transform: rotate(308deg) !important; }

.rotate-309 { transform: rotate(309deg) !important; }

.rotate-310 { transform: rotate(310deg) !important; }

.rotate-311 { transform: rotate(311deg) !important; }

.rotate-312 { transform: rotate(312deg) !important; }

.rotate-313 { transform: rotate(313deg) !important; }

.rotate-314 { transform: rotate(314deg) !important; }

.rotate-315 { transform: rotate(315deg) !important; }

.rotate-316 { transform: rotate(316deg) !important; }

.rotate-317 { transform: rotate(317deg) !important; }

.rotate-318 { transform: rotate(318deg) !important; }

.rotate-319 { transform: rotate(319deg) !important; }

.rotate-320 { transform: rotate(320deg) !important; }

.rotate-321 { transform: rotate(321deg) !important; }

.rotate-322 { transform: rotate(322deg) !important; }

.rotate-323 { transform: rotate(323deg) !important; }

.rotate-324 { transform: rotate(324deg) !important; }

.rotate-325 { transform: rotate(325deg) !important; }

.rotate-326 { transform: rotate(326deg) !important; }

.rotate-327 { transform: rotate(327deg) !important; }

.rotate-328 { transform: rotate(328deg) !important; }

.rotate-329 { transform: rotate(329deg) !important; }

.rotate-330 { transform: rotate(330deg) !important; }

.rotate-331 { transform: rotate(331deg) !important; }

.rotate-332 { transform: rotate(332deg) !important; }

.rotate-333 { transform: rotate(333deg) !important; }

.rotate-334 { transform: rotate(334deg) !important; }

.rotate-335 { transform: rotate(335deg) !important; }

.rotate-336 { transform: rotate(336deg) !important; }

.rotate-337 { transform: rotate(337deg) !important; }

.rotate-338 { transform: rotate(338deg) !important; }

.rotate-339 { transform: rotate(339deg) !important; }

.rotate-340 { transform: rotate(340deg) !important; }

.rotate-341 { transform: rotate(341deg) !important; }

.rotate-342 { transform: rotate(342deg) !important; }

.rotate-343 { transform: rotate(343deg) !important; }

.rotate-344 { transform: rotate(344deg) !important; }

.rotate-345 { transform: rotate(345deg) !important; }

.rotate-346 { transform: rotate(346deg) !important; }

.rotate-347 { transform: rotate(347deg) !important; }

.rotate-348 { transform: rotate(348deg) !important; }

.rotate-349 { transform: rotate(349deg) !important; }

.rotate-350 { transform: rotate(350deg) !important; }

.rotate-351 { transform: rotate(351deg) !important; }

.rotate-352 { transform: rotate(352deg) !important; }

.rotate-353 { transform: rotate(353deg) !important; }

.rotate-354 { transform: rotate(354deg) !important; }

.rotate-355 { transform: rotate(355deg) !important; }

.rotate-356 { transform: rotate(356deg) !important; }

.rotate-357 { transform: rotate(357deg) !important; }

.rotate-358 { transform: rotate(358deg) !important; }

.rotate-359 { transform: rotate(359deg) !important; }

.rotate-360 { transform: rotate(360deg) !important; }

@media (min-width: 991px) { .rotate-lg-1 { transform: rotate(1deg) !important; }
  .rotate-lg-2 { transform: rotate(2deg) !important; }
  .rotate-lg-3 { transform: rotate(3deg) !important; }
  .rotate-lg-4 { transform: rotate(4deg) !important; }
  .rotate-lg-5 { transform: rotate(5deg) !important; }
  .rotate-lg-6 { transform: rotate(6deg) !important; }
  .rotate-lg-7 { transform: rotate(7deg) !important; }
  .rotate-lg-8 { transform: rotate(8deg) !important; }
  .rotate-lg-9 { transform: rotate(9deg) !important; }
  .rotate-lg-10 { transform: rotate(10deg) !important; }
  .rotate-lg-11 { transform: rotate(11deg) !important; }
  .rotate-lg-12 { transform: rotate(12deg) !important; }
  .rotate-lg-13 { transform: rotate(13deg) !important; }
  .rotate-lg-14 { transform: rotate(14deg) !important; }
  .rotate-lg-15 { transform: rotate(15deg) !important; }
  .rotate-lg-16 { transform: rotate(16deg) !important; }
  .rotate-lg-17 { transform: rotate(17deg) !important; }
  .rotate-lg-18 { transform: rotate(18deg) !important; }
  .rotate-lg-19 { transform: rotate(19deg) !important; }
  .rotate-lg-20 { transform: rotate(20deg) !important; }
  .rotate-lg-21 { transform: rotate(21deg) !important; }
  .rotate-lg-22 { transform: rotate(22deg) !important; }
  .rotate-lg-23 { transform: rotate(23deg) !important; }
  .rotate-lg-24 { transform: rotate(24deg) !important; }
  .rotate-lg-25 { transform: rotate(25deg) !important; }
  .rotate-lg-26 { transform: rotate(26deg) !important; }
  .rotate-lg-27 { transform: rotate(27deg) !important; }
  .rotate-lg-28 { transform: rotate(28deg) !important; }
  .rotate-lg-29 { transform: rotate(29deg) !important; }
  .rotate-lg-30 { transform: rotate(30deg) !important; }
  .rotate-lg-31 { transform: rotate(31deg) !important; }
  .rotate-lg-32 { transform: rotate(32deg) !important; }
  .rotate-lg-33 { transform: rotate(33deg) !important; }
  .rotate-lg-34 { transform: rotate(34deg) !important; }
  .rotate-lg-35 { transform: rotate(35deg) !important; }
  .rotate-lg-36 { transform: rotate(36deg) !important; }
  .rotate-lg-37 { transform: rotate(37deg) !important; }
  .rotate-lg-38 { transform: rotate(38deg) !important; }
  .rotate-lg-39 { transform: rotate(39deg) !important; }
  .rotate-lg-40 { transform: rotate(40deg) !important; }
  .rotate-lg-41 { transform: rotate(41deg) !important; }
  .rotate-lg-42 { transform: rotate(42deg) !important; }
  .rotate-lg-43 { transform: rotate(43deg) !important; }
  .rotate-lg-44 { transform: rotate(44deg) !important; }
  .rotate-lg-45 { transform: rotate(45deg) !important; }
  .rotate-lg-46 { transform: rotate(46deg) !important; }
  .rotate-lg-47 { transform: rotate(47deg) !important; }
  .rotate-lg-48 { transform: rotate(48deg) !important; }
  .rotate-lg-49 { transform: rotate(49deg) !important; }
  .rotate-lg-50 { transform: rotate(50deg) !important; }
  .rotate-lg-51 { transform: rotate(51deg) !important; }
  .rotate-lg-52 { transform: rotate(52deg) !important; }
  .rotate-lg-53 { transform: rotate(53deg) !important; }
  .rotate-lg-54 { transform: rotate(54deg) !important; }
  .rotate-lg-55 { transform: rotate(55deg) !important; }
  .rotate-lg-56 { transform: rotate(56deg) !important; }
  .rotate-lg-57 { transform: rotate(57deg) !important; }
  .rotate-lg-58 { transform: rotate(58deg) !important; }
  .rotate-lg-59 { transform: rotate(59deg) !important; }
  .rotate-lg-60 { transform: rotate(60deg) !important; }
  .rotate-lg-61 { transform: rotate(61deg) !important; }
  .rotate-lg-62 { transform: rotate(62deg) !important; }
  .rotate-lg-63 { transform: rotate(63deg) !important; }
  .rotate-lg-64 { transform: rotate(64deg) !important; }
  .rotate-lg-65 { transform: rotate(65deg) !important; }
  .rotate-lg-66 { transform: rotate(66deg) !important; }
  .rotate-lg-67 { transform: rotate(67deg) !important; }
  .rotate-lg-68 { transform: rotate(68deg) !important; }
  .rotate-lg-69 { transform: rotate(69deg) !important; }
  .rotate-lg-70 { transform: rotate(70deg) !important; }
  .rotate-lg-71 { transform: rotate(71deg) !important; }
  .rotate-lg-72 { transform: rotate(72deg) !important; }
  .rotate-lg-73 { transform: rotate(73deg) !important; }
  .rotate-lg-74 { transform: rotate(74deg) !important; }
  .rotate-lg-75 { transform: rotate(75deg) !important; }
  .rotate-lg-76 { transform: rotate(76deg) !important; }
  .rotate-lg-77 { transform: rotate(77deg) !important; }
  .rotate-lg-78 { transform: rotate(78deg) !important; }
  .rotate-lg-79 { transform: rotate(79deg) !important; }
  .rotate-lg-80 { transform: rotate(80deg) !important; }
  .rotate-lg-81 { transform: rotate(81deg) !important; }
  .rotate-lg-82 { transform: rotate(82deg) !important; }
  .rotate-lg-83 { transform: rotate(83deg) !important; }
  .rotate-lg-84 { transform: rotate(84deg) !important; }
  .rotate-lg-85 { transform: rotate(85deg) !important; }
  .rotate-lg-86 { transform: rotate(86deg) !important; }
  .rotate-lg-87 { transform: rotate(87deg) !important; }
  .rotate-lg-88 { transform: rotate(88deg) !important; }
  .rotate-lg-89 { transform: rotate(89deg) !important; }
  .rotate-lg-90 { transform: rotate(90deg) !important; }
  .rotate-lg-91 { transform: rotate(91deg) !important; }
  .rotate-lg-92 { transform: rotate(92deg) !important; }
  .rotate-lg-93 { transform: rotate(93deg) !important; }
  .rotate-lg-94 { transform: rotate(94deg) !important; }
  .rotate-lg-95 { transform: rotate(95deg) !important; }
  .rotate-lg-96 { transform: rotate(96deg) !important; }
  .rotate-lg-97 { transform: rotate(97deg) !important; }
  .rotate-lg-98 { transform: rotate(98deg) !important; }
  .rotate-lg-99 { transform: rotate(99deg) !important; }
  .rotate-lg-100 { transform: rotate(100deg) !important; }
  .rotate-lg-101 { transform: rotate(101deg) !important; }
  .rotate-lg-102 { transform: rotate(102deg) !important; }
  .rotate-lg-103 { transform: rotate(103deg) !important; }
  .rotate-lg-104 { transform: rotate(104deg) !important; }
  .rotate-lg-105 { transform: rotate(105deg) !important; }
  .rotate-lg-106 { transform: rotate(106deg) !important; }
  .rotate-lg-107 { transform: rotate(107deg) !important; }
  .rotate-lg-108 { transform: rotate(108deg) !important; }
  .rotate-lg-109 { transform: rotate(109deg) !important; }
  .rotate-lg-110 { transform: rotate(110deg) !important; }
  .rotate-lg-111 { transform: rotate(111deg) !important; }
  .rotate-lg-112 { transform: rotate(112deg) !important; }
  .rotate-lg-113 { transform: rotate(113deg) !important; }
  .rotate-lg-114 { transform: rotate(114deg) !important; }
  .rotate-lg-115 { transform: rotate(115deg) !important; }
  .rotate-lg-116 { transform: rotate(116deg) !important; }
  .rotate-lg-117 { transform: rotate(117deg) !important; }
  .rotate-lg-118 { transform: rotate(118deg) !important; }
  .rotate-lg-119 { transform: rotate(119deg) !important; }
  .rotate-lg-120 { transform: rotate(120deg) !important; }
  .rotate-lg-121 { transform: rotate(121deg) !important; }
  .rotate-lg-122 { transform: rotate(122deg) !important; }
  .rotate-lg-123 { transform: rotate(123deg) !important; }
  .rotate-lg-124 { transform: rotate(124deg) !important; }
  .rotate-lg-125 { transform: rotate(125deg) !important; }
  .rotate-lg-126 { transform: rotate(126deg) !important; }
  .rotate-lg-127 { transform: rotate(127deg) !important; }
  .rotate-lg-128 { transform: rotate(128deg) !important; }
  .rotate-lg-129 { transform: rotate(129deg) !important; }
  .rotate-lg-130 { transform: rotate(130deg) !important; }
  .rotate-lg-131 { transform: rotate(131deg) !important; }
  .rotate-lg-132 { transform: rotate(132deg) !important; }
  .rotate-lg-133 { transform: rotate(133deg) !important; }
  .rotate-lg-134 { transform: rotate(134deg) !important; }
  .rotate-lg-135 { transform: rotate(135deg) !important; }
  .rotate-lg-136 { transform: rotate(136deg) !important; }
  .rotate-lg-137 { transform: rotate(137deg) !important; }
  .rotate-lg-138 { transform: rotate(138deg) !important; }
  .rotate-lg-139 { transform: rotate(139deg) !important; }
  .rotate-lg-140 { transform: rotate(140deg) !important; }
  .rotate-lg-141 { transform: rotate(141deg) !important; }
  .rotate-lg-142 { transform: rotate(142deg) !important; }
  .rotate-lg-143 { transform: rotate(143deg) !important; }
  .rotate-lg-144 { transform: rotate(144deg) !important; }
  .rotate-lg-145 { transform: rotate(145deg) !important; }
  .rotate-lg-146 { transform: rotate(146deg) !important; }
  .rotate-lg-147 { transform: rotate(147deg) !important; }
  .rotate-lg-148 { transform: rotate(148deg) !important; }
  .rotate-lg-149 { transform: rotate(149deg) !important; }
  .rotate-lg-150 { transform: rotate(150deg) !important; }
  .rotate-lg-151 { transform: rotate(151deg) !important; }
  .rotate-lg-152 { transform: rotate(152deg) !important; }
  .rotate-lg-153 { transform: rotate(153deg) !important; }
  .rotate-lg-154 { transform: rotate(154deg) !important; }
  .rotate-lg-155 { transform: rotate(155deg) !important; }
  .rotate-lg-156 { transform: rotate(156deg) !important; }
  .rotate-lg-157 { transform: rotate(157deg) !important; }
  .rotate-lg-158 { transform: rotate(158deg) !important; }
  .rotate-lg-159 { transform: rotate(159deg) !important; }
  .rotate-lg-160 { transform: rotate(160deg) !important; }
  .rotate-lg-161 { transform: rotate(161deg) !important; }
  .rotate-lg-162 { transform: rotate(162deg) !important; }
  .rotate-lg-163 { transform: rotate(163deg) !important; }
  .rotate-lg-164 { transform: rotate(164deg) !important; }
  .rotate-lg-165 { transform: rotate(165deg) !important; }
  .rotate-lg-166 { transform: rotate(166deg) !important; }
  .rotate-lg-167 { transform: rotate(167deg) !important; }
  .rotate-lg-168 { transform: rotate(168deg) !important; }
  .rotate-lg-169 { transform: rotate(169deg) !important; }
  .rotate-lg-170 { transform: rotate(170deg) !important; }
  .rotate-lg-171 { transform: rotate(171deg) !important; }
  .rotate-lg-172 { transform: rotate(172deg) !important; }
  .rotate-lg-173 { transform: rotate(173deg) !important; }
  .rotate-lg-174 { transform: rotate(174deg) !important; }
  .rotate-lg-175 { transform: rotate(175deg) !important; }
  .rotate-lg-176 { transform: rotate(176deg) !important; }
  .rotate-lg-177 { transform: rotate(177deg) !important; }
  .rotate-lg-178 { transform: rotate(178deg) !important; }
  .rotate-lg-179 { transform: rotate(179deg) !important; }
  .rotate-lg-180 { transform: rotate(180deg) !important; }
  .rotate-lg-181 { transform: rotate(181deg) !important; }
  .rotate-lg-182 { transform: rotate(182deg) !important; }
  .rotate-lg-183 { transform: rotate(183deg) !important; }
  .rotate-lg-184 { transform: rotate(184deg) !important; }
  .rotate-lg-185 { transform: rotate(185deg) !important; }
  .rotate-lg-186 { transform: rotate(186deg) !important; }
  .rotate-lg-187 { transform: rotate(187deg) !important; }
  .rotate-lg-188 { transform: rotate(188deg) !important; }
  .rotate-lg-189 { transform: rotate(189deg) !important; }
  .rotate-lg-190 { transform: rotate(190deg) !important; }
  .rotate-lg-191 { transform: rotate(191deg) !important; }
  .rotate-lg-192 { transform: rotate(192deg) !important; }
  .rotate-lg-193 { transform: rotate(193deg) !important; }
  .rotate-lg-194 { transform: rotate(194deg) !important; }
  .rotate-lg-195 { transform: rotate(195deg) !important; }
  .rotate-lg-196 { transform: rotate(196deg) !important; }
  .rotate-lg-197 { transform: rotate(197deg) !important; }
  .rotate-lg-198 { transform: rotate(198deg) !important; }
  .rotate-lg-199 { transform: rotate(199deg) !important; }
  .rotate-lg-200 { transform: rotate(200deg) !important; }
  .rotate-lg-201 { transform: rotate(201deg) !important; }
  .rotate-lg-202 { transform: rotate(202deg) !important; }
  .rotate-lg-203 { transform: rotate(203deg) !important; }
  .rotate-lg-204 { transform: rotate(204deg) !important; }
  .rotate-lg-205 { transform: rotate(205deg) !important; }
  .rotate-lg-206 { transform: rotate(206deg) !important; }
  .rotate-lg-207 { transform: rotate(207deg) !important; }
  .rotate-lg-208 { transform: rotate(208deg) !important; }
  .rotate-lg-209 { transform: rotate(209deg) !important; }
  .rotate-lg-210 { transform: rotate(210deg) !important; }
  .rotate-lg-211 { transform: rotate(211deg) !important; }
  .rotate-lg-212 { transform: rotate(212deg) !important; }
  .rotate-lg-213 { transform: rotate(213deg) !important; }
  .rotate-lg-214 { transform: rotate(214deg) !important; }
  .rotate-lg-215 { transform: rotate(215deg) !important; }
  .rotate-lg-216 { transform: rotate(216deg) !important; }
  .rotate-lg-217 { transform: rotate(217deg) !important; }
  .rotate-lg-218 { transform: rotate(218deg) !important; }
  .rotate-lg-219 { transform: rotate(219deg) !important; }
  .rotate-lg-220 { transform: rotate(220deg) !important; }
  .rotate-lg-221 { transform: rotate(221deg) !important; }
  .rotate-lg-222 { transform: rotate(222deg) !important; }
  .rotate-lg-223 { transform: rotate(223deg) !important; }
  .rotate-lg-224 { transform: rotate(224deg) !important; }
  .rotate-lg-225 { transform: rotate(225deg) !important; }
  .rotate-lg-226 { transform: rotate(226deg) !important; }
  .rotate-lg-227 { transform: rotate(227deg) !important; }
  .rotate-lg-228 { transform: rotate(228deg) !important; }
  .rotate-lg-229 { transform: rotate(229deg) !important; }
  .rotate-lg-230 { transform: rotate(230deg) !important; }
  .rotate-lg-231 { transform: rotate(231deg) !important; }
  .rotate-lg-232 { transform: rotate(232deg) !important; }
  .rotate-lg-233 { transform: rotate(233deg) !important; }
  .rotate-lg-234 { transform: rotate(234deg) !important; }
  .rotate-lg-235 { transform: rotate(235deg) !important; }
  .rotate-lg-236 { transform: rotate(236deg) !important; }
  .rotate-lg-237 { transform: rotate(237deg) !important; }
  .rotate-lg-238 { transform: rotate(238deg) !important; }
  .rotate-lg-239 { transform: rotate(239deg) !important; }
  .rotate-lg-240 { transform: rotate(240deg) !important; }
  .rotate-lg-241 { transform: rotate(241deg) !important; }
  .rotate-lg-242 { transform: rotate(242deg) !important; }
  .rotate-lg-243 { transform: rotate(243deg) !important; }
  .rotate-lg-244 { transform: rotate(244deg) !important; }
  .rotate-lg-245 { transform: rotate(245deg) !important; }
  .rotate-lg-246 { transform: rotate(246deg) !important; }
  .rotate-lg-247 { transform: rotate(247deg) !important; }
  .rotate-lg-248 { transform: rotate(248deg) !important; }
  .rotate-lg-249 { transform: rotate(249deg) !important; }
  .rotate-lg-250 { transform: rotate(250deg) !important; }
  .rotate-lg-251 { transform: rotate(251deg) !important; }
  .rotate-lg-252 { transform: rotate(252deg) !important; }
  .rotate-lg-253 { transform: rotate(253deg) !important; }
  .rotate-lg-254 { transform: rotate(254deg) !important; }
  .rotate-lg-255 { transform: rotate(255deg) !important; }
  .rotate-lg-256 { transform: rotate(256deg) !important; }
  .rotate-lg-257 { transform: rotate(257deg) !important; }
  .rotate-lg-258 { transform: rotate(258deg) !important; }
  .rotate-lg-259 { transform: rotate(259deg) !important; }
  .rotate-lg-260 { transform: rotate(260deg) !important; }
  .rotate-lg-261 { transform: rotate(261deg) !important; }
  .rotate-lg-262 { transform: rotate(262deg) !important; }
  .rotate-lg-263 { transform: rotate(263deg) !important; }
  .rotate-lg-264 { transform: rotate(264deg) !important; }
  .rotate-lg-265 { transform: rotate(265deg) !important; }
  .rotate-lg-266 { transform: rotate(266deg) !important; }
  .rotate-lg-267 { transform: rotate(267deg) !important; }
  .rotate-lg-268 { transform: rotate(268deg) !important; }
  .rotate-lg-269 { transform: rotate(269deg) !important; }
  .rotate-lg-270 { transform: rotate(270deg) !important; }
  .rotate-lg-271 { transform: rotate(271deg) !important; }
  .rotate-lg-272 { transform: rotate(272deg) !important; }
  .rotate-lg-273 { transform: rotate(273deg) !important; }
  .rotate-lg-274 { transform: rotate(274deg) !important; }
  .rotate-lg-275 { transform: rotate(275deg) !important; }
  .rotate-lg-276 { transform: rotate(276deg) !important; }
  .rotate-lg-277 { transform: rotate(277deg) !important; }
  .rotate-lg-278 { transform: rotate(278deg) !important; }
  .rotate-lg-279 { transform: rotate(279deg) !important; }
  .rotate-lg-280 { transform: rotate(280deg) !important; }
  .rotate-lg-281 { transform: rotate(281deg) !important; }
  .rotate-lg-282 { transform: rotate(282deg) !important; }
  .rotate-lg-283 { transform: rotate(283deg) !important; }
  .rotate-lg-284 { transform: rotate(284deg) !important; }
  .rotate-lg-285 { transform: rotate(285deg) !important; }
  .rotate-lg-286 { transform: rotate(286deg) !important; }
  .rotate-lg-287 { transform: rotate(287deg) !important; }
  .rotate-lg-288 { transform: rotate(288deg) !important; }
  .rotate-lg-289 { transform: rotate(289deg) !important; }
  .rotate-lg-290 { transform: rotate(290deg) !important; }
  .rotate-lg-291 { transform: rotate(291deg) !important; }
  .rotate-lg-292 { transform: rotate(292deg) !important; }
  .rotate-lg-293 { transform: rotate(293deg) !important; }
  .rotate-lg-294 { transform: rotate(294deg) !important; }
  .rotate-lg-295 { transform: rotate(295deg) !important; }
  .rotate-lg-296 { transform: rotate(296deg) !important; }
  .rotate-lg-297 { transform: rotate(297deg) !important; }
  .rotate-lg-298 { transform: rotate(298deg) !important; }
  .rotate-lg-299 { transform: rotate(299deg) !important; }
  .rotate-lg-300 { transform: rotate(300deg) !important; }
  .rotate-lg-301 { transform: rotate(301deg) !important; }
  .rotate-lg-302 { transform: rotate(302deg) !important; }
  .rotate-lg-303 { transform: rotate(303deg) !important; }
  .rotate-lg-304 { transform: rotate(304deg) !important; }
  .rotate-lg-305 { transform: rotate(305deg) !important; }
  .rotate-lg-306 { transform: rotate(306deg) !important; }
  .rotate-lg-307 { transform: rotate(307deg) !important; }
  .rotate-lg-308 { transform: rotate(308deg) !important; }
  .rotate-lg-309 { transform: rotate(309deg) !important; }
  .rotate-lg-310 { transform: rotate(310deg) !important; }
  .rotate-lg-311 { transform: rotate(311deg) !important; }
  .rotate-lg-312 { transform: rotate(312deg) !important; }
  .rotate-lg-313 { transform: rotate(313deg) !important; }
  .rotate-lg-314 { transform: rotate(314deg) !important; }
  .rotate-lg-315 { transform: rotate(315deg) !important; }
  .rotate-lg-316 { transform: rotate(316deg) !important; }
  .rotate-lg-317 { transform: rotate(317deg) !important; }
  .rotate-lg-318 { transform: rotate(318deg) !important; }
  .rotate-lg-319 { transform: rotate(319deg) !important; }
  .rotate-lg-320 { transform: rotate(320deg) !important; }
  .rotate-lg-321 { transform: rotate(321deg) !important; }
  .rotate-lg-322 { transform: rotate(322deg) !important; }
  .rotate-lg-323 { transform: rotate(323deg) !important; }
  .rotate-lg-324 { transform: rotate(324deg) !important; }
  .rotate-lg-325 { transform: rotate(325deg) !important; }
  .rotate-lg-326 { transform: rotate(326deg) !important; }
  .rotate-lg-327 { transform: rotate(327deg) !important; }
  .rotate-lg-328 { transform: rotate(328deg) !important; }
  .rotate-lg-329 { transform: rotate(329deg) !important; }
  .rotate-lg-330 { transform: rotate(330deg) !important; }
  .rotate-lg-331 { transform: rotate(331deg) !important; }
  .rotate-lg-332 { transform: rotate(332deg) !important; }
  .rotate-lg-333 { transform: rotate(333deg) !important; }
  .rotate-lg-334 { transform: rotate(334deg) !important; }
  .rotate-lg-335 { transform: rotate(335deg) !important; }
  .rotate-lg-336 { transform: rotate(336deg) !important; }
  .rotate-lg-337 { transform: rotate(337deg) !important; }
  .rotate-lg-338 { transform: rotate(338deg) !important; }
  .rotate-lg-339 { transform: rotate(339deg) !important; }
  .rotate-lg-340 { transform: rotate(340deg) !important; }
  .rotate-lg-341 { transform: rotate(341deg) !important; }
  .rotate-lg-342 { transform: rotate(342deg) !important; }
  .rotate-lg-343 { transform: rotate(343deg) !important; }
  .rotate-lg-344 { transform: rotate(344deg) !important; }
  .rotate-lg-345 { transform: rotate(345deg) !important; }
  .rotate-lg-346 { transform: rotate(346deg) !important; }
  .rotate-lg-347 { transform: rotate(347deg) !important; }
  .rotate-lg-348 { transform: rotate(348deg) !important; }
  .rotate-lg-349 { transform: rotate(349deg) !important; }
  .rotate-lg-350 { transform: rotate(350deg) !important; }
  .rotate-lg-351 { transform: rotate(351deg) !important; }
  .rotate-lg-352 { transform: rotate(352deg) !important; }
  .rotate-lg-353 { transform: rotate(353deg) !important; }
  .rotate-lg-354 { transform: rotate(354deg) !important; }
  .rotate-lg-355 { transform: rotate(355deg) !important; }
  .rotate-lg-356 { transform: rotate(356deg) !important; }
  .rotate-lg-357 { transform: rotate(357deg) !important; }
  .rotate-lg-358 { transform: rotate(358deg) !important; }
  .rotate-lg-359 { transform: rotate(359deg) !important; }
  .rotate-lg-360 { transform: rotate(360deg) !important; } }

/* オパシティ */
.opacity-1 { opacity: 0.1 !important; }

.opacity-2 { opacity: 0.2 !important; }

.opacity-3 { opacity: 0.3 !important; }

.opacity-4 { opacity: 0.4 !important; }

.opacity-5 { opacity: 0.5 !important; }

.opacity-6 { opacity: 0.6 !important; }

.opacity-7 { opacity: 0.7 !important; }

.opacity-8 { opacity: 0.8 !important; }

.opacity-9 { opacity: 0.9 !important; }

.opacity-10 { opacity: 1 !important; }

@media (min-width: 991px) { .opacity-lg-1 { opacity: 0.1 !important; }
  .opacity-lg-2 { opacity: 0.2 !important; }
  .opacity-lg-3 { opacity: 0.3 !important; }
  .opacity-lg-4 { opacity: 0.4 !important; }
  .opacity-lg-5 { opacity: 0.5 !important; }
  .opacity-lg-6 { opacity: 0.6 !important; }
  .opacity-lg-7 { opacity: 0.7 !important; }
  .opacity-lg-8 { opacity: 0.8 !important; }
  .opacity-lg-9 { opacity: 0.9 !important; }
  .opacity-lg-10 { opacity: 1 !important; } }

.bg-box { content: ""; position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; background-position: center; background-size: cover; background-repeat: no-repeat; }

.bg-shadow, .bg-shadow-top, .bg-shadow-bottom { position: absolute; top: 0; bottom: 0; left: 0; right: 0; margin: auto; }

.bg-shadow-top { background: linear-gradient(to bottom, black, rgba(0, 0, 0, 0)); bottom: auto; }

.bg-shadow-bottom { background: linear-gradient(to top, black, rgba(0, 0, 0, 0)); top: auto; }

.flex-1 { -ms-flex: 1; flex: 1; }

.flex-1-0-auto { -ms-flex: 1 0 auto; flex: 1 0 auto; }

.flex-middle { display: -ms-flexbox !important; display: flex !important; -ms-flex-align: center !important; align-items: center !important; -ms-flex-pack: center !important; justify-content: center !important; }

.overflow-auto { overflow: auto !important; }

.overflow-visible { overflow: visible !important; }

.overflow-hidden { overflow: hidden !important; }

@media (min-width: 991px) { .overflow-lg-auto { overflow: auto !important; }
  .overflow-lg-visible { overflow: visible !important; }
  .overflow-lg-hidden { overflow: hidden !important; } }

.no-after::after { display: none !important; }

.no-before::before { display: none !important; }

.stroke-white { color: transparent !important; text-stroke: 1px #fff; -webkit-text-stroke: 1px #fff; }

.stroke-black { color: transparent !important; text-stroke: 1px #1A1311; -webkit-text-stroke: 1px #1A1311; }

.stroke-key { color: transparent !important; text-stroke: 1px #FFEC00; -webkit-text-stroke: 1px #FFEC00; }

.stroke-base1 { color: transparent !important; text-stroke: 1px #F9F6ED; -webkit-text-stroke: 1px #F9F6ED; }

.stroke-base2 { color: transparent !important; text-stroke: 1px #F2EAEA; -webkit-text-stroke: 1px #F2EAEA; }

.stroke-base3 { color: transparent !important; text-stroke: 1px #F9F6ED; -webkit-text-stroke: 1px #F9F6ED; }

.stroke-gray { color: transparent !important; text-stroke: 1px #707070; -webkit-text-stroke: 1px #707070; }

.stroke-1 { text-stroke-width: 1px !important; -webkit-text-stroke-width: 1px !important; }

.stroke-2 { text-stroke-width: 2px !important; -webkit-text-stroke-width: 2px !important; }

.stroke-3 { text-stroke-width: 3px !important; -webkit-text-stroke-width: 3px !important; }

.stroke-4 { text-stroke-width: 4px !important; -webkit-text-stroke-width: 4px !important; }

.stroke-5 { text-stroke-width: 5px !important; -webkit-text-stroke-width: 5px !important; }

.stroke-6 { text-stroke-width: 6px !important; -webkit-text-stroke-width: 6px !important; }

.stroke-7 { text-stroke-width: 7px !important; -webkit-text-stroke-width: 7px !important; }

.stroke-8 { text-stroke-width: 8px !important; -webkit-text-stroke-width: 8px !important; }

.stroke-9 { text-stroke-width: 9px !important; -webkit-text-stroke-width: 9px !important; }

.stroke-10 { text-stroke-width: 10px !important; -webkit-text-stroke-width: 10px !important; }

@media all and (-ms-high-contrast: none) { .stroke-white { color: #fff !important; }
  .stroke-black { color: #1A1311 !important; }
  .stroke-key { color: #FFEC00 !important; }
  .stroke-base1 { color: #F9F6ED !important; }
  .stroke-base2 { color: #F2EAEA !important; }
  .stroke-base3 { color: #F9F6ED !important; }
  .stroke-gray { color: #707070 !important; } }

.arrow { position: absolute; }

.arrow-top-1 { position: absolute; top: -0.2rem; left: 0; right: 0; margin: auto; width: 0.1rem; height: 0.1rem; box-sizing: border-box; border: 0.1rem solid transparent; }

.arrow-top-1[data-color="white"] { border-bottom: 0.1rem solid #fff; }

.arrow-top-1[data-color="black"] { border-bottom: 0.1rem solid #1A1311; }

.arrow-top-1[data-color="key"] { border-bottom: 0.1rem solid #FFEC00; }

.arrow-top-1[data-color="base1"] { border-bottom: 0.1rem solid #F9F6ED; }

.arrow-top-1[data-color="base2"] { border-bottom: 0.1rem solid #F2EAEA; }

.arrow-top-1[data-color="base3"] { border-bottom: 0.1rem solid #F9F6ED; }

.arrow-top-1[data-color="gray"] { border-bottom: 0.1rem solid #707070; }

.arrow-bottom-1 { position: absolute; bottom: -0.2rem; left: 0; right: 0; margin: auto; width: 0.1rem; height: 0.1rem; box-sizing: border-box; border: 0.1rem solid transparent; }

.arrow-bottom-1[data-color="white"] { border-top: 0.1rem solid #fff; }

.arrow-bottom-1[data-color="black"] { border-top: 0.1rem solid #1A1311; }

.arrow-bottom-1[data-color="key"] { border-top: 0.1rem solid #FFEC00; }

.arrow-bottom-1[data-color="base1"] { border-top: 0.1rem solid #F9F6ED; }

.arrow-bottom-1[data-color="base2"] { border-top: 0.1rem solid #F2EAEA; }

.arrow-bottom-1[data-color="base3"] { border-top: 0.1rem solid #F9F6ED; }

.arrow-bottom-1[data-color="gray"] { border-top: 0.1rem solid #707070; }

.arrow-left-1 { position: absolute; top: 0; bottom: 0; left: -0.2rem; margin: auto; width: 0.1rem; height: 0.1rem; box-sizing: border-box; border: 0.1rem solid transparent; }

.arrow-left-1[data-color="white"] { border-right: 0.1rem solid #fff; }

.arrow-left-1[data-color="black"] { border-right: 0.1rem solid #1A1311; }

.arrow-left-1[data-color="key"] { border-right: 0.1rem solid #FFEC00; }

.arrow-left-1[data-color="base1"] { border-right: 0.1rem solid #F9F6ED; }

.arrow-left-1[data-color="base2"] { border-right: 0.1rem solid #F2EAEA; }

.arrow-left-1[data-color="base3"] { border-right: 0.1rem solid #F9F6ED; }

.arrow-left-1[data-color="gray"] { border-right: 0.1rem solid #707070; }

.arrow-right-1 { position: absolute; top: 0; bottom: 0; right: -0.2rem; margin: auto; width: 0.1rem; height: 0.1rem; box-sizing: border-box; border: 0.1rem solid transparent; }

.arrow-right-1[data-color="white"] { border-left: 0.1rem solid #fff; }

.arrow-right-1[data-color="black"] { border-left: 0.1rem solid #1A1311; }

.arrow-right-1[data-color="key"] { border-left: 0.1rem solid #FFEC00; }

.arrow-right-1[data-color="base1"] { border-left: 0.1rem solid #F9F6ED; }

.arrow-right-1[data-color="base2"] { border-left: 0.1rem solid #F2EAEA; }

.arrow-right-1[data-color="base3"] { border-left: 0.1rem solid #F9F6ED; }

.arrow-right-1[data-color="gray"] { border-left: 0.1rem solid #707070; }

.arrow-top-2 { position: absolute; top: -0.4rem; left: 0; right: 0; margin: auto; width: 0.2rem; height: 0.2rem; box-sizing: border-box; border: 0.2rem solid transparent; }

.arrow-top-2[data-color="white"] { border-bottom: 0.2rem solid #fff; }

.arrow-top-2[data-color="black"] { border-bottom: 0.2rem solid #1A1311; }

.arrow-top-2[data-color="key"] { border-bottom: 0.2rem solid #FFEC00; }

.arrow-top-2[data-color="base1"] { border-bottom: 0.2rem solid #F9F6ED; }

.arrow-top-2[data-color="base2"] { border-bottom: 0.2rem solid #F2EAEA; }

.arrow-top-2[data-color="base3"] { border-bottom: 0.2rem solid #F9F6ED; }

.arrow-top-2[data-color="gray"] { border-bottom: 0.2rem solid #707070; }

.arrow-bottom-2 { position: absolute; bottom: -0.4rem; left: 0; right: 0; margin: auto; width: 0.2rem; height: 0.2rem; box-sizing: border-box; border: 0.2rem solid transparent; }

.arrow-bottom-2[data-color="white"] { border-top: 0.2rem solid #fff; }

.arrow-bottom-2[data-color="black"] { border-top: 0.2rem solid #1A1311; }

.arrow-bottom-2[data-color="key"] { border-top: 0.2rem solid #FFEC00; }

.arrow-bottom-2[data-color="base1"] { border-top: 0.2rem solid #F9F6ED; }

.arrow-bottom-2[data-color="base2"] { border-top: 0.2rem solid #F2EAEA; }

.arrow-bottom-2[data-color="base3"] { border-top: 0.2rem solid #F9F6ED; }

.arrow-bottom-2[data-color="gray"] { border-top: 0.2rem solid #707070; }

.arrow-left-2 { position: absolute; top: 0; bottom: 0; left: -0.4rem; margin: auto; width: 0.2rem; height: 0.2rem; box-sizing: border-box; border: 0.2rem solid transparent; }

.arrow-left-2[data-color="white"] { border-right: 0.2rem solid #fff; }

.arrow-left-2[data-color="black"] { border-right: 0.2rem solid #1A1311; }

.arrow-left-2[data-color="key"] { border-right: 0.2rem solid #FFEC00; }

.arrow-left-2[data-color="base1"] { border-right: 0.2rem solid #F9F6ED; }

.arrow-left-2[data-color="base2"] { border-right: 0.2rem solid #F2EAEA; }

.arrow-left-2[data-color="base3"] { border-right: 0.2rem solid #F9F6ED; }

.arrow-left-2[data-color="gray"] { border-right: 0.2rem solid #707070; }

.arrow-right-2 { position: absolute; top: 0; bottom: 0; right: -0.4rem; margin: auto; width: 0.2rem; height: 0.2rem; box-sizing: border-box; border: 0.2rem solid transparent; }

.arrow-right-2[data-color="white"] { border-left: 0.2rem solid #fff; }

.arrow-right-2[data-color="black"] { border-left: 0.2rem solid #1A1311; }

.arrow-right-2[data-color="key"] { border-left: 0.2rem solid #FFEC00; }

.arrow-right-2[data-color="base1"] { border-left: 0.2rem solid #F9F6ED; }

.arrow-right-2[data-color="base2"] { border-left: 0.2rem solid #F2EAEA; }

.arrow-right-2[data-color="base3"] { border-left: 0.2rem solid #F9F6ED; }

.arrow-right-2[data-color="gray"] { border-left: 0.2rem solid #707070; }

.arrow-top-3 { position: absolute; top: -0.6rem; left: 0; right: 0; margin: auto; width: 0.3rem; height: 0.3rem; box-sizing: border-box; border: 0.3rem solid transparent; }

.arrow-top-3[data-color="white"] { border-bottom: 0.3rem solid #fff; }

.arrow-top-3[data-color="black"] { border-bottom: 0.3rem solid #1A1311; }

.arrow-top-3[data-color="key"] { border-bottom: 0.3rem solid #FFEC00; }

.arrow-top-3[data-color="base1"] { border-bottom: 0.3rem solid #F9F6ED; }

.arrow-top-3[data-color="base2"] { border-bottom: 0.3rem solid #F2EAEA; }

.arrow-top-3[data-color="base3"] { border-bottom: 0.3rem solid #F9F6ED; }

.arrow-top-3[data-color="gray"] { border-bottom: 0.3rem solid #707070; }

.arrow-bottom-3 { position: absolute; bottom: -0.6rem; left: 0; right: 0; margin: auto; width: 0.3rem; height: 0.3rem; box-sizing: border-box; border: 0.3rem solid transparent; }

.arrow-bottom-3[data-color="white"] { border-top: 0.3rem solid #fff; }

.arrow-bottom-3[data-color="black"] { border-top: 0.3rem solid #1A1311; }

.arrow-bottom-3[data-color="key"] { border-top: 0.3rem solid #FFEC00; }

.arrow-bottom-3[data-color="base1"] { border-top: 0.3rem solid #F9F6ED; }

.arrow-bottom-3[data-color="base2"] { border-top: 0.3rem solid #F2EAEA; }

.arrow-bottom-3[data-color="base3"] { border-top: 0.3rem solid #F9F6ED; }

.arrow-bottom-3[data-color="gray"] { border-top: 0.3rem solid #707070; }

.arrow-left-3 { position: absolute; top: 0; bottom: 0; left: -0.6rem; margin: auto; width: 0.3rem; height: 0.3rem; box-sizing: border-box; border: 0.3rem solid transparent; }

.arrow-left-3[data-color="white"] { border-right: 0.3rem solid #fff; }

.arrow-left-3[data-color="black"] { border-right: 0.3rem solid #1A1311; }

.arrow-left-3[data-color="key"] { border-right: 0.3rem solid #FFEC00; }

.arrow-left-3[data-color="base1"] { border-right: 0.3rem solid #F9F6ED; }

.arrow-left-3[data-color="base2"] { border-right: 0.3rem solid #F2EAEA; }

.arrow-left-3[data-color="base3"] { border-right: 0.3rem solid #F9F6ED; }

.arrow-left-3[data-color="gray"] { border-right: 0.3rem solid #707070; }

.arrow-right-3 { position: absolute; top: 0; bottom: 0; right: -0.6rem; margin: auto; width: 0.3rem; height: 0.3rem; box-sizing: border-box; border: 0.3rem solid transparent; }

.arrow-right-3[data-color="white"] { border-left: 0.3rem solid #fff; }

.arrow-right-3[data-color="black"] { border-left: 0.3rem solid #1A1311; }

.arrow-right-3[data-color="key"] { border-left: 0.3rem solid #FFEC00; }

.arrow-right-3[data-color="base1"] { border-left: 0.3rem solid #F9F6ED; }

.arrow-right-3[data-color="base2"] { border-left: 0.3rem solid #F2EAEA; }

.arrow-right-3[data-color="base3"] { border-left: 0.3rem solid #F9F6ED; }

.arrow-right-3[data-color="gray"] { border-left: 0.3rem solid #707070; }

.arrow-top-4 { position: absolute; top: -0.8rem; left: 0; right: 0; margin: auto; width: 0.4rem; height: 0.4rem; box-sizing: border-box; border: 0.4rem solid transparent; }

.arrow-top-4[data-color="white"] { border-bottom: 0.4rem solid #fff; }

.arrow-top-4[data-color="black"] { border-bottom: 0.4rem solid #1A1311; }

.arrow-top-4[data-color="key"] { border-bottom: 0.4rem solid #FFEC00; }

.arrow-top-4[data-color="base1"] { border-bottom: 0.4rem solid #F9F6ED; }

.arrow-top-4[data-color="base2"] { border-bottom: 0.4rem solid #F2EAEA; }

.arrow-top-4[data-color="base3"] { border-bottom: 0.4rem solid #F9F6ED; }

.arrow-top-4[data-color="gray"] { border-bottom: 0.4rem solid #707070; }

.arrow-bottom-4 { position: absolute; bottom: -0.8rem; left: 0; right: 0; margin: auto; width: 0.4rem; height: 0.4rem; box-sizing: border-box; border: 0.4rem solid transparent; }

.arrow-bottom-4[data-color="white"] { border-top: 0.4rem solid #fff; }

.arrow-bottom-4[data-color="black"] { border-top: 0.4rem solid #1A1311; }

.arrow-bottom-4[data-color="key"] { border-top: 0.4rem solid #FFEC00; }

.arrow-bottom-4[data-color="base1"] { border-top: 0.4rem solid #F9F6ED; }

.arrow-bottom-4[data-color="base2"] { border-top: 0.4rem solid #F2EAEA; }

.arrow-bottom-4[data-color="base3"] { border-top: 0.4rem solid #F9F6ED; }

.arrow-bottom-4[data-color="gray"] { border-top: 0.4rem solid #707070; }

.arrow-left-4 { position: absolute; top: 0; bottom: 0; left: -0.8rem; margin: auto; width: 0.4rem; height: 0.4rem; box-sizing: border-box; border: 0.4rem solid transparent; }

.arrow-left-4[data-color="white"] { border-right: 0.4rem solid #fff; }

.arrow-left-4[data-color="black"] { border-right: 0.4rem solid #1A1311; }

.arrow-left-4[data-color="key"] { border-right: 0.4rem solid #FFEC00; }

.arrow-left-4[data-color="base1"] { border-right: 0.4rem solid #F9F6ED; }

.arrow-left-4[data-color="base2"] { border-right: 0.4rem solid #F2EAEA; }

.arrow-left-4[data-color="base3"] { border-right: 0.4rem solid #F9F6ED; }

.arrow-left-4[data-color="gray"] { border-right: 0.4rem solid #707070; }

.arrow-right-4 { position: absolute; top: 0; bottom: 0; right: -0.8rem; margin: auto; width: 0.4rem; height: 0.4rem; box-sizing: border-box; border: 0.4rem solid transparent; }

.arrow-right-4[data-color="white"] { border-left: 0.4rem solid #fff; }

.arrow-right-4[data-color="black"] { border-left: 0.4rem solid #1A1311; }

.arrow-right-4[data-color="key"] { border-left: 0.4rem solid #FFEC00; }

.arrow-right-4[data-color="base1"] { border-left: 0.4rem solid #F9F6ED; }

.arrow-right-4[data-color="base2"] { border-left: 0.4rem solid #F2EAEA; }

.arrow-right-4[data-color="base3"] { border-left: 0.4rem solid #F9F6ED; }

.arrow-right-4[data-color="gray"] { border-left: 0.4rem solid #707070; }

.arrow-top-5 { position: absolute; top: -1rem; left: 0; right: 0; margin: auto; width: 0.5rem; height: 0.5rem; box-sizing: border-box; border: 0.5rem solid transparent; }

.arrow-top-5[data-color="white"] { border-bottom: 0.5rem solid #fff; }

.arrow-top-5[data-color="black"] { border-bottom: 0.5rem solid #1A1311; }

.arrow-top-5[data-color="key"] { border-bottom: 0.5rem solid #FFEC00; }

.arrow-top-5[data-color="base1"] { border-bottom: 0.5rem solid #F9F6ED; }

.arrow-top-5[data-color="base2"] { border-bottom: 0.5rem solid #F2EAEA; }

.arrow-top-5[data-color="base3"] { border-bottom: 0.5rem solid #F9F6ED; }

.arrow-top-5[data-color="gray"] { border-bottom: 0.5rem solid #707070; }

.arrow-bottom-5 { position: absolute; bottom: -1rem; left: 0; right: 0; margin: auto; width: 0.5rem; height: 0.5rem; box-sizing: border-box; border: 0.5rem solid transparent; }

.arrow-bottom-5[data-color="white"] { border-top: 0.5rem solid #fff; }

.arrow-bottom-5[data-color="black"] { border-top: 0.5rem solid #1A1311; }

.arrow-bottom-5[data-color="key"] { border-top: 0.5rem solid #FFEC00; }

.arrow-bottom-5[data-color="base1"] { border-top: 0.5rem solid #F9F6ED; }

.arrow-bottom-5[data-color="base2"] { border-top: 0.5rem solid #F2EAEA; }

.arrow-bottom-5[data-color="base3"] { border-top: 0.5rem solid #F9F6ED; }

.arrow-bottom-5[data-color="gray"] { border-top: 0.5rem solid #707070; }

.arrow-left-5 { position: absolute; top: 0; bottom: 0; left: -1rem; margin: auto; width: 0.5rem; height: 0.5rem; box-sizing: border-box; border: 0.5rem solid transparent; }

.arrow-left-5[data-color="white"] { border-right: 0.5rem solid #fff; }

.arrow-left-5[data-color="black"] { border-right: 0.5rem solid #1A1311; }

.arrow-left-5[data-color="key"] { border-right: 0.5rem solid #FFEC00; }

.arrow-left-5[data-color="base1"] { border-right: 0.5rem solid #F9F6ED; }

.arrow-left-5[data-color="base2"] { border-right: 0.5rem solid #F2EAEA; }

.arrow-left-5[data-color="base3"] { border-right: 0.5rem solid #F9F6ED; }

.arrow-left-5[data-color="gray"] { border-right: 0.5rem solid #707070; }

.arrow-right-5 { position: absolute; top: 0; bottom: 0; right: -1rem; margin: auto; width: 0.5rem; height: 0.5rem; box-sizing: border-box; border: 0.5rem solid transparent; }

.arrow-right-5[data-color="white"] { border-left: 0.5rem solid #fff; }

.arrow-right-5[data-color="black"] { border-left: 0.5rem solid #1A1311; }

.arrow-right-5[data-color="key"] { border-left: 0.5rem solid #FFEC00; }

.arrow-right-5[data-color="base1"] { border-left: 0.5rem solid #F9F6ED; }

.arrow-right-5[data-color="base2"] { border-left: 0.5rem solid #F2EAEA; }

.arrow-right-5[data-color="base3"] { border-left: 0.5rem solid #F9F6ED; }

.arrow-right-5[data-color="gray"] { border-left: 0.5rem solid #707070; }

.arrow-top-6 { position: absolute; top: -1.2rem; left: 0; right: 0; margin: auto; width: 0.6rem; height: 0.6rem; box-sizing: border-box; border: 0.6rem solid transparent; }

.arrow-top-6[data-color="white"] { border-bottom: 0.6rem solid #fff; }

.arrow-top-6[data-color="black"] { border-bottom: 0.6rem solid #1A1311; }

.arrow-top-6[data-color="key"] { border-bottom: 0.6rem solid #FFEC00; }

.arrow-top-6[data-color="base1"] { border-bottom: 0.6rem solid #F9F6ED; }

.arrow-top-6[data-color="base2"] { border-bottom: 0.6rem solid #F2EAEA; }

.arrow-top-6[data-color="base3"] { border-bottom: 0.6rem solid #F9F6ED; }

.arrow-top-6[data-color="gray"] { border-bottom: 0.6rem solid #707070; }

.arrow-bottom-6 { position: absolute; bottom: -1.2rem; left: 0; right: 0; margin: auto; width: 0.6rem; height: 0.6rem; box-sizing: border-box; border: 0.6rem solid transparent; }

.arrow-bottom-6[data-color="white"] { border-top: 0.6rem solid #fff; }

.arrow-bottom-6[data-color="black"] { border-top: 0.6rem solid #1A1311; }

.arrow-bottom-6[data-color="key"] { border-top: 0.6rem solid #FFEC00; }

.arrow-bottom-6[data-color="base1"] { border-top: 0.6rem solid #F9F6ED; }

.arrow-bottom-6[data-color="base2"] { border-top: 0.6rem solid #F2EAEA; }

.arrow-bottom-6[data-color="base3"] { border-top: 0.6rem solid #F9F6ED; }

.arrow-bottom-6[data-color="gray"] { border-top: 0.6rem solid #707070; }

.arrow-left-6 { position: absolute; top: 0; bottom: 0; left: -1.2rem; margin: auto; width: 0.6rem; height: 0.6rem; box-sizing: border-box; border: 0.6rem solid transparent; }

.arrow-left-6[data-color="white"] { border-right: 0.6rem solid #fff; }

.arrow-left-6[data-color="black"] { border-right: 0.6rem solid #1A1311; }

.arrow-left-6[data-color="key"] { border-right: 0.6rem solid #FFEC00; }

.arrow-left-6[data-color="base1"] { border-right: 0.6rem solid #F9F6ED; }

.arrow-left-6[data-color="base2"] { border-right: 0.6rem solid #F2EAEA; }

.arrow-left-6[data-color="base3"] { border-right: 0.6rem solid #F9F6ED; }

.arrow-left-6[data-color="gray"] { border-right: 0.6rem solid #707070; }

.arrow-right-6 { position: absolute; top: 0; bottom: 0; right: -1.2rem; margin: auto; width: 0.6rem; height: 0.6rem; box-sizing: border-box; border: 0.6rem solid transparent; }

.arrow-right-6[data-color="white"] { border-left: 0.6rem solid #fff; }

.arrow-right-6[data-color="black"] { border-left: 0.6rem solid #1A1311; }

.arrow-right-6[data-color="key"] { border-left: 0.6rem solid #FFEC00; }

.arrow-right-6[data-color="base1"] { border-left: 0.6rem solid #F9F6ED; }

.arrow-right-6[data-color="base2"] { border-left: 0.6rem solid #F2EAEA; }

.arrow-right-6[data-color="base3"] { border-left: 0.6rem solid #F9F6ED; }

.arrow-right-6[data-color="gray"] { border-left: 0.6rem solid #707070; }

.arrow-top-7 { position: absolute; top: -1.4rem; left: 0; right: 0; margin: auto; width: 0.7rem; height: 0.7rem; box-sizing: border-box; border: 0.7rem solid transparent; }

.arrow-top-7[data-color="white"] { border-bottom: 0.7rem solid #fff; }

.arrow-top-7[data-color="black"] { border-bottom: 0.7rem solid #1A1311; }

.arrow-top-7[data-color="key"] { border-bottom: 0.7rem solid #FFEC00; }

.arrow-top-7[data-color="base1"] { border-bottom: 0.7rem solid #F9F6ED; }

.arrow-top-7[data-color="base2"] { border-bottom: 0.7rem solid #F2EAEA; }

.arrow-top-7[data-color="base3"] { border-bottom: 0.7rem solid #F9F6ED; }

.arrow-top-7[data-color="gray"] { border-bottom: 0.7rem solid #707070; }

.arrow-bottom-7 { position: absolute; bottom: -1.4rem; left: 0; right: 0; margin: auto; width: 0.7rem; height: 0.7rem; box-sizing: border-box; border: 0.7rem solid transparent; }

.arrow-bottom-7[data-color="white"] { border-top: 0.7rem solid #fff; }

.arrow-bottom-7[data-color="black"] { border-top: 0.7rem solid #1A1311; }

.arrow-bottom-7[data-color="key"] { border-top: 0.7rem solid #FFEC00; }

.arrow-bottom-7[data-color="base1"] { border-top: 0.7rem solid #F9F6ED; }

.arrow-bottom-7[data-color="base2"] { border-top: 0.7rem solid #F2EAEA; }

.arrow-bottom-7[data-color="base3"] { border-top: 0.7rem solid #F9F6ED; }

.arrow-bottom-7[data-color="gray"] { border-top: 0.7rem solid #707070; }

.arrow-left-7 { position: absolute; top: 0; bottom: 0; left: -1.4rem; margin: auto; width: 0.7rem; height: 0.7rem; box-sizing: border-box; border: 0.7rem solid transparent; }

.arrow-left-7[data-color="white"] { border-right: 0.7rem solid #fff; }

.arrow-left-7[data-color="black"] { border-right: 0.7rem solid #1A1311; }

.arrow-left-7[data-color="key"] { border-right: 0.7rem solid #FFEC00; }

.arrow-left-7[data-color="base1"] { border-right: 0.7rem solid #F9F6ED; }

.arrow-left-7[data-color="base2"] { border-right: 0.7rem solid #F2EAEA; }

.arrow-left-7[data-color="base3"] { border-right: 0.7rem solid #F9F6ED; }

.arrow-left-7[data-color="gray"] { border-right: 0.7rem solid #707070; }

.arrow-right-7 { position: absolute; top: 0; bottom: 0; right: -1.4rem; margin: auto; width: 0.7rem; height: 0.7rem; box-sizing: border-box; border: 0.7rem solid transparent; }

.arrow-right-7[data-color="white"] { border-left: 0.7rem solid #fff; }

.arrow-right-7[data-color="black"] { border-left: 0.7rem solid #1A1311; }

.arrow-right-7[data-color="key"] { border-left: 0.7rem solid #FFEC00; }

.arrow-right-7[data-color="base1"] { border-left: 0.7rem solid #F9F6ED; }

.arrow-right-7[data-color="base2"] { border-left: 0.7rem solid #F2EAEA; }

.arrow-right-7[data-color="base3"] { border-left: 0.7rem solid #F9F6ED; }

.arrow-right-7[data-color="gray"] { border-left: 0.7rem solid #707070; }

.arrow-top-8 { position: absolute; top: -1.6rem; left: 0; right: 0; margin: auto; width: 0.8rem; height: 0.8rem; box-sizing: border-box; border: 0.8rem solid transparent; }

.arrow-top-8[data-color="white"] { border-bottom: 0.8rem solid #fff; }

.arrow-top-8[data-color="black"] { border-bottom: 0.8rem solid #1A1311; }

.arrow-top-8[data-color="key"] { border-bottom: 0.8rem solid #FFEC00; }

.arrow-top-8[data-color="base1"] { border-bottom: 0.8rem solid #F9F6ED; }

.arrow-top-8[data-color="base2"] { border-bottom: 0.8rem solid #F2EAEA; }

.arrow-top-8[data-color="base3"] { border-bottom: 0.8rem solid #F9F6ED; }

.arrow-top-8[data-color="gray"] { border-bottom: 0.8rem solid #707070; }

.arrow-bottom-8 { position: absolute; bottom: -1.6rem; left: 0; right: 0; margin: auto; width: 0.8rem; height: 0.8rem; box-sizing: border-box; border: 0.8rem solid transparent; }

.arrow-bottom-8[data-color="white"] { border-top: 0.8rem solid #fff; }

.arrow-bottom-8[data-color="black"] { border-top: 0.8rem solid #1A1311; }

.arrow-bottom-8[data-color="key"] { border-top: 0.8rem solid #FFEC00; }

.arrow-bottom-8[data-color="base1"] { border-top: 0.8rem solid #F9F6ED; }

.arrow-bottom-8[data-color="base2"] { border-top: 0.8rem solid #F2EAEA; }

.arrow-bottom-8[data-color="base3"] { border-top: 0.8rem solid #F9F6ED; }

.arrow-bottom-8[data-color="gray"] { border-top: 0.8rem solid #707070; }

.arrow-left-8 { position: absolute; top: 0; bottom: 0; left: -1.6rem; margin: auto; width: 0.8rem; height: 0.8rem; box-sizing: border-box; border: 0.8rem solid transparent; }

.arrow-left-8[data-color="white"] { border-right: 0.8rem solid #fff; }

.arrow-left-8[data-color="black"] { border-right: 0.8rem solid #1A1311; }

.arrow-left-8[data-color="key"] { border-right: 0.8rem solid #FFEC00; }

.arrow-left-8[data-color="base1"] { border-right: 0.8rem solid #F9F6ED; }

.arrow-left-8[data-color="base2"] { border-right: 0.8rem solid #F2EAEA; }

.arrow-left-8[data-color="base3"] { border-right: 0.8rem solid #F9F6ED; }

.arrow-left-8[data-color="gray"] { border-right: 0.8rem solid #707070; }

.arrow-right-8 { position: absolute; top: 0; bottom: 0; right: -1.6rem; margin: auto; width: 0.8rem; height: 0.8rem; box-sizing: border-box; border: 0.8rem solid transparent; }

.arrow-right-8[data-color="white"] { border-left: 0.8rem solid #fff; }

.arrow-right-8[data-color="black"] { border-left: 0.8rem solid #1A1311; }

.arrow-right-8[data-color="key"] { border-left: 0.8rem solid #FFEC00; }

.arrow-right-8[data-color="base1"] { border-left: 0.8rem solid #F9F6ED; }

.arrow-right-8[data-color="base2"] { border-left: 0.8rem solid #F2EAEA; }

.arrow-right-8[data-color="base3"] { border-left: 0.8rem solid #F9F6ED; }

.arrow-right-8[data-color="gray"] { border-left: 0.8rem solid #707070; }

.arrow-top-9 { position: absolute; top: -1.8rem; left: 0; right: 0; margin: auto; width: 0.9rem; height: 0.9rem; box-sizing: border-box; border: 0.9rem solid transparent; }

.arrow-top-9[data-color="white"] { border-bottom: 0.9rem solid #fff; }

.arrow-top-9[data-color="black"] { border-bottom: 0.9rem solid #1A1311; }

.arrow-top-9[data-color="key"] { border-bottom: 0.9rem solid #FFEC00; }

.arrow-top-9[data-color="base1"] { border-bottom: 0.9rem solid #F9F6ED; }

.arrow-top-9[data-color="base2"] { border-bottom: 0.9rem solid #F2EAEA; }

.arrow-top-9[data-color="base3"] { border-bottom: 0.9rem solid #F9F6ED; }

.arrow-top-9[data-color="gray"] { border-bottom: 0.9rem solid #707070; }

.arrow-bottom-9 { position: absolute; bottom: -1.8rem; left: 0; right: 0; margin: auto; width: 0.9rem; height: 0.9rem; box-sizing: border-box; border: 0.9rem solid transparent; }

.arrow-bottom-9[data-color="white"] { border-top: 0.9rem solid #fff; }

.arrow-bottom-9[data-color="black"] { border-top: 0.9rem solid #1A1311; }

.arrow-bottom-9[data-color="key"] { border-top: 0.9rem solid #FFEC00; }

.arrow-bottom-9[data-color="base1"] { border-top: 0.9rem solid #F9F6ED; }

.arrow-bottom-9[data-color="base2"] { border-top: 0.9rem solid #F2EAEA; }

.arrow-bottom-9[data-color="base3"] { border-top: 0.9rem solid #F9F6ED; }

.arrow-bottom-9[data-color="gray"] { border-top: 0.9rem solid #707070; }

.arrow-left-9 { position: absolute; top: 0; bottom: 0; left: -1.8rem; margin: auto; width: 0.9rem; height: 0.9rem; box-sizing: border-box; border: 0.9rem solid transparent; }

.arrow-left-9[data-color="white"] { border-right: 0.9rem solid #fff; }

.arrow-left-9[data-color="black"] { border-right: 0.9rem solid #1A1311; }

.arrow-left-9[data-color="key"] { border-right: 0.9rem solid #FFEC00; }

.arrow-left-9[data-color="base1"] { border-right: 0.9rem solid #F9F6ED; }

.arrow-left-9[data-color="base2"] { border-right: 0.9rem solid #F2EAEA; }

.arrow-left-9[data-color="base3"] { border-right: 0.9rem solid #F9F6ED; }

.arrow-left-9[data-color="gray"] { border-right: 0.9rem solid #707070; }

.arrow-right-9 { position: absolute; top: 0; bottom: 0; right: -1.8rem; margin: auto; width: 0.9rem; height: 0.9rem; box-sizing: border-box; border: 0.9rem solid transparent; }

.arrow-right-9[data-color="white"] { border-left: 0.9rem solid #fff; }

.arrow-right-9[data-color="black"] { border-left: 0.9rem solid #1A1311; }

.arrow-right-9[data-color="key"] { border-left: 0.9rem solid #FFEC00; }

.arrow-right-9[data-color="base1"] { border-left: 0.9rem solid #F9F6ED; }

.arrow-right-9[data-color="base2"] { border-left: 0.9rem solid #F2EAEA; }

.arrow-right-9[data-color="base3"] { border-left: 0.9rem solid #F9F6ED; }

.arrow-right-9[data-color="gray"] { border-left: 0.9rem solid #707070; }

.arrow-top-10 { position: absolute; top: -2rem; left: 0; right: 0; margin: auto; width: 1rem; height: 1rem; box-sizing: border-box; border: 1rem solid transparent; }

.arrow-top-10[data-color="white"] { border-bottom: 1rem solid #fff; }

.arrow-top-10[data-color="black"] { border-bottom: 1rem solid #1A1311; }

.arrow-top-10[data-color="key"] { border-bottom: 1rem solid #FFEC00; }

.arrow-top-10[data-color="base1"] { border-bottom: 1rem solid #F9F6ED; }

.arrow-top-10[data-color="base2"] { border-bottom: 1rem solid #F2EAEA; }

.arrow-top-10[data-color="base3"] { border-bottom: 1rem solid #F9F6ED; }

.arrow-top-10[data-color="gray"] { border-bottom: 1rem solid #707070; }

.arrow-bottom-10 { position: absolute; bottom: -2rem; left: 0; right: 0; margin: auto; width: 1rem; height: 1rem; box-sizing: border-box; border: 1rem solid transparent; }

.arrow-bottom-10[data-color="white"] { border-top: 1rem solid #fff; }

.arrow-bottom-10[data-color="black"] { border-top: 1rem solid #1A1311; }

.arrow-bottom-10[data-color="key"] { border-top: 1rem solid #FFEC00; }

.arrow-bottom-10[data-color="base1"] { border-top: 1rem solid #F9F6ED; }

.arrow-bottom-10[data-color="base2"] { border-top: 1rem solid #F2EAEA; }

.arrow-bottom-10[data-color="base3"] { border-top: 1rem solid #F9F6ED; }

.arrow-bottom-10[data-color="gray"] { border-top: 1rem solid #707070; }

.arrow-left-10 { position: absolute; top: 0; bottom: 0; left: -2rem; margin: auto; width: 1rem; height: 1rem; box-sizing: border-box; border: 1rem solid transparent; }

.arrow-left-10[data-color="white"] { border-right: 1rem solid #fff; }

.arrow-left-10[data-color="black"] { border-right: 1rem solid #1A1311; }

.arrow-left-10[data-color="key"] { border-right: 1rem solid #FFEC00; }

.arrow-left-10[data-color="base1"] { border-right: 1rem solid #F9F6ED; }

.arrow-left-10[data-color="base2"] { border-right: 1rem solid #F2EAEA; }

.arrow-left-10[data-color="base3"] { border-right: 1rem solid #F9F6ED; }

.arrow-left-10[data-color="gray"] { border-right: 1rem solid #707070; }

.arrow-right-10 { position: absolute; top: 0; bottom: 0; right: -2rem; margin: auto; width: 1rem; height: 1rem; box-sizing: border-box; border: 1rem solid transparent; }

.arrow-right-10[data-color="white"] { border-left: 1rem solid #fff; }

.arrow-right-10[data-color="black"] { border-left: 1rem solid #1A1311; }

.arrow-right-10[data-color="key"] { border-left: 1rem solid #FFEC00; }

.arrow-right-10[data-color="base1"] { border-left: 1rem solid #F9F6ED; }

.arrow-right-10[data-color="base2"] { border-left: 1rem solid #F2EAEA; }

.arrow-right-10[data-color="base3"] { border-left: 1rem solid #F9F6ED; }

.arrow-right-10[data-color="gray"] { border-left: 1rem solid #707070; }

.arrow-top-11 { position: absolute; top: -2.2rem; left: 0; right: 0; margin: auto; width: 1.1rem; height: 1.1rem; box-sizing: border-box; border: 1.1rem solid transparent; }

.arrow-top-11[data-color="white"] { border-bottom: 1.1rem solid #fff; }

.arrow-top-11[data-color="black"] { border-bottom: 1.1rem solid #1A1311; }

.arrow-top-11[data-color="key"] { border-bottom: 1.1rem solid #FFEC00; }

.arrow-top-11[data-color="base1"] { border-bottom: 1.1rem solid #F9F6ED; }

.arrow-top-11[data-color="base2"] { border-bottom: 1.1rem solid #F2EAEA; }

.arrow-top-11[data-color="base3"] { border-bottom: 1.1rem solid #F9F6ED; }

.arrow-top-11[data-color="gray"] { border-bottom: 1.1rem solid #707070; }

.arrow-bottom-11 { position: absolute; bottom: -2.2rem; left: 0; right: 0; margin: auto; width: 1.1rem; height: 1.1rem; box-sizing: border-box; border: 1.1rem solid transparent; }

.arrow-bottom-11[data-color="white"] { border-top: 1.1rem solid #fff; }

.arrow-bottom-11[data-color="black"] { border-top: 1.1rem solid #1A1311; }

.arrow-bottom-11[data-color="key"] { border-top: 1.1rem solid #FFEC00; }

.arrow-bottom-11[data-color="base1"] { border-top: 1.1rem solid #F9F6ED; }

.arrow-bottom-11[data-color="base2"] { border-top: 1.1rem solid #F2EAEA; }

.arrow-bottom-11[data-color="base3"] { border-top: 1.1rem solid #F9F6ED; }

.arrow-bottom-11[data-color="gray"] { border-top: 1.1rem solid #707070; }

.arrow-left-11 { position: absolute; top: 0; bottom: 0; left: -2.2rem; margin: auto; width: 1.1rem; height: 1.1rem; box-sizing: border-box; border: 1.1rem solid transparent; }

.arrow-left-11[data-color="white"] { border-right: 1.1rem solid #fff; }

.arrow-left-11[data-color="black"] { border-right: 1.1rem solid #1A1311; }

.arrow-left-11[data-color="key"] { border-right: 1.1rem solid #FFEC00; }

.arrow-left-11[data-color="base1"] { border-right: 1.1rem solid #F9F6ED; }

.arrow-left-11[data-color="base2"] { border-right: 1.1rem solid #F2EAEA; }

.arrow-left-11[data-color="base3"] { border-right: 1.1rem solid #F9F6ED; }

.arrow-left-11[data-color="gray"] { border-right: 1.1rem solid #707070; }

.arrow-right-11 { position: absolute; top: 0; bottom: 0; right: -2.2rem; margin: auto; width: 1.1rem; height: 1.1rem; box-sizing: border-box; border: 1.1rem solid transparent; }

.arrow-right-11[data-color="white"] { border-left: 1.1rem solid #fff; }

.arrow-right-11[data-color="black"] { border-left: 1.1rem solid #1A1311; }

.arrow-right-11[data-color="key"] { border-left: 1.1rem solid #FFEC00; }

.arrow-right-11[data-color="base1"] { border-left: 1.1rem solid #F9F6ED; }

.arrow-right-11[data-color="base2"] { border-left: 1.1rem solid #F2EAEA; }

.arrow-right-11[data-color="base3"] { border-left: 1.1rem solid #F9F6ED; }

.arrow-right-11[data-color="gray"] { border-left: 1.1rem solid #707070; }

.arrow-top-12 { position: absolute; top: -2.4rem; left: 0; right: 0; margin: auto; width: 1.2rem; height: 1.2rem; box-sizing: border-box; border: 1.2rem solid transparent; }

.arrow-top-12[data-color="white"] { border-bottom: 1.2rem solid #fff; }

.arrow-top-12[data-color="black"] { border-bottom: 1.2rem solid #1A1311; }

.arrow-top-12[data-color="key"] { border-bottom: 1.2rem solid #FFEC00; }

.arrow-top-12[data-color="base1"] { border-bottom: 1.2rem solid #F9F6ED; }

.arrow-top-12[data-color="base2"] { border-bottom: 1.2rem solid #F2EAEA; }

.arrow-top-12[data-color="base3"] { border-bottom: 1.2rem solid #F9F6ED; }

.arrow-top-12[data-color="gray"] { border-bottom: 1.2rem solid #707070; }

.arrow-bottom-12 { position: absolute; bottom: -2.4rem; left: 0; right: 0; margin: auto; width: 1.2rem; height: 1.2rem; box-sizing: border-box; border: 1.2rem solid transparent; }

.arrow-bottom-12[data-color="white"] { border-top: 1.2rem solid #fff; }

.arrow-bottom-12[data-color="black"] { border-top: 1.2rem solid #1A1311; }

.arrow-bottom-12[data-color="key"] { border-top: 1.2rem solid #FFEC00; }

.arrow-bottom-12[data-color="base1"] { border-top: 1.2rem solid #F9F6ED; }

.arrow-bottom-12[data-color="base2"] { border-top: 1.2rem solid #F2EAEA; }

.arrow-bottom-12[data-color="base3"] { border-top: 1.2rem solid #F9F6ED; }

.arrow-bottom-12[data-color="gray"] { border-top: 1.2rem solid #707070; }

.arrow-left-12 { position: absolute; top: 0; bottom: 0; left: -2.4rem; margin: auto; width: 1.2rem; height: 1.2rem; box-sizing: border-box; border: 1.2rem solid transparent; }

.arrow-left-12[data-color="white"] { border-right: 1.2rem solid #fff; }

.arrow-left-12[data-color="black"] { border-right: 1.2rem solid #1A1311; }

.arrow-left-12[data-color="key"] { border-right: 1.2rem solid #FFEC00; }

.arrow-left-12[data-color="base1"] { border-right: 1.2rem solid #F9F6ED; }

.arrow-left-12[data-color="base2"] { border-right: 1.2rem solid #F2EAEA; }

.arrow-left-12[data-color="base3"] { border-right: 1.2rem solid #F9F6ED; }

.arrow-left-12[data-color="gray"] { border-right: 1.2rem solid #707070; }

.arrow-right-12 { position: absolute; top: 0; bottom: 0; right: -2.4rem; margin: auto; width: 1.2rem; height: 1.2rem; box-sizing: border-box; border: 1.2rem solid transparent; }

.arrow-right-12[data-color="white"] { border-left: 1.2rem solid #fff; }

.arrow-right-12[data-color="black"] { border-left: 1.2rem solid #1A1311; }

.arrow-right-12[data-color="key"] { border-left: 1.2rem solid #FFEC00; }

.arrow-right-12[data-color="base1"] { border-left: 1.2rem solid #F9F6ED; }

.arrow-right-12[data-color="base2"] { border-left: 1.2rem solid #F2EAEA; }

.arrow-right-12[data-color="base3"] { border-left: 1.2rem solid #F9F6ED; }

.arrow-right-12[data-color="gray"] { border-left: 1.2rem solid #707070; }

.arrow-top-13 { position: absolute; top: -2.6rem; left: 0; right: 0; margin: auto; width: 1.3rem; height: 1.3rem; box-sizing: border-box; border: 1.3rem solid transparent; }

.arrow-top-13[data-color="white"] { border-bottom: 1.3rem solid #fff; }

.arrow-top-13[data-color="black"] { border-bottom: 1.3rem solid #1A1311; }

.arrow-top-13[data-color="key"] { border-bottom: 1.3rem solid #FFEC00; }

.arrow-top-13[data-color="base1"] { border-bottom: 1.3rem solid #F9F6ED; }

.arrow-top-13[data-color="base2"] { border-bottom: 1.3rem solid #F2EAEA; }

.arrow-top-13[data-color="base3"] { border-bottom: 1.3rem solid #F9F6ED; }

.arrow-top-13[data-color="gray"] { border-bottom: 1.3rem solid #707070; }

.arrow-bottom-13 { position: absolute; bottom: -2.6rem; left: 0; right: 0; margin: auto; width: 1.3rem; height: 1.3rem; box-sizing: border-box; border: 1.3rem solid transparent; }

.arrow-bottom-13[data-color="white"] { border-top: 1.3rem solid #fff; }

.arrow-bottom-13[data-color="black"] { border-top: 1.3rem solid #1A1311; }

.arrow-bottom-13[data-color="key"] { border-top: 1.3rem solid #FFEC00; }

.arrow-bottom-13[data-color="base1"] { border-top: 1.3rem solid #F9F6ED; }

.arrow-bottom-13[data-color="base2"] { border-top: 1.3rem solid #F2EAEA; }

.arrow-bottom-13[data-color="base3"] { border-top: 1.3rem solid #F9F6ED; }

.arrow-bottom-13[data-color="gray"] { border-top: 1.3rem solid #707070; }

.arrow-left-13 { position: absolute; top: 0; bottom: 0; left: -2.6rem; margin: auto; width: 1.3rem; height: 1.3rem; box-sizing: border-box; border: 1.3rem solid transparent; }

.arrow-left-13[data-color="white"] { border-right: 1.3rem solid #fff; }

.arrow-left-13[data-color="black"] { border-right: 1.3rem solid #1A1311; }

.arrow-left-13[data-color="key"] { border-right: 1.3rem solid #FFEC00; }

.arrow-left-13[data-color="base1"] { border-right: 1.3rem solid #F9F6ED; }

.arrow-left-13[data-color="base2"] { border-right: 1.3rem solid #F2EAEA; }

.arrow-left-13[data-color="base3"] { border-right: 1.3rem solid #F9F6ED; }

.arrow-left-13[data-color="gray"] { border-right: 1.3rem solid #707070; }

.arrow-right-13 { position: absolute; top: 0; bottom: 0; right: -2.6rem; margin: auto; width: 1.3rem; height: 1.3rem; box-sizing: border-box; border: 1.3rem solid transparent; }

.arrow-right-13[data-color="white"] { border-left: 1.3rem solid #fff; }

.arrow-right-13[data-color="black"] { border-left: 1.3rem solid #1A1311; }

.arrow-right-13[data-color="key"] { border-left: 1.3rem solid #FFEC00; }

.arrow-right-13[data-color="base1"] { border-left: 1.3rem solid #F9F6ED; }

.arrow-right-13[data-color="base2"] { border-left: 1.3rem solid #F2EAEA; }

.arrow-right-13[data-color="base3"] { border-left: 1.3rem solid #F9F6ED; }

.arrow-right-13[data-color="gray"] { border-left: 1.3rem solid #707070; }

.arrow-top-14 { position: absolute; top: -2.8rem; left: 0; right: 0; margin: auto; width: 1.4rem; height: 1.4rem; box-sizing: border-box; border: 1.4rem solid transparent; }

.arrow-top-14[data-color="white"] { border-bottom: 1.4rem solid #fff; }

.arrow-top-14[data-color="black"] { border-bottom: 1.4rem solid #1A1311; }

.arrow-top-14[data-color="key"] { border-bottom: 1.4rem solid #FFEC00; }

.arrow-top-14[data-color="base1"] { border-bottom: 1.4rem solid #F9F6ED; }

.arrow-top-14[data-color="base2"] { border-bottom: 1.4rem solid #F2EAEA; }

.arrow-top-14[data-color="base3"] { border-bottom: 1.4rem solid #F9F6ED; }

.arrow-top-14[data-color="gray"] { border-bottom: 1.4rem solid #707070; }

.arrow-bottom-14 { position: absolute; bottom: -2.8rem; left: 0; right: 0; margin: auto; width: 1.4rem; height: 1.4rem; box-sizing: border-box; border: 1.4rem solid transparent; }

.arrow-bottom-14[data-color="white"] { border-top: 1.4rem solid #fff; }

.arrow-bottom-14[data-color="black"] { border-top: 1.4rem solid #1A1311; }

.arrow-bottom-14[data-color="key"] { border-top: 1.4rem solid #FFEC00; }

.arrow-bottom-14[data-color="base1"] { border-top: 1.4rem solid #F9F6ED; }

.arrow-bottom-14[data-color="base2"] { border-top: 1.4rem solid #F2EAEA; }

.arrow-bottom-14[data-color="base3"] { border-top: 1.4rem solid #F9F6ED; }

.arrow-bottom-14[data-color="gray"] { border-top: 1.4rem solid #707070; }

.arrow-left-14 { position: absolute; top: 0; bottom: 0; left: -2.8rem; margin: auto; width: 1.4rem; height: 1.4rem; box-sizing: border-box; border: 1.4rem solid transparent; }

.arrow-left-14[data-color="white"] { border-right: 1.4rem solid #fff; }

.arrow-left-14[data-color="black"] { border-right: 1.4rem solid #1A1311; }

.arrow-left-14[data-color="key"] { border-right: 1.4rem solid #FFEC00; }

.arrow-left-14[data-color="base1"] { border-right: 1.4rem solid #F9F6ED; }

.arrow-left-14[data-color="base2"] { border-right: 1.4rem solid #F2EAEA; }

.arrow-left-14[data-color="base3"] { border-right: 1.4rem solid #F9F6ED; }

.arrow-left-14[data-color="gray"] { border-right: 1.4rem solid #707070; }

.arrow-right-14 { position: absolute; top: 0; bottom: 0; right: -2.8rem; margin: auto; width: 1.4rem; height: 1.4rem; box-sizing: border-box; border: 1.4rem solid transparent; }

.arrow-right-14[data-color="white"] { border-left: 1.4rem solid #fff; }

.arrow-right-14[data-color="black"] { border-left: 1.4rem solid #1A1311; }

.arrow-right-14[data-color="key"] { border-left: 1.4rem solid #FFEC00; }

.arrow-right-14[data-color="base1"] { border-left: 1.4rem solid #F9F6ED; }

.arrow-right-14[data-color="base2"] { border-left: 1.4rem solid #F2EAEA; }

.arrow-right-14[data-color="base3"] { border-left: 1.4rem solid #F9F6ED; }

.arrow-right-14[data-color="gray"] { border-left: 1.4rem solid #707070; }

.arrow-top-15 { position: absolute; top: -3rem; left: 0; right: 0; margin: auto; width: 1.5rem; height: 1.5rem; box-sizing: border-box; border: 1.5rem solid transparent; }

.arrow-top-15[data-color="white"] { border-bottom: 1.5rem solid #fff; }

.arrow-top-15[data-color="black"] { border-bottom: 1.5rem solid #1A1311; }

.arrow-top-15[data-color="key"] { border-bottom: 1.5rem solid #FFEC00; }

.arrow-top-15[data-color="base1"] { border-bottom: 1.5rem solid #F9F6ED; }

.arrow-top-15[data-color="base2"] { border-bottom: 1.5rem solid #F2EAEA; }

.arrow-top-15[data-color="base3"] { border-bottom: 1.5rem solid #F9F6ED; }

.arrow-top-15[data-color="gray"] { border-bottom: 1.5rem solid #707070; }

.arrow-bottom-15 { position: absolute; bottom: -3rem; left: 0; right: 0; margin: auto; width: 1.5rem; height: 1.5rem; box-sizing: border-box; border: 1.5rem solid transparent; }

.arrow-bottom-15[data-color="white"] { border-top: 1.5rem solid #fff; }

.arrow-bottom-15[data-color="black"] { border-top: 1.5rem solid #1A1311; }

.arrow-bottom-15[data-color="key"] { border-top: 1.5rem solid #FFEC00; }

.arrow-bottom-15[data-color="base1"] { border-top: 1.5rem solid #F9F6ED; }

.arrow-bottom-15[data-color="base2"] { border-top: 1.5rem solid #F2EAEA; }

.arrow-bottom-15[data-color="base3"] { border-top: 1.5rem solid #F9F6ED; }

.arrow-bottom-15[data-color="gray"] { border-top: 1.5rem solid #707070; }

.arrow-left-15 { position: absolute; top: 0; bottom: 0; left: -3rem; margin: auto; width: 1.5rem; height: 1.5rem; box-sizing: border-box; border: 1.5rem solid transparent; }

.arrow-left-15[data-color="white"] { border-right: 1.5rem solid #fff; }

.arrow-left-15[data-color="black"] { border-right: 1.5rem solid #1A1311; }

.arrow-left-15[data-color="key"] { border-right: 1.5rem solid #FFEC00; }

.arrow-left-15[data-color="base1"] { border-right: 1.5rem solid #F9F6ED; }

.arrow-left-15[data-color="base2"] { border-right: 1.5rem solid #F2EAEA; }

.arrow-left-15[data-color="base3"] { border-right: 1.5rem solid #F9F6ED; }

.arrow-left-15[data-color="gray"] { border-right: 1.5rem solid #707070; }

.arrow-right-15 { position: absolute; top: 0; bottom: 0; right: -3rem; margin: auto; width: 1.5rem; height: 1.5rem; box-sizing: border-box; border: 1.5rem solid transparent; }

.arrow-right-15[data-color="white"] { border-left: 1.5rem solid #fff; }

.arrow-right-15[data-color="black"] { border-left: 1.5rem solid #1A1311; }

.arrow-right-15[data-color="key"] { border-left: 1.5rem solid #FFEC00; }

.arrow-right-15[data-color="base1"] { border-left: 1.5rem solid #F9F6ED; }

.arrow-right-15[data-color="base2"] { border-left: 1.5rem solid #F2EAEA; }

.arrow-right-15[data-color="base3"] { border-left: 1.5rem solid #F9F6ED; }

.arrow-right-15[data-color="gray"] { border-left: 1.5rem solid #707070; }

.arrow-top-16 { position: absolute; top: -3.2rem; left: 0; right: 0; margin: auto; width: 1.6rem; height: 1.6rem; box-sizing: border-box; border: 1.6rem solid transparent; }

.arrow-top-16[data-color="white"] { border-bottom: 1.6rem solid #fff; }

.arrow-top-16[data-color="black"] { border-bottom: 1.6rem solid #1A1311; }

.arrow-top-16[data-color="key"] { border-bottom: 1.6rem solid #FFEC00; }

.arrow-top-16[data-color="base1"] { border-bottom: 1.6rem solid #F9F6ED; }

.arrow-top-16[data-color="base2"] { border-bottom: 1.6rem solid #F2EAEA; }

.arrow-top-16[data-color="base3"] { border-bottom: 1.6rem solid #F9F6ED; }

.arrow-top-16[data-color="gray"] { border-bottom: 1.6rem solid #707070; }

.arrow-bottom-16 { position: absolute; bottom: -3.2rem; left: 0; right: 0; margin: auto; width: 1.6rem; height: 1.6rem; box-sizing: border-box; border: 1.6rem solid transparent; }

.arrow-bottom-16[data-color="white"] { border-top: 1.6rem solid #fff; }

.arrow-bottom-16[data-color="black"] { border-top: 1.6rem solid #1A1311; }

.arrow-bottom-16[data-color="key"] { border-top: 1.6rem solid #FFEC00; }

.arrow-bottom-16[data-color="base1"] { border-top: 1.6rem solid #F9F6ED; }

.arrow-bottom-16[data-color="base2"] { border-top: 1.6rem solid #F2EAEA; }

.arrow-bottom-16[data-color="base3"] { border-top: 1.6rem solid #F9F6ED; }

.arrow-bottom-16[data-color="gray"] { border-top: 1.6rem solid #707070; }

.arrow-left-16 { position: absolute; top: 0; bottom: 0; left: -3.2rem; margin: auto; width: 1.6rem; height: 1.6rem; box-sizing: border-box; border: 1.6rem solid transparent; }

.arrow-left-16[data-color="white"] { border-right: 1.6rem solid #fff; }

.arrow-left-16[data-color="black"] { border-right: 1.6rem solid #1A1311; }

.arrow-left-16[data-color="key"] { border-right: 1.6rem solid #FFEC00; }

.arrow-left-16[data-color="base1"] { border-right: 1.6rem solid #F9F6ED; }

.arrow-left-16[data-color="base2"] { border-right: 1.6rem solid #F2EAEA; }

.arrow-left-16[data-color="base3"] { border-right: 1.6rem solid #F9F6ED; }

.arrow-left-16[data-color="gray"] { border-right: 1.6rem solid #707070; }

.arrow-right-16 { position: absolute; top: 0; bottom: 0; right: -3.2rem; margin: auto; width: 1.6rem; height: 1.6rem; box-sizing: border-box; border: 1.6rem solid transparent; }

.arrow-right-16[data-color="white"] { border-left: 1.6rem solid #fff; }

.arrow-right-16[data-color="black"] { border-left: 1.6rem solid #1A1311; }

.arrow-right-16[data-color="key"] { border-left: 1.6rem solid #FFEC00; }

.arrow-right-16[data-color="base1"] { border-left: 1.6rem solid #F9F6ED; }

.arrow-right-16[data-color="base2"] { border-left: 1.6rem solid #F2EAEA; }

.arrow-right-16[data-color="base3"] { border-left: 1.6rem solid #F9F6ED; }

.arrow-right-16[data-color="gray"] { border-left: 1.6rem solid #707070; }

.arrow-top-17 { position: absolute; top: -3.4rem; left: 0; right: 0; margin: auto; width: 1.7rem; height: 1.7rem; box-sizing: border-box; border: 1.7rem solid transparent; }

.arrow-top-17[data-color="white"] { border-bottom: 1.7rem solid #fff; }

.arrow-top-17[data-color="black"] { border-bottom: 1.7rem solid #1A1311; }

.arrow-top-17[data-color="key"] { border-bottom: 1.7rem solid #FFEC00; }

.arrow-top-17[data-color="base1"] { border-bottom: 1.7rem solid #F9F6ED; }

.arrow-top-17[data-color="base2"] { border-bottom: 1.7rem solid #F2EAEA; }

.arrow-top-17[data-color="base3"] { border-bottom: 1.7rem solid #F9F6ED; }

.arrow-top-17[data-color="gray"] { border-bottom: 1.7rem solid #707070; }

.arrow-bottom-17 { position: absolute; bottom: -3.4rem; left: 0; right: 0; margin: auto; width: 1.7rem; height: 1.7rem; box-sizing: border-box; border: 1.7rem solid transparent; }

.arrow-bottom-17[data-color="white"] { border-top: 1.7rem solid #fff; }

.arrow-bottom-17[data-color="black"] { border-top: 1.7rem solid #1A1311; }

.arrow-bottom-17[data-color="key"] { border-top: 1.7rem solid #FFEC00; }

.arrow-bottom-17[data-color="base1"] { border-top: 1.7rem solid #F9F6ED; }

.arrow-bottom-17[data-color="base2"] { border-top: 1.7rem solid #F2EAEA; }

.arrow-bottom-17[data-color="base3"] { border-top: 1.7rem solid #F9F6ED; }

.arrow-bottom-17[data-color="gray"] { border-top: 1.7rem solid #707070; }

.arrow-left-17 { position: absolute; top: 0; bottom: 0; left: -3.4rem; margin: auto; width: 1.7rem; height: 1.7rem; box-sizing: border-box; border: 1.7rem solid transparent; }

.arrow-left-17[data-color="white"] { border-right: 1.7rem solid #fff; }

.arrow-left-17[data-color="black"] { border-right: 1.7rem solid #1A1311; }

.arrow-left-17[data-color="key"] { border-right: 1.7rem solid #FFEC00; }

.arrow-left-17[data-color="base1"] { border-right: 1.7rem solid #F9F6ED; }

.arrow-left-17[data-color="base2"] { border-right: 1.7rem solid #F2EAEA; }

.arrow-left-17[data-color="base3"] { border-right: 1.7rem solid #F9F6ED; }

.arrow-left-17[data-color="gray"] { border-right: 1.7rem solid #707070; }

.arrow-right-17 { position: absolute; top: 0; bottom: 0; right: -3.4rem; margin: auto; width: 1.7rem; height: 1.7rem; box-sizing: border-box; border: 1.7rem solid transparent; }

.arrow-right-17[data-color="white"] { border-left: 1.7rem solid #fff; }

.arrow-right-17[data-color="black"] { border-left: 1.7rem solid #1A1311; }

.arrow-right-17[data-color="key"] { border-left: 1.7rem solid #FFEC00; }

.arrow-right-17[data-color="base1"] { border-left: 1.7rem solid #F9F6ED; }

.arrow-right-17[data-color="base2"] { border-left: 1.7rem solid #F2EAEA; }

.arrow-right-17[data-color="base3"] { border-left: 1.7rem solid #F9F6ED; }

.arrow-right-17[data-color="gray"] { border-left: 1.7rem solid #707070; }

.arrow-top-18 { position: absolute; top: -3.6rem; left: 0; right: 0; margin: auto; width: 1.8rem; height: 1.8rem; box-sizing: border-box; border: 1.8rem solid transparent; }

.arrow-top-18[data-color="white"] { border-bottom: 1.8rem solid #fff; }

.arrow-top-18[data-color="black"] { border-bottom: 1.8rem solid #1A1311; }

.arrow-top-18[data-color="key"] { border-bottom: 1.8rem solid #FFEC00; }

.arrow-top-18[data-color="base1"] { border-bottom: 1.8rem solid #F9F6ED; }

.arrow-top-18[data-color="base2"] { border-bottom: 1.8rem solid #F2EAEA; }

.arrow-top-18[data-color="base3"] { border-bottom: 1.8rem solid #F9F6ED; }

.arrow-top-18[data-color="gray"] { border-bottom: 1.8rem solid #707070; }

.arrow-bottom-18 { position: absolute; bottom: -3.6rem; left: 0; right: 0; margin: auto; width: 1.8rem; height: 1.8rem; box-sizing: border-box; border: 1.8rem solid transparent; }

.arrow-bottom-18[data-color="white"] { border-top: 1.8rem solid #fff; }

.arrow-bottom-18[data-color="black"] { border-top: 1.8rem solid #1A1311; }

.arrow-bottom-18[data-color="key"] { border-top: 1.8rem solid #FFEC00; }

.arrow-bottom-18[data-color="base1"] { border-top: 1.8rem solid #F9F6ED; }

.arrow-bottom-18[data-color="base2"] { border-top: 1.8rem solid #F2EAEA; }

.arrow-bottom-18[data-color="base3"] { border-top: 1.8rem solid #F9F6ED; }

.arrow-bottom-18[data-color="gray"] { border-top: 1.8rem solid #707070; }

.arrow-left-18 { position: absolute; top: 0; bottom: 0; left: -3.6rem; margin: auto; width: 1.8rem; height: 1.8rem; box-sizing: border-box; border: 1.8rem solid transparent; }

.arrow-left-18[data-color="white"] { border-right: 1.8rem solid #fff; }

.arrow-left-18[data-color="black"] { border-right: 1.8rem solid #1A1311; }

.arrow-left-18[data-color="key"] { border-right: 1.8rem solid #FFEC00; }

.arrow-left-18[data-color="base1"] { border-right: 1.8rem solid #F9F6ED; }

.arrow-left-18[data-color="base2"] { border-right: 1.8rem solid #F2EAEA; }

.arrow-left-18[data-color="base3"] { border-right: 1.8rem solid #F9F6ED; }

.arrow-left-18[data-color="gray"] { border-right: 1.8rem solid #707070; }

.arrow-right-18 { position: absolute; top: 0; bottom: 0; right: -3.6rem; margin: auto; width: 1.8rem; height: 1.8rem; box-sizing: border-box; border: 1.8rem solid transparent; }

.arrow-right-18[data-color="white"] { border-left: 1.8rem solid #fff; }

.arrow-right-18[data-color="black"] { border-left: 1.8rem solid #1A1311; }

.arrow-right-18[data-color="key"] { border-left: 1.8rem solid #FFEC00; }

.arrow-right-18[data-color="base1"] { border-left: 1.8rem solid #F9F6ED; }

.arrow-right-18[data-color="base2"] { border-left: 1.8rem solid #F2EAEA; }

.arrow-right-18[data-color="base3"] { border-left: 1.8rem solid #F9F6ED; }

.arrow-right-18[data-color="gray"] { border-left: 1.8rem solid #707070; }

.arrow-top-19 { position: absolute; top: -3.8rem; left: 0; right: 0; margin: auto; width: 1.9rem; height: 1.9rem; box-sizing: border-box; border: 1.9rem solid transparent; }

.arrow-top-19[data-color="white"] { border-bottom: 1.9rem solid #fff; }

.arrow-top-19[data-color="black"] { border-bottom: 1.9rem solid #1A1311; }

.arrow-top-19[data-color="key"] { border-bottom: 1.9rem solid #FFEC00; }

.arrow-top-19[data-color="base1"] { border-bottom: 1.9rem solid #F9F6ED; }

.arrow-top-19[data-color="base2"] { border-bottom: 1.9rem solid #F2EAEA; }

.arrow-top-19[data-color="base3"] { border-bottom: 1.9rem solid #F9F6ED; }

.arrow-top-19[data-color="gray"] { border-bottom: 1.9rem solid #707070; }

.arrow-bottom-19 { position: absolute; bottom: -3.8rem; left: 0; right: 0; margin: auto; width: 1.9rem; height: 1.9rem; box-sizing: border-box; border: 1.9rem solid transparent; }

.arrow-bottom-19[data-color="white"] { border-top: 1.9rem solid #fff; }

.arrow-bottom-19[data-color="black"] { border-top: 1.9rem solid #1A1311; }

.arrow-bottom-19[data-color="key"] { border-top: 1.9rem solid #FFEC00; }

.arrow-bottom-19[data-color="base1"] { border-top: 1.9rem solid #F9F6ED; }

.arrow-bottom-19[data-color="base2"] { border-top: 1.9rem solid #F2EAEA; }

.arrow-bottom-19[data-color="base3"] { border-top: 1.9rem solid #F9F6ED; }

.arrow-bottom-19[data-color="gray"] { border-top: 1.9rem solid #707070; }

.arrow-left-19 { position: absolute; top: 0; bottom: 0; left: -3.8rem; margin: auto; width: 1.9rem; height: 1.9rem; box-sizing: border-box; border: 1.9rem solid transparent; }

.arrow-left-19[data-color="white"] { border-right: 1.9rem solid #fff; }

.arrow-left-19[data-color="black"] { border-right: 1.9rem solid #1A1311; }

.arrow-left-19[data-color="key"] { border-right: 1.9rem solid #FFEC00; }

.arrow-left-19[data-color="base1"] { border-right: 1.9rem solid #F9F6ED; }

.arrow-left-19[data-color="base2"] { border-right: 1.9rem solid #F2EAEA; }

.arrow-left-19[data-color="base3"] { border-right: 1.9rem solid #F9F6ED; }

.arrow-left-19[data-color="gray"] { border-right: 1.9rem solid #707070; }

.arrow-right-19 { position: absolute; top: 0; bottom: 0; right: -3.8rem; margin: auto; width: 1.9rem; height: 1.9rem; box-sizing: border-box; border: 1.9rem solid transparent; }

.arrow-right-19[data-color="white"] { border-left: 1.9rem solid #fff; }

.arrow-right-19[data-color="black"] { border-left: 1.9rem solid #1A1311; }

.arrow-right-19[data-color="key"] { border-left: 1.9rem solid #FFEC00; }

.arrow-right-19[data-color="base1"] { border-left: 1.9rem solid #F9F6ED; }

.arrow-right-19[data-color="base2"] { border-left: 1.9rem solid #F2EAEA; }

.arrow-right-19[data-color="base3"] { border-left: 1.9rem solid #F9F6ED; }

.arrow-right-19[data-color="gray"] { border-left: 1.9rem solid #707070; }

.arrow-top-20 { position: absolute; top: -4rem; left: 0; right: 0; margin: auto; width: 2rem; height: 2rem; box-sizing: border-box; border: 2rem solid transparent; }

.arrow-top-20[data-color="white"] { border-bottom: 2rem solid #fff; }

.arrow-top-20[data-color="black"] { border-bottom: 2rem solid #1A1311; }

.arrow-top-20[data-color="key"] { border-bottom: 2rem solid #FFEC00; }

.arrow-top-20[data-color="base1"] { border-bottom: 2rem solid #F9F6ED; }

.arrow-top-20[data-color="base2"] { border-bottom: 2rem solid #F2EAEA; }

.arrow-top-20[data-color="base3"] { border-bottom: 2rem solid #F9F6ED; }

.arrow-top-20[data-color="gray"] { border-bottom: 2rem solid #707070; }

.arrow-bottom-20 { position: absolute; bottom: -4rem; left: 0; right: 0; margin: auto; width: 2rem; height: 2rem; box-sizing: border-box; border: 2rem solid transparent; }

.arrow-bottom-20[data-color="white"] { border-top: 2rem solid #fff; }

.arrow-bottom-20[data-color="black"] { border-top: 2rem solid #1A1311; }

.arrow-bottom-20[data-color="key"] { border-top: 2rem solid #FFEC00; }

.arrow-bottom-20[data-color="base1"] { border-top: 2rem solid #F9F6ED; }

.arrow-bottom-20[data-color="base2"] { border-top: 2rem solid #F2EAEA; }

.arrow-bottom-20[data-color="base3"] { border-top: 2rem solid #F9F6ED; }

.arrow-bottom-20[data-color="gray"] { border-top: 2rem solid #707070; }

.arrow-left-20 { position: absolute; top: 0; bottom: 0; left: -4rem; margin: auto; width: 2rem; height: 2rem; box-sizing: border-box; border: 2rem solid transparent; }

.arrow-left-20[data-color="white"] { border-right: 2rem solid #fff; }

.arrow-left-20[data-color="black"] { border-right: 2rem solid #1A1311; }

.arrow-left-20[data-color="key"] { border-right: 2rem solid #FFEC00; }

.arrow-left-20[data-color="base1"] { border-right: 2rem solid #F9F6ED; }

.arrow-left-20[data-color="base2"] { border-right: 2rem solid #F2EAEA; }

.arrow-left-20[data-color="base3"] { border-right: 2rem solid #F9F6ED; }

.arrow-left-20[data-color="gray"] { border-right: 2rem solid #707070; }

.arrow-right-20 { position: absolute; top: 0; bottom: 0; right: -4rem; margin: auto; width: 2rem; height: 2rem; box-sizing: border-box; border: 2rem solid transparent; }

.arrow-right-20[data-color="white"] { border-left: 2rem solid #fff; }

.arrow-right-20[data-color="black"] { border-left: 2rem solid #1A1311; }

.arrow-right-20[data-color="key"] { border-left: 2rem solid #FFEC00; }

.arrow-right-20[data-color="base1"] { border-left: 2rem solid #F9F6ED; }

.arrow-right-20[data-color="base2"] { border-left: 2rem solid #F2EAEA; }

.arrow-right-20[data-color="base3"] { border-left: 2rem solid #F9F6ED; }

.arrow-right-20[data-color="gray"] { border-left: 2rem solid #707070; }

.arrow-top-21 { position: absolute; top: -4.2rem; left: 0; right: 0; margin: auto; width: 2.1rem; height: 2.1rem; box-sizing: border-box; border: 2.1rem solid transparent; }

.arrow-top-21[data-color="white"] { border-bottom: 2.1rem solid #fff; }

.arrow-top-21[data-color="black"] { border-bottom: 2.1rem solid #1A1311; }

.arrow-top-21[data-color="key"] { border-bottom: 2.1rem solid #FFEC00; }

.arrow-top-21[data-color="base1"] { border-bottom: 2.1rem solid #F9F6ED; }

.arrow-top-21[data-color="base2"] { border-bottom: 2.1rem solid #F2EAEA; }

.arrow-top-21[data-color="base3"] { border-bottom: 2.1rem solid #F9F6ED; }

.arrow-top-21[data-color="gray"] { border-bottom: 2.1rem solid #707070; }

.arrow-bottom-21 { position: absolute; bottom: -4.2rem; left: 0; right: 0; margin: auto; width: 2.1rem; height: 2.1rem; box-sizing: border-box; border: 2.1rem solid transparent; }

.arrow-bottom-21[data-color="white"] { border-top: 2.1rem solid #fff; }

.arrow-bottom-21[data-color="black"] { border-top: 2.1rem solid #1A1311; }

.arrow-bottom-21[data-color="key"] { border-top: 2.1rem solid #FFEC00; }

.arrow-bottom-21[data-color="base1"] { border-top: 2.1rem solid #F9F6ED; }

.arrow-bottom-21[data-color="base2"] { border-top: 2.1rem solid #F2EAEA; }

.arrow-bottom-21[data-color="base3"] { border-top: 2.1rem solid #F9F6ED; }

.arrow-bottom-21[data-color="gray"] { border-top: 2.1rem solid #707070; }

.arrow-left-21 { position: absolute; top: 0; bottom: 0; left: -4.2rem; margin: auto; width: 2.1rem; height: 2.1rem; box-sizing: border-box; border: 2.1rem solid transparent; }

.arrow-left-21[data-color="white"] { border-right: 2.1rem solid #fff; }

.arrow-left-21[data-color="black"] { border-right: 2.1rem solid #1A1311; }

.arrow-left-21[data-color="key"] { border-right: 2.1rem solid #FFEC00; }

.arrow-left-21[data-color="base1"] { border-right: 2.1rem solid #F9F6ED; }

.arrow-left-21[data-color="base2"] { border-right: 2.1rem solid #F2EAEA; }

.arrow-left-21[data-color="base3"] { border-right: 2.1rem solid #F9F6ED; }

.arrow-left-21[data-color="gray"] { border-right: 2.1rem solid #707070; }

.arrow-right-21 { position: absolute; top: 0; bottom: 0; right: -4.2rem; margin: auto; width: 2.1rem; height: 2.1rem; box-sizing: border-box; border: 2.1rem solid transparent; }

.arrow-right-21[data-color="white"] { border-left: 2.1rem solid #fff; }

.arrow-right-21[data-color="black"] { border-left: 2.1rem solid #1A1311; }

.arrow-right-21[data-color="key"] { border-left: 2.1rem solid #FFEC00; }

.arrow-right-21[data-color="base1"] { border-left: 2.1rem solid #F9F6ED; }

.arrow-right-21[data-color="base2"] { border-left: 2.1rem solid #F2EAEA; }

.arrow-right-21[data-color="base3"] { border-left: 2.1rem solid #F9F6ED; }

.arrow-right-21[data-color="gray"] { border-left: 2.1rem solid #707070; }

.arrow-top-22 { position: absolute; top: -4.4rem; left: 0; right: 0; margin: auto; width: 2.2rem; height: 2.2rem; box-sizing: border-box; border: 2.2rem solid transparent; }

.arrow-top-22[data-color="white"] { border-bottom: 2.2rem solid #fff; }

.arrow-top-22[data-color="black"] { border-bottom: 2.2rem solid #1A1311; }

.arrow-top-22[data-color="key"] { border-bottom: 2.2rem solid #FFEC00; }

.arrow-top-22[data-color="base1"] { border-bottom: 2.2rem solid #F9F6ED; }

.arrow-top-22[data-color="base2"] { border-bottom: 2.2rem solid #F2EAEA; }

.arrow-top-22[data-color="base3"] { border-bottom: 2.2rem solid #F9F6ED; }

.arrow-top-22[data-color="gray"] { border-bottom: 2.2rem solid #707070; }

.arrow-bottom-22 { position: absolute; bottom: -4.4rem; left: 0; right: 0; margin: auto; width: 2.2rem; height: 2.2rem; box-sizing: border-box; border: 2.2rem solid transparent; }

.arrow-bottom-22[data-color="white"] { border-top: 2.2rem solid #fff; }

.arrow-bottom-22[data-color="black"] { border-top: 2.2rem solid #1A1311; }

.arrow-bottom-22[data-color="key"] { border-top: 2.2rem solid #FFEC00; }

.arrow-bottom-22[data-color="base1"] { border-top: 2.2rem solid #F9F6ED; }

.arrow-bottom-22[data-color="base2"] { border-top: 2.2rem solid #F2EAEA; }

.arrow-bottom-22[data-color="base3"] { border-top: 2.2rem solid #F9F6ED; }

.arrow-bottom-22[data-color="gray"] { border-top: 2.2rem solid #707070; }

.arrow-left-22 { position: absolute; top: 0; bottom: 0; left: -4.4rem; margin: auto; width: 2.2rem; height: 2.2rem; box-sizing: border-box; border: 2.2rem solid transparent; }

.arrow-left-22[data-color="white"] { border-right: 2.2rem solid #fff; }

.arrow-left-22[data-color="black"] { border-right: 2.2rem solid #1A1311; }

.arrow-left-22[data-color="key"] { border-right: 2.2rem solid #FFEC00; }

.arrow-left-22[data-color="base1"] { border-right: 2.2rem solid #F9F6ED; }

.arrow-left-22[data-color="base2"] { border-right: 2.2rem solid #F2EAEA; }

.arrow-left-22[data-color="base3"] { border-right: 2.2rem solid #F9F6ED; }

.arrow-left-22[data-color="gray"] { border-right: 2.2rem solid #707070; }

.arrow-right-22 { position: absolute; top: 0; bottom: 0; right: -4.4rem; margin: auto; width: 2.2rem; height: 2.2rem; box-sizing: border-box; border: 2.2rem solid transparent; }

.arrow-right-22[data-color="white"] { border-left: 2.2rem solid #fff; }

.arrow-right-22[data-color="black"] { border-left: 2.2rem solid #1A1311; }

.arrow-right-22[data-color="key"] { border-left: 2.2rem solid #FFEC00; }

.arrow-right-22[data-color="base1"] { border-left: 2.2rem solid #F9F6ED; }

.arrow-right-22[data-color="base2"] { border-left: 2.2rem solid #F2EAEA; }

.arrow-right-22[data-color="base3"] { border-left: 2.2rem solid #F9F6ED; }

.arrow-right-22[data-color="gray"] { border-left: 2.2rem solid #707070; }

.arrow-top-23 { position: absolute; top: -4.6rem; left: 0; right: 0; margin: auto; width: 2.3rem; height: 2.3rem; box-sizing: border-box; border: 2.3rem solid transparent; }

.arrow-top-23[data-color="white"] { border-bottom: 2.3rem solid #fff; }

.arrow-top-23[data-color="black"] { border-bottom: 2.3rem solid #1A1311; }

.arrow-top-23[data-color="key"] { border-bottom: 2.3rem solid #FFEC00; }

.arrow-top-23[data-color="base1"] { border-bottom: 2.3rem solid #F9F6ED; }

.arrow-top-23[data-color="base2"] { border-bottom: 2.3rem solid #F2EAEA; }

.arrow-top-23[data-color="base3"] { border-bottom: 2.3rem solid #F9F6ED; }

.arrow-top-23[data-color="gray"] { border-bottom: 2.3rem solid #707070; }

.arrow-bottom-23 { position: absolute; bottom: -4.6rem; left: 0; right: 0; margin: auto; width: 2.3rem; height: 2.3rem; box-sizing: border-box; border: 2.3rem solid transparent; }

.arrow-bottom-23[data-color="white"] { border-top: 2.3rem solid #fff; }

.arrow-bottom-23[data-color="black"] { border-top: 2.3rem solid #1A1311; }

.arrow-bottom-23[data-color="key"] { border-top: 2.3rem solid #FFEC00; }

.arrow-bottom-23[data-color="base1"] { border-top: 2.3rem solid #F9F6ED; }

.arrow-bottom-23[data-color="base2"] { border-top: 2.3rem solid #F2EAEA; }

.arrow-bottom-23[data-color="base3"] { border-top: 2.3rem solid #F9F6ED; }

.arrow-bottom-23[data-color="gray"] { border-top: 2.3rem solid #707070; }

.arrow-left-23 { position: absolute; top: 0; bottom: 0; left: -4.6rem; margin: auto; width: 2.3rem; height: 2.3rem; box-sizing: border-box; border: 2.3rem solid transparent; }

.arrow-left-23[data-color="white"] { border-right: 2.3rem solid #fff; }

.arrow-left-23[data-color="black"] { border-right: 2.3rem solid #1A1311; }

.arrow-left-23[data-color="key"] { border-right: 2.3rem solid #FFEC00; }

.arrow-left-23[data-color="base1"] { border-right: 2.3rem solid #F9F6ED; }

.arrow-left-23[data-color="base2"] { border-right: 2.3rem solid #F2EAEA; }

.arrow-left-23[data-color="base3"] { border-right: 2.3rem solid #F9F6ED; }

.arrow-left-23[data-color="gray"] { border-right: 2.3rem solid #707070; }

.arrow-right-23 { position: absolute; top: 0; bottom: 0; right: -4.6rem; margin: auto; width: 2.3rem; height: 2.3rem; box-sizing: border-box; border: 2.3rem solid transparent; }

.arrow-right-23[data-color="white"] { border-left: 2.3rem solid #fff; }

.arrow-right-23[data-color="black"] { border-left: 2.3rem solid #1A1311; }

.arrow-right-23[data-color="key"] { border-left: 2.3rem solid #FFEC00; }

.arrow-right-23[data-color="base1"] { border-left: 2.3rem solid #F9F6ED; }

.arrow-right-23[data-color="base2"] { border-left: 2.3rem solid #F2EAEA; }

.arrow-right-23[data-color="base3"] { border-left: 2.3rem solid #F9F6ED; }

.arrow-right-23[data-color="gray"] { border-left: 2.3rem solid #707070; }

.arrow-top-24 { position: absolute; top: -4.8rem; left: 0; right: 0; margin: auto; width: 2.4rem; height: 2.4rem; box-sizing: border-box; border: 2.4rem solid transparent; }

.arrow-top-24[data-color="white"] { border-bottom: 2.4rem solid #fff; }

.arrow-top-24[data-color="black"] { border-bottom: 2.4rem solid #1A1311; }

.arrow-top-24[data-color="key"] { border-bottom: 2.4rem solid #FFEC00; }

.arrow-top-24[data-color="base1"] { border-bottom: 2.4rem solid #F9F6ED; }

.arrow-top-24[data-color="base2"] { border-bottom: 2.4rem solid #F2EAEA; }

.arrow-top-24[data-color="base3"] { border-bottom: 2.4rem solid #F9F6ED; }

.arrow-top-24[data-color="gray"] { border-bottom: 2.4rem solid #707070; }

.arrow-bottom-24 { position: absolute; bottom: -4.8rem; left: 0; right: 0; margin: auto; width: 2.4rem; height: 2.4rem; box-sizing: border-box; border: 2.4rem solid transparent; }

.arrow-bottom-24[data-color="white"] { border-top: 2.4rem solid #fff; }

.arrow-bottom-24[data-color="black"] { border-top: 2.4rem solid #1A1311; }

.arrow-bottom-24[data-color="key"] { border-top: 2.4rem solid #FFEC00; }

.arrow-bottom-24[data-color="base1"] { border-top: 2.4rem solid #F9F6ED; }

.arrow-bottom-24[data-color="base2"] { border-top: 2.4rem solid #F2EAEA; }

.arrow-bottom-24[data-color="base3"] { border-top: 2.4rem solid #F9F6ED; }

.arrow-bottom-24[data-color="gray"] { border-top: 2.4rem solid #707070; }

.arrow-left-24 { position: absolute; top: 0; bottom: 0; left: -4.8rem; margin: auto; width: 2.4rem; height: 2.4rem; box-sizing: border-box; border: 2.4rem solid transparent; }

.arrow-left-24[data-color="white"] { border-right: 2.4rem solid #fff; }

.arrow-left-24[data-color="black"] { border-right: 2.4rem solid #1A1311; }

.arrow-left-24[data-color="key"] { border-right: 2.4rem solid #FFEC00; }

.arrow-left-24[data-color="base1"] { border-right: 2.4rem solid #F9F6ED; }

.arrow-left-24[data-color="base2"] { border-right: 2.4rem solid #F2EAEA; }

.arrow-left-24[data-color="base3"] { border-right: 2.4rem solid #F9F6ED; }

.arrow-left-24[data-color="gray"] { border-right: 2.4rem solid #707070; }

.arrow-right-24 { position: absolute; top: 0; bottom: 0; right: -4.8rem; margin: auto; width: 2.4rem; height: 2.4rem; box-sizing: border-box; border: 2.4rem solid transparent; }

.arrow-right-24[data-color="white"] { border-left: 2.4rem solid #fff; }

.arrow-right-24[data-color="black"] { border-left: 2.4rem solid #1A1311; }

.arrow-right-24[data-color="key"] { border-left: 2.4rem solid #FFEC00; }

.arrow-right-24[data-color="base1"] { border-left: 2.4rem solid #F9F6ED; }

.arrow-right-24[data-color="base2"] { border-left: 2.4rem solid #F2EAEA; }

.arrow-right-24[data-color="base3"] { border-left: 2.4rem solid #F9F6ED; }

.arrow-right-24[data-color="gray"] { border-left: 2.4rem solid #707070; }

.arrow-top-25 { position: absolute; top: -5rem; left: 0; right: 0; margin: auto; width: 2.5rem; height: 2.5rem; box-sizing: border-box; border: 2.5rem solid transparent; }

.arrow-top-25[data-color="white"] { border-bottom: 2.5rem solid #fff; }

.arrow-top-25[data-color="black"] { border-bottom: 2.5rem solid #1A1311; }

.arrow-top-25[data-color="key"] { border-bottom: 2.5rem solid #FFEC00; }

.arrow-top-25[data-color="base1"] { border-bottom: 2.5rem solid #F9F6ED; }

.arrow-top-25[data-color="base2"] { border-bottom: 2.5rem solid #F2EAEA; }

.arrow-top-25[data-color="base3"] { border-bottom: 2.5rem solid #F9F6ED; }

.arrow-top-25[data-color="gray"] { border-bottom: 2.5rem solid #707070; }

.arrow-bottom-25 { position: absolute; bottom: -5rem; left: 0; right: 0; margin: auto; width: 2.5rem; height: 2.5rem; box-sizing: border-box; border: 2.5rem solid transparent; }

.arrow-bottom-25[data-color="white"] { border-top: 2.5rem solid #fff; }

.arrow-bottom-25[data-color="black"] { border-top: 2.5rem solid #1A1311; }

.arrow-bottom-25[data-color="key"] { border-top: 2.5rem solid #FFEC00; }

.arrow-bottom-25[data-color="base1"] { border-top: 2.5rem solid #F9F6ED; }

.arrow-bottom-25[data-color="base2"] { border-top: 2.5rem solid #F2EAEA; }

.arrow-bottom-25[data-color="base3"] { border-top: 2.5rem solid #F9F6ED; }

.arrow-bottom-25[data-color="gray"] { border-top: 2.5rem solid #707070; }

.arrow-left-25 { position: absolute; top: 0; bottom: 0; left: -5rem; margin: auto; width: 2.5rem; height: 2.5rem; box-sizing: border-box; border: 2.5rem solid transparent; }

.arrow-left-25[data-color="white"] { border-right: 2.5rem solid #fff; }

.arrow-left-25[data-color="black"] { border-right: 2.5rem solid #1A1311; }

.arrow-left-25[data-color="key"] { border-right: 2.5rem solid #FFEC00; }

.arrow-left-25[data-color="base1"] { border-right: 2.5rem solid #F9F6ED; }

.arrow-left-25[data-color="base2"] { border-right: 2.5rem solid #F2EAEA; }

.arrow-left-25[data-color="base3"] { border-right: 2.5rem solid #F9F6ED; }

.arrow-left-25[data-color="gray"] { border-right: 2.5rem solid #707070; }

.arrow-right-25 { position: absolute; top: 0; bottom: 0; right: -5rem; margin: auto; width: 2.5rem; height: 2.5rem; box-sizing: border-box; border: 2.5rem solid transparent; }

.arrow-right-25[data-color="white"] { border-left: 2.5rem solid #fff; }

.arrow-right-25[data-color="black"] { border-left: 2.5rem solid #1A1311; }

.arrow-right-25[data-color="key"] { border-left: 2.5rem solid #FFEC00; }

.arrow-right-25[data-color="base1"] { border-left: 2.5rem solid #F9F6ED; }

.arrow-right-25[data-color="base2"] { border-left: 2.5rem solid #F2EAEA; }

.arrow-right-25[data-color="base3"] { border-left: 2.5rem solid #F9F6ED; }

.arrow-right-25[data-color="gray"] { border-left: 2.5rem solid #707070; }

.arrow-top-26 { position: absolute; top: -5.2rem; left: 0; right: 0; margin: auto; width: 2.6rem; height: 2.6rem; box-sizing: border-box; border: 2.6rem solid transparent; }

.arrow-top-26[data-color="white"] { border-bottom: 2.6rem solid #fff; }

.arrow-top-26[data-color="black"] { border-bottom: 2.6rem solid #1A1311; }

.arrow-top-26[data-color="key"] { border-bottom: 2.6rem solid #FFEC00; }

.arrow-top-26[data-color="base1"] { border-bottom: 2.6rem solid #F9F6ED; }

.arrow-top-26[data-color="base2"] { border-bottom: 2.6rem solid #F2EAEA; }

.arrow-top-26[data-color="base3"] { border-bottom: 2.6rem solid #F9F6ED; }

.arrow-top-26[data-color="gray"] { border-bottom: 2.6rem solid #707070; }

.arrow-bottom-26 { position: absolute; bottom: -5.2rem; left: 0; right: 0; margin: auto; width: 2.6rem; height: 2.6rem; box-sizing: border-box; border: 2.6rem solid transparent; }

.arrow-bottom-26[data-color="white"] { border-top: 2.6rem solid #fff; }

.arrow-bottom-26[data-color="black"] { border-top: 2.6rem solid #1A1311; }

.arrow-bottom-26[data-color="key"] { border-top: 2.6rem solid #FFEC00; }

.arrow-bottom-26[data-color="base1"] { border-top: 2.6rem solid #F9F6ED; }

.arrow-bottom-26[data-color="base2"] { border-top: 2.6rem solid #F2EAEA; }

.arrow-bottom-26[data-color="base3"] { border-top: 2.6rem solid #F9F6ED; }

.arrow-bottom-26[data-color="gray"] { border-top: 2.6rem solid #707070; }

.arrow-left-26 { position: absolute; top: 0; bottom: 0; left: -5.2rem; margin: auto; width: 2.6rem; height: 2.6rem; box-sizing: border-box; border: 2.6rem solid transparent; }

.arrow-left-26[data-color="white"] { border-right: 2.6rem solid #fff; }

.arrow-left-26[data-color="black"] { border-right: 2.6rem solid #1A1311; }

.arrow-left-26[data-color="key"] { border-right: 2.6rem solid #FFEC00; }

.arrow-left-26[data-color="base1"] { border-right: 2.6rem solid #F9F6ED; }

.arrow-left-26[data-color="base2"] { border-right: 2.6rem solid #F2EAEA; }

.arrow-left-26[data-color="base3"] { border-right: 2.6rem solid #F9F6ED; }

.arrow-left-26[data-color="gray"] { border-right: 2.6rem solid #707070; }

.arrow-right-26 { position: absolute; top: 0; bottom: 0; right: -5.2rem; margin: auto; width: 2.6rem; height: 2.6rem; box-sizing: border-box; border: 2.6rem solid transparent; }

.arrow-right-26[data-color="white"] { border-left: 2.6rem solid #fff; }

.arrow-right-26[data-color="black"] { border-left: 2.6rem solid #1A1311; }

.arrow-right-26[data-color="key"] { border-left: 2.6rem solid #FFEC00; }

.arrow-right-26[data-color="base1"] { border-left: 2.6rem solid #F9F6ED; }

.arrow-right-26[data-color="base2"] { border-left: 2.6rem solid #F2EAEA; }

.arrow-right-26[data-color="base3"] { border-left: 2.6rem solid #F9F6ED; }

.arrow-right-26[data-color="gray"] { border-left: 2.6rem solid #707070; }

.arrow-top-27 { position: absolute; top: -5.4rem; left: 0; right: 0; margin: auto; width: 2.7rem; height: 2.7rem; box-sizing: border-box; border: 2.7rem solid transparent; }

.arrow-top-27[data-color="white"] { border-bottom: 2.7rem solid #fff; }

.arrow-top-27[data-color="black"] { border-bottom: 2.7rem solid #1A1311; }

.arrow-top-27[data-color="key"] { border-bottom: 2.7rem solid #FFEC00; }

.arrow-top-27[data-color="base1"] { border-bottom: 2.7rem solid #F9F6ED; }

.arrow-top-27[data-color="base2"] { border-bottom: 2.7rem solid #F2EAEA; }

.arrow-top-27[data-color="base3"] { border-bottom: 2.7rem solid #F9F6ED; }

.arrow-top-27[data-color="gray"] { border-bottom: 2.7rem solid #707070; }

.arrow-bottom-27 { position: absolute; bottom: -5.4rem; left: 0; right: 0; margin: auto; width: 2.7rem; height: 2.7rem; box-sizing: border-box; border: 2.7rem solid transparent; }

.arrow-bottom-27[data-color="white"] { border-top: 2.7rem solid #fff; }

.arrow-bottom-27[data-color="black"] { border-top: 2.7rem solid #1A1311; }

.arrow-bottom-27[data-color="key"] { border-top: 2.7rem solid #FFEC00; }

.arrow-bottom-27[data-color="base1"] { border-top: 2.7rem solid #F9F6ED; }

.arrow-bottom-27[data-color="base2"] { border-top: 2.7rem solid #F2EAEA; }

.arrow-bottom-27[data-color="base3"] { border-top: 2.7rem solid #F9F6ED; }

.arrow-bottom-27[data-color="gray"] { border-top: 2.7rem solid #707070; }

.arrow-left-27 { position: absolute; top: 0; bottom: 0; left: -5.4rem; margin: auto; width: 2.7rem; height: 2.7rem; box-sizing: border-box; border: 2.7rem solid transparent; }

.arrow-left-27[data-color="white"] { border-right: 2.7rem solid #fff; }

.arrow-left-27[data-color="black"] { border-right: 2.7rem solid #1A1311; }

.arrow-left-27[data-color="key"] { border-right: 2.7rem solid #FFEC00; }

.arrow-left-27[data-color="base1"] { border-right: 2.7rem solid #F9F6ED; }

.arrow-left-27[data-color="base2"] { border-right: 2.7rem solid #F2EAEA; }

.arrow-left-27[data-color="base3"] { border-right: 2.7rem solid #F9F6ED; }

.arrow-left-27[data-color="gray"] { border-right: 2.7rem solid #707070; }

.arrow-right-27 { position: absolute; top: 0; bottom: 0; right: -5.4rem; margin: auto; width: 2.7rem; height: 2.7rem; box-sizing: border-box; border: 2.7rem solid transparent; }

.arrow-right-27[data-color="white"] { border-left: 2.7rem solid #fff; }

.arrow-right-27[data-color="black"] { border-left: 2.7rem solid #1A1311; }

.arrow-right-27[data-color="key"] { border-left: 2.7rem solid #FFEC00; }

.arrow-right-27[data-color="base1"] { border-left: 2.7rem solid #F9F6ED; }

.arrow-right-27[data-color="base2"] { border-left: 2.7rem solid #F2EAEA; }

.arrow-right-27[data-color="base3"] { border-left: 2.7rem solid #F9F6ED; }

.arrow-right-27[data-color="gray"] { border-left: 2.7rem solid #707070; }

.arrow-top-28 { position: absolute; top: -5.6rem; left: 0; right: 0; margin: auto; width: 2.8rem; height: 2.8rem; box-sizing: border-box; border: 2.8rem solid transparent; }

.arrow-top-28[data-color="white"] { border-bottom: 2.8rem solid #fff; }

.arrow-top-28[data-color="black"] { border-bottom: 2.8rem solid #1A1311; }

.arrow-top-28[data-color="key"] { border-bottom: 2.8rem solid #FFEC00; }

.arrow-top-28[data-color="base1"] { border-bottom: 2.8rem solid #F9F6ED; }

.arrow-top-28[data-color="base2"] { border-bottom: 2.8rem solid #F2EAEA; }

.arrow-top-28[data-color="base3"] { border-bottom: 2.8rem solid #F9F6ED; }

.arrow-top-28[data-color="gray"] { border-bottom: 2.8rem solid #707070; }

.arrow-bottom-28 { position: absolute; bottom: -5.6rem; left: 0; right: 0; margin: auto; width: 2.8rem; height: 2.8rem; box-sizing: border-box; border: 2.8rem solid transparent; }

.arrow-bottom-28[data-color="white"] { border-top: 2.8rem solid #fff; }

.arrow-bottom-28[data-color="black"] { border-top: 2.8rem solid #1A1311; }

.arrow-bottom-28[data-color="key"] { border-top: 2.8rem solid #FFEC00; }

.arrow-bottom-28[data-color="base1"] { border-top: 2.8rem solid #F9F6ED; }

.arrow-bottom-28[data-color="base2"] { border-top: 2.8rem solid #F2EAEA; }

.arrow-bottom-28[data-color="base3"] { border-top: 2.8rem solid #F9F6ED; }

.arrow-bottom-28[data-color="gray"] { border-top: 2.8rem solid #707070; }

.arrow-left-28 { position: absolute; top: 0; bottom: 0; left: -5.6rem; margin: auto; width: 2.8rem; height: 2.8rem; box-sizing: border-box; border: 2.8rem solid transparent; }

.arrow-left-28[data-color="white"] { border-right: 2.8rem solid #fff; }

.arrow-left-28[data-color="black"] { border-right: 2.8rem solid #1A1311; }

.arrow-left-28[data-color="key"] { border-right: 2.8rem solid #FFEC00; }

.arrow-left-28[data-color="base1"] { border-right: 2.8rem solid #F9F6ED; }

.arrow-left-28[data-color="base2"] { border-right: 2.8rem solid #F2EAEA; }

.arrow-left-28[data-color="base3"] { border-right: 2.8rem solid #F9F6ED; }

.arrow-left-28[data-color="gray"] { border-right: 2.8rem solid #707070; }

.arrow-right-28 { position: absolute; top: 0; bottom: 0; right: -5.6rem; margin: auto; width: 2.8rem; height: 2.8rem; box-sizing: border-box; border: 2.8rem solid transparent; }

.arrow-right-28[data-color="white"] { border-left: 2.8rem solid #fff; }

.arrow-right-28[data-color="black"] { border-left: 2.8rem solid #1A1311; }

.arrow-right-28[data-color="key"] { border-left: 2.8rem solid #FFEC00; }

.arrow-right-28[data-color="base1"] { border-left: 2.8rem solid #F9F6ED; }

.arrow-right-28[data-color="base2"] { border-left: 2.8rem solid #F2EAEA; }

.arrow-right-28[data-color="base3"] { border-left: 2.8rem solid #F9F6ED; }

.arrow-right-28[data-color="gray"] { border-left: 2.8rem solid #707070; }

.arrow-top-29 { position: absolute; top: -5.8rem; left: 0; right: 0; margin: auto; width: 2.9rem; height: 2.9rem; box-sizing: border-box; border: 2.9rem solid transparent; }

.arrow-top-29[data-color="white"] { border-bottom: 2.9rem solid #fff; }

.arrow-top-29[data-color="black"] { border-bottom: 2.9rem solid #1A1311; }

.arrow-top-29[data-color="key"] { border-bottom: 2.9rem solid #FFEC00; }

.arrow-top-29[data-color="base1"] { border-bottom: 2.9rem solid #F9F6ED; }

.arrow-top-29[data-color="base2"] { border-bottom: 2.9rem solid #F2EAEA; }

.arrow-top-29[data-color="base3"] { border-bottom: 2.9rem solid #F9F6ED; }

.arrow-top-29[data-color="gray"] { border-bottom: 2.9rem solid #707070; }

.arrow-bottom-29 { position: absolute; bottom: -5.8rem; left: 0; right: 0; margin: auto; width: 2.9rem; height: 2.9rem; box-sizing: border-box; border: 2.9rem solid transparent; }

.arrow-bottom-29[data-color="white"] { border-top: 2.9rem solid #fff; }

.arrow-bottom-29[data-color="black"] { border-top: 2.9rem solid #1A1311; }

.arrow-bottom-29[data-color="key"] { border-top: 2.9rem solid #FFEC00; }

.arrow-bottom-29[data-color="base1"] { border-top: 2.9rem solid #F9F6ED; }

.arrow-bottom-29[data-color="base2"] { border-top: 2.9rem solid #F2EAEA; }

.arrow-bottom-29[data-color="base3"] { border-top: 2.9rem solid #F9F6ED; }

.arrow-bottom-29[data-color="gray"] { border-top: 2.9rem solid #707070; }

.arrow-left-29 { position: absolute; top: 0; bottom: 0; left: -5.8rem; margin: auto; width: 2.9rem; height: 2.9rem; box-sizing: border-box; border: 2.9rem solid transparent; }

.arrow-left-29[data-color="white"] { border-right: 2.9rem solid #fff; }

.arrow-left-29[data-color="black"] { border-right: 2.9rem solid #1A1311; }

.arrow-left-29[data-color="key"] { border-right: 2.9rem solid #FFEC00; }

.arrow-left-29[data-color="base1"] { border-right: 2.9rem solid #F9F6ED; }

.arrow-left-29[data-color="base2"] { border-right: 2.9rem solid #F2EAEA; }

.arrow-left-29[data-color="base3"] { border-right: 2.9rem solid #F9F6ED; }

.arrow-left-29[data-color="gray"] { border-right: 2.9rem solid #707070; }

.arrow-right-29 { position: absolute; top: 0; bottom: 0; right: -5.8rem; margin: auto; width: 2.9rem; height: 2.9rem; box-sizing: border-box; border: 2.9rem solid transparent; }

.arrow-right-29[data-color="white"] { border-left: 2.9rem solid #fff; }

.arrow-right-29[data-color="black"] { border-left: 2.9rem solid #1A1311; }

.arrow-right-29[data-color="key"] { border-left: 2.9rem solid #FFEC00; }

.arrow-right-29[data-color="base1"] { border-left: 2.9rem solid #F9F6ED; }

.arrow-right-29[data-color="base2"] { border-left: 2.9rem solid #F2EAEA; }

.arrow-right-29[data-color="base3"] { border-left: 2.9rem solid #F9F6ED; }

.arrow-right-29[data-color="gray"] { border-left: 2.9rem solid #707070; }

.arrow-top-30 { position: absolute; top: -6rem; left: 0; right: 0; margin: auto; width: 3rem; height: 3rem; box-sizing: border-box; border: 3rem solid transparent; }

.arrow-top-30[data-color="white"] { border-bottom: 3rem solid #fff; }

.arrow-top-30[data-color="black"] { border-bottom: 3rem solid #1A1311; }

.arrow-top-30[data-color="key"] { border-bottom: 3rem solid #FFEC00; }

.arrow-top-30[data-color="base1"] { border-bottom: 3rem solid #F9F6ED; }

.arrow-top-30[data-color="base2"] { border-bottom: 3rem solid #F2EAEA; }

.arrow-top-30[data-color="base3"] { border-bottom: 3rem solid #F9F6ED; }

.arrow-top-30[data-color="gray"] { border-bottom: 3rem solid #707070; }

.arrow-bottom-30 { position: absolute; bottom: -6rem; left: 0; right: 0; margin: auto; width: 3rem; height: 3rem; box-sizing: border-box; border: 3rem solid transparent; }

.arrow-bottom-30[data-color="white"] { border-top: 3rem solid #fff; }

.arrow-bottom-30[data-color="black"] { border-top: 3rem solid #1A1311; }

.arrow-bottom-30[data-color="key"] { border-top: 3rem solid #FFEC00; }

.arrow-bottom-30[data-color="base1"] { border-top: 3rem solid #F9F6ED; }

.arrow-bottom-30[data-color="base2"] { border-top: 3rem solid #F2EAEA; }

.arrow-bottom-30[data-color="base3"] { border-top: 3rem solid #F9F6ED; }

.arrow-bottom-30[data-color="gray"] { border-top: 3rem solid #707070; }

.arrow-left-30 { position: absolute; top: 0; bottom: 0; left: -6rem; margin: auto; width: 3rem; height: 3rem; box-sizing: border-box; border: 3rem solid transparent; }

.arrow-left-30[data-color="white"] { border-right: 3rem solid #fff; }

.arrow-left-30[data-color="black"] { border-right: 3rem solid #1A1311; }

.arrow-left-30[data-color="key"] { border-right: 3rem solid #FFEC00; }

.arrow-left-30[data-color="base1"] { border-right: 3rem solid #F9F6ED; }

.arrow-left-30[data-color="base2"] { border-right: 3rem solid #F2EAEA; }

.arrow-left-30[data-color="base3"] { border-right: 3rem solid #F9F6ED; }

.arrow-left-30[data-color="gray"] { border-right: 3rem solid #707070; }

.arrow-right-30 { position: absolute; top: 0; bottom: 0; right: -6rem; margin: auto; width: 3rem; height: 3rem; box-sizing: border-box; border: 3rem solid transparent; }

.arrow-right-30[data-color="white"] { border-left: 3rem solid #fff; }

.arrow-right-30[data-color="black"] { border-left: 3rem solid #1A1311; }

.arrow-right-30[data-color="key"] { border-left: 3rem solid #FFEC00; }

.arrow-right-30[data-color="base1"] { border-left: 3rem solid #F9F6ED; }

.arrow-right-30[data-color="base2"] { border-left: 3rem solid #F2EAEA; }

.arrow-right-30[data-color="base3"] { border-left: 3rem solid #F9F6ED; }

.arrow-right-30[data-color="gray"] { border-left: 3rem solid #707070; }

.arrow-top-31 { position: absolute; top: -6.2rem; left: 0; right: 0; margin: auto; width: 3.1rem; height: 3.1rem; box-sizing: border-box; border: 3.1rem solid transparent; }

.arrow-top-31[data-color="white"] { border-bottom: 3.1rem solid #fff; }

.arrow-top-31[data-color="black"] { border-bottom: 3.1rem solid #1A1311; }

.arrow-top-31[data-color="key"] { border-bottom: 3.1rem solid #FFEC00; }

.arrow-top-31[data-color="base1"] { border-bottom: 3.1rem solid #F9F6ED; }

.arrow-top-31[data-color="base2"] { border-bottom: 3.1rem solid #F2EAEA; }

.arrow-top-31[data-color="base3"] { border-bottom: 3.1rem solid #F9F6ED; }

.arrow-top-31[data-color="gray"] { border-bottom: 3.1rem solid #707070; }

.arrow-bottom-31 { position: absolute; bottom: -6.2rem; left: 0; right: 0; margin: auto; width: 3.1rem; height: 3.1rem; box-sizing: border-box; border: 3.1rem solid transparent; }

.arrow-bottom-31[data-color="white"] { border-top: 3.1rem solid #fff; }

.arrow-bottom-31[data-color="black"] { border-top: 3.1rem solid #1A1311; }

.arrow-bottom-31[data-color="key"] { border-top: 3.1rem solid #FFEC00; }

.arrow-bottom-31[data-color="base1"] { border-top: 3.1rem solid #F9F6ED; }

.arrow-bottom-31[data-color="base2"] { border-top: 3.1rem solid #F2EAEA; }

.arrow-bottom-31[data-color="base3"] { border-top: 3.1rem solid #F9F6ED; }

.arrow-bottom-31[data-color="gray"] { border-top: 3.1rem solid #707070; }

.arrow-left-31 { position: absolute; top: 0; bottom: 0; left: -6.2rem; margin: auto; width: 3.1rem; height: 3.1rem; box-sizing: border-box; border: 3.1rem solid transparent; }

.arrow-left-31[data-color="white"] { border-right: 3.1rem solid #fff; }

.arrow-left-31[data-color="black"] { border-right: 3.1rem solid #1A1311; }

.arrow-left-31[data-color="key"] { border-right: 3.1rem solid #FFEC00; }

.arrow-left-31[data-color="base1"] { border-right: 3.1rem solid #F9F6ED; }

.arrow-left-31[data-color="base2"] { border-right: 3.1rem solid #F2EAEA; }

.arrow-left-31[data-color="base3"] { border-right: 3.1rem solid #F9F6ED; }

.arrow-left-31[data-color="gray"] { border-right: 3.1rem solid #707070; }

.arrow-right-31 { position: absolute; top: 0; bottom: 0; right: -6.2rem; margin: auto; width: 3.1rem; height: 3.1rem; box-sizing: border-box; border: 3.1rem solid transparent; }

.arrow-right-31[data-color="white"] { border-left: 3.1rem solid #fff; }

.arrow-right-31[data-color="black"] { border-left: 3.1rem solid #1A1311; }

.arrow-right-31[data-color="key"] { border-left: 3.1rem solid #FFEC00; }

.arrow-right-31[data-color="base1"] { border-left: 3.1rem solid #F9F6ED; }

.arrow-right-31[data-color="base2"] { border-left: 3.1rem solid #F2EAEA; }

.arrow-right-31[data-color="base3"] { border-left: 3.1rem solid #F9F6ED; }

.arrow-right-31[data-color="gray"] { border-left: 3.1rem solid #707070; }

.arrow-top-32 { position: absolute; top: -6.4rem; left: 0; right: 0; margin: auto; width: 3.2rem; height: 3.2rem; box-sizing: border-box; border: 3.2rem solid transparent; }

.arrow-top-32[data-color="white"] { border-bottom: 3.2rem solid #fff; }

.arrow-top-32[data-color="black"] { border-bottom: 3.2rem solid #1A1311; }

.arrow-top-32[data-color="key"] { border-bottom: 3.2rem solid #FFEC00; }

.arrow-top-32[data-color="base1"] { border-bottom: 3.2rem solid #F9F6ED; }

.arrow-top-32[data-color="base2"] { border-bottom: 3.2rem solid #F2EAEA; }

.arrow-top-32[data-color="base3"] { border-bottom: 3.2rem solid #F9F6ED; }

.arrow-top-32[data-color="gray"] { border-bottom: 3.2rem solid #707070; }

.arrow-bottom-32 { position: absolute; bottom: -6.4rem; left: 0; right: 0; margin: auto; width: 3.2rem; height: 3.2rem; box-sizing: border-box; border: 3.2rem solid transparent; }

.arrow-bottom-32[data-color="white"] { border-top: 3.2rem solid #fff; }

.arrow-bottom-32[data-color="black"] { border-top: 3.2rem solid #1A1311; }

.arrow-bottom-32[data-color="key"] { border-top: 3.2rem solid #FFEC00; }

.arrow-bottom-32[data-color="base1"] { border-top: 3.2rem solid #F9F6ED; }

.arrow-bottom-32[data-color="base2"] { border-top: 3.2rem solid #F2EAEA; }

.arrow-bottom-32[data-color="base3"] { border-top: 3.2rem solid #F9F6ED; }

.arrow-bottom-32[data-color="gray"] { border-top: 3.2rem solid #707070; }

.arrow-left-32 { position: absolute; top: 0; bottom: 0; left: -6.4rem; margin: auto; width: 3.2rem; height: 3.2rem; box-sizing: border-box; border: 3.2rem solid transparent; }

.arrow-left-32[data-color="white"] { border-right: 3.2rem solid #fff; }

.arrow-left-32[data-color="black"] { border-right: 3.2rem solid #1A1311; }

.arrow-left-32[data-color="key"] { border-right: 3.2rem solid #FFEC00; }

.arrow-left-32[data-color="base1"] { border-right: 3.2rem solid #F9F6ED; }

.arrow-left-32[data-color="base2"] { border-right: 3.2rem solid #F2EAEA; }

.arrow-left-32[data-color="base3"] { border-right: 3.2rem solid #F9F6ED; }

.arrow-left-32[data-color="gray"] { border-right: 3.2rem solid #707070; }

.arrow-right-32 { position: absolute; top: 0; bottom: 0; right: -6.4rem; margin: auto; width: 3.2rem; height: 3.2rem; box-sizing: border-box; border: 3.2rem solid transparent; }

.arrow-right-32[data-color="white"] { border-left: 3.2rem solid #fff; }

.arrow-right-32[data-color="black"] { border-left: 3.2rem solid #1A1311; }

.arrow-right-32[data-color="key"] { border-left: 3.2rem solid #FFEC00; }

.arrow-right-32[data-color="base1"] { border-left: 3.2rem solid #F9F6ED; }

.arrow-right-32[data-color="base2"] { border-left: 3.2rem solid #F2EAEA; }

.arrow-right-32[data-color="base3"] { border-left: 3.2rem solid #F9F6ED; }

.arrow-right-32[data-color="gray"] { border-left: 3.2rem solid #707070; }

.arrow-top-33 { position: absolute; top: -6.6rem; left: 0; right: 0; margin: auto; width: 3.3rem; height: 3.3rem; box-sizing: border-box; border: 3.3rem solid transparent; }

.arrow-top-33[data-color="white"] { border-bottom: 3.3rem solid #fff; }

.arrow-top-33[data-color="black"] { border-bottom: 3.3rem solid #1A1311; }

.arrow-top-33[data-color="key"] { border-bottom: 3.3rem solid #FFEC00; }

.arrow-top-33[data-color="base1"] { border-bottom: 3.3rem solid #F9F6ED; }

.arrow-top-33[data-color="base2"] { border-bottom: 3.3rem solid #F2EAEA; }

.arrow-top-33[data-color="base3"] { border-bottom: 3.3rem solid #F9F6ED; }

.arrow-top-33[data-color="gray"] { border-bottom: 3.3rem solid #707070; }

.arrow-bottom-33 { position: absolute; bottom: -6.6rem; left: 0; right: 0; margin: auto; width: 3.3rem; height: 3.3rem; box-sizing: border-box; border: 3.3rem solid transparent; }

.arrow-bottom-33[data-color="white"] { border-top: 3.3rem solid #fff; }

.arrow-bottom-33[data-color="black"] { border-top: 3.3rem solid #1A1311; }

.arrow-bottom-33[data-color="key"] { border-top: 3.3rem solid #FFEC00; }

.arrow-bottom-33[data-color="base1"] { border-top: 3.3rem solid #F9F6ED; }

.arrow-bottom-33[data-color="base2"] { border-top: 3.3rem solid #F2EAEA; }

.arrow-bottom-33[data-color="base3"] { border-top: 3.3rem solid #F9F6ED; }

.arrow-bottom-33[data-color="gray"] { border-top: 3.3rem solid #707070; }

.arrow-left-33 { position: absolute; top: 0; bottom: 0; left: -6.6rem; margin: auto; width: 3.3rem; height: 3.3rem; box-sizing: border-box; border: 3.3rem solid transparent; }

.arrow-left-33[data-color="white"] { border-right: 3.3rem solid #fff; }

.arrow-left-33[data-color="black"] { border-right: 3.3rem solid #1A1311; }

.arrow-left-33[data-color="key"] { border-right: 3.3rem solid #FFEC00; }

.arrow-left-33[data-color="base1"] { border-right: 3.3rem solid #F9F6ED; }

.arrow-left-33[data-color="base2"] { border-right: 3.3rem solid #F2EAEA; }

.arrow-left-33[data-color="base3"] { border-right: 3.3rem solid #F9F6ED; }

.arrow-left-33[data-color="gray"] { border-right: 3.3rem solid #707070; }

.arrow-right-33 { position: absolute; top: 0; bottom: 0; right: -6.6rem; margin: auto; width: 3.3rem; height: 3.3rem; box-sizing: border-box; border: 3.3rem solid transparent; }

.arrow-right-33[data-color="white"] { border-left: 3.3rem solid #fff; }

.arrow-right-33[data-color="black"] { border-left: 3.3rem solid #1A1311; }

.arrow-right-33[data-color="key"] { border-left: 3.3rem solid #FFEC00; }

.arrow-right-33[data-color="base1"] { border-left: 3.3rem solid #F9F6ED; }

.arrow-right-33[data-color="base2"] { border-left: 3.3rem solid #F2EAEA; }

.arrow-right-33[data-color="base3"] { border-left: 3.3rem solid #F9F6ED; }

.arrow-right-33[data-color="gray"] { border-left: 3.3rem solid #707070; }

.arrow-top-34 { position: absolute; top: -6.8rem; left: 0; right: 0; margin: auto; width: 3.4rem; height: 3.4rem; box-sizing: border-box; border: 3.4rem solid transparent; }

.arrow-top-34[data-color="white"] { border-bottom: 3.4rem solid #fff; }

.arrow-top-34[data-color="black"] { border-bottom: 3.4rem solid #1A1311; }

.arrow-top-34[data-color="key"] { border-bottom: 3.4rem solid #FFEC00; }

.arrow-top-34[data-color="base1"] { border-bottom: 3.4rem solid #F9F6ED; }

.arrow-top-34[data-color="base2"] { border-bottom: 3.4rem solid #F2EAEA; }

.arrow-top-34[data-color="base3"] { border-bottom: 3.4rem solid #F9F6ED; }

.arrow-top-34[data-color="gray"] { border-bottom: 3.4rem solid #707070; }

.arrow-bottom-34 { position: absolute; bottom: -6.8rem; left: 0; right: 0; margin: auto; width: 3.4rem; height: 3.4rem; box-sizing: border-box; border: 3.4rem solid transparent; }

.arrow-bottom-34[data-color="white"] { border-top: 3.4rem solid #fff; }

.arrow-bottom-34[data-color="black"] { border-top: 3.4rem solid #1A1311; }

.arrow-bottom-34[data-color="key"] { border-top: 3.4rem solid #FFEC00; }

.arrow-bottom-34[data-color="base1"] { border-top: 3.4rem solid #F9F6ED; }

.arrow-bottom-34[data-color="base2"] { border-top: 3.4rem solid #F2EAEA; }

.arrow-bottom-34[data-color="base3"] { border-top: 3.4rem solid #F9F6ED; }

.arrow-bottom-34[data-color="gray"] { border-top: 3.4rem solid #707070; }

.arrow-left-34 { position: absolute; top: 0; bottom: 0; left: -6.8rem; margin: auto; width: 3.4rem; height: 3.4rem; box-sizing: border-box; border: 3.4rem solid transparent; }

.arrow-left-34[data-color="white"] { border-right: 3.4rem solid #fff; }

.arrow-left-34[data-color="black"] { border-right: 3.4rem solid #1A1311; }

.arrow-left-34[data-color="key"] { border-right: 3.4rem solid #FFEC00; }

.arrow-left-34[data-color="base1"] { border-right: 3.4rem solid #F9F6ED; }

.arrow-left-34[data-color="base2"] { border-right: 3.4rem solid #F2EAEA; }

.arrow-left-34[data-color="base3"] { border-right: 3.4rem solid #F9F6ED; }

.arrow-left-34[data-color="gray"] { border-right: 3.4rem solid #707070; }

.arrow-right-34 { position: absolute; top: 0; bottom: 0; right: -6.8rem; margin: auto; width: 3.4rem; height: 3.4rem; box-sizing: border-box; border: 3.4rem solid transparent; }

.arrow-right-34[data-color="white"] { border-left: 3.4rem solid #fff; }

.arrow-right-34[data-color="black"] { border-left: 3.4rem solid #1A1311; }

.arrow-right-34[data-color="key"] { border-left: 3.4rem solid #FFEC00; }

.arrow-right-34[data-color="base1"] { border-left: 3.4rem solid #F9F6ED; }

.arrow-right-34[data-color="base2"] { border-left: 3.4rem solid #F2EAEA; }

.arrow-right-34[data-color="base3"] { border-left: 3.4rem solid #F9F6ED; }

.arrow-right-34[data-color="gray"] { border-left: 3.4rem solid #707070; }

.arrow-top-35 { position: absolute; top: -7rem; left: 0; right: 0; margin: auto; width: 3.5rem; height: 3.5rem; box-sizing: border-box; border: 3.5rem solid transparent; }

.arrow-top-35[data-color="white"] { border-bottom: 3.5rem solid #fff; }

.arrow-top-35[data-color="black"] { border-bottom: 3.5rem solid #1A1311; }

.arrow-top-35[data-color="key"] { border-bottom: 3.5rem solid #FFEC00; }

.arrow-top-35[data-color="base1"] { border-bottom: 3.5rem solid #F9F6ED; }

.arrow-top-35[data-color="base2"] { border-bottom: 3.5rem solid #F2EAEA; }

.arrow-top-35[data-color="base3"] { border-bottom: 3.5rem solid #F9F6ED; }

.arrow-top-35[data-color="gray"] { border-bottom: 3.5rem solid #707070; }

.arrow-bottom-35 { position: absolute; bottom: -7rem; left: 0; right: 0; margin: auto; width: 3.5rem; height: 3.5rem; box-sizing: border-box; border: 3.5rem solid transparent; }

.arrow-bottom-35[data-color="white"] { border-top: 3.5rem solid #fff; }

.arrow-bottom-35[data-color="black"] { border-top: 3.5rem solid #1A1311; }

.arrow-bottom-35[data-color="key"] { border-top: 3.5rem solid #FFEC00; }

.arrow-bottom-35[data-color="base1"] { border-top: 3.5rem solid #F9F6ED; }

.arrow-bottom-35[data-color="base2"] { border-top: 3.5rem solid #F2EAEA; }

.arrow-bottom-35[data-color="base3"] { border-top: 3.5rem solid #F9F6ED; }

.arrow-bottom-35[data-color="gray"] { border-top: 3.5rem solid #707070; }

.arrow-left-35 { position: absolute; top: 0; bottom: 0; left: -7rem; margin: auto; width: 3.5rem; height: 3.5rem; box-sizing: border-box; border: 3.5rem solid transparent; }

.arrow-left-35[data-color="white"] { border-right: 3.5rem solid #fff; }

.arrow-left-35[data-color="black"] { border-right: 3.5rem solid #1A1311; }

.arrow-left-35[data-color="key"] { border-right: 3.5rem solid #FFEC00; }

.arrow-left-35[data-color="base1"] { border-right: 3.5rem solid #F9F6ED; }

.arrow-left-35[data-color="base2"] { border-right: 3.5rem solid #F2EAEA; }

.arrow-left-35[data-color="base3"] { border-right: 3.5rem solid #F9F6ED; }

.arrow-left-35[data-color="gray"] { border-right: 3.5rem solid #707070; }

.arrow-right-35 { position: absolute; top: 0; bottom: 0; right: -7rem; margin: auto; width: 3.5rem; height: 3.5rem; box-sizing: border-box; border: 3.5rem solid transparent; }

.arrow-right-35[data-color="white"] { border-left: 3.5rem solid #fff; }

.arrow-right-35[data-color="black"] { border-left: 3.5rem solid #1A1311; }

.arrow-right-35[data-color="key"] { border-left: 3.5rem solid #FFEC00; }

.arrow-right-35[data-color="base1"] { border-left: 3.5rem solid #F9F6ED; }

.arrow-right-35[data-color="base2"] { border-left: 3.5rem solid #F2EAEA; }

.arrow-right-35[data-color="base3"] { border-left: 3.5rem solid #F9F6ED; }

.arrow-right-35[data-color="gray"] { border-left: 3.5rem solid #707070; }

.arrow-top-36 { position: absolute; top: -7.2rem; left: 0; right: 0; margin: auto; width: 3.6rem; height: 3.6rem; box-sizing: border-box; border: 3.6rem solid transparent; }

.arrow-top-36[data-color="white"] { border-bottom: 3.6rem solid #fff; }

.arrow-top-36[data-color="black"] { border-bottom: 3.6rem solid #1A1311; }

.arrow-top-36[data-color="key"] { border-bottom: 3.6rem solid #FFEC00; }

.arrow-top-36[data-color="base1"] { border-bottom: 3.6rem solid #F9F6ED; }

.arrow-top-36[data-color="base2"] { border-bottom: 3.6rem solid #F2EAEA; }

.arrow-top-36[data-color="base3"] { border-bottom: 3.6rem solid #F9F6ED; }

.arrow-top-36[data-color="gray"] { border-bottom: 3.6rem solid #707070; }

.arrow-bottom-36 { position: absolute; bottom: -7.2rem; left: 0; right: 0; margin: auto; width: 3.6rem; height: 3.6rem; box-sizing: border-box; border: 3.6rem solid transparent; }

.arrow-bottom-36[data-color="white"] { border-top: 3.6rem solid #fff; }

.arrow-bottom-36[data-color="black"] { border-top: 3.6rem solid #1A1311; }

.arrow-bottom-36[data-color="key"] { border-top: 3.6rem solid #FFEC00; }

.arrow-bottom-36[data-color="base1"] { border-top: 3.6rem solid #F9F6ED; }

.arrow-bottom-36[data-color="base2"] { border-top: 3.6rem solid #F2EAEA; }

.arrow-bottom-36[data-color="base3"] { border-top: 3.6rem solid #F9F6ED; }

.arrow-bottom-36[data-color="gray"] { border-top: 3.6rem solid #707070; }

.arrow-left-36 { position: absolute; top: 0; bottom: 0; left: -7.2rem; margin: auto; width: 3.6rem; height: 3.6rem; box-sizing: border-box; border: 3.6rem solid transparent; }

.arrow-left-36[data-color="white"] { border-right: 3.6rem solid #fff; }

.arrow-left-36[data-color="black"] { border-right: 3.6rem solid #1A1311; }

.arrow-left-36[data-color="key"] { border-right: 3.6rem solid #FFEC00; }

.arrow-left-36[data-color="base1"] { border-right: 3.6rem solid #F9F6ED; }

.arrow-left-36[data-color="base2"] { border-right: 3.6rem solid #F2EAEA; }

.arrow-left-36[data-color="base3"] { border-right: 3.6rem solid #F9F6ED; }

.arrow-left-36[data-color="gray"] { border-right: 3.6rem solid #707070; }

.arrow-right-36 { position: absolute; top: 0; bottom: 0; right: -7.2rem; margin: auto; width: 3.6rem; height: 3.6rem; box-sizing: border-box; border: 3.6rem solid transparent; }

.arrow-right-36[data-color="white"] { border-left: 3.6rem solid #fff; }

.arrow-right-36[data-color="black"] { border-left: 3.6rem solid #1A1311; }

.arrow-right-36[data-color="key"] { border-left: 3.6rem solid #FFEC00; }

.arrow-right-36[data-color="base1"] { border-left: 3.6rem solid #F9F6ED; }

.arrow-right-36[data-color="base2"] { border-left: 3.6rem solid #F2EAEA; }

.arrow-right-36[data-color="base3"] { border-left: 3.6rem solid #F9F6ED; }

.arrow-right-36[data-color="gray"] { border-left: 3.6rem solid #707070; }

.arrow-top-37 { position: absolute; top: -7.4rem; left: 0; right: 0; margin: auto; width: 3.7rem; height: 3.7rem; box-sizing: border-box; border: 3.7rem solid transparent; }

.arrow-top-37[data-color="white"] { border-bottom: 3.7rem solid #fff; }

.arrow-top-37[data-color="black"] { border-bottom: 3.7rem solid #1A1311; }

.arrow-top-37[data-color="key"] { border-bottom: 3.7rem solid #FFEC00; }

.arrow-top-37[data-color="base1"] { border-bottom: 3.7rem solid #F9F6ED; }

.arrow-top-37[data-color="base2"] { border-bottom: 3.7rem solid #F2EAEA; }

.arrow-top-37[data-color="base3"] { border-bottom: 3.7rem solid #F9F6ED; }

.arrow-top-37[data-color="gray"] { border-bottom: 3.7rem solid #707070; }

.arrow-bottom-37 { position: absolute; bottom: -7.4rem; left: 0; right: 0; margin: auto; width: 3.7rem; height: 3.7rem; box-sizing: border-box; border: 3.7rem solid transparent; }

.arrow-bottom-37[data-color="white"] { border-top: 3.7rem solid #fff; }

.arrow-bottom-37[data-color="black"] { border-top: 3.7rem solid #1A1311; }

.arrow-bottom-37[data-color="key"] { border-top: 3.7rem solid #FFEC00; }

.arrow-bottom-37[data-color="base1"] { border-top: 3.7rem solid #F9F6ED; }

.arrow-bottom-37[data-color="base2"] { border-top: 3.7rem solid #F2EAEA; }

.arrow-bottom-37[data-color="base3"] { border-top: 3.7rem solid #F9F6ED; }

.arrow-bottom-37[data-color="gray"] { border-top: 3.7rem solid #707070; }

.arrow-left-37 { position: absolute; top: 0; bottom: 0; left: -7.4rem; margin: auto; width: 3.7rem; height: 3.7rem; box-sizing: border-box; border: 3.7rem solid transparent; }

.arrow-left-37[data-color="white"] { border-right: 3.7rem solid #fff; }

.arrow-left-37[data-color="black"] { border-right: 3.7rem solid #1A1311; }

.arrow-left-37[data-color="key"] { border-right: 3.7rem solid #FFEC00; }

.arrow-left-37[data-color="base1"] { border-right: 3.7rem solid #F9F6ED; }

.arrow-left-37[data-color="base2"] { border-right: 3.7rem solid #F2EAEA; }

.arrow-left-37[data-color="base3"] { border-right: 3.7rem solid #F9F6ED; }

.arrow-left-37[data-color="gray"] { border-right: 3.7rem solid #707070; }

.arrow-right-37 { position: absolute; top: 0; bottom: 0; right: -7.4rem; margin: auto; width: 3.7rem; height: 3.7rem; box-sizing: border-box; border: 3.7rem solid transparent; }

.arrow-right-37[data-color="white"] { border-left: 3.7rem solid #fff; }

.arrow-right-37[data-color="black"] { border-left: 3.7rem solid #1A1311; }

.arrow-right-37[data-color="key"] { border-left: 3.7rem solid #FFEC00; }

.arrow-right-37[data-color="base1"] { border-left: 3.7rem solid #F9F6ED; }

.arrow-right-37[data-color="base2"] { border-left: 3.7rem solid #F2EAEA; }

.arrow-right-37[data-color="base3"] { border-left: 3.7rem solid #F9F6ED; }

.arrow-right-37[data-color="gray"] { border-left: 3.7rem solid #707070; }

.arrow-top-38 { position: absolute; top: -7.6rem; left: 0; right: 0; margin: auto; width: 3.8rem; height: 3.8rem; box-sizing: border-box; border: 3.8rem solid transparent; }

.arrow-top-38[data-color="white"] { border-bottom: 3.8rem solid #fff; }

.arrow-top-38[data-color="black"] { border-bottom: 3.8rem solid #1A1311; }

.arrow-top-38[data-color="key"] { border-bottom: 3.8rem solid #FFEC00; }

.arrow-top-38[data-color="base1"] { border-bottom: 3.8rem solid #F9F6ED; }

.arrow-top-38[data-color="base2"] { border-bottom: 3.8rem solid #F2EAEA; }

.arrow-top-38[data-color="base3"] { border-bottom: 3.8rem solid #F9F6ED; }

.arrow-top-38[data-color="gray"] { border-bottom: 3.8rem solid #707070; }

.arrow-bottom-38 { position: absolute; bottom: -7.6rem; left: 0; right: 0; margin: auto; width: 3.8rem; height: 3.8rem; box-sizing: border-box; border: 3.8rem solid transparent; }

.arrow-bottom-38[data-color="white"] { border-top: 3.8rem solid #fff; }

.arrow-bottom-38[data-color="black"] { border-top: 3.8rem solid #1A1311; }

.arrow-bottom-38[data-color="key"] { border-top: 3.8rem solid #FFEC00; }

.arrow-bottom-38[data-color="base1"] { border-top: 3.8rem solid #F9F6ED; }

.arrow-bottom-38[data-color="base2"] { border-top: 3.8rem solid #F2EAEA; }

.arrow-bottom-38[data-color="base3"] { border-top: 3.8rem solid #F9F6ED; }

.arrow-bottom-38[data-color="gray"] { border-top: 3.8rem solid #707070; }

.arrow-left-38 { position: absolute; top: 0; bottom: 0; left: -7.6rem; margin: auto; width: 3.8rem; height: 3.8rem; box-sizing: border-box; border: 3.8rem solid transparent; }

.arrow-left-38[data-color="white"] { border-right: 3.8rem solid #fff; }

.arrow-left-38[data-color="black"] { border-right: 3.8rem solid #1A1311; }

.arrow-left-38[data-color="key"] { border-right: 3.8rem solid #FFEC00; }

.arrow-left-38[data-color="base1"] { border-right: 3.8rem solid #F9F6ED; }

.arrow-left-38[data-color="base2"] { border-right: 3.8rem solid #F2EAEA; }

.arrow-left-38[data-color="base3"] { border-right: 3.8rem solid #F9F6ED; }

.arrow-left-38[data-color="gray"] { border-right: 3.8rem solid #707070; }

.arrow-right-38 { position: absolute; top: 0; bottom: 0; right: -7.6rem; margin: auto; width: 3.8rem; height: 3.8rem; box-sizing: border-box; border: 3.8rem solid transparent; }

.arrow-right-38[data-color="white"] { border-left: 3.8rem solid #fff; }

.arrow-right-38[data-color="black"] { border-left: 3.8rem solid #1A1311; }

.arrow-right-38[data-color="key"] { border-left: 3.8rem solid #FFEC00; }

.arrow-right-38[data-color="base1"] { border-left: 3.8rem solid #F9F6ED; }

.arrow-right-38[data-color="base2"] { border-left: 3.8rem solid #F2EAEA; }

.arrow-right-38[data-color="base3"] { border-left: 3.8rem solid #F9F6ED; }

.arrow-right-38[data-color="gray"] { border-left: 3.8rem solid #707070; }

.arrow-top-39 { position: absolute; top: -7.8rem; left: 0; right: 0; margin: auto; width: 3.9rem; height: 3.9rem; box-sizing: border-box; border: 3.9rem solid transparent; }

.arrow-top-39[data-color="white"] { border-bottom: 3.9rem solid #fff; }

.arrow-top-39[data-color="black"] { border-bottom: 3.9rem solid #1A1311; }

.arrow-top-39[data-color="key"] { border-bottom: 3.9rem solid #FFEC00; }

.arrow-top-39[data-color="base1"] { border-bottom: 3.9rem solid #F9F6ED; }

.arrow-top-39[data-color="base2"] { border-bottom: 3.9rem solid #F2EAEA; }

.arrow-top-39[data-color="base3"] { border-bottom: 3.9rem solid #F9F6ED; }

.arrow-top-39[data-color="gray"] { border-bottom: 3.9rem solid #707070; }

.arrow-bottom-39 { position: absolute; bottom: -7.8rem; left: 0; right: 0; margin: auto; width: 3.9rem; height: 3.9rem; box-sizing: border-box; border: 3.9rem solid transparent; }

.arrow-bottom-39[data-color="white"] { border-top: 3.9rem solid #fff; }

.arrow-bottom-39[data-color="black"] { border-top: 3.9rem solid #1A1311; }

.arrow-bottom-39[data-color="key"] { border-top: 3.9rem solid #FFEC00; }

.arrow-bottom-39[data-color="base1"] { border-top: 3.9rem solid #F9F6ED; }

.arrow-bottom-39[data-color="base2"] { border-top: 3.9rem solid #F2EAEA; }

.arrow-bottom-39[data-color="base3"] { border-top: 3.9rem solid #F9F6ED; }

.arrow-bottom-39[data-color="gray"] { border-top: 3.9rem solid #707070; }

.arrow-left-39 { position: absolute; top: 0; bottom: 0; left: -7.8rem; margin: auto; width: 3.9rem; height: 3.9rem; box-sizing: border-box; border: 3.9rem solid transparent; }

.arrow-left-39[data-color="white"] { border-right: 3.9rem solid #fff; }

.arrow-left-39[data-color="black"] { border-right: 3.9rem solid #1A1311; }

.arrow-left-39[data-color="key"] { border-right: 3.9rem solid #FFEC00; }

.arrow-left-39[data-color="base1"] { border-right: 3.9rem solid #F9F6ED; }

.arrow-left-39[data-color="base2"] { border-right: 3.9rem solid #F2EAEA; }

.arrow-left-39[data-color="base3"] { border-right: 3.9rem solid #F9F6ED; }

.arrow-left-39[data-color="gray"] { border-right: 3.9rem solid #707070; }

.arrow-right-39 { position: absolute; top: 0; bottom: 0; right: -7.8rem; margin: auto; width: 3.9rem; height: 3.9rem; box-sizing: border-box; border: 3.9rem solid transparent; }

.arrow-right-39[data-color="white"] { border-left: 3.9rem solid #fff; }

.arrow-right-39[data-color="black"] { border-left: 3.9rem solid #1A1311; }

.arrow-right-39[data-color="key"] { border-left: 3.9rem solid #FFEC00; }

.arrow-right-39[data-color="base1"] { border-left: 3.9rem solid #F9F6ED; }

.arrow-right-39[data-color="base2"] { border-left: 3.9rem solid #F2EAEA; }

.arrow-right-39[data-color="base3"] { border-left: 3.9rem solid #F9F6ED; }

.arrow-right-39[data-color="gray"] { border-left: 3.9rem solid #707070; }

.arrow-top-40 { position: absolute; top: -8rem; left: 0; right: 0; margin: auto; width: 4rem; height: 4rem; box-sizing: border-box; border: 4rem solid transparent; }

.arrow-top-40[data-color="white"] { border-bottom: 4rem solid #fff; }

.arrow-top-40[data-color="black"] { border-bottom: 4rem solid #1A1311; }

.arrow-top-40[data-color="key"] { border-bottom: 4rem solid #FFEC00; }

.arrow-top-40[data-color="base1"] { border-bottom: 4rem solid #F9F6ED; }

.arrow-top-40[data-color="base2"] { border-bottom: 4rem solid #F2EAEA; }

.arrow-top-40[data-color="base3"] { border-bottom: 4rem solid #F9F6ED; }

.arrow-top-40[data-color="gray"] { border-bottom: 4rem solid #707070; }

.arrow-bottom-40 { position: absolute; bottom: -8rem; left: 0; right: 0; margin: auto; width: 4rem; height: 4rem; box-sizing: border-box; border: 4rem solid transparent; }

.arrow-bottom-40[data-color="white"] { border-top: 4rem solid #fff; }

.arrow-bottom-40[data-color="black"] { border-top: 4rem solid #1A1311; }

.arrow-bottom-40[data-color="key"] { border-top: 4rem solid #FFEC00; }

.arrow-bottom-40[data-color="base1"] { border-top: 4rem solid #F9F6ED; }

.arrow-bottom-40[data-color="base2"] { border-top: 4rem solid #F2EAEA; }

.arrow-bottom-40[data-color="base3"] { border-top: 4rem solid #F9F6ED; }

.arrow-bottom-40[data-color="gray"] { border-top: 4rem solid #707070; }

.arrow-left-40 { position: absolute; top: 0; bottom: 0; left: -8rem; margin: auto; width: 4rem; height: 4rem; box-sizing: border-box; border: 4rem solid transparent; }

.arrow-left-40[data-color="white"] { border-right: 4rem solid #fff; }

.arrow-left-40[data-color="black"] { border-right: 4rem solid #1A1311; }

.arrow-left-40[data-color="key"] { border-right: 4rem solid #FFEC00; }

.arrow-left-40[data-color="base1"] { border-right: 4rem solid #F9F6ED; }

.arrow-left-40[data-color="base2"] { border-right: 4rem solid #F2EAEA; }

.arrow-left-40[data-color="base3"] { border-right: 4rem solid #F9F6ED; }

.arrow-left-40[data-color="gray"] { border-right: 4rem solid #707070; }

.arrow-right-40 { position: absolute; top: 0; bottom: 0; right: -8rem; margin: auto; width: 4rem; height: 4rem; box-sizing: border-box; border: 4rem solid transparent; }

.arrow-right-40[data-color="white"] { border-left: 4rem solid #fff; }

.arrow-right-40[data-color="black"] { border-left: 4rem solid #1A1311; }

.arrow-right-40[data-color="key"] { border-left: 4rem solid #FFEC00; }

.arrow-right-40[data-color="base1"] { border-left: 4rem solid #F9F6ED; }

.arrow-right-40[data-color="base2"] { border-left: 4rem solid #F2EAEA; }

.arrow-right-40[data-color="base3"] { border-left: 4rem solid #F9F6ED; }

.arrow-right-40[data-color="gray"] { border-left: 4rem solid #707070; }

.arrow-top-41 { position: absolute; top: -8.2rem; left: 0; right: 0; margin: auto; width: 4.1rem; height: 4.1rem; box-sizing: border-box; border: 4.1rem solid transparent; }

.arrow-top-41[data-color="white"] { border-bottom: 4.1rem solid #fff; }

.arrow-top-41[data-color="black"] { border-bottom: 4.1rem solid #1A1311; }

.arrow-top-41[data-color="key"] { border-bottom: 4.1rem solid #FFEC00; }

.arrow-top-41[data-color="base1"] { border-bottom: 4.1rem solid #F9F6ED; }

.arrow-top-41[data-color="base2"] { border-bottom: 4.1rem solid #F2EAEA; }

.arrow-top-41[data-color="base3"] { border-bottom: 4.1rem solid #F9F6ED; }

.arrow-top-41[data-color="gray"] { border-bottom: 4.1rem solid #707070; }

.arrow-bottom-41 { position: absolute; bottom: -8.2rem; left: 0; right: 0; margin: auto; width: 4.1rem; height: 4.1rem; box-sizing: border-box; border: 4.1rem solid transparent; }

.arrow-bottom-41[data-color="white"] { border-top: 4.1rem solid #fff; }

.arrow-bottom-41[data-color="black"] { border-top: 4.1rem solid #1A1311; }

.arrow-bottom-41[data-color="key"] { border-top: 4.1rem solid #FFEC00; }

.arrow-bottom-41[data-color="base1"] { border-top: 4.1rem solid #F9F6ED; }

.arrow-bottom-41[data-color="base2"] { border-top: 4.1rem solid #F2EAEA; }

.arrow-bottom-41[data-color="base3"] { border-top: 4.1rem solid #F9F6ED; }

.arrow-bottom-41[data-color="gray"] { border-top: 4.1rem solid #707070; }

.arrow-left-41 { position: absolute; top: 0; bottom: 0; left: -8.2rem; margin: auto; width: 4.1rem; height: 4.1rem; box-sizing: border-box; border: 4.1rem solid transparent; }

.arrow-left-41[data-color="white"] { border-right: 4.1rem solid #fff; }

.arrow-left-41[data-color="black"] { border-right: 4.1rem solid #1A1311; }

.arrow-left-41[data-color="key"] { border-right: 4.1rem solid #FFEC00; }

.arrow-left-41[data-color="base1"] { border-right: 4.1rem solid #F9F6ED; }

.arrow-left-41[data-color="base2"] { border-right: 4.1rem solid #F2EAEA; }

.arrow-left-41[data-color="base3"] { border-right: 4.1rem solid #F9F6ED; }

.arrow-left-41[data-color="gray"] { border-right: 4.1rem solid #707070; }

.arrow-right-41 { position: absolute; top: 0; bottom: 0; right: -8.2rem; margin: auto; width: 4.1rem; height: 4.1rem; box-sizing: border-box; border: 4.1rem solid transparent; }

.arrow-right-41[data-color="white"] { border-left: 4.1rem solid #fff; }

.arrow-right-41[data-color="black"] { border-left: 4.1rem solid #1A1311; }

.arrow-right-41[data-color="key"] { border-left: 4.1rem solid #FFEC00; }

.arrow-right-41[data-color="base1"] { border-left: 4.1rem solid #F9F6ED; }

.arrow-right-41[data-color="base2"] { border-left: 4.1rem solid #F2EAEA; }

.arrow-right-41[data-color="base3"] { border-left: 4.1rem solid #F9F6ED; }

.arrow-right-41[data-color="gray"] { border-left: 4.1rem solid #707070; }

.arrow-top-42 { position: absolute; top: -8.4rem; left: 0; right: 0; margin: auto; width: 4.2rem; height: 4.2rem; box-sizing: border-box; border: 4.2rem solid transparent; }

.arrow-top-42[data-color="white"] { border-bottom: 4.2rem solid #fff; }

.arrow-top-42[data-color="black"] { border-bottom: 4.2rem solid #1A1311; }

.arrow-top-42[data-color="key"] { border-bottom: 4.2rem solid #FFEC00; }

.arrow-top-42[data-color="base1"] { border-bottom: 4.2rem solid #F9F6ED; }

.arrow-top-42[data-color="base2"] { border-bottom: 4.2rem solid #F2EAEA; }

.arrow-top-42[data-color="base3"] { border-bottom: 4.2rem solid #F9F6ED; }

.arrow-top-42[data-color="gray"] { border-bottom: 4.2rem solid #707070; }

.arrow-bottom-42 { position: absolute; bottom: -8.4rem; left: 0; right: 0; margin: auto; width: 4.2rem; height: 4.2rem; box-sizing: border-box; border: 4.2rem solid transparent; }

.arrow-bottom-42[data-color="white"] { border-top: 4.2rem solid #fff; }

.arrow-bottom-42[data-color="black"] { border-top: 4.2rem solid #1A1311; }

.arrow-bottom-42[data-color="key"] { border-top: 4.2rem solid #FFEC00; }

.arrow-bottom-42[data-color="base1"] { border-top: 4.2rem solid #F9F6ED; }

.arrow-bottom-42[data-color="base2"] { border-top: 4.2rem solid #F2EAEA; }

.arrow-bottom-42[data-color="base3"] { border-top: 4.2rem solid #F9F6ED; }

.arrow-bottom-42[data-color="gray"] { border-top: 4.2rem solid #707070; }

.arrow-left-42 { position: absolute; top: 0; bottom: 0; left: -8.4rem; margin: auto; width: 4.2rem; height: 4.2rem; box-sizing: border-box; border: 4.2rem solid transparent; }

.arrow-left-42[data-color="white"] { border-right: 4.2rem solid #fff; }

.arrow-left-42[data-color="black"] { border-right: 4.2rem solid #1A1311; }

.arrow-left-42[data-color="key"] { border-right: 4.2rem solid #FFEC00; }

.arrow-left-42[data-color="base1"] { border-right: 4.2rem solid #F9F6ED; }

.arrow-left-42[data-color="base2"] { border-right: 4.2rem solid #F2EAEA; }

.arrow-left-42[data-color="base3"] { border-right: 4.2rem solid #F9F6ED; }

.arrow-left-42[data-color="gray"] { border-right: 4.2rem solid #707070; }

.arrow-right-42 { position: absolute; top: 0; bottom: 0; right: -8.4rem; margin: auto; width: 4.2rem; height: 4.2rem; box-sizing: border-box; border: 4.2rem solid transparent; }

.arrow-right-42[data-color="white"] { border-left: 4.2rem solid #fff; }

.arrow-right-42[data-color="black"] { border-left: 4.2rem solid #1A1311; }

.arrow-right-42[data-color="key"] { border-left: 4.2rem solid #FFEC00; }

.arrow-right-42[data-color="base1"] { border-left: 4.2rem solid #F9F6ED; }

.arrow-right-42[data-color="base2"] { border-left: 4.2rem solid #F2EAEA; }

.arrow-right-42[data-color="base3"] { border-left: 4.2rem solid #F9F6ED; }

.arrow-right-42[data-color="gray"] { border-left: 4.2rem solid #707070; }

.arrow-top-43 { position: absolute; top: -8.6rem; left: 0; right: 0; margin: auto; width: 4.3rem; height: 4.3rem; box-sizing: border-box; border: 4.3rem solid transparent; }

.arrow-top-43[data-color="white"] { border-bottom: 4.3rem solid #fff; }

.arrow-top-43[data-color="black"] { border-bottom: 4.3rem solid #1A1311; }

.arrow-top-43[data-color="key"] { border-bottom: 4.3rem solid #FFEC00; }

.arrow-top-43[data-color="base1"] { border-bottom: 4.3rem solid #F9F6ED; }

.arrow-top-43[data-color="base2"] { border-bottom: 4.3rem solid #F2EAEA; }

.arrow-top-43[data-color="base3"] { border-bottom: 4.3rem solid #F9F6ED; }

.arrow-top-43[data-color="gray"] { border-bottom: 4.3rem solid #707070; }

.arrow-bottom-43 { position: absolute; bottom: -8.6rem; left: 0; right: 0; margin: auto; width: 4.3rem; height: 4.3rem; box-sizing: border-box; border: 4.3rem solid transparent; }

.arrow-bottom-43[data-color="white"] { border-top: 4.3rem solid #fff; }

.arrow-bottom-43[data-color="black"] { border-top: 4.3rem solid #1A1311; }

.arrow-bottom-43[data-color="key"] { border-top: 4.3rem solid #FFEC00; }

.arrow-bottom-43[data-color="base1"] { border-top: 4.3rem solid #F9F6ED; }

.arrow-bottom-43[data-color="base2"] { border-top: 4.3rem solid #F2EAEA; }

.arrow-bottom-43[data-color="base3"] { border-top: 4.3rem solid #F9F6ED; }

.arrow-bottom-43[data-color="gray"] { border-top: 4.3rem solid #707070; }

.arrow-left-43 { position: absolute; top: 0; bottom: 0; left: -8.6rem; margin: auto; width: 4.3rem; height: 4.3rem; box-sizing: border-box; border: 4.3rem solid transparent; }

.arrow-left-43[data-color="white"] { border-right: 4.3rem solid #fff; }

.arrow-left-43[data-color="black"] { border-right: 4.3rem solid #1A1311; }

.arrow-left-43[data-color="key"] { border-right: 4.3rem solid #FFEC00; }

.arrow-left-43[data-color="base1"] { border-right: 4.3rem solid #F9F6ED; }

.arrow-left-43[data-color="base2"] { border-right: 4.3rem solid #F2EAEA; }

.arrow-left-43[data-color="base3"] { border-right: 4.3rem solid #F9F6ED; }

.arrow-left-43[data-color="gray"] { border-right: 4.3rem solid #707070; }

.arrow-right-43 { position: absolute; top: 0; bottom: 0; right: -8.6rem; margin: auto; width: 4.3rem; height: 4.3rem; box-sizing: border-box; border: 4.3rem solid transparent; }

.arrow-right-43[data-color="white"] { border-left: 4.3rem solid #fff; }

.arrow-right-43[data-color="black"] { border-left: 4.3rem solid #1A1311; }

.arrow-right-43[data-color="key"] { border-left: 4.3rem solid #FFEC00; }

.arrow-right-43[data-color="base1"] { border-left: 4.3rem solid #F9F6ED; }

.arrow-right-43[data-color="base2"] { border-left: 4.3rem solid #F2EAEA; }

.arrow-right-43[data-color="base3"] { border-left: 4.3rem solid #F9F6ED; }

.arrow-right-43[data-color="gray"] { border-left: 4.3rem solid #707070; }

.arrow-top-44 { position: absolute; top: -8.8rem; left: 0; right: 0; margin: auto; width: 4.4rem; height: 4.4rem; box-sizing: border-box; border: 4.4rem solid transparent; }

.arrow-top-44[data-color="white"] { border-bottom: 4.4rem solid #fff; }

.arrow-top-44[data-color="black"] { border-bottom: 4.4rem solid #1A1311; }

.arrow-top-44[data-color="key"] { border-bottom: 4.4rem solid #FFEC00; }

.arrow-top-44[data-color="base1"] { border-bottom: 4.4rem solid #F9F6ED; }

.arrow-top-44[data-color="base2"] { border-bottom: 4.4rem solid #F2EAEA; }

.arrow-top-44[data-color="base3"] { border-bottom: 4.4rem solid #F9F6ED; }

.arrow-top-44[data-color="gray"] { border-bottom: 4.4rem solid #707070; }

.arrow-bottom-44 { position: absolute; bottom: -8.8rem; left: 0; right: 0; margin: auto; width: 4.4rem; height: 4.4rem; box-sizing: border-box; border: 4.4rem solid transparent; }

.arrow-bottom-44[data-color="white"] { border-top: 4.4rem solid #fff; }

.arrow-bottom-44[data-color="black"] { border-top: 4.4rem solid #1A1311; }

.arrow-bottom-44[data-color="key"] { border-top: 4.4rem solid #FFEC00; }

.arrow-bottom-44[data-color="base1"] { border-top: 4.4rem solid #F9F6ED; }

.arrow-bottom-44[data-color="base2"] { border-top: 4.4rem solid #F2EAEA; }

.arrow-bottom-44[data-color="base3"] { border-top: 4.4rem solid #F9F6ED; }

.arrow-bottom-44[data-color="gray"] { border-top: 4.4rem solid #707070; }

.arrow-left-44 { position: absolute; top: 0; bottom: 0; left: -8.8rem; margin: auto; width: 4.4rem; height: 4.4rem; box-sizing: border-box; border: 4.4rem solid transparent; }

.arrow-left-44[data-color="white"] { border-right: 4.4rem solid #fff; }

.arrow-left-44[data-color="black"] { border-right: 4.4rem solid #1A1311; }

.arrow-left-44[data-color="key"] { border-right: 4.4rem solid #FFEC00; }

.arrow-left-44[data-color="base1"] { border-right: 4.4rem solid #F9F6ED; }

.arrow-left-44[data-color="base2"] { border-right: 4.4rem solid #F2EAEA; }

.arrow-left-44[data-color="base3"] { border-right: 4.4rem solid #F9F6ED; }

.arrow-left-44[data-color="gray"] { border-right: 4.4rem solid #707070; }

.arrow-right-44 { position: absolute; top: 0; bottom: 0; right: -8.8rem; margin: auto; width: 4.4rem; height: 4.4rem; box-sizing: border-box; border: 4.4rem solid transparent; }

.arrow-right-44[data-color="white"] { border-left: 4.4rem solid #fff; }

.arrow-right-44[data-color="black"] { border-left: 4.4rem solid #1A1311; }

.arrow-right-44[data-color="key"] { border-left: 4.4rem solid #FFEC00; }

.arrow-right-44[data-color="base1"] { border-left: 4.4rem solid #F9F6ED; }

.arrow-right-44[data-color="base2"] { border-left: 4.4rem solid #F2EAEA; }

.arrow-right-44[data-color="base3"] { border-left: 4.4rem solid #F9F6ED; }

.arrow-right-44[data-color="gray"] { border-left: 4.4rem solid #707070; }

.arrow-top-45 { position: absolute; top: -9rem; left: 0; right: 0; margin: auto; width: 4.5rem; height: 4.5rem; box-sizing: border-box; border: 4.5rem solid transparent; }

.arrow-top-45[data-color="white"] { border-bottom: 4.5rem solid #fff; }

.arrow-top-45[data-color="black"] { border-bottom: 4.5rem solid #1A1311; }

.arrow-top-45[data-color="key"] { border-bottom: 4.5rem solid #FFEC00; }

.arrow-top-45[data-color="base1"] { border-bottom: 4.5rem solid #F9F6ED; }

.arrow-top-45[data-color="base2"] { border-bottom: 4.5rem solid #F2EAEA; }

.arrow-top-45[data-color="base3"] { border-bottom: 4.5rem solid #F9F6ED; }

.arrow-top-45[data-color="gray"] { border-bottom: 4.5rem solid #707070; }

.arrow-bottom-45 { position: absolute; bottom: -9rem; left: 0; right: 0; margin: auto; width: 4.5rem; height: 4.5rem; box-sizing: border-box; border: 4.5rem solid transparent; }

.arrow-bottom-45[data-color="white"] { border-top: 4.5rem solid #fff; }

.arrow-bottom-45[data-color="black"] { border-top: 4.5rem solid #1A1311; }

.arrow-bottom-45[data-color="key"] { border-top: 4.5rem solid #FFEC00; }

.arrow-bottom-45[data-color="base1"] { border-top: 4.5rem solid #F9F6ED; }

.arrow-bottom-45[data-color="base2"] { border-top: 4.5rem solid #F2EAEA; }

.arrow-bottom-45[data-color="base3"] { border-top: 4.5rem solid #F9F6ED; }

.arrow-bottom-45[data-color="gray"] { border-top: 4.5rem solid #707070; }

.arrow-left-45 { position: absolute; top: 0; bottom: 0; left: -9rem; margin: auto; width: 4.5rem; height: 4.5rem; box-sizing: border-box; border: 4.5rem solid transparent; }

.arrow-left-45[data-color="white"] { border-right: 4.5rem solid #fff; }

.arrow-left-45[data-color="black"] { border-right: 4.5rem solid #1A1311; }

.arrow-left-45[data-color="key"] { border-right: 4.5rem solid #FFEC00; }

.arrow-left-45[data-color="base1"] { border-right: 4.5rem solid #F9F6ED; }

.arrow-left-45[data-color="base2"] { border-right: 4.5rem solid #F2EAEA; }

.arrow-left-45[data-color="base3"] { border-right: 4.5rem solid #F9F6ED; }

.arrow-left-45[data-color="gray"] { border-right: 4.5rem solid #707070; }

.arrow-right-45 { position: absolute; top: 0; bottom: 0; right: -9rem; margin: auto; width: 4.5rem; height: 4.5rem; box-sizing: border-box; border: 4.5rem solid transparent; }

.arrow-right-45[data-color="white"] { border-left: 4.5rem solid #fff; }

.arrow-right-45[data-color="black"] { border-left: 4.5rem solid #1A1311; }

.arrow-right-45[data-color="key"] { border-left: 4.5rem solid #FFEC00; }

.arrow-right-45[data-color="base1"] { border-left: 4.5rem solid #F9F6ED; }

.arrow-right-45[data-color="base2"] { border-left: 4.5rem solid #F2EAEA; }

.arrow-right-45[data-color="base3"] { border-left: 4.5rem solid #F9F6ED; }

.arrow-right-45[data-color="gray"] { border-left: 4.5rem solid #707070; }

.arrow-top-46 { position: absolute; top: -9.2rem; left: 0; right: 0; margin: auto; width: 4.6rem; height: 4.6rem; box-sizing: border-box; border: 4.6rem solid transparent; }

.arrow-top-46[data-color="white"] { border-bottom: 4.6rem solid #fff; }

.arrow-top-46[data-color="black"] { border-bottom: 4.6rem solid #1A1311; }

.arrow-top-46[data-color="key"] { border-bottom: 4.6rem solid #FFEC00; }

.arrow-top-46[data-color="base1"] { border-bottom: 4.6rem solid #F9F6ED; }

.arrow-top-46[data-color="base2"] { border-bottom: 4.6rem solid #F2EAEA; }

.arrow-top-46[data-color="base3"] { border-bottom: 4.6rem solid #F9F6ED; }

.arrow-top-46[data-color="gray"] { border-bottom: 4.6rem solid #707070; }

.arrow-bottom-46 { position: absolute; bottom: -9.2rem; left: 0; right: 0; margin: auto; width: 4.6rem; height: 4.6rem; box-sizing: border-box; border: 4.6rem solid transparent; }

.arrow-bottom-46[data-color="white"] { border-top: 4.6rem solid #fff; }

.arrow-bottom-46[data-color="black"] { border-top: 4.6rem solid #1A1311; }

.arrow-bottom-46[data-color="key"] { border-top: 4.6rem solid #FFEC00; }

.arrow-bottom-46[data-color="base1"] { border-top: 4.6rem solid #F9F6ED; }

.arrow-bottom-46[data-color="base2"] { border-top: 4.6rem solid #F2EAEA; }

.arrow-bottom-46[data-color="base3"] { border-top: 4.6rem solid #F9F6ED; }

.arrow-bottom-46[data-color="gray"] { border-top: 4.6rem solid #707070; }

.arrow-left-46 { position: absolute; top: 0; bottom: 0; left: -9.2rem; margin: auto; width: 4.6rem; height: 4.6rem; box-sizing: border-box; border: 4.6rem solid transparent; }

.arrow-left-46[data-color="white"] { border-right: 4.6rem solid #fff; }

.arrow-left-46[data-color="black"] { border-right: 4.6rem solid #1A1311; }

.arrow-left-46[data-color="key"] { border-right: 4.6rem solid #FFEC00; }

.arrow-left-46[data-color="base1"] { border-right: 4.6rem solid #F9F6ED; }

.arrow-left-46[data-color="base2"] { border-right: 4.6rem solid #F2EAEA; }

.arrow-left-46[data-color="base3"] { border-right: 4.6rem solid #F9F6ED; }

.arrow-left-46[data-color="gray"] { border-right: 4.6rem solid #707070; }

.arrow-right-46 { position: absolute; top: 0; bottom: 0; right: -9.2rem; margin: auto; width: 4.6rem; height: 4.6rem; box-sizing: border-box; border: 4.6rem solid transparent; }

.arrow-right-46[data-color="white"] { border-left: 4.6rem solid #fff; }

.arrow-right-46[data-color="black"] { border-left: 4.6rem solid #1A1311; }

.arrow-right-46[data-color="key"] { border-left: 4.6rem solid #FFEC00; }

.arrow-right-46[data-color="base1"] { border-left: 4.6rem solid #F9F6ED; }

.arrow-right-46[data-color="base2"] { border-left: 4.6rem solid #F2EAEA; }

.arrow-right-46[data-color="base3"] { border-left: 4.6rem solid #F9F6ED; }

.arrow-right-46[data-color="gray"] { border-left: 4.6rem solid #707070; }

.arrow-top-47 { position: absolute; top: -9.4rem; left: 0; right: 0; margin: auto; width: 4.7rem; height: 4.7rem; box-sizing: border-box; border: 4.7rem solid transparent; }

.arrow-top-47[data-color="white"] { border-bottom: 4.7rem solid #fff; }

.arrow-top-47[data-color="black"] { border-bottom: 4.7rem solid #1A1311; }

.arrow-top-47[data-color="key"] { border-bottom: 4.7rem solid #FFEC00; }

.arrow-top-47[data-color="base1"] { border-bottom: 4.7rem solid #F9F6ED; }

.arrow-top-47[data-color="base2"] { border-bottom: 4.7rem solid #F2EAEA; }

.arrow-top-47[data-color="base3"] { border-bottom: 4.7rem solid #F9F6ED; }

.arrow-top-47[data-color="gray"] { border-bottom: 4.7rem solid #707070; }

.arrow-bottom-47 { position: absolute; bottom: -9.4rem; left: 0; right: 0; margin: auto; width: 4.7rem; height: 4.7rem; box-sizing: border-box; border: 4.7rem solid transparent; }

.arrow-bottom-47[data-color="white"] { border-top: 4.7rem solid #fff; }

.arrow-bottom-47[data-color="black"] { border-top: 4.7rem solid #1A1311; }

.arrow-bottom-47[data-color="key"] { border-top: 4.7rem solid #FFEC00; }

.arrow-bottom-47[data-color="base1"] { border-top: 4.7rem solid #F9F6ED; }

.arrow-bottom-47[data-color="base2"] { border-top: 4.7rem solid #F2EAEA; }

.arrow-bottom-47[data-color="base3"] { border-top: 4.7rem solid #F9F6ED; }

.arrow-bottom-47[data-color="gray"] { border-top: 4.7rem solid #707070; }

.arrow-left-47 { position: absolute; top: 0; bottom: 0; left: -9.4rem; margin: auto; width: 4.7rem; height: 4.7rem; box-sizing: border-box; border: 4.7rem solid transparent; }

.arrow-left-47[data-color="white"] { border-right: 4.7rem solid #fff; }

.arrow-left-47[data-color="black"] { border-right: 4.7rem solid #1A1311; }

.arrow-left-47[data-color="key"] { border-right: 4.7rem solid #FFEC00; }

.arrow-left-47[data-color="base1"] { border-right: 4.7rem solid #F9F6ED; }

.arrow-left-47[data-color="base2"] { border-right: 4.7rem solid #F2EAEA; }

.arrow-left-47[data-color="base3"] { border-right: 4.7rem solid #F9F6ED; }

.arrow-left-47[data-color="gray"] { border-right: 4.7rem solid #707070; }

.arrow-right-47 { position: absolute; top: 0; bottom: 0; right: -9.4rem; margin: auto; width: 4.7rem; height: 4.7rem; box-sizing: border-box; border: 4.7rem solid transparent; }

.arrow-right-47[data-color="white"] { border-left: 4.7rem solid #fff; }

.arrow-right-47[data-color="black"] { border-left: 4.7rem solid #1A1311; }

.arrow-right-47[data-color="key"] { border-left: 4.7rem solid #FFEC00; }

.arrow-right-47[data-color="base1"] { border-left: 4.7rem solid #F9F6ED; }

.arrow-right-47[data-color="base2"] { border-left: 4.7rem solid #F2EAEA; }

.arrow-right-47[data-color="base3"] { border-left: 4.7rem solid #F9F6ED; }

.arrow-right-47[data-color="gray"] { border-left: 4.7rem solid #707070; }

.arrow-top-48 { position: absolute; top: -9.6rem; left: 0; right: 0; margin: auto; width: 4.8rem; height: 4.8rem; box-sizing: border-box; border: 4.8rem solid transparent; }

.arrow-top-48[data-color="white"] { border-bottom: 4.8rem solid #fff; }

.arrow-top-48[data-color="black"] { border-bottom: 4.8rem solid #1A1311; }

.arrow-top-48[data-color="key"] { border-bottom: 4.8rem solid #FFEC00; }

.arrow-top-48[data-color="base1"] { border-bottom: 4.8rem solid #F9F6ED; }

.arrow-top-48[data-color="base2"] { border-bottom: 4.8rem solid #F2EAEA; }

.arrow-top-48[data-color="base3"] { border-bottom: 4.8rem solid #F9F6ED; }

.arrow-top-48[data-color="gray"] { border-bottom: 4.8rem solid #707070; }

.arrow-bottom-48 { position: absolute; bottom: -9.6rem; left: 0; right: 0; margin: auto; width: 4.8rem; height: 4.8rem; box-sizing: border-box; border: 4.8rem solid transparent; }

.arrow-bottom-48[data-color="white"] { border-top: 4.8rem solid #fff; }

.arrow-bottom-48[data-color="black"] { border-top: 4.8rem solid #1A1311; }

.arrow-bottom-48[data-color="key"] { border-top: 4.8rem solid #FFEC00; }

.arrow-bottom-48[data-color="base1"] { border-top: 4.8rem solid #F9F6ED; }

.arrow-bottom-48[data-color="base2"] { border-top: 4.8rem solid #F2EAEA; }

.arrow-bottom-48[data-color="base3"] { border-top: 4.8rem solid #F9F6ED; }

.arrow-bottom-48[data-color="gray"] { border-top: 4.8rem solid #707070; }

.arrow-left-48 { position: absolute; top: 0; bottom: 0; left: -9.6rem; margin: auto; width: 4.8rem; height: 4.8rem; box-sizing: border-box; border: 4.8rem solid transparent; }

.arrow-left-48[data-color="white"] { border-right: 4.8rem solid #fff; }

.arrow-left-48[data-color="black"] { border-right: 4.8rem solid #1A1311; }

.arrow-left-48[data-color="key"] { border-right: 4.8rem solid #FFEC00; }

.arrow-left-48[data-color="base1"] { border-right: 4.8rem solid #F9F6ED; }

.arrow-left-48[data-color="base2"] { border-right: 4.8rem solid #F2EAEA; }

.arrow-left-48[data-color="base3"] { border-right: 4.8rem solid #F9F6ED; }

.arrow-left-48[data-color="gray"] { border-right: 4.8rem solid #707070; }

.arrow-right-48 { position: absolute; top: 0; bottom: 0; right: -9.6rem; margin: auto; width: 4.8rem; height: 4.8rem; box-sizing: border-box; border: 4.8rem solid transparent; }

.arrow-right-48[data-color="white"] { border-left: 4.8rem solid #fff; }

.arrow-right-48[data-color="black"] { border-left: 4.8rem solid #1A1311; }

.arrow-right-48[data-color="key"] { border-left: 4.8rem solid #FFEC00; }

.arrow-right-48[data-color="base1"] { border-left: 4.8rem solid #F9F6ED; }

.arrow-right-48[data-color="base2"] { border-left: 4.8rem solid #F2EAEA; }

.arrow-right-48[data-color="base3"] { border-left: 4.8rem solid #F9F6ED; }

.arrow-right-48[data-color="gray"] { border-left: 4.8rem solid #707070; }

.arrow-top-49 { position: absolute; top: -9.8rem; left: 0; right: 0; margin: auto; width: 4.9rem; height: 4.9rem; box-sizing: border-box; border: 4.9rem solid transparent; }

.arrow-top-49[data-color="white"] { border-bottom: 4.9rem solid #fff; }

.arrow-top-49[data-color="black"] { border-bottom: 4.9rem solid #1A1311; }

.arrow-top-49[data-color="key"] { border-bottom: 4.9rem solid #FFEC00; }

.arrow-top-49[data-color="base1"] { border-bottom: 4.9rem solid #F9F6ED; }

.arrow-top-49[data-color="base2"] { border-bottom: 4.9rem solid #F2EAEA; }

.arrow-top-49[data-color="base3"] { border-bottom: 4.9rem solid #F9F6ED; }

.arrow-top-49[data-color="gray"] { border-bottom: 4.9rem solid #707070; }

.arrow-bottom-49 { position: absolute; bottom: -9.8rem; left: 0; right: 0; margin: auto; width: 4.9rem; height: 4.9rem; box-sizing: border-box; border: 4.9rem solid transparent; }

.arrow-bottom-49[data-color="white"] { border-top: 4.9rem solid #fff; }

.arrow-bottom-49[data-color="black"] { border-top: 4.9rem solid #1A1311; }

.arrow-bottom-49[data-color="key"] { border-top: 4.9rem solid #FFEC00; }

.arrow-bottom-49[data-color="base1"] { border-top: 4.9rem solid #F9F6ED; }

.arrow-bottom-49[data-color="base2"] { border-top: 4.9rem solid #F2EAEA; }

.arrow-bottom-49[data-color="base3"] { border-top: 4.9rem solid #F9F6ED; }

.arrow-bottom-49[data-color="gray"] { border-top: 4.9rem solid #707070; }

.arrow-left-49 { position: absolute; top: 0; bottom: 0; left: -9.8rem; margin: auto; width: 4.9rem; height: 4.9rem; box-sizing: border-box; border: 4.9rem solid transparent; }

.arrow-left-49[data-color="white"] { border-right: 4.9rem solid #fff; }

.arrow-left-49[data-color="black"] { border-right: 4.9rem solid #1A1311; }

.arrow-left-49[data-color="key"] { border-right: 4.9rem solid #FFEC00; }

.arrow-left-49[data-color="base1"] { border-right: 4.9rem solid #F9F6ED; }

.arrow-left-49[data-color="base2"] { border-right: 4.9rem solid #F2EAEA; }

.arrow-left-49[data-color="base3"] { border-right: 4.9rem solid #F9F6ED; }

.arrow-left-49[data-color="gray"] { border-right: 4.9rem solid #707070; }

.arrow-right-49 { position: absolute; top: 0; bottom: 0; right: -9.8rem; margin: auto; width: 4.9rem; height: 4.9rem; box-sizing: border-box; border: 4.9rem solid transparent; }

.arrow-right-49[data-color="white"] { border-left: 4.9rem solid #fff; }

.arrow-right-49[data-color="black"] { border-left: 4.9rem solid #1A1311; }

.arrow-right-49[data-color="key"] { border-left: 4.9rem solid #FFEC00; }

.arrow-right-49[data-color="base1"] { border-left: 4.9rem solid #F9F6ED; }

.arrow-right-49[data-color="base2"] { border-left: 4.9rem solid #F2EAEA; }

.arrow-right-49[data-color="base3"] { border-left: 4.9rem solid #F9F6ED; }

.arrow-right-49[data-color="gray"] { border-left: 4.9rem solid #707070; }

.arrow-top-50 { position: absolute; top: -10rem; left: 0; right: 0; margin: auto; width: 5rem; height: 5rem; box-sizing: border-box; border: 5rem solid transparent; }

.arrow-top-50[data-color="white"] { border-bottom: 5rem solid #fff; }

.arrow-top-50[data-color="black"] { border-bottom: 5rem solid #1A1311; }

.arrow-top-50[data-color="key"] { border-bottom: 5rem solid #FFEC00; }

.arrow-top-50[data-color="base1"] { border-bottom: 5rem solid #F9F6ED; }

.arrow-top-50[data-color="base2"] { border-bottom: 5rem solid #F2EAEA; }

.arrow-top-50[data-color="base3"] { border-bottom: 5rem solid #F9F6ED; }

.arrow-top-50[data-color="gray"] { border-bottom: 5rem solid #707070; }

.arrow-bottom-50 { position: absolute; bottom: -10rem; left: 0; right: 0; margin: auto; width: 5rem; height: 5rem; box-sizing: border-box; border: 5rem solid transparent; }

.arrow-bottom-50[data-color="white"] { border-top: 5rem solid #fff; }

.arrow-bottom-50[data-color="black"] { border-top: 5rem solid #1A1311; }

.arrow-bottom-50[data-color="key"] { border-top: 5rem solid #FFEC00; }

.arrow-bottom-50[data-color="base1"] { border-top: 5rem solid #F9F6ED; }

.arrow-bottom-50[data-color="base2"] { border-top: 5rem solid #F2EAEA; }

.arrow-bottom-50[data-color="base3"] { border-top: 5rem solid #F9F6ED; }

.arrow-bottom-50[data-color="gray"] { border-top: 5rem solid #707070; }

.arrow-left-50 { position: absolute; top: 0; bottom: 0; left: -10rem; margin: auto; width: 5rem; height: 5rem; box-sizing: border-box; border: 5rem solid transparent; }

.arrow-left-50[data-color="white"] { border-right: 5rem solid #fff; }

.arrow-left-50[data-color="black"] { border-right: 5rem solid #1A1311; }

.arrow-left-50[data-color="key"] { border-right: 5rem solid #FFEC00; }

.arrow-left-50[data-color="base1"] { border-right: 5rem solid #F9F6ED; }

.arrow-left-50[data-color="base2"] { border-right: 5rem solid #F2EAEA; }

.arrow-left-50[data-color="base3"] { border-right: 5rem solid #F9F6ED; }

.arrow-left-50[data-color="gray"] { border-right: 5rem solid #707070; }

.arrow-right-50 { position: absolute; top: 0; bottom: 0; right: -10rem; margin: auto; width: 5rem; height: 5rem; box-sizing: border-box; border: 5rem solid transparent; }

.arrow-right-50[data-color="white"] { border-left: 5rem solid #fff; }

.arrow-right-50[data-color="black"] { border-left: 5rem solid #1A1311; }

.arrow-right-50[data-color="key"] { border-left: 5rem solid #FFEC00; }

.arrow-right-50[data-color="base1"] { border-left: 5rem solid #F9F6ED; }

.arrow-right-50[data-color="base2"] { border-left: 5rem solid #F2EAEA; }

.arrow-right-50[data-color="base3"] { border-left: 5rem solid #F9F6ED; }

.arrow-right-50[data-color="gray"] { border-left: 5rem solid #707070; }

.blur-1 { -ms-filter: blur(1px); filter: blur(1px); }

.blur-2 { -ms-filter: blur(2px); filter: blur(2px); }

.blur-3 { -ms-filter: blur(3px); filter: blur(3px); }

.blur-4 { -ms-filter: blur(4px); filter: blur(4px); }

.blur-5 { -ms-filter: blur(5px); filter: blur(5px); }

.blur-6 { -ms-filter: blur(6px); filter: blur(6px); }

.blur-7 { -ms-filter: blur(7px); filter: blur(7px); }

.blur-8 { -ms-filter: blur(8px); filter: blur(8px); }

.blur-9 { -ms-filter: blur(9px); filter: blur(9px); }

.blur-10 { -ms-filter: blur(10px); filter: blur(10px); }

.blur-11 { -ms-filter: blur(11px); filter: blur(11px); }

.blur-12 { -ms-filter: blur(12px); filter: blur(12px); }

.blur-13 { -ms-filter: blur(13px); filter: blur(13px); }

.blur-14 { -ms-filter: blur(14px); filter: blur(14px); }

.blur-15 { -ms-filter: blur(15px); filter: blur(15px); }

.blur-16 { -ms-filter: blur(16px); filter: blur(16px); }

.blur-17 { -ms-filter: blur(17px); filter: blur(17px); }

.blur-18 { -ms-filter: blur(18px); filter: blur(18px); }

.blur-19 { -ms-filter: blur(19px); filter: blur(19px); }

.blur-20 { -ms-filter: blur(20px); filter: blur(20px); }

.blur-21 { -ms-filter: blur(21px); filter: blur(21px); }

.blur-22 { -ms-filter: blur(22px); filter: blur(22px); }

.blur-23 { -ms-filter: blur(23px); filter: blur(23px); }

.blur-24 { -ms-filter: blur(24px); filter: blur(24px); }

.blur-25 { -ms-filter: blur(25px); filter: blur(25px); }

.blur-26 { -ms-filter: blur(26px); filter: blur(26px); }

.blur-27 { -ms-filter: blur(27px); filter: blur(27px); }

.blur-28 { -ms-filter: blur(28px); filter: blur(28px); }

.blur-29 { -ms-filter: blur(29px); filter: blur(29px); }

.blur-30 { -ms-filter: blur(30px); filter: blur(30px); }

.blur-31 { -ms-filter: blur(31px); filter: blur(31px); }

.blur-32 { -ms-filter: blur(32px); filter: blur(32px); }

.blur-33 { -ms-filter: blur(33px); filter: blur(33px); }

.blur-34 { -ms-filter: blur(34px); filter: blur(34px); }

.blur-35 { -ms-filter: blur(35px); filter: blur(35px); }

.blur-36 { -ms-filter: blur(36px); filter: blur(36px); }

.blur-37 { -ms-filter: blur(37px); filter: blur(37px); }

.blur-38 { -ms-filter: blur(38px); filter: blur(38px); }

.blur-39 { -ms-filter: blur(39px); filter: blur(39px); }

.blur-40 { -ms-filter: blur(40px); filter: blur(40px); }

.blur-41 { -ms-filter: blur(41px); filter: blur(41px); }

.blur-42 { -ms-filter: blur(42px); filter: blur(42px); }

.blur-43 { -ms-filter: blur(43px); filter: blur(43px); }

.blur-44 { -ms-filter: blur(44px); filter: blur(44px); }

.blur-45 { -ms-filter: blur(45px); filter: blur(45px); }

.blur-46 { -ms-filter: blur(46px); filter: blur(46px); }

.blur-47 { -ms-filter: blur(47px); filter: blur(47px); }

.blur-48 { -ms-filter: blur(48px); filter: blur(48px); }

.blur-49 { -ms-filter: blur(49px); filter: blur(49px); }

.blur-50 { -ms-filter: blur(50px); filter: blur(50px); }

@media (min-width: 991px) { .blur-lg-1 { -ms-filter: blur(1px); filter: blur(1px); }
  .blur-lg-2 { -ms-filter: blur(2px); filter: blur(2px); }
  .blur-lg-3 { -ms-filter: blur(3px); filter: blur(3px); }
  .blur-lg-4 { -ms-filter: blur(4px); filter: blur(4px); }
  .blur-lg-5 { -ms-filter: blur(5px); filter: blur(5px); }
  .blur-lg-6 { -ms-filter: blur(6px); filter: blur(6px); }
  .blur-lg-7 { -ms-filter: blur(7px); filter: blur(7px); }
  .blur-lg-8 { -ms-filter: blur(8px); filter: blur(8px); }
  .blur-lg-9 { -ms-filter: blur(9px); filter: blur(9px); }
  .blur-lg-10 { -ms-filter: blur(10px); filter: blur(10px); }
  .blur-lg-11 { -ms-filter: blur(11px); filter: blur(11px); }
  .blur-lg-12 { -ms-filter: blur(12px); filter: blur(12px); }
  .blur-lg-13 { -ms-filter: blur(13px); filter: blur(13px); }
  .blur-lg-14 { -ms-filter: blur(14px); filter: blur(14px); }
  .blur-lg-15 { -ms-filter: blur(15px); filter: blur(15px); }
  .blur-lg-16 { -ms-filter: blur(16px); filter: blur(16px); }
  .blur-lg-17 { -ms-filter: blur(17px); filter: blur(17px); }
  .blur-lg-18 { -ms-filter: blur(18px); filter: blur(18px); }
  .blur-lg-19 { -ms-filter: blur(19px); filter: blur(19px); }
  .blur-lg-20 { -ms-filter: blur(20px); filter: blur(20px); }
  .blur-lg-21 { -ms-filter: blur(21px); filter: blur(21px); }
  .blur-lg-22 { -ms-filter: blur(22px); filter: blur(22px); }
  .blur-lg-23 { -ms-filter: blur(23px); filter: blur(23px); }
  .blur-lg-24 { -ms-filter: blur(24px); filter: blur(24px); }
  .blur-lg-25 { -ms-filter: blur(25px); filter: blur(25px); }
  .blur-lg-26 { -ms-filter: blur(26px); filter: blur(26px); }
  .blur-lg-27 { -ms-filter: blur(27px); filter: blur(27px); }
  .blur-lg-28 { -ms-filter: blur(28px); filter: blur(28px); }
  .blur-lg-29 { -ms-filter: blur(29px); filter: blur(29px); }
  .blur-lg-30 { -ms-filter: blur(30px); filter: blur(30px); }
  .blur-lg-31 { -ms-filter: blur(31px); filter: blur(31px); }
  .blur-lg-32 { -ms-filter: blur(32px); filter: blur(32px); }
  .blur-lg-33 { -ms-filter: blur(33px); filter: blur(33px); }
  .blur-lg-34 { -ms-filter: blur(34px); filter: blur(34px); }
  .blur-lg-35 { -ms-filter: blur(35px); filter: blur(35px); }
  .blur-lg-36 { -ms-filter: blur(36px); filter: blur(36px); }
  .blur-lg-37 { -ms-filter: blur(37px); filter: blur(37px); }
  .blur-lg-38 { -ms-filter: blur(38px); filter: blur(38px); }
  .blur-lg-39 { -ms-filter: blur(39px); filter: blur(39px); }
  .blur-lg-40 { -ms-filter: blur(40px); filter: blur(40px); }
  .blur-lg-41 { -ms-filter: blur(41px); filter: blur(41px); }
  .blur-lg-42 { -ms-filter: blur(42px); filter: blur(42px); }
  .blur-lg-43 { -ms-filter: blur(43px); filter: blur(43px); }
  .blur-lg-44 { -ms-filter: blur(44px); filter: blur(44px); }
  .blur-lg-45 { -ms-filter: blur(45px); filter: blur(45px); }
  .blur-lg-46 { -ms-filter: blur(46px); filter: blur(46px); }
  .blur-lg-47 { -ms-filter: blur(47px); filter: blur(47px); }
  .blur-lg-48 { -ms-filter: blur(48px); filter: blur(48px); }
  .blur-lg-49 { -ms-filter: blur(49px); filter: blur(49px); }
  .blur-lg-50 { -ms-filter: blur(50px); filter: blur(50px); } }

.mix-multiply { mix-blend-mode: multiply; }

.mix-screen { mix-blend-mode: screen; }

.mix-overlay { mix-blend-mode: overlay; }

.mix-darken { mix-blend-mode: darken; }

.mix-lighten { mix-blend-mode: lighten; }

.mix-color-dodge { mix-blend-mode: color-dodge; }

.mix-color-burn { mix-blend-mode: color-burn; }

.mix-hard-light { mix-blend-mode: hard-light; }

.mix-soft-light { mix-blend-mode: soft-light; }

.mix-difference { mix-blend-mode: difference; }

.mix-exclusion { mix-blend-mode: exclusion; }

.mix-hue { mix-blend-mode: hue; }

.mix-saturation { mix-blend-mode: saturation; }

.mix-color { mix-blend-mode: color; }

.mix-luminosity { mix-blend-mode: luminosity; }

@media (min-width: 991px) { .mix-lg-multiply { mix-blend-mode: multiply; }
  .mix-lg-screen { mix-blend-mode: screen; }
  .mix-lg-overlay { mix-blend-mode: overlay; }
  .mix-lg-darken { mix-blend-mode: darken; }
  .mix-lg-lighten { mix-blend-mode: lighten; }
  .mix-lg-color-dodge { mix-blend-mode: color-dodge; }
  .mix-lg-color-burn { mix-blend-mode: color-burn; }
  .mix-lg-hard-light { mix-blend-mode: hard-light; }
  .mix-lg-soft-light { mix-blend-mode: soft-light; }
  .mix-lg-difference { mix-blend-mode: difference; }
  .mix-lg-exclusion { mix-blend-mode: exclusion; }
  .mix-lg-hue { mix-blend-mode: hue; }
  .mix-lg-saturation { mix-blend-mode: saturation; }
  .mix-lg-color { mix-blend-mode: color; }
  .mix-lg-luminosity { mix-blend-mode: luminosity; } }

/* テキストの縦書き */
.font-vertical { -ms-writing-mode: tb-rl; writing-mode: vertical-rl; }

@media (min-width: 991px) { .font-lg-vertical { -ms-writing-mode: tb-rl; writing-mode: vertical-rl; } }

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

@media (min-width: 991px) { .img-lg-fit { height: 100%; object-fit: cover; } }

.marker[data-color="white"] { background: linear-gradient(transparent 50%, #fff 50%); }

.marker[data-color="black"] { background: linear-gradient(transparent 50%, #1A1311 50%); }

.marker[data-color="key"] { background: linear-gradient(transparent 50%, #FFEC00 50%); }

.marker[data-color="base1"] { background: linear-gradient(transparent 50%, #F9F6ED 50%); }

.marker[data-color="base2"] { background: linear-gradient(transparent 50%, #F2EAEA 50%); }

.marker[data-color="base3"] { background: linear-gradient(transparent 50%, #F9F6ED 50%); }

.marker[data-color="gray"] { background: linear-gradient(transparent 50%, #707070 50%); }

.marker-thin[data-color="white"] { background: linear-gradient(transparent 15%, #fff 15%, #fff 85%, transparent 85%); }

.marker-thin[data-color="black"] { background: linear-gradient(transparent 15%, #1A1311 15%, #1A1311 85%, transparent 85%); }

.marker-thin[data-color="key"] { background: linear-gradient(transparent 15%, #FFEC00 15%, #FFEC00 85%, transparent 85%); }

.marker-thin[data-color="base1"] { background: linear-gradient(transparent 15%, #F9F6ED 15%, #F9F6ED 85%, transparent 85%); }

.marker-thin[data-color="base2"] { background: linear-gradient(transparent 15%, #F2EAEA 15%, #F2EAEA 85%, transparent 85%); }

.marker-thin[data-color="base3"] { background: linear-gradient(transparent 15%, #F9F6ED 15%, #F9F6ED 85%, transparent 85%); }

.marker-thin[data-color="gray"] { background: linear-gradient(transparent 15%, #707070 15%, #707070 85%, transparent 85%); }

.underline[data-color="white"] { background: linear-gradient(transparent 95%, #fff 5%); }

.underline[data-color="black"] { background: linear-gradient(transparent 95%, #1A1311 5%); }

.underline[data-color="key"] { background: linear-gradient(transparent 95%, #FFEC00 5%); }

.underline[data-color="base1"] { background: linear-gradient(transparent 95%, #F9F6ED 5%); }

.underline[data-color="base2"] { background: linear-gradient(transparent 95%, #F2EAEA 5%); }

.underline[data-color="base3"] { background: linear-gradient(transparent 95%, #F9F6ED 5%); }

.underline[data-color="gray"] { background: linear-gradient(transparent 95%, #707070 5%); }

.clear { clear: both; }

.clear-none { clear: none; }

@media (min-width: 991px) { .clear-lg { clear: both; }
  .clear-lg-none { clear: none; } }

.hover { transition: all 0.2s ease; }

.hover:active { opacity: .5; }

@media (min-width: 991px) { .hover:hover { opacity: .5; } }

.scroll-5 { padding-right: 10px; overflow-y: auto; max-height: 0.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-5::-webkit-scrollbar { width: 5px; }

.scroll-5::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-5::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-10 { padding-right: 10px; overflow-y: auto; max-height: 1rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-10::-webkit-scrollbar { width: 5px; }

.scroll-10::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-10::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-15 { padding-right: 10px; overflow-y: auto; max-height: 1.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-15::-webkit-scrollbar { width: 5px; }

.scroll-15::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-15::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-20 { padding-right: 10px; overflow-y: auto; max-height: 2rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-20::-webkit-scrollbar { width: 5px; }

.scroll-20::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-20::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-25 { padding-right: 10px; overflow-y: auto; max-height: 2.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-25::-webkit-scrollbar { width: 5px; }

.scroll-25::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-25::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-30 { padding-right: 10px; overflow-y: auto; max-height: 3rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-30::-webkit-scrollbar { width: 5px; }

.scroll-30::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-30::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-35 { padding-right: 10px; overflow-y: auto; max-height: 3.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-35::-webkit-scrollbar { width: 5px; }

.scroll-35::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-35::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-40 { padding-right: 10px; overflow-y: auto; max-height: 4rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-40::-webkit-scrollbar { width: 5px; }

.scroll-40::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-40::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-45 { padding-right: 10px; overflow-y: auto; max-height: 4.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-45::-webkit-scrollbar { width: 5px; }

.scroll-45::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-45::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-50 { padding-right: 10px; overflow-y: auto; max-height: 5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-50::-webkit-scrollbar { width: 5px; }

.scroll-50::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-50::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-55 { padding-right: 10px; overflow-y: auto; max-height: 5.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-55::-webkit-scrollbar { width: 5px; }

.scroll-55::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-55::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-60 { padding-right: 10px; overflow-y: auto; max-height: 6rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-60::-webkit-scrollbar { width: 5px; }

.scroll-60::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-60::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-65 { padding-right: 10px; overflow-y: auto; max-height: 6.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-65::-webkit-scrollbar { width: 5px; }

.scroll-65::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-65::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-70 { padding-right: 10px; overflow-y: auto; max-height: 7rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-70::-webkit-scrollbar { width: 5px; }

.scroll-70::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-70::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-75 { padding-right: 10px; overflow-y: auto; max-height: 7.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-75::-webkit-scrollbar { width: 5px; }

.scroll-75::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-75::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-80 { padding-right: 10px; overflow-y: auto; max-height: 8rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-80::-webkit-scrollbar { width: 5px; }

.scroll-80::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-80::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-85 { padding-right: 10px; overflow-y: auto; max-height: 8.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-85::-webkit-scrollbar { width: 5px; }

.scroll-85::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-85::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-90 { padding-right: 10px; overflow-y: auto; max-height: 9rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-90::-webkit-scrollbar { width: 5px; }

.scroll-90::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-90::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-95 { padding-right: 10px; overflow-y: auto; max-height: 9.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-95::-webkit-scrollbar { width: 5px; }

.scroll-95::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-95::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-100 { padding-right: 10px; overflow-y: auto; max-height: 10rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-100::-webkit-scrollbar { width: 5px; }

.scroll-100::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-100::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-105 { padding-right: 10px; overflow-y: auto; max-height: 10.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-105::-webkit-scrollbar { width: 5px; }

.scroll-105::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-105::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-110 { padding-right: 10px; overflow-y: auto; max-height: 11rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-110::-webkit-scrollbar { width: 5px; }

.scroll-110::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-110::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-115 { padding-right: 10px; overflow-y: auto; max-height: 11.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-115::-webkit-scrollbar { width: 5px; }

.scroll-115::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-115::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-120 { padding-right: 10px; overflow-y: auto; max-height: 12rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-120::-webkit-scrollbar { width: 5px; }

.scroll-120::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-120::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-125 { padding-right: 10px; overflow-y: auto; max-height: 12.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-125::-webkit-scrollbar { width: 5px; }

.scroll-125::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-125::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-130 { padding-right: 10px; overflow-y: auto; max-height: 13rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-130::-webkit-scrollbar { width: 5px; }

.scroll-130::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-130::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-135 { padding-right: 10px; overflow-y: auto; max-height: 13.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-135::-webkit-scrollbar { width: 5px; }

.scroll-135::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-135::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-140 { padding-right: 10px; overflow-y: auto; max-height: 14rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-140::-webkit-scrollbar { width: 5px; }

.scroll-140::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-140::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-145 { padding-right: 10px; overflow-y: auto; max-height: 14.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-145::-webkit-scrollbar { width: 5px; }

.scroll-145::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-145::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-150 { padding-right: 10px; overflow-y: auto; max-height: 15rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-150::-webkit-scrollbar { width: 5px; }

.scroll-150::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-150::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-155 { padding-right: 10px; overflow-y: auto; max-height: 15.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-155::-webkit-scrollbar { width: 5px; }

.scroll-155::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-155::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-160 { padding-right: 10px; overflow-y: auto; max-height: 16rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-160::-webkit-scrollbar { width: 5px; }

.scroll-160::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-160::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-165 { padding-right: 10px; overflow-y: auto; max-height: 16.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-165::-webkit-scrollbar { width: 5px; }

.scroll-165::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-165::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-170 { padding-right: 10px; overflow-y: auto; max-height: 17rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-170::-webkit-scrollbar { width: 5px; }

.scroll-170::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-170::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-175 { padding-right: 10px; overflow-y: auto; max-height: 17.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-175::-webkit-scrollbar { width: 5px; }

.scroll-175::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-175::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-180 { padding-right: 10px; overflow-y: auto; max-height: 18rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-180::-webkit-scrollbar { width: 5px; }

.scroll-180::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-180::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-185 { padding-right: 10px; overflow-y: auto; max-height: 18.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-185::-webkit-scrollbar { width: 5px; }

.scroll-185::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-185::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-190 { padding-right: 10px; overflow-y: auto; max-height: 19rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-190::-webkit-scrollbar { width: 5px; }

.scroll-190::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-190::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-195 { padding-right: 10px; overflow-y: auto; max-height: 19.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-195::-webkit-scrollbar { width: 5px; }

.scroll-195::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-195::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-200 { padding-right: 10px; overflow-y: auto; max-height: 20rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-200::-webkit-scrollbar { width: 5px; }

.scroll-200::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-200::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-205 { padding-right: 10px; overflow-y: auto; max-height: 20.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-205::-webkit-scrollbar { width: 5px; }

.scroll-205::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-205::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-210 { padding-right: 10px; overflow-y: auto; max-height: 21rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-210::-webkit-scrollbar { width: 5px; }

.scroll-210::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-210::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-215 { padding-right: 10px; overflow-y: auto; max-height: 21.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-215::-webkit-scrollbar { width: 5px; }

.scroll-215::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-215::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-220 { padding-right: 10px; overflow-y: auto; max-height: 22rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-220::-webkit-scrollbar { width: 5px; }

.scroll-220::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-220::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-225 { padding-right: 10px; overflow-y: auto; max-height: 22.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-225::-webkit-scrollbar { width: 5px; }

.scroll-225::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-225::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-230 { padding-right: 10px; overflow-y: auto; max-height: 23rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-230::-webkit-scrollbar { width: 5px; }

.scroll-230::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-230::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-235 { padding-right: 10px; overflow-y: auto; max-height: 23.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-235::-webkit-scrollbar { width: 5px; }

.scroll-235::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-235::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-240 { padding-right: 10px; overflow-y: auto; max-height: 24rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-240::-webkit-scrollbar { width: 5px; }

.scroll-240::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-240::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-245 { padding-right: 10px; overflow-y: auto; max-height: 24.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-245::-webkit-scrollbar { width: 5px; }

.scroll-245::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-245::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-250 { padding-right: 10px; overflow-y: auto; max-height: 25rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-250::-webkit-scrollbar { width: 5px; }

.scroll-250::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-250::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-255 { padding-right: 10px; overflow-y: auto; max-height: 25.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-255::-webkit-scrollbar { width: 5px; }

.scroll-255::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-255::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-260 { padding-right: 10px; overflow-y: auto; max-height: 26rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-260::-webkit-scrollbar { width: 5px; }

.scroll-260::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-260::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-265 { padding-right: 10px; overflow-y: auto; max-height: 26.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-265::-webkit-scrollbar { width: 5px; }

.scroll-265::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-265::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-270 { padding-right: 10px; overflow-y: auto; max-height: 27rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-270::-webkit-scrollbar { width: 5px; }

.scroll-270::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-270::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-275 { padding-right: 10px; overflow-y: auto; max-height: 27.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-275::-webkit-scrollbar { width: 5px; }

.scroll-275::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-275::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-280 { padding-right: 10px; overflow-y: auto; max-height: 28rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-280::-webkit-scrollbar { width: 5px; }

.scroll-280::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-280::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-285 { padding-right: 10px; overflow-y: auto; max-height: 28.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-285::-webkit-scrollbar { width: 5px; }

.scroll-285::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-285::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-290 { padding-right: 10px; overflow-y: auto; max-height: 29rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-290::-webkit-scrollbar { width: 5px; }

.scroll-290::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-290::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-295 { padding-right: 10px; overflow-y: auto; max-height: 29.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-295::-webkit-scrollbar { width: 5px; }

.scroll-295::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-295::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-300 { padding-right: 10px; overflow-y: auto; max-height: 30rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-300::-webkit-scrollbar { width: 5px; }

.scroll-300::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-300::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-305 { padding-right: 10px; overflow-y: auto; max-height: 30.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-305::-webkit-scrollbar { width: 5px; }

.scroll-305::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-305::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-310 { padding-right: 10px; overflow-y: auto; max-height: 31rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-310::-webkit-scrollbar { width: 5px; }

.scroll-310::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-310::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-315 { padding-right: 10px; overflow-y: auto; max-height: 31.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-315::-webkit-scrollbar { width: 5px; }

.scroll-315::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-315::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-320 { padding-right: 10px; overflow-y: auto; max-height: 32rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-320::-webkit-scrollbar { width: 5px; }

.scroll-320::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-320::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-325 { padding-right: 10px; overflow-y: auto; max-height: 32.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-325::-webkit-scrollbar { width: 5px; }

.scroll-325::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-325::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-330 { padding-right: 10px; overflow-y: auto; max-height: 33rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-330::-webkit-scrollbar { width: 5px; }

.scroll-330::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-330::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-335 { padding-right: 10px; overflow-y: auto; max-height: 33.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-335::-webkit-scrollbar { width: 5px; }

.scroll-335::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-335::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-340 { padding-right: 10px; overflow-y: auto; max-height: 34rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-340::-webkit-scrollbar { width: 5px; }

.scroll-340::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-340::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-345 { padding-right: 10px; overflow-y: auto; max-height: 34.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-345::-webkit-scrollbar { width: 5px; }

.scroll-345::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-345::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-350 { padding-right: 10px; overflow-y: auto; max-height: 35rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-350::-webkit-scrollbar { width: 5px; }

.scroll-350::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-350::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-355 { padding-right: 10px; overflow-y: auto; max-height: 35.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-355::-webkit-scrollbar { width: 5px; }

.scroll-355::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-355::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-360 { padding-right: 10px; overflow-y: auto; max-height: 36rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-360::-webkit-scrollbar { width: 5px; }

.scroll-360::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-360::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-365 { padding-right: 10px; overflow-y: auto; max-height: 36.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-365::-webkit-scrollbar { width: 5px; }

.scroll-365::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-365::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-370 { padding-right: 10px; overflow-y: auto; max-height: 37rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-370::-webkit-scrollbar { width: 5px; }

.scroll-370::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-370::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-375 { padding-right: 10px; overflow-y: auto; max-height: 37.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-375::-webkit-scrollbar { width: 5px; }

.scroll-375::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-375::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-380 { padding-right: 10px; overflow-y: auto; max-height: 38rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-380::-webkit-scrollbar { width: 5px; }

.scroll-380::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-380::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-385 { padding-right: 10px; overflow-y: auto; max-height: 38.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-385::-webkit-scrollbar { width: 5px; }

.scroll-385::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-385::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-390 { padding-right: 10px; overflow-y: auto; max-height: 39rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-390::-webkit-scrollbar { width: 5px; }

.scroll-390::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-390::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-395 { padding-right: 10px; overflow-y: auto; max-height: 39.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-395::-webkit-scrollbar { width: 5px; }

.scroll-395::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-395::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-400 { padding-right: 10px; overflow-y: auto; max-height: 40rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-400::-webkit-scrollbar { width: 5px; }

.scroll-400::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-400::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-405 { padding-right: 10px; overflow-y: auto; max-height: 40.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-405::-webkit-scrollbar { width: 5px; }

.scroll-405::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-405::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-410 { padding-right: 10px; overflow-y: auto; max-height: 41rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-410::-webkit-scrollbar { width: 5px; }

.scroll-410::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-410::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-415 { padding-right: 10px; overflow-y: auto; max-height: 41.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-415::-webkit-scrollbar { width: 5px; }

.scroll-415::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-415::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-420 { padding-right: 10px; overflow-y: auto; max-height: 42rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-420::-webkit-scrollbar { width: 5px; }

.scroll-420::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-420::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-425 { padding-right: 10px; overflow-y: auto; max-height: 42.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-425::-webkit-scrollbar { width: 5px; }

.scroll-425::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-425::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-430 { padding-right: 10px; overflow-y: auto; max-height: 43rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-430::-webkit-scrollbar { width: 5px; }

.scroll-430::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-430::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-435 { padding-right: 10px; overflow-y: auto; max-height: 43.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-435::-webkit-scrollbar { width: 5px; }

.scroll-435::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-435::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-440 { padding-right: 10px; overflow-y: auto; max-height: 44rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-440::-webkit-scrollbar { width: 5px; }

.scroll-440::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-440::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-445 { padding-right: 10px; overflow-y: auto; max-height: 44.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-445::-webkit-scrollbar { width: 5px; }

.scroll-445::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-445::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-450 { padding-right: 10px; overflow-y: auto; max-height: 45rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-450::-webkit-scrollbar { width: 5px; }

.scroll-450::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-450::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-455 { padding-right: 10px; overflow-y: auto; max-height: 45.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-455::-webkit-scrollbar { width: 5px; }

.scroll-455::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-455::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-460 { padding-right: 10px; overflow-y: auto; max-height: 46rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-460::-webkit-scrollbar { width: 5px; }

.scroll-460::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-460::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-465 { padding-right: 10px; overflow-y: auto; max-height: 46.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-465::-webkit-scrollbar { width: 5px; }

.scroll-465::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-465::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-470 { padding-right: 10px; overflow-y: auto; max-height: 47rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-470::-webkit-scrollbar { width: 5px; }

.scroll-470::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-470::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-475 { padding-right: 10px; overflow-y: auto; max-height: 47.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-475::-webkit-scrollbar { width: 5px; }

.scroll-475::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-475::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-480 { padding-right: 10px; overflow-y: auto; max-height: 48rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-480::-webkit-scrollbar { width: 5px; }

.scroll-480::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-480::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-485 { padding-right: 10px; overflow-y: auto; max-height: 48.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-485::-webkit-scrollbar { width: 5px; }

.scroll-485::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-485::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-490 { padding-right: 10px; overflow-y: auto; max-height: 49rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-490::-webkit-scrollbar { width: 5px; }

.scroll-490::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-490::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-495 { padding-right: 10px; overflow-y: auto; max-height: 49.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-495::-webkit-scrollbar { width: 5px; }

.scroll-495::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-495::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-500 { padding-right: 10px; overflow-y: auto; max-height: 50rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-500::-webkit-scrollbar { width: 5px; }

.scroll-500::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-500::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-505 { padding-right: 10px; overflow-y: auto; max-height: 50.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-505::-webkit-scrollbar { width: 5px; }

.scroll-505::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-505::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-510 { padding-right: 10px; overflow-y: auto; max-height: 51rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-510::-webkit-scrollbar { width: 5px; }

.scroll-510::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-510::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-515 { padding-right: 10px; overflow-y: auto; max-height: 51.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-515::-webkit-scrollbar { width: 5px; }

.scroll-515::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-515::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-520 { padding-right: 10px; overflow-y: auto; max-height: 52rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-520::-webkit-scrollbar { width: 5px; }

.scroll-520::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-520::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-525 { padding-right: 10px; overflow-y: auto; max-height: 52.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-525::-webkit-scrollbar { width: 5px; }

.scroll-525::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-525::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-530 { padding-right: 10px; overflow-y: auto; max-height: 53rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-530::-webkit-scrollbar { width: 5px; }

.scroll-530::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-530::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-535 { padding-right: 10px; overflow-y: auto; max-height: 53.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-535::-webkit-scrollbar { width: 5px; }

.scroll-535::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-535::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-540 { padding-right: 10px; overflow-y: auto; max-height: 54rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-540::-webkit-scrollbar { width: 5px; }

.scroll-540::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-540::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-545 { padding-right: 10px; overflow-y: auto; max-height: 54.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-545::-webkit-scrollbar { width: 5px; }

.scroll-545::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-545::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-550 { padding-right: 10px; overflow-y: auto; max-height: 55rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-550::-webkit-scrollbar { width: 5px; }

.scroll-550::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-550::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-555 { padding-right: 10px; overflow-y: auto; max-height: 55.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-555::-webkit-scrollbar { width: 5px; }

.scroll-555::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-555::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-560 { padding-right: 10px; overflow-y: auto; max-height: 56rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-560::-webkit-scrollbar { width: 5px; }

.scroll-560::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-560::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-565 { padding-right: 10px; overflow-y: auto; max-height: 56.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-565::-webkit-scrollbar { width: 5px; }

.scroll-565::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-565::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-570 { padding-right: 10px; overflow-y: auto; max-height: 57rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-570::-webkit-scrollbar { width: 5px; }

.scroll-570::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-570::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-575 { padding-right: 10px; overflow-y: auto; max-height: 57.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-575::-webkit-scrollbar { width: 5px; }

.scroll-575::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-575::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-580 { padding-right: 10px; overflow-y: auto; max-height: 58rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-580::-webkit-scrollbar { width: 5px; }

.scroll-580::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-580::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-585 { padding-right: 10px; overflow-y: auto; max-height: 58.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-585::-webkit-scrollbar { width: 5px; }

.scroll-585::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-585::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-590 { padding-right: 10px; overflow-y: auto; max-height: 59rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-590::-webkit-scrollbar { width: 5px; }

.scroll-590::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-590::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-595 { padding-right: 10px; overflow-y: auto; max-height: 59.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-595::-webkit-scrollbar { width: 5px; }

.scroll-595::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-595::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-600 { padding-right: 10px; overflow-y: auto; max-height: 60rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-600::-webkit-scrollbar { width: 5px; }

.scroll-600::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-600::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-605 { padding-right: 10px; overflow-y: auto; max-height: 60.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-605::-webkit-scrollbar { width: 5px; }

.scroll-605::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-605::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-610 { padding-right: 10px; overflow-y: auto; max-height: 61rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-610::-webkit-scrollbar { width: 5px; }

.scroll-610::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-610::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-615 { padding-right: 10px; overflow-y: auto; max-height: 61.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-615::-webkit-scrollbar { width: 5px; }

.scroll-615::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-615::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-620 { padding-right: 10px; overflow-y: auto; max-height: 62rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-620::-webkit-scrollbar { width: 5px; }

.scroll-620::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-620::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-625 { padding-right: 10px; overflow-y: auto; max-height: 62.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-625::-webkit-scrollbar { width: 5px; }

.scroll-625::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-625::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-630 { padding-right: 10px; overflow-y: auto; max-height: 63rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-630::-webkit-scrollbar { width: 5px; }

.scroll-630::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-630::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-635 { padding-right: 10px; overflow-y: auto; max-height: 63.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-635::-webkit-scrollbar { width: 5px; }

.scroll-635::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-635::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-640 { padding-right: 10px; overflow-y: auto; max-height: 64rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-640::-webkit-scrollbar { width: 5px; }

.scroll-640::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-640::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-645 { padding-right: 10px; overflow-y: auto; max-height: 64.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-645::-webkit-scrollbar { width: 5px; }

.scroll-645::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-645::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-650 { padding-right: 10px; overflow-y: auto; max-height: 65rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-650::-webkit-scrollbar { width: 5px; }

.scroll-650::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-650::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-655 { padding-right: 10px; overflow-y: auto; max-height: 65.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-655::-webkit-scrollbar { width: 5px; }

.scroll-655::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-655::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-660 { padding-right: 10px; overflow-y: auto; max-height: 66rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-660::-webkit-scrollbar { width: 5px; }

.scroll-660::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-660::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-665 { padding-right: 10px; overflow-y: auto; max-height: 66.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-665::-webkit-scrollbar { width: 5px; }

.scroll-665::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-665::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-670 { padding-right: 10px; overflow-y: auto; max-height: 67rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-670::-webkit-scrollbar { width: 5px; }

.scroll-670::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-670::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-675 { padding-right: 10px; overflow-y: auto; max-height: 67.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-675::-webkit-scrollbar { width: 5px; }

.scroll-675::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-675::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-680 { padding-right: 10px; overflow-y: auto; max-height: 68rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-680::-webkit-scrollbar { width: 5px; }

.scroll-680::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-680::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-685 { padding-right: 10px; overflow-y: auto; max-height: 68.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-685::-webkit-scrollbar { width: 5px; }

.scroll-685::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-685::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-690 { padding-right: 10px; overflow-y: auto; max-height: 69rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-690::-webkit-scrollbar { width: 5px; }

.scroll-690::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-690::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-695 { padding-right: 10px; overflow-y: auto; max-height: 69.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-695::-webkit-scrollbar { width: 5px; }

.scroll-695::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-695::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-700 { padding-right: 10px; overflow-y: auto; max-height: 70rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-700::-webkit-scrollbar { width: 5px; }

.scroll-700::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-700::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-705 { padding-right: 10px; overflow-y: auto; max-height: 70.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-705::-webkit-scrollbar { width: 5px; }

.scroll-705::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-705::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-710 { padding-right: 10px; overflow-y: auto; max-height: 71rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-710::-webkit-scrollbar { width: 5px; }

.scroll-710::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-710::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-715 { padding-right: 10px; overflow-y: auto; max-height: 71.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-715::-webkit-scrollbar { width: 5px; }

.scroll-715::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-715::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-720 { padding-right: 10px; overflow-y: auto; max-height: 72rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-720::-webkit-scrollbar { width: 5px; }

.scroll-720::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-720::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-725 { padding-right: 10px; overflow-y: auto; max-height: 72.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-725::-webkit-scrollbar { width: 5px; }

.scroll-725::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-725::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-730 { padding-right: 10px; overflow-y: auto; max-height: 73rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-730::-webkit-scrollbar { width: 5px; }

.scroll-730::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-730::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-735 { padding-right: 10px; overflow-y: auto; max-height: 73.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-735::-webkit-scrollbar { width: 5px; }

.scroll-735::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-735::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-740 { padding-right: 10px; overflow-y: auto; max-height: 74rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-740::-webkit-scrollbar { width: 5px; }

.scroll-740::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-740::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-745 { padding-right: 10px; overflow-y: auto; max-height: 74.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-745::-webkit-scrollbar { width: 5px; }

.scroll-745::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-745::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-750 { padding-right: 10px; overflow-y: auto; max-height: 75rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-750::-webkit-scrollbar { width: 5px; }

.scroll-750::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-750::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-755 { padding-right: 10px; overflow-y: auto; max-height: 75.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-755::-webkit-scrollbar { width: 5px; }

.scroll-755::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-755::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-760 { padding-right: 10px; overflow-y: auto; max-height: 76rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-760::-webkit-scrollbar { width: 5px; }

.scroll-760::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-760::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-765 { padding-right: 10px; overflow-y: auto; max-height: 76.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-765::-webkit-scrollbar { width: 5px; }

.scroll-765::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-765::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-770 { padding-right: 10px; overflow-y: auto; max-height: 77rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-770::-webkit-scrollbar { width: 5px; }

.scroll-770::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-770::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-775 { padding-right: 10px; overflow-y: auto; max-height: 77.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-775::-webkit-scrollbar { width: 5px; }

.scroll-775::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-775::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-780 { padding-right: 10px; overflow-y: auto; max-height: 78rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-780::-webkit-scrollbar { width: 5px; }

.scroll-780::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-780::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-785 { padding-right: 10px; overflow-y: auto; max-height: 78.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-785::-webkit-scrollbar { width: 5px; }

.scroll-785::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-785::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-790 { padding-right: 10px; overflow-y: auto; max-height: 79rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-790::-webkit-scrollbar { width: 5px; }

.scroll-790::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-790::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-795 { padding-right: 10px; overflow-y: auto; max-height: 79.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-795::-webkit-scrollbar { width: 5px; }

.scroll-795::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-795::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-800 { padding-right: 10px; overflow-y: auto; max-height: 80rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-800::-webkit-scrollbar { width: 5px; }

.scroll-800::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-800::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-805 { padding-right: 10px; overflow-y: auto; max-height: 80.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-805::-webkit-scrollbar { width: 5px; }

.scroll-805::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-805::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-810 { padding-right: 10px; overflow-y: auto; max-height: 81rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-810::-webkit-scrollbar { width: 5px; }

.scroll-810::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-810::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-815 { padding-right: 10px; overflow-y: auto; max-height: 81.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-815::-webkit-scrollbar { width: 5px; }

.scroll-815::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-815::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-820 { padding-right: 10px; overflow-y: auto; max-height: 82rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-820::-webkit-scrollbar { width: 5px; }

.scroll-820::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-820::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-825 { padding-right: 10px; overflow-y: auto; max-height: 82.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-825::-webkit-scrollbar { width: 5px; }

.scroll-825::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-825::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-830 { padding-right: 10px; overflow-y: auto; max-height: 83rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-830::-webkit-scrollbar { width: 5px; }

.scroll-830::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-830::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-835 { padding-right: 10px; overflow-y: auto; max-height: 83.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-835::-webkit-scrollbar { width: 5px; }

.scroll-835::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-835::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-840 { padding-right: 10px; overflow-y: auto; max-height: 84rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-840::-webkit-scrollbar { width: 5px; }

.scroll-840::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-840::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-845 { padding-right: 10px; overflow-y: auto; max-height: 84.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-845::-webkit-scrollbar { width: 5px; }

.scroll-845::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-845::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-850 { padding-right: 10px; overflow-y: auto; max-height: 85rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-850::-webkit-scrollbar { width: 5px; }

.scroll-850::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-850::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-855 { padding-right: 10px; overflow-y: auto; max-height: 85.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-855::-webkit-scrollbar { width: 5px; }

.scroll-855::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-855::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-860 { padding-right: 10px; overflow-y: auto; max-height: 86rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-860::-webkit-scrollbar { width: 5px; }

.scroll-860::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-860::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-865 { padding-right: 10px; overflow-y: auto; max-height: 86.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-865::-webkit-scrollbar { width: 5px; }

.scroll-865::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-865::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-870 { padding-right: 10px; overflow-y: auto; max-height: 87rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-870::-webkit-scrollbar { width: 5px; }

.scroll-870::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-870::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-875 { padding-right: 10px; overflow-y: auto; max-height: 87.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-875::-webkit-scrollbar { width: 5px; }

.scroll-875::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-875::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-880 { padding-right: 10px; overflow-y: auto; max-height: 88rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-880::-webkit-scrollbar { width: 5px; }

.scroll-880::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-880::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-885 { padding-right: 10px; overflow-y: auto; max-height: 88.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-885::-webkit-scrollbar { width: 5px; }

.scroll-885::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-885::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-890 { padding-right: 10px; overflow-y: auto; max-height: 89rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-890::-webkit-scrollbar { width: 5px; }

.scroll-890::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-890::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-895 { padding-right: 10px; overflow-y: auto; max-height: 89.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-895::-webkit-scrollbar { width: 5px; }

.scroll-895::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-895::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-900 { padding-right: 10px; overflow-y: auto; max-height: 90rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-900::-webkit-scrollbar { width: 5px; }

.scroll-900::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-900::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-905 { padding-right: 10px; overflow-y: auto; max-height: 90.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-905::-webkit-scrollbar { width: 5px; }

.scroll-905::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-905::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-910 { padding-right: 10px; overflow-y: auto; max-height: 91rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-910::-webkit-scrollbar { width: 5px; }

.scroll-910::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-910::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-915 { padding-right: 10px; overflow-y: auto; max-height: 91.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-915::-webkit-scrollbar { width: 5px; }

.scroll-915::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-915::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-920 { padding-right: 10px; overflow-y: auto; max-height: 92rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-920::-webkit-scrollbar { width: 5px; }

.scroll-920::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-920::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-925 { padding-right: 10px; overflow-y: auto; max-height: 92.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-925::-webkit-scrollbar { width: 5px; }

.scroll-925::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-925::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-930 { padding-right: 10px; overflow-y: auto; max-height: 93rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-930::-webkit-scrollbar { width: 5px; }

.scroll-930::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-930::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-935 { padding-right: 10px; overflow-y: auto; max-height: 93.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-935::-webkit-scrollbar { width: 5px; }

.scroll-935::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-935::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-940 { padding-right: 10px; overflow-y: auto; max-height: 94rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-940::-webkit-scrollbar { width: 5px; }

.scroll-940::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-940::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-945 { padding-right: 10px; overflow-y: auto; max-height: 94.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-945::-webkit-scrollbar { width: 5px; }

.scroll-945::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-945::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-950 { padding-right: 10px; overflow-y: auto; max-height: 95rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-950::-webkit-scrollbar { width: 5px; }

.scroll-950::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-950::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-955 { padding-right: 10px; overflow-y: auto; max-height: 95.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-955::-webkit-scrollbar { width: 5px; }

.scroll-955::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-955::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-960 { padding-right: 10px; overflow-y: auto; max-height: 96rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-960::-webkit-scrollbar { width: 5px; }

.scroll-960::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-960::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-965 { padding-right: 10px; overflow-y: auto; max-height: 96.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-965::-webkit-scrollbar { width: 5px; }

.scroll-965::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-965::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-970 { padding-right: 10px; overflow-y: auto; max-height: 97rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-970::-webkit-scrollbar { width: 5px; }

.scroll-970::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-970::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-975 { padding-right: 10px; overflow-y: auto; max-height: 97.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-975::-webkit-scrollbar { width: 5px; }

.scroll-975::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-975::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-980 { padding-right: 10px; overflow-y: auto; max-height: 98rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-980::-webkit-scrollbar { width: 5px; }

.scroll-980::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-980::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-985 { padding-right: 10px; overflow-y: auto; max-height: 98.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-985::-webkit-scrollbar { width: 5px; }

.scroll-985::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-985::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-990 { padding-right: 10px; overflow-y: auto; max-height: 99rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-990::-webkit-scrollbar { width: 5px; }

.scroll-990::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-990::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-995 { padding-right: 10px; overflow-y: auto; max-height: 99.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-995::-webkit-scrollbar { width: 5px; }

.scroll-995::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-995::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1000 { padding-right: 10px; overflow-y: auto; max-height: 100rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1000::-webkit-scrollbar { width: 5px; }

.scroll-1000::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1000::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1005 { padding-right: 10px; overflow-y: auto; max-height: 100.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1005::-webkit-scrollbar { width: 5px; }

.scroll-1005::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1005::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1010 { padding-right: 10px; overflow-y: auto; max-height: 101rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1010::-webkit-scrollbar { width: 5px; }

.scroll-1010::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1010::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1015 { padding-right: 10px; overflow-y: auto; max-height: 101.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1015::-webkit-scrollbar { width: 5px; }

.scroll-1015::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1015::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1020 { padding-right: 10px; overflow-y: auto; max-height: 102rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1020::-webkit-scrollbar { width: 5px; }

.scroll-1020::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1020::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1025 { padding-right: 10px; overflow-y: auto; max-height: 102.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1025::-webkit-scrollbar { width: 5px; }

.scroll-1025::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1025::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1030 { padding-right: 10px; overflow-y: auto; max-height: 103rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1030::-webkit-scrollbar { width: 5px; }

.scroll-1030::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1030::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1035 { padding-right: 10px; overflow-y: auto; max-height: 103.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1035::-webkit-scrollbar { width: 5px; }

.scroll-1035::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1035::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1040 { padding-right: 10px; overflow-y: auto; max-height: 104rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1040::-webkit-scrollbar { width: 5px; }

.scroll-1040::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1040::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1045 { padding-right: 10px; overflow-y: auto; max-height: 104.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1045::-webkit-scrollbar { width: 5px; }

.scroll-1045::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1045::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1050 { padding-right: 10px; overflow-y: auto; max-height: 105rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1050::-webkit-scrollbar { width: 5px; }

.scroll-1050::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1050::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1055 { padding-right: 10px; overflow-y: auto; max-height: 105.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1055::-webkit-scrollbar { width: 5px; }

.scroll-1055::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1055::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1060 { padding-right: 10px; overflow-y: auto; max-height: 106rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1060::-webkit-scrollbar { width: 5px; }

.scroll-1060::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1060::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1065 { padding-right: 10px; overflow-y: auto; max-height: 106.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1065::-webkit-scrollbar { width: 5px; }

.scroll-1065::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1065::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1070 { padding-right: 10px; overflow-y: auto; max-height: 107rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1070::-webkit-scrollbar { width: 5px; }

.scroll-1070::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1070::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1075 { padding-right: 10px; overflow-y: auto; max-height: 107.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1075::-webkit-scrollbar { width: 5px; }

.scroll-1075::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1075::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1080 { padding-right: 10px; overflow-y: auto; max-height: 108rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1080::-webkit-scrollbar { width: 5px; }

.scroll-1080::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1080::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1085 { padding-right: 10px; overflow-y: auto; max-height: 108.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1085::-webkit-scrollbar { width: 5px; }

.scroll-1085::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1085::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1090 { padding-right: 10px; overflow-y: auto; max-height: 109rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1090::-webkit-scrollbar { width: 5px; }

.scroll-1090::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1090::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1095 { padding-right: 10px; overflow-y: auto; max-height: 109.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1095::-webkit-scrollbar { width: 5px; }

.scroll-1095::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1095::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1100 { padding-right: 10px; overflow-y: auto; max-height: 110rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1100::-webkit-scrollbar { width: 5px; }

.scroll-1100::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1100::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1105 { padding-right: 10px; overflow-y: auto; max-height: 110.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1105::-webkit-scrollbar { width: 5px; }

.scroll-1105::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1105::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1110 { padding-right: 10px; overflow-y: auto; max-height: 111rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1110::-webkit-scrollbar { width: 5px; }

.scroll-1110::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1110::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1115 { padding-right: 10px; overflow-y: auto; max-height: 111.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1115::-webkit-scrollbar { width: 5px; }

.scroll-1115::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1115::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1120 { padding-right: 10px; overflow-y: auto; max-height: 112rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1120::-webkit-scrollbar { width: 5px; }

.scroll-1120::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1120::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1125 { padding-right: 10px; overflow-y: auto; max-height: 112.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1125::-webkit-scrollbar { width: 5px; }

.scroll-1125::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1125::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1130 { padding-right: 10px; overflow-y: auto; max-height: 113rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1130::-webkit-scrollbar { width: 5px; }

.scroll-1130::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1130::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1135 { padding-right: 10px; overflow-y: auto; max-height: 113.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1135::-webkit-scrollbar { width: 5px; }

.scroll-1135::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1135::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1140 { padding-right: 10px; overflow-y: auto; max-height: 114rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1140::-webkit-scrollbar { width: 5px; }

.scroll-1140::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1140::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1145 { padding-right: 10px; overflow-y: auto; max-height: 114.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1145::-webkit-scrollbar { width: 5px; }

.scroll-1145::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1145::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1150 { padding-right: 10px; overflow-y: auto; max-height: 115rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1150::-webkit-scrollbar { width: 5px; }

.scroll-1150::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1150::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1155 { padding-right: 10px; overflow-y: auto; max-height: 115.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1155::-webkit-scrollbar { width: 5px; }

.scroll-1155::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1155::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1160 { padding-right: 10px; overflow-y: auto; max-height: 116rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1160::-webkit-scrollbar { width: 5px; }

.scroll-1160::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1160::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1165 { padding-right: 10px; overflow-y: auto; max-height: 116.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1165::-webkit-scrollbar { width: 5px; }

.scroll-1165::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1165::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1170 { padding-right: 10px; overflow-y: auto; max-height: 117rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1170::-webkit-scrollbar { width: 5px; }

.scroll-1170::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1170::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1175 { padding-right: 10px; overflow-y: auto; max-height: 117.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1175::-webkit-scrollbar { width: 5px; }

.scroll-1175::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1175::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1180 { padding-right: 10px; overflow-y: auto; max-height: 118rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1180::-webkit-scrollbar { width: 5px; }

.scroll-1180::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1180::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1185 { padding-right: 10px; overflow-y: auto; max-height: 118.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1185::-webkit-scrollbar { width: 5px; }

.scroll-1185::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1185::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1190 { padding-right: 10px; overflow-y: auto; max-height: 119rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1190::-webkit-scrollbar { width: 5px; }

.scroll-1190::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1190::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1195 { padding-right: 10px; overflow-y: auto; max-height: 119.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1195::-webkit-scrollbar { width: 5px; }

.scroll-1195::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1195::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1200 { padding-right: 10px; overflow-y: auto; max-height: 120rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1200::-webkit-scrollbar { width: 5px; }

.scroll-1200::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1200::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1205 { padding-right: 10px; overflow-y: auto; max-height: 120.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1205::-webkit-scrollbar { width: 5px; }

.scroll-1205::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1205::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1210 { padding-right: 10px; overflow-y: auto; max-height: 121rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1210::-webkit-scrollbar { width: 5px; }

.scroll-1210::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1210::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1215 { padding-right: 10px; overflow-y: auto; max-height: 121.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1215::-webkit-scrollbar { width: 5px; }

.scroll-1215::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1215::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1220 { padding-right: 10px; overflow-y: auto; max-height: 122rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1220::-webkit-scrollbar { width: 5px; }

.scroll-1220::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1220::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1225 { padding-right: 10px; overflow-y: auto; max-height: 122.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1225::-webkit-scrollbar { width: 5px; }

.scroll-1225::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1225::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1230 { padding-right: 10px; overflow-y: auto; max-height: 123rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1230::-webkit-scrollbar { width: 5px; }

.scroll-1230::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1230::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1235 { padding-right: 10px; overflow-y: auto; max-height: 123.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1235::-webkit-scrollbar { width: 5px; }

.scroll-1235::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1235::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1240 { padding-right: 10px; overflow-y: auto; max-height: 124rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1240::-webkit-scrollbar { width: 5px; }

.scroll-1240::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1240::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1245 { padding-right: 10px; overflow-y: auto; max-height: 124.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1245::-webkit-scrollbar { width: 5px; }

.scroll-1245::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1245::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1250 { padding-right: 10px; overflow-y: auto; max-height: 125rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1250::-webkit-scrollbar { width: 5px; }

.scroll-1250::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1250::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1255 { padding-right: 10px; overflow-y: auto; max-height: 125.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1255::-webkit-scrollbar { width: 5px; }

.scroll-1255::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1255::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1260 { padding-right: 10px; overflow-y: auto; max-height: 126rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1260::-webkit-scrollbar { width: 5px; }

.scroll-1260::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1260::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1265 { padding-right: 10px; overflow-y: auto; max-height: 126.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1265::-webkit-scrollbar { width: 5px; }

.scroll-1265::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1265::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1270 { padding-right: 10px; overflow-y: auto; max-height: 127rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1270::-webkit-scrollbar { width: 5px; }

.scroll-1270::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1270::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1275 { padding-right: 10px; overflow-y: auto; max-height: 127.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1275::-webkit-scrollbar { width: 5px; }

.scroll-1275::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1275::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1280 { padding-right: 10px; overflow-y: auto; max-height: 128rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1280::-webkit-scrollbar { width: 5px; }

.scroll-1280::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1280::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1285 { padding-right: 10px; overflow-y: auto; max-height: 128.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1285::-webkit-scrollbar { width: 5px; }

.scroll-1285::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1285::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1290 { padding-right: 10px; overflow-y: auto; max-height: 129rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1290::-webkit-scrollbar { width: 5px; }

.scroll-1290::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1290::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1295 { padding-right: 10px; overflow-y: auto; max-height: 129.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1295::-webkit-scrollbar { width: 5px; }

.scroll-1295::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1295::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1300 { padding-right: 10px; overflow-y: auto; max-height: 130rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1300::-webkit-scrollbar { width: 5px; }

.scroll-1300::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1300::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1305 { padding-right: 10px; overflow-y: auto; max-height: 130.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1305::-webkit-scrollbar { width: 5px; }

.scroll-1305::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1305::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1310 { padding-right: 10px; overflow-y: auto; max-height: 131rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1310::-webkit-scrollbar { width: 5px; }

.scroll-1310::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1310::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1315 { padding-right: 10px; overflow-y: auto; max-height: 131.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1315::-webkit-scrollbar { width: 5px; }

.scroll-1315::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1315::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1320 { padding-right: 10px; overflow-y: auto; max-height: 132rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1320::-webkit-scrollbar { width: 5px; }

.scroll-1320::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1320::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1325 { padding-right: 10px; overflow-y: auto; max-height: 132.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1325::-webkit-scrollbar { width: 5px; }

.scroll-1325::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1325::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1330 { padding-right: 10px; overflow-y: auto; max-height: 133rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1330::-webkit-scrollbar { width: 5px; }

.scroll-1330::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1330::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1335 { padding-right: 10px; overflow-y: auto; max-height: 133.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1335::-webkit-scrollbar { width: 5px; }

.scroll-1335::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1335::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1340 { padding-right: 10px; overflow-y: auto; max-height: 134rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1340::-webkit-scrollbar { width: 5px; }

.scroll-1340::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1340::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1345 { padding-right: 10px; overflow-y: auto; max-height: 134.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1345::-webkit-scrollbar { width: 5px; }

.scroll-1345::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1345::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1350 { padding-right: 10px; overflow-y: auto; max-height: 135rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1350::-webkit-scrollbar { width: 5px; }

.scroll-1350::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1350::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1355 { padding-right: 10px; overflow-y: auto; max-height: 135.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1355::-webkit-scrollbar { width: 5px; }

.scroll-1355::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1355::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1360 { padding-right: 10px; overflow-y: auto; max-height: 136rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1360::-webkit-scrollbar { width: 5px; }

.scroll-1360::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1360::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1365 { padding-right: 10px; overflow-y: auto; max-height: 136.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1365::-webkit-scrollbar { width: 5px; }

.scroll-1365::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1365::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1370 { padding-right: 10px; overflow-y: auto; max-height: 137rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1370::-webkit-scrollbar { width: 5px; }

.scroll-1370::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1370::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1375 { padding-right: 10px; overflow-y: auto; max-height: 137.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1375::-webkit-scrollbar { width: 5px; }

.scroll-1375::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1375::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1380 { padding-right: 10px; overflow-y: auto; max-height: 138rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1380::-webkit-scrollbar { width: 5px; }

.scroll-1380::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1380::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1385 { padding-right: 10px; overflow-y: auto; max-height: 138.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1385::-webkit-scrollbar { width: 5px; }

.scroll-1385::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1385::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1390 { padding-right: 10px; overflow-y: auto; max-height: 139rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1390::-webkit-scrollbar { width: 5px; }

.scroll-1390::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1390::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1395 { padding-right: 10px; overflow-y: auto; max-height: 139.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1395::-webkit-scrollbar { width: 5px; }

.scroll-1395::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1395::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1400 { padding-right: 10px; overflow-y: auto; max-height: 140rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1400::-webkit-scrollbar { width: 5px; }

.scroll-1400::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1400::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1405 { padding-right: 10px; overflow-y: auto; max-height: 140.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1405::-webkit-scrollbar { width: 5px; }

.scroll-1405::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1405::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1410 { padding-right: 10px; overflow-y: auto; max-height: 141rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1410::-webkit-scrollbar { width: 5px; }

.scroll-1410::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1410::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1415 { padding-right: 10px; overflow-y: auto; max-height: 141.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1415::-webkit-scrollbar { width: 5px; }

.scroll-1415::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1415::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1420 { padding-right: 10px; overflow-y: auto; max-height: 142rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1420::-webkit-scrollbar { width: 5px; }

.scroll-1420::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1420::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1425 { padding-right: 10px; overflow-y: auto; max-height: 142.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1425::-webkit-scrollbar { width: 5px; }

.scroll-1425::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1425::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1430 { padding-right: 10px; overflow-y: auto; max-height: 143rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1430::-webkit-scrollbar { width: 5px; }

.scroll-1430::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1430::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1435 { padding-right: 10px; overflow-y: auto; max-height: 143.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1435::-webkit-scrollbar { width: 5px; }

.scroll-1435::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1435::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1440 { padding-right: 10px; overflow-y: auto; max-height: 144rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1440::-webkit-scrollbar { width: 5px; }

.scroll-1440::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1440::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1445 { padding-right: 10px; overflow-y: auto; max-height: 144.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1445::-webkit-scrollbar { width: 5px; }

.scroll-1445::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1445::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1450 { padding-right: 10px; overflow-y: auto; max-height: 145rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1450::-webkit-scrollbar { width: 5px; }

.scroll-1450::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1450::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1455 { padding-right: 10px; overflow-y: auto; max-height: 145.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1455::-webkit-scrollbar { width: 5px; }

.scroll-1455::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1455::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1460 { padding-right: 10px; overflow-y: auto; max-height: 146rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1460::-webkit-scrollbar { width: 5px; }

.scroll-1460::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1460::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1465 { padding-right: 10px; overflow-y: auto; max-height: 146.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1465::-webkit-scrollbar { width: 5px; }

.scroll-1465::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1465::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1470 { padding-right: 10px; overflow-y: auto; max-height: 147rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1470::-webkit-scrollbar { width: 5px; }

.scroll-1470::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1470::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1475 { padding-right: 10px; overflow-y: auto; max-height: 147.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1475::-webkit-scrollbar { width: 5px; }

.scroll-1475::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1475::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1480 { padding-right: 10px; overflow-y: auto; max-height: 148rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1480::-webkit-scrollbar { width: 5px; }

.scroll-1480::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1480::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1485 { padding-right: 10px; overflow-y: auto; max-height: 148.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1485::-webkit-scrollbar { width: 5px; }

.scroll-1485::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1485::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1490 { padding-right: 10px; overflow-y: auto; max-height: 149rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1490::-webkit-scrollbar { width: 5px; }

.scroll-1490::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1490::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1495 { padding-right: 10px; overflow-y: auto; max-height: 149.5rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1495::-webkit-scrollbar { width: 5px; }

.scroll-1495::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1495::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

.scroll-1500 { padding-right: 10px; overflow-y: auto; max-height: 150rem !important; /*スクロールバーの軌道*/ /*スクロールバーの動く部分*/ }

.scroll-1500::-webkit-scrollbar { width: 5px; }

.scroll-1500::-webkit-scrollbar-track { border-radius: 10px; }

.scroll-1500::-webkit-scrollbar-thumb { background-color: rgba(26, 19, 17, 0.3); border-radius: 10px; }

/* positionのレスポンシブ設定 */
@media (min-width: 991px) { .position-lg-static { position: static !important; } }

.test { display: none; }

.letter-space { letter-spacing: .1em; }
