/*
* CuppaCSS v0.0.3
* Authors (https://github.com/cloudbit-interactive/cuppajs)
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
*/
:root {
  font-size: 62.5%;
  --top-safe-space:env(safe-area-inset-top);
  --bottom-safe-space:env(safe-area-inset-bottom);
  --left-safe-space:env(safe-area-inset-left);
  --right-safe-space:env(safe-area-inset-right);
  --nav-top-height:5.4rem;
  --drawer-width:30rem;
  --color-white:#FFF;
  --color-black:#000;
  --color-warning:#ffbb33;
  --color-warning-dark:#ff8800;
  --color-warning-light: #ffe7b2;
  --color-error:#ff4444;
  --color-error-dark:#cc0000;
  --color-error-light:#f8d7da;
  --color-success:#00c851;
  --color-success-dark:#007E33;
  --color-success-light:#d1e7dd;
  --color-progress:#1890ff;
  --color-progress-dark:#006ed9;
  --color-progress-light:#cfe2ff;
  --color-highlight:#FDF845;
}

* {
  box-sizing: border-box;
  position: relative;
}

.bg-black {
  background-color: var(--color-black);
}

.color-black {
  color: var(--color-black);
}

.tint-black {
  filter: invert(0%) sepia(96%) saturate(21%) hue-rotate(215deg) brightness(96%) contrast(102%);
}

.bg-white {
  background-color: var(--color-white);
}

.color-white {
  color: var(--color-white);
}

.tint-white {
  filter: invert(100%) sepia(0%) saturate(7500%) hue-rotate(34deg) brightness(103%) contrast(102%);
}

.bg-warning {
  background-color: var(--color-warning);
}

.color-warning {
  color: var(--color-warning);
}

.tint-warning {
  filter: invert(89%) sepia(32%) saturate(2847%) hue-rotate(329deg) brightness(101%) contrast(105%);
}

.bg-warning-dark {
  background-color: var(--color-warning-dark);
}

.color-warning-dark {
  color: var(--color-warning-dark);
}

.tint-warning-dark {
  filter: invert(68%) sepia(38%) saturate(6957%) hue-rotate(0deg) brightness(104%) contrast(105%);
}

.bg-warning-light {
  background-color: var(--color-warning-light);
}

.color-warning-light {
  color: var(--color-warning-dark);
}

.tint-warning-light {
  filter: invert(88%) sepia(27%) saturate(327%) hue-rotate(339deg) brightness(105%) contrast(101%);
}

.bg-error {
  background-color: var(--color-error);
}

.color-error {
  color: var(--color-error);
}

.tint-error {
  filter: invert(28%) sepia(86%) saturate(1852%) hue-rotate(339deg) brightness(125%) contrast(105%);
}

.bg-error-dark {
  background-color: var(--color-error-dark);
}

.color-error-dark {
  color: var(--color-error-dark);
}

.tint-error-dark {
  filter: invert(12%) sepia(78%) saturate(5676%) hue-rotate(3deg) brightness(85%) contrast(119%);
}

.bg-error-light {
  background-color: var(--color-error-light);
}

.color-error-light {
  color: var(--color-error-light);
}

.tint-error-light {
  filter: invert(88%) sepia(94%) saturate(353%) hue-rotate(288deg) brightness(103%) contrast(94%);
}

.bg-success {
  background-color: var(--color-success);
}

.color-success {
  color: var(--color-success);
}

.tint-success {
  filter: invert(63%) sepia(42%) saturate(4588%) hue-rotate(103deg) brightness(95%) contrast(101%);
}

.bg-success-dark {
  background-color: var(--color-success-dark);
}

.color-success-dark {
  color: var(--color-success-dark);
}

.tint-success-dark {
  filter: invert(29%) sepia(77%) saturate(826%) hue-rotate(105deg) brightness(101%) contrast(106%);
}

.bg-success-light {
  background-color: var(--color-success-light);
}

.color-success-light {
  color: var(--color-success-light);
}

.tint-success-light {
  filter: invert(99%) sepia(41%) saturate(323%) hue-rotate(72deg) brightness(97%) contrast(85%);
}

.bg-progress {
  background-color: var(--color-progress);
}

.color-progress {
  color: var(--color-progress);
}

.tint-progress {
  filter: invert(40%) sepia(80%) saturate(1856%) hue-rotate(192deg) brightness(100%) contrast(107%);
}

.bg-progress-dark {
  background-color: var(--color-progress-dark);
}

.color-progress-dark {
  color: var(--color-progress-dark);
}

.tint-progress-dark {
  filter: invert(60%) sepia(41%) saturate(6146%) hue-rotate(161deg) brightness(87%) contrast(101%);
}

.bg-progress-light {
  background-color: var(--color-progress-light);
}

.color-progress-light {
  color: var(--color-progress-light);
}

.tint-progress-light {
  filter: invert(75%) sepia(89%) saturate(412%) hue-rotate(184deg) brightness(110%) contrast(101%);
}

.m-0-auto {
  margin: 0 auto;
}

.m-w {
  position: relative;
  width: 100%;
  max-width: 1700px;
}

.m-w-9999 {
  position: relative;
  width: 100%;
  max-width: 9999px;
}

.m-w-100 {
  position: relative;
  width: 100%;
  max-width: 100px;
}

.m-w-200 {
  position: relative;
  width: 100%;
  max-width: 200px;
}

.m-w-300 {
  position: relative;
  width: 100%;
  max-width: 300px;
}

.m-w-400 {
  position: relative;
  width: 100%;
  max-width: 400px;
}

.m-w-500 {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.m-w-600 {
  position: relative;
  width: 100%;
  max-width: 600px;
}

.m-w-700 {
  position: relative;
  width: 100%;
  max-width: 700px;
}

.m-w-800 {
  position: relative;
  width: 100%;
  max-width: 800px;
}

.m-w-900 {
  position: relative;
  width: 100%;
  max-width: 900px;
}

.m-w-1000 {
  position: relative;
  width: 100%;
  max-width: 1000px;
}

.m-w-1100 {
  position: relative;
  width: 100%;
  max-width: 1100px;
}

.m-w-1200 {
  position: relative;
  width: 100%;
  max-width: 1200px;
}

.m-w-1300 {
  position: relative;
  width: 100%;
  max-width: 1300px;
}

.m-w-1400 {
  position: relative;
  width: 100%;
  max-width: 1400px;
}

.m-w-1500 {
  position: relative;
  width: 100%;
  max-width: 1500px;
}

.m-w-1600 {
  position: relative;
  width: 100%;
  max-width: 1600px;
}

.m-w-50vw {
  position: relative;
  width: 100%;
  max-width: 50vw;
}

.m-w-60vw {
  position: relative;
  width: 100%;
  max-width: 60vw;
}

.m-w-70vw {
  position: relative;
  width: 100%;
  max-width: 70vw;
}

.m-w-80vw {
  position: relative;
  width: 100%;
  max-width: 80vw;
}

.m-w-90vw {
  position: relative;
  width: 100%;
  max-width: 90vw;
}

.m-w-100vw {
  position: relative;
  width: 100%;
  max-width: 100vw;
}

.min-w-50 {
  min-width: 50px;
}

.min-w-100 {
  min-width: 100px;
}

.min-w-150 {
  min-width: 150px;
}

.min-w-200 {
  min-width: 200px;
}

.min-w-250 {
  min-width: 250px;
}

.min-w-300 {
  min-width: 300px;
}

.min-w-350 {
  min-width: 350px;
}

.min-w-400 {
  min-width: 400px;
}

.min-w-450 {
  min-width: 450px;
}

.min-w-500 {
  min-width: 500px;
}

.min-w-550 {
  min-width: 550px;
}

.min-w-600 {
  min-width: 600px;
}

.min-w-650 {
  min-width: 650px;
}

.min-w-700 {
  min-width: 700px;
}

.t-none {
  transform: none;
}

.l-0 {
  left: 0;
}

.r-0 {
  right: 0;
}

.t-0 {
  top: 0;
}

.b-0 {
  bottom: 0;
}

.a-l-t {
  position: absolute;
  top: 0;
  left: 0;
}

.a-l-c {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
}

.a-l-b {
  position: absolute;
  bottom: 0;
  left: 0;
}

.a-c-t {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.a-c-c {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.a-c-b {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.a-r-t {
  position: absolute;
  top: 0;
  right: 0;
}

.a-r-c {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
}

.a-r-b {
  position: absolute;
  bottom: 0;
  right: 0;
}

.f-l-t {
  position: fixed;
  top: 0;
  left: 0;
}

.f-l-c {
  position: fixed;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
}

.f-l-b {
  position: fixed;
  bottom: 0;
  left: 0;
}

.f-c-t {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.f-c-c {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.f-c-b {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.f-r-t {
  position: fixed;
  top: 0;
  right: 0;
}

.f-r-c {
  position: fixed;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
}

.f-r-b {
  position: fixed;
  bottom: 0;
  right: 0;
}

.a-t {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translate(0%, -50%);
  text-align: center;
  backface-visibility: hidden;
}

.a-t-x {
  position: absolute;
  left: 50%;
  transform: translate(-50%, 0%);
  backface-visibility: hidden;
}

.a-t-y {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  backface-visibility: hidden;
}

/* element */
.sticky {
  position: sticky;
  z-index: 1;
}

.border-box, .border-box * {
  box-sizing: border-box;
}

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

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

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

.relative-all, .relative-all * {
  position: relative;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.wire-white, .wire-white * {
  border: 1px dashed #FFF !important;
}

.wire-black, .wire, .wire-black *, .wire * {
  border: 1px dashed #000 !important;
}

.btn, .cursor {
  cursor: pointer !important;
}

.btn-alpha {
  cursor: pointer;
  opacity: 1;
  transition: 0.3s opacity;
}

.btn-alpha:hover {
  opacity: 0.7 !important;
}

.btn-alpha-50p {
  cursor: pointer;
  opacity: 1;
  transition: 0.3s opacity;
}

.btn-alpha-50p:hover {
  opacity: 0.5 !important;
}

.btn-alpha-25p {
  cursor: pointer;
  opacity: 1;
  transition: 0.3s opacity;
}

.btn-alpha-25p:hover {
  opacity: 0.25 !important;
}

.c-default {
  cursor: default !important;
}

.underline {
  text-decoration: underline !important;
}

.list-no-style > li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.list-no-style > li::before {
  content: none;
}

.disabled {
  opacity: 0.6 !important;
  pointer-events: none !important;
  -webkit-user-select: none !important;
  user-select: none !important;
  outline: none !important;
}

.disabled * {
  outline: none !important;
}

.d-i {
  pointer-events: none !important;
  -webkit-user-select: none !important;
  user-select: none !important;
  outline: none !important;
}

.d-i * {
  outline: none !important;
}

.d-i-children * {
  pointer-events: none !important;
  -webkit-user-select: none !important;
  user-select: none !important;
  outline: none !important;
}

.d-i-parent {
  pointer-events: none !important;
  -webkit-user-select: none !important;
  user-select: none !important;
  outline: none !important;
}

.d-i-parent * {
  pointer-events: auto !important;
}

.select-none {
  -webkit-user-select: none !important;
  user-select: none !important;
  outline: none !important;
}

.select-text {
  -webkit-user-select: text !important;
  user-select: text !important;
}

.no-scroll-all, .no-scroll-all * {
  overflow: hidden !important;
}

.cover {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.cover-fixed {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.bg-stretch {
  background-position: left top;
  background-size: 100% 100%;
}

.bg-cover {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.bg-contain {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.input-file-cover {
  position: absolute !important;
  width: 100% !important;
  height: 100% !important;
  font-size: 1500px !important;
  top: 0 !important;
  left: 0 !important;
  direction: ltr !important;
  cursor: pointer !important;
  opacity: 0 !important;
}

.arrow-up {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #000;
  position: absolute;
  bottom: 100%;
  right: 15px;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #000;
}

.arrow-left {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 10px solid #000;
}

.arrow-right {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #000;
}

.b-radius-100p {
  border-radius: 100%;
}

.b-radius-10 {
  border-radius: 10px;
}

.b-radius-5 {
  border-radius: 5px;
}

.b-radius-3 {
  border-radius: 3px;
}

.b-radius-right-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.b-radius-left-0 {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.b-radius-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.b-radius-bottom-0 {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.b-radius-0 {
  border-radius: 0 !important;
}

.b-right-none {
  border-right: none !important;
}

.b-left-none {
  border-left: none !important;
}

.b-top-none {
  border-top: none !important;
}

.b-bottom-none {
  border-bottom: none !important;
}

.v-a-m * {
  vertical-align: middle;
}

.v-a-t * {
  vertical-align: top;
}

.v-a-b * {
  vertical-align: baseline;
}

.b-normal {
  mix-blend-mode: normal;
}

.b-multiply {
  mix-blend-mode: multiply;
}

.b-screen {
  mix-blend-mode: screen;
}

.b-overlay {
  mix-blend-mode: overlay;
}

.b-darken {
  mix-blend-mode: darken;
}

.b-lighten {
  mix-blend-mode: lighten;
}

.b-color-dodge {
  mix-blend-mode: color-dodge;
}

.b-color-burn {
  mix-blend-mode: color-burn;
}

.b-difference {
  mix-blend-mode: difference;
}

.b-exclusion {
  mix-blend-mode: exclusion;
}

.b-hue {
  mix-blend-mode: hue;
}

.b-saturation {
  mix-blend-mode: saturation;
}

.b-color {
  mix-blend-mode: color;
}

.b-luminosity {
  mix-blend-mode: luminosity;
}

.o-0 {
  opacity: 0;
}

.o-25 {
  opacity: 0.25;
}

.o-50 {
  opacity: 0.5;
}

.o-75 {
  opacity: 0.75;
}

.o-hidden {
  overflow: hidden;
}

.o-visible {
  overflow: visible;
}

.o-auto {
  overflow: auto;
}

.o-x {
  overflow: hidden;
  overflow-x: auto;
}

.o-y {
  overflow: hidden;
  overflow-y: auto;
}

.disappear {
  position: fixed;
  width: 0;
  height: 0;
  display: block;
  left: 500%;
  top: -9999px;
}

.ani-fade {
  animation-name: ani-fade;
  animation-duration: 0.2s;
}

.no-scroll, .no-scroll-all, .no-scroll-all * {
  overflow: hidden !important;
}

.hide-scroll {
  scrollbar-width: none;
}

.hide-scroll::-webkit-scrollbar {
  display: none;
  width: 0 !important;
}

@keyframes ani-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ani-shake {
  animation-name: ani-shake;
  animation-duration: 0.3s;
}

@keyframes ani-shake {
  0% {
    transform: translateX(10px);
  }
  50% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0px);
  }
}
.ani-pop {
  animation-name: ani-pop;
  animation-duration: 0.2s;
}

@keyframes ani-pop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.capitalize {
  text-transform: capitalize;
}

.capitalize-first {
  text-transform: lowercase;
}

.capitalize-first::first-letter {
  text-transform: uppercase;
}

.lowercase {
  text-transform: lowercase;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.f-lighter {
  font-weight: lighter;
}

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

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

.f-bolder {
  font-weight: bolder;
}

.f-100 {
  font-weight: 100;
}

.f-200 {
  font-weight: 200;
}

.f-300 {
  font-weight: 300;
}

.f-400 {
  font-weight: 400;
}

.f-500 {
  font-weight: 500;
}

.f-600 {
  font-weight: 600;
}

.f-700 {
  font-weight: 700;
}

.f-800 {
  font-weight: 800;
}

.f-900 {
  font-weight: 900;
}

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

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

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

.t-justify {
  text-align: justify !important;
}

.f-9, .f-9:before {
  font-size: 9px;
}

.f-6, .f-6:before {
  font-size: 6px;
}

.f-8, .f-8:before {
  font-size: 8px;
}

.f-10, .f-10:before {
  font-size: 10px;
}

.f-12, .f-12:before {
  font-size: 12px;
}

.f-14, .f-14:before {
  font-size: 14px;
}

.f-16, .f-16:before {
  font-size: 16px;
}

.f-18, .f-18:before {
  font-size: 18px;
}

.f-20, .f-20:before {
  font-size: 20px;
}

.f-22, .f-22:before {
  font-size: 22px;
}

.f-24, .f-24:before {
  font-size: 24px;
}

.f-26, .f-26:before {
  font-size: 26px;
}

.f-28, .f-28:before {
  font-size: 28px;
}

.f-30, .f-30:before {
  font-size: 30px;
}

.f-32, .f-32:before {
  font-size: 32px;
}

.f-34, .f-34:before {
  font-size: 34px;
}

.f-36, .f-36:before {
  font-size: 36px;
}

.f-38, .f-38:before {
  font-size: 38px;
}

.f-40, .f-40:before {
  font-size: 40px;
}

.f-42, .f-42:before {
  font-size: 42px;
}

.f-44, .f-44:before {
  font-size: 44px;
}

.f-46, .f-46:before {
  font-size: 46px;
}

.f-48, .f-48:before {
  font-size: 48px;
}

.f-50, .f-50:before {
  font-size: 50px;
}

.f-52, .f-52:before {
  font-size: 52px;
}

.f-54, .f-54:before {
  font-size: 54px;
}

.f-56, .f-56:before {
  font-size: 56px;
}

.f-58, .f-58:before {
  font-size: 58px;
}

.f-60, .f-60:before {
  font-size: 60px;
}

.f-62, .f-62:before {
  font-size: 62px;
}

.f-64, .f-64:before {
  font-size: 64px;
}

.f-66, .f-66:before {
  font-size: 66px;
}

.f-68, .f-68:before {
  font-size: 68px;
}

.f-70, .f-70:before {
  font-size: 70px;
}

.f-72, .f-72:before {
  font-size: 72px;
}

.f-74, .f-74:before {
  font-size: 74px;
}

.f-76, .f-76:before {
  font-size: 76px;
}

.f-78, .f-78:before {
  font-size: 78px;
}

.f-80, .f-80:before {
  font-size: 80px;
}

.f-82, .f-82:before {
  font-size: 82px;
}

.f-84, .f-84:before {
  font-size: 84px;
}

.f-86, .f-86:before {
  font-size: 86px;
}

.f-88, .f-88:before {
  font-size: 88px;
}

.f-90, .f-90:before {
  font-size: 90px;
}

.f-92, .f-92:before {
  font-size: 92px;
}

.f-94, .f-94:before {
  font-size: 94px;
}

.f-96, .f-96:before {
  font-size: 96px;
}

.f-98, .f-98:before {
  font-size: 98px;
}

.f-100, .f-100:before {
  font-size: 100px;
}

.l-h-normal {
  line-height: normal;
}

.l-h-90 {
  line-height: 90%;
}

.l-h-100 {
  line-height: 100%;
}

.l-h-110 {
  line-height: 110%;
}

.l-h-120 {
  line-height: 120%;
}

.l-h-130 {
  line-height: 130%;
}

.l-h-140 {
  line-height: 140%;
}

.l-h-150 {
  line-height: 150%;
}

.l-h-160 {
  line-height: 160%;
}

.l-h-170 {
  line-height: 170%;
}

.l-h-180 {
  line-height: 180%;
}

.l-h-190 {
  line-height: 190%;
}

.l-h-200 {
  line-height: 200%;
}

.l-h-210 {
  line-height: 210%;
}

.l-h-220 {
  line-height: 220%;
}

.l-h-230 {
  line-height: 230%;
}

.l-h-240 {
  line-height: 240%;
}

.l-h-250 {
  line-height: 250%;
}

.l-h-260 {
  line-height: 260%;
}

.l-h-270 {
  line-height: 270%;
}

.l-h-280 {
  line-height: 280%;
}

.l-h-290 {
  line-height: 290%;
}

.l-h-300 {
  line-height: 300%;
}

.l-s-1 {
  letter-spacing: 1px;
}

.l-s-2 {
  letter-spacing: 2px;
}

.l-s-3 {
  letter-spacing: 3px;
}

.l-s-4 {
  letter-spacing: 4px;
}

.l-s-5 {
  letter-spacing: 5px;
}

.l-s-6 {
  letter-spacing: 6px;
}

.l-s-7 {
  letter-spacing: 7px;
}

.l-s-8 {
  letter-spacing: 8px;
}

.l-s-9 {
  letter-spacing: 9px;
}

.l-s-10 {
  letter-spacing: 10px;
}

.l-s-15 {
  letter-spacing: 15px;
}

.l-s-20 {
  letter-spacing: 20px;
}

.l-s-25 {
  letter-spacing: 25px;
}

.l-s-30 {
  letter-spacing: 30px;
}

.l-s-35 {
  letter-spacing: 35px;
}

.l-s-40 {
  letter-spacing: 40px;
}

.l-s-45 {
  letter-spacing: 45px;
}

.l-s-50 {
  letter-spacing: 50px;
}

.grid {
  display: grid !important;
}

.flex {
  display: flex !important;
  justify-content: space-around !important;
  flex-wrap: wrap !important;
}

.flex-inline {
  display: inline-flex !important;
  justify-content: space-around !important;
  flex-wrap: wrap !important;
}

.flex-1 {
  flex: 1 !important;
}

.flex-auto {
  flex: auto;
  width: auto !important;
}

.flex-cover {
  width: 100%;
  height: 100% !important;
}

.flex-100p {
  flex: auto;
  width: 100%;
}

.j-between {
  justify-content: space-between !important;
}

.j-around {
  justify-content: space-around !important;
}

.j-center {
  justify-content: center !important;
}

.j-start {
  justify-content: flex-start !important;
}

.j-end {
  justify-content: flex-end !important;
}

.a-start {
  align-items: flex-start !important;
}

.a-end {
  align-items: flex-end !important;
}

.a-center {
  align-items: center !important;
}

.a-baseline {
  align-items: baseline !important;
}

.a-stretch {
  align-items: stretch !important;
}

.s-start {
  align-self: start !important;
}

.s-center {
  align-self: center !important;
}

.s-end {
  align-self: end !important;
}

.s-stretch {
  align-self: stretch !important;
}

.d-row {
  flex-direction: row !important;
}

.d-row-reverse {
  flex-direction: row-reverse !important;
}

.d-column {
  flex-direction: column !important;
}

.d-column-reverse {
  flex-direction: column-reverse !important;
}

.a-content-start {
  align-content: flex-start !important;
}

.a-content-end {
  align-content: flex-end !important;
}

.a-content-center {
  align-content: center !important;
}

.a-content-space-between {
  align-content: space-between !important;
}

.a-content-space-around {
  align-content: space-around !important;
}

.a-content-stretch {
  align-content: stretch !important;
}

.order-1 {
  order: 1 !important;
}

.order-2 {
  order: 2 !important;
}

.order-3 {
  order: 3 !important;
}

.order-4 {
  order: 4 !important;
}

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

.w-auto {
  width: auto !important;
}

.h-auto {
  height: auto !important;
}

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

.s-00p {
  transform: scale(0);
}

.s-10p {
  transform: scale(0.1);
}

.s-20p {
  transform: scale(0.2);
}

.s-30p {
  transform: scale(0.3);
}

.s-40p {
  transform: scale(0.4);
}

.s-50p {
  transform: scale(0.5);
}

.s-60p {
  transform: scale(0.6);
}

.s-70p {
  transform: scale(0.7);
}

.s-80p {
  transform: scale(0.8);
}

.s-90p {
  transform: scale(0.9);
}

.s-100p {
  transform: scale(1);
}

.z-index-auto {
  z-index: auto !important;
}

.z-index-1- {
  z-index: -1 !important;
}

.z-index-1 {
  z-index: 1 !important;
}

.z-index-10 {
  z-index: 10 !important;
}

.z-index-9999 {
  z-index: 9999 !important;
}

.h-auto {
  height: auto;
}

.h-0 {
  height: 0;
}

.h-25vh {
  height: 25vh;
}

.h-50vh {
  height: 50vh;
}

.h-75vh {
  height: 75vh;
}

.h-80vh {
  height: 80vh;
}

.h-90vh {
  height: 90vh;
}

.h-95vh {
  height: 95vh;
}

.h-100vh {
  height: 100vh;
}

.min-h-100vh {
  min-height: 100vh;
}

.min-h-50 {
  min-height: 50px;
}

.min-h-100 {
  min-height: 100px;
}

.min-h-150 {
  min-height: 150px;
}

.min-h-200 {
  min-height: 200px;
}

.min-h-250 {
  min-height: 250px;
}

.min-h-300 {
  min-height: 300px;
}

.min-h-350 {
  min-height: 350px;
}

.min-h-400 {
  min-height: 400px;
}

.min-h-450 {
  min-height: 450px;
}

.min-h-500 {
  min-height: 500px;
}

.min-h-550 {
  min-height: 550px;
}

.min-h-600 {
  min-height: 600px;
}

/* others */
.transition {
  transition: 0.3s !important;
}

.transition-4ms {
  transition: 0.4s !important;
}

.transition-6ms {
  transition: 0.6s !important;
}

.transition-8ms {
  transition: 0.8s !important;
}

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

.perspective-2000, .perspective-2000 * {
  transform: perspective(2000px);
  transform-style: preserve-3d;
}

.perspective-1000, .perspective-1000 * {
  transform: perspective(1000px);
  transform-style: preserve-3d;
}

.perspective-500, .perspective-500 * {
  transform: perspective(500px);
  transform-style: preserve-3d;
}

.wrap {
  white-space: normal !important;
  flex-wrap: wrap !important;
}

.nowrap {
  white-space: nowrap !important;
  flex-wrap: nowrap !important;
}

.nowrap-all, .nowrap-all * {
  white-space: nowrap !important;
  flex-wrap: nowrap !important;
}

.pre-line {
  white-space: pre-line !important;
}

.table {
  position: relative;
  border: 0;
  margin: 0;
  padding: 0;
  border-collapse: collapse;
  width: 100%;
  display: table;
}

.td {
  position: relative;
  border: 0;
  padding: 0;
  border-collapse: collapse;
  display: table-cell;
  vertical-align: top;
  overflow: hidden;
}

label.error, .form-error-message {
  letter-spacing: 1px;
  pointer-events: none;
  position: absolute;
  display: inline-block;
  top: calc(100% - 2px);
  left: 10px;
  background: #ea973d;
  color: #FFF;
  padding: 7px 10px 5px !important;
  z-index: 1;
  border-radius: 3px;
  box-shadow: 0 2px 3px rgba(0, 0, 0, 0.1);
  font-size: 12px;
  white-space: nowrap;
}

label.error:before, .form-error-message:before {
  content: "";
  position: absolute;
  bottom: 100%;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #ea973d;
  left: 8px;
}

.input-error {
  background: #fff8f6;
}

.tooltip-message {
  pointer-events: none;
  position: absolute;
  display: block;
  background: #000;
  color: #FFF;
  padding: 5px 10px;
  z-index: 1;
  text-align: left;
  font-family: "Arial", sans-serif;
  font-weight: 500;
  line-height: 120%;
  border-radius: 3px;
  white-space: nowrap;
  font-size: 12px;
  overflow: hidden;
}

.blockade {
  position: fixed;
  border: none;
  background: rgba(0, 0, 0, 0.7);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: auto;
}

.blockade-transparent {
  position: fixed;
  border: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0) !important;
  top: 0;
  left: 0;
  float: left;
  z-index: 9999;
}

.e-linear {
  transition-timing-function: Cubic-bezier(0.25, 0.25, 0.75, 0.75) !important;
}

.e-default {
  transition-timing-function: Cubic-bezier(0.25, 0.1, 0.25, 1) !important;
}

.e-easeIn {
  transition-timing-function: Cubic-bezier(0.42, 0, 1, 1) !important;
}

.e-easeOut {
  transition-timing-function: Cubic-bezier(0, 0, 0.58, 1) !important;
}

.e-easeInOut {
  transition-timing-function: Cubic-bezier(0.42, 0, 0.58, 1) !important;
}

.e-cubicIn {
  transition-timing-function: Cubic-bezier(0.55, 0.055, 0.675, 0.19) !important;
}

.e-cubicOut {
  transition-timing-function: Cubic-bezier(0.215, 0.61, 0.355, 1) !important;
}

.e-cubicInOut {
  transition-timing-function: Cubic-bezier(0.645, 0.045, 0.355, 1) !important;
}

.e-expoIn {
  transition-timing-function: Cubic-bezier(0.95, 0.05, 0.795, 0.035) !important;
}

.e-expoOut {
  transition-timing-function: Cubic-bezier(0.19, 1, 0.22, 1) !important;
}

.e-expoInOut {
  transition-timing-function: Cubic-bezier(1, 0, 0, 1) !important;
}

.e-backIn {
  transition-timing-function: Cubic-bezier(0.6, -0.28, 0.735, 0.045) !important;
}

.e-backOut {
  transition-timing-function: Cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.e-backInOut {
  transition-timing-function: Cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
}

.e-sineIn {
  transition-timing-function: Cubic-bezier(0.47, 0, 0.745, 0.715) !important;
}

.e-sineOut {
  transition-timing-function: Cubic-bezier(0.39, 0.575, 0.565, 1) !important;
}

.e-sineInOut {
  transition-timing-function: Cubic-bezier(0.445, 0.05, 0.55, 0.95) !important;
}

.e-circIn {
  transition-timing-function: Cubic-bezier(0.6, 0.04, 0.98, 0.335) !important;
}

.e-circOut {
  transition-timing-function: Cubic-bezier(0.075, 0.82, 0.165, 1) !important;
}

.e-circInOut {
  transition-timing-function: Cubic-bezier(0.785, 0.135, 0.15, 0.86) !important;
}

.footer-fixed {
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  position: fixed;
}

.no-transition {
  transition: none !important;
}

.ui-tooltip {
  background: #000;
  border: 0 !important;
  box-shadow: none;
  border-radius: 3px;
  color: #FFF;
  font-size: 12px;
  padding: 5px 7px;
}

.ui-tooltip .ui-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000;
}

::placeholder {
  opacity: 0.7;
}

.inline-wrap, .ci-w {
  font-size: 0;
  letter-spacing: normal;
}

.inline-element, .ci {
  font-size: 14px;
  letter-spacing: 0.5px;
  display: inline-block;
  vertical-align: top;
}

.highlight {
  background: var(--color-highlight);
}

/* padding percentage */
.p-b-5p {
  padding-bottom: 5%;
}

.p-b-10p {
  padding-bottom: 10%;
}

.p-b-15p {
  padding-bottom: 15%;
}

.p-b-20p {
  padding-bottom: 20%;
}

.p-b-25p {
  padding-bottom: 25%;
}

.p-b-30p {
  padding-bottom: 30%;
}

.p-b-35p {
  padding-bottom: 35%;
}

.p-b-40p {
  padding-bottom: 40%;
}

.p-b-45p {
  padding-bottom: 45%;
}

.p-b-50p {
  padding-bottom: 50%;
}

.p-b-60p {
  padding-bottom: 60%;
}

.p-b-70p {
  padding-bottom: 70%;
}

.p-b-80p {
  padding-bottom: 80%;
}

.p-b-90p {
  padding-bottom: 90%;
}

.p-b-100p {
  padding-bottom: 100%;
}

.p-b-125p {
  padding-bottom: 125%;
}

.p-b-150p {
  padding-bottom: 150%;
}

.p-b-200p {
  padding-bottom: 200%;
}

/* margin / padding */
.m-0 {
  margin: 0 !important;
}

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

.m-l-0 {
  margin-left: 0px !important;
}

.m-r-0 {
  margin-right: 0px !important;
}

.m-t-0 {
  margin-top: 0px !important;
}

.m-b-0 {
  margin-bottom: 0px !important;
}

.m-x-0 {
  margin-left: 0px !important;
  margin-right: 0px !important;
}

.m-y-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.p-l-0 {
  padding-left: 0px !important;
}

.p-r-0 {
  padding-right: 0px !important;
}

.p-t-0 {
  padding-top: 0px !important;
}

.p-b-0 {
  padding-bottom: 0px !important;
}

.p-x-0 {
  padding-left: 0px !important;
  padding-right: 0px !important;
}

.p-y-0 {
  padding-top: 0px !important;
  padding-bottom: 0px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.m-l-5- {
  margin-left: -5px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.m-r-5- {
  margin-right: -5px !important;
}

.m-t-5 {
  margin-top: 5px !important;
}

.m-t-5- {
  margin-top: -5px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.m-b-5- {
  margin-bottom: -5px !important;
}

.m-x-5 {
  margin-left: 5px !important;
  margin-right: 5px !important;
}

.m-y-5 {
  margin-top: 5px !important;
  margin-bottom: 5px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.p-x-5 {
  padding-left: 5px !important;
  padding-right: 5px !important;
}

.p-y-5 {
  padding-top: 5px !important;
  padding-bottom: 5px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.m-l-10- {
  margin-left: -10px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.m-r-10- {
  margin-right: -10px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.m-t-10- {
  margin-top: -10px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.m-b-10- {
  margin-bottom: -10px !important;
}

.m-x-10 {
  margin-left: 10px !important;
  margin-right: 10px !important;
}

.m-y-10 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.p-x-10 {
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.p-y-10 {
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.m-l-15- {
  margin-left: -15px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.m-r-15- {
  margin-right: -15px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.m-t-15- {
  margin-top: -15px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.m-b-15- {
  margin-bottom: -15px !important;
}

.m-x-15 {
  margin-left: 15px !important;
  margin-right: 15px !important;
}

.m-y-15 {
  margin-top: 15px !important;
  margin-bottom: 15px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.p-x-15 {
  padding-left: 15px !important;
  padding-right: 15px !important;
}

.p-y-15 {
  padding-top: 15px !important;
  padding-bottom: 15px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.m-l-20- {
  margin-left: -20px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.m-r-20- {
  margin-right: -20px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.m-t-20- {
  margin-top: -20px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.m-b-20- {
  margin-bottom: -20px !important;
}

.m-x-20 {
  margin-left: 20px !important;
  margin-right: 20px !important;
}

.m-y-20 {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.p-x-20 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.p-y-20 {
  padding-top: 20px !important;
  padding-bottom: 20px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.m-l-30- {
  margin-left: -30px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.m-r-30- {
  margin-right: -30px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.m-t-30- {
  margin-top: -30px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.m-b-30- {
  margin-bottom: -30px !important;
}

.m-x-30 {
  margin-left: 30px !important;
  margin-right: 30px !important;
}

.m-y-30 {
  margin-top: 30px !important;
  margin-bottom: 30px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.p-x-30 {
  padding-left: 30px !important;
  padding-right: 30px !important;
}

.p-y-30 {
  padding-top: 30px !important;
  padding-bottom: 30px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.m-l-40- {
  margin-left: -40px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.m-r-40- {
  margin-right: -40px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.m-t-40- {
  margin-top: -40px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.m-b-40- {
  margin-bottom: -40px !important;
}

.m-x-40 {
  margin-left: 40px !important;
  margin-right: 40px !important;
}

.m-y-40 {
  margin-top: 40px !important;
  margin-bottom: 40px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.p-x-40 {
  padding-left: 40px !important;
  padding-right: 40px !important;
}

.p-y-40 {
  padding-top: 40px !important;
  padding-bottom: 40px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.m-l-50- {
  margin-left: -50px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.m-r-50- {
  margin-right: -50px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.m-t-50- {
  margin-top: -50px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.m-b-50- {
  margin-bottom: -50px !important;
}

.m-x-50 {
  margin-left: 50px !important;
  margin-right: 50px !important;
}

.m-y-50 {
  margin-top: 50px !important;
  margin-bottom: 50px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.p-x-50 {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.p-y-50 {
  padding-top: 50px !important;
  padding-bottom: 50px !important;
}

.m-l-60 {
  margin-left: 60px !important;
}

.m-l-60- {
  margin-left: -60px !important;
}

.m-r-60 {
  margin-right: 60px !important;
}

.m-r-60- {
  margin-right: -60px !important;
}

.m-t-60 {
  margin-top: 60px !important;
}

.m-t-60- {
  margin-top: -60px !important;
}

.m-b-60 {
  margin-bottom: 60px !important;
}

.m-b-60- {
  margin-bottom: -60px !important;
}

.m-x-60 {
  margin-left: 60px !important;
  margin-right: 60px !important;
}

.m-y-60 {
  margin-top: 60px !important;
  margin-bottom: 60px !important;
}

.p-l-60 {
  padding-left: 60px !important;
}

.p-r-60 {
  padding-right: 60px !important;
}

.p-t-60 {
  padding-top: 60px !important;
}

.p-b-60 {
  padding-bottom: 60px !important;
}

.p-x-60 {
  padding-left: 60px !important;
  padding-right: 60px !important;
}

.p-y-60 {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
}

.m-l-70 {
  margin-left: 70px !important;
}

.m-l-70- {
  margin-left: -70px !important;
}

.m-r-70 {
  margin-right: 70px !important;
}

.m-r-70- {
  margin-right: -70px !important;
}

.m-t-70 {
  margin-top: 70px !important;
}

.m-t-70- {
  margin-top: -70px !important;
}

.m-b-70 {
  margin-bottom: 70px !important;
}

.m-b-70- {
  margin-bottom: -70px !important;
}

.m-x-70 {
  margin-left: 70px !important;
  margin-right: 70px !important;
}

.m-y-70 {
  margin-top: 70px !important;
  margin-bottom: 70px !important;
}

.p-l-70 {
  padding-left: 70px !important;
}

.p-r-70 {
  padding-right: 70px !important;
}

.p-t-70 {
  padding-top: 70px !important;
}

.p-b-70 {
  padding-bottom: 70px !important;
}

.p-x-70 {
  padding-left: 70px !important;
  padding-right: 70px !important;
}

.p-y-70 {
  padding-top: 70px !important;
  padding-bottom: 70px !important;
}

.m-l-80 {
  margin-left: 80px !important;
}

.m-l-80- {
  margin-left: -80px !important;
}

.m-r-80 {
  margin-right: 80px !important;
}

.m-r-80- {
  margin-right: -80px !important;
}

.m-t-80 {
  margin-top: 80px !important;
}

.m-t-80- {
  margin-top: -80px !important;
}

.m-b-80 {
  margin-bottom: 80px !important;
}

.m-b-80- {
  margin-bottom: -80px !important;
}

.m-x-80 {
  margin-left: 80px !important;
  margin-right: 80px !important;
}

.m-y-80 {
  margin-top: 80px !important;
  margin-bottom: 80px !important;
}

.p-l-80 {
  padding-left: 80px !important;
}

.p-r-80 {
  padding-right: 80px !important;
}

.p-t-80 {
  padding-top: 80px !important;
}

.p-b-80 {
  padding-bottom: 80px !important;
}

.p-x-80 {
  padding-left: 80px !important;
  padding-right: 80px !important;
}

.p-y-80 {
  padding-top: 80px !important;
  padding-bottom: 80px !important;
}

.m-l-90 {
  margin-left: 90px !important;
}

.m-l-90- {
  margin-left: -90px !important;
}

.m-r-90 {
  margin-right: 90px !important;
}

.m-r-90- {
  margin-right: -90px !important;
}

.m-t-90 {
  margin-top: 90px !important;
}

.m-t-90- {
  margin-top: -90px !important;
}

.m-b-90 {
  margin-bottom: 90px !important;
}

.m-b-90- {
  margin-bottom: -90px !important;
}

.m-x-90 {
  margin-left: 90px !important;
  margin-right: 90px !important;
}

.m-y-90 {
  margin-top: 90px !important;
  margin-bottom: 90px !important;
}

.p-l-90 {
  padding-left: 90px !important;
}

.p-r-90 {
  padding-right: 90px !important;
}

.p-t-90 {
  padding-top: 90px !important;
}

.p-b-90 {
  padding-bottom: 90px !important;
}

.p-x-90 {
  padding-left: 90px !important;
  padding-right: 90px !important;
}

.p-y-90 {
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.m-l-100 {
  margin-left: 100px !important;
}

.m-l-100- {
  margin-left: -100px !important;
}

.m-r-100 {
  margin-right: 100px !important;
}

.m-r-100- {
  margin-right: -100px !important;
}

.m-t-100 {
  margin-top: 100px !important;
}

.m-t-100- {
  margin-top: -100px !important;
}

.m-b-100 {
  margin-bottom: 100px !important;
}

.m-b-100- {
  margin-bottom: -100px !important;
}

.m-x-100 {
  margin-left: 100px !important;
  margin-right: 100px !important;
}

.m-y-100 {
  margin-top: 100px !important;
  margin-bottom: 100px !important;
}

.p-l-100 {
  padding-left: 100px !important;
}

.p-r-100 {
  padding-right: 100px !important;
}

.p-t-100 {
  padding-top: 100px !important;
}

.p-b-100 {
  padding-bottom: 100px !important;
}

.p-x-100 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

.p-y-100 {
  padding-top: 100px !important;
  padding-bottom: 100px !important;
}

/* responsive */
@media (max-width: 1300px) {
  .d-block-s1300 {
    display: block !important;
  }
  .d-none-s1300 {
    display: none !important;
  }
  .d-inline-s1300 {
    display: inline-block !important;
  }
  .d-flex-s1300 {
    display: flex !important;
  }
  .relative-s1300 {
    position: relative !important;
  }
  .absolute-s1300 {
    position: absolute !important;
  }
  .fixed-s1300 {
    position: fixed !important;
  }
  /* order */
  .order-1-s1300 {
    order: 1 !important;
  }
  .order-2-s1300 {
    order: 2 !important;
  }
  .order-3-s1300 {
    order: 3 !important;
  }
  .order-4-s1300 {
    order: 4 !important;
  }
  .order-5-s1300 {
    order: 5 !important;
  }
  .order-6-s1300 {
    order: 6 !important;
  }
  /* font */
  .f-9-s1300, .f-9-s1300:before {
    font-size: 9px !important;
  }
  .f-6-s1300, .f-6-s1300:before {
    font-size: 6px !important;
  }
  .f-8-s1300, .f-8-s1300:before {
    font-size: 8px !important;
  }
  .f-10-s1300, .f-10-s1300:before {
    font-size: 10px !important;
  }
  .f-12-s1300, .f-12-s1300:before {
    font-size: 12px !important;
  }
  .f-14-s1300, .f-14-s1300:before {
    font-size: 14px !important;
  }
  .f-16-s1300, .f-16-s1300:before {
    font-size: 16px !important;
  }
  .f-18-s1300, .f-18-s1300:before {
    font-size: 18px !important;
  }
  .f-20-s1300, .f-20-s1300:before {
    font-size: 20px !important;
  }
  .f-22-s1300, .f-22-s1300:before {
    font-size: 22px !important;
  }
  .f-24-s1300, .f-24-s1300:before {
    font-size: 24px !important;
  }
  .f-26-s1300, .f-26-s1300:before {
    font-size: 26px !important;
  }
  .f-28-s1300, .f-28-s1300:before {
    font-size: 28px !important;
  }
  .f-30-s1300, .f-30-s1300:before {
    font-size: 30px !important;
  }
  .f-32-s1300, .f-32-s1300:before {
    font-size: 32px !important;
  }
  .f-34-s1300, .f-34-s1300:before {
    font-size: 34px !important;
  }
  .f-36-s1300, .f-36-s1300:before {
    font-size: 36px !important;
  }
  .f-38-s1300, .f-38-s1300:before {
    font-size: 38px !important;
  }
  .f-40-s1300, .f-40-s1300:before {
    font-size: 40px !important;
  }
  .f-42-s1300, .f-42-s1300:before {
    font-size: 42px !important;
  }
  .f-44-s1300, .f-44-s1300:before {
    font-size: 44px !important;
  }
  .f-46-s1300, .f-46-s1300:before {
    font-size: 46px !important;
  }
  .f-48-s1300, .f-48-s1300:before {
    font-size: 48px !important;
  }
  .f-50-s1300, .f-50-s1300:before {
    font-size: 50px !important;
  }
  .f-52-s1300, .f-52-s1300:before {
    font-size: 52px !important;
  }
  .f-54-s1300, .f-54-s1300:before {
    font-size: 54px !important;
  }
  .f-56-s1300, .f-56-s1300:before {
    font-size: 56px !important;
  }
  .f-58-s1300, .f-58-s1300:before {
    font-size: 58px !important;
  }
  .f-60-s1300, .f-60-s1300:before {
    font-size: 60px !important;
  }
  .f-62-s1300, .f-62-s1300:before {
    font-size: 62px !important;
  }
  .f-64-s1300, .f-64-s1300:before {
    font-size: 64px !important;
  }
  .f-66-s1300, .f-66-s1300:before {
    font-size: 66px !important;
  }
  .f-68-s1300, .f-68-s1300:before {
    font-size: 68px !important;
  }
  .f-70-s1300, .f-70-s1300:before {
    font-size: 70px !important;
  }
  .f-72-s1300, .f-72-s1300:before {
    font-size: 72px !important;
  }
  .f-74-s1300, .f-74-s1300:before {
    font-size: 74px !important;
  }
  .f-76-s1300, .f-76-s1300:before {
    font-size: 76px !important;
  }
  .f-78-s1300, .f-78-s1300:before {
    font-size: 78px !important;
  }
  .f-80-s1300, .f-80-s1300:before {
    font-size: 80px !important;
  }
  .f-82-s1300, .f-82-s1300:before {
    font-size: 82px !important;
  }
  .f-84-s1300, .f-84-s1300:before {
    font-size: 84px !important;
  }
  .f-86-s1300, .f-86-s1300:before {
    font-size: 86px !important;
  }
  .f-88-s1300, .f-88-s1300:before {
    font-size: 88px !important;
  }
  .f-90-s1300, .f-90-s1300:before {
    font-size: 90px !important;
  }
  .f-92-s1300, .f-92-s1300:before {
    font-size: 92px !important;
  }
  .f-94-s1300, .f-94-s1300:before {
    font-size: 94px !important;
  }
  .f-96-s1300, .f-96-s1300:before {
    font-size: 96px !important;
  }
  .f-98-s1300, .f-98-s1300:before {
    font-size: 98px !important;
  }
  .f-100-s1300, .f-100-s1300:before {
    font-size: 100px !important;
  }
  .t-left-s1300 {
    text-align: left !important;
  }
  .t-center-s1300 {
    text-align: center !important;
  }
  .t-right-s1300 {
    text-align: right !important;
  }
  .t-justify-s1300 {
    text-align: justify !important;
  }
  /* flex box */
  .flex-grow-s1300 {
    flex: 1 !important;
  }
  .flex-100p-s1300 {
    flex: auto !important;
    width: 100% !important;
  }
  .j-between-s1300 {
    justify-content: space-between !important;
  }
  .j-around-s1300 {
    justify-content: space-around !important;
  }
  .j-center-s1300 {
    justify-content: center !important;
  }
  .j-start-s1300 {
    justify-content: flex-start !important;
  }
  .j-end-s1300 {
    justify-content: flex-end !important;
  }
  .j-start-s1300 {
    align-items: flex-start !important;
  }
  .a-end-s1300 {
    align-items: flex-end !important;
  }
  .a-center-s1300 {
    align-items: center !important;
  }
  .a-baseline-s1300 {
    align-items: baseline !important;
  }
  .a-stretch-s1300 {
    align-items: stretch !important;
  }
  .f-box-auto-s1300 {
    flex: auto !important;
  }
  .f-box-100p-s1300 {
    width: 100% !important;
    flex: none !important;
  }
  .f-box-90p-s1300 {
    width: 90% !important;
    flex: none !important;
  }
  .f-box-80p-s1300 {
    width: 80% !important;
    flex: none !important;
  }
  .f-box-70p-s1300 {
    width: 70% !important;
    flex: none !important;
  }
  .f-box-60p-s1300 {
    width: 60% !important;
    flex: none !important;
  }
  .f-box-50p-s1300 {
    width: 50% !important;
    flex: none !important;
  }
  .d-row-s1300 {
    flex-direction: row !important;
  }
  .d-row-reverse-s1300 {
    flex-direction: row-reverse !important;
  }
  .d-column-s1300 {
    flex-direction: column !important;
  }
  .d-column-reverse-s1300 {
    flex-direction: column-reverse !important;
  }
  /* dimension */
  .w-auto-s1300 {
    width: auto !important;
  }
  .h-auto-s1300 {
    height: auto !important;
  }
  /* max-width */
  .m-0-auto-s1300 {
    margin: 0 auto !important;
  }
  .m-w-s1300 {
    position: relative !important;
    width: 100% !important;
    max-width: 1700px !important;
  }
  .m-w-9999-s1300 {
    position: relative !important;
    width: 100% !important;
    max-width: 9999px !important;
  }
  .m-w-100-s1300 {
    position: relative !important;
    width: 100% !important;
    max-width: 100px !important;
  }
  .m-w-200-s1300 {
    position: relative !important;
    width: 100% !important;
    max-width: 200px !important;
  }
  .m-w-300-s1300 {
    position: relative !important;
    width: 100% !important;
    max-width: 300px !important;
  }
  .m-w-400-s1300 {
    position: relative !important;
    width: 100% !important;
    max-width: 400px !important;
  }
  .m-w-500-s1300 {
    position: relative !important;
    width: 100% !important;
    max-width: 500px !important;
  }
  .m-w-600-s1300 {
    position: relative !important;
    width: 100% !important;
    max-width: 600px !important;
  }
  .m-w-700-s1300 {
    position: relative !important;
    width: 100% !important;
    max-width: 700px !important;
  }
  .m-w-800-s1300 {
    position: relative !important;
    width: 100% !important;
    max-width: 800px !important;
  }
  .m-w-900-s1300 {
    position: relative !important;
    width: 100% !important;
    max-width: 900px !important;
  }
  .m-w-1000-s1300 {
    position: relative !important;
    width: 100% !important;
    max-width: 1000px !important;
  }
  .m-w-1100-s1300 {
    position: relative !important;
    width: 100% !important;
    max-width: 1100px !important;
  }
  .m-w-1200-s1300 {
    position: relative !important;
    width: 100% !important;
    max-width: 1200px !important;
  }
  .l-s-1-s1300 {
    letter-spacing: 1px !important;
  }
  .l-s-2-s1300 {
    letter-spacing: 2px !important;
  }
  .l-s-3-s1300 {
    letter-spacing: 3px !important;
  }
  .l-s-4-s1300 {
    letter-spacing: 4px !important;
  }
  .l-s-5-s1300 {
    letter-spacing: 5px !important;
  }
  .l-s-6-s1300 {
    letter-spacing: 6px !important;
  }
  .l-s-7-s1300 {
    letter-spacing: 7px !important;
  }
  .l-s-8-s1300 {
    letter-spacing: 8px !important;
  }
  .l-s-9-s1300 {
    letter-spacing: 9px !important;
  }
  .l-s-10-s1300 {
    letter-spacing: 10px !important;
  }
  .l-s-15-s1300 {
    letter-spacing: 15px !important;
  }
  .l-s-20-s1300 {
    letter-spacing: 20px !important;
  }
  .l-s-25-s1300 {
    letter-spacing: 25px !important;
  }
  .l-s-30-s1300 {
    letter-spacing: 30px !important;
  }
  .l-s-35-s1300 {
    letter-spacing: 35px !important;
  }
  .l-s-40-s1300 {
    letter-spacing: 40px !important;
  }
  .l-s-45-s1300 {
    letter-spacing: 45px !important;
  }
  .l-s-50-s1300 {
    letter-spacing: 50px !important;
  }
  /* margin / padding */
  .m-0-s1300 {
    margin: 0 !important;
  }
  .p-0-s1300 {
    padding: 0 !important;
  }
  .m-l-0-s1300 {
    margin-left: 0px !important;
  }
  .m-r-0-s1300 {
    margin-right: 0px !important;
  }
  .m-t-0-s1300 {
    margin-top: 0px !important;
  }
  .m-b-0-s1300 {
    margin-bottom: 0px !important;
  }
  .m-x-0-s1300 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .m-y-0-s1300 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .p-l-0-s1300 {
    padding-left: 0px !important;
  }
  .p-r-0-s1300 {
    padding-right: 0px !important;
  }
  .p-t-0-s1300 {
    padding-top: 0px !important;
  }
  .p-b-0-s1300 {
    padding-bottom: 0px !important;
  }
  .p-x-0-s1300 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .p-y-0-s1300 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-l-5-s1300 {
    margin-left: 5px !important;
  }
  .m-l-5--s1300 {
    margin-left: -5px !important;
  }
  .m-r-5-s1300 {
    margin-right: 5px !important;
  }
  .m-r-5--s1300 {
    margin-right: -5px !important;
  }
  .m-t-5-s1300 {
    margin-top: 5px !important;
  }
  .m-t-5--s1300 {
    margin-top: -5px !important;
  }
  .m-b-5-s1300 {
    margin-bottom: 5px !important;
  }
  .m-b-5--s1300 {
    margin-bottom: -5px !important;
  }
  .m-x-5-s1300 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .m-y-5-s1300 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .p-l-5-s1300 {
    padding-left: 5px !important;
  }
  .p-r-5-s1300 {
    padding-right: 5px !important;
  }
  .p-t-5-s1300 {
    padding-top: 5px !important;
  }
  .p-b-5-s1300 {
    padding-bottom: 5px !important;
  }
  .p-x-5-s1300 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .p-y-5-s1300 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .m-l-10-s1300 {
    margin-left: 10px !important;
  }
  .m-l-10--s1300 {
    margin-left: -10px !important;
  }
  .m-r-10-s1300 {
    margin-right: 10px !important;
  }
  .m-r-10--s1300 {
    margin-right: -10px !important;
  }
  .m-t-10-s1300 {
    margin-top: 10px !important;
  }
  .m-t-10--s1300 {
    margin-top: -10px !important;
  }
  .m-b-10-s1300 {
    margin-bottom: 10px !important;
  }
  .m-b-10--s1300 {
    margin-bottom: -10px !important;
  }
  .m-x-10-s1300 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .m-y-10-s1300 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .p-l-10-s1300 {
    padding-left: 10px !important;
  }
  .p-r-10-s1300 {
    padding-right: 10px !important;
  }
  .p-t-10-s1300 {
    padding-top: 10px !important;
  }
  .p-b-10-s1300 {
    padding-bottom: 10px !important;
  }
  .p-x-10-s1300 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .p-y-10-s1300 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .m-l-15-s1300 {
    margin-left: 15px !important;
  }
  .m-l-15--s1300 {
    margin-left: -15px !important;
  }
  .m-r-15-s1300 {
    margin-right: 15px !important;
  }
  .m-r-15--s1300 {
    margin-right: -15px !important;
  }
  .m-t-15-s1300 {
    margin-top: 15px !important;
  }
  .m-t-15--s1300 {
    margin-top: -15px !important;
  }
  .m-b-15-s1300 {
    margin-bottom: 15px !important;
  }
  .m-b-15--s1300 {
    margin-bottom: -15px !important;
  }
  .m-x-15-s1300 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .m-y-15-s1300 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .p-l-15-s1300 {
    padding-left: 15px !important;
  }
  .p-r-15-s1300 {
    padding-right: 15px !important;
  }
  .p-t-15-s1300 {
    padding-top: 15px !important;
  }
  .p-b-15-s1300 {
    padding-bottom: 15px !important;
  }
  .p-x-15-s1300 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .p-y-15-s1300 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .m-l-20-s1300 {
    margin-left: 20px !important;
  }
  .m-l-20--s1300 {
    margin-left: -20px !important;
  }
  .m-r-20-s1300 {
    margin-right: 20px !important;
  }
  .m-r-20--s1300 {
    margin-right: -20px !important;
  }
  .m-t-20-s1300 {
    margin-top: 20px !important;
  }
  .m-t-20--s1300 {
    margin-top: -20px !important;
  }
  .m-b-20-s1300 {
    margin-bottom: 20px !important;
  }
  .m-b-20--s1300 {
    margin-bottom: -20px !important;
  }
  .m-x-20-s1300 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .m-y-20-s1300 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .p-l-20-s1300 {
    padding-left: 20px !important;
  }
  .p-r-20-s1300 {
    padding-right: 20px !important;
  }
  .p-t-20-s1300 {
    padding-top: 20px !important;
  }
  .p-b-20-s1300 {
    padding-bottom: 20px !important;
  }
  .p-x-20-s1300 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .p-y-20-s1300 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-l-30-s1300 {
    margin-left: 30px !important;
  }
  .m-l-30--s1300 {
    margin-left: -30px !important;
  }
  .m-r-30-s1300 {
    margin-right: 30px !important;
  }
  .m-r-30--s1300 {
    margin-right: -30px !important;
  }
  .m-t-30-s1300 {
    margin-top: 30px !important;
  }
  .m-t-30--s1300 {
    margin-top: -30px !important;
  }
  .m-b-30-s1300 {
    margin-bottom: 30px !important;
  }
  .m-b-30--s1300 {
    margin-bottom: -30px !important;
  }
  .m-x-30-s1300 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .m-y-30-s1300 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .p-l-30-s1300 {
    padding-left: 30px !important;
  }
  .p-r-30-s1300 {
    padding-right: 30px !important;
  }
  .p-t-30-s1300 {
    padding-top: 30px !important;
  }
  .p-b-30-s1300 {
    padding-bottom: 30px !important;
  }
  .p-x-30-s1300 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .p-y-30-s1300 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .m-l-40-s1300 {
    margin-left: 40px !important;
  }
  .m-l-40--s1300 {
    margin-left: -40px !important;
  }
  .m-r-40-s1300 {
    margin-right: 40px !important;
  }
  .m-r-40--s1300 {
    margin-right: -40px !important;
  }
  .m-t-40-s1300 {
    margin-top: 40px !important;
  }
  .m-t-40--s1300 {
    margin-top: -40px !important;
  }
  .m-b-40-s1300 {
    margin-bottom: 40px !important;
  }
  .m-b-40--s1300 {
    margin-bottom: -40px !important;
  }
  .m-x-40-s1300 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .m-y-40-s1300 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .p-l-40-s1300 {
    padding-left: 40px !important;
  }
  .p-r-40-s1300 {
    padding-right: 40px !important;
  }
  .p-t-40-s1300 {
    padding-top: 40px !important;
  }
  .p-b-40-s1300 {
    padding-bottom: 40px !important;
  }
  .p-x-40-s1300 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .p-y-40-s1300 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-l-50-s1300 {
    margin-left: 50px !important;
  }
  .m-l-50--s1300 {
    margin-left: -50px !important;
  }
  .m-r-50-s1300 {
    margin-right: 50px !important;
  }
  .m-r-50--s1300 {
    margin-right: -50px !important;
  }
  .m-t-50-s1300 {
    margin-top: 50px !important;
  }
  .m-t-50--s1300 {
    margin-top: -50px !important;
  }
  .m-b-50-s1300 {
    margin-bottom: 50px !important;
  }
  .m-b-50--s1300 {
    margin-bottom: -50px !important;
  }
  .m-x-50-s1300 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .m-y-50-s1300 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .p-l-50-s1300 {
    padding-left: 50px !important;
  }
  .p-r-50-s1300 {
    padding-right: 50px !important;
  }
  .p-t-50-s1300 {
    padding-top: 50px !important;
  }
  .p-b-50-s1300 {
    padding-bottom: 50px !important;
  }
  .p-x-50-s1300 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .p-y-50-s1300 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .m-l-60-s1300 {
    margin-left: 60px !important;
  }
  .m-l-60--s1300 {
    margin-left: -60px !important;
  }
  .m-r-60-s1300 {
    margin-right: 60px !important;
  }
  .m-r-60--s1300 {
    margin-right: -60px !important;
  }
  .m-t-60-s1300 {
    margin-top: 60px !important;
  }
  .m-t-60--s1300 {
    margin-top: -60px !important;
  }
  .m-b-60-s1300 {
    margin-bottom: 60px !important;
  }
  .m-b-60--s1300 {
    margin-bottom: -60px !important;
  }
  .m-x-60-s1300 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .m-y-60-s1300 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .p-l-60-s1300 {
    padding-left: 60px !important;
  }
  .p-r-60-s1300 {
    padding-right: 60px !important;
  }
  .p-t-60-s1300 {
    padding-top: 60px !important;
  }
  .p-b-60-s1300 {
    padding-bottom: 60px !important;
  }
  .p-x-60-s1300 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .p-y-60-s1300 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-l-70-s1300 {
    margin-left: 70px !important;
  }
  .m-l-70--s1300 {
    margin-left: -70px !important;
  }
  .m-r-70-s1300 {
    margin-right: 70px !important;
  }
  .m-r-70--s1300 {
    margin-right: -70px !important;
  }
  .m-t-70-s1300 {
    margin-top: 70px !important;
  }
  .m-t-70--s1300 {
    margin-top: -70px !important;
  }
  .m-b-70-s1300 {
    margin-bottom: 70px !important;
  }
  .m-b-70--s1300 {
    margin-bottom: -70px !important;
  }
  .m-x-70-s1300 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .m-y-70-s1300 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .p-l-70-s1300 {
    padding-left: 70px !important;
  }
  .p-r-70-s1300 {
    padding-right: 70px !important;
  }
  .p-t-70-s1300 {
    padding-top: 70px !important;
  }
  .p-b-70-s1300 {
    padding-bottom: 70px !important;
  }
  .p-x-70-s1300 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .p-y-70-s1300 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .m-l-80-s1300 {
    margin-left: 80px !important;
  }
  .m-l-80--s1300 {
    margin-left: -80px !important;
  }
  .m-r-80-s1300 {
    margin-right: 80px !important;
  }
  .m-r-80--s1300 {
    margin-right: -80px !important;
  }
  .m-t-80-s1300 {
    margin-top: 80px !important;
  }
  .m-t-80--s1300 {
    margin-top: -80px !important;
  }
  .m-b-80-s1300 {
    margin-bottom: 80px !important;
  }
  .m-b-80--s1300 {
    margin-bottom: -80px !important;
  }
  .m-x-80-s1300 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .m-y-80-s1300 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-l-80-s1300 {
    padding-left: 80px !important;
  }
  .p-r-80-s1300 {
    padding-right: 80px !important;
  }
  .p-t-80-s1300 {
    padding-top: 80px !important;
  }
  .p-b-80-s1300 {
    padding-bottom: 80px !important;
  }
  .p-x-80-s1300 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .p-y-80-s1300 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-l-90-s1300 {
    margin-left: 90px !important;
  }
  .m-l-90--s1300 {
    margin-left: -90px !important;
  }
  .m-r-90-s1300 {
    margin-right: 90px !important;
  }
  .m-r-90--s1300 {
    margin-right: -90px !important;
  }
  .m-t-90-s1300 {
    margin-top: 90px !important;
  }
  .m-t-90--s1300 {
    margin-top: -90px !important;
  }
  .m-b-90-s1300 {
    margin-bottom: 90px !important;
  }
  .m-b-90--s1300 {
    margin-bottom: -90px !important;
  }
  .m-x-90-s1300 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .m-y-90-s1300 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .p-l-90-s1300 {
    padding-left: 90px !important;
  }
  .p-r-90-s1300 {
    padding-right: 90px !important;
  }
  .p-t-90-s1300 {
    padding-top: 90px !important;
  }
  .p-b-90-s1300 {
    padding-bottom: 90px !important;
  }
  .p-x-90-s1300 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .p-y-90-s1300 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .m-l-100-s1300 {
    margin-left: 100px !important;
  }
  .m-l-100--s1300 {
    margin-left: -100px !important;
  }
  .m-r-100-s1300 {
    margin-right: 100px !important;
  }
  .m-r-100--s1300 {
    margin-right: -100px !important;
  }
  .m-t-100-s1300 {
    margin-top: 100px !important;
  }
  .m-t-100--s1300 {
    margin-top: -100px !important;
  }
  .m-b-100-s1300 {
    margin-bottom: 100px !important;
  }
  .m-b-100--s1300 {
    margin-bottom: -100px !important;
  }
  .m-x-100-s1300 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .m-y-100-s1300 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .p-l-100-s1300 {
    padding-left: 100px !important;
  }
  .p-r-100-s1300 {
    padding-right: 100px !important;
  }
  .p-t-100-s1300 {
    padding-top: 100px !important;
  }
  .p-b-100-s1300 {
    padding-bottom: 100px !important;
  }
  .p-x-100-s1300 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
  .p-y-100-s1300 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .m-l-125-s1300 {
    margin-left: 125px !important;
  }
  .m-l-125--s1300 {
    margin-left: -125px !important;
  }
  .m-r-125-s1300 {
    margin-right: 125px !important;
  }
  .m-r-125--s1300 {
    margin-right: -125px !important;
  }
  .m-t-125-s1300 {
    margin-top: 125px !important;
  }
  .m-t-125--s1300 {
    margin-top: -125px !important;
  }
  .m-b-125-s1300 {
    margin-bottom: 125px !important;
  }
  .m-b-125--s1300 {
    margin-bottom: -125px !important;
  }
  .p-l-125-s1300 {
    padding-left: 125px !important;
  }
  .p-r-125-s1300 {
    padding-right: 125px !important;
  }
  .p-t-125-s1300 {
    padding-top: 125px !important;
  }
  .p-b-125-s1300 {
    padding-bottom: 125px !important;
  }
  .m-l-150-s1300 {
    margin-left: 150px !important;
  }
  .m-l-150--s1300 {
    margin-left: -150px !important;
  }
  .m-r-150-s1300 {
    margin-right: 150px !important;
  }
  .m-r-150--s1300 {
    margin-right: -150px !important;
  }
  .m-t-150-s1300 {
    margin-top: 150px !important;
  }
  .m-t-150--s1300 {
    margin-top: -150px !important;
  }
  .m-b-150-s1300 {
    margin-bottom: 150px !important;
  }
  .m-b-150--s1300 {
    margin-bottom: -150px !important;
  }
  .p-l-150-s1300 {
    padding-left: 150px !important;
  }
  .p-r-150-s1300 {
    padding-right: 150px !important;
  }
  .p-t-150-s1300 {
    padding-top: 150px !important;
  }
  .p-b-150-s1300 {
    padding-bottom: 150px !important;
  }
  .m-l-175-s1300 {
    margin-left: 175px !important;
  }
  .m-l-175--s1300 {
    margin-left: -175px !important;
  }
  .m-r-175-s1300 {
    margin-right: 175px !important;
  }
  .m-r-175--s1300 {
    margin-right: -175px !important;
  }
  .m-t-175-s1300 {
    margin-top: 175px !important;
  }
  .m-t-175--s1300 {
    margin-top: -175px !important;
  }
  .m-b-175-s1300 {
    margin-bottom: 175px !important;
  }
  .m-b-175--s1300 {
    margin-bottom: -175px !important;
  }
  .p-l-175-s1300 {
    padding-left: 175px !important;
  }
  .p-r-175-s1300 {
    padding-right: 175px !important;
  }
  .p-t-175-s1300 {
    padding-top: 175px !important;
  }
  .p-b-175-s1300 {
    padding-bottom: 175px !important;
  }
  .m-l-200-s1300 {
    margin-left: 200px !important;
  }
  .m-l-200--s1300 {
    margin-left: -200px !important;
  }
  .m-r-200-s1300 {
    margin-right: 200px !important;
  }
  .m-r-200--s1300 {
    margin-right: -200px !important;
  }
  .m-t-200-s1300 {
    margin-top: 200px !important;
  }
  .m-t-200--s1300 {
    margin-top: -200px !important;
  }
  .m-b-200-s1300 {
    margin-bottom: 200px !important;
  }
  .m-b-200--s1300 {
    margin-bottom: -200px !important;
  }
  .p-l-200-s1300 {
    padding-left: 200px !important;
  }
  .p-r-200-s1300 {
    padding-right: 200px !important;
  }
  .p-t-200-s1300 {
    padding-top: 200px !important;
  }
  .p-b-200-s1300 {
    padding-bottom: 200px !important;
  }
  .m-l-250-s1300 {
    margin-left: 250px !important;
  }
  .m-l-250--s1300 {
    margin-left: -250px !important;
  }
  .m-r-250-s1300 {
    margin-right: 250px !important;
  }
  .m-r-250--s1300 {
    margin-right: -250px !important;
  }
  .m-t-250-s1300 {
    margin-top: 250px !important;
  }
  .m-t-250--s1300 {
    margin-top: -250px !important;
  }
  .m-b-250-s1300 {
    margin-bottom: 250px !important;
  }
  .m-b-250--s1300 {
    margin-bottom: -250px !important;
  }
  .p-l-250-s1300 {
    padding-left: 250px !important;
  }
  .p-r-250-s1300 {
    padding-right: 250px !important;
  }
  .p-t-250-s1300 {
    padding-top: 250px !important;
  }
  .p-b-250-s1300 {
    padding-bottom: 250px !important;
  }
  .m-l-300-s1300 {
    margin-left: 300px !important;
  }
  .m-l-300--s1300 {
    margin-left: -300px !important;
  }
  .m-r-300-s1300 {
    margin-right: 300px !important;
  }
  .m-r-300--s1300 {
    margin-right: -300px !important;
  }
  .m-t-300-s1300 {
    margin-top: 300px !important;
  }
  .m-t-300--s1300 {
    margin-top: -300px !important;
  }
  .m-b-300-s1300 {
    margin-bottom: 300px !important;
  }
  .m-b-300--s1300 {
    margin-bottom: -300px !important;
  }
  .p-l-300-s1300 {
    padding-left: 300px !important;
  }
  .p-r-300-s1300 {
    padding-right: 300px !important;
  }
  .p-t-300-s1300 {
    padding-top: 300px !important;
  }
  .p-b-300-s1300 {
    padding-bottom: 300px !important;
  }
  .m-l-350-s1300 {
    margin-left: 350px !important;
  }
  .m-l-350--s1300 {
    margin-left: -350px !important;
  }
  .m-r-350-s1300 {
    margin-right: 350px !important;
  }
  .m-r-350--s1300 {
    margin-right: -350px !important;
  }
  .m-t-350-s1300 {
    margin-top: 350px !important;
  }
  .m-t-350--s1300 {
    margin-top: -350px !important;
  }
  .m-b-350-s1300 {
    margin-bottom: 350px !important;
  }
  .m-b-350--s1300 {
    margin-bottom: -350px !important;
  }
  .p-l-350-s1300 {
    padding-left: 350px !important;
  }
  .p-r-350-s1300 {
    padding-right: 350px !important;
  }
  .p-t-350-s1300 {
    padding-top: 350px !important;
  }
  .p-b-350-s1300 {
    padding-bottom: 350px !important;
  }
  .m-l-400-s1300 {
    margin-left: 400px !important;
  }
  .m-l-400--s1300 {
    margin-left: -400px !important;
  }
  .m-r-400-s1300 {
    margin-right: 400px !important;
  }
  .m-r-400--s1300 {
    margin-right: -400px !important;
  }
  .m-t-400-s1300 {
    margin-top: 400px !important;
  }
  .m-t-400--s1300 {
    margin-top: -400px !important;
  }
  .m-b-400-s1300 {
    margin-bottom: 400px !important;
  }
  .m-b-400--s1300 {
    margin-bottom: -400px !important;
  }
  .p-l-400-s1300 {
    padding-left: 400px !important;
  }
  .p-r-400-s1300 {
    padding-right: 400px !important;
  }
  .p-t-400-s1300 {
    padding-top: 400px !important;
  }
  .p-b-400-s1300 {
    padding-bottom: 400px !important;
  }
  .h-auto-s1300 {
    height: auto !important;
  }
  .h-0-s1300 {
    height: 0 !important;
  }
  .h-25vh-s1300 {
    height: 25vh !important;
  }
  .h-50vh-s1300 {
    height: 50vh !important;
  }
  .h-75vh-s1300 {
    height: 75vh !important;
  }
  .h-80vh-s1300 {
    height: 80vh !important;
  }
  .h-90vh-s1300 {
    height: 90vh !important;
  }
  .h-95vh-s1300 {
    height: 95vh !important;
  }
  .h-100vh-s1300 {
    height: 100vh !important;
  }
  .min-w-0-s1300 {
    min-width: auto !important;
  }
  .min-h-50-s1300 {
    min-height: 50px !important;
  }
  .min-h-100-s1300 {
    min-height: 100px !important;
  }
  .min-h-150-s1300 {
    min-height: 150px !important;
  }
  .min-h-200-s1300 {
    min-height: 200px !important;
  }
  .min-h-250-s1300 {
    min-height: 250px !important;
  }
  .min-h-300-s1300 {
    min-height: 300px !important;
  }
  .min-h-350-s1300 {
    min-height: 350px !important;
  }
  .min-h-400-s1300 {
    min-height: 400px !important;
  }
  .min-h-450-s1300 {
    min-height: 450px !important;
  }
  .min-h-500-s1300 {
    min-height: 500px !important;
  }
  .min-h-550-s1300 {
    min-height: 550px !important;
  }
  .min-h-600-s1300 {
    min-height: 600px !important;
  }
  /* resets */
  .t-none--s1300 {
    transform: none !important;
  }
  .l-0-s1300 {
    left: 0 !important;
  }
  .r-0-s1300 {
    right: 0 !important;
  }
  .t-0-s1300 {
    top: 0 !important;
  }
  .b-0-s1300 {
    bottom: 0 !important;
  }
  .s-00p-s1300 {
    transform: scale(0) !important;
  }
  .s-10p-s1300 {
    transform: scale(0.1) !important;
  }
  .s-20p-s1300 {
    transform: scale(0.2) !important;
  }
  .s-30p-s1300 {
    transform: scale(0.3) !important;
  }
  .s-40p-s1300 {
    transform: scale(0.4) !important;
  }
  .s-50p-s1300 {
    transform: scale(0.5) !important;
  }
  .s-60p-s1300 {
    transform: scale(0.6) !important;
  }
  .s-70p-s1300 {
    transform: scale(0.7) !important;
  }
  .s-80p-s1300 {
    transform: scale(0.8) !important;
  }
  .s-90p-s1300 {
    transform: scale(0.9) !important;
  }
  .s-100p-s1300 {
    transform: scale(1) !important;
  }
}
@media (max-width: 1100px) {
  .d-block-s1100 {
    display: block !important;
  }
  .d-none-s1100 {
    display: none !important;
  }
  .d-inline-s1100 {
    display: inline-block !important;
  }
  .d-flex-s1100 {
    display: flex !important;
  }
  .relative-s1100 {
    position: relative !important;
  }
  .absolute-s1100 {
    position: absolute !important;
  }
  .fixed-s1100 {
    position: fixed !important;
  }
  /* order */
  .order-1-s1100 {
    order: 1 !important;
  }
  .order-2-s1100 {
    order: 2 !important;
  }
  .order-3-s1100 {
    order: 3 !important;
  }
  .order-4-s1100 {
    order: 4 !important;
  }
  .order-5-s1100 {
    order: 5 !important;
  }
  .order-6-s1100 {
    order: 6 !important;
  }
  /* font */
  .f-9-s1100, .f-9-s1100:before {
    font-size: 9px !important;
  }
  .f-6-s1100, .f-6-s1100:before {
    font-size: 6px !important;
  }
  .f-8-s1100, .f-8-s1100:before {
    font-size: 8px !important;
  }
  .f-10-s1100, .f-10-s1100:before {
    font-size: 10px !important;
  }
  .f-12-s1100, .f-12-s1100:before {
    font-size: 12px !important;
  }
  .f-14-s1100, .f-14-s1100:before {
    font-size: 14px !important;
  }
  .f-16-s1100, .f-16-s1100:before {
    font-size: 16px !important;
  }
  .f-18-s1100, .f-18-s1100:before {
    font-size: 18px !important;
  }
  .f-20-s1100, .f-20-s1100:before {
    font-size: 20px !important;
  }
  .f-22-s1100, .f-22-s1100:before {
    font-size: 22px !important;
  }
  .f-24-s1100, .f-24-s1100:before {
    font-size: 24px !important;
  }
  .f-26-s1100, .f-26-s1100:before {
    font-size: 26px !important;
  }
  .f-28-s1100, .f-28-s1100:before {
    font-size: 28px !important;
  }
  .f-30-s1100, .f-30-s1100:before {
    font-size: 30px !important;
  }
  .f-32-s1100, .f-32-s1100:before {
    font-size: 32px !important;
  }
  .f-34-s1100, .f-34-s1100:before {
    font-size: 34px !important;
  }
  .f-36-s1100, .f-36-s1100:before {
    font-size: 36px !important;
  }
  .f-38-s1100, .f-38-s1100:before {
    font-size: 38px !important;
  }
  .f-40-s1100, .f-40-s1100:before {
    font-size: 40px !important;
  }
  .f-42-s1100, .f-42-s1100:before {
    font-size: 42px !important;
  }
  .f-44-s1100, .f-44-s1100:before {
    font-size: 44px !important;
  }
  .f-46-s1100, .f-46-s1100:before {
    font-size: 46px !important;
  }
  .f-48-s1100, .f-48-s1100:before {
    font-size: 48px !important;
  }
  .f-50-s1100, .f-50-s1100:before {
    font-size: 50px !important;
  }
  .f-52-s1100, .f-52-s1100:before {
    font-size: 52px !important;
  }
  .f-54-s1100, .f-54-s1100:before {
    font-size: 54px !important;
  }
  .f-56-s1100, .f-56-s1100:before {
    font-size: 56px !important;
  }
  .f-58-s1100, .f-58-s1100:before {
    font-size: 58px !important;
  }
  .f-60-s1100, .f-60-s1100:before {
    font-size: 60px !important;
  }
  .f-62-s1100, .f-62-s1100:before {
    font-size: 62px !important;
  }
  .f-64-s1100, .f-64-s1100:before {
    font-size: 64px !important;
  }
  .f-66-s1100, .f-66-s1100:before {
    font-size: 66px !important;
  }
  .f-68-s1100, .f-68-s1100:before {
    font-size: 68px !important;
  }
  .f-70-s1100, .f-70-s1100:before {
    font-size: 70px !important;
  }
  .f-72-s1100, .f-72-s1100:before {
    font-size: 72px !important;
  }
  .f-74-s1100, .f-74-s1100:before {
    font-size: 74px !important;
  }
  .f-76-s1100, .f-76-s1100:before {
    font-size: 76px !important;
  }
  .f-78-s1100, .f-78-s1100:before {
    font-size: 78px !important;
  }
  .f-80-s1100, .f-80-s1100:before {
    font-size: 80px !important;
  }
  .f-82-s1100, .f-82-s1100:before {
    font-size: 82px !important;
  }
  .f-84-s1100, .f-84-s1100:before {
    font-size: 84px !important;
  }
  .f-86-s1100, .f-86-s1100:before {
    font-size: 86px !important;
  }
  .f-88-s1100, .f-88-s1100:before {
    font-size: 88px !important;
  }
  .f-90-s1100, .f-90-s1100:before {
    font-size: 90px !important;
  }
  .f-92-s1100, .f-92-s1100:before {
    font-size: 92px !important;
  }
  .f-94-s1100, .f-94-s1100:before {
    font-size: 94px !important;
  }
  .f-96-s1100, .f-96-s1100:before {
    font-size: 96px !important;
  }
  .f-98-s1100, .f-98-s1100:before {
    font-size: 98px !important;
  }
  .f-100-s1100, .f-100-s1100:before {
    font-size: 100px !important;
  }
  .t-left-s1100 {
    text-align: left !important;
  }
  .t-center-s1100 {
    text-align: center !important;
  }
  .t-right-s1100 {
    text-align: right !important;
  }
  .t-justify-s1100 {
    text-align: justify !important;
  }
  /* flex box */
  .flex-grow-s1100 {
    flex: 1 !important;
  }
  .flex-100p-s1100 {
    flex: auto !important;
    width: 100% !important;
  }
  .j-between-s1100 {
    justify-content: space-between !important;
  }
  .j-around-s1100 {
    justify-content: space-around !important;
  }
  .j-center-s1100 {
    justify-content: center !important;
  }
  .j-start-s1100 {
    justify-content: flex-start !important;
  }
  .j-end-s1100 {
    justify-content: flex-end !important;
  }
  .j-start-s1100 {
    align-items: flex-start !important;
  }
  .a-end-s1100 {
    align-items: flex-end !important;
  }
  .a-center-s1100 {
    align-items: center !important;
  }
  .a-baseline-s1100 {
    align-items: baseline !important;
  }
  .a-stretch-s1100 {
    align-items: stretch !important;
  }
  .f-box-auto-s1100 {
    flex: auto !important;
  }
  .f-box-100p-s1100 {
    width: 100% !important;
    flex: none !important;
  }
  .f-box-90p-s1100 {
    width: 90% !important;
    flex: none !important;
  }
  .f-box-80p-s1100 {
    width: 80% !important;
    flex: none !important;
  }
  .f-box-70p-s1100 {
    width: 70% !important;
    flex: none !important;
  }
  .f-box-60p-s1100 {
    width: 60% !important;
    flex: none !important;
  }
  .f-box-50p-s1100 {
    width: 50% !important;
    flex: none !important;
  }
  .d-row-s1100 {
    flex-direction: row !important;
  }
  .d-row-reverse-s1100 {
    flex-direction: row-reverse !important;
  }
  .d-column-s1100 {
    flex-direction: column !important;
  }
  .d-column-reverse-s1100 {
    flex-direction: column-reverse !important;
  }
  /* dimension */
  .w-auto-s1100 {
    width: auto !important;
  }
  .h-auto-s1100 {
    height: auto !important;
  }
  /* max-width */
  .m-0-auto-s1100 {
    margin: 0 auto !important;
  }
  .m-w-s1100 {
    position: relative !important;
    width: 100% !important;
    max-width: 1700px !important;
  }
  .m-w-9999-s1100 {
    position: relative !important;
    width: 100% !important;
    max-width: 9999px !important;
  }
  .m-w-100-s1100 {
    position: relative !important;
    width: 100% !important;
    max-width: 100px !important;
  }
  .m-w-200-s1100 {
    position: relative !important;
    width: 100% !important;
    max-width: 200px !important;
  }
  .m-w-300-s1100 {
    position: relative !important;
    width: 100% !important;
    max-width: 300px !important;
  }
  .m-w-400-s1100 {
    position: relative !important;
    width: 100% !important;
    max-width: 400px !important;
  }
  .m-w-500-s1100 {
    position: relative !important;
    width: 100% !important;
    max-width: 500px !important;
  }
  .m-w-600-s1100 {
    position: relative !important;
    width: 100% !important;
    max-width: 600px !important;
  }
  .m-w-700-s1100 {
    position: relative !important;
    width: 100% !important;
    max-width: 700px !important;
  }
  .m-w-800-s1100 {
    position: relative !important;
    width: 100% !important;
    max-width: 800px !important;
  }
  .l-s-1-s1100 {
    letter-spacing: 1px !important;
  }
  .l-s-2-s1100 {
    letter-spacing: 2px !important;
  }
  .l-s-3-s1100 {
    letter-spacing: 3px !important;
  }
  .l-s-4-s1100 {
    letter-spacing: 4px !important;
  }
  .l-s-5-s1100 {
    letter-spacing: 5px !important;
  }
  .l-s-6-s1100 {
    letter-spacing: 6px !important;
  }
  .l-s-7-s1100 {
    letter-spacing: 7px !important;
  }
  .l-s-8-s1100 {
    letter-spacing: 8px !important;
  }
  .l-s-9-s1100 {
    letter-spacing: 9px !important;
  }
  .l-s-10-s1100 {
    letter-spacing: 10px !important;
  }
  .l-s-15-s1100 {
    letter-spacing: 15px !important;
  }
  .l-s-20-s1100 {
    letter-spacing: 20px !important;
  }
  .l-s-25-s1100 {
    letter-spacing: 25px !important;
  }
  .l-s-30-s1100 {
    letter-spacing: 30px !important;
  }
  .l-s-35-s1100 {
    letter-spacing: 35px !important;
  }
  .l-s-40-s1100 {
    letter-spacing: 40px !important;
  }
  .l-s-45-s1100 {
    letter-spacing: 45px !important;
  }
  .l-s-50-s1100 {
    letter-spacing: 50px !important;
  }
  /* margin / padding */
  .m-0-s1100 {
    margin: 0 !important;
  }
  .p-0-s1100 {
    padding: 0 !important;
  }
  .m-l-0-s1100 {
    margin-left: 0px !important;
  }
  .m-r-0-s1100 {
    margin-right: 0px !important;
  }
  .m-t-0-s1100 {
    margin-top: 0px !important;
  }
  .m-b-0-s1100 {
    margin-bottom: 0px !important;
  }
  .m-x-0-s1100 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .m-y-0-s1100 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .p-l-0-s1100 {
    padding-left: 0px !important;
  }
  .p-r-0-s1100 {
    padding-right: 0px !important;
  }
  .p-t-0-s1100 {
    padding-top: 0px !important;
  }
  .p-b-0-s1100 {
    padding-bottom: 0px !important;
  }
  .p-x-0-s1100 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .p-y-0-s1100 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-l-5-s1100 {
    margin-left: 5px !important;
  }
  .m-l-5--s1100 {
    margin-left: -5px !important;
  }
  .m-r-5-s1100 {
    margin-right: 5px !important;
  }
  .m-r-5--s1100 {
    margin-right: -5px !important;
  }
  .m-t-5-s1100 {
    margin-top: 5px !important;
  }
  .m-t-5--s1100 {
    margin-top: -5px !important;
  }
  .m-b-5-s1100 {
    margin-bottom: 5px !important;
  }
  .m-b-5--s1100 {
    margin-bottom: -5px !important;
  }
  .m-x-5-s1100 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .m-y-5-s1100 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .p-l-5-s1100 {
    padding-left: 5px !important;
  }
  .p-r-5-s1100 {
    padding-right: 5px !important;
  }
  .p-t-5-s1100 {
    padding-top: 5px !important;
  }
  .p-b-5-s1100 {
    padding-bottom: 5px !important;
  }
  .p-x-5-s1100 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .p-y-5-s1100 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .m-l-10-s1100 {
    margin-left: 10px !important;
  }
  .m-l-10--s1100 {
    margin-left: -10px !important;
  }
  .m-r-10-s1100 {
    margin-right: 10px !important;
  }
  .m-r-10--s1100 {
    margin-right: -10px !important;
  }
  .m-t-10-s1100 {
    margin-top: 10px !important;
  }
  .m-t-10--s1100 {
    margin-top: -10px !important;
  }
  .m-b-10-s1100 {
    margin-bottom: 10px !important;
  }
  .m-b-10--s1100 {
    margin-bottom: -10px !important;
  }
  .m-x-10-s1100 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .m-y-10-s1100 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .p-l-10-s1100 {
    padding-left: 10px !important;
  }
  .p-r-10-s1100 {
    padding-right: 10px !important;
  }
  .p-t-10-s1100 {
    padding-top: 10px !important;
  }
  .p-b-10-s1100 {
    padding-bottom: 10px !important;
  }
  .p-x-10-s1100 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .p-y-10-s1100 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .m-l-15-s1100 {
    margin-left: 15px !important;
  }
  .m-l-15--s1100 {
    margin-left: -15px !important;
  }
  .m-r-15-s1100 {
    margin-right: 15px !important;
  }
  .m-r-15--s1100 {
    margin-right: -15px !important;
  }
  .m-t-15-s1100 {
    margin-top: 15px !important;
  }
  .m-t-15--s1100 {
    margin-top: -15px !important;
  }
  .m-b-15-s1100 {
    margin-bottom: 15px !important;
  }
  .m-b-15--s1100 {
    margin-bottom: -15px !important;
  }
  .m-x-15-s1100 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .m-y-15-s1100 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .p-l-15-s1100 {
    padding-left: 15px !important;
  }
  .p-r-15-s1100 {
    padding-right: 15px !important;
  }
  .p-t-15-s1100 {
    padding-top: 15px !important;
  }
  .p-b-15-s1100 {
    padding-bottom: 15px !important;
  }
  .p-x-15-s1100 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .p-y-15-s1100 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .m-l-20-s1100 {
    margin-left: 20px !important;
  }
  .m-l-20--s1100 {
    margin-left: -20px !important;
  }
  .m-r-20-s1100 {
    margin-right: 20px !important;
  }
  .m-r-20--s1100 {
    margin-right: -20px !important;
  }
  .m-t-20-s1100 {
    margin-top: 20px !important;
  }
  .m-t-20--s1100 {
    margin-top: -20px !important;
  }
  .m-b-20-s1100 {
    margin-bottom: 20px !important;
  }
  .m-b-20--s1100 {
    margin-bottom: -20px !important;
  }
  .m-x-20-s1100 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .m-y-20-s1100 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .p-l-20-s1100 {
    padding-left: 20px !important;
  }
  .p-r-20-s1100 {
    padding-right: 20px !important;
  }
  .p-t-20-s1100 {
    padding-top: 20px !important;
  }
  .p-b-20-s1100 {
    padding-bottom: 20px !important;
  }
  .p-x-20-s1100 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .p-y-20-s1100 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-l-30-s1100 {
    margin-left: 30px !important;
  }
  .m-l-30--s1100 {
    margin-left: -30px !important;
  }
  .m-r-30-s1100 {
    margin-right: 30px !important;
  }
  .m-r-30--s1100 {
    margin-right: -30px !important;
  }
  .m-t-30-s1100 {
    margin-top: 30px !important;
  }
  .m-t-30--s1100 {
    margin-top: -30px !important;
  }
  .m-b-30-s1100 {
    margin-bottom: 30px !important;
  }
  .m-b-30--s1100 {
    margin-bottom: -30px !important;
  }
  .m-x-30-s1100 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .m-y-30-s1100 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .p-l-30-s1100 {
    padding-left: 30px !important;
  }
  .p-r-30-s1100 {
    padding-right: 30px !important;
  }
  .p-t-30-s1100 {
    padding-top: 30px !important;
  }
  .p-b-30-s1100 {
    padding-bottom: 30px !important;
  }
  .p-x-30-s1100 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .p-y-30-s1100 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .m-l-40-s1100 {
    margin-left: 40px !important;
  }
  .m-l-40--s1100 {
    margin-left: -40px !important;
  }
  .m-r-40-s1100 {
    margin-right: 40px !important;
  }
  .m-r-40--s1100 {
    margin-right: -40px !important;
  }
  .m-t-40-s1100 {
    margin-top: 40px !important;
  }
  .m-t-40--s1100 {
    margin-top: -40px !important;
  }
  .m-b-40-s1100 {
    margin-bottom: 40px !important;
  }
  .m-b-40--s1100 {
    margin-bottom: -40px !important;
  }
  .m-x-40-s1100 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .m-y-40-s1100 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .p-l-40-s1100 {
    padding-left: 40px !important;
  }
  .p-r-40-s1100 {
    padding-right: 40px !important;
  }
  .p-t-40-s1100 {
    padding-top: 40px !important;
  }
  .p-b-40-s1100 {
    padding-bottom: 40px !important;
  }
  .p-x-40-s1100 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .p-y-40-s1100 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-l-50-s1100 {
    margin-left: 50px !important;
  }
  .m-l-50--s1100 {
    margin-left: -50px !important;
  }
  .m-r-50-s1100 {
    margin-right: 50px !important;
  }
  .m-r-50--s1100 {
    margin-right: -50px !important;
  }
  .m-t-50-s1100 {
    margin-top: 50px !important;
  }
  .m-t-50--s1100 {
    margin-top: -50px !important;
  }
  .m-b-50-s1100 {
    margin-bottom: 50px !important;
  }
  .m-b-50--s1100 {
    margin-bottom: -50px !important;
  }
  .m-x-50-s1100 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .m-y-50-s1100 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .p-l-50-s1100 {
    padding-left: 50px !important;
  }
  .p-r-50-s1100 {
    padding-right: 50px !important;
  }
  .p-t-50-s1100 {
    padding-top: 50px !important;
  }
  .p-b-50-s1100 {
    padding-bottom: 50px !important;
  }
  .p-x-50-s1100 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .p-y-50-s1100 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .m-l-60-s1100 {
    margin-left: 60px !important;
  }
  .m-l-60--s1100 {
    margin-left: -60px !important;
  }
  .m-r-60-s1100 {
    margin-right: 60px !important;
  }
  .m-r-60--s1100 {
    margin-right: -60px !important;
  }
  .m-t-60-s1100 {
    margin-top: 60px !important;
  }
  .m-t-60--s1100 {
    margin-top: -60px !important;
  }
  .m-b-60-s1100 {
    margin-bottom: 60px !important;
  }
  .m-b-60--s1100 {
    margin-bottom: -60px !important;
  }
  .m-x-60-s1100 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .m-y-60-s1100 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .p-l-60-s1100 {
    padding-left: 60px !important;
  }
  .p-r-60-s1100 {
    padding-right: 60px !important;
  }
  .p-t-60-s1100 {
    padding-top: 60px !important;
  }
  .p-b-60-s1100 {
    padding-bottom: 60px !important;
  }
  .p-x-60-s1100 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .p-y-60-s1100 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-l-70-s1100 {
    margin-left: 70px !important;
  }
  .m-l-70--s1100 {
    margin-left: -70px !important;
  }
  .m-r-70-s1100 {
    margin-right: 70px !important;
  }
  .m-r-70--s1100 {
    margin-right: -70px !important;
  }
  .m-t-70-s1100 {
    margin-top: 70px !important;
  }
  .m-t-70--s1100 {
    margin-top: -70px !important;
  }
  .m-b-70-s1100 {
    margin-bottom: 70px !important;
  }
  .m-b-70--s1100 {
    margin-bottom: -70px !important;
  }
  .m-x-70-s1100 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .m-y-70-s1100 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .p-l-70-s1100 {
    padding-left: 70px !important;
  }
  .p-r-70-s1100 {
    padding-right: 70px !important;
  }
  .p-t-70-s1100 {
    padding-top: 70px !important;
  }
  .p-b-70-s1100 {
    padding-bottom: 70px !important;
  }
  .p-x-70-s1100 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .p-y-70-s1100 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .m-l-80-s1100 {
    margin-left: 80px !important;
  }
  .m-l-80--s1100 {
    margin-left: -80px !important;
  }
  .m-r-80-s1100 {
    margin-right: 80px !important;
  }
  .m-r-80--s1100 {
    margin-right: -80px !important;
  }
  .m-t-80-s1100 {
    margin-top: 80px !important;
  }
  .m-t-80--s1100 {
    margin-top: -80px !important;
  }
  .m-b-80-s1100 {
    margin-bottom: 80px !important;
  }
  .m-b-80--s1100 {
    margin-bottom: -80px !important;
  }
  .m-x-80-s1100 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .m-y-80-s1100 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-l-80-s1100 {
    padding-left: 80px !important;
  }
  .p-r-80-s1100 {
    padding-right: 80px !important;
  }
  .p-t-80-s1100 {
    padding-top: 80px !important;
  }
  .p-b-80-s1100 {
    padding-bottom: 80px !important;
  }
  .p-x-80-s1100 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .p-y-80-s1100 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-l-90-s1100 {
    margin-left: 90px !important;
  }
  .m-l-90--s1100 {
    margin-left: -90px !important;
  }
  .m-r-90-s1100 {
    margin-right: 90px !important;
  }
  .m-r-90--s1100 {
    margin-right: -90px !important;
  }
  .m-t-90-s1100 {
    margin-top: 90px !important;
  }
  .m-t-90--s1100 {
    margin-top: -90px !important;
  }
  .m-b-90-s1100 {
    margin-bottom: 90px !important;
  }
  .m-b-90--s1100 {
    margin-bottom: -90px !important;
  }
  .m-x-90-s1100 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .m-y-90-s1100 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .p-l-90-s1100 {
    padding-left: 90px !important;
  }
  .p-r-90-s1100 {
    padding-right: 90px !important;
  }
  .p-t-90-s1100 {
    padding-top: 90px !important;
  }
  .p-b-90-s1100 {
    padding-bottom: 90px !important;
  }
  .p-x-90-s1100 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .p-y-90-s1100 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .m-l-100-s1100 {
    margin-left: 100px !important;
  }
  .m-l-100--s1100 {
    margin-left: -100px !important;
  }
  .m-r-100-s1100 {
    margin-right: 100px !important;
  }
  .m-r-100--s1100 {
    margin-right: -100px !important;
  }
  .m-t-100-s1100 {
    margin-top: 100px !important;
  }
  .m-t-100--s1100 {
    margin-top: -100px !important;
  }
  .m-b-100-s1100 {
    margin-bottom: 100px !important;
  }
  .m-b-100--s1100 {
    margin-bottom: -100px !important;
  }
  .m-x-100-s1100 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .m-y-100-s1100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .p-l-100-s1100 {
    padding-left: 100px !important;
  }
  .p-r-100-s1100 {
    padding-right: 100px !important;
  }
  .p-t-100-s1100 {
    padding-top: 100px !important;
  }
  .p-b-100-s1100 {
    padding-bottom: 100px !important;
  }
  .p-x-100-s1100 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
  .p-y-100-s1100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .m-l-125-s1100 {
    margin-left: 125px !important;
  }
  .m-l-125--s1100 {
    margin-left: -125px !important;
  }
  .m-r-125-s1100 {
    margin-right: 125px !important;
  }
  .m-r-125--s1100 {
    margin-right: -125px !important;
  }
  .m-t-125-s1100 {
    margin-top: 125px !important;
  }
  .m-t-125--s1100 {
    margin-top: -125px !important;
  }
  .m-b-125-s1100 {
    margin-bottom: 125px !important;
  }
  .m-b-125--s1100 {
    margin-bottom: -125px !important;
  }
  .p-l-125-s1100 {
    padding-left: 125px !important;
  }
  .p-r-125-s1100 {
    padding-right: 125px !important;
  }
  .p-t-125-s1100 {
    padding-top: 125px !important;
  }
  .p-b-125-s1100 {
    padding-bottom: 125px !important;
  }
  .m-l-150-s1100 {
    margin-left: 150px !important;
  }
  .m-l-150--s1100 {
    margin-left: -150px !important;
  }
  .m-r-150-s1100 {
    margin-right: 150px !important;
  }
  .m-r-150--s1100 {
    margin-right: -150px !important;
  }
  .m-t-150-s1100 {
    margin-top: 150px !important;
  }
  .m-t-150--s1100 {
    margin-top: -150px !important;
  }
  .m-b-150-s1100 {
    margin-bottom: 150px !important;
  }
  .m-b-150--s1100 {
    margin-bottom: -150px !important;
  }
  .p-l-150-s1100 {
    padding-left: 150px !important;
  }
  .p-r-150-s1100 {
    padding-right: 150px !important;
  }
  .p-t-150-s1100 {
    padding-top: 150px !important;
  }
  .p-b-150-s1100 {
    padding-bottom: 150px !important;
  }
  .m-l-175-s1100 {
    margin-left: 175px !important;
  }
  .m-l-175--s1100 {
    margin-left: -175px !important;
  }
  .m-r-175-s1100 {
    margin-right: 175px !important;
  }
  .m-r-175--s1100 {
    margin-right: -175px !important;
  }
  .m-t-175-s1100 {
    margin-top: 175px !important;
  }
  .m-t-175--s1100 {
    margin-top: -175px !important;
  }
  .m-b-175-s1100 {
    margin-bottom: 175px !important;
  }
  .m-b-175--s1100 {
    margin-bottom: -175px !important;
  }
  .p-l-175-s1100 {
    padding-left: 175px !important;
  }
  .p-r-175-s1100 {
    padding-right: 175px !important;
  }
  .p-t-175-s1100 {
    padding-top: 175px !important;
  }
  .p-b-175-s1100 {
    padding-bottom: 175px !important;
  }
  .m-l-200-s1100 {
    margin-left: 200px !important;
  }
  .m-l-200--s1100 {
    margin-left: -200px !important;
  }
  .m-r-200-s1100 {
    margin-right: 200px !important;
  }
  .m-r-200--s1100 {
    margin-right: -200px !important;
  }
  .m-t-200-s1100 {
    margin-top: 200px !important;
  }
  .m-t-200--s1100 {
    margin-top: -200px !important;
  }
  .m-b-200-s1100 {
    margin-bottom: 200px !important;
  }
  .m-b-200--s1100 {
    margin-bottom: -200px !important;
  }
  .p-l-200-s1100 {
    padding-left: 200px !important;
  }
  .p-r-200-s1100 {
    padding-right: 200px !important;
  }
  .p-t-200-s1100 {
    padding-top: 200px !important;
  }
  .p-b-200-s1100 {
    padding-bottom: 200px !important;
  }
  .m-l-250-s1100 {
    margin-left: 250px !important;
  }
  .m-l-250--s1100 {
    margin-left: -250px !important;
  }
  .m-r-250-s1100 {
    margin-right: 250px !important;
  }
  .m-r-250--s1100 {
    margin-right: -250px !important;
  }
  .m-t-250-s1100 {
    margin-top: 250px !important;
  }
  .m-t-250--s1100 {
    margin-top: -250px !important;
  }
  .m-b-250-s1100 {
    margin-bottom: 250px !important;
  }
  .m-b-250--s1100 {
    margin-bottom: -250px !important;
  }
  .p-l-250-s1100 {
    padding-left: 250px !important;
  }
  .p-r-250-s1100 {
    padding-right: 250px !important;
  }
  .p-t-250-s1100 {
    padding-top: 250px !important;
  }
  .p-b-250-s1100 {
    padding-bottom: 250px !important;
  }
  .m-l-300-s1100 {
    margin-left: 300px !important;
  }
  .m-l-300--s1100 {
    margin-left: -300px !important;
  }
  .m-r-300-s1100 {
    margin-right: 300px !important;
  }
  .m-r-300--s1100 {
    margin-right: -300px !important;
  }
  .m-t-300-s1100 {
    margin-top: 300px !important;
  }
  .m-t-300--s1100 {
    margin-top: -300px !important;
  }
  .m-b-300-s1100 {
    margin-bottom: 300px !important;
  }
  .m-b-300--s1100 {
    margin-bottom: -300px !important;
  }
  .p-l-300-s1100 {
    padding-left: 300px !important;
  }
  .p-r-300-s1100 {
    padding-right: 300px !important;
  }
  .p-t-300-s1100 {
    padding-top: 300px !important;
  }
  .p-b-300-s1100 {
    padding-bottom: 300px !important;
  }
  .m-l-350-s1100 {
    margin-left: 350px !important;
  }
  .m-l-350--s1100 {
    margin-left: -350px !important;
  }
  .m-r-350-s1100 {
    margin-right: 350px !important;
  }
  .m-r-350--s1100 {
    margin-right: -350px !important;
  }
  .m-t-350-s1100 {
    margin-top: 350px !important;
  }
  .m-t-350--s1100 {
    margin-top: -350px !important;
  }
  .m-b-350-s1100 {
    margin-bottom: 350px !important;
  }
  .m-b-350--s1100 {
    margin-bottom: -350px !important;
  }
  .p-l-350-s1100 {
    padding-left: 350px !important;
  }
  .p-r-350-s1100 {
    padding-right: 350px !important;
  }
  .p-t-350-s1100 {
    padding-top: 350px !important;
  }
  .p-b-350-s1100 {
    padding-bottom: 350px !important;
  }
  .m-l-400-s1100 {
    margin-left: 400px !important;
  }
  .m-l-400--s1100 {
    margin-left: -400px !important;
  }
  .m-r-400-s1100 {
    margin-right: 400px !important;
  }
  .m-r-400--s1100 {
    margin-right: -400px !important;
  }
  .m-t-400-s1100 {
    margin-top: 400px !important;
  }
  .m-t-400--s1100 {
    margin-top: -400px !important;
  }
  .m-b-400-s1100 {
    margin-bottom: 400px !important;
  }
  .m-b-400--s1100 {
    margin-bottom: -400px !important;
  }
  .p-l-400-s1100 {
    padding-left: 400px !important;
  }
  .p-r-400-s1100 {
    padding-right: 400px !important;
  }
  .p-t-400-s1100 {
    padding-top: 400px !important;
  }
  .p-b-400-s1100 {
    padding-bottom: 400px !important;
  }
  .h-auto-s1100 {
    height: auto !important;
  }
  .h-0-s1100 {
    height: 0 !important;
  }
  .h-25vh-s1100 {
    height: 25vh !important;
  }
  .h-50vh-s1100 {
    height: 50vh !important;
  }
  .h-75vh-s1100 {
    height: 75vh !important;
  }
  .h-80vh-s1100 {
    height: 80vh !important;
  }
  .h-90vh-s1100 {
    height: 90vh !important;
  }
  .h-95vh-s1100 {
    height: 95vh !important;
  }
  .h-100vh-s1100 {
    height: 100vh !important;
  }
  .min-w-0-s1100 {
    min-width: auto !important;
  }
  .min-h-50-s1100 {
    min-height: 50px !important;
  }
  .min-h-100-s1100 {
    min-height: 100px !important;
  }
  .min-h-150-s1100 {
    min-height: 150px !important;
  }
  .min-h-200-s1100 {
    min-height: 200px !important;
  }
  .min-h-250-s1100 {
    min-height: 250px !important;
  }
  .min-h-300-s1100 {
    min-height: 300px !important;
  }
  .min-h-350-s1100 {
    min-height: 350px !important;
  }
  .min-h-400-s1100 {
    min-height: 400px !important;
  }
  .min-h-450-s1100 {
    min-height: 450px !important;
  }
  .min-h-500-s1100 {
    min-height: 500px !important;
  }
  .min-h-550-s1100 {
    min-height: 550px !important;
  }
  .min-h-600-s1100 {
    min-height: 600px !important;
  }
  /* resets */
  .t-none--s1100 {
    transform: none !important;
  }
  .l-0-s1100 {
    left: 0 !important;
  }
  .r-0-s1100 {
    right: 0 !important;
  }
  .t-0-s1100 {
    top: 0 !important;
  }
  .b-0-s1100 {
    bottom: 0 !important;
  }
  .s-00p-s1100 {
    transform: scale(0) !important;
  }
  .s-10p-s1100 {
    transform: scale(0.1) !important;
  }
  .s-20p-s1100 {
    transform: scale(0.2) !important;
  }
  .s-30p-s1100 {
    transform: scale(0.3) !important;
  }
  .s-40p-s1100 {
    transform: scale(0.4) !important;
  }
  .s-50p-s1100 {
    transform: scale(0.5) !important;
  }
  .s-60p-s1100 {
    transform: scale(0.6) !important;
  }
  .s-70p-s1100 {
    transform: scale(0.7) !important;
  }
  .s-80p-s1100 {
    transform: scale(0.8) !important;
  }
  .s-90p-s1100 {
    transform: scale(0.9) !important;
  }
  .s-100p-s1100 {
    transform: scale(1) !important;
  }
}
@media (max-width: 750px) {
  .d-block-s750 {
    display: block !important;
  }
  .d-none-s750 {
    display: none !important;
  }
  .d-inline-s750 {
    display: inline-block !important;
  }
  .d-flex-s750 {
    display: flex !important;
  }
  .relative-s750 {
    position: relative !important;
  }
  .absolute-s750 {
    position: absolute !important;
  }
  .fixed-s750 {
    position: fixed !important;
  }
  /* order */
  .order-1-s750 {
    order: 1 !important;
  }
  .order-2-s750 {
    order: 2 !important;
  }
  .order-3-s750 {
    order: 3 !important;
  }
  .order-4-s750 {
    order: 4 !important;
  }
  .order-5-s750 {
    order: 5 !important;
  }
  .order-6-s750 {
    order: 6 !important;
  }
  /* font */
  .f-9-s750, .f-9-s750:before {
    font-size: 9px !important;
  }
  .f-6-s750, .f-6-s750:before {
    font-size: 6px !important;
  }
  .f-8-s750, .f-8-s750:before {
    font-size: 8px !important;
  }
  .f-10-s750, .f-10-s750:before {
    font-size: 10px !important;
  }
  .f-12-s750, .f-12-s750:before {
    font-size: 12px !important;
  }
  .f-14-s750, .f-14-s750:before {
    font-size: 14px !important;
  }
  .f-16-s750, .f-16-s750:before {
    font-size: 16px !important;
  }
  .f-18-s750, .f-18-s750:before {
    font-size: 18px !important;
  }
  .f-20-s750, .f-20-s750:before {
    font-size: 20px !important;
  }
  .f-22-s750, .f-22-s750:before {
    font-size: 22px !important;
  }
  .f-24-s750, .f-24-s750:before {
    font-size: 24px !important;
  }
  .f-26-s750, .f-26-s750:before {
    font-size: 26px !important;
  }
  .f-28-s750, .f-28-s750:before {
    font-size: 28px !important;
  }
  .f-30-s750, .f-30-s750:before {
    font-size: 30px !important;
  }
  .f-32-s750, .f-32-s750:before {
    font-size: 32px !important;
  }
  .f-34-s750, .f-34-s750:before {
    font-size: 34px !important;
  }
  .f-36-s750, .f-36-s750:before {
    font-size: 36px !important;
  }
  .f-38-s750, .f-38-s750:before {
    font-size: 38px !important;
  }
  .f-40-s750, .f-40-s750:before {
    font-size: 40px !important;
  }
  .f-42-s750, .f-42-s750:before {
    font-size: 42px !important;
  }
  .f-44-s750, .f-44-s750:before {
    font-size: 44px !important;
  }
  .f-46-s750, .f-46-s750:before {
    font-size: 46px !important;
  }
  .f-48-s750, .f-48-s750:before {
    font-size: 48px !important;
  }
  .f-50-s750, .f-50-s750:before {
    font-size: 50px !important;
  }
  .f-52-s750, .f-52-s750:before {
    font-size: 52px !important;
  }
  .f-54-s750, .f-54-s750:before {
    font-size: 54px !important;
  }
  .f-56-s750, .f-56-s750:before {
    font-size: 56px !important;
  }
  .f-58-s750, .f-58-s750:before {
    font-size: 58px !important;
  }
  .f-60-s750, .f-60-s750:before {
    font-size: 60px !important;
  }
  .f-62-s750, .f-62-s750:before {
    font-size: 62px !important;
  }
  .f-64-s750, .f-64-s750:before {
    font-size: 64px !important;
  }
  .f-66-s750, .f-66-s750:before {
    font-size: 66px !important;
  }
  .f-68-s750, .f-68-s750:before {
    font-size: 68px !important;
  }
  .f-70-s750, .f-70-s750:before {
    font-size: 70px !important;
  }
  .f-72-s750, .f-72-s750:before {
    font-size: 72px !important;
  }
  .f-74-s750, .f-74-s750:before {
    font-size: 74px !important;
  }
  .f-76-s750, .f-76-s750:before {
    font-size: 76px !important;
  }
  .f-78-s750, .f-78-s750:before {
    font-size: 78px !important;
  }
  .f-80-s750, .f-80-s750:before {
    font-size: 80px !important;
  }
  .f-82-s750, .f-82-s750:before {
    font-size: 82px !important;
  }
  .f-84-s750, .f-84-s750:before {
    font-size: 84px !important;
  }
  .f-86-s750, .f-86-s750:before {
    font-size: 86px !important;
  }
  .f-88-s750, .f-88-s750:before {
    font-size: 88px !important;
  }
  .f-90-s750, .f-90-s750:before {
    font-size: 90px !important;
  }
  .f-92-s750, .f-92-s750:before {
    font-size: 92px !important;
  }
  .f-94-s750, .f-94-s750:before {
    font-size: 94px !important;
  }
  .f-96-s750, .f-96-s750:before {
    font-size: 96px !important;
  }
  .f-98-s750, .f-98-s750:before {
    font-size: 98px !important;
  }
  .f-100-s750, .f-100-s750:before {
    font-size: 100px !important;
  }
  .t-left-s750 {
    text-align: left !important;
  }
  .t-center-s750 {
    text-align: center !important;
  }
  .t-right-s750 {
    text-align: right !important;
  }
  .t-justify-s750 {
    text-align: justify !important;
  }
  /* flex box */
  .flex-grow-s750 {
    flex: 1 !important;
  }
  .flex-100p-s750 {
    flex: auto !important;
    width: 100% !important;
  }
  .j-between-s750 {
    justify-content: space-between !important;
  }
  .j-around-s750 {
    justify-content: space-around !important;
  }
  .j-center-s750 {
    justify-content: center !important;
  }
  .j-start-s750 {
    justify-content: flex-start !important;
  }
  .j-end-s750 {
    justify-content: flex-end !important;
  }
  .j-start-s750 {
    align-items: flex-start !important;
  }
  .a-end-s750 {
    align-items: flex-end !important;
  }
  .a-center-s750 {
    align-items: center !important;
  }
  .a-baseline-s750 {
    align-items: baseline !important;
  }
  .a-stretch-s750 {
    align-items: stretch !important;
  }
  .f-box-auto-s750 {
    flex: auto !important;
  }
  .f-box-100p-s750 {
    width: 100% !important;
    flex: none !important;
  }
  .f-box-90p-s750 {
    width: 90% !important;
    flex: none !important;
  }
  .f-box-80p-s750 {
    width: 80% !important;
    flex: none !important;
  }
  .f-box-70p-s750 {
    width: 70% !important;
    flex: none !important;
  }
  .f-box-60p-s750 {
    width: 60% !important;
    flex: none !important;
  }
  .f-box-50p-s750 {
    width: 50% !important;
    flex: none !important;
  }
  .d-row-s750 {
    flex-direction: row !important;
  }
  .d-row-reverse-s750 {
    flex-direction: row-reverse !important;
  }
  .d-column-s750 {
    flex-direction: column !important;
  }
  .d-column-reverse-s750 {
    flex-direction: column-reverse !important;
  }
  /* dimension */
  .w-auto-s750 {
    width: auto !important;
  }
  .h-auto-s750 {
    height: auto !important;
  }
  /* max-width */
  .m-0-auto-s750 {
    margin: 0 auto !important;
  }
  .m-w-s750 {
    position: relative !important;
    width: 100% !important;
    max-width: 1700px !important;
  }
  .m-w-9999-s750 {
    position: relative !important;
    width: 100% !important;
    max-width: 9999px !important;
  }
  .m-w-100-s750 {
    position: relative !important;
    width: 100% !important;
    max-width: 100px !important;
  }
  .m-w-200-s750 {
    position: relative !important;
    width: 100% !important;
    max-width: 200px !important;
  }
  .m-w-300-s750 {
    position: relative !important;
    width: 100% !important;
    max-width: 300px !important;
  }
  .m-w-400-s750 {
    position: relative !important;
    width: 100% !important;
    max-width: 400px !important;
  }
  .m-w-500-s750 {
    position: relative !important;
    width: 100% !important;
    max-width: 500px !important;
  }
  .m-w-600-s750 {
    position: relative !important;
    width: 100% !important;
    max-width: 600px !important;
  }
  .l-s-1-s750 {
    letter-spacing: 1px !important;
  }
  .l-s-2-s750 {
    letter-spacing: 2px !important;
  }
  .l-s-3-s750 {
    letter-spacing: 3px !important;
  }
  .l-s-4-s750 {
    letter-spacing: 4px !important;
  }
  .l-s-5-s750 {
    letter-spacing: 5px !important;
  }
  .l-s-6-s750 {
    letter-spacing: 6px !important;
  }
  .l-s-7-s750 {
    letter-spacing: 7px !important;
  }
  .l-s-8-s750 {
    letter-spacing: 8px !important;
  }
  .l-s-9-s750 {
    letter-spacing: 9px !important;
  }
  .l-s-10-s750 {
    letter-spacing: 10px !important;
  }
  .l-s-15-s750 {
    letter-spacing: 15px !important;
  }
  .l-s-20-s750 {
    letter-spacing: 20px !important;
  }
  .l-s-25-s750 {
    letter-spacing: 25px !important;
  }
  .l-s-30-s750 {
    letter-spacing: 30px !important;
  }
  .l-s-35-s750 {
    letter-spacing: 35px !important;
  }
  .l-s-40-s750 {
    letter-spacing: 40px !important;
  }
  .l-s-45-s750 {
    letter-spacing: 45px !important;
  }
  .l-s-50-s750 {
    letter-spacing: 50px !important;
  }
  /* margin / padding */
  .m-0-s750 {
    margin: 0 !important;
  }
  .p-0-s750 {
    padding: 0 !important;
  }
  .m-l-0-s750 {
    margin-left: 0px !important;
  }
  .m-r-0-s750 {
    margin-right: 0px !important;
  }
  .m-t-0-s750 {
    margin-top: 0px !important;
  }
  .m-b-0-s750 {
    margin-bottom: 0px !important;
  }
  .m-x-0-s750 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .m-y-0-s750 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .p-l-0-s750 {
    padding-left: 0px !important;
  }
  .p-r-0-s750 {
    padding-right: 0px !important;
  }
  .p-t-0-s750 {
    padding-top: 0px !important;
  }
  .p-b-0-s750 {
    padding-bottom: 0px !important;
  }
  .p-x-0-s750 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .p-y-0-s750 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-l-5-s750 {
    margin-left: 5px !important;
  }
  .m-l-5--s750 {
    margin-left: -5px !important;
  }
  .m-r-5-s750 {
    margin-right: 5px !important;
  }
  .m-r-5--s750 {
    margin-right: -5px !important;
  }
  .m-t-5-s750 {
    margin-top: 5px !important;
  }
  .m-t-5--s750 {
    margin-top: -5px !important;
  }
  .m-b-5-s750 {
    margin-bottom: 5px !important;
  }
  .m-b-5--s750 {
    margin-bottom: -5px !important;
  }
  .m-x-5-s750 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .m-y-5-s750 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .p-l-5-s750 {
    padding-left: 5px !important;
  }
  .p-r-5-s750 {
    padding-right: 5px !important;
  }
  .p-t-5-s750 {
    padding-top: 5px !important;
  }
  .p-b-5-s750 {
    padding-bottom: 5px !important;
  }
  .p-x-5-s750 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .p-y-5-s750 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .m-l-10-s750 {
    margin-left: 10px !important;
  }
  .m-l-10--s750 {
    margin-left: -10px !important;
  }
  .m-r-10-s750 {
    margin-right: 10px !important;
  }
  .m-r-10--s750 {
    margin-right: -10px !important;
  }
  .m-t-10-s750 {
    margin-top: 10px !important;
  }
  .m-t-10--s750 {
    margin-top: -10px !important;
  }
  .m-b-10-s750 {
    margin-bottom: 10px !important;
  }
  .m-b-10--s750 {
    margin-bottom: -10px !important;
  }
  .m-x-10-s750 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .m-y-10-s750 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .p-l-10-s750 {
    padding-left: 10px !important;
  }
  .p-r-10-s750 {
    padding-right: 10px !important;
  }
  .p-t-10-s750 {
    padding-top: 10px !important;
  }
  .p-b-10-s750 {
    padding-bottom: 10px !important;
  }
  .p-x-10-s750 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .p-y-10-s750 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .m-l-15-s750 {
    margin-left: 15px !important;
  }
  .m-l-15--s750 {
    margin-left: -15px !important;
  }
  .m-r-15-s750 {
    margin-right: 15px !important;
  }
  .m-r-15--s750 {
    margin-right: -15px !important;
  }
  .m-t-15-s750 {
    margin-top: 15px !important;
  }
  .m-t-15--s750 {
    margin-top: -15px !important;
  }
  .m-b-15-s750 {
    margin-bottom: 15px !important;
  }
  .m-b-15--s750 {
    margin-bottom: -15px !important;
  }
  .m-x-15-s750 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .m-y-15-s750 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .p-l-15-s750 {
    padding-left: 15px !important;
  }
  .p-r-15-s750 {
    padding-right: 15px !important;
  }
  .p-t-15-s750 {
    padding-top: 15px !important;
  }
  .p-b-15-s750 {
    padding-bottom: 15px !important;
  }
  .p-x-15-s750 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .p-y-15-s750 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .m-l-20-s750 {
    margin-left: 20px !important;
  }
  .m-l-20--s750 {
    margin-left: -20px !important;
  }
  .m-r-20-s750 {
    margin-right: 20px !important;
  }
  .m-r-20--s750 {
    margin-right: -20px !important;
  }
  .m-t-20-s750 {
    margin-top: 20px !important;
  }
  .m-t-20--s750 {
    margin-top: -20px !important;
  }
  .m-b-20-s750 {
    margin-bottom: 20px !important;
  }
  .m-b-20--s750 {
    margin-bottom: -20px !important;
  }
  .m-x-20-s750 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .m-y-20-s750 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .p-l-20-s750 {
    padding-left: 20px !important;
  }
  .p-r-20-s750 {
    padding-right: 20px !important;
  }
  .p-t-20-s750 {
    padding-top: 20px !important;
  }
  .p-b-20-s750 {
    padding-bottom: 20px !important;
  }
  .p-x-20-s750 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .p-y-20-s750 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-l-30-s750 {
    margin-left: 30px !important;
  }
  .m-l-30--s750 {
    margin-left: -30px !important;
  }
  .m-r-30-s750 {
    margin-right: 30px !important;
  }
  .m-r-30--s750 {
    margin-right: -30px !important;
  }
  .m-t-30-s750 {
    margin-top: 30px !important;
  }
  .m-t-30--s750 {
    margin-top: -30px !important;
  }
  .m-b-30-s750 {
    margin-bottom: 30px !important;
  }
  .m-b-30--s750 {
    margin-bottom: -30px !important;
  }
  .m-x-30-s750 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .m-y-30-s750 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .p-l-30-s750 {
    padding-left: 30px !important;
  }
  .p-r-30-s750 {
    padding-right: 30px !important;
  }
  .p-t-30-s750 {
    padding-top: 30px !important;
  }
  .p-b-30-s750 {
    padding-bottom: 30px !important;
  }
  .p-x-30-s750 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .p-y-30-s750 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .m-l-40-s750 {
    margin-left: 40px !important;
  }
  .m-l-40--s750 {
    margin-left: -40px !important;
  }
  .m-r-40-s750 {
    margin-right: 40px !important;
  }
  .m-r-40--s750 {
    margin-right: -40px !important;
  }
  .m-t-40-s750 {
    margin-top: 40px !important;
  }
  .m-t-40--s750 {
    margin-top: -40px !important;
  }
  .m-b-40-s750 {
    margin-bottom: 40px !important;
  }
  .m-b-40--s750 {
    margin-bottom: -40px !important;
  }
  .m-x-40-s750 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .m-y-40-s750 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .p-l-40-s750 {
    padding-left: 40px !important;
  }
  .p-r-40-s750 {
    padding-right: 40px !important;
  }
  .p-t-40-s750 {
    padding-top: 40px !important;
  }
  .p-b-40-s750 {
    padding-bottom: 40px !important;
  }
  .p-x-40-s750 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .p-y-40-s750 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-l-50-s750 {
    margin-left: 50px !important;
  }
  .m-l-50--s750 {
    margin-left: -50px !important;
  }
  .m-r-50-s750 {
    margin-right: 50px !important;
  }
  .m-r-50--s750 {
    margin-right: -50px !important;
  }
  .m-t-50-s750 {
    margin-top: 50px !important;
  }
  .m-t-50--s750 {
    margin-top: -50px !important;
  }
  .m-b-50-s750 {
    margin-bottom: 50px !important;
  }
  .m-b-50--s750 {
    margin-bottom: -50px !important;
  }
  .m-x-50-s750 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .m-y-50-s750 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .p-l-50-s750 {
    padding-left: 50px !important;
  }
  .p-r-50-s750 {
    padding-right: 50px !important;
  }
  .p-t-50-s750 {
    padding-top: 50px !important;
  }
  .p-b-50-s750 {
    padding-bottom: 50px !important;
  }
  .p-x-50-s750 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .p-y-50-s750 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .m-l-60-s750 {
    margin-left: 60px !important;
  }
  .m-l-60--s750 {
    margin-left: -60px !important;
  }
  .m-r-60-s750 {
    margin-right: 60px !important;
  }
  .m-r-60--s750 {
    margin-right: -60px !important;
  }
  .m-t-60-s750 {
    margin-top: 60px !important;
  }
  .m-t-60--s750 {
    margin-top: -60px !important;
  }
  .m-b-60-s750 {
    margin-bottom: 60px !important;
  }
  .m-b-60--s750 {
    margin-bottom: -60px !important;
  }
  .m-x-60-s750 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .m-y-60-s750 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .p-l-60-s750 {
    padding-left: 60px !important;
  }
  .p-r-60-s750 {
    padding-right: 60px !important;
  }
  .p-t-60-s750 {
    padding-top: 60px !important;
  }
  .p-b-60-s750 {
    padding-bottom: 60px !important;
  }
  .p-x-60-s750 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .p-y-60-s750 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-l-70-s750 {
    margin-left: 70px !important;
  }
  .m-l-70--s750 {
    margin-left: -70px !important;
  }
  .m-r-70-s750 {
    margin-right: 70px !important;
  }
  .m-r-70--s750 {
    margin-right: -70px !important;
  }
  .m-t-70-s750 {
    margin-top: 70px !important;
  }
  .m-t-70--s750 {
    margin-top: -70px !important;
  }
  .m-b-70-s750 {
    margin-bottom: 70px !important;
  }
  .m-b-70--s750 {
    margin-bottom: -70px !important;
  }
  .m-x-70-s750 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .m-y-70-s750 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .p-l-70-s750 {
    padding-left: 70px !important;
  }
  .p-r-70-s750 {
    padding-right: 70px !important;
  }
  .p-t-70-s750 {
    padding-top: 70px !important;
  }
  .p-b-70-s750 {
    padding-bottom: 70px !important;
  }
  .p-x-70-s750 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .p-y-70-s750 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .m-l-80-s750 {
    margin-left: 80px !important;
  }
  .m-l-80--s750 {
    margin-left: -80px !important;
  }
  .m-r-80-s750 {
    margin-right: 80px !important;
  }
  .m-r-80--s750 {
    margin-right: -80px !important;
  }
  .m-t-80-s750 {
    margin-top: 80px !important;
  }
  .m-t-80--s750 {
    margin-top: -80px !important;
  }
  .m-b-80-s750 {
    margin-bottom: 80px !important;
  }
  .m-b-80--s750 {
    margin-bottom: -80px !important;
  }
  .m-x-80-s750 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .m-y-80-s750 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-l-80-s750 {
    padding-left: 80px !important;
  }
  .p-r-80-s750 {
    padding-right: 80px !important;
  }
  .p-t-80-s750 {
    padding-top: 80px !important;
  }
  .p-b-80-s750 {
    padding-bottom: 80px !important;
  }
  .p-x-80-s750 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .p-y-80-s750 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-l-90-s750 {
    margin-left: 90px !important;
  }
  .m-l-90--s750 {
    margin-left: -90px !important;
  }
  .m-r-90-s750 {
    margin-right: 90px !important;
  }
  .m-r-90--s750 {
    margin-right: -90px !important;
  }
  .m-t-90-s750 {
    margin-top: 90px !important;
  }
  .m-t-90--s750 {
    margin-top: -90px !important;
  }
  .m-b-90-s750 {
    margin-bottom: 90px !important;
  }
  .m-b-90--s750 {
    margin-bottom: -90px !important;
  }
  .m-x-90-s750 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .m-y-90-s750 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .p-l-90-s750 {
    padding-left: 90px !important;
  }
  .p-r-90-s750 {
    padding-right: 90px !important;
  }
  .p-t-90-s750 {
    padding-top: 90px !important;
  }
  .p-b-90-s750 {
    padding-bottom: 90px !important;
  }
  .p-x-90-s750 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .p-y-90-s750 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .m-l-100-s750 {
    margin-left: 100px !important;
  }
  .m-l-100--s750 {
    margin-left: -100px !important;
  }
  .m-r-100-s750 {
    margin-right: 100px !important;
  }
  .m-r-100--s750 {
    margin-right: -100px !important;
  }
  .m-t-100-s750 {
    margin-top: 100px !important;
  }
  .m-t-100--s750 {
    margin-top: -100px !important;
  }
  .m-b-100-s750 {
    margin-bottom: 100px !important;
  }
  .m-b-100--s750 {
    margin-bottom: -100px !important;
  }
  .m-x-100-s750 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .m-y-100-s750 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .p-l-100-s750 {
    padding-left: 100px !important;
  }
  .p-r-100-s750 {
    padding-right: 100px !important;
  }
  .p-t-100-s750 {
    padding-top: 100px !important;
  }
  .p-b-100-s750 {
    padding-bottom: 100px !important;
  }
  .p-x-100-s750 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
  .p-y-100-s750 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .m-l-125-s750 {
    margin-left: 125px !important;
  }
  .m-l-125--s750 {
    margin-left: -125px !important;
  }
  .m-r-125-s750 {
    margin-right: 125px !important;
  }
  .m-r-125--s750 {
    margin-right: -125px !important;
  }
  .m-t-125-s750 {
    margin-top: 125px !important;
  }
  .m-t-125--s750 {
    margin-top: -125px !important;
  }
  .m-b-125-s750 {
    margin-bottom: 125px !important;
  }
  .m-b-125--s750 {
    margin-bottom: -125px !important;
  }
  .p-l-125-s750 {
    padding-left: 125px !important;
  }
  .p-r-125-s750 {
    padding-right: 125px !important;
  }
  .p-t-125-s750 {
    padding-top: 125px !important;
  }
  .p-b-125-s750 {
    padding-bottom: 125px !important;
  }
  .m-l-150-s750 {
    margin-left: 150px !important;
  }
  .m-l-150--s750 {
    margin-left: -150px !important;
  }
  .m-r-150-s750 {
    margin-right: 150px !important;
  }
  .m-r-150--s750 {
    margin-right: -150px !important;
  }
  .m-t-150-s750 {
    margin-top: 150px !important;
  }
  .m-t-150--s750 {
    margin-top: -150px !important;
  }
  .m-b-150-s750 {
    margin-bottom: 150px !important;
  }
  .m-b-150--s750 {
    margin-bottom: -150px !important;
  }
  .p-l-150-s750 {
    padding-left: 150px !important;
  }
  .p-r-150-s750 {
    padding-right: 150px !important;
  }
  .p-t-150-s750 {
    padding-top: 150px !important;
  }
  .p-b-150-s750 {
    padding-bottom: 150px !important;
  }
  .m-l-175-s750 {
    margin-left: 175px !important;
  }
  .m-l-175--s750 {
    margin-left: -175px !important;
  }
  .m-r-175-s750 {
    margin-right: 175px !important;
  }
  .m-r-175--s750 {
    margin-right: -175px !important;
  }
  .m-t-175-s750 {
    margin-top: 175px !important;
  }
  .m-t-175--s750 {
    margin-top: -175px !important;
  }
  .m-b-175-s750 {
    margin-bottom: 175px !important;
  }
  .m-b-175--s750 {
    margin-bottom: -175px !important;
  }
  .p-l-175-s750 {
    padding-left: 175px !important;
  }
  .p-r-175-s750 {
    padding-right: 175px !important;
  }
  .p-t-175-s750 {
    padding-top: 175px !important;
  }
  .p-b-175-s750 {
    padding-bottom: 175px !important;
  }
  .m-l-200-s750 {
    margin-left: 200px !important;
  }
  .m-l-200--s750 {
    margin-left: -200px !important;
  }
  .m-r-200-s750 {
    margin-right: 200px !important;
  }
  .m-r-200--s750 {
    margin-right: -200px !important;
  }
  .m-t-200-s750 {
    margin-top: 200px !important;
  }
  .m-t-200--s750 {
    margin-top: -200px !important;
  }
  .m-b-200-s750 {
    margin-bottom: 200px !important;
  }
  .m-b-200--s750 {
    margin-bottom: -200px !important;
  }
  .p-l-200-s750 {
    padding-left: 200px !important;
  }
  .p-r-200-s750 {
    padding-right: 200px !important;
  }
  .p-t-200-s750 {
    padding-top: 200px !important;
  }
  .p-b-200-s750 {
    padding-bottom: 200px !important;
  }
  .m-l-250-s750 {
    margin-left: 250px !important;
  }
  .m-l-250--s750 {
    margin-left: -250px !important;
  }
  .m-r-250-s750 {
    margin-right: 250px !important;
  }
  .m-r-250--s750 {
    margin-right: -250px !important;
  }
  .m-t-250-s750 {
    margin-top: 250px !important;
  }
  .m-t-250--s750 {
    margin-top: -250px !important;
  }
  .m-b-250-s750 {
    margin-bottom: 250px !important;
  }
  .m-b-250--s750 {
    margin-bottom: -250px !important;
  }
  .p-l-250-s750 {
    padding-left: 250px !important;
  }
  .p-r-250-s750 {
    padding-right: 250px !important;
  }
  .p-t-250-s750 {
    padding-top: 250px !important;
  }
  .p-b-250-s750 {
    padding-bottom: 250px !important;
  }
  .m-l-300-s750 {
    margin-left: 300px !important;
  }
  .m-l-300--s750 {
    margin-left: -300px !important;
  }
  .m-r-300-s750 {
    margin-right: 300px !important;
  }
  .m-r-300--s750 {
    margin-right: -300px !important;
  }
  .m-t-300-s750 {
    margin-top: 300px !important;
  }
  .m-t-300--s750 {
    margin-top: -300px !important;
  }
  .m-b-300-s750 {
    margin-bottom: 300px !important;
  }
  .m-b-300--s750 {
    margin-bottom: -300px !important;
  }
  .p-l-300-s750 {
    padding-left: 300px !important;
  }
  .p-r-300-s750 {
    padding-right: 300px !important;
  }
  .p-t-300-s750 {
    padding-top: 300px !important;
  }
  .p-b-300-s750 {
    padding-bottom: 300px !important;
  }
  .m-l-350-s750 {
    margin-left: 350px !important;
  }
  .m-l-350--s750 {
    margin-left: -350px !important;
  }
  .m-r-350-s750 {
    margin-right: 350px !important;
  }
  .m-r-350--s750 {
    margin-right: -350px !important;
  }
  .m-t-350-s750 {
    margin-top: 350px !important;
  }
  .m-t-350--s750 {
    margin-top: -350px !important;
  }
  .m-b-350-s750 {
    margin-bottom: 350px !important;
  }
  .m-b-350--s750 {
    margin-bottom: -350px !important;
  }
  .p-l-350-s750 {
    padding-left: 350px !important;
  }
  .p-r-350-s750 {
    padding-right: 350px !important;
  }
  .p-t-350-s750 {
    padding-top: 350px !important;
  }
  .p-b-350-s750 {
    padding-bottom: 350px !important;
  }
  .m-l-400-s750 {
    margin-left: 400px !important;
  }
  .m-l-400--s750 {
    margin-left: -400px !important;
  }
  .m-r-400-s750 {
    margin-right: 400px !important;
  }
  .m-r-400--s750 {
    margin-right: -400px !important;
  }
  .m-t-400-s750 {
    margin-top: 400px !important;
  }
  .m-t-400--s750 {
    margin-top: -400px !important;
  }
  .m-b-400-s750 {
    margin-bottom: 400px !important;
  }
  .m-b-400--s750 {
    margin-bottom: -400px !important;
  }
  .p-l-400-s750 {
    padding-left: 400px !important;
  }
  .p-r-400-s750 {
    padding-right: 400px !important;
  }
  .p-t-400-s750 {
    padding-top: 400px !important;
  }
  .p-b-400-s750 {
    padding-bottom: 400px !important;
  }
  .h-auto-s750 {
    height: auto !important;
  }
  .h-0-s750 {
    height: 0 !important;
  }
  .h-25vh-s750 {
    height: 25vh !important;
  }
  .h-50vh-s750 {
    height: 50vh !important;
  }
  .h-75vh-s750 {
    height: 75vh !important;
  }
  .h-80vh-s750 {
    height: 80vh !important;
  }
  .h-90vh-s750 {
    height: 90vh !important;
  }
  .h-95vh-s750 {
    height: 95vh !important;
  }
  .h-100vh-s750 {
    height: 100vh !important;
  }
  .min-w-0-s750 {
    min-width: auto !important;
  }
  .min-h-50-s750 {
    min-height: 50px !important;
  }
  .min-h-100-s750 {
    min-height: 100px !important;
  }
  .min-h-150-s750 {
    min-height: 150px !important;
  }
  .min-h-200-s750 {
    min-height: 200px !important;
  }
  .min-h-250-s750 {
    min-height: 250px !important;
  }
  .min-h-300-s750 {
    min-height: 300px !important;
  }
  .min-h-350-s750 {
    min-height: 350px !important;
  }
  .min-h-400-s750 {
    min-height: 400px !important;
  }
  .min-h-450-s750 {
    min-height: 450px !important;
  }
  .min-h-500-s750 {
    min-height: 500px !important;
  }
  .min-h-550-s750 {
    min-height: 550px !important;
  }
  .min-h-600-s750 {
    min-height: 600px !important;
  }
  /* resets */
  .t-none--s750 {
    transform: none !important;
  }
  .l-0-s750 {
    left: 0 !important;
  }
  .r-0-s750 {
    right: 0 !important;
  }
  .t-0-s750 {
    top: 0 !important;
  }
  .b-0-s750 {
    bottom: 0 !important;
  }
  .s-00p-s750 {
    transform: scale(0) !important;
  }
  .s-10p-s750 {
    transform: scale(0.1) !important;
  }
  .s-20p-s750 {
    transform: scale(0.2) !important;
  }
  .s-30p-s750 {
    transform: scale(0.3) !important;
  }
  .s-40p-s750 {
    transform: scale(0.4) !important;
  }
  .s-50p-s750 {
    transform: scale(0.5) !important;
  }
  .s-60p-s750 {
    transform: scale(0.6) !important;
  }
  .s-70p-s750 {
    transform: scale(0.7) !important;
  }
  .s-80p-s750 {
    transform: scale(0.8) !important;
  }
  .s-90p-s750 {
    transform: scale(0.9) !important;
  }
  .s-100p-s750 {
    transform: scale(1) !important;
  }
}
@media (max-width: 500px) {
  .d-block-s500 {
    display: block !important;
  }
  .d-none-s500 {
    display: none !important;
  }
  .d-inline-s500 {
    display: inline-block !important;
  }
  .d-flex-s500 {
    display: flex !important;
  }
  .relative-s500 {
    position: relative !important;
  }
  .absolute-s500 {
    position: absolute !important;
  }
  .fixed-s500 {
    position: fixed !important;
  }
  /* order */
  .order-1-s500 {
    order: 1 !important;
  }
  .order-2-s500 {
    order: 2 !important;
  }
  .order-3-s500 {
    order: 3 !important;
  }
  .order-4-s500 {
    order: 4 !important;
  }
  .order-5-s500 {
    order: 5 !important;
  }
  .order-6-s500 {
    order: 6 !important;
  }
  /* font */
  .f-9-s500, .f-9-s500:before {
    font-size: 9px !important;
  }
  .f-6-s500, .f-6-s500:before {
    font-size: 6px !important;
  }
  .f-8-s500, .f-8-s500:before {
    font-size: 8px !important;
  }
  .f-10-s500, .f-10-s500:before {
    font-size: 10px !important;
  }
  .f-12-s500, .f-12-s500:before {
    font-size: 12px !important;
  }
  .f-14-s500, .f-14-s500:before {
    font-size: 14px !important;
  }
  .f-16-s500, .f-16-s500:before {
    font-size: 16px !important;
  }
  .f-18-s500, .f-18-s500:before {
    font-size: 18px !important;
  }
  .f-20-s500, .f-20-s500:before {
    font-size: 20px !important;
  }
  .f-22-s500, .f-22-s500:before {
    font-size: 22px !important;
  }
  .f-24-s500, .f-24-s500:before {
    font-size: 24px !important;
  }
  .f-26-s500, .f-26-s500:before {
    font-size: 26px !important;
  }
  .f-28-s500, .f-28-s500:before {
    font-size: 28px !important;
  }
  .f-30-s500, .f-30-s500:before {
    font-size: 30px !important;
  }
  .f-32-s500, .f-32-s500:before {
    font-size: 32px !important;
  }
  .f-34-s500, .f-34-s500:before {
    font-size: 34px !important;
  }
  .f-36-s500, .f-36-s500:before {
    font-size: 36px !important;
  }
  .f-38-s500, .f-38-s500:before {
    font-size: 38px !important;
  }
  .f-40-s500, .f-40-s500:before {
    font-size: 40px !important;
  }
  .f-42-s500, .f-42-s500:before {
    font-size: 42px !important;
  }
  .f-44-s500, .f-44-s500:before {
    font-size: 44px !important;
  }
  .f-46-s500, .f-46-s500:before {
    font-size: 46px !important;
  }
  .f-48-s500, .f-48-s500:before {
    font-size: 48px !important;
  }
  .f-50-s500, .f-50-s500:before {
    font-size: 50px !important;
  }
  .f-52-s500, .f-52-s500:before {
    font-size: 52px !important;
  }
  .f-54-s500, .f-54-s500:before {
    font-size: 54px !important;
  }
  .f-56-s500, .f-56-s500:before {
    font-size: 56px !important;
  }
  .f-58-s500, .f-58-s500:before {
    font-size: 58px !important;
  }
  .f-60-s500, .f-60-s500:before {
    font-size: 60px !important;
  }
  .f-62-s500, .f-62-s500:before {
    font-size: 62px !important;
  }
  .f-64-s500, .f-64-s500:before {
    font-size: 64px !important;
  }
  .f-66-s500, .f-66-s500:before {
    font-size: 66px !important;
  }
  .f-68-s500, .f-68-s500:before {
    font-size: 68px !important;
  }
  .f-70-s500, .f-70-s500:before {
    font-size: 70px !important;
  }
  .f-72-s500, .f-72-s500:before {
    font-size: 72px !important;
  }
  .f-74-s500, .f-74-s500:before {
    font-size: 74px !important;
  }
  .f-76-s500, .f-76-s500:before {
    font-size: 76px !important;
  }
  .f-78-s500, .f-78-s500:before {
    font-size: 78px !important;
  }
  .f-80-s500, .f-80-s500:before {
    font-size: 80px !important;
  }
  .f-82-s500, .f-82-s500:before {
    font-size: 82px !important;
  }
  .f-84-s500, .f-84-s500:before {
    font-size: 84px !important;
  }
  .f-86-s500, .f-86-s500:before {
    font-size: 86px !important;
  }
  .f-88-s500, .f-88-s500:before {
    font-size: 88px !important;
  }
  .f-90-s500, .f-90-s500:before {
    font-size: 90px !important;
  }
  .f-92-s500, .f-92-s500:before {
    font-size: 92px !important;
  }
  .f-94-s500, .f-94-s500:before {
    font-size: 94px !important;
  }
  .f-96-s500, .f-96-s500:before {
    font-size: 96px !important;
  }
  .f-98-s500, .f-98-s500:before {
    font-size: 98px !important;
  }
  .f-100-s500, .f-100-s500:before {
    font-size: 100px !important;
  }
  .t-left-s500 {
    text-align: left !important;
  }
  .t-center-s500 {
    text-align: center !important;
  }
  .t-right-s500 {
    text-align: right !important;
  }
  .t-justify-s500 {
    text-align: justify !important;
  }
  /* flex box */
  .flex-grow-s500 {
    flex: 1 !important;
  }
  .flex-100p-s500 {
    flex: auto !important;
    width: 100% !important;
  }
  .j-between-s500 {
    justify-content: space-between !important;
  }
  .j-around-s500 {
    justify-content: space-around !important;
  }
  .j-center-s500 {
    justify-content: center !important;
  }
  .j-start-s500 {
    justify-content: flex-start !important;
  }
  .j-end-s500 {
    justify-content: flex-end !important;
  }
  .j-start-s500 {
    align-items: flex-start !important;
  }
  .a-end-s500 {
    align-items: flex-end !important;
  }
  .a-center-s500 {
    align-items: center !important;
  }
  .a-baseline-s500 {
    align-items: baseline !important;
  }
  .a-stretch-s500 {
    align-items: stretch !important;
  }
  .f-box-auto-s500 {
    flex: auto !important;
  }
  .f-box-100p-s500 {
    width: 100% !important;
    flex: none !important;
  }
  .f-box-90p-s500 {
    width: 90% !important;
    flex: none !important;
  }
  .f-box-80p-s500 {
    width: 80% !important;
    flex: none !important;
  }
  .f-box-70p-s500 {
    width: 70% !important;
    flex: none !important;
  }
  .f-box-60p-s500 {
    width: 60% !important;
    flex: none !important;
  }
  .f-box-50p-s500 {
    width: 50% !important;
    flex: none !important;
  }
  .d-row-s500 {
    flex-direction: row !important;
  }
  .d-row-reverse-s500 {
    flex-direction: row-reverse !important;
  }
  .d-column-s500 {
    flex-direction: column !important;
  }
  .d-column-reverse-s500 {
    flex-direction: column-reverse !important;
  }
  /* dimension */
  .w-auto-s500 {
    width: auto !important;
  }
  .h-auto-s500 {
    height: auto !important;
  }
  /* max-width */
  .m-0-auto-s500 {
    margin: 0 auto !important;
  }
  .m-w-s500 {
    position: relative !important;
    width: 100% !important;
    max-width: 1700px !important;
  }
  .m-w-9999-s500 {
    position: relative !important;
    width: 100% !important;
    max-width: 9999px !important;
  }
  .m-w-100-s500 {
    position: relative !important;
    width: 100% !important;
    max-width: 100px !important;
  }
  .m-w-200-s500 {
    position: relative !important;
    width: 100% !important;
    max-width: 200px !important;
  }
  .m-w-300-s500 {
    position: relative !important;
    width: 100% !important;
    max-width: 300px !important;
  }
  .m-w-400-s500 {
    position: relative !important;
    width: 100% !important;
    max-width: 400px !important;
  }
  .l-s-1-s500 {
    letter-spacing: 1px !important;
  }
  .l-s-2-s500 {
    letter-spacing: 2px !important;
  }
  .l-s-3-s500 {
    letter-spacing: 3px !important;
  }
  .l-s-4-s500 {
    letter-spacing: 4px !important;
  }
  .l-s-5-s500 {
    letter-spacing: 5px !important;
  }
  .l-s-6-s500 {
    letter-spacing: 6px !important;
  }
  .l-s-7-s500 {
    letter-spacing: 7px !important;
  }
  .l-s-8-s500 {
    letter-spacing: 8px !important;
  }
  .l-s-9-s500 {
    letter-spacing: 9px !important;
  }
  .l-s-10-s500 {
    letter-spacing: 10px !important;
  }
  .l-s-15-s500 {
    letter-spacing: 15px !important;
  }
  .l-s-20-s500 {
    letter-spacing: 20px !important;
  }
  .l-s-25-s500 {
    letter-spacing: 25px !important;
  }
  .l-s-30-s500 {
    letter-spacing: 30px !important;
  }
  .l-s-35-s500 {
    letter-spacing: 35px !important;
  }
  .l-s-40-s500 {
    letter-spacing: 40px !important;
  }
  .l-s-45-s500 {
    letter-spacing: 45px !important;
  }
  .l-s-50-s500 {
    letter-spacing: 50px !important;
  }
  /* margin / padding */
  .m-0-s500 {
    margin: 0 !important;
  }
  .p-0-s500 {
    padding: 0 !important;
  }
  .m-l-0-s500 {
    margin-left: 0px !important;
  }
  .m-r-0-s500 {
    margin-right: 0px !important;
  }
  .m-t-0-s500 {
    margin-top: 0px !important;
  }
  .m-b-0-s500 {
    margin-bottom: 0px !important;
  }
  .m-x-0-s500 {
    margin-left: 0px !important;
    margin-right: 0px !important;
  }
  .m-y-0-s500 {
    margin-top: 0px !important;
    margin-bottom: 0px !important;
  }
  .p-l-0-s500 {
    padding-left: 0px !important;
  }
  .p-r-0-s500 {
    padding-right: 0px !important;
  }
  .p-t-0-s500 {
    padding-top: 0px !important;
  }
  .p-b-0-s500 {
    padding-bottom: 0px !important;
  }
  .p-x-0-s500 {
    padding-left: 0px !important;
    padding-right: 0px !important;
  }
  .p-y-0-s500 {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }
  .m-l-5-s500 {
    margin-left: 5px !important;
  }
  .m-l-5--s500 {
    margin-left: -5px !important;
  }
  .m-r-5-s500 {
    margin-right: 5px !important;
  }
  .m-r-5--s500 {
    margin-right: -5px !important;
  }
  .m-t-5-s500 {
    margin-top: 5px !important;
  }
  .m-t-5--s500 {
    margin-top: -5px !important;
  }
  .m-b-5-s500 {
    margin-bottom: 5px !important;
  }
  .m-b-5--s500 {
    margin-bottom: -5px !important;
  }
  .m-x-5-s500 {
    margin-left: 5px !important;
    margin-right: 5px !important;
  }
  .m-y-5-s500 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }
  .p-l-5-s500 {
    padding-left: 5px !important;
  }
  .p-r-5-s500 {
    padding-right: 5px !important;
  }
  .p-t-5-s500 {
    padding-top: 5px !important;
  }
  .p-b-5-s500 {
    padding-bottom: 5px !important;
  }
  .p-x-5-s500 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
  .p-y-5-s500 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }
  .m-l-10-s500 {
    margin-left: 10px !important;
  }
  .m-l-10--s500 {
    margin-left: -10px !important;
  }
  .m-r-10-s500 {
    margin-right: 10px !important;
  }
  .m-r-10--s500 {
    margin-right: -10px !important;
  }
  .m-t-10-s500 {
    margin-top: 10px !important;
  }
  .m-t-10--s500 {
    margin-top: -10px !important;
  }
  .m-b-10-s500 {
    margin-bottom: 10px !important;
  }
  .m-b-10--s500 {
    margin-bottom: -10px !important;
  }
  .m-x-10-s500 {
    margin-left: 10px !important;
    margin-right: 10px !important;
  }
  .m-y-10-s500 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }
  .p-l-10-s500 {
    padding-left: 10px !important;
  }
  .p-r-10-s500 {
    padding-right: 10px !important;
  }
  .p-t-10-s500 {
    padding-top: 10px !important;
  }
  .p-b-10-s500 {
    padding-bottom: 10px !important;
  }
  .p-x-10-s500 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .p-y-10-s500 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }
  .m-l-15-s500 {
    margin-left: 15px !important;
  }
  .m-l-15--s500 {
    margin-left: -15px !important;
  }
  .m-r-15-s500 {
    margin-right: 15px !important;
  }
  .m-r-15--s500 {
    margin-right: -15px !important;
  }
  .m-t-15-s500 {
    margin-top: 15px !important;
  }
  .m-t-15--s500 {
    margin-top: -15px !important;
  }
  .m-b-15-s500 {
    margin-bottom: 15px !important;
  }
  .m-b-15--s500 {
    margin-bottom: -15px !important;
  }
  .m-x-15-s500 {
    margin-left: 15px !important;
    margin-right: 15px !important;
  }
  .m-y-15-s500 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }
  .p-l-15-s500 {
    padding-left: 15px !important;
  }
  .p-r-15-s500 {
    padding-right: 15px !important;
  }
  .p-t-15-s500 {
    padding-top: 15px !important;
  }
  .p-b-15-s500 {
    padding-bottom: 15px !important;
  }
  .p-x-15-s500 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
  .p-y-15-s500 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }
  .m-l-20-s500 {
    margin-left: 20px !important;
  }
  .m-l-20--s500 {
    margin-left: -20px !important;
  }
  .m-r-20-s500 {
    margin-right: 20px !important;
  }
  .m-r-20--s500 {
    margin-right: -20px !important;
  }
  .m-t-20-s500 {
    margin-top: 20px !important;
  }
  .m-t-20--s500 {
    margin-top: -20px !important;
  }
  .m-b-20-s500 {
    margin-bottom: 20px !important;
  }
  .m-b-20--s500 {
    margin-bottom: -20px !important;
  }
  .m-x-20-s500 {
    margin-left: 20px !important;
    margin-right: 20px !important;
  }
  .m-y-20-s500 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }
  .p-l-20-s500 {
    padding-left: 20px !important;
  }
  .p-r-20-s500 {
    padding-right: 20px !important;
  }
  .p-t-20-s500 {
    padding-top: 20px !important;
  }
  .p-b-20-s500 {
    padding-bottom: 20px !important;
  }
  .p-x-20-s500 {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
  .p-y-20-s500 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }
  .m-l-30-s500 {
    margin-left: 30px !important;
  }
  .m-l-30--s500 {
    margin-left: -30px !important;
  }
  .m-r-30-s500 {
    margin-right: 30px !important;
  }
  .m-r-30--s500 {
    margin-right: -30px !important;
  }
  .m-t-30-s500 {
    margin-top: 30px !important;
  }
  .m-t-30--s500 {
    margin-top: -30px !important;
  }
  .m-b-30-s500 {
    margin-bottom: 30px !important;
  }
  .m-b-30--s500 {
    margin-bottom: -30px !important;
  }
  .m-x-30-s500 {
    margin-left: 30px !important;
    margin-right: 30px !important;
  }
  .m-y-30-s500 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }
  .p-l-30-s500 {
    padding-left: 30px !important;
  }
  .p-r-30-s500 {
    padding-right: 30px !important;
  }
  .p-t-30-s500 {
    padding-top: 30px !important;
  }
  .p-b-30-s500 {
    padding-bottom: 30px !important;
  }
  .p-x-30-s500 {
    padding-left: 30px !important;
    padding-right: 30px !important;
  }
  .p-y-30-s500 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }
  .m-l-40-s500 {
    margin-left: 40px !important;
  }
  .m-l-40--s500 {
    margin-left: -40px !important;
  }
  .m-r-40-s500 {
    margin-right: 40px !important;
  }
  .m-r-40--s500 {
    margin-right: -40px !important;
  }
  .m-t-40-s500 {
    margin-top: 40px !important;
  }
  .m-t-40--s500 {
    margin-top: -40px !important;
  }
  .m-b-40-s500 {
    margin-bottom: 40px !important;
  }
  .m-b-40--s500 {
    margin-bottom: -40px !important;
  }
  .m-x-40-s500 {
    margin-left: 40px !important;
    margin-right: 40px !important;
  }
  .m-y-40-s500 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }
  .p-l-40-s500 {
    padding-left: 40px !important;
  }
  .p-r-40-s500 {
    padding-right: 40px !important;
  }
  .p-t-40-s500 {
    padding-top: 40px !important;
  }
  .p-b-40-s500 {
    padding-bottom: 40px !important;
  }
  .p-x-40-s500 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
  .p-y-40-s500 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .m-l-50-s500 {
    margin-left: 50px !important;
  }
  .m-l-50--s500 {
    margin-left: -50px !important;
  }
  .m-r-50-s500 {
    margin-right: 50px !important;
  }
  .m-r-50--s500 {
    margin-right: -50px !important;
  }
  .m-t-50-s500 {
    margin-top: 50px !important;
  }
  .m-t-50--s500 {
    margin-top: -50px !important;
  }
  .m-b-50-s500 {
    margin-bottom: 50px !important;
  }
  .m-b-50--s500 {
    margin-bottom: -50px !important;
  }
  .m-x-50-s500 {
    margin-left: 50px !important;
    margin-right: 50px !important;
  }
  .m-y-50-s500 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }
  .p-l-50-s500 {
    padding-left: 50px !important;
  }
  .p-r-50-s500 {
    padding-right: 50px !important;
  }
  .p-t-50-s500 {
    padding-top: 50px !important;
  }
  .p-b-50-s500 {
    padding-bottom: 50px !important;
  }
  .p-x-50-s500 {
    padding-left: 50px !important;
    padding-right: 50px !important;
  }
  .p-y-50-s500 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }
  .m-l-60-s500 {
    margin-left: 60px !important;
  }
  .m-l-60--s500 {
    margin-left: -60px !important;
  }
  .m-r-60-s500 {
    margin-right: 60px !important;
  }
  .m-r-60--s500 {
    margin-right: -60px !important;
  }
  .m-t-60-s500 {
    margin-top: 60px !important;
  }
  .m-t-60--s500 {
    margin-top: -60px !important;
  }
  .m-b-60-s500 {
    margin-bottom: 60px !important;
  }
  .m-b-60--s500 {
    margin-bottom: -60px !important;
  }
  .m-x-60-s500 {
    margin-left: 60px !important;
    margin-right: 60px !important;
  }
  .m-y-60-s500 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }
  .p-l-60-s500 {
    padding-left: 60px !important;
  }
  .p-r-60-s500 {
    padding-right: 60px !important;
  }
  .p-t-60-s500 {
    padding-top: 60px !important;
  }
  .p-b-60-s500 {
    padding-bottom: 60px !important;
  }
  .p-x-60-s500 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
  .p-y-60-s500 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
  .m-l-70-s500 {
    margin-left: 70px !important;
  }
  .m-l-70--s500 {
    margin-left: -70px !important;
  }
  .m-r-70-s500 {
    margin-right: 70px !important;
  }
  .m-r-70--s500 {
    margin-right: -70px !important;
  }
  .m-t-70-s500 {
    margin-top: 70px !important;
  }
  .m-t-70--s500 {
    margin-top: -70px !important;
  }
  .m-b-70-s500 {
    margin-bottom: 70px !important;
  }
  .m-b-70--s500 {
    margin-bottom: -70px !important;
  }
  .m-x-70-s500 {
    margin-left: 70px !important;
    margin-right: 70px !important;
  }
  .m-y-70-s500 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }
  .p-l-70-s500 {
    padding-left: 70px !important;
  }
  .p-r-70-s500 {
    padding-right: 70px !important;
  }
  .p-t-70-s500 {
    padding-top: 70px !important;
  }
  .p-b-70-s500 {
    padding-bottom: 70px !important;
  }
  .p-x-70-s500 {
    padding-left: 70px !important;
    padding-right: 70px !important;
  }
  .p-y-70-s500 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }
  .m-l-80-s500 {
    margin-left: 80px !important;
  }
  .m-l-80--s500 {
    margin-left: -80px !important;
  }
  .m-r-80-s500 {
    margin-right: 80px !important;
  }
  .m-r-80--s500 {
    margin-right: -80px !important;
  }
  .m-t-80-s500 {
    margin-top: 80px !important;
  }
  .m-t-80--s500 {
    margin-top: -80px !important;
  }
  .m-b-80-s500 {
    margin-bottom: 80px !important;
  }
  .m-b-80--s500 {
    margin-bottom: -80px !important;
  }
  .m-x-80-s500 {
    margin-left: 80px !important;
    margin-right: 80px !important;
  }
  .m-y-80-s500 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }
  .p-l-80-s500 {
    padding-left: 80px !important;
  }
  .p-r-80-s500 {
    padding-right: 80px !important;
  }
  .p-t-80-s500 {
    padding-top: 80px !important;
  }
  .p-b-80-s500 {
    padding-bottom: 80px !important;
  }
  .p-x-80-s500 {
    padding-left: 80px !important;
    padding-right: 80px !important;
  }
  .p-y-80-s500 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }
  .m-l-90-s500 {
    margin-left: 90px !important;
  }
  .m-l-90--s500 {
    margin-left: -90px !important;
  }
  .m-r-90-s500 {
    margin-right: 90px !important;
  }
  .m-r-90--s500 {
    margin-right: -90px !important;
  }
  .m-t-90-s500 {
    margin-top: 90px !important;
  }
  .m-t-90--s500 {
    margin-top: -90px !important;
  }
  .m-b-90-s500 {
    margin-bottom: 90px !important;
  }
  .m-b-90--s500 {
    margin-bottom: -90px !important;
  }
  .m-x-90-s500 {
    margin-left: 90px !important;
    margin-right: 90px !important;
  }
  .m-y-90-s500 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }
  .p-l-90-s500 {
    padding-left: 90px !important;
  }
  .p-r-90-s500 {
    padding-right: 90px !important;
  }
  .p-t-90-s500 {
    padding-top: 90px !important;
  }
  .p-b-90-s500 {
    padding-bottom: 90px !important;
  }
  .p-x-90-s500 {
    padding-left: 90px !important;
    padding-right: 90px !important;
  }
  .p-y-90-s500 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }
  .m-l-100-s500 {
    margin-left: 100px !important;
  }
  .m-l-100--s500 {
    margin-left: -100px !important;
  }
  .m-r-100-s500 {
    margin-right: 100px !important;
  }
  .m-r-100--s500 {
    margin-right: -100px !important;
  }
  .m-t-100-s500 {
    margin-top: 100px !important;
  }
  .m-t-100--s500 {
    margin-top: -100px !important;
  }
  .m-b-100-s500 {
    margin-bottom: 100px !important;
  }
  .m-b-100--s500 {
    margin-bottom: -100px !important;
  }
  .m-x-100-s500 {
    margin-left: 100px !important;
    margin-right: 100px !important;
  }
  .m-y-100-s500 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }
  .p-l-100-s500 {
    padding-left: 100px !important;
  }
  .p-r-100-s500 {
    padding-right: 100px !important;
  }
  .p-t-100-s500 {
    padding-top: 100px !important;
  }
  .p-b-100-s500 {
    padding-bottom: 100px !important;
  }
  .p-x-100-s500 {
    padding-left: 100px !important;
    padding-right: 100px !important;
  }
  .p-y-100-s500 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }
  .m-l-125-s500 {
    margin-left: 125px !important;
  }
  .m-l-125--s500 {
    margin-left: -125px !important;
  }
  .m-r-125-s500 {
    margin-right: 125px !important;
  }
  .m-r-125--s500 {
    margin-right: -125px !important;
  }
  .m-t-125-s500 {
    margin-top: 125px !important;
  }
  .m-t-125--s500 {
    margin-top: -125px !important;
  }
  .m-b-125-s500 {
    margin-bottom: 125px !important;
  }
  .m-b-125--s500 {
    margin-bottom: -125px !important;
  }
  .p-l-125-s500 {
    padding-left: 125px !important;
  }
  .p-r-125-s500 {
    padding-right: 125px !important;
  }
  .p-t-125-s500 {
    padding-top: 125px !important;
  }
  .p-b-125-s500 {
    padding-bottom: 125px !important;
  }
  .m-l-150-s500 {
    margin-left: 150px !important;
  }
  .m-l-150--s500 {
    margin-left: -150px !important;
  }
  .m-r-150-s500 {
    margin-right: 150px !important;
  }
  .m-r-150--s500 {
    margin-right: -150px !important;
  }
  .m-t-150-s500 {
    margin-top: 150px !important;
  }
  .m-t-150--s500 {
    margin-top: -150px !important;
  }
  .m-b-150-s500 {
    margin-bottom: 150px !important;
  }
  .m-b-150--s500 {
    margin-bottom: -150px !important;
  }
  .p-l-150-s500 {
    padding-left: 150px !important;
  }
  .p-r-150-s500 {
    padding-right: 150px !important;
  }
  .p-t-150-s500 {
    padding-top: 150px !important;
  }
  .p-b-150-s500 {
    padding-bottom: 150px !important;
  }
  .m-l-175-s500 {
    margin-left: 175px !important;
  }
  .m-l-175--s500 {
    margin-left: -175px !important;
  }
  .m-r-175-s500 {
    margin-right: 175px !important;
  }
  .m-r-175--s500 {
    margin-right: -175px !important;
  }
  .m-t-175-s500 {
    margin-top: 175px !important;
  }
  .m-t-175--s500 {
    margin-top: -175px !important;
  }
  .m-b-175-s500 {
    margin-bottom: 175px !important;
  }
  .m-b-175--s500 {
    margin-bottom: -175px !important;
  }
  .p-l-175-s500 {
    padding-left: 175px !important;
  }
  .p-r-175-s500 {
    padding-right: 175px !important;
  }
  .p-t-175-s500 {
    padding-top: 175px !important;
  }
  .p-b-175-s500 {
    padding-bottom: 175px !important;
  }
  .m-l-200-s500 {
    margin-left: 200px !important;
  }
  .m-l-200--s500 {
    margin-left: -200px !important;
  }
  .m-r-200-s500 {
    margin-right: 200px !important;
  }
  .m-r-200--s500 {
    margin-right: -200px !important;
  }
  .m-t-200-s500 {
    margin-top: 200px !important;
  }
  .m-t-200--s500 {
    margin-top: -200px !important;
  }
  .m-b-200-s500 {
    margin-bottom: 200px !important;
  }
  .m-b-200--s500 {
    margin-bottom: -200px !important;
  }
  .p-l-200-s500 {
    padding-left: 200px !important;
  }
  .p-r-200-s500 {
    padding-right: 200px !important;
  }
  .p-t-200-s500 {
    padding-top: 200px !important;
  }
  .p-b-200-s500 {
    padding-bottom: 200px !important;
  }
  .m-l-250-s500 {
    margin-left: 250px !important;
  }
  .m-l-250--s500 {
    margin-left: -250px !important;
  }
  .m-r-250-s500 {
    margin-right: 250px !important;
  }
  .m-r-250--s500 {
    margin-right: -250px !important;
  }
  .m-t-250-s500 {
    margin-top: 250px !important;
  }
  .m-t-250--s500 {
    margin-top: -250px !important;
  }
  .m-b-250-s500 {
    margin-bottom: 250px !important;
  }
  .m-b-250--s500 {
    margin-bottom: -250px !important;
  }
  .p-l-250-s500 {
    padding-left: 250px !important;
  }
  .p-r-250-s500 {
    padding-right: 250px !important;
  }
  .p-t-250-s500 {
    padding-top: 250px !important;
  }
  .p-b-250-s500 {
    padding-bottom: 250px !important;
  }
  .m-l-300-s500 {
    margin-left: 300px !important;
  }
  .m-l-300--s500 {
    margin-left: -300px !important;
  }
  .m-r-300-s500 {
    margin-right: 300px !important;
  }
  .m-r-300--s500 {
    margin-right: -300px !important;
  }
  .m-t-300-s500 {
    margin-top: 300px !important;
  }
  .m-t-300--s500 {
    margin-top: -300px !important;
  }
  .m-b-300-s500 {
    margin-bottom: 300px !important;
  }
  .m-b-300--s500 {
    margin-bottom: -300px !important;
  }
  .p-l-300-s500 {
    padding-left: 300px !important;
  }
  .p-r-300-s500 {
    padding-right: 300px !important;
  }
  .p-t-300-s500 {
    padding-top: 300px !important;
  }
  .p-b-300-s500 {
    padding-bottom: 300px !important;
  }
  .m-l-350-s500 {
    margin-left: 350px !important;
  }
  .m-l-350--s500 {
    margin-left: -350px !important;
  }
  .m-r-350-s500 {
    margin-right: 350px !important;
  }
  .m-r-350--s500 {
    margin-right: -350px !important;
  }
  .m-t-350-s500 {
    margin-top: 350px !important;
  }
  .m-t-350--s500 {
    margin-top: -350px !important;
  }
  .m-b-350-s500 {
    margin-bottom: 350px !important;
  }
  .m-b-350--s500 {
    margin-bottom: -350px !important;
  }
  .p-l-350-s500 {
    padding-left: 350px !important;
  }
  .p-r-350-s500 {
    padding-right: 350px !important;
  }
  .p-t-350-s500 {
    padding-top: 350px !important;
  }
  .p-b-350-s500 {
    padding-bottom: 350px !important;
  }
  .m-l-400-s500 {
    margin-left: 400px !important;
  }
  .m-l-400--s500 {
    margin-left: -400px !important;
  }
  .m-r-400-s500 {
    margin-right: 400px !important;
  }
  .m-r-400--s500 {
    margin-right: -400px !important;
  }
  .m-t-400-s500 {
    margin-top: 400px !important;
  }
  .m-t-400--s500 {
    margin-top: -400px !important;
  }
  .m-b-400-s500 {
    margin-bottom: 400px !important;
  }
  .m-b-400--s500 {
    margin-bottom: -400px !important;
  }
  .p-l-400-s500 {
    padding-left: 400px !important;
  }
  .p-r-400-s500 {
    padding-right: 400px !important;
  }
  .p-t-400-s500 {
    padding-top: 400px !important;
  }
  .p-b-400-s500 {
    padding-bottom: 400px !important;
  }
  .h-auto-s500 {
    height: auto !important;
  }
  .h-0-s500 {
    height: 0 !important;
  }
  .h-25vh-s500 {
    height: 25vh !important;
  }
  .h-50vh-s500 {
    height: 50vh !important;
  }
  .h-75vh-s500 {
    height: 75vh !important;
  }
  .h-80vh-s500 {
    height: 80vh !important;
  }
  .h-90vh-s500 {
    height: 90vh !important;
  }
  .h-95vh-s500 {
    height: 95vh !important;
  }
  .h-100vh-s500 {
    height: 100vh !important;
  }
  .min-w-0-s500 {
    min-width: auto !important;
  }
  .min-h-50-s500 {
    min-height: 50px !important;
  }
  .min-h-100-s500 {
    min-height: 100px !important;
  }
  .min-h-150-s500 {
    min-height: 150px !important;
  }
  .min-h-200-s500 {
    min-height: 200px !important;
  }
  .min-h-250-s500 {
    min-height: 250px !important;
  }
  .min-h-300-s500 {
    min-height: 300px !important;
  }
  .min-h-350-s500 {
    min-height: 350px !important;
  }
  .min-h-400-s500 {
    min-height: 400px !important;
  }
  .min-h-450-s500 {
    min-height: 450px !important;
  }
  .min-h-500-s500 {
    min-height: 500px !important;
  }
  .min-h-550-s500 {
    min-height: 550px !important;
  }
  .min-h-600-s500 {
    min-height: 600px !important;
  }
  /* resets */
  .t-none--s500 {
    transform: none !important;
  }
  .l-0-s500 {
    left: 0 !important;
  }
  .r-0-s500 {
    right: 0 !important;
  }
  .t-0-s500 {
    top: 0 !important;
  }
  .b-0-s500 {
    bottom: 0 !important;
  }
  .s-00p-s500 {
    transform: scale(0) !important;
  }
  .s-10p-s500 {
    transform: scale(0.1) !important;
  }
  .s-20p-s500 {
    transform: scale(0.2) !important;
  }
  .s-30p-s500 {
    transform: scale(0.3) !important;
  }
  .s-40p-s500 {
    transform: scale(0.4) !important;
  }
  .s-50p-s500 {
    transform: scale(0.5) !important;
  }
  .s-60p-s500 {
    transform: scale(0.6) !important;
  }
  .s-70p-s500 {
    transform: scale(0.7) !important;
  }
  .s-80p-s500 {
    transform: scale(0.8) !important;
  }
  .s-90p-s500 {
    transform: scale(0.9) !important;
  }
  .s-100p-s500 {
    transform: scale(1) !important;
  }
}

/*# sourceMappingURL=cuppa.css.map */
