@charset "UTF-8";
/* Master Stylesheet
 * Version: @@version
 *
 * Coded by VLThemes
 *
 * 01. Helpers
 * 02. Plugins
 * 03. Base
 * 04. Partials
 * 05. Components
 */
/* 01. Helpers */
@-webkit-keyframes animate-icon-up {
  49% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes animate-icon-up {
  49% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes animate-icon-down {
  49% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes animate-icon-down {
  49% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes animate-icon-right {
  49% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes animate-icon-right {
  49% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes animate-icon-left {
  49% {
    opacity: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  51% {
    opacity: 1;
  }
}
@keyframes animate-icon-left {
  49% {
    opacity: 0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  50% {
    opacity: 0;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
  }
  51% {
    opacity: 1;
  }
}
@-webkit-keyframes pagination-custom-active {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes pagination-custom-active {
  0% {
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.page-navigation .page-navigation-prev:hover svg, .swiper-button-prev:hover svg {
  -webkit-animation: animate-icon-left 225ms linear forwards;
          animation: animate-icon-left 225ms linear forwards;
}

.page-navigation .page-navigation-next:hover svg, .service-case:hover .service-case-arrow svg, .service-card:hover .service-card-arrow svg, .service-line:hover .service-line-arrow svg, .service-box:hover .service-box-arrow svg, .swiper-button-next:hover svg {
  -webkit-animation: animate-icon-right 225ms linear forwards;
          animation: animate-icon-right 225ms linear forwards;
}

.down-arrow:hover svg {
  -webkit-animation: animate-icon-down 225ms linear forwards;
          animation: animate-icon-down 225ms linear forwards;
}

.member:hover .member-image img, .gallery-item:hover img, .service-case:hover .service-case-image img, .service-card:hover .service-card-image img, .industry:hover img, .card-portfolio.card-hover-appearance:hover .card-img img, .card-portfolio.card-hover-appearance:focus .card-img img, .card-hover-zoom:hover img, .card-hover-zoom:focus img,
.card-hover-zoom .card-img:hover img,
.card-hover-zoom .card-img:focus img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

/* 02. Plugins */
/*!
 * Bootstrap v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-blue: #0d6efd;
  --bs-indigo: #6610f2;
  --bs-purple: #6f42c1;
  --bs-pink: #d63384;
  --bs-red: #dc3545;
  --bs-orange: #fd7e14;
  --bs-yellow: #ffc107;
  --bs-green: #198754;
  --bs-teal: #20c997;
  --bs-cyan: #0dcaf0;
  --bs-white: #fff;
  --bs-gray: #858589;
  --bs-gray-dark: #343a40;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #B1B1B4;
  --bs-gray-600: #858589;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #0d6efd;
  --bs-secondary: #858589;
  --bs-success: #198754;
  --bs-info: #0dcaf0;
  --bs-warning: #ffc107;
  --bs-danger: #dc3545;
  --bs-light: #F5F5F7;
  --bs-dark: #17161A;
  --bs-primary-rgb: 13, 110, 253;
  --bs-secondary-rgb: 133, 133, 137;
  --bs-success-rgb: 25, 135, 84;
  --bs-info-rgb: 13, 202, 240;
  --bs-warning-rgb: 255, 193, 7;
  --bs-danger-rgb: 220, 53, 69;
  --bs-light-rgb: 245, 245, 247;
  --bs-dark-rgb: 23, 22, 26;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 23, 22, 26;
  --bs-body-color-rgb: 23, 22, 26;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: Inter, sans-serif;
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #17161A;
  --bs-body-bg: #fff;
}

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(23, 22, 26, 0);
}

hr {
  margin: 3.33333rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

hr:not([size]) {
  height: 1px;
}

h6, .h6, h5, .h5, h4, .h4, h3, .h3, h2, .h2, h1, .h1 {
  margin-top: 0;
  margin-bottom: 1.666665rem;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.2;
}

h1, .h1 {
  font-size: calc(1.375rem + 1.5vw);
}
@media (min-width: 1200px) {
  h1, .h1 {
    font-size: 2.5rem;
  }
}

h2, .h2 {
  font-size: calc(1.325rem + 0.9vw);
}
@media (min-width: 1200px) {
  h2, .h2 {
    font-size: 2rem;
  }
}

h3, .h3 {
  font-size: calc(1.3rem + 0.6vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.75rem;
  }
}

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw);
}
@media (min-width: 1200px) {
  h4, .h4 {
    font-size: 1.5rem;
  }
}

h5, .h5 {
  font-size: 1.25rem;
}

h6, .h6 {
  font-size: 1rem;
}

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

abbr[title],
abbr[data-bs-original-title] {
  -webkit-text-decoration: underline dotted;
     -moz-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul {
  padding-left: 2rem;
}

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

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

dt {
  font-weight: 700;
}

dd {
  margin-bottom: 0.5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small, .small {
  font-size: 0.875em;
}

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

sub,
sup {
  position: relative;
  font-size: 0.75em;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

a {
  color: #0d6efd;
  text-decoration: underline;
}
a:hover {
  color: #0a58ca;
}

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

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override;
}

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em;
}
pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

code {
  font-size: 0.875em;
  color: #d63384;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 10px;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 700;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

table {
  caption-side: bottom;
  border-collapse: collapse;
}

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #858589;
  text-align: left;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0;
}

label {
  display: inline-block;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
select {
  text-transform: none;
}

[role=button] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}
select:disabled {
  opacity: 1;
}

[list]::-webkit-calendar-picker-indicator {
  display: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}
button:not(:disabled),
[type=button]:not(:disabled),
[type=reset]:not(:disabled),
[type=submit]:not(:disabled) {
  cursor: pointer;
}

::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit;
}
@media (min-width: 1200px) {
  legend {
    font-size: 1.5rem;
  }
}
legend + * {
  clear: left;
}

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0;
}

::-webkit-inner-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
  -webkit-appearance: textfield;
}

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-color-swatch-wrapper {
  padding: 0;
}

::-webkit-file-upload-button {
  font: inherit;
}

::file-selector-button {
  font: inherit;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

iframe {
  border: 0;
}

summary {
  display: list-item;
  cursor: pointer;
}

progress {
  vertical-align: baseline;
}

[hidden] {
  display: none !important;
}

.lead {
  font-size: 1.25em;
  font-weight: 300;
}

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-1 {
    font-size: 5rem;
  }
}

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-2 {
    font-size: 4.5rem;
  }
}

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-4 {
    font-size: 3.5rem;
  }
}

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 700;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.2;
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}
.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 0.875em;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 3.33333rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

.blockquote-footer {
  margin-top: -3.33333rem;
  margin-bottom: 3.33333rem;
  font-size: 0.875em;
  color: #858589;
}
.blockquote-footer::before {
  content: "— ";
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 14px;
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

.figure-img {
  margin-bottom: 1.666665rem;
  line-height: 1;
}

.figure-caption {
  font-size: 0.875em;
  color: #858589;
}

.container,
.container-fluid,
.container-xl,
.container-lg,
.container-md,
.container-sm {
  width: 100%;
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 620px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 828px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 1024px) {
  .container-lg, .container-md, .container-sm, .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1200px;
  }
}
.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

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

.row-cols-auto > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.6666666667%;
}

.row-cols-7 > * {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 14.2857142857%;
}

.col-auto {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
}

.col-1 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 100%;
}

.offset-1 {
  margin-left: 8.33333333%;
}

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

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

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

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

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

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

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

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

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

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

.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}

.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}

.g-1,
.gx-1 {
  --bs-gutter-x: 1px;
}

.g-1,
.gy-1 {
  --bs-gutter-y: 1px;
}

.g-2,
.gx-2 {
  --bs-gutter-x: 2px;
}

.g-2,
.gy-2 {
  --bs-gutter-y: 2px;
}

.g-3,
.gx-3 {
  --bs-gutter-x: 3px;
}

.g-3,
.gy-3 {
  --bs-gutter-y: 3px;
}

.g-4,
.gx-4 {
  --bs-gutter-x: 4px;
}

.g-4,
.gy-4 {
  --bs-gutter-y: 4px;
}

.g-5,
.gx-5 {
  --bs-gutter-x: 5px;
}

.g-5,
.gy-5 {
  --bs-gutter-y: 5px;
}

.g-6,
.gx-6 {
  --bs-gutter-x: 6px;
}

.g-6,
.gy-6 {
  --bs-gutter-y: 6px;
}

.g-7,
.gx-7 {
  --bs-gutter-x: 7px;
}

.g-7,
.gy-7 {
  --bs-gutter-y: 7px;
}

.g-8,
.gx-8 {
  --bs-gutter-x: 8px;
}

.g-8,
.gy-8 {
  --bs-gutter-y: 8px;
}

.g-9,
.gx-9 {
  --bs-gutter-x: 9px;
}

.g-9,
.gy-9 {
  --bs-gutter-y: 9px;
}

.g-10,
.gx-10 {
  --bs-gutter-x: 10px;
}

.g-10,
.gy-10 {
  --bs-gutter-y: 10px;
}

.g-11,
.gx-11 {
  --bs-gutter-x: 11px;
}

.g-11,
.gy-11 {
  --bs-gutter-y: 11px;
}

.g-12,
.gx-12 {
  --bs-gutter-x: 12px;
}

.g-12,
.gy-12 {
  --bs-gutter-y: 12px;
}

.g-13,
.gx-13 {
  --bs-gutter-x: 13px;
}

.g-13,
.gy-13 {
  --bs-gutter-y: 13px;
}

.g-15,
.gx-15 {
  --bs-gutter-x: 15px;
}

.g-15,
.gy-15 {
  --bs-gutter-y: 15px;
}

.g-17,
.gx-17 {
  --bs-gutter-x: 17px;
}

.g-17,
.gy-17 {
  --bs-gutter-y: 17px;
}

.g-18,
.gx-18 {
  --bs-gutter-x: 18px;
}

.g-18,
.gy-18 {
  --bs-gutter-y: 18px;
}

.g-20,
.gx-20 {
  --bs-gutter-x: 20px;
}

.g-20,
.gy-20 {
  --bs-gutter-y: 20px;
}

.g-25,
.gx-25 {
  --bs-gutter-x: 25px;
}

.g-25,
.gy-25 {
  --bs-gutter-y: 25px;
}

.g-30,
.gx-30 {
  --bs-gutter-x: 30px;
}

.g-30,
.gy-30 {
  --bs-gutter-y: 30px;
}

.g-35,
.gx-35 {
  --bs-gutter-x: 35px;
}

.g-35,
.gy-35 {
  --bs-gutter-y: 35px;
}

.g-40,
.gx-40 {
  --bs-gutter-x: 40px;
}

.g-40,
.gy-40 {
  --bs-gutter-y: 40px;
}

.g-45,
.gx-45 {
  --bs-gutter-x: 45px;
}

.g-45,
.gy-45 {
  --bs-gutter-y: 45px;
}

.g-50,
.gx-50 {
  --bs-gutter-x: 50px;
}

.g-50,
.gy-50 {
  --bs-gutter-y: 50px;
}

.g-55,
.gx-55 {
  --bs-gutter-x: 55px;
}

.g-55,
.gy-55 {
  --bs-gutter-y: 55px;
}

.g-60,
.gx-60 {
  --bs-gutter-x: 60px;
}

.g-60,
.gy-60 {
  --bs-gutter-y: 60px;
}

.g-65,
.gx-65 {
  --bs-gutter-x: 65px;
}

.g-65,
.gy-65 {
  --bs-gutter-y: 65px;
}

.g-70,
.gx-70 {
  --bs-gutter-x: 70px;
}

.g-70,
.gy-70 {
  --bs-gutter-y: 70px;
}

.g-75,
.gx-75 {
  --bs-gutter-x: 75px;
}

.g-75,
.gy-75 {
  --bs-gutter-y: 75px;
}

.g-80,
.gx-80 {
  --bs-gutter-x: 80px;
}

.g-80,
.gy-80 {
  --bs-gutter-y: 80px;
}

.g-90,
.gx-90 {
  --bs-gutter-x: 90px;
}

.g-90,
.gy-90 {
  --bs-gutter-y: 90px;
}

.g-95,
.gx-95 {
  --bs-gutter-x: 95px;
}

.g-95,
.gy-95 {
  --bs-gutter-y: 95px;
}

.g-100,
.gx-100 {
  --bs-gutter-x: 100px;
}

.g-100,
.gy-100 {
  --bs-gutter-y: 100px;
}

.g-110,
.gx-110 {
  --bs-gutter-x: 110px;
}

.g-110,
.gy-110 {
  --bs-gutter-y: 110px;
}

.g-115,
.gx-115 {
  --bs-gutter-x: 115px;
}

.g-115,
.gy-115 {
  --bs-gutter-y: 115px;
}

.g-120,
.gx-120 {
  --bs-gutter-x: 120px;
}

.g-120,
.gy-120 {
  --bs-gutter-y: 120px;
}

.g-130,
.gx-130 {
  --bs-gutter-x: 130px;
}

.g-130,
.gy-130 {
  --bs-gutter-y: 130px;
}

.g-150,
.gx-150 {
  --bs-gutter-x: 150px;
}

.g-150,
.gy-150 {
  --bs-gutter-y: 150px;
}

.g-160,
.gx-160 {
  --bs-gutter-x: 160px;
}

.g-160,
.gy-160 {
  --bs-gutter-y: 160px;
}

.g-180,
.gx-180 {
  --bs-gutter-x: 180px;
}

.g-180,
.gy-180 {
  --bs-gutter-y: 180px;
}

.g-190,
.gx-190 {
  --bs-gutter-x: 190px;
}

.g-190,
.gy-190 {
  --bs-gutter-y: 190px;
}

.g-200,
.gx-200 {
  --bs-gutter-x: 200px;
}

.g-200,
.gy-200 {
  --bs-gutter-y: 200px;
}

.g-210,
.gx-210 {
  --bs-gutter-x: 210px;
}

.g-210,
.gy-210 {
  --bs-gutter-y: 210px;
}

.g-235,
.gx-235 {
  --bs-gutter-x: 235px;
}

.g-235,
.gy-235 {
  --bs-gutter-y: 235px;
}

.g-240,
.gx-240 {
  --bs-gutter-x: 240px;
}

.g-240,
.gy-240 {
  --bs-gutter-y: 240px;
}

.g-270,
.gx-270 {
  --bs-gutter-x: 270px;
}

.g-270,
.gy-270 {
  --bs-gutter-y: 270px;
}

.g-290,
.gx-290 {
  --bs-gutter-x: 290px;
}

.g-290,
.gy-290 {
  --bs-gutter-y: 290px;
}

.g-300,
.gx-300 {
  --bs-gutter-x: 300px;
}

.g-300,
.gy-300 {
  --bs-gutter-y: 300px;
}

@media (min-width: 620px) {
  .col-sm {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-sm-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .row-cols-sm-7 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 14.2857142857%;
  }

  .col-sm-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-sm-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-sm-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-sm-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-sm-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-sm-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-sm-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-sm-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-sm-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-sm-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-sm-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-sm-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-sm-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-sm-0 {
    margin-left: 0;
  }

  .offset-sm-1 {
    margin-left: 8.33333333%;
  }

  .offset-sm-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-sm-4 {
    margin-left: 33.33333333%;
  }

  .offset-sm-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-sm-7 {
    margin-left: 58.33333333%;
  }

  .offset-sm-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-sm-10 {
    margin-left: 83.33333333%;
  }

  .offset-sm-11 {
    margin-left: 91.66666667%;
  }

  .g-sm-0,
.gx-sm-0 {
    --bs-gutter-x: 0;
  }

  .g-sm-0,
.gy-sm-0 {
    --bs-gutter-y: 0;
  }

  .g-sm-1,
.gx-sm-1 {
    --bs-gutter-x: 1px;
  }

  .g-sm-1,
.gy-sm-1 {
    --bs-gutter-y: 1px;
  }

  .g-sm-2,
.gx-sm-2 {
    --bs-gutter-x: 2px;
  }

  .g-sm-2,
.gy-sm-2 {
    --bs-gutter-y: 2px;
  }

  .g-sm-3,
.gx-sm-3 {
    --bs-gutter-x: 3px;
  }

  .g-sm-3,
.gy-sm-3 {
    --bs-gutter-y: 3px;
  }

  .g-sm-4,
.gx-sm-4 {
    --bs-gutter-x: 4px;
  }

  .g-sm-4,
.gy-sm-4 {
    --bs-gutter-y: 4px;
  }

  .g-sm-5,
.gx-sm-5 {
    --bs-gutter-x: 5px;
  }

  .g-sm-5,
.gy-sm-5 {
    --bs-gutter-y: 5px;
  }

  .g-sm-6,
.gx-sm-6 {
    --bs-gutter-x: 6px;
  }

  .g-sm-6,
.gy-sm-6 {
    --bs-gutter-y: 6px;
  }

  .g-sm-7,
.gx-sm-7 {
    --bs-gutter-x: 7px;
  }

  .g-sm-7,
.gy-sm-7 {
    --bs-gutter-y: 7px;
  }

  .g-sm-8,
.gx-sm-8 {
    --bs-gutter-x: 8px;
  }

  .g-sm-8,
.gy-sm-8 {
    --bs-gutter-y: 8px;
  }

  .g-sm-9,
.gx-sm-9 {
    --bs-gutter-x: 9px;
  }

  .g-sm-9,
.gy-sm-9 {
    --bs-gutter-y: 9px;
  }

  .g-sm-10,
.gx-sm-10 {
    --bs-gutter-x: 10px;
  }

  .g-sm-10,
.gy-sm-10 {
    --bs-gutter-y: 10px;
  }

  .g-sm-11,
.gx-sm-11 {
    --bs-gutter-x: 11px;
  }

  .g-sm-11,
.gy-sm-11 {
    --bs-gutter-y: 11px;
  }

  .g-sm-12,
.gx-sm-12 {
    --bs-gutter-x: 12px;
  }

  .g-sm-12,
.gy-sm-12 {
    --bs-gutter-y: 12px;
  }

  .g-sm-13,
.gx-sm-13 {
    --bs-gutter-x: 13px;
  }

  .g-sm-13,
.gy-sm-13 {
    --bs-gutter-y: 13px;
  }

  .g-sm-15,
.gx-sm-15 {
    --bs-gutter-x: 15px;
  }

  .g-sm-15,
.gy-sm-15 {
    --bs-gutter-y: 15px;
  }

  .g-sm-17,
.gx-sm-17 {
    --bs-gutter-x: 17px;
  }

  .g-sm-17,
.gy-sm-17 {
    --bs-gutter-y: 17px;
  }

  .g-sm-18,
.gx-sm-18 {
    --bs-gutter-x: 18px;
  }

  .g-sm-18,
.gy-sm-18 {
    --bs-gutter-y: 18px;
  }

  .g-sm-20,
.gx-sm-20 {
    --bs-gutter-x: 20px;
  }

  .g-sm-20,
.gy-sm-20 {
    --bs-gutter-y: 20px;
  }

  .g-sm-25,
.gx-sm-25 {
    --bs-gutter-x: 25px;
  }

  .g-sm-25,
.gy-sm-25 {
    --bs-gutter-y: 25px;
  }

  .g-sm-30,
.gx-sm-30 {
    --bs-gutter-x: 30px;
  }

  .g-sm-30,
.gy-sm-30 {
    --bs-gutter-y: 30px;
  }

  .g-sm-35,
.gx-sm-35 {
    --bs-gutter-x: 35px;
  }

  .g-sm-35,
.gy-sm-35 {
    --bs-gutter-y: 35px;
  }

  .g-sm-40,
.gx-sm-40 {
    --bs-gutter-x: 40px;
  }

  .g-sm-40,
.gy-sm-40 {
    --bs-gutter-y: 40px;
  }

  .g-sm-45,
.gx-sm-45 {
    --bs-gutter-x: 45px;
  }

  .g-sm-45,
.gy-sm-45 {
    --bs-gutter-y: 45px;
  }

  .g-sm-50,
.gx-sm-50 {
    --bs-gutter-x: 50px;
  }

  .g-sm-50,
.gy-sm-50 {
    --bs-gutter-y: 50px;
  }

  .g-sm-55,
.gx-sm-55 {
    --bs-gutter-x: 55px;
  }

  .g-sm-55,
.gy-sm-55 {
    --bs-gutter-y: 55px;
  }

  .g-sm-60,
.gx-sm-60 {
    --bs-gutter-x: 60px;
  }

  .g-sm-60,
.gy-sm-60 {
    --bs-gutter-y: 60px;
  }

  .g-sm-65,
.gx-sm-65 {
    --bs-gutter-x: 65px;
  }

  .g-sm-65,
.gy-sm-65 {
    --bs-gutter-y: 65px;
  }

  .g-sm-70,
.gx-sm-70 {
    --bs-gutter-x: 70px;
  }

  .g-sm-70,
.gy-sm-70 {
    --bs-gutter-y: 70px;
  }

  .g-sm-75,
.gx-sm-75 {
    --bs-gutter-x: 75px;
  }

  .g-sm-75,
.gy-sm-75 {
    --bs-gutter-y: 75px;
  }

  .g-sm-80,
.gx-sm-80 {
    --bs-gutter-x: 80px;
  }

  .g-sm-80,
.gy-sm-80 {
    --bs-gutter-y: 80px;
  }

  .g-sm-90,
.gx-sm-90 {
    --bs-gutter-x: 90px;
  }

  .g-sm-90,
.gy-sm-90 {
    --bs-gutter-y: 90px;
  }

  .g-sm-95,
.gx-sm-95 {
    --bs-gutter-x: 95px;
  }

  .g-sm-95,
.gy-sm-95 {
    --bs-gutter-y: 95px;
  }

  .g-sm-100,
.gx-sm-100 {
    --bs-gutter-x: 100px;
  }

  .g-sm-100,
.gy-sm-100 {
    --bs-gutter-y: 100px;
  }

  .g-sm-110,
.gx-sm-110 {
    --bs-gutter-x: 110px;
  }

  .g-sm-110,
.gy-sm-110 {
    --bs-gutter-y: 110px;
  }

  .g-sm-115,
.gx-sm-115 {
    --bs-gutter-x: 115px;
  }

  .g-sm-115,
.gy-sm-115 {
    --bs-gutter-y: 115px;
  }

  .g-sm-120,
.gx-sm-120 {
    --bs-gutter-x: 120px;
  }

  .g-sm-120,
.gy-sm-120 {
    --bs-gutter-y: 120px;
  }

  .g-sm-130,
.gx-sm-130 {
    --bs-gutter-x: 130px;
  }

  .g-sm-130,
.gy-sm-130 {
    --bs-gutter-y: 130px;
  }

  .g-sm-150,
.gx-sm-150 {
    --bs-gutter-x: 150px;
  }

  .g-sm-150,
.gy-sm-150 {
    --bs-gutter-y: 150px;
  }

  .g-sm-160,
.gx-sm-160 {
    --bs-gutter-x: 160px;
  }

  .g-sm-160,
.gy-sm-160 {
    --bs-gutter-y: 160px;
  }

  .g-sm-180,
.gx-sm-180 {
    --bs-gutter-x: 180px;
  }

  .g-sm-180,
.gy-sm-180 {
    --bs-gutter-y: 180px;
  }

  .g-sm-190,
.gx-sm-190 {
    --bs-gutter-x: 190px;
  }

  .g-sm-190,
.gy-sm-190 {
    --bs-gutter-y: 190px;
  }

  .g-sm-200,
.gx-sm-200 {
    --bs-gutter-x: 200px;
  }

  .g-sm-200,
.gy-sm-200 {
    --bs-gutter-y: 200px;
  }

  .g-sm-210,
.gx-sm-210 {
    --bs-gutter-x: 210px;
  }

  .g-sm-210,
.gy-sm-210 {
    --bs-gutter-y: 210px;
  }

  .g-sm-235,
.gx-sm-235 {
    --bs-gutter-x: 235px;
  }

  .g-sm-235,
.gy-sm-235 {
    --bs-gutter-y: 235px;
  }

  .g-sm-240,
.gx-sm-240 {
    --bs-gutter-x: 240px;
  }

  .g-sm-240,
.gy-sm-240 {
    --bs-gutter-y: 240px;
  }

  .g-sm-270,
.gx-sm-270 {
    --bs-gutter-x: 270px;
  }

  .g-sm-270,
.gy-sm-270 {
    --bs-gutter-y: 270px;
  }

  .g-sm-290,
.gx-sm-290 {
    --bs-gutter-x: 290px;
  }

  .g-sm-290,
.gy-sm-290 {
    --bs-gutter-y: 290px;
  }

  .g-sm-300,
.gx-sm-300 {
    --bs-gutter-x: 300px;
  }

  .g-sm-300,
.gy-sm-300 {
    --bs-gutter-y: 300px;
  }
}
@media (min-width: 828px) {
  .col-md {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .row-cols-md-7 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 14.2857142857%;
  }

  .col-md-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-md-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-md-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-md-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-md-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-md-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-md-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-md-0 {
    margin-left: 0;
  }

  .offset-md-1 {
    margin-left: 8.33333333%;
  }

  .offset-md-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-md-4 {
    margin-left: 33.33333333%;
  }

  .offset-md-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-md-7 {
    margin-left: 58.33333333%;
  }

  .offset-md-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-md-10 {
    margin-left: 83.33333333%;
  }

  .offset-md-11 {
    margin-left: 91.66666667%;
  }

  .g-md-0,
.gx-md-0 {
    --bs-gutter-x: 0;
  }

  .g-md-0,
.gy-md-0 {
    --bs-gutter-y: 0;
  }

  .g-md-1,
.gx-md-1 {
    --bs-gutter-x: 1px;
  }

  .g-md-1,
.gy-md-1 {
    --bs-gutter-y: 1px;
  }

  .g-md-2,
.gx-md-2 {
    --bs-gutter-x: 2px;
  }

  .g-md-2,
.gy-md-2 {
    --bs-gutter-y: 2px;
  }

  .g-md-3,
.gx-md-3 {
    --bs-gutter-x: 3px;
  }

  .g-md-3,
.gy-md-3 {
    --bs-gutter-y: 3px;
  }

  .g-md-4,
.gx-md-4 {
    --bs-gutter-x: 4px;
  }

  .g-md-4,
.gy-md-4 {
    --bs-gutter-y: 4px;
  }

  .g-md-5,
.gx-md-5 {
    --bs-gutter-x: 5px;
  }

  .g-md-5,
.gy-md-5 {
    --bs-gutter-y: 5px;
  }

  .g-md-6,
.gx-md-6 {
    --bs-gutter-x: 6px;
  }

  .g-md-6,
.gy-md-6 {
    --bs-gutter-y: 6px;
  }

  .g-md-7,
.gx-md-7 {
    --bs-gutter-x: 7px;
  }

  .g-md-7,
.gy-md-7 {
    --bs-gutter-y: 7px;
  }

  .g-md-8,
.gx-md-8 {
    --bs-gutter-x: 8px;
  }

  .g-md-8,
.gy-md-8 {
    --bs-gutter-y: 8px;
  }

  .g-md-9,
.gx-md-9 {
    --bs-gutter-x: 9px;
  }

  .g-md-9,
.gy-md-9 {
    --bs-gutter-y: 9px;
  }

  .g-md-10,
.gx-md-10 {
    --bs-gutter-x: 10px;
  }

  .g-md-10,
.gy-md-10 {
    --bs-gutter-y: 10px;
  }

  .g-md-11,
.gx-md-11 {
    --bs-gutter-x: 11px;
  }

  .g-md-11,
.gy-md-11 {
    --bs-gutter-y: 11px;
  }

  .g-md-12,
.gx-md-12 {
    --bs-gutter-x: 12px;
  }

  .g-md-12,
.gy-md-12 {
    --bs-gutter-y: 12px;
  }

  .g-md-13,
.gx-md-13 {
    --bs-gutter-x: 13px;
  }

  .g-md-13,
.gy-md-13 {
    --bs-gutter-y: 13px;
  }

  .g-md-15,
.gx-md-15 {
    --bs-gutter-x: 15px;
  }

  .g-md-15,
.gy-md-15 {
    --bs-gutter-y: 15px;
  }

  .g-md-17,
.gx-md-17 {
    --bs-gutter-x: 17px;
  }

  .g-md-17,
.gy-md-17 {
    --bs-gutter-y: 17px;
  }

  .g-md-18,
.gx-md-18 {
    --bs-gutter-x: 18px;
  }

  .g-md-18,
.gy-md-18 {
    --bs-gutter-y: 18px;
  }

  .g-md-20,
.gx-md-20 {
    --bs-gutter-x: 20px;
  }

  .g-md-20,
.gy-md-20 {
    --bs-gutter-y: 20px;
  }

  .g-md-25,
.gx-md-25 {
    --bs-gutter-x: 25px;
  }

  .g-md-25,
.gy-md-25 {
    --bs-gutter-y: 25px;
  }

  .g-md-30,
.gx-md-30 {
    --bs-gutter-x: 30px;
  }

  .g-md-30,
.gy-md-30 {
    --bs-gutter-y: 30px;
  }

  .g-md-35,
.gx-md-35 {
    --bs-gutter-x: 35px;
  }

  .g-md-35,
.gy-md-35 {
    --bs-gutter-y: 35px;
  }

  .g-md-40,
.gx-md-40 {
    --bs-gutter-x: 40px;
  }

  .g-md-40,
.gy-md-40 {
    --bs-gutter-y: 40px;
  }

  .g-md-45,
.gx-md-45 {
    --bs-gutter-x: 45px;
  }

  .g-md-45,
.gy-md-45 {
    --bs-gutter-y: 45px;
  }

  .g-md-50,
.gx-md-50 {
    --bs-gutter-x: 50px;
  }

  .g-md-50,
.gy-md-50 {
    --bs-gutter-y: 50px;
  }

  .g-md-55,
.gx-md-55 {
    --bs-gutter-x: 55px;
  }

  .g-md-55,
.gy-md-55 {
    --bs-gutter-y: 55px;
  }

  .g-md-60,
.gx-md-60 {
    --bs-gutter-x: 60px;
  }

  .g-md-60,
.gy-md-60 {
    --bs-gutter-y: 60px;
  }

  .g-md-65,
.gx-md-65 {
    --bs-gutter-x: 65px;
  }

  .g-md-65,
.gy-md-65 {
    --bs-gutter-y: 65px;
  }

  .g-md-70,
.gx-md-70 {
    --bs-gutter-x: 70px;
  }

  .g-md-70,
.gy-md-70 {
    --bs-gutter-y: 70px;
  }

  .g-md-75,
.gx-md-75 {
    --bs-gutter-x: 75px;
  }

  .g-md-75,
.gy-md-75 {
    --bs-gutter-y: 75px;
  }

  .g-md-80,
.gx-md-80 {
    --bs-gutter-x: 80px;
  }

  .g-md-80,
.gy-md-80 {
    --bs-gutter-y: 80px;
  }

  .g-md-90,
.gx-md-90 {
    --bs-gutter-x: 90px;
  }

  .g-md-90,
.gy-md-90 {
    --bs-gutter-y: 90px;
  }

  .g-md-95,
.gx-md-95 {
    --bs-gutter-x: 95px;
  }

  .g-md-95,
.gy-md-95 {
    --bs-gutter-y: 95px;
  }

  .g-md-100,
.gx-md-100 {
    --bs-gutter-x: 100px;
  }

  .g-md-100,
.gy-md-100 {
    --bs-gutter-y: 100px;
  }

  .g-md-110,
.gx-md-110 {
    --bs-gutter-x: 110px;
  }

  .g-md-110,
.gy-md-110 {
    --bs-gutter-y: 110px;
  }

  .g-md-115,
.gx-md-115 {
    --bs-gutter-x: 115px;
  }

  .g-md-115,
.gy-md-115 {
    --bs-gutter-y: 115px;
  }

  .g-md-120,
.gx-md-120 {
    --bs-gutter-x: 120px;
  }

  .g-md-120,
.gy-md-120 {
    --bs-gutter-y: 120px;
  }

  .g-md-130,
.gx-md-130 {
    --bs-gutter-x: 130px;
  }

  .g-md-130,
.gy-md-130 {
    --bs-gutter-y: 130px;
  }

  .g-md-150,
.gx-md-150 {
    --bs-gutter-x: 150px;
  }

  .g-md-150,
.gy-md-150 {
    --bs-gutter-y: 150px;
  }

  .g-md-160,
.gx-md-160 {
    --bs-gutter-x: 160px;
  }

  .g-md-160,
.gy-md-160 {
    --bs-gutter-y: 160px;
  }

  .g-md-180,
.gx-md-180 {
    --bs-gutter-x: 180px;
  }

  .g-md-180,
.gy-md-180 {
    --bs-gutter-y: 180px;
  }

  .g-md-190,
.gx-md-190 {
    --bs-gutter-x: 190px;
  }

  .g-md-190,
.gy-md-190 {
    --bs-gutter-y: 190px;
  }

  .g-md-200,
.gx-md-200 {
    --bs-gutter-x: 200px;
  }

  .g-md-200,
.gy-md-200 {
    --bs-gutter-y: 200px;
  }

  .g-md-210,
.gx-md-210 {
    --bs-gutter-x: 210px;
  }

  .g-md-210,
.gy-md-210 {
    --bs-gutter-y: 210px;
  }

  .g-md-235,
.gx-md-235 {
    --bs-gutter-x: 235px;
  }

  .g-md-235,
.gy-md-235 {
    --bs-gutter-y: 235px;
  }

  .g-md-240,
.gx-md-240 {
    --bs-gutter-x: 240px;
  }

  .g-md-240,
.gy-md-240 {
    --bs-gutter-y: 240px;
  }

  .g-md-270,
.gx-md-270 {
    --bs-gutter-x: 270px;
  }

  .g-md-270,
.gy-md-270 {
    --bs-gutter-y: 270px;
  }

  .g-md-290,
.gx-md-290 {
    --bs-gutter-x: 290px;
  }

  .g-md-290,
.gy-md-290 {
    --bs-gutter-y: 290px;
  }

  .g-md-300,
.gx-md-300 {
    --bs-gutter-x: 300px;
  }

  .g-md-300,
.gy-md-300 {
    --bs-gutter-y: 300px;
  }
}
@media (min-width: 1024px) {
  .col-lg {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .row-cols-lg-7 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 14.2857142857%;
  }

  .col-lg-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-lg-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-lg-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-lg-0 {
    margin-left: 0;
  }

  .offset-lg-1 {
    margin-left: 8.33333333%;
  }

  .offset-lg-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-lg-4 {
    margin-left: 33.33333333%;
  }

  .offset-lg-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-lg-7 {
    margin-left: 58.33333333%;
  }

  .offset-lg-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-lg-10 {
    margin-left: 83.33333333%;
  }

  .offset-lg-11 {
    margin-left: 91.66666667%;
  }

  .g-lg-0,
.gx-lg-0 {
    --bs-gutter-x: 0;
  }

  .g-lg-0,
.gy-lg-0 {
    --bs-gutter-y: 0;
  }

  .g-lg-1,
.gx-lg-1 {
    --bs-gutter-x: 1px;
  }

  .g-lg-1,
.gy-lg-1 {
    --bs-gutter-y: 1px;
  }

  .g-lg-2,
.gx-lg-2 {
    --bs-gutter-x: 2px;
  }

  .g-lg-2,
.gy-lg-2 {
    --bs-gutter-y: 2px;
  }

  .g-lg-3,
.gx-lg-3 {
    --bs-gutter-x: 3px;
  }

  .g-lg-3,
.gy-lg-3 {
    --bs-gutter-y: 3px;
  }

  .g-lg-4,
.gx-lg-4 {
    --bs-gutter-x: 4px;
  }

  .g-lg-4,
.gy-lg-4 {
    --bs-gutter-y: 4px;
  }

  .g-lg-5,
.gx-lg-5 {
    --bs-gutter-x: 5px;
  }

  .g-lg-5,
.gy-lg-5 {
    --bs-gutter-y: 5px;
  }

  .g-lg-6,
.gx-lg-6 {
    --bs-gutter-x: 6px;
  }

  .g-lg-6,
.gy-lg-6 {
    --bs-gutter-y: 6px;
  }

  .g-lg-7,
.gx-lg-7 {
    --bs-gutter-x: 7px;
  }

  .g-lg-7,
.gy-lg-7 {
    --bs-gutter-y: 7px;
  }

  .g-lg-8,
.gx-lg-8 {
    --bs-gutter-x: 8px;
  }

  .g-lg-8,
.gy-lg-8 {
    --bs-gutter-y: 8px;
  }

  .g-lg-9,
.gx-lg-9 {
    --bs-gutter-x: 9px;
  }

  .g-lg-9,
.gy-lg-9 {
    --bs-gutter-y: 9px;
  }

  .g-lg-10,
.gx-lg-10 {
    --bs-gutter-x: 10px;
  }

  .g-lg-10,
.gy-lg-10 {
    --bs-gutter-y: 10px;
  }

  .g-lg-11,
.gx-lg-11 {
    --bs-gutter-x: 11px;
  }

  .g-lg-11,
.gy-lg-11 {
    --bs-gutter-y: 11px;
  }

  .g-lg-12,
.gx-lg-12 {
    --bs-gutter-x: 12px;
  }

  .g-lg-12,
.gy-lg-12 {
    --bs-gutter-y: 12px;
  }

  .g-lg-13,
.gx-lg-13 {
    --bs-gutter-x: 13px;
  }

  .g-lg-13,
.gy-lg-13 {
    --bs-gutter-y: 13px;
  }

  .g-lg-15,
.gx-lg-15 {
    --bs-gutter-x: 15px;
  }

  .g-lg-15,
.gy-lg-15 {
    --bs-gutter-y: 15px;
  }

  .g-lg-17,
.gx-lg-17 {
    --bs-gutter-x: 17px;
  }

  .g-lg-17,
.gy-lg-17 {
    --bs-gutter-y: 17px;
  }

  .g-lg-18,
.gx-lg-18 {
    --bs-gutter-x: 18px;
  }

  .g-lg-18,
.gy-lg-18 {
    --bs-gutter-y: 18px;
  }

  .g-lg-20,
.gx-lg-20 {
    --bs-gutter-x: 20px;
  }

  .g-lg-20,
.gy-lg-20 {
    --bs-gutter-y: 20px;
  }

  .g-lg-25,
.gx-lg-25 {
    --bs-gutter-x: 25px;
  }

  .g-lg-25,
.gy-lg-25 {
    --bs-gutter-y: 25px;
  }

  .g-lg-30,
.gx-lg-30 {
    --bs-gutter-x: 30px;
  }

  .g-lg-30,
.gy-lg-30 {
    --bs-gutter-y: 30px;
  }

  .g-lg-35,
.gx-lg-35 {
    --bs-gutter-x: 35px;
  }

  .g-lg-35,
.gy-lg-35 {
    --bs-gutter-y: 35px;
  }

  .g-lg-40,
.gx-lg-40 {
    --bs-gutter-x: 40px;
  }

  .g-lg-40,
.gy-lg-40 {
    --bs-gutter-y: 40px;
  }

  .g-lg-45,
.gx-lg-45 {
    --bs-gutter-x: 45px;
  }

  .g-lg-45,
.gy-lg-45 {
    --bs-gutter-y: 45px;
  }

  .g-lg-50,
.gx-lg-50 {
    --bs-gutter-x: 50px;
  }

  .g-lg-50,
.gy-lg-50 {
    --bs-gutter-y: 50px;
  }

  .g-lg-55,
.gx-lg-55 {
    --bs-gutter-x: 55px;
  }

  .g-lg-55,
.gy-lg-55 {
    --bs-gutter-y: 55px;
  }

  .g-lg-60,
.gx-lg-60 {
    --bs-gutter-x: 60px;
  }

  .g-lg-60,
.gy-lg-60 {
    --bs-gutter-y: 60px;
  }

  .g-lg-65,
.gx-lg-65 {
    --bs-gutter-x: 65px;
  }

  .g-lg-65,
.gy-lg-65 {
    --bs-gutter-y: 65px;
  }

  .g-lg-70,
.gx-lg-70 {
    --bs-gutter-x: 70px;
  }

  .g-lg-70,
.gy-lg-70 {
    --bs-gutter-y: 70px;
  }

  .g-lg-75,
.gx-lg-75 {
    --bs-gutter-x: 75px;
  }

  .g-lg-75,
.gy-lg-75 {
    --bs-gutter-y: 75px;
  }

  .g-lg-80,
.gx-lg-80 {
    --bs-gutter-x: 80px;
  }

  .g-lg-80,
.gy-lg-80 {
    --bs-gutter-y: 80px;
  }

  .g-lg-90,
.gx-lg-90 {
    --bs-gutter-x: 90px;
  }

  .g-lg-90,
.gy-lg-90 {
    --bs-gutter-y: 90px;
  }

  .g-lg-95,
.gx-lg-95 {
    --bs-gutter-x: 95px;
  }

  .g-lg-95,
.gy-lg-95 {
    --bs-gutter-y: 95px;
  }

  .g-lg-100,
.gx-lg-100 {
    --bs-gutter-x: 100px;
  }

  .g-lg-100,
.gy-lg-100 {
    --bs-gutter-y: 100px;
  }

  .g-lg-110,
.gx-lg-110 {
    --bs-gutter-x: 110px;
  }

  .g-lg-110,
.gy-lg-110 {
    --bs-gutter-y: 110px;
  }

  .g-lg-115,
.gx-lg-115 {
    --bs-gutter-x: 115px;
  }

  .g-lg-115,
.gy-lg-115 {
    --bs-gutter-y: 115px;
  }

  .g-lg-120,
.gx-lg-120 {
    --bs-gutter-x: 120px;
  }

  .g-lg-120,
.gy-lg-120 {
    --bs-gutter-y: 120px;
  }

  .g-lg-130,
.gx-lg-130 {
    --bs-gutter-x: 130px;
  }

  .g-lg-130,
.gy-lg-130 {
    --bs-gutter-y: 130px;
  }

  .g-lg-150,
.gx-lg-150 {
    --bs-gutter-x: 150px;
  }

  .g-lg-150,
.gy-lg-150 {
    --bs-gutter-y: 150px;
  }

  .g-lg-160,
.gx-lg-160 {
    --bs-gutter-x: 160px;
  }

  .g-lg-160,
.gy-lg-160 {
    --bs-gutter-y: 160px;
  }

  .g-lg-180,
.gx-lg-180 {
    --bs-gutter-x: 180px;
  }

  .g-lg-180,
.gy-lg-180 {
    --bs-gutter-y: 180px;
  }

  .g-lg-190,
.gx-lg-190 {
    --bs-gutter-x: 190px;
  }

  .g-lg-190,
.gy-lg-190 {
    --bs-gutter-y: 190px;
  }

  .g-lg-200,
.gx-lg-200 {
    --bs-gutter-x: 200px;
  }

  .g-lg-200,
.gy-lg-200 {
    --bs-gutter-y: 200px;
  }

  .g-lg-210,
.gx-lg-210 {
    --bs-gutter-x: 210px;
  }

  .g-lg-210,
.gy-lg-210 {
    --bs-gutter-y: 210px;
  }

  .g-lg-235,
.gx-lg-235 {
    --bs-gutter-x: 235px;
  }

  .g-lg-235,
.gy-lg-235 {
    --bs-gutter-y: 235px;
  }

  .g-lg-240,
.gx-lg-240 {
    --bs-gutter-x: 240px;
  }

  .g-lg-240,
.gy-lg-240 {
    --bs-gutter-y: 240px;
  }

  .g-lg-270,
.gx-lg-270 {
    --bs-gutter-x: 270px;
  }

  .g-lg-270,
.gy-lg-270 {
    --bs-gutter-y: 270px;
  }

  .g-lg-290,
.gx-lg-290 {
    --bs-gutter-x: 290px;
  }

  .g-lg-290,
.gy-lg-290 {
    --bs-gutter-y: 290px;
  }

  .g-lg-300,
.gx-lg-300 {
    --bs-gutter-x: 300px;
  }

  .g-lg-300,
.gy-lg-300 {
    --bs-gutter-y: 300px;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .row-cols-xl-7 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 14.2857142857%;
  }

  .col-xl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-xl-0 {
    margin-left: 0;
  }

  .offset-xl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xl-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-xl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xl-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-xl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xl-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-xl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xl-11 {
    margin-left: 91.66666667%;
  }

  .g-xl-0,
.gx-xl-0 {
    --bs-gutter-x: 0;
  }

  .g-xl-0,
.gy-xl-0 {
    --bs-gutter-y: 0;
  }

  .g-xl-1,
.gx-xl-1 {
    --bs-gutter-x: 1px;
  }

  .g-xl-1,
.gy-xl-1 {
    --bs-gutter-y: 1px;
  }

  .g-xl-2,
.gx-xl-2 {
    --bs-gutter-x: 2px;
  }

  .g-xl-2,
.gy-xl-2 {
    --bs-gutter-y: 2px;
  }

  .g-xl-3,
.gx-xl-3 {
    --bs-gutter-x: 3px;
  }

  .g-xl-3,
.gy-xl-3 {
    --bs-gutter-y: 3px;
  }

  .g-xl-4,
.gx-xl-4 {
    --bs-gutter-x: 4px;
  }

  .g-xl-4,
.gy-xl-4 {
    --bs-gutter-y: 4px;
  }

  .g-xl-5,
.gx-xl-5 {
    --bs-gutter-x: 5px;
  }

  .g-xl-5,
.gy-xl-5 {
    --bs-gutter-y: 5px;
  }

  .g-xl-6,
.gx-xl-6 {
    --bs-gutter-x: 6px;
  }

  .g-xl-6,
.gy-xl-6 {
    --bs-gutter-y: 6px;
  }

  .g-xl-7,
.gx-xl-7 {
    --bs-gutter-x: 7px;
  }

  .g-xl-7,
.gy-xl-7 {
    --bs-gutter-y: 7px;
  }

  .g-xl-8,
.gx-xl-8 {
    --bs-gutter-x: 8px;
  }

  .g-xl-8,
.gy-xl-8 {
    --bs-gutter-y: 8px;
  }

  .g-xl-9,
.gx-xl-9 {
    --bs-gutter-x: 9px;
  }

  .g-xl-9,
.gy-xl-9 {
    --bs-gutter-y: 9px;
  }

  .g-xl-10,
.gx-xl-10 {
    --bs-gutter-x: 10px;
  }

  .g-xl-10,
.gy-xl-10 {
    --bs-gutter-y: 10px;
  }

  .g-xl-11,
.gx-xl-11 {
    --bs-gutter-x: 11px;
  }

  .g-xl-11,
.gy-xl-11 {
    --bs-gutter-y: 11px;
  }

  .g-xl-12,
.gx-xl-12 {
    --bs-gutter-x: 12px;
  }

  .g-xl-12,
.gy-xl-12 {
    --bs-gutter-y: 12px;
  }

  .g-xl-13,
.gx-xl-13 {
    --bs-gutter-x: 13px;
  }

  .g-xl-13,
.gy-xl-13 {
    --bs-gutter-y: 13px;
  }

  .g-xl-15,
.gx-xl-15 {
    --bs-gutter-x: 15px;
  }

  .g-xl-15,
.gy-xl-15 {
    --bs-gutter-y: 15px;
  }

  .g-xl-17,
.gx-xl-17 {
    --bs-gutter-x: 17px;
  }

  .g-xl-17,
.gy-xl-17 {
    --bs-gutter-y: 17px;
  }

  .g-xl-18,
.gx-xl-18 {
    --bs-gutter-x: 18px;
  }

  .g-xl-18,
.gy-xl-18 {
    --bs-gutter-y: 18px;
  }

  .g-xl-20,
.gx-xl-20 {
    --bs-gutter-x: 20px;
  }

  .g-xl-20,
.gy-xl-20 {
    --bs-gutter-y: 20px;
  }

  .g-xl-25,
.gx-xl-25 {
    --bs-gutter-x: 25px;
  }

  .g-xl-25,
.gy-xl-25 {
    --bs-gutter-y: 25px;
  }

  .g-xl-30,
.gx-xl-30 {
    --bs-gutter-x: 30px;
  }

  .g-xl-30,
.gy-xl-30 {
    --bs-gutter-y: 30px;
  }

  .g-xl-35,
.gx-xl-35 {
    --bs-gutter-x: 35px;
  }

  .g-xl-35,
.gy-xl-35 {
    --bs-gutter-y: 35px;
  }

  .g-xl-40,
.gx-xl-40 {
    --bs-gutter-x: 40px;
  }

  .g-xl-40,
.gy-xl-40 {
    --bs-gutter-y: 40px;
  }

  .g-xl-45,
.gx-xl-45 {
    --bs-gutter-x: 45px;
  }

  .g-xl-45,
.gy-xl-45 {
    --bs-gutter-y: 45px;
  }

  .g-xl-50,
.gx-xl-50 {
    --bs-gutter-x: 50px;
  }

  .g-xl-50,
.gy-xl-50 {
    --bs-gutter-y: 50px;
  }

  .g-xl-55,
.gx-xl-55 {
    --bs-gutter-x: 55px;
  }

  .g-xl-55,
.gy-xl-55 {
    --bs-gutter-y: 55px;
  }

  .g-xl-60,
.gx-xl-60 {
    --bs-gutter-x: 60px;
  }

  .g-xl-60,
.gy-xl-60 {
    --bs-gutter-y: 60px;
  }

  .g-xl-65,
.gx-xl-65 {
    --bs-gutter-x: 65px;
  }

  .g-xl-65,
.gy-xl-65 {
    --bs-gutter-y: 65px;
  }

  .g-xl-70,
.gx-xl-70 {
    --bs-gutter-x: 70px;
  }

  .g-xl-70,
.gy-xl-70 {
    --bs-gutter-y: 70px;
  }

  .g-xl-75,
.gx-xl-75 {
    --bs-gutter-x: 75px;
  }

  .g-xl-75,
.gy-xl-75 {
    --bs-gutter-y: 75px;
  }

  .g-xl-80,
.gx-xl-80 {
    --bs-gutter-x: 80px;
  }

  .g-xl-80,
.gy-xl-80 {
    --bs-gutter-y: 80px;
  }

  .g-xl-90,
.gx-xl-90 {
    --bs-gutter-x: 90px;
  }

  .g-xl-90,
.gy-xl-90 {
    --bs-gutter-y: 90px;
  }

  .g-xl-95,
.gx-xl-95 {
    --bs-gutter-x: 95px;
  }

  .g-xl-95,
.gy-xl-95 {
    --bs-gutter-y: 95px;
  }

  .g-xl-100,
.gx-xl-100 {
    --bs-gutter-x: 100px;
  }

  .g-xl-100,
.gy-xl-100 {
    --bs-gutter-y: 100px;
  }

  .g-xl-110,
.gx-xl-110 {
    --bs-gutter-x: 110px;
  }

  .g-xl-110,
.gy-xl-110 {
    --bs-gutter-y: 110px;
  }

  .g-xl-115,
.gx-xl-115 {
    --bs-gutter-x: 115px;
  }

  .g-xl-115,
.gy-xl-115 {
    --bs-gutter-y: 115px;
  }

  .g-xl-120,
.gx-xl-120 {
    --bs-gutter-x: 120px;
  }

  .g-xl-120,
.gy-xl-120 {
    --bs-gutter-y: 120px;
  }

  .g-xl-130,
.gx-xl-130 {
    --bs-gutter-x: 130px;
  }

  .g-xl-130,
.gy-xl-130 {
    --bs-gutter-y: 130px;
  }

  .g-xl-150,
.gx-xl-150 {
    --bs-gutter-x: 150px;
  }

  .g-xl-150,
.gy-xl-150 {
    --bs-gutter-y: 150px;
  }

  .g-xl-160,
.gx-xl-160 {
    --bs-gutter-x: 160px;
  }

  .g-xl-160,
.gy-xl-160 {
    --bs-gutter-y: 160px;
  }

  .g-xl-180,
.gx-xl-180 {
    --bs-gutter-x: 180px;
  }

  .g-xl-180,
.gy-xl-180 {
    --bs-gutter-y: 180px;
  }

  .g-xl-190,
.gx-xl-190 {
    --bs-gutter-x: 190px;
  }

  .g-xl-190,
.gy-xl-190 {
    --bs-gutter-y: 190px;
  }

  .g-xl-200,
.gx-xl-200 {
    --bs-gutter-x: 200px;
  }

  .g-xl-200,
.gy-xl-200 {
    --bs-gutter-y: 200px;
  }

  .g-xl-210,
.gx-xl-210 {
    --bs-gutter-x: 210px;
  }

  .g-xl-210,
.gy-xl-210 {
    --bs-gutter-y: 210px;
  }

  .g-xl-235,
.gx-xl-235 {
    --bs-gutter-x: 235px;
  }

  .g-xl-235,
.gy-xl-235 {
    --bs-gutter-y: 235px;
  }

  .g-xl-240,
.gx-xl-240 {
    --bs-gutter-x: 240px;
  }

  .g-xl-240,
.gy-xl-240 {
    --bs-gutter-y: 240px;
  }

  .g-xl-270,
.gx-xl-270 {
    --bs-gutter-x: 270px;
  }

  .g-xl-270,
.gy-xl-270 {
    --bs-gutter-y: 270px;
  }

  .g-xl-290,
.gx-xl-290 {
    --bs-gutter-x: 290px;
  }

  .g-xl-290,
.gy-xl-290 {
    --bs-gutter-y: 290px;
  }

  .g-xl-300,
.gx-xl-300 {
    --bs-gutter-x: 300px;
  }

  .g-xl-300,
.gy-xl-300 {
    --bs-gutter-y: 300px;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
  }

  .row-cols-xxl-auto > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.6666666667%;
  }

  .row-cols-xxl-7 > * {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 14.2857142857%;
  }

  .col-xxl-auto {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
  }

  .col-xxl-1 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xxl-2 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-xxl-3 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 25%;
  }

  .col-xxl-4 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-xxl-5 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-xxl-6 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 50%;
  }

  .col-xxl-7 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-xxl-8 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-xxl-9 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 75%;
  }

  .col-xxl-10 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 83.33333333%;
  }

  .col-xxl-11 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 91.66666667%;
  }

  .col-xxl-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }

  .offset-xxl-0 {
    margin-left: 0;
  }

  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }

  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }

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

  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }

  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }

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

  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }

  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }

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

  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }

  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }

  .g-xxl-0,
.gx-xxl-0 {
    --bs-gutter-x: 0;
  }

  .g-xxl-0,
.gy-xxl-0 {
    --bs-gutter-y: 0;
  }

  .g-xxl-1,
.gx-xxl-1 {
    --bs-gutter-x: 1px;
  }

  .g-xxl-1,
.gy-xxl-1 {
    --bs-gutter-y: 1px;
  }

  .g-xxl-2,
.gx-xxl-2 {
    --bs-gutter-x: 2px;
  }

  .g-xxl-2,
.gy-xxl-2 {
    --bs-gutter-y: 2px;
  }

  .g-xxl-3,
.gx-xxl-3 {
    --bs-gutter-x: 3px;
  }

  .g-xxl-3,
.gy-xxl-3 {
    --bs-gutter-y: 3px;
  }

  .g-xxl-4,
.gx-xxl-4 {
    --bs-gutter-x: 4px;
  }

  .g-xxl-4,
.gy-xxl-4 {
    --bs-gutter-y: 4px;
  }

  .g-xxl-5,
.gx-xxl-5 {
    --bs-gutter-x: 5px;
  }

  .g-xxl-5,
.gy-xxl-5 {
    --bs-gutter-y: 5px;
  }

  .g-xxl-6,
.gx-xxl-6 {
    --bs-gutter-x: 6px;
  }

  .g-xxl-6,
.gy-xxl-6 {
    --bs-gutter-y: 6px;
  }

  .g-xxl-7,
.gx-xxl-7 {
    --bs-gutter-x: 7px;
  }

  .g-xxl-7,
.gy-xxl-7 {
    --bs-gutter-y: 7px;
  }

  .g-xxl-8,
.gx-xxl-8 {
    --bs-gutter-x: 8px;
  }

  .g-xxl-8,
.gy-xxl-8 {
    --bs-gutter-y: 8px;
  }

  .g-xxl-9,
.gx-xxl-9 {
    --bs-gutter-x: 9px;
  }

  .g-xxl-9,
.gy-xxl-9 {
    --bs-gutter-y: 9px;
  }

  .g-xxl-10,
.gx-xxl-10 {
    --bs-gutter-x: 10px;
  }

  .g-xxl-10,
.gy-xxl-10 {
    --bs-gutter-y: 10px;
  }

  .g-xxl-11,
.gx-xxl-11 {
    --bs-gutter-x: 11px;
  }

  .g-xxl-11,
.gy-xxl-11 {
    --bs-gutter-y: 11px;
  }

  .g-xxl-12,
.gx-xxl-12 {
    --bs-gutter-x: 12px;
  }

  .g-xxl-12,
.gy-xxl-12 {
    --bs-gutter-y: 12px;
  }

  .g-xxl-13,
.gx-xxl-13 {
    --bs-gutter-x: 13px;
  }

  .g-xxl-13,
.gy-xxl-13 {
    --bs-gutter-y: 13px;
  }

  .g-xxl-15,
.gx-xxl-15 {
    --bs-gutter-x: 15px;
  }

  .g-xxl-15,
.gy-xxl-15 {
    --bs-gutter-y: 15px;
  }

  .g-xxl-17,
.gx-xxl-17 {
    --bs-gutter-x: 17px;
  }

  .g-xxl-17,
.gy-xxl-17 {
    --bs-gutter-y: 17px;
  }

  .g-xxl-18,
.gx-xxl-18 {
    --bs-gutter-x: 18px;
  }

  .g-xxl-18,
.gy-xxl-18 {
    --bs-gutter-y: 18px;
  }

  .g-xxl-20,
.gx-xxl-20 {
    --bs-gutter-x: 20px;
  }

  .g-xxl-20,
.gy-xxl-20 {
    --bs-gutter-y: 20px;
  }

  .g-xxl-25,
.gx-xxl-25 {
    --bs-gutter-x: 25px;
  }

  .g-xxl-25,
.gy-xxl-25 {
    --bs-gutter-y: 25px;
  }

  .g-xxl-30,
.gx-xxl-30 {
    --bs-gutter-x: 30px;
  }

  .g-xxl-30,
.gy-xxl-30 {
    --bs-gutter-y: 30px;
  }

  .g-xxl-35,
.gx-xxl-35 {
    --bs-gutter-x: 35px;
  }

  .g-xxl-35,
.gy-xxl-35 {
    --bs-gutter-y: 35px;
  }

  .g-xxl-40,
.gx-xxl-40 {
    --bs-gutter-x: 40px;
  }

  .g-xxl-40,
.gy-xxl-40 {
    --bs-gutter-y: 40px;
  }

  .g-xxl-45,
.gx-xxl-45 {
    --bs-gutter-x: 45px;
  }

  .g-xxl-45,
.gy-xxl-45 {
    --bs-gutter-y: 45px;
  }

  .g-xxl-50,
.gx-xxl-50 {
    --bs-gutter-x: 50px;
  }

  .g-xxl-50,
.gy-xxl-50 {
    --bs-gutter-y: 50px;
  }

  .g-xxl-55,
.gx-xxl-55 {
    --bs-gutter-x: 55px;
  }

  .g-xxl-55,
.gy-xxl-55 {
    --bs-gutter-y: 55px;
  }

  .g-xxl-60,
.gx-xxl-60 {
    --bs-gutter-x: 60px;
  }

  .g-xxl-60,
.gy-xxl-60 {
    --bs-gutter-y: 60px;
  }

  .g-xxl-65,
.gx-xxl-65 {
    --bs-gutter-x: 65px;
  }

  .g-xxl-65,
.gy-xxl-65 {
    --bs-gutter-y: 65px;
  }

  .g-xxl-70,
.gx-xxl-70 {
    --bs-gutter-x: 70px;
  }

  .g-xxl-70,
.gy-xxl-70 {
    --bs-gutter-y: 70px;
  }

  .g-xxl-75,
.gx-xxl-75 {
    --bs-gutter-x: 75px;
  }

  .g-xxl-75,
.gy-xxl-75 {
    --bs-gutter-y: 75px;
  }

  .g-xxl-80,
.gx-xxl-80 {
    --bs-gutter-x: 80px;
  }

  .g-xxl-80,
.gy-xxl-80 {
    --bs-gutter-y: 80px;
  }

  .g-xxl-90,
.gx-xxl-90 {
    --bs-gutter-x: 90px;
  }

  .g-xxl-90,
.gy-xxl-90 {
    --bs-gutter-y: 90px;
  }

  .g-xxl-95,
.gx-xxl-95 {
    --bs-gutter-x: 95px;
  }

  .g-xxl-95,
.gy-xxl-95 {
    --bs-gutter-y: 95px;
  }

  .g-xxl-100,
.gx-xxl-100 {
    --bs-gutter-x: 100px;
  }

  .g-xxl-100,
.gy-xxl-100 {
    --bs-gutter-y: 100px;
  }

  .g-xxl-110,
.gx-xxl-110 {
    --bs-gutter-x: 110px;
  }

  .g-xxl-110,
.gy-xxl-110 {
    --bs-gutter-y: 110px;
  }

  .g-xxl-115,
.gx-xxl-115 {
    --bs-gutter-x: 115px;
  }

  .g-xxl-115,
.gy-xxl-115 {
    --bs-gutter-y: 115px;
  }

  .g-xxl-120,
.gx-xxl-120 {
    --bs-gutter-x: 120px;
  }

  .g-xxl-120,
.gy-xxl-120 {
    --bs-gutter-y: 120px;
  }

  .g-xxl-130,
.gx-xxl-130 {
    --bs-gutter-x: 130px;
  }

  .g-xxl-130,
.gy-xxl-130 {
    --bs-gutter-y: 130px;
  }

  .g-xxl-150,
.gx-xxl-150 {
    --bs-gutter-x: 150px;
  }

  .g-xxl-150,
.gy-xxl-150 {
    --bs-gutter-y: 150px;
  }

  .g-xxl-160,
.gx-xxl-160 {
    --bs-gutter-x: 160px;
  }

  .g-xxl-160,
.gy-xxl-160 {
    --bs-gutter-y: 160px;
  }

  .g-xxl-180,
.gx-xxl-180 {
    --bs-gutter-x: 180px;
  }

  .g-xxl-180,
.gy-xxl-180 {
    --bs-gutter-y: 180px;
  }

  .g-xxl-190,
.gx-xxl-190 {
    --bs-gutter-x: 190px;
  }

  .g-xxl-190,
.gy-xxl-190 {
    --bs-gutter-y: 190px;
  }

  .g-xxl-200,
.gx-xxl-200 {
    --bs-gutter-x: 200px;
  }

  .g-xxl-200,
.gy-xxl-200 {
    --bs-gutter-y: 200px;
  }

  .g-xxl-210,
.gx-xxl-210 {
    --bs-gutter-x: 210px;
  }

  .g-xxl-210,
.gy-xxl-210 {
    --bs-gutter-y: 210px;
  }

  .g-xxl-235,
.gx-xxl-235 {
    --bs-gutter-x: 235px;
  }

  .g-xxl-235,
.gy-xxl-235 {
    --bs-gutter-y: 235px;
  }

  .g-xxl-240,
.gx-xxl-240 {
    --bs-gutter-x: 240px;
  }

  .g-xxl-240,
.gy-xxl-240 {
    --bs-gutter-y: 240px;
  }

  .g-xxl-270,
.gx-xxl-270 {
    --bs-gutter-x: 270px;
  }

  .g-xxl-270,
.gy-xxl-270 {
    --bs-gutter-y: 270px;
  }

  .g-xxl-290,
.gx-xxl-290 {
    --bs-gutter-x: 290px;
  }

  .g-xxl-290,
.gy-xxl-290 {
    --bs-gutter-y: 290px;
  }

  .g-xxl-300,
.gx-xxl-300 {
    --bs-gutter-x: 300px;
  }

  .g-xxl-300,
.gy-xxl-300 {
    --bs-gutter-y: 300px;
  }
}
.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #17161A;
  --bs-table-striped-bg: rgba(23, 22, 26, 0.05);
  --bs-table-active-color: #17161A;
  --bs-table-active-bg: rgba(23, 22, 26, 0.1);
  --bs-table-hover-color: #17161A;
  --bs-table-hover-bg: rgba(23, 22, 26, 0.075);
  width: 100%;
  margin-bottom: 3.33333rem;
  color: #17161A;
  vertical-align: top;
  border-color: #dee2e6;
}
.table > :not(caption) > * > * {
  padding: 0.5rem 0.5rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  -webkit-box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
          box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg);
}
.table > tbody {
  vertical-align: inherit;
}
.table > thead {
  vertical-align: bottom;
}
.table > :not(:first-child) {
  border-top: 2px solid currentColor;
}

.caption-top {
  caption-side: top;
}

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem;
}

.table-bordered > :not(caption) > * {
  border-width: 1px 0;
}
.table-bordered > :not(caption) > * > * {
  border-width: 0 1px;
}

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
  border-top-width: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color);
}

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color);
}

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color);
}

.table-primary {
  --bs-table-bg: #cfe2ff;
  --bs-table-striped-bg: #c6d8f4;
  --bs-table-striped-color: #17161A;
  --bs-table-active-bg: #bdcee8;
  --bs-table-active-color: #17161A;
  --bs-table-hover-bg: #c1d3ee;
  --bs-table-hover-color: #17161A;
  color: #17161A;
  border-color: #bdcee8;
}

.table-secondary {
  --bs-table-bg: #e7e7e7;
  --bs-table-striped-bg: #dddddd;
  --bs-table-striped-color: #17161A;
  --bs-table-active-bg: #d2d2d3;
  --bs-table-active-color: #17161A;
  --bs-table-hover-bg: #d7d7d8;
  --bs-table-hover-color: #17161A;
  color: #17161A;
  border-color: #d2d2d3;
}

.table-success {
  --bs-table-bg: #d1e7dd;
  --bs-table-striped-bg: #c8ddd3;
  --bs-table-striped-color: #17161A;
  --bs-table-active-bg: #bed2ca;
  --bs-table-active-color: #17161A;
  --bs-table-hover-bg: #c3d7ce;
  --bs-table-hover-color: #17161A;
  color: #17161A;
  border-color: #bed2ca;
}

.table-info {
  --bs-table-bg: #cff4fc;
  --bs-table-striped-bg: #c6e9f1;
  --bs-table-striped-color: #17161A;
  --bs-table-active-bg: #bddee5;
  --bs-table-active-color: #17161A;
  --bs-table-hover-bg: #c1e3eb;
  --bs-table-hover-color: #17161A;
  color: #17161A;
  border-color: #bddee5;
}

.table-warning {
  --bs-table-bg: #fff3cd;
  --bs-table-striped-bg: #f3e8c4;
  --bs-table-striped-color: #17161A;
  --bs-table-active-bg: #e8ddbb;
  --bs-table-active-color: #17161A;
  --bs-table-hover-bg: #eee2c0;
  --bs-table-hover-color: #17161A;
  color: #17161A;
  border-color: #e8ddbb;
}

.table-danger {
  --bs-table-bg: #f8d7da;
  --bs-table-striped-bg: #edcdd0;
  --bs-table-striped-color: #17161A;
  --bs-table-active-bg: #e2c4c7;
  --bs-table-active-color: #17161A;
  --bs-table-hover-bg: #e7c9cc;
  --bs-table-hover-color: #17161A;
  color: #17161A;
  border-color: #e2c4c7;
}

.table-light {
  --bs-table-bg: #F5F5F7;
  --bs-table-striped-bg: #eaeaec;
  --bs-table-striped-color: #17161A;
  --bs-table-active-bg: #dfdfe1;
  --bs-table-active-color: #17161A;
  --bs-table-hover-bg: #e4e4e6;
  --bs-table-hover-color: #17161A;
  color: #17161A;
  border-color: #dfdfe1;
}

.table-dark {
  --bs-table-bg: #17161A;
  --bs-table-striped-bg: #232225;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #2e2d31;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #28272b;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #2e2d31;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 619.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 827.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1023.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1199.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
.form-label {
  margin-bottom: 0.5rem;
}

.col-form-label {
  padding-top: 1px;
  padding-bottom: 1px;
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: 1px;
  padding-bottom: 1px;
  font-size: 1.25rem;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
}

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #858589;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0 0;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #17161A;
  background-color: transparent;
  background-clip: padding-box;
  border: 1px solid rgba(177, 177, 180, 0.7);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #17161A;
  background-color: transparent;
  border-color: #17161A;
  outline: 0;
  -webkit-box-shadow: 0;
          box-shadow: 0;
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::-webkit-input-placeholder {
  color: #17161A;
  opacity: 1;
}
.form-control::-moz-placeholder {
  color: #17161A;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #17161A;
  opacity: 1;
}
.form-control::-ms-input-placeholder {
  color: #17161A;
  opacity: 1;
}
.form-control::placeholder {
  color: #17161A;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}
.form-control::-webkit-file-upload-button {
  padding: 0 0;
  margin: 0 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  color: #17161A;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}
.form-control::file-selector-button {
  padding: 0 0;
  margin: 0 0;
  -webkit-margin-end: 0;
     -moz-margin-end: 0;
          margin-inline-end: 0;
  color: #17161A;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
  .form-control::file-selector-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #dde0e3;
}
.form-control::-webkit-file-upload-button {
  padding: 0 0;
  margin: 0 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  color: #17161A;
  background-color: #e9ecef;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    -webkit-transition: none;
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #dde0e3;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #17161A;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 10px;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.form-control-sm::file-selector-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
     -moz-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.25rem 0.5rem;
  margin: -0.25rem -0.5rem;
  -webkit-margin-end: 0.5rem;
          margin-inline-end: 0.5rem;
}

.form-control-lg {
  min-height: auto;
  padding: 0 0;
  font-size: 1.25rem;
  border-radius: 0;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0 0;
  margin: 0 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}
.form-control-lg::file-selector-button {
  padding: 0 0;
  margin: 0 0;
  -webkit-margin-end: 0;
     -moz-margin-end: 0;
          margin-inline-end: 0;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0 0;
  margin: 0 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
}

textarea.form-control {
  min-height: auto;
}
textarea.form-control-sm {
  min-height: calc(1.5em + 0.5rem + 2px);
}
textarea.form-control-lg {
  min-height: auto;
}

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0 0 0 0;
  -moz-padding-start: -3px;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #17161A;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0 center;
  background-size: 16px 12px;
  border: 1px solid rgba(177, 177, 180, 0.7);
  border-radius: 0;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    -webkit-transition: none;
    transition: none;
  }
}
.form-select:focus {
  border-color: #17161A;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.25);
          box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 0;
  background-image: none;
}
.form-select:disabled {
  background-color: #e9ecef;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #17161A;
}

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.875rem;
  border-radius: 10px;
}

.form-select-lg {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
  font-size: 1.25rem;
  border-radius: 0;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -1.5em;
}

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.25em;
  vertical-align: top;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(23, 22, 26, 0.25);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  -webkit-print-color-adjust: exact;
          color-adjust: exact;
}
.form-check-input[type=checkbox] {
  border-radius: 0.25em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  -webkit-filter: brightness(90%);
          filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #17161A;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form-check-input:checked {
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}
.form-check-input:checked[type=radio] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #0d6efd;
  border-color: #0d6efd;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.5;
}
.form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
  opacity: 0.5;
}

.form-switch {
  padding-left: 2.5em;
}
.form-switch .form-check-input {
  width: 2em;
  margin-left: -2.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%2823, 22, 26, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 2em;
  -webkit-transition: background-position 0.15s ease-in-out;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    -webkit-transition: none;
    transition: none;
  }
}
.form-switch .form-check-input:focus {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2317161A'/%3e%3c/svg%3e");
}
.form-switch .form-check-input:checked {
  background-position: right center;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.form-check-inline {
  display: inline-block;
  margin-right: 1rem;
}

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}
.btn-check[disabled] + .btn, .btn-check:disabled + .btn {
  pointer-events: none;
  -webkit-filter: none;
          filter: none;
  opacity: 0.65;
}

.form-range {
  width: 100%;
  height: 1rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #fff, 0;
          box-shadow: 0 0 0 1px #fff, 0;
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0;
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0d6efd;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b6d4fe;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #B1B1B4;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #B1B1B4;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: calc(3.5rem + 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 0;
  pointer-events: none;
  border: 1px solid transparent;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  -webkit-transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    -webkit-transition: none;
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 0;
}
.form-floating > .form-control::-webkit-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::-moz-placeholder {
  color: transparent;
}
.form-floating > .form-control:-ms-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::-ms-input-placeholder {
  color: transparent;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-ms-input-placeholder) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 1.625rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:not(:-moz-placeholder-shown) ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:not(:-ms-input-placeholder) ~ label {
  opacity: 0.65;
  -ms-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
      transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
      -ms-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  -webkit-transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
          transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  min-width: 0;
}
.input-group > .form-control:focus,
.input-group > .form-select:focus {
  z-index: 3;
}
.input-group .btn {
  position: relative;
  z-index: 2;
}
.input-group .btn:focus {
  z-index: 3;
}

.input-group-text {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 0;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #17161A;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid rgba(177, 177, 180, 0.7);
  border-radius: 0;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0 0;
  font-size: 1.25rem;
  border-radius: 0;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  border-radius: 10px;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 0;
}

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n+3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group.has-validation > :nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n+4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #198754;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.8333325rem 1.666665rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(25, 135, 84, 0.9);
  border-radius: 14px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .form-control.is-valid {
  border-color: #198754;
  padding-right: 1.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.375em center;
  background-size: 0.75em 0.75em;
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #198754;
  -webkit-box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.25);
          box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: 1.5em;
  background-position: top 0.375em right 0.375em;
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #198754;
}
.was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
  padding-right: 0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-position: right 0 center, center right 0;
  background-size: 16px 12px, 0.75em 0.75em;
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #198754;
  -webkit-box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.25);
          box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #198754;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #198754;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.25);
          box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #198754;
}

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:valid, .input-group .form-control.is-valid,
.was-validated .input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1;
}
.was-validated .input-group .form-control:valid:focus, .input-group .form-control.is-valid:focus,
.was-validated .input-group .form-select:valid:focus,
.input-group .form-select.is-valid:focus {
  z-index: 3;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.8333325rem 1.666665rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 14px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .form-control.is-invalid {
  border-color: #dc3545;
  padding-right: 1.5em;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.375em center;
  background-size: 0.75em 0.75em;
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: 1.5em;
  background-position: top 0.375em right 0.375em;
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
  padding-right: 0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-position: right 0 center, center right 0;
  background-size: 16px 12px, 0.75em 0.75em;
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #dc3545;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #dc3545;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: 0.5em;
}

.was-validated .input-group .form-control:invalid, .input-group .form-control.is-invalid,
.was-validated .input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2;
}
.was-validated .input-group .form-control:invalid:focus, .input-group .form-control.is-invalid:focus,
.was-validated .input-group .form-select:invalid:focus,
.input-group .form-select.is-invalid:focus {
  z-index: 3;
}

.btn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-weight: 700;
  line-height: 1.5;
  color: #17161A;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 0 solid transparent;
  padding: 15px 40px;
  font-size: 1rem;
  border-radius: 50rem;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    -webkit-transition: none;
    transition: none;
  }
}
.btn:hover {
  color: #17161A;
}
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.65;
}

.btn-primary {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-primary:hover {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #fff;
  background-color: #0b5ed7;
  border-color: #0a58ca;
  -webkit-box-shadow: 0 0 0 0 rgba(49, 132, 253, 0.5);
          box-shadow: 0 0 0 0 rgba(49, 132, 253, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0a58ca;
  border-color: #0a53be;
}
.btn-check:checked + .btn-primary:focus, .btn-check:active + .btn-primary:focus, .btn-primary:active:focus, .btn-primary.active:focus, .show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(49, 132, 253, 0.5);
          box-shadow: 0 0 0 0 rgba(49, 132, 253, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}

.btn-secondary {
  color: #17161A;
  background-color: #858589;
  border-color: #858589;
}
.btn-secondary:hover {
  color: #17161A;
  background-color: #97979b;
  border-color: #919195;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #17161A;
  background-color: #97979b;
  border-color: #919195;
  -webkit-box-shadow: 0 0 0 0 rgba(117, 116, 120, 0.5);
          box-shadow: 0 0 0 0 rgba(117, 116, 120, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #17161A;
  background-color: #9d9da1;
  border-color: #919195;
}
.btn-check:checked + .btn-secondary:focus, .btn-check:active + .btn-secondary:focus, .btn-secondary:active:focus, .btn-secondary.active:focus, .show > .btn-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(117, 116, 120, 0.5);
          box-shadow: 0 0 0 0 rgba(117, 116, 120, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #17161A;
  background-color: #858589;
  border-color: #858589;
}

.btn-success {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-success:hover {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #fff;
  background-color: #157347;
  border-color: #146c43;
  -webkit-box-shadow: 0 0 0 0 rgba(60, 153, 110, 0.5);
          box-shadow: 0 0 0 0 rgba(60, 153, 110, 0.5);
}
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #146c43;
  border-color: #13653f;
}
.btn-check:checked + .btn-success:focus, .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus, .show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(60, 153, 110, 0.5);
          box-shadow: 0 0 0 0 rgba(60, 153, 110, 0.5);
}
.btn-success:disabled, .btn-success.disabled {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}

.btn-info {
  color: #17161A;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-info:hover {
  color: #17161A;
  background-color: #31d2f2;
  border-color: #25cff2;
}
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #17161A;
  background-color: #31d2f2;
  border-color: #25cff2;
  -webkit-box-shadow: 0 0 0 0 rgba(15, 175, 208, 0.5);
          box-shadow: 0 0 0 0 rgba(15, 175, 208, 0.5);
}
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  color: #17161A;
  background-color: #3dd5f3;
  border-color: #25cff2;
}
.btn-check:checked + .btn-info:focus, .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus, .show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(15, 175, 208, 0.5);
          box-shadow: 0 0 0 0 rgba(15, 175, 208, 0.5);
}
.btn-info:disabled, .btn-info.disabled {
  color: #17161A;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}

.btn-warning {
  color: #17161A;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-warning:hover {
  color: #17161A;
  background-color: #ffca2c;
  border-color: #ffc720;
}
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #17161A;
  background-color: #ffca2c;
  border-color: #ffc720;
  -webkit-box-shadow: 0 0 0 0 rgba(220, 167, 10, 0.5);
          box-shadow: 0 0 0 0 rgba(220, 167, 10, 0.5);
}
.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  color: #17161A;
  background-color: #ffcd39;
  border-color: #ffc720;
}
.btn-check:checked + .btn-warning:focus, .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus, .show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(220, 167, 10, 0.5);
          box-shadow: 0 0 0 0 rgba(220, 167, 10, 0.5);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: #17161A;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-danger:hover {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #fff;
  background-color: #bb2d3b;
  border-color: #b02a37;
  -webkit-box-shadow: 0 0 0 0 rgba(225, 83, 97, 0.5);
          box-shadow: 0 0 0 0 rgba(225, 83, 97, 0.5);
}
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #b02a37;
  border-color: #a52834;
}
.btn-check:checked + .btn-danger:focus, .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus, .show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(225, 83, 97, 0.5);
          box-shadow: 0 0 0 0 rgba(225, 83, 97, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-light {
  color: #17161A;
  background-color: #F5F5F7;
  border-color: #F5F5F7;
}
.btn-light:hover {
  color: #17161A;
  background-color: #f7f7f8;
  border-color: #f6f6f8;
}
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #17161A;
  background-color: #f7f7f8;
  border-color: #f6f6f8;
  -webkit-box-shadow: 0 0 0 0 rgba(212, 212, 214, 0.5);
          box-shadow: 0 0 0 0 rgba(212, 212, 214, 0.5);
}
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  color: #17161A;
  background-color: #f7f7f9;
  border-color: #f6f6f8;
}
.btn-check:checked + .btn-light:focus, .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus, .show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(212, 212, 214, 0.5);
          box-shadow: 0 0 0 0 rgba(212, 212, 214, 0.5);
}
.btn-light:disabled, .btn-light.disabled {
  color: #17161A;
  background-color: #F5F5F7;
  border-color: #F5F5F7;
}

.btn-dark {
  color: #fff;
  background-color: #17161A;
  border-color: #17161A;
}
.btn-dark:hover {
  color: #fff;
  background-color: #141316;
  border-color: #121215;
}
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #fff;
  background-color: #141316;
  border-color: #121215;
  -webkit-box-shadow: 0 0 0 0 rgba(58, 57, 60, 0.5);
          box-shadow: 0 0 0 0 rgba(58, 57, 60, 0.5);
}
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #121215;
  border-color: #111114;
}
.btn-check:checked + .btn-dark:focus, .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus, .show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(58, 57, 60, 0.5);
          box-shadow: 0 0 0 0 rgba(58, 57, 60, 0.5);
}
.btn-dark:disabled, .btn-dark.disabled {
  color: #fff;
  background-color: #17161A;
  border-color: #17161A;
}

.btn-outline-primary {
  color: #0d6efd;
  border-color: #0d6efd;
}
.btn-outline-primary:hover {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
          box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
}
.btn-check:checked + .btn-outline-primary, .btn-check:active + .btn-outline-primary, .btn-outline-primary:active, .btn-outline-primary.active, .btn-outline-primary.dropdown-toggle.show {
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.btn-check:checked + .btn-outline-primary:focus, .btn-check:active + .btn-outline-primary:focus, .btn-outline-primary:active:focus, .btn-outline-primary.active:focus, .btn-outline-primary.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
          box-shadow: 0 0 0 0 rgba(13, 110, 253, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #0d6efd;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #858589;
  border-color: #858589;
}
.btn-outline-secondary:hover {
  color: #17161A;
  background-color: #858589;
  border-color: #858589;
}
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(133, 133, 137, 0.5);
          box-shadow: 0 0 0 0 rgba(133, 133, 137, 0.5);
}
.btn-check:checked + .btn-outline-secondary, .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
  color: #17161A;
  background-color: #858589;
  border-color: #858589;
}
.btn-check:checked + .btn-outline-secondary:focus, .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(133, 133, 137, 0.5);
          box-shadow: 0 0 0 0 rgba(133, 133, 137, 0.5);
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #858589;
  background-color: transparent;
}

.btn-outline-success {
  color: #198754;
  border-color: #198754;
}
.btn-outline-success:hover {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.5);
          box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.5);
}
.btn-check:checked + .btn-outline-success, .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
  color: #fff;
  background-color: #198754;
  border-color: #198754;
}
.btn-check:checked + .btn-outline-success:focus, .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.5);
          box-shadow: 0 0 0 0 rgba(25, 135, 84, 0.5);
}
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #198754;
  background-color: transparent;
}

.btn-outline-info {
  color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-outline-info:hover {
  color: #17161A;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.5);
          box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.5);
}
.btn-check:checked + .btn-outline-info, .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
  color: #17161A;
  background-color: #0dcaf0;
  border-color: #0dcaf0;
}
.btn-check:checked + .btn-outline-info:focus, .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.5);
          box-shadow: 0 0 0 0 rgba(13, 202, 240, 0.5);
}
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #0dcaf0;
  background-color: transparent;
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}
.btn-outline-warning:hover {
  color: #17161A;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}
.btn-check:checked + .btn-outline-warning, .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
  color: #17161A;
  background-color: #ffc107;
  border-color: #ffc107;
}
.btn-check:checked + .btn-outline-warning:focus, .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.5);
}
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}
.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
}
.btn-check:checked + .btn-outline-danger, .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}
.btn-check:checked + .btn-outline-danger:focus, .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0 rgba(220, 53, 69, 0.5);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-light {
  color: #F5F5F7;
  border-color: #F5F5F7;
}
.btn-outline-light:hover {
  color: #17161A;
  background-color: #F5F5F7;
  border-color: #F5F5F7;
}
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(245, 245, 247, 0.5);
          box-shadow: 0 0 0 0 rgba(245, 245, 247, 0.5);
}
.btn-check:checked + .btn-outline-light, .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
  color: #17161A;
  background-color: #F5F5F7;
  border-color: #F5F5F7;
}
.btn-check:checked + .btn-outline-light:focus, .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(245, 245, 247, 0.5);
          box-shadow: 0 0 0 0 rgba(245, 245, 247, 0.5);
}
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #F5F5F7;
  background-color: transparent;
}

.btn-outline-dark {
  color: #17161A;
  border-color: #17161A;
}
.btn-outline-dark:hover {
  color: #fff;
  background-color: #17161A;
  border-color: #17161A;
}
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(23, 22, 26, 0.5);
          box-shadow: 0 0 0 0 rgba(23, 22, 26, 0.5);
}
.btn-check:checked + .btn-outline-dark, .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
  color: #fff;
  background-color: #17161A;
  border-color: #17161A;
}
.btn-check:checked + .btn-outline-dark:focus, .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
  -webkit-box-shadow: 0 0 0 0 rgba(23, 22, 26, 0.5);
          box-shadow: 0 0 0 0 rgba(23, 22, 26, 0.5);
}
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #17161A;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #0d6efd;
  text-decoration: underline;
}
.btn-link:hover {
  color: #0a58ca;
}
.btn-link:disabled, .btn-link.disabled {
  color: #858589;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 20px 50px;
  font-size: 1rem;
  border-radius: 50rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 10px 15px;
  font-size: 0.875rem;
  border-radius: 50rem;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  -webkit-transition: width 0.35s ease;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    -webkit-transition: none;
    transition: none;
  }
}

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}
.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}
.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 240px;
  padding: 20px 0;
  margin: 0;
  font-size: 1rem;
  color: #17161A;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid rgba(23, 22, 26, 0.15);
  border-radius: 14px;
}
.dropdown-menu[data-bs-popper] {
  top: 100%;
  left: 0;
  margin-top: 0.125rem;
}

.dropdown-menu-start {
  --bs-position: start;
}
.dropdown-menu-start[data-bs-popper] {
  right: auto;
  left: 0;
}

.dropdown-menu-end {
  --bs-position: end;
}
.dropdown-menu-end[data-bs-popper] {
  right: 0;
  left: auto;
}

@media (min-width: 620px) {
  .dropdown-menu-sm-start {
    --bs-position: start;
  }
  .dropdown-menu-sm-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-sm-end {
    --bs-position: end;
  }
  .dropdown-menu-sm-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 828px) {
  .dropdown-menu-md-start {
    --bs-position: start;
  }
  .dropdown-menu-md-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-md-end {
    --bs-position: end;
  }
  .dropdown-menu-md-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1024px) {
  .dropdown-menu-lg-start {
    --bs-position: start;
  }
  .dropdown-menu-lg-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-lg-end {
    --bs-position: end;
  }
  .dropdown-menu-lg-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1200px) {
  .dropdown-menu-xl-start {
    --bs-position: start;
  }
  .dropdown-menu-xl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xl-end {
    --bs-position: end;
  }
  .dropdown-menu-xl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
@media (min-width: 1400px) {
  .dropdown-menu-xxl-start {
    --bs-position: start;
  }
  .dropdown-menu-xxl-start[data-bs-popper] {
    right: auto;
    left: 0;
  }

  .dropdown-menu-xxl-end {
    --bs-position: end;
  }
  .dropdown-menu-xxl-end[data-bs-popper] {
    right: 0;
    left: auto;
  }
}
.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}
.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}
.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}
.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}
.dropend .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropend .dropdown-toggle::after {
  vertical-align: 0;
}

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}
.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}
.dropstart .dropdown-toggle::after {
  display: none;
}
.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}
.dropstart .dropdown-toggle:empty::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-divider {
  height: 0;
  margin: 1.666665rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(23, 22, 26, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.8333325rem 3.33333rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #1e2125;
  background-color: #e9ecef;
}
.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #0d6efd;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #B1B1B4;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 20px 3.33333rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  color: #858589;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.8333325rem 3.33333rem;
  color: #212529;
}

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(23, 22, 26, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #fff;
  background-color: #0d6efd;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #B1B1B4;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(23, 22, 26, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #dee2e6;
}
.dropdown-menu-dark .dropdown-header {
  color: #B1B1B4;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.btn-group > .btn-check:checked + .btn,
.btn-group > .btn-check:focus + .btn,
.btn-group > .btn:hover,
.btn-group > .btn:focus,
.btn-group > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn-check:checked + .btn,
.btn-group-vertical > .btn-check:focus + .btn,
.btn-group-vertical > .btn:hover,
.btn-group-vertical > .btn:focus,
.btn-group-vertical > .btn:active,
.btn-group-vertical > .btn.active {
  z-index: 1;
}

.btn-toolbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: 0;
}
.btn-group > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group > .btn:nth-child(n+3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 30px;
  padding-left: 30px;
}
.dropdown-toggle-split::after, .dropup .dropdown-toggle-split::after, .dropend .dropdown-toggle-split::after {
  margin-left: 0;
}
.dropstart .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
  padding-right: 11.25px;
  padding-left: 11.25px;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 37.5px;
  padding-left: 37.5px;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  width: 100%;
}
.btn-group-vertical > .btn:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: 0;
}
.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn ~ .btn,
.btn-group-vertical > .btn-group:not(:first-child) > .btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0 0;
  color: #0d6efd;
  text-decoration: none;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .nav-link {
    -webkit-transition: none;
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: #0a58ca;
}
.nav-link.disabled {
  color: #858589;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 0 solid #dee2e6;
}
.nav-tabs .nav-link {
  margin-bottom: 0;
  background: none;
  border: 0 solid transparent;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #e9ecef #e9ecef #dee2e6;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #858589;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: inherit;
  background-color: transparent;
  border-color: #dee2e6 #dee2e6 transparent;
}
.nav-tabs .dropdown-menu {
  margin-top: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 14px;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #0d6efd;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  -webkit-flex-basis: 0;
      -ms-flex-preferred-size: 0;
          flex-basis: 0;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%;
}

.tab-content > .tab-pane {
  display: none;
}
.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 0;
  padding-right: 0;
  padding-bottom: 0;
  padding-left: 0;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: inherit;
      -ms-flex-wrap: inherit;
          flex-wrap: inherit;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.navbar-brand {
  padding-top: -0.1875rem;
  padding-bottom: -0.1875rem;
  margin-right: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  white-space: nowrap;
}
.navbar-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}
.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}
.navbar-nav .dropdown-menu {
  position: static;
}

.navbar-text {
  padding-top: 0;
  padding-bottom: 0;
}

.navbar-collapse {
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 50rem;
  -webkit-transition: -webkit-box-shadow 0.15s ease-in-out;
  transition: -webkit-box-shadow 0.15s ease-in-out;
  transition: box-shadow 0.15s ease-in-out;
  transition: box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    -webkit-transition: none;
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0;
          box-shadow: 0 0 0 0;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%;
}

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto;
}

@media (min-width: 620px) {
  .navbar-expand-sm {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
  .navbar-expand-sm .offcanvas-header {
    display: none;
  }
  .navbar-expand-sm .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .navbar-expand-sm .offcanvas-top,
.navbar-expand-sm .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-sm .offcanvas-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 828px) {
  .navbar-expand-md {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
  .navbar-expand-md .offcanvas-header {
    display: none;
  }
  .navbar-expand-md .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .navbar-expand-md .offcanvas-top,
.navbar-expand-md .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-md .offcanvas-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1024px) {
  .navbar-expand-lg {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
  .navbar-expand-lg .offcanvas-header {
    display: none;
  }
  .navbar-expand-lg .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .navbar-expand-lg .offcanvas-top,
.navbar-expand-lg .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-lg .offcanvas-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .navbar-expand-xl .offcanvas-top,
.navbar-expand-xl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xl .offcanvas-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
  .navbar-expand-xxl .offcanvas-header {
    display: none;
  }
  .navbar-expand-xxl .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    -webkit-transition: none;
    transition: none;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
  .navbar-expand-xxl .offcanvas-top,
.navbar-expand-xxl .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0;
  }
  .navbar-expand-xxl .offcanvas-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}
.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}
.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-flex-basis: auto;
      -ms-flex-preferred-size: auto;
          flex-basis: auto;
}
.navbar-expand .navbar-toggler {
  display: none;
}
.navbar-expand .offcanvas-header {
  display: none;
}
.navbar-expand .offcanvas {
  position: inherit;
  bottom: 0;
  z-index: 1000;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  visibility: visible !important;
  background-color: transparent;
  border-right: 0;
  border-left: 0;
  -webkit-transition: none;
  transition: none;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
  height: auto;
  border-top: 0;
  border-bottom: 0;
}
.navbar-expand .offcanvas-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
  -webkit-flex-grow: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-light .navbar-brand {
  color: rgba(23, 22, 26, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(23, 22, 26, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(23, 22, 26, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(23, 22, 26, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(23, 22, 26, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(23, 22, 26, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(23, 22, 26, 0.55);
  border-color: rgba(23, 22, 26, 0.1);
}
.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2823, 22, 26, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-light .navbar-text {
  color: rgba(23, 22, 26, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(23, 22, 26, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}
.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}
.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1);
}
.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55);
}
.navbar-dark .navbar-text a,
.navbar-dark .navbar-text a:hover,
.navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: transparent;
  background-clip: border-box;
  border: 0 solid rgba(23, 22, 26, 0.125);
  border-radius: 14px;
}
.card > hr {
  margin-right: 0;
  margin-left: 0;
}
.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}
.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 3.33333rem 3.33333rem;
}

.card-title {
  margin-bottom: 12px;
}

.card-subtitle {
  margin-top: -6px;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link + .card-link {
  margin-left: 3.33333rem;
}

.card-header {
  padding: 1.666665rem 3.33333rem;
  margin-bottom: 0;
  background-color: rgba(23, 22, 26, 0.03);
  border-bottom: 0 solid rgba(23, 22, 26, 0.125);
}
.card-header:first-child {
  border-radius: 14px 14px 0 0;
}

.card-footer {
  padding: 1.666665rem 3.33333rem;
  background-color: rgba(23, 22, 26, 0.03);
  border-top: 0 solid rgba(23, 22, 26, 0.125);
}
.card-footer:last-child {
  border-radius: 0 0 14px 14px;
}

.card-header-tabs {
  margin-right: -1.666665rem;
  margin-bottom: -1.666665rem;
  margin-left: -1.666665rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -1.666665rem;
  margin-left: -1.666665rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 3.33333rem;
  border-radius: 14px;
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
}

.card-group > .card {
  margin-bottom: 15px;
}
@media (min-width: 620px) {
  .card-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .card-group > .card {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 0%;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
.card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
.card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
.card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
.card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.accordion-button {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 35px 70px;
  font-size: 1rem;
  color: #17161A;
  text-align: left;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  -webkit-transition: all 150ms linear, border-radius 0.15s ease;
  transition: all 150ms linear, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    -webkit-transition: none;
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: #0c63e4;
  background-color: transparent;
  -webkit-box-shadow: inset 0 -1px 0 rgba(177, 177, 180, 0.3);
          box-shadow: inset 0 -1px 0 rgba(177, 177, 180, 0.3);
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 10'%3e%3cpath fill='%23B1B1B4' d='m8 8-.707.707.707.707.707-.707L8 8ZM.293 1.707l7 7 1.414-1.414-7-7L.293 1.707Zm8.414 7 7-7L14.293.293l-7 7 1.414 1.414Z'/%3e%3c/svg%3e");
  -webkit-transform: rotate(-180deg);
      -ms-transform: rotate(-180deg);
          transform: rotate(-180deg);
}
.accordion-button::after {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 10'%3e%3cpath fill='%2317161A' d='m8 8-.707.707.707.707.707-.707L8 8ZM.293 1.707l7 7 1.414-1.414-7-7L.293 1.707Zm8.414 7 7-7L14.293.293l-7 7 1.414 1.414Z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.25rem;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    -webkit-transition: none;
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #17161A;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #fff;
  border: 1px solid rgba(177, 177, 180, 0.3);
}
.accordion-item:first-of-type {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: 13px;
  border-bottom-left-radius: 13px;
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
}

.accordion-body {
  padding: 40px 70px;
}

.accordion-flush .accordion-collapse {
  border-width: 0;
}
.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.accordion-flush .accordion-item:first-child {
  border-top: 0;
}
.accordion-flush .accordion-item:last-child {
  border-bottom: 0;
}
.accordion-flush .accordion-item .accordion-button {
  border-radius: 0;
}

.breadcrumb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  padding: 0 0;
  margin-bottom: 1rem;
  list-style: none;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #858589;
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: #858589;
}

.pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: #0d6efd;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    -webkit-transition: none;
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: #0a58ca;
  background-color: #e9ecef;
  border-color: #dee2e6;
}
.page-link:focus {
  z-index: 3;
  color: #0a58ca;
  background-color: #e9ecef;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.page-item:not(:first-child) .page-link {
  margin-left: -1px;
}
.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.page-item.disabled .page-link {
  color: #858589;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 14px;
  border-bottom-left-radius: 14px;
}
.page-item:last-child .page-link {
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.25rem;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.badge {
  display: inline-block;
  padding: 6px 9px;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 6px;
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  position: relative;
  padding: 3.33333rem 3.33333rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 14px;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 9.99999rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 4.1666625rem 3.33333rem;
}

.alert-primary {
  color: #084298;
  background-color: #cfe2ff;
  border-color: #b6d4fe;
}
.alert-primary .alert-link {
  color: #06357a;
}

.alert-secondary {
  color: #505052;
  background-color: #e7e7e7;
  border-color: #dadadc;
}
.alert-secondary .alert-link {
  color: #404042;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}
.alert-success .alert-link {
  color: #0c4128;
}

.alert-info {
  color: #135e70;
  background-color: #cff4fc;
  border-color: #b6effb;
}
.alert-info .alert-link {
  color: #0f4b5a;
}

.alert-warning {
  color: #745a12;
  background-color: #fff3cd;
  border-color: #ffecb5;
}
.alert-warning .alert-link {
  color: #5d480e;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}
.alert-danger .alert-link {
  color: #6a1a21;
}

.alert-light {
  color: #706f72;
  background-color: #fdfdfd;
  border-color: #fcfcfd;
}
.alert-light .alert-link {
  color: #5a595b;
}

.alert-dark {
  color: #0e0d10;
  background-color: #d1d0d1;
  border-color: #b9b9ba;
}
.alert-dark .alert-link {
  color: #0b0a0d;
}

@-webkit-keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #e9ecef;
  border-radius: 14px;
}

.progress-bar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #0d6efd;
  -webkit-transition: width 0.6s ease;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    -webkit-transition: none;
    transition: none;
  }
}

.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
          animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
            animation: none;
  }
}

.list-group {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 14px;
}

.list-group-numbered {
  list-style-type: none;
  counter-reset: section;
}
.list-group-numbered > li::before {
  content: counters(section, ".") ". ";
  counter-increment: section;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}
.list-group-item-action:active {
  color: #17161A;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0 0;
  color: #212529;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid rgba(23, 22, 26, 0.125);
}
.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}
.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}
.list-group-item.disabled, .list-group-item:disabled {
  color: #858589;
  pointer-events: none;
  background-color: transparent;
}
.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #0d6efd;
  border-color: #0d6efd;
}
.list-group-item + .list-group-item {
  border-top-width: 0;
}
.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 14px;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 14px;
  border-bottom-left-radius: 0;
}
.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}
.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 620px) {
  .list-group-horizontal-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 14px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 14px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 828px) {
  .list-group-horizontal-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 14px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 14px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1024px) {
  .list-group-horizontal-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 14px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 14px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 14px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 14px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 14px;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 14px;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}
.list-group-flush {
  border-radius: 0;
}
.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}
.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #084298;
  background-color: #cfe2ff;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #084298;
  background-color: #bacbe6;
}
.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #084298;
  border-color: #084298;
}

.list-group-item-secondary {
  color: #505052;
  background-color: #e7e7e7;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #505052;
  background-color: #d0d0d0;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #505052;
  border-color: #505052;
}

.list-group-item-success {
  color: #0f5132;
  background-color: #d1e7dd;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #0f5132;
  background-color: #bcd0c7;
}
.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #0f5132;
  border-color: #0f5132;
}

.list-group-item-info {
  color: #135e70;
  background-color: #cff4fc;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #135e70;
  background-color: #badce3;
}
.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #135e70;
  border-color: #135e70;
}

.list-group-item-warning {
  color: #745a12;
  background-color: #fff3cd;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #745a12;
  background-color: #e6dbb9;
}
.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #745a12;
  border-color: #745a12;
}

.list-group-item-danger {
  color: #842029;
  background-color: #f8d7da;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #842029;
  background-color: #dfc2c4;
}
.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #842029;
  border-color: #842029;
}

.list-group-item-light {
  color: #706f72;
  background-color: #fdfdfd;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #706f72;
  background-color: #e4e4e4;
}
.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #706f72;
  border-color: #706f72;
}

.list-group-item-dark {
  color: #0e0d10;
  background-color: #d1d0d1;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #0e0d10;
  background-color: #bcbbbc;
}
.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #0e0d10;
  border-color: #0e0d10;
}

.btn-close {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #17161A;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%2317161A'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 14px;
  opacity: 0.5;
}
.btn-close:hover {
  color: #17161A;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  -webkit-filter: invert(1) grayscale(100%) brightness(200%);
          filter: invert(1) grayscale(100%) brightness(200%);
}

.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(23, 22, 26, 0.1);
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
          box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05);
  border-radius: 14px;
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}

.toast-container {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: 15px;
}

.toast-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.5rem 0.75rem;
  color: #858589;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(23, 22, 26, 0.05);
  border-top-left-radius: 13px;
  border-top-right-radius: 13px;
}
.toast-header .btn-close {
  margin-right: -0.375rem;
  margin-left: 0.75rem;
}

.toast-body {
  padding: 0.75rem;
  word-wrap: break-word;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
      -ms-transform: translate(0, -50px);
          transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    transition: none;
  }
}
.modal.show .modal-dialog {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
      -ms-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  height: calc(100% - 1rem);
}
.modal-dialog-scrollable .modal-content {
  max-height: 100%;
  overflow: hidden;
}
.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(23, 22, 26, 0.2);
  border-radius: 20px;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #17161A;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 3.33333rem 3.33333rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
}
.modal-header .btn-close {
  padding: 1.666665rem 1.666665rem;
  margin: -1.666665rem -1.666665rem -1.666665rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 3.33333rem;
}

.modal-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 3.08333rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 19px;
  border-bottom-left-radius: 19px;
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 620px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem);
  }

  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 1024px) {
  .modal-lg,
.modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}
.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}
.modal-fullscreen .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}
.modal-fullscreen .modal-header {
  border-radius: 0;
}
.modal-fullscreen .modal-body {
  overflow-y: auto;
}
.modal-fullscreen .modal-footer {
  border-radius: 0;
}

@media (max-width: 619.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-sm-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-sm-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-sm-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 827.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-md-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-md-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-md-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1023.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-lg-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-lg-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-lg-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1199.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xl-down .modal-footer {
    border-radius: 0;
  }
}
@media (max-width: 1399.98px) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0;
  }
  .modal-fullscreen-xxl-down .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-header {
    border-radius: 0;
  }
  .modal-fullscreen-xxl-down .modal-body {
    overflow-y: auto;
  }
  .modal-fullscreen-xxl-down .modal-footer {
    border-radius: 0;
  }
}
.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 0.9;
}
.tooltip .tooltip-arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}
.tooltip .tooltip-arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^=top] {
  padding: 0.4rem 0;
}
.bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow {
  bottom: 0;
}
.bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  top: -1px;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #17161A;
}

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^=right] {
  padding: 0 0.4rem;
}
.bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  right: -1px;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #17161A;
}

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^=bottom] {
  padding: 0.4rem 0;
}
.bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow {
  top: 0;
}
.bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  bottom: -1px;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #17161A;
}

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^=left] {
  padding: 0 0.4rem;
}
.bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}
.bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  left: -1px;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #17161A;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.8333325rem 1.666665rem;
  color: #fff;
  text-align: center;
  background-color: #17161A;
  border-radius: 14px;
}

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: "Inter", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(23, 22, 26, 0.2);
  border-radius: 20px;
}
.popover .popover-arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
}
.popover .popover-arrow::before, .popover .popover-arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow {
  bottom: calc(-0.5rem - 1px);
}
.bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(23, 22, 26, 0.25);
}
.bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(23, 22, 26, 0.25);
}
.bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow {
  top: calc(-0.5rem - 1px);
}
.bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(23, 22, 26, 0.25);
}
.bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}
.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0;
}

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
}
.bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(23, 22, 26, 0.25);
}
.bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 3.33333rem;
  margin-bottom: 0;
  font-size: 1rem;
  background-color: #f0f0f0;
  border-bottom: 1px solid rgba(23, 22, 26, 0.2);
  border-top-left-radius: 19px;
  border-top-right-radius: 19px;
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 3.33333rem 3.33333rem;
  color: #17161A;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

/* rtl:end:ignore */
.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1;
}
.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0s 0.6s;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    -webkit-transition: none;
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
.carousel-control-next {
    -webkit-transition: none;
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%;
}

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-flex: 0;
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  -webkit-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    -webkit-transition: none;
    transition: none;
  }
}
.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  -webkit-filter: invert(1) grayscale(100);
          filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #17161A;
}
.carousel-dark .carousel-caption {
  color: #17161A;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg) /* rtl:ignore */;
            transform: rotate(360deg) /* rtl:ignore */;
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg) /* rtl:ignore */;
            transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: 0.75s linear infinite spinner-border;
          animation: 0.75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: 0.75s linear infinite spinner-grow;
          animation: 0.75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
.spinner-grow {
    -webkit-animation-duration: 1.5s;
            animation-duration: 1.5s;
  }
}
.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .offcanvas {
    -webkit-transition: none;
    transition: none;
  }
}

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #17161A;
}
.offcanvas-backdrop.fade {
  opacity: 0;
}
.offcanvas-backdrop.show {
  opacity: 0.5;
}

.offcanvas-header {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 3.33333rem 3.33333rem;
}
.offcanvas-header .btn-close {
  padding: 1.666665rem 1.666665rem;
  margin-top: -1.666665rem;
  margin-right: -1.666665rem;
  margin-bottom: -1.666665rem;
}

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.offcanvas-body {
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 3.33333rem 3.33333rem;
  overflow-y: auto;
}

.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(23, 22, 26, 0.2);
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid rgba(23, 22, 26, 0.2);
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-bottom: 1px solid rgba(23, 22, 26, 0.2);
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.offcanvas-bottom {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-top: 1px solid rgba(23, 22, 26, 0.2);
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
}

.offcanvas.show {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentColor;
  opacity: 0.5;
}
.placeholder.btn::before {
  display: inline-block;
  content: "";
}

.placeholder-xs {
  min-height: 0.6em;
}

.placeholder-sm {
  min-height: 0.8em;
}

.placeholder-lg {
  min-height: 1.2em;
}

.placeholder-glow .placeholder {
  -webkit-animation: placeholder-glow 2s ease-in-out infinite;
          animation: placeholder-glow 2s ease-in-out infinite;
}

@-webkit-keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}

@keyframes placeholder-glow {
  50% {
    opacity: 0.2;
  }
}
.placeholder-wave {
  -webkit-mask-image: -webkit-linear-gradient(320deg, #17161A 55%, rgba(0, 0, 0, 0.8) 75%, #17161A 95%);
          mask-image: linear-gradient(130deg, #17161A 55%, rgba(0, 0, 0, 0.8) 75%, #17161A 95%);
  -webkit-mask-size: 200% 100%;
          mask-size: 200% 100%;
  -webkit-animation: placeholder-wave 2s linear infinite;
          animation: placeholder-wave 2s linear infinite;
}

@-webkit-keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
            mask-position: -200% 0%;
  }
}

@keyframes placeholder-wave {
  100% {
    -webkit-mask-position: -200% 0%;
            mask-position: -200% 0%;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-primary {
  color: #0d6efd;
}
.link-primary:hover, .link-primary:focus {
  color: #0a58ca;
}

.link-secondary {
  color: #858589;
}
.link-secondary:hover, .link-secondary:focus {
  color: #9d9da1;
}

.link-success {
  color: #198754;
}
.link-success:hover, .link-success:focus {
  color: #146c43;
}

.link-info {
  color: #0dcaf0;
}
.link-info:hover, .link-info:focus {
  color: #3dd5f3;
}

.link-warning {
  color: #ffc107;
}
.link-warning:hover, .link-warning:focus {
  color: #ffcd39;
}

.link-danger {
  color: #dc3545;
}
.link-danger:hover, .link-danger:focus {
  color: #b02a37;
}

.link-light {
  color: #F5F5F7;
}
.link-light:hover, .link-light:focus {
  color: #f7f7f9;
}

.link-dark {
  color: #17161A;
}
.link-dark:hover, .link-dark:focus {
  color: #121215;
}

.ratio {
  position: relative;
  width: 100%;
}
.ratio::before {
  display: block;
  padding-top: var(--bs-aspect-ratio);
  content: "";
}
.ratio > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.ratio-1x1 {
  --bs-aspect-ratio: 100%;
}

.ratio-4x3 {
  --bs-aspect-ratio: 75%;
}

.ratio-16x9 {
  --bs-aspect-ratio: 56.25%;
}

.ratio-21x9 {
  --bs-aspect-ratio: 42.8571428571%;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

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

.sticky-top {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 620px) {
  .sticky-sm-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 828px) {
  .sticky-md-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1024px) {
  .sticky-lg-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.hstack {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
}

.vstack {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -webkit-flex: 1 1 auto;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
}

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.vr {
  display: inline-block;
  -webkit-align-self: stretch;
      -ms-flex-item-align: stretch;
          align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25;
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

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

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

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

.opacity-0 {
  opacity: 0 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

.opacity-50 {
  opacity: 0.5 !important;
}

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-visible {
  overflow: visible !important;
}

.overflow-scroll {
  overflow: scroll !important;
}

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

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

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

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

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

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

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

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

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

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

.shadow {
  -webkit-box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05) !important;
          box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.05) !important;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(23, 22, 26, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(23, 22, 26, 0.075) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.1) !important;
          box-shadow: 0px 0px 60px rgba(0, 0, 0, 0.1) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: -webkit-sticky !important;
  position: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-50 {
  top: 50% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-50 {
  left: 50% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-50 {
  right: 50% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  -webkit-transform: translate(-50%, -50%) !important;
      -ms-transform: translate(-50%, -50%) !important;
          transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  -webkit-transform: translateX(-50%) !important;
      -ms-transform: translateX(-50%) !important;
          transform: translateX(-50%) !important;
}

.translate-middle-y {
  -webkit-transform: translateY(-50%) !important;
      -ms-transform: translateY(-50%) !important;
          transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

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

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #dee2e6 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #dee2e6 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #0d6efd !important;
}

.border-secondary {
  border-color: #858589 !important;
}

.border-success {
  border-color: #198754 !important;
}

.border-info {
  border-color: #0dcaf0 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #F5F5F7 !important;
}

.border-dark {
  border-color: #17161A !important;
}

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

.border-1 {
  border-width: 1px !important;
}

.border-2 {
  border-width: 2px !important;
}

.border-3 {
  border-width: 3px !important;
}

.border-4 {
  border-width: 4px !important;
}

.border-5 {
  border-width: 5px !important;
}

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

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

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

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

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

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

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

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

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

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

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

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

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

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
  -webkit-flex: 1 1 auto !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

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

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

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

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

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

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

.flex-shrink-0 {
  -webkit-flex-shrink: 0 !important;
      -ms-flex-negative: 0 !important;
          flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -webkit-flex-shrink: 1 !important;
      -ms-flex-negative: 1 !important;
          flex-shrink: 1 !important;
}

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

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

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

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 1px !important;
}

.gap-2 {
  gap: 2px !important;
}

.gap-3 {
  gap: 3px !important;
}

.gap-4 {
  gap: 4px !important;
}

.gap-5 {
  gap: 5px !important;
}

.gap-6 {
  gap: 6px !important;
}

.gap-7 {
  gap: 7px !important;
}

.gap-8 {
  gap: 8px !important;
}

.gap-9 {
  gap: 9px !important;
}

.gap-10 {
  gap: 10px !important;
}

.gap-11 {
  gap: 11px !important;
}

.gap-12 {
  gap: 12px !important;
}

.gap-13 {
  gap: 13px !important;
}

.gap-15 {
  gap: 15px !important;
}

.gap-17 {
  gap: 17px !important;
}

.gap-18 {
  gap: 18px !important;
}

.gap-20 {
  gap: 20px !important;
}

.gap-25 {
  gap: 25px !important;
}

.gap-30 {
  gap: 30px !important;
}

.gap-35 {
  gap: 35px !important;
}

.gap-40 {
  gap: 40px !important;
}

.gap-45 {
  gap: 45px !important;
}

.gap-50 {
  gap: 50px !important;
}

.gap-55 {
  gap: 55px !important;
}

.gap-60 {
  gap: 60px !important;
}

.gap-65 {
  gap: 65px !important;
}

.gap-70 {
  gap: 70px !important;
}

.gap-75 {
  gap: 75px !important;
}

.gap-80 {
  gap: 80px !important;
}

.gap-90 {
  gap: 90px !important;
}

.gap-95 {
  gap: 95px !important;
}

.gap-100 {
  gap: 100px !important;
}

.gap-110 {
  gap: 110px !important;
}

.gap-115 {
  gap: 115px !important;
}

.gap-120 {
  gap: 120px !important;
}

.gap-130 {
  gap: 130px !important;
}

.gap-150 {
  gap: 150px !important;
}

.gap-160 {
  gap: 160px !important;
}

.gap-180 {
  gap: 180px !important;
}

.gap-190 {
  gap: 190px !important;
}

.gap-200 {
  gap: 200px !important;
}

.gap-210 {
  gap: 210px !important;
}

.gap-235 {
  gap: 235px !important;
}

.gap-240 {
  gap: 240px !important;
}

.gap-270 {
  gap: 270px !important;
}

.gap-290 {
  gap: 290px !important;
}

.gap-300 {
  gap: 300px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.order-first {
  -webkit-box-ordinal-group: 0 !important;
  -webkit-order: -1 !important;
      -ms-flex-order: -1 !important;
          order: -1 !important;
}

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

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

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

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

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

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

.order-last {
  -webkit-box-ordinal-group: 7 !important;
  -webkit-order: 6 !important;
      -ms-flex-order: 6 !important;
          order: 6 !important;
}

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

.m-1 {
  margin: 1px !important;
}

.m-2 {
  margin: 2px !important;
}

.m-3 {
  margin: 3px !important;
}

.m-4 {
  margin: 4px !important;
}

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

.m-6 {
  margin: 6px !important;
}

.m-7 {
  margin: 7px !important;
}

.m-8 {
  margin: 8px !important;
}

.m-9 {
  margin: 9px !important;
}

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

.m-11 {
  margin: 11px !important;
}

.m-12 {
  margin: 12px !important;
}

.m-13 {
  margin: 13px !important;
}

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

.m-17 {
  margin: 17px !important;
}

.m-18 {
  margin: 18px !important;
}

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

.m-25 {
  margin: 25px !important;
}

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

.m-35 {
  margin: 35px !important;
}

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

.m-45 {
  margin: 45px !important;
}

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

.m-55 {
  margin: 55px !important;
}

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

.m-65 {
  margin: 65px !important;
}

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

.m-75 {
  margin: 75px !important;
}

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

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

.m-95 {
  margin: 95px !important;
}

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

.m-110 {
  margin: 110px !important;
}

.m-115 {
  margin: 115px !important;
}

.m-120 {
  margin: 120px !important;
}

.m-130 {
  margin: 130px !important;
}

.m-150 {
  margin: 150px !important;
}

.m-160 {
  margin: 160px !important;
}

.m-180 {
  margin: 180px !important;
}

.m-190 {
  margin: 190px !important;
}

.m-200 {
  margin: 200px !important;
}

.m-210 {
  margin: 210px !important;
}

.m-235 {
  margin: 235px !important;
}

.m-240 {
  margin: 240px !important;
}

.m-270 {
  margin: 270px !important;
}

.m-290 {
  margin: 290px !important;
}

.m-300 {
  margin: 300px !important;
}

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

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

.mx-1 {
  margin-right: 1px !important;
  margin-left: 1px !important;
}

.mx-2 {
  margin-right: 2px !important;
  margin-left: 2px !important;
}

.mx-3 {
  margin-right: 3px !important;
  margin-left: 3px !important;
}

.mx-4 {
  margin-right: 4px !important;
  margin-left: 4px !important;
}

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

.mx-6 {
  margin-right: 6px !important;
  margin-left: 6px !important;
}

.mx-7 {
  margin-right: 7px !important;
  margin-left: 7px !important;
}

.mx-8 {
  margin-right: 8px !important;
  margin-left: 8px !important;
}

.mx-9 {
  margin-right: 9px !important;
  margin-left: 9px !important;
}

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

.mx-11 {
  margin-right: 11px !important;
  margin-left: 11px !important;
}

.mx-12 {
  margin-right: 12px !important;
  margin-left: 12px !important;
}

.mx-13 {
  margin-right: 13px !important;
  margin-left: 13px !important;
}

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

.mx-17 {
  margin-right: 17px !important;
  margin-left: 17px !important;
}

.mx-18 {
  margin-right: 18px !important;
  margin-left: 18px !important;
}

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

.mx-25 {
  margin-right: 25px !important;
  margin-left: 25px !important;
}

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

.mx-35 {
  margin-right: 35px !important;
  margin-left: 35px !important;
}

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

.mx-45 {
  margin-right: 45px !important;
  margin-left: 45px !important;
}

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

.mx-55 {
  margin-right: 55px !important;
  margin-left: 55px !important;
}

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

.mx-65 {
  margin-right: 65px !important;
  margin-left: 65px !important;
}

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

.mx-75 {
  margin-right: 75px !important;
  margin-left: 75px !important;
}

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

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

.mx-95 {
  margin-right: 95px !important;
  margin-left: 95px !important;
}

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

.mx-110 {
  margin-right: 110px !important;
  margin-left: 110px !important;
}

.mx-115 {
  margin-right: 115px !important;
  margin-left: 115px !important;
}

.mx-120 {
  margin-right: 120px !important;
  margin-left: 120px !important;
}

.mx-130 {
  margin-right: 130px !important;
  margin-left: 130px !important;
}

.mx-150 {
  margin-right: 150px !important;
  margin-left: 150px !important;
}

.mx-160 {
  margin-right: 160px !important;
  margin-left: 160px !important;
}

.mx-180 {
  margin-right: 180px !important;
  margin-left: 180px !important;
}

.mx-190 {
  margin-right: 190px !important;
  margin-left: 190px !important;
}

.mx-200 {
  margin-right: 200px !important;
  margin-left: 200px !important;
}

.mx-210 {
  margin-right: 210px !important;
  margin-left: 210px !important;
}

.mx-235 {
  margin-right: 235px !important;
  margin-left: 235px !important;
}

.mx-240 {
  margin-right: 240px !important;
  margin-left: 240px !important;
}

.mx-270 {
  margin-right: 270px !important;
  margin-left: 270px !important;
}

.mx-290 {
  margin-right: 290px !important;
  margin-left: 290px !important;
}

.mx-300 {
  margin-right: 300px !important;
  margin-left: 300px !important;
}

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

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

.my-1 {
  margin-top: 1px !important;
  margin-bottom: 1px !important;
}

.my-2 {
  margin-top: 2px !important;
  margin-bottom: 2px !important;
}

.my-3 {
  margin-top: 3px !important;
  margin-bottom: 3px !important;
}

.my-4 {
  margin-top: 4px !important;
  margin-bottom: 4px !important;
}

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

.my-6 {
  margin-top: 6px !important;
  margin-bottom: 6px !important;
}

.my-7 {
  margin-top: 7px !important;
  margin-bottom: 7px !important;
}

.my-8 {
  margin-top: 8px !important;
  margin-bottom: 8px !important;
}

.my-9 {
  margin-top: 9px !important;
  margin-bottom: 9px !important;
}

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

.my-11 {
  margin-top: 11px !important;
  margin-bottom: 11px !important;
}

.my-12 {
  margin-top: 12px !important;
  margin-bottom: 12px !important;
}

.my-13 {
  margin-top: 13px !important;
  margin-bottom: 13px !important;
}

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

.my-17 {
  margin-top: 17px !important;
  margin-bottom: 17px !important;
}

.my-18 {
  margin-top: 18px !important;
  margin-bottom: 18px !important;
}

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

.my-25 {
  margin-top: 25px !important;
  margin-bottom: 25px !important;
}

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

.my-35 {
  margin-top: 35px !important;
  margin-bottom: 35px !important;
}

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

.my-45 {
  margin-top: 45px !important;
  margin-bottom: 45px !important;
}

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

.my-55 {
  margin-top: 55px !important;
  margin-bottom: 55px !important;
}

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

.my-65 {
  margin-top: 65px !important;
  margin-bottom: 65px !important;
}

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

.my-75 {
  margin-top: 75px !important;
  margin-bottom: 75px !important;
}

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

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

.my-95 {
  margin-top: 95px !important;
  margin-bottom: 95px !important;
}

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

.my-110 {
  margin-top: 110px !important;
  margin-bottom: 110px !important;
}

.my-115 {
  margin-top: 115px !important;
  margin-bottom: 115px !important;
}

.my-120 {
  margin-top: 120px !important;
  margin-bottom: 120px !important;
}

.my-130 {
  margin-top: 130px !important;
  margin-bottom: 130px !important;
}

.my-150 {
  margin-top: 150px !important;
  margin-bottom: 150px !important;
}

.my-160 {
  margin-top: 160px !important;
  margin-bottom: 160px !important;
}

.my-180 {
  margin-top: 180px !important;
  margin-bottom: 180px !important;
}

.my-190 {
  margin-top: 190px !important;
  margin-bottom: 190px !important;
}

.my-200 {
  margin-top: 200px !important;
  margin-bottom: 200px !important;
}

.my-210 {
  margin-top: 210px !important;
  margin-bottom: 210px !important;
}

.my-235 {
  margin-top: 235px !important;
  margin-bottom: 235px !important;
}

.my-240 {
  margin-top: 240px !important;
  margin-bottom: 240px !important;
}

.my-270 {
  margin-top: 270px !important;
  margin-bottom: 270px !important;
}

.my-290 {
  margin-top: 290px !important;
  margin-bottom: 290px !important;
}

.my-300 {
  margin-top: 300px !important;
  margin-bottom: 300px !important;
}

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

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

.mt-1 {
  margin-top: 1px !important;
}

.mt-2 {
  margin-top: 2px !important;
}

.mt-3 {
  margin-top: 3px !important;
}

.mt-4 {
  margin-top: 4px !important;
}

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

.mt-6 {
  margin-top: 6px !important;
}

.mt-7 {
  margin-top: 7px !important;
}

.mt-8 {
  margin-top: 8px !important;
}

.mt-9 {
  margin-top: 9px !important;
}

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

.mt-11 {
  margin-top: 11px !important;
}

.mt-12 {
  margin-top: 12px !important;
}

.mt-13 {
  margin-top: 13px !important;
}

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

.mt-17 {
  margin-top: 17px !important;
}

.mt-18 {
  margin-top: 18px !important;
}

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

.mt-25 {
  margin-top: 25px !important;
}

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

.mt-35 {
  margin-top: 35px !important;
}

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

.mt-45 {
  margin-top: 45px !important;
}

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

.mt-55 {
  margin-top: 55px !important;
}

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

.mt-65 {
  margin-top: 65px !important;
}

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

.mt-75 {
  margin-top: 75px !important;
}

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

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

.mt-95 {
  margin-top: 95px !important;
}

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

.mt-110 {
  margin-top: 110px !important;
}

.mt-115 {
  margin-top: 115px !important;
}

.mt-120 {
  margin-top: 120px !important;
}

.mt-130 {
  margin-top: 130px !important;
}

.mt-150 {
  margin-top: 150px !important;
}

.mt-160 {
  margin-top: 160px !important;
}

.mt-180 {
  margin-top: 180px !important;
}

.mt-190 {
  margin-top: 190px !important;
}

.mt-200 {
  margin-top: 200px !important;
}

.mt-210 {
  margin-top: 210px !important;
}

.mt-235 {
  margin-top: 235px !important;
}

.mt-240 {
  margin-top: 240px !important;
}

.mt-270 {
  margin-top: 270px !important;
}

.mt-290 {
  margin-top: 290px !important;
}

.mt-300 {
  margin-top: 300px !important;
}

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

.me-0 {
  margin-right: 0 !important;
}

.me-1 {
  margin-right: 1px !important;
}

.me-2 {
  margin-right: 2px !important;
}

.me-3 {
  margin-right: 3px !important;
}

.me-4 {
  margin-right: 4px !important;
}

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

.me-6 {
  margin-right: 6px !important;
}

.me-7 {
  margin-right: 7px !important;
}

.me-8 {
  margin-right: 8px !important;
}

.me-9 {
  margin-right: 9px !important;
}

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

.me-11 {
  margin-right: 11px !important;
}

.me-12 {
  margin-right: 12px !important;
}

.me-13 {
  margin-right: 13px !important;
}

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

.me-17 {
  margin-right: 17px !important;
}

.me-18 {
  margin-right: 18px !important;
}

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

.me-25 {
  margin-right: 25px !important;
}

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

.me-35 {
  margin-right: 35px !important;
}

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

.me-45 {
  margin-right: 45px !important;
}

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

.me-55 {
  margin-right: 55px !important;
}

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

.me-65 {
  margin-right: 65px !important;
}

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

.me-75 {
  margin-right: 75px !important;
}

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

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

.me-95 {
  margin-right: 95px !important;
}

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

.me-110 {
  margin-right: 110px !important;
}

.me-115 {
  margin-right: 115px !important;
}

.me-120 {
  margin-right: 120px !important;
}

.me-130 {
  margin-right: 130px !important;
}

.me-150 {
  margin-right: 150px !important;
}

.me-160 {
  margin-right: 160px !important;
}

.me-180 {
  margin-right: 180px !important;
}

.me-190 {
  margin-right: 190px !important;
}

.me-200 {
  margin-right: 200px !important;
}

.me-210 {
  margin-right: 210px !important;
}

.me-235 {
  margin-right: 235px !important;
}

.me-240 {
  margin-right: 240px !important;
}

.me-270 {
  margin-right: 270px !important;
}

.me-290 {
  margin-right: 290px !important;
}

.me-300 {
  margin-right: 300px !important;
}

.me-auto {
  margin-right: auto !important;
}

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

.mb-1 {
  margin-bottom: 1px !important;
}

.mb-2 {
  margin-bottom: 2px !important;
}

.mb-3 {
  margin-bottom: 3px !important;
}

.mb-4 {
  margin-bottom: 4px !important;
}

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

.mb-6 {
  margin-bottom: 6px !important;
}

.mb-7 {
  margin-bottom: 7px !important;
}

.mb-8 {
  margin-bottom: 8px !important;
}

.mb-9 {
  margin-bottom: 9px !important;
}

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

.mb-11 {
  margin-bottom: 11px !important;
}

.mb-12 {
  margin-bottom: 12px !important;
}

.mb-13 {
  margin-bottom: 13px !important;
}

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

.mb-17 {
  margin-bottom: 17px !important;
}

.mb-18 {
  margin-bottom: 18px !important;
}

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

.mb-25 {
  margin-bottom: 25px !important;
}

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

.mb-35 {
  margin-bottom: 35px !important;
}

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

.mb-45 {
  margin-bottom: 45px !important;
}

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

.mb-55 {
  margin-bottom: 55px !important;
}

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

.mb-65 {
  margin-bottom: 65px !important;
}

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

.mb-75 {
  margin-bottom: 75px !important;
}

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

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

.mb-95 {
  margin-bottom: 95px !important;
}

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

.mb-110 {
  margin-bottom: 110px !important;
}

.mb-115 {
  margin-bottom: 115px !important;
}

.mb-120 {
  margin-bottom: 120px !important;
}

.mb-130 {
  margin-bottom: 130px !important;
}

.mb-150 {
  margin-bottom: 150px !important;
}

.mb-160 {
  margin-bottom: 160px !important;
}

.mb-180 {
  margin-bottom: 180px !important;
}

.mb-190 {
  margin-bottom: 190px !important;
}

.mb-200 {
  margin-bottom: 200px !important;
}

.mb-210 {
  margin-bottom: 210px !important;
}

.mb-235 {
  margin-bottom: 235px !important;
}

.mb-240 {
  margin-bottom: 240px !important;
}

.mb-270 {
  margin-bottom: 270px !important;
}

.mb-290 {
  margin-bottom: 290px !important;
}

.mb-300 {
  margin-bottom: 300px !important;
}

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

.ms-0 {
  margin-left: 0 !important;
}

.ms-1 {
  margin-left: 1px !important;
}

.ms-2 {
  margin-left: 2px !important;
}

.ms-3 {
  margin-left: 3px !important;
}

.ms-4 {
  margin-left: 4px !important;
}

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

.ms-6 {
  margin-left: 6px !important;
}

.ms-7 {
  margin-left: 7px !important;
}

.ms-8 {
  margin-left: 8px !important;
}

.ms-9 {
  margin-left: 9px !important;
}

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

.ms-11 {
  margin-left: 11px !important;
}

.ms-12 {
  margin-left: 12px !important;
}

.ms-13 {
  margin-left: 13px !important;
}

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

.ms-17 {
  margin-left: 17px !important;
}

.ms-18 {
  margin-left: 18px !important;
}

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

.ms-25 {
  margin-left: 25px !important;
}

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

.ms-35 {
  margin-left: 35px !important;
}

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

.ms-45 {
  margin-left: 45px !important;
}

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

.ms-55 {
  margin-left: 55px !important;
}

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

.ms-65 {
  margin-left: 65px !important;
}

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

.ms-75 {
  margin-left: 75px !important;
}

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

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

.ms-95 {
  margin-left: 95px !important;
}

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

.ms-110 {
  margin-left: 110px !important;
}

.ms-115 {
  margin-left: 115px !important;
}

.ms-120 {
  margin-left: 120px !important;
}

.ms-130 {
  margin-left: 130px !important;
}

.ms-150 {
  margin-left: 150px !important;
}

.ms-160 {
  margin-left: 160px !important;
}

.ms-180 {
  margin-left: 180px !important;
}

.ms-190 {
  margin-left: 190px !important;
}

.ms-200 {
  margin-left: 200px !important;
}

.ms-210 {
  margin-left: 210px !important;
}

.ms-235 {
  margin-left: 235px !important;
}

.ms-240 {
  margin-left: 240px !important;
}

.ms-270 {
  margin-left: 270px !important;
}

.ms-290 {
  margin-left: 290px !important;
}

.ms-300 {
  margin-left: 300px !important;
}

.ms-auto {
  margin-left: auto !important;
}

.m-n1 {
  margin: -1px !important;
}

.m-n2 {
  margin: -2px !important;
}

.m-n3 {
  margin: -3px !important;
}

.m-n4 {
  margin: -4px !important;
}

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

.m-n6 {
  margin: -6px !important;
}

.m-n7 {
  margin: -7px !important;
}

.m-n8 {
  margin: -8px !important;
}

.m-n9 {
  margin: -9px !important;
}

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

.m-n11 {
  margin: -11px !important;
}

.m-n12 {
  margin: -12px !important;
}

.m-n13 {
  margin: -13px !important;
}

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

.m-n17 {
  margin: -17px !important;
}

.m-n18 {
  margin: -18px !important;
}

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

.m-n25 {
  margin: -25px !important;
}

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

.m-n35 {
  margin: -35px !important;
}

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

.m-n45 {
  margin: -45px !important;
}

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

.m-n55 {
  margin: -55px !important;
}

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

.m-n65 {
  margin: -65px !important;
}

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

.m-n75 {
  margin: -75px !important;
}

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

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

.m-n95 {
  margin: -95px !important;
}

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

.m-n110 {
  margin: -110px !important;
}

.m-n115 {
  margin: -115px !important;
}

.m-n120 {
  margin: -120px !important;
}

.m-n130 {
  margin: -130px !important;
}

.m-n150 {
  margin: -150px !important;
}

.m-n160 {
  margin: -160px !important;
}

.m-n180 {
  margin: -180px !important;
}

.m-n190 {
  margin: -190px !important;
}

.m-n200 {
  margin: -200px !important;
}

.m-n210 {
  margin: -210px !important;
}

.m-n235 {
  margin: -235px !important;
}

.m-n240 {
  margin: -240px !important;
}

.m-n270 {
  margin: -270px !important;
}

.m-n290 {
  margin: -290px !important;
}

.m-n300 {
  margin: -300px !important;
}

.mx-n1 {
  margin-right: -1px !important;
  margin-left: -1px !important;
}

.mx-n2 {
  margin-right: -2px !important;
  margin-left: -2px !important;
}

.mx-n3 {
  margin-right: -3px !important;
  margin-left: -3px !important;
}

.mx-n4 {
  margin-right: -4px !important;
  margin-left: -4px !important;
}

.mx-n5 {
  margin-right: -5px !important;
  margin-left: -5px !important;
}

.mx-n6 {
  margin-right: -6px !important;
  margin-left: -6px !important;
}

.mx-n7 {
  margin-right: -7px !important;
  margin-left: -7px !important;
}

.mx-n8 {
  margin-right: -8px !important;
  margin-left: -8px !important;
}

.mx-n9 {
  margin-right: -9px !important;
  margin-left: -9px !important;
}

.mx-n10 {
  margin-right: -10px !important;
  margin-left: -10px !important;
}

.mx-n11 {
  margin-right: -11px !important;
  margin-left: -11px !important;
}

.mx-n12 {
  margin-right: -12px !important;
  margin-left: -12px !important;
}

.mx-n13 {
  margin-right: -13px !important;
  margin-left: -13px !important;
}

.mx-n15 {
  margin-right: -15px !important;
  margin-left: -15px !important;
}

.mx-n17 {
  margin-right: -17px !important;
  margin-left: -17px !important;
}

.mx-n18 {
  margin-right: -18px !important;
  margin-left: -18px !important;
}

.mx-n20 {
  margin-right: -20px !important;
  margin-left: -20px !important;
}

.mx-n25 {
  margin-right: -25px !important;
  margin-left: -25px !important;
}

.mx-n30 {
  margin-right: -30px !important;
  margin-left: -30px !important;
}

.mx-n35 {
  margin-right: -35px !important;
  margin-left: -35px !important;
}

.mx-n40 {
  margin-right: -40px !important;
  margin-left: -40px !important;
}

.mx-n45 {
  margin-right: -45px !important;
  margin-left: -45px !important;
}

.mx-n50 {
  margin-right: -50px !important;
  margin-left: -50px !important;
}

.mx-n55 {
  margin-right: -55px !important;
  margin-left: -55px !important;
}

.mx-n60 {
  margin-right: -60px !important;
  margin-left: -60px !important;
}

.mx-n65 {
  margin-right: -65px !important;
  margin-left: -65px !important;
}

.mx-n70 {
  margin-right: -70px !important;
  margin-left: -70px !important;
}

.mx-n75 {
  margin-right: -75px !important;
  margin-left: -75px !important;
}

.mx-n80 {
  margin-right: -80px !important;
  margin-left: -80px !important;
}

.mx-n90 {
  margin-right: -90px !important;
  margin-left: -90px !important;
}

.mx-n95 {
  margin-right: -95px !important;
  margin-left: -95px !important;
}

.mx-n100 {
  margin-right: -100px !important;
  margin-left: -100px !important;
}

.mx-n110 {
  margin-right: -110px !important;
  margin-left: -110px !important;
}

.mx-n115 {
  margin-right: -115px !important;
  margin-left: -115px !important;
}

.mx-n120 {
  margin-right: -120px !important;
  margin-left: -120px !important;
}

.mx-n130 {
  margin-right: -130px !important;
  margin-left: -130px !important;
}

.mx-n150 {
  margin-right: -150px !important;
  margin-left: -150px !important;
}

.mx-n160 {
  margin-right: -160px !important;
  margin-left: -160px !important;
}

.mx-n180 {
  margin-right: -180px !important;
  margin-left: -180px !important;
}

.mx-n190 {
  margin-right: -190px !important;
  margin-left: -190px !important;
}

.mx-n200 {
  margin-right: -200px !important;
  margin-left: -200px !important;
}

.mx-n210 {
  margin-right: -210px !important;
  margin-left: -210px !important;
}

.mx-n235 {
  margin-right: -235px !important;
  margin-left: -235px !important;
}

.mx-n240 {
  margin-right: -240px !important;
  margin-left: -240px !important;
}

.mx-n270 {
  margin-right: -270px !important;
  margin-left: -270px !important;
}

.mx-n290 {
  margin-right: -290px !important;
  margin-left: -290px !important;
}

.mx-n300 {
  margin-right: -300px !important;
  margin-left: -300px !important;
}

.my-n1 {
  margin-top: -1px !important;
  margin-bottom: -1px !important;
}

.my-n2 {
  margin-top: -2px !important;
  margin-bottom: -2px !important;
}

.my-n3 {
  margin-top: -3px !important;
  margin-bottom: -3px !important;
}

.my-n4 {
  margin-top: -4px !important;
  margin-bottom: -4px !important;
}

.my-n5 {
  margin-top: -5px !important;
  margin-bottom: -5px !important;
}

.my-n6 {
  margin-top: -6px !important;
  margin-bottom: -6px !important;
}

.my-n7 {
  margin-top: -7px !important;
  margin-bottom: -7px !important;
}

.my-n8 {
  margin-top: -8px !important;
  margin-bottom: -8px !important;
}

.my-n9 {
  margin-top: -9px !important;
  margin-bottom: -9px !important;
}

.my-n10 {
  margin-top: -10px !important;
  margin-bottom: -10px !important;
}

.my-n11 {
  margin-top: -11px !important;
  margin-bottom: -11px !important;
}

.my-n12 {
  margin-top: -12px !important;
  margin-bottom: -12px !important;
}

.my-n13 {
  margin-top: -13px !important;
  margin-bottom: -13px !important;
}

.my-n15 {
  margin-top: -15px !important;
  margin-bottom: -15px !important;
}

.my-n17 {
  margin-top: -17px !important;
  margin-bottom: -17px !important;
}

.my-n18 {
  margin-top: -18px !important;
  margin-bottom: -18px !important;
}

.my-n20 {
  margin-top: -20px !important;
  margin-bottom: -20px !important;
}

.my-n25 {
  margin-top: -25px !important;
  margin-bottom: -25px !important;
}

.my-n30 {
  margin-top: -30px !important;
  margin-bottom: -30px !important;
}

.my-n35 {
  margin-top: -35px !important;
  margin-bottom: -35px !important;
}

.my-n40 {
  margin-top: -40px !important;
  margin-bottom: -40px !important;
}

.my-n45 {
  margin-top: -45px !important;
  margin-bottom: -45px !important;
}

.my-n50 {
  margin-top: -50px !important;
  margin-bottom: -50px !important;
}

.my-n55 {
  margin-top: -55px !important;
  margin-bottom: -55px !important;
}

.my-n60 {
  margin-top: -60px !important;
  margin-bottom: -60px !important;
}

.my-n65 {
  margin-top: -65px !important;
  margin-bottom: -65px !important;
}

.my-n70 {
  margin-top: -70px !important;
  margin-bottom: -70px !important;
}

.my-n75 {
  margin-top: -75px !important;
  margin-bottom: -75px !important;
}

.my-n80 {
  margin-top: -80px !important;
  margin-bottom: -80px !important;
}

.my-n90 {
  margin-top: -90px !important;
  margin-bottom: -90px !important;
}

.my-n95 {
  margin-top: -95px !important;
  margin-bottom: -95px !important;
}

.my-n100 {
  margin-top: -100px !important;
  margin-bottom: -100px !important;
}

.my-n110 {
  margin-top: -110px !important;
  margin-bottom: -110px !important;
}

.my-n115 {
  margin-top: -115px !important;
  margin-bottom: -115px !important;
}

.my-n120 {
  margin-top: -120px !important;
  margin-bottom: -120px !important;
}

.my-n130 {
  margin-top: -130px !important;
  margin-bottom: -130px !important;
}

.my-n150 {
  margin-top: -150px !important;
  margin-bottom: -150px !important;
}

.my-n160 {
  margin-top: -160px !important;
  margin-bottom: -160px !important;
}

.my-n180 {
  margin-top: -180px !important;
  margin-bottom: -180px !important;
}

.my-n190 {
  margin-top: -190px !important;
  margin-bottom: -190px !important;
}

.my-n200 {
  margin-top: -200px !important;
  margin-bottom: -200px !important;
}

.my-n210 {
  margin-top: -210px !important;
  margin-bottom: -210px !important;
}

.my-n235 {
  margin-top: -235px !important;
  margin-bottom: -235px !important;
}

.my-n240 {
  margin-top: -240px !important;
  margin-bottom: -240px !important;
}

.my-n270 {
  margin-top: -270px !important;
  margin-bottom: -270px !important;
}

.my-n290 {
  margin-top: -290px !important;
  margin-bottom: -290px !important;
}

.my-n300 {
  margin-top: -300px !important;
  margin-bottom: -300px !important;
}

.mt-n1 {
  margin-top: -1px !important;
}

.mt-n2 {
  margin-top: -2px !important;
}

.mt-n3 {
  margin-top: -3px !important;
}

.mt-n4 {
  margin-top: -4px !important;
}

.mt-n5 {
  margin-top: -5px !important;
}

.mt-n6 {
  margin-top: -6px !important;
}

.mt-n7 {
  margin-top: -7px !important;
}

.mt-n8 {
  margin-top: -8px !important;
}

.mt-n9 {
  margin-top: -9px !important;
}

.mt-n10 {
  margin-top: -10px !important;
}

.mt-n11 {
  margin-top: -11px !important;
}

.mt-n12 {
  margin-top: -12px !important;
}

.mt-n13 {
  margin-top: -13px !important;
}

.mt-n15 {
  margin-top: -15px !important;
}

.mt-n17 {
  margin-top: -17px !important;
}

.mt-n18 {
  margin-top: -18px !important;
}

.mt-n20 {
  margin-top: -20px !important;
}

.mt-n25 {
  margin-top: -25px !important;
}

.mt-n30 {
  margin-top: -30px !important;
}

.mt-n35 {
  margin-top: -35px !important;
}

.mt-n40 {
  margin-top: -40px !important;
}

.mt-n45 {
  margin-top: -45px !important;
}

.mt-n50 {
  margin-top: -50px !important;
}

.mt-n55 {
  margin-top: -55px !important;
}

.mt-n60 {
  margin-top: -60px !important;
}

.mt-n65 {
  margin-top: -65px !important;
}

.mt-n70 {
  margin-top: -70px !important;
}

.mt-n75 {
  margin-top: -75px !important;
}

.mt-n80 {
  margin-top: -80px !important;
}

.mt-n90 {
  margin-top: -90px !important;
}

.mt-n95 {
  margin-top: -95px !important;
}

.mt-n100 {
  margin-top: -100px !important;
}

.mt-n110 {
  margin-top: -110px !important;
}

.mt-n115 {
  margin-top: -115px !important;
}

.mt-n120 {
  margin-top: -120px !important;
}

.mt-n130 {
  margin-top: -130px !important;
}

.mt-n150 {
  margin-top: -150px !important;
}

.mt-n160 {
  margin-top: -160px !important;
}

.mt-n180 {
  margin-top: -180px !important;
}

.mt-n190 {
  margin-top: -190px !important;
}

.mt-n200 {
  margin-top: -200px !important;
}

.mt-n210 {
  margin-top: -210px !important;
}

.mt-n235 {
  margin-top: -235px !important;
}

.mt-n240 {
  margin-top: -240px !important;
}

.mt-n270 {
  margin-top: -270px !important;
}

.mt-n290 {
  margin-top: -290px !important;
}

.mt-n300 {
  margin-top: -300px !important;
}

.me-n1 {
  margin-right: -1px !important;
}

.me-n2 {
  margin-right: -2px !important;
}

.me-n3 {
  margin-right: -3px !important;
}

.me-n4 {
  margin-right: -4px !important;
}

.me-n5 {
  margin-right: -5px !important;
}

.me-n6 {
  margin-right: -6px !important;
}

.me-n7 {
  margin-right: -7px !important;
}

.me-n8 {
  margin-right: -8px !important;
}

.me-n9 {
  margin-right: -9px !important;
}

.me-n10 {
  margin-right: -10px !important;
}

.me-n11 {
  margin-right: -11px !important;
}

.me-n12 {
  margin-right: -12px !important;
}

.me-n13 {
  margin-right: -13px !important;
}

.me-n15 {
  margin-right: -15px !important;
}

.me-n17 {
  margin-right: -17px !important;
}

.me-n18 {
  margin-right: -18px !important;
}

.me-n20 {
  margin-right: -20px !important;
}

.me-n25 {
  margin-right: -25px !important;
}

.me-n30 {
  margin-right: -30px !important;
}

.me-n35 {
  margin-right: -35px !important;
}

.me-n40 {
  margin-right: -40px !important;
}

.me-n45 {
  margin-right: -45px !important;
}

.me-n50 {
  margin-right: -50px !important;
}

.me-n55 {
  margin-right: -55px !important;
}

.me-n60 {
  margin-right: -60px !important;
}

.me-n65 {
  margin-right: -65px !important;
}

.me-n70 {
  margin-right: -70px !important;
}

.me-n75 {
  margin-right: -75px !important;
}

.me-n80 {
  margin-right: -80px !important;
}

.me-n90 {
  margin-right: -90px !important;
}

.me-n95 {
  margin-right: -95px !important;
}

.me-n100 {
  margin-right: -100px !important;
}

.me-n110 {
  margin-right: -110px !important;
}

.me-n115 {
  margin-right: -115px !important;
}

.me-n120 {
  margin-right: -120px !important;
}

.me-n130 {
  margin-right: -130px !important;
}

.me-n150 {
  margin-right: -150px !important;
}

.me-n160 {
  margin-right: -160px !important;
}

.me-n180 {
  margin-right: -180px !important;
}

.me-n190 {
  margin-right: -190px !important;
}

.me-n200 {
  margin-right: -200px !important;
}

.me-n210 {
  margin-right: -210px !important;
}

.me-n235 {
  margin-right: -235px !important;
}

.me-n240 {
  margin-right: -240px !important;
}

.me-n270 {
  margin-right: -270px !important;
}

.me-n290 {
  margin-right: -290px !important;
}

.me-n300 {
  margin-right: -300px !important;
}

.mb-n1 {
  margin-bottom: -1px !important;
}

.mb-n2 {
  margin-bottom: -2px !important;
}

.mb-n3 {
  margin-bottom: -3px !important;
}

.mb-n4 {
  margin-bottom: -4px !important;
}

.mb-n5 {
  margin-bottom: -5px !important;
}

.mb-n6 {
  margin-bottom: -6px !important;
}

.mb-n7 {
  margin-bottom: -7px !important;
}

.mb-n8 {
  margin-bottom: -8px !important;
}

.mb-n9 {
  margin-bottom: -9px !important;
}

.mb-n10 {
  margin-bottom: -10px !important;
}

.mb-n11 {
  margin-bottom: -11px !important;
}

.mb-n12 {
  margin-bottom: -12px !important;
}

.mb-n13 {
  margin-bottom: -13px !important;
}

.mb-n15 {
  margin-bottom: -15px !important;
}

.mb-n17 {
  margin-bottom: -17px !important;
}

.mb-n18 {
  margin-bottom: -18px !important;
}

.mb-n20 {
  margin-bottom: -20px !important;
}

.mb-n25 {
  margin-bottom: -25px !important;
}

.mb-n30 {
  margin-bottom: -30px !important;
}

.mb-n35 {
  margin-bottom: -35px !important;
}

.mb-n40 {
  margin-bottom: -40px !important;
}

.mb-n45 {
  margin-bottom: -45px !important;
}

.mb-n50 {
  margin-bottom: -50px !important;
}

.mb-n55 {
  margin-bottom: -55px !important;
}

.mb-n60 {
  margin-bottom: -60px !important;
}

.mb-n65 {
  margin-bottom: -65px !important;
}

.mb-n70 {
  margin-bottom: -70px !important;
}

.mb-n75 {
  margin-bottom: -75px !important;
}

.mb-n80 {
  margin-bottom: -80px !important;
}

.mb-n90 {
  margin-bottom: -90px !important;
}

.mb-n95 {
  margin-bottom: -95px !important;
}

.mb-n100 {
  margin-bottom: -100px !important;
}

.mb-n110 {
  margin-bottom: -110px !important;
}

.mb-n115 {
  margin-bottom: -115px !important;
}

.mb-n120 {
  margin-bottom: -120px !important;
}

.mb-n130 {
  margin-bottom: -130px !important;
}

.mb-n150 {
  margin-bottom: -150px !important;
}

.mb-n160 {
  margin-bottom: -160px !important;
}

.mb-n180 {
  margin-bottom: -180px !important;
}

.mb-n190 {
  margin-bottom: -190px !important;
}

.mb-n200 {
  margin-bottom: -200px !important;
}

.mb-n210 {
  margin-bottom: -210px !important;
}

.mb-n235 {
  margin-bottom: -235px !important;
}

.mb-n240 {
  margin-bottom: -240px !important;
}

.mb-n270 {
  margin-bottom: -270px !important;
}

.mb-n290 {
  margin-bottom: -290px !important;
}

.mb-n300 {
  margin-bottom: -300px !important;
}

.ms-n1 {
  margin-left: -1px !important;
}

.ms-n2 {
  margin-left: -2px !important;
}

.ms-n3 {
  margin-left: -3px !important;
}

.ms-n4 {
  margin-left: -4px !important;
}

.ms-n5 {
  margin-left: -5px !important;
}

.ms-n6 {
  margin-left: -6px !important;
}

.ms-n7 {
  margin-left: -7px !important;
}

.ms-n8 {
  margin-left: -8px !important;
}

.ms-n9 {
  margin-left: -9px !important;
}

.ms-n10 {
  margin-left: -10px !important;
}

.ms-n11 {
  margin-left: -11px !important;
}

.ms-n12 {
  margin-left: -12px !important;
}

.ms-n13 {
  margin-left: -13px !important;
}

.ms-n15 {
  margin-left: -15px !important;
}

.ms-n17 {
  margin-left: -17px !important;
}

.ms-n18 {
  margin-left: -18px !important;
}

.ms-n20 {
  margin-left: -20px !important;
}

.ms-n25 {
  margin-left: -25px !important;
}

.ms-n30 {
  margin-left: -30px !important;
}

.ms-n35 {
  margin-left: -35px !important;
}

.ms-n40 {
  margin-left: -40px !important;
}

.ms-n45 {
  margin-left: -45px !important;
}

.ms-n50 {
  margin-left: -50px !important;
}

.ms-n55 {
  margin-left: -55px !important;
}

.ms-n60 {
  margin-left: -60px !important;
}

.ms-n65 {
  margin-left: -65px !important;
}

.ms-n70 {
  margin-left: -70px !important;
}

.ms-n75 {
  margin-left: -75px !important;
}

.ms-n80 {
  margin-left: -80px !important;
}

.ms-n90 {
  margin-left: -90px !important;
}

.ms-n95 {
  margin-left: -95px !important;
}

.ms-n100 {
  margin-left: -100px !important;
}

.ms-n110 {
  margin-left: -110px !important;
}

.ms-n115 {
  margin-left: -115px !important;
}

.ms-n120 {
  margin-left: -120px !important;
}

.ms-n130 {
  margin-left: -130px !important;
}

.ms-n150 {
  margin-left: -150px !important;
}

.ms-n160 {
  margin-left: -160px !important;
}

.ms-n180 {
  margin-left: -180px !important;
}

.ms-n190 {
  margin-left: -190px !important;
}

.ms-n200 {
  margin-left: -200px !important;
}

.ms-n210 {
  margin-left: -210px !important;
}

.ms-n235 {
  margin-left: -235px !important;
}

.ms-n240 {
  margin-left: -240px !important;
}

.ms-n270 {
  margin-left: -270px !important;
}

.ms-n290 {
  margin-left: -290px !important;
}

.ms-n300 {
  margin-left: -300px !important;
}

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

.p-1 {
  padding: 1px !important;
}

.p-2 {
  padding: 2px !important;
}

.p-3 {
  padding: 3px !important;
}

.p-4 {
  padding: 4px !important;
}

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

.p-6 {
  padding: 6px !important;
}

.p-7 {
  padding: 7px !important;
}

.p-8 {
  padding: 8px !important;
}

.p-9 {
  padding: 9px !important;
}

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

.p-11 {
  padding: 11px !important;
}

.p-12 {
  padding: 12px !important;
}

.p-13 {
  padding: 13px !important;
}

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

.p-17 {
  padding: 17px !important;
}

.p-18 {
  padding: 18px !important;
}

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

.p-25 {
  padding: 25px !important;
}

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

.p-35 {
  padding: 35px !important;
}

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

.p-45 {
  padding: 45px !important;
}

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

.p-55 {
  padding: 55px !important;
}

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

.p-65 {
  padding: 65px !important;
}

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

.p-75 {
  padding: 75px !important;
}

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

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

.p-95 {
  padding: 95px !important;
}

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

.p-110 {
  padding: 110px !important;
}

.p-115 {
  padding: 115px !important;
}

.p-120 {
  padding: 120px !important;
}

.p-130 {
  padding: 130px !important;
}

.p-150 {
  padding: 150px !important;
}

.p-160 {
  padding: 160px !important;
}

.p-180 {
  padding: 180px !important;
}

.p-190 {
  padding: 190px !important;
}

.p-200 {
  padding: 200px !important;
}

.p-210 {
  padding: 210px !important;
}

.p-235 {
  padding: 235px !important;
}

.p-240 {
  padding: 240px !important;
}

.p-270 {
  padding: 270px !important;
}

.p-290 {
  padding: 290px !important;
}

.p-300 {
  padding: 300px !important;
}

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

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

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

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

.px-4 {
  padding-right: 4px !important;
  padding-left: 4px !important;
}

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

.px-6 {
  padding-right: 6px !important;
  padding-left: 6px !important;
}

.px-7 {
  padding-right: 7px !important;
  padding-left: 7px !important;
}

.px-8 {
  padding-right: 8px !important;
  padding-left: 8px !important;
}

.px-9 {
  padding-right: 9px !important;
  padding-left: 9px !important;
}

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

.px-11 {
  padding-right: 11px !important;
  padding-left: 11px !important;
}

.px-12 {
  padding-right: 12px !important;
  padding-left: 12px !important;
}

.px-13 {
  padding-right: 13px !important;
  padding-left: 13px !important;
}

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

.px-17 {
  padding-right: 17px !important;
  padding-left: 17px !important;
}

.px-18 {
  padding-right: 18px !important;
  padding-left: 18px !important;
}

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

.px-25 {
  padding-right: 25px !important;
  padding-left: 25px !important;
}

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

.px-35 {
  padding-right: 35px !important;
  padding-left: 35px !important;
}

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

.px-45 {
  padding-right: 45px !important;
  padding-left: 45px !important;
}

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

.px-55 {
  padding-right: 55px !important;
  padding-left: 55px !important;
}

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

.px-65 {
  padding-right: 65px !important;
  padding-left: 65px !important;
}

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

.px-75 {
  padding-right: 75px !important;
  padding-left: 75px !important;
}

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

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

.px-95 {
  padding-right: 95px !important;
  padding-left: 95px !important;
}

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

.px-110 {
  padding-right: 110px !important;
  padding-left: 110px !important;
}

.px-115 {
  padding-right: 115px !important;
  padding-left: 115px !important;
}

.px-120 {
  padding-right: 120px !important;
  padding-left: 120px !important;
}

.px-130 {
  padding-right: 130px !important;
  padding-left: 130px !important;
}

.px-150 {
  padding-right: 150px !important;
  padding-left: 150px !important;
}

.px-160 {
  padding-right: 160px !important;
  padding-left: 160px !important;
}

.px-180 {
  padding-right: 180px !important;
  padding-left: 180px !important;
}

.px-190 {
  padding-right: 190px !important;
  padding-left: 190px !important;
}

.px-200 {
  padding-right: 200px !important;
  padding-left: 200px !important;
}

.px-210 {
  padding-right: 210px !important;
  padding-left: 210px !important;
}

.px-235 {
  padding-right: 235px !important;
  padding-left: 235px !important;
}

.px-240 {
  padding-right: 240px !important;
  padding-left: 240px !important;
}

.px-270 {
  padding-right: 270px !important;
  padding-left: 270px !important;
}

.px-290 {
  padding-right: 290px !important;
  padding-left: 290px !important;
}

.px-300 {
  padding-right: 300px !important;
  padding-left: 300px !important;
}

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

.py-1 {
  padding-top: 1px !important;
  padding-bottom: 1px !important;
}

.py-2 {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

.py-3 {
  padding-top: 3px !important;
  padding-bottom: 3px !important;
}

.py-4 {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}

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

.py-6 {
  padding-top: 6px !important;
  padding-bottom: 6px !important;
}

.py-7 {
  padding-top: 7px !important;
  padding-bottom: 7px !important;
}

.py-8 {
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.py-9 {
  padding-top: 9px !important;
  padding-bottom: 9px !important;
}

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

.py-11 {
  padding-top: 11px !important;
  padding-bottom: 11px !important;
}

.py-12 {
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.py-13 {
  padding-top: 13px !important;
  padding-bottom: 13px !important;
}

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

.py-17 {
  padding-top: 17px !important;
  padding-bottom: 17px !important;
}

.py-18 {
  padding-top: 18px !important;
  padding-bottom: 18px !important;
}

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

.py-25 {
  padding-top: 25px !important;
  padding-bottom: 25px !important;
}

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

.py-35 {
  padding-top: 35px !important;
  padding-bottom: 35px !important;
}

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

.py-45 {
  padding-top: 45px !important;
  padding-bottom: 45px !important;
}

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

.py-55 {
  padding-top: 55px !important;
  padding-bottom: 55px !important;
}

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

.py-65 {
  padding-top: 65px !important;
  padding-bottom: 65px !important;
}

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

.py-75 {
  padding-top: 75px !important;
  padding-bottom: 75px !important;
}

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

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

.py-95 {
  padding-top: 95px !important;
  padding-bottom: 95px !important;
}

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

.py-110 {
  padding-top: 110px !important;
  padding-bottom: 110px !important;
}

.py-115 {
  padding-top: 115px !important;
  padding-bottom: 115px !important;
}

.py-120 {
  padding-top: 120px !important;
  padding-bottom: 120px !important;
}

.py-130 {
  padding-top: 130px !important;
  padding-bottom: 130px !important;
}

.py-150 {
  padding-top: 150px !important;
  padding-bottom: 150px !important;
}

.py-160 {
  padding-top: 160px !important;
  padding-bottom: 160px !important;
}

.py-180 {
  padding-top: 180px !important;
  padding-bottom: 180px !important;
}

.py-190 {
  padding-top: 190px !important;
  padding-bottom: 190px !important;
}

.py-200 {
  padding-top: 200px !important;
  padding-bottom: 200px !important;
}

.py-210 {
  padding-top: 210px !important;
  padding-bottom: 210px !important;
}

.py-235 {
  padding-top: 235px !important;
  padding-bottom: 235px !important;
}

.py-240 {
  padding-top: 240px !important;
  padding-bottom: 240px !important;
}

.py-270 {
  padding-top: 270px !important;
  padding-bottom: 270px !important;
}

.py-290 {
  padding-top: 290px !important;
  padding-bottom: 290px !important;
}

.py-300 {
  padding-top: 300px !important;
  padding-bottom: 300px !important;
}

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

.pt-1 {
  padding-top: 1px !important;
}

.pt-2 {
  padding-top: 2px !important;
}

.pt-3 {
  padding-top: 3px !important;
}

.pt-4 {
  padding-top: 4px !important;
}

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

.pt-6 {
  padding-top: 6px !important;
}

.pt-7 {
  padding-top: 7px !important;
}

.pt-8 {
  padding-top: 8px !important;
}

.pt-9 {
  padding-top: 9px !important;
}

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

.pt-11 {
  padding-top: 11px !important;
}

.pt-12 {
  padding-top: 12px !important;
}

.pt-13 {
  padding-top: 13px !important;
}

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

.pt-17 {
  padding-top: 17px !important;
}

.pt-18 {
  padding-top: 18px !important;
}

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

.pt-25 {
  padding-top: 25px !important;
}

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

.pt-35 {
  padding-top: 35px !important;
}

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

.pt-45 {
  padding-top: 45px !important;
}

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

.pt-55 {
  padding-top: 55px !important;
}

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

.pt-65 {
  padding-top: 65px !important;
}

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

.pt-75 {
  padding-top: 75px !important;
}

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

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

.pt-95 {
  padding-top: 95px !important;
}

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

.pt-110 {
  padding-top: 110px !important;
}

.pt-115 {
  padding-top: 115px !important;
}

.pt-120 {
  padding-top: 120px !important;
}

.pt-130 {
  padding-top: 130px !important;
}

.pt-150 {
  padding-top: 150px !important;
}

.pt-160 {
  padding-top: 160px !important;
}

.pt-180 {
  padding-top: 180px !important;
}

.pt-190 {
  padding-top: 190px !important;
}

.pt-200 {
  padding-top: 200px !important;
}

.pt-210 {
  padding-top: 210px !important;
}

.pt-235 {
  padding-top: 235px !important;
}

.pt-240 {
  padding-top: 240px !important;
}

.pt-270 {
  padding-top: 270px !important;
}

.pt-290 {
  padding-top: 290px !important;
}

.pt-300 {
  padding-top: 300px !important;
}

.pe-0 {
  padding-right: 0 !important;
}

.pe-1 {
  padding-right: 1px !important;
}

.pe-2 {
  padding-right: 2px !important;
}

.pe-3 {
  padding-right: 3px !important;
}

.pe-4 {
  padding-right: 4px !important;
}

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

.pe-6 {
  padding-right: 6px !important;
}

.pe-7 {
  padding-right: 7px !important;
}

.pe-8 {
  padding-right: 8px !important;
}

.pe-9 {
  padding-right: 9px !important;
}

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

.pe-11 {
  padding-right: 11px !important;
}

.pe-12 {
  padding-right: 12px !important;
}

.pe-13 {
  padding-right: 13px !important;
}

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

.pe-17 {
  padding-right: 17px !important;
}

.pe-18 {
  padding-right: 18px !important;
}

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

.pe-25 {
  padding-right: 25px !important;
}

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

.pe-35 {
  padding-right: 35px !important;
}

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

.pe-45 {
  padding-right: 45px !important;
}

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

.pe-55 {
  padding-right: 55px !important;
}

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

.pe-65 {
  padding-right: 65px !important;
}

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

.pe-75 {
  padding-right: 75px !important;
}

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

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

.pe-95 {
  padding-right: 95px !important;
}

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

.pe-110 {
  padding-right: 110px !important;
}

.pe-115 {
  padding-right: 115px !important;
}

.pe-120 {
  padding-right: 120px !important;
}

.pe-130 {
  padding-right: 130px !important;
}

.pe-150 {
  padding-right: 150px !important;
}

.pe-160 {
  padding-right: 160px !important;
}

.pe-180 {
  padding-right: 180px !important;
}

.pe-190 {
  padding-right: 190px !important;
}

.pe-200 {
  padding-right: 200px !important;
}

.pe-210 {
  padding-right: 210px !important;
}

.pe-235 {
  padding-right: 235px !important;
}

.pe-240 {
  padding-right: 240px !important;
}

.pe-270 {
  padding-right: 270px !important;
}

.pe-290 {
  padding-right: 290px !important;
}

.pe-300 {
  padding-right: 300px !important;
}

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

.pb-1 {
  padding-bottom: 1px !important;
}

.pb-2 {
  padding-bottom: 2px !important;
}

.pb-3 {
  padding-bottom: 3px !important;
}

.pb-4 {
  padding-bottom: 4px !important;
}

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

.pb-6 {
  padding-bottom: 6px !important;
}

.pb-7 {
  padding-bottom: 7px !important;
}

.pb-8 {
  padding-bottom: 8px !important;
}

.pb-9 {
  padding-bottom: 9px !important;
}

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

.pb-11 {
  padding-bottom: 11px !important;
}

.pb-12 {
  padding-bottom: 12px !important;
}

.pb-13 {
  padding-bottom: 13px !important;
}

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

.pb-17 {
  padding-bottom: 17px !important;
}

.pb-18 {
  padding-bottom: 18px !important;
}

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

.pb-25 {
  padding-bottom: 25px !important;
}

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

.pb-35 {
  padding-bottom: 35px !important;
}

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

.pb-45 {
  padding-bottom: 45px !important;
}

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

.pb-55 {
  padding-bottom: 55px !important;
}

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

.pb-65 {
  padding-bottom: 65px !important;
}

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

.pb-75 {
  padding-bottom: 75px !important;
}

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

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

.pb-95 {
  padding-bottom: 95px !important;
}

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

.pb-110 {
  padding-bottom: 110px !important;
}

.pb-115 {
  padding-bottom: 115px !important;
}

.pb-120 {
  padding-bottom: 120px !important;
}

.pb-130 {
  padding-bottom: 130px !important;
}

.pb-150 {
  padding-bottom: 150px !important;
}

.pb-160 {
  padding-bottom: 160px !important;
}

.pb-180 {
  padding-bottom: 180px !important;
}

.pb-190 {
  padding-bottom: 190px !important;
}

.pb-200 {
  padding-bottom: 200px !important;
}

.pb-210 {
  padding-bottom: 210px !important;
}

.pb-235 {
  padding-bottom: 235px !important;
}

.pb-240 {
  padding-bottom: 240px !important;
}

.pb-270 {
  padding-bottom: 270px !important;
}

.pb-290 {
  padding-bottom: 290px !important;
}

.pb-300 {
  padding-bottom: 300px !important;
}

.ps-0 {
  padding-left: 0 !important;
}

.ps-1 {
  padding-left: 1px !important;
}

.ps-2 {
  padding-left: 2px !important;
}

.ps-3 {
  padding-left: 3px !important;
}

.ps-4 {
  padding-left: 4px !important;
}

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

.ps-6 {
  padding-left: 6px !important;
}

.ps-7 {
  padding-left: 7px !important;
}

.ps-8 {
  padding-left: 8px !important;
}

.ps-9 {
  padding-left: 9px !important;
}

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

.ps-11 {
  padding-left: 11px !important;
}

.ps-12 {
  padding-left: 12px !important;
}

.ps-13 {
  padding-left: 13px !important;
}

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

.ps-17 {
  padding-left: 17px !important;
}

.ps-18 {
  padding-left: 18px !important;
}

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

.ps-25 {
  padding-left: 25px !important;
}

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

.ps-35 {
  padding-left: 35px !important;
}

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

.ps-45 {
  padding-left: 45px !important;
}

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

.ps-55 {
  padding-left: 55px !important;
}

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

.ps-65 {
  padding-left: 65px !important;
}

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

.ps-75 {
  padding-left: 75px !important;
}

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

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

.ps-95 {
  padding-left: 95px !important;
}

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

.ps-110 {
  padding-left: 110px !important;
}

.ps-115 {
  padding-left: 115px !important;
}

.ps-120 {
  padding-left: 120px !important;
}

.ps-130 {
  padding-left: 130px !important;
}

.ps-150 {
  padding-left: 150px !important;
}

.ps-160 {
  padding-left: 160px !important;
}

.ps-180 {
  padding-left: 180px !important;
}

.ps-190 {
  padding-left: 190px !important;
}

.ps-200 {
  padding-left: 200px !important;
}

.ps-210 {
  padding-left: 210px !important;
}

.ps-235 {
  padding-left: 235px !important;
}

.ps-240 {
  padding-left: 240px !important;
}

.ps-270 {
  padding-left: 270px !important;
}

.ps-290 {
  padding-left: 290px !important;
}

.ps-300 {
  padding-left: 300px !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2 {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-3 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1rem !important;
}

.fst-italic {
  font-style: italic !important;
}

.fst-normal {
  font-style: normal !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-lighter {
  font-weight: lighter !important;
}

.fw-normal {
  font-weight: 400 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-bolder {
  font-weight: bolder !important;
}

.lh-1 {
  line-height: 1 !important;
}

.lh-sm {
  line-height: 1.25 !important;
}

.lh-base {
  line-height: 1.5 !important;
}

.lh-lg {
  line-height: 2 !important;
}

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

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

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

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

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

.text-decoration-line-through {
  text-decoration: line-through !important;
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

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

.text-nowrap {
  white-space: nowrap !important;
}

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important;
}

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important;
}

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important;
}

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important;
}

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important;
}

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important;
}

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important;
}

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #858589 !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(23, 22, 26, 0.5) !important;
}

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important;
}

.text-opacity-25 {
  --bs-text-opacity: 0.25;
}

.text-opacity-50 {
  --bs-text-opacity: 0.5;
}

.text-opacity-75 {
  --bs-text-opacity: 0.75;
}

.text-opacity-100 {
  --bs-text-opacity: 1;
}

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important;
}

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important;
}

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important;
}

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important;
}

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important;
}

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important;
}

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important;
}

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important;
}

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important;
}

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important;
}

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important;
}

.bg-opacity-10 {
  --bs-bg-opacity: 0.1;
}

.bg-opacity-25 {
  --bs-bg-opacity: 0.25;
}

.bg-opacity-50 {
  --bs-bg-opacity: 0.5;
}

.bg-opacity-75 {
  --bs-bg-opacity: 0.75;
}

.bg-opacity-100 {
  --bs-bg-opacity: 1;
}

.bg-gradient {
  background-image: var(--bs-gradient) !important;
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

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

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 14px !important;
}

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

.rounded-1 {
  border-radius: 6px !important;
}

.rounded-2 {
  border-radius: 10px !important;
}

.rounded-3 {
  border-radius: 14px !important;
}

.rounded-4 {
  border-radius: 20px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-right-radius: 14px !important;
  border-top-left-radius: 14px !important;
}

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

.rounded-top-1 {
  border-top-right-radius: 6px !important;
  border-top-left-radius: 6px !important;
}

.rounded-top-2 {
  border-top-right-radius: 10px !important;
  border-top-left-radius: 10px !important;
}

.rounded-top-3 {
  border-top-right-radius: 14px !important;
  border-top-left-radius: 14px !important;
}

.rounded-top-4 {
  border-top-right-radius: 20px !important;
  border-top-left-radius: 20px !important;
}

.rounded-top-circle {
  border-top-right-radius: 50% !important;
  border-top-left-radius: 50% !important;
}

.rounded-top-pill {
  border-top-right-radius: 50rem !important;
  border-top-left-radius: 50rem !important;
}

.rounded-end {
  border-top-right-radius: 14px !important;
  border-bottom-right-radius: 14px !important;
}

.rounded-bottom {
  border-bottom-right-radius: 14px !important;
  border-bottom-left-radius: 14px !important;
}

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

.rounded-bottom-1 {
  border-bottom-right-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
}

.rounded-bottom-2 {
  border-bottom-right-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
}

.rounded-bottom-3 {
  border-bottom-right-radius: 14px !important;
  border-bottom-left-radius: 14px !important;
}

.rounded-bottom-4 {
  border-bottom-right-radius: 20px !important;
  border-bottom-left-radius: 20px !important;
}

.rounded-bottom-circle {
  border-bottom-right-radius: 50% !important;
  border-bottom-left-radius: 50% !important;
}

.rounded-bottom-pill {
  border-bottom-right-radius: 50rem !important;
  border-bottom-left-radius: 50rem !important;
}

.rounded-start {
  border-bottom-left-radius: 14px !important;
  border-top-left-radius: 14px !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.rounded-top-left {
  border-top-left-radius: 14px !important;
}

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

.rounded-top-left-1 {
  border-top-left-radius: 6px !important;
}

.rounded-top-left-2 {
  border-top-left-radius: 10px !important;
}

.rounded-top-left-3 {
  border-top-left-radius: 14px !important;
}

.rounded-top-left-4 {
  border-top-left-radius: 20px !important;
}

.rounded-top-left-circle {
  border-top-left-radius: 50% !important;
}

.rounded-top-left-pill {
  border-top-left-radius: 50rem !important;
}

.rounded-top-right {
  border-top-right-radius: 14px !important;
}

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

.rounded-top-right-1 {
  border-top-right-radius: 6px !important;
}

.rounded-top-right-2 {
  border-top-right-radius: 10px !important;
}

.rounded-top-right-3 {
  border-top-right-radius: 14px !important;
}

.rounded-top-right-4 {
  border-top-right-radius: 20px !important;
}

.rounded-top-right-circle {
  border-top-right-radius: 50% !important;
}

.rounded-top-right-pill {
  border-top-right-radius: 50rem !important;
}

@media (min-width: 620px) {
  .float-sm-start {
    float: left !important;
  }

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

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

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

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

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

  .d-sm-grid {
    display: grid !important;
  }

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

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

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

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

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

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

  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

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

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

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

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

  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-sm-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }

  .flex-sm-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }

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

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

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

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: 1px !important;
  }

  .gap-sm-2 {
    gap: 2px !important;
  }

  .gap-sm-3 {
    gap: 3px !important;
  }

  .gap-sm-4 {
    gap: 4px !important;
  }

  .gap-sm-5 {
    gap: 5px !important;
  }

  .gap-sm-6 {
    gap: 6px !important;
  }

  .gap-sm-7 {
    gap: 7px !important;
  }

  .gap-sm-8 {
    gap: 8px !important;
  }

  .gap-sm-9 {
    gap: 9px !important;
  }

  .gap-sm-10 {
    gap: 10px !important;
  }

  .gap-sm-11 {
    gap: 11px !important;
  }

  .gap-sm-12 {
    gap: 12px !important;
  }

  .gap-sm-13 {
    gap: 13px !important;
  }

  .gap-sm-15 {
    gap: 15px !important;
  }

  .gap-sm-17 {
    gap: 17px !important;
  }

  .gap-sm-18 {
    gap: 18px !important;
  }

  .gap-sm-20 {
    gap: 20px !important;
  }

  .gap-sm-25 {
    gap: 25px !important;
  }

  .gap-sm-30 {
    gap: 30px !important;
  }

  .gap-sm-35 {
    gap: 35px !important;
  }

  .gap-sm-40 {
    gap: 40px !important;
  }

  .gap-sm-45 {
    gap: 45px !important;
  }

  .gap-sm-50 {
    gap: 50px !important;
  }

  .gap-sm-55 {
    gap: 55px !important;
  }

  .gap-sm-60 {
    gap: 60px !important;
  }

  .gap-sm-65 {
    gap: 65px !important;
  }

  .gap-sm-70 {
    gap: 70px !important;
  }

  .gap-sm-75 {
    gap: 75px !important;
  }

  .gap-sm-80 {
    gap: 80px !important;
  }

  .gap-sm-90 {
    gap: 90px !important;
  }

  .gap-sm-95 {
    gap: 95px !important;
  }

  .gap-sm-100 {
    gap: 100px !important;
  }

  .gap-sm-110 {
    gap: 110px !important;
  }

  .gap-sm-115 {
    gap: 115px !important;
  }

  .gap-sm-120 {
    gap: 120px !important;
  }

  .gap-sm-130 {
    gap: 130px !important;
  }

  .gap-sm-150 {
    gap: 150px !important;
  }

  .gap-sm-160 {
    gap: 160px !important;
  }

  .gap-sm-180 {
    gap: 180px !important;
  }

  .gap-sm-190 {
    gap: 190px !important;
  }

  .gap-sm-200 {
    gap: 200px !important;
  }

  .gap-sm-210 {
    gap: 210px !important;
  }

  .gap-sm-235 {
    gap: 235px !important;
  }

  .gap-sm-240 {
    gap: 240px !important;
  }

  .gap-sm-270 {
    gap: 270px !important;
  }

  .gap-sm-290 {
    gap: 290px !important;
  }

  .gap-sm-300 {
    gap: 300px !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-sm-first {
    -webkit-box-ordinal-group: 0 !important;
    -webkit-order: -1 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-sm-0 {
    -webkit-box-ordinal-group: 1 !important;
    -webkit-order: 0 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-sm-1 {
    -webkit-box-ordinal-group: 2 !important;
    -webkit-order: 1 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-sm-2 {
    -webkit-box-ordinal-group: 3 !important;
    -webkit-order: 2 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-sm-3 {
    -webkit-box-ordinal-group: 4 !important;
    -webkit-order: 3 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-sm-4 {
    -webkit-box-ordinal-group: 5 !important;
    -webkit-order: 4 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-sm-5 {
    -webkit-box-ordinal-group: 6 !important;
    -webkit-order: 5 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-sm-last {
    -webkit-box-ordinal-group: 7 !important;
    -webkit-order: 6 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

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

  .m-sm-1 {
    margin: 1px !important;
  }

  .m-sm-2 {
    margin: 2px !important;
  }

  .m-sm-3 {
    margin: 3px !important;
  }

  .m-sm-4 {
    margin: 4px !important;
  }

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

  .m-sm-6 {
    margin: 6px !important;
  }

  .m-sm-7 {
    margin: 7px !important;
  }

  .m-sm-8 {
    margin: 8px !important;
  }

  .m-sm-9 {
    margin: 9px !important;
  }

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

  .m-sm-11 {
    margin: 11px !important;
  }

  .m-sm-12 {
    margin: 12px !important;
  }

  .m-sm-13 {
    margin: 13px !important;
  }

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

  .m-sm-17 {
    margin: 17px !important;
  }

  .m-sm-18 {
    margin: 18px !important;
  }

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

  .m-sm-25 {
    margin: 25px !important;
  }

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

  .m-sm-35 {
    margin: 35px !important;
  }

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

  .m-sm-45 {
    margin: 45px !important;
  }

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

  .m-sm-55 {
    margin: 55px !important;
  }

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

  .m-sm-65 {
    margin: 65px !important;
  }

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

  .m-sm-75 {
    margin: 75px !important;
  }

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

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

  .m-sm-95 {
    margin: 95px !important;
  }

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

  .m-sm-110 {
    margin: 110px !important;
  }

  .m-sm-115 {
    margin: 115px !important;
  }

  .m-sm-120 {
    margin: 120px !important;
  }

  .m-sm-130 {
    margin: 130px !important;
  }

  .m-sm-150 {
    margin: 150px !important;
  }

  .m-sm-160 {
    margin: 160px !important;
  }

  .m-sm-180 {
    margin: 180px !important;
  }

  .m-sm-190 {
    margin: 190px !important;
  }

  .m-sm-200 {
    margin: 200px !important;
  }

  .m-sm-210 {
    margin: 210px !important;
  }

  .m-sm-235 {
    margin: 235px !important;
  }

  .m-sm-240 {
    margin: 240px !important;
  }

  .m-sm-270 {
    margin: 270px !important;
  }

  .m-sm-290 {
    margin: 290px !important;
  }

  .m-sm-300 {
    margin: 300px !important;
  }

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

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 1px !important;
    margin-left: 1px !important;
  }

  .mx-sm-2 {
    margin-right: 2px !important;
    margin-left: 2px !important;
  }

  .mx-sm-3 {
    margin-right: 3px !important;
    margin-left: 3px !important;
  }

  .mx-sm-4 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  .mx-sm-5 {
    margin-right: 5px !important;
    margin-left: 5px !important;
  }

  .mx-sm-6 {
    margin-right: 6px !important;
    margin-left: 6px !important;
  }

  .mx-sm-7 {
    margin-right: 7px !important;
    margin-left: 7px !important;
  }

  .mx-sm-8 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  .mx-sm-9 {
    margin-right: 9px !important;
    margin-left: 9px !important;
  }

  .mx-sm-10 {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }

  .mx-sm-11 {
    margin-right: 11px !important;
    margin-left: 11px !important;
  }

  .mx-sm-12 {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }

  .mx-sm-13 {
    margin-right: 13px !important;
    margin-left: 13px !important;
  }

  .mx-sm-15 {
    margin-right: 15px !important;
    margin-left: 15px !important;
  }

  .mx-sm-17 {
    margin-right: 17px !important;
    margin-left: 17px !important;
  }

  .mx-sm-18 {
    margin-right: 18px !important;
    margin-left: 18px !important;
  }

  .mx-sm-20 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }

  .mx-sm-25 {
    margin-right: 25px !important;
    margin-left: 25px !important;
  }

  .mx-sm-30 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }

  .mx-sm-35 {
    margin-right: 35px !important;
    margin-left: 35px !important;
  }

  .mx-sm-40 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .mx-sm-45 {
    margin-right: 45px !important;
    margin-left: 45px !important;
  }

  .mx-sm-50 {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }

  .mx-sm-55 {
    margin-right: 55px !important;
    margin-left: 55px !important;
  }

  .mx-sm-60 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }

  .mx-sm-65 {
    margin-right: 65px !important;
    margin-left: 65px !important;
  }

  .mx-sm-70 {
    margin-right: 70px !important;
    margin-left: 70px !important;
  }

  .mx-sm-75 {
    margin-right: 75px !important;
    margin-left: 75px !important;
  }

  .mx-sm-80 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }

  .mx-sm-90 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }

  .mx-sm-95 {
    margin-right: 95px !important;
    margin-left: 95px !important;
  }

  .mx-sm-100 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }

  .mx-sm-110 {
    margin-right: 110px !important;
    margin-left: 110px !important;
  }

  .mx-sm-115 {
    margin-right: 115px !important;
    margin-left: 115px !important;
  }

  .mx-sm-120 {
    margin-right: 120px !important;
    margin-left: 120px !important;
  }

  .mx-sm-130 {
    margin-right: 130px !important;
    margin-left: 130px !important;
  }

  .mx-sm-150 {
    margin-right: 150px !important;
    margin-left: 150px !important;
  }

  .mx-sm-160 {
    margin-right: 160px !important;
    margin-left: 160px !important;
  }

  .mx-sm-180 {
    margin-right: 180px !important;
    margin-left: 180px !important;
  }

  .mx-sm-190 {
    margin-right: 190px !important;
    margin-left: 190px !important;
  }

  .mx-sm-200 {
    margin-right: 200px !important;
    margin-left: 200px !important;
  }

  .mx-sm-210 {
    margin-right: 210px !important;
    margin-left: 210px !important;
  }

  .mx-sm-235 {
    margin-right: 235px !important;
    margin-left: 235px !important;
  }

  .mx-sm-240 {
    margin-right: 240px !important;
    margin-left: 240px !important;
  }

  .mx-sm-270 {
    margin-right: 270px !important;
    margin-left: 270px !important;
  }

  .mx-sm-290 {
    margin-right: 290px !important;
    margin-left: 290px !important;
  }

  .mx-sm-300 {
    margin-right: 300px !important;
    margin-left: 300px !important;
  }

  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-sm-1 {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .my-sm-2 {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }

  .my-sm-3 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }

  .my-sm-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .my-sm-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  .my-sm-6 {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }

  .my-sm-7 {
    margin-top: 7px !important;
    margin-bottom: 7px !important;
  }

  .my-sm-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .my-sm-9 {
    margin-top: 9px !important;
    margin-bottom: 9px !important;
  }

  .my-sm-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .my-sm-11 {
    margin-top: 11px !important;
    margin-bottom: 11px !important;
  }

  .my-sm-12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .my-sm-13 {
    margin-top: 13px !important;
    margin-bottom: 13px !important;
  }

  .my-sm-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }

  .my-sm-17 {
    margin-top: 17px !important;
    margin-bottom: 17px !important;
  }

  .my-sm-18 {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }

  .my-sm-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .my-sm-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }

  .my-sm-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  .my-sm-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }

  .my-sm-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .my-sm-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }

  .my-sm-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }

  .my-sm-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }

  .my-sm-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }

  .my-sm-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }

  .my-sm-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }

  .my-sm-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }

  .my-sm-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .my-sm-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }

  .my-sm-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }

  .my-sm-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .my-sm-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }

  .my-sm-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }

  .my-sm-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }

  .my-sm-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }

  .my-sm-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }

  .my-sm-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .my-sm-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }

  .my-sm-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }

  .my-sm-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }

  .my-sm-210 {
    margin-top: 210px !important;
    margin-bottom: 210px !important;
  }

  .my-sm-235 {
    margin-top: 235px !important;
    margin-bottom: 235px !important;
  }

  .my-sm-240 {
    margin-top: 240px !important;
    margin-bottom: 240px !important;
  }

  .my-sm-270 {
    margin-top: 270px !important;
    margin-bottom: 270px !important;
  }

  .my-sm-290 {
    margin-top: 290px !important;
    margin-bottom: 290px !important;
  }

  .my-sm-300 {
    margin-top: 300px !important;
    margin-bottom: 300px !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

  .mt-sm-1 {
    margin-top: 1px !important;
  }

  .mt-sm-2 {
    margin-top: 2px !important;
  }

  .mt-sm-3 {
    margin-top: 3px !important;
  }

  .mt-sm-4 {
    margin-top: 4px !important;
  }

  .mt-sm-5 {
    margin-top: 5px !important;
  }

  .mt-sm-6 {
    margin-top: 6px !important;
  }

  .mt-sm-7 {
    margin-top: 7px !important;
  }

  .mt-sm-8 {
    margin-top: 8px !important;
  }

  .mt-sm-9 {
    margin-top: 9px !important;
  }

  .mt-sm-10 {
    margin-top: 10px !important;
  }

  .mt-sm-11 {
    margin-top: 11px !important;
  }

  .mt-sm-12 {
    margin-top: 12px !important;
  }

  .mt-sm-13 {
    margin-top: 13px !important;
  }

  .mt-sm-15 {
    margin-top: 15px !important;
  }

  .mt-sm-17 {
    margin-top: 17px !important;
  }

  .mt-sm-18 {
    margin-top: 18px !important;
  }

  .mt-sm-20 {
    margin-top: 20px !important;
  }

  .mt-sm-25 {
    margin-top: 25px !important;
  }

  .mt-sm-30 {
    margin-top: 30px !important;
  }

  .mt-sm-35 {
    margin-top: 35px !important;
  }

  .mt-sm-40 {
    margin-top: 40px !important;
  }

  .mt-sm-45 {
    margin-top: 45px !important;
  }

  .mt-sm-50 {
    margin-top: 50px !important;
  }

  .mt-sm-55 {
    margin-top: 55px !important;
  }

  .mt-sm-60 {
    margin-top: 60px !important;
  }

  .mt-sm-65 {
    margin-top: 65px !important;
  }

  .mt-sm-70 {
    margin-top: 70px !important;
  }

  .mt-sm-75 {
    margin-top: 75px !important;
  }

  .mt-sm-80 {
    margin-top: 80px !important;
  }

  .mt-sm-90 {
    margin-top: 90px !important;
  }

  .mt-sm-95 {
    margin-top: 95px !important;
  }

  .mt-sm-100 {
    margin-top: 100px !important;
  }

  .mt-sm-110 {
    margin-top: 110px !important;
  }

  .mt-sm-115 {
    margin-top: 115px !important;
  }

  .mt-sm-120 {
    margin-top: 120px !important;
  }

  .mt-sm-130 {
    margin-top: 130px !important;
  }

  .mt-sm-150 {
    margin-top: 150px !important;
  }

  .mt-sm-160 {
    margin-top: 160px !important;
  }

  .mt-sm-180 {
    margin-top: 180px !important;
  }

  .mt-sm-190 {
    margin-top: 190px !important;
  }

  .mt-sm-200 {
    margin-top: 200px !important;
  }

  .mt-sm-210 {
    margin-top: 210px !important;
  }

  .mt-sm-235 {
    margin-top: 235px !important;
  }

  .mt-sm-240 {
    margin-top: 240px !important;
  }

  .mt-sm-270 {
    margin-top: 270px !important;
  }

  .mt-sm-290 {
    margin-top: 290px !important;
  }

  .mt-sm-300 {
    margin-top: 300px !important;
  }

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

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 1px !important;
  }

  .me-sm-2 {
    margin-right: 2px !important;
  }

  .me-sm-3 {
    margin-right: 3px !important;
  }

  .me-sm-4 {
    margin-right: 4px !important;
  }

  .me-sm-5 {
    margin-right: 5px !important;
  }

  .me-sm-6 {
    margin-right: 6px !important;
  }

  .me-sm-7 {
    margin-right: 7px !important;
  }

  .me-sm-8 {
    margin-right: 8px !important;
  }

  .me-sm-9 {
    margin-right: 9px !important;
  }

  .me-sm-10 {
    margin-right: 10px !important;
  }

  .me-sm-11 {
    margin-right: 11px !important;
  }

  .me-sm-12 {
    margin-right: 12px !important;
  }

  .me-sm-13 {
    margin-right: 13px !important;
  }

  .me-sm-15 {
    margin-right: 15px !important;
  }

  .me-sm-17 {
    margin-right: 17px !important;
  }

  .me-sm-18 {
    margin-right: 18px !important;
  }

  .me-sm-20 {
    margin-right: 20px !important;
  }

  .me-sm-25 {
    margin-right: 25px !important;
  }

  .me-sm-30 {
    margin-right: 30px !important;
  }

  .me-sm-35 {
    margin-right: 35px !important;
  }

  .me-sm-40 {
    margin-right: 40px !important;
  }

  .me-sm-45 {
    margin-right: 45px !important;
  }

  .me-sm-50 {
    margin-right: 50px !important;
  }

  .me-sm-55 {
    margin-right: 55px !important;
  }

  .me-sm-60 {
    margin-right: 60px !important;
  }

  .me-sm-65 {
    margin-right: 65px !important;
  }

  .me-sm-70 {
    margin-right: 70px !important;
  }

  .me-sm-75 {
    margin-right: 75px !important;
  }

  .me-sm-80 {
    margin-right: 80px !important;
  }

  .me-sm-90 {
    margin-right: 90px !important;
  }

  .me-sm-95 {
    margin-right: 95px !important;
  }

  .me-sm-100 {
    margin-right: 100px !important;
  }

  .me-sm-110 {
    margin-right: 110px !important;
  }

  .me-sm-115 {
    margin-right: 115px !important;
  }

  .me-sm-120 {
    margin-right: 120px !important;
  }

  .me-sm-130 {
    margin-right: 130px !important;
  }

  .me-sm-150 {
    margin-right: 150px !important;
  }

  .me-sm-160 {
    margin-right: 160px !important;
  }

  .me-sm-180 {
    margin-right: 180px !important;
  }

  .me-sm-190 {
    margin-right: 190px !important;
  }

  .me-sm-200 {
    margin-right: 200px !important;
  }

  .me-sm-210 {
    margin-right: 210px !important;
  }

  .me-sm-235 {
    margin-right: 235px !important;
  }

  .me-sm-240 {
    margin-right: 240px !important;
  }

  .me-sm-270 {
    margin-right: 270px !important;
  }

  .me-sm-290 {
    margin-right: 290px !important;
  }

  .me-sm-300 {
    margin-right: 300px !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

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

  .mb-sm-1 {
    margin-bottom: 1px !important;
  }

  .mb-sm-2 {
    margin-bottom: 2px !important;
  }

  .mb-sm-3 {
    margin-bottom: 3px !important;
  }

  .mb-sm-4 {
    margin-bottom: 4px !important;
  }

  .mb-sm-5 {
    margin-bottom: 5px !important;
  }

  .mb-sm-6 {
    margin-bottom: 6px !important;
  }

  .mb-sm-7 {
    margin-bottom: 7px !important;
  }

  .mb-sm-8 {
    margin-bottom: 8px !important;
  }

  .mb-sm-9 {
    margin-bottom: 9px !important;
  }

  .mb-sm-10 {
    margin-bottom: 10px !important;
  }

  .mb-sm-11 {
    margin-bottom: 11px !important;
  }

  .mb-sm-12 {
    margin-bottom: 12px !important;
  }

  .mb-sm-13 {
    margin-bottom: 13px !important;
  }

  .mb-sm-15 {
    margin-bottom: 15px !important;
  }

  .mb-sm-17 {
    margin-bottom: 17px !important;
  }

  .mb-sm-18 {
    margin-bottom: 18px !important;
  }

  .mb-sm-20 {
    margin-bottom: 20px !important;
  }

  .mb-sm-25 {
    margin-bottom: 25px !important;
  }

  .mb-sm-30 {
    margin-bottom: 30px !important;
  }

  .mb-sm-35 {
    margin-bottom: 35px !important;
  }

  .mb-sm-40 {
    margin-bottom: 40px !important;
  }

  .mb-sm-45 {
    margin-bottom: 45px !important;
  }

  .mb-sm-50 {
    margin-bottom: 50px !important;
  }

  .mb-sm-55 {
    margin-bottom: 55px !important;
  }

  .mb-sm-60 {
    margin-bottom: 60px !important;
  }

  .mb-sm-65 {
    margin-bottom: 65px !important;
  }

  .mb-sm-70 {
    margin-bottom: 70px !important;
  }

  .mb-sm-75 {
    margin-bottom: 75px !important;
  }

  .mb-sm-80 {
    margin-bottom: 80px !important;
  }

  .mb-sm-90 {
    margin-bottom: 90px !important;
  }

  .mb-sm-95 {
    margin-bottom: 95px !important;
  }

  .mb-sm-100 {
    margin-bottom: 100px !important;
  }

  .mb-sm-110 {
    margin-bottom: 110px !important;
  }

  .mb-sm-115 {
    margin-bottom: 115px !important;
  }

  .mb-sm-120 {
    margin-bottom: 120px !important;
  }

  .mb-sm-130 {
    margin-bottom: 130px !important;
  }

  .mb-sm-150 {
    margin-bottom: 150px !important;
  }

  .mb-sm-160 {
    margin-bottom: 160px !important;
  }

  .mb-sm-180 {
    margin-bottom: 180px !important;
  }

  .mb-sm-190 {
    margin-bottom: 190px !important;
  }

  .mb-sm-200 {
    margin-bottom: 200px !important;
  }

  .mb-sm-210 {
    margin-bottom: 210px !important;
  }

  .mb-sm-235 {
    margin-bottom: 235px !important;
  }

  .mb-sm-240 {
    margin-bottom: 240px !important;
  }

  .mb-sm-270 {
    margin-bottom: 270px !important;
  }

  .mb-sm-290 {
    margin-bottom: 290px !important;
  }

  .mb-sm-300 {
    margin-bottom: 300px !important;
  }

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

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 1px !important;
  }

  .ms-sm-2 {
    margin-left: 2px !important;
  }

  .ms-sm-3 {
    margin-left: 3px !important;
  }

  .ms-sm-4 {
    margin-left: 4px !important;
  }

  .ms-sm-5 {
    margin-left: 5px !important;
  }

  .ms-sm-6 {
    margin-left: 6px !important;
  }

  .ms-sm-7 {
    margin-left: 7px !important;
  }

  .ms-sm-8 {
    margin-left: 8px !important;
  }

  .ms-sm-9 {
    margin-left: 9px !important;
  }

  .ms-sm-10 {
    margin-left: 10px !important;
  }

  .ms-sm-11 {
    margin-left: 11px !important;
  }

  .ms-sm-12 {
    margin-left: 12px !important;
  }

  .ms-sm-13 {
    margin-left: 13px !important;
  }

  .ms-sm-15 {
    margin-left: 15px !important;
  }

  .ms-sm-17 {
    margin-left: 17px !important;
  }

  .ms-sm-18 {
    margin-left: 18px !important;
  }

  .ms-sm-20 {
    margin-left: 20px !important;
  }

  .ms-sm-25 {
    margin-left: 25px !important;
  }

  .ms-sm-30 {
    margin-left: 30px !important;
  }

  .ms-sm-35 {
    margin-left: 35px !important;
  }

  .ms-sm-40 {
    margin-left: 40px !important;
  }

  .ms-sm-45 {
    margin-left: 45px !important;
  }

  .ms-sm-50 {
    margin-left: 50px !important;
  }

  .ms-sm-55 {
    margin-left: 55px !important;
  }

  .ms-sm-60 {
    margin-left: 60px !important;
  }

  .ms-sm-65 {
    margin-left: 65px !important;
  }

  .ms-sm-70 {
    margin-left: 70px !important;
  }

  .ms-sm-75 {
    margin-left: 75px !important;
  }

  .ms-sm-80 {
    margin-left: 80px !important;
  }

  .ms-sm-90 {
    margin-left: 90px !important;
  }

  .ms-sm-95 {
    margin-left: 95px !important;
  }

  .ms-sm-100 {
    margin-left: 100px !important;
  }

  .ms-sm-110 {
    margin-left: 110px !important;
  }

  .ms-sm-115 {
    margin-left: 115px !important;
  }

  .ms-sm-120 {
    margin-left: 120px !important;
  }

  .ms-sm-130 {
    margin-left: 130px !important;
  }

  .ms-sm-150 {
    margin-left: 150px !important;
  }

  .ms-sm-160 {
    margin-left: 160px !important;
  }

  .ms-sm-180 {
    margin-left: 180px !important;
  }

  .ms-sm-190 {
    margin-left: 190px !important;
  }

  .ms-sm-200 {
    margin-left: 200px !important;
  }

  .ms-sm-210 {
    margin-left: 210px !important;
  }

  .ms-sm-235 {
    margin-left: 235px !important;
  }

  .ms-sm-240 {
    margin-left: 240px !important;
  }

  .ms-sm-270 {
    margin-left: 270px !important;
  }

  .ms-sm-290 {
    margin-left: 290px !important;
  }

  .ms-sm-300 {
    margin-left: 300px !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

  .m-sm-n1 {
    margin: -1px !important;
  }

  .m-sm-n2 {
    margin: -2px !important;
  }

  .m-sm-n3 {
    margin: -3px !important;
  }

  .m-sm-n4 {
    margin: -4px !important;
  }

  .m-sm-n5 {
    margin: -5px !important;
  }

  .m-sm-n6 {
    margin: -6px !important;
  }

  .m-sm-n7 {
    margin: -7px !important;
  }

  .m-sm-n8 {
    margin: -8px !important;
  }

  .m-sm-n9 {
    margin: -9px !important;
  }

  .m-sm-n10 {
    margin: -10px !important;
  }

  .m-sm-n11 {
    margin: -11px !important;
  }

  .m-sm-n12 {
    margin: -12px !important;
  }

  .m-sm-n13 {
    margin: -13px !important;
  }

  .m-sm-n15 {
    margin: -15px !important;
  }

  .m-sm-n17 {
    margin: -17px !important;
  }

  .m-sm-n18 {
    margin: -18px !important;
  }

  .m-sm-n20 {
    margin: -20px !important;
  }

  .m-sm-n25 {
    margin: -25px !important;
  }

  .m-sm-n30 {
    margin: -30px !important;
  }

  .m-sm-n35 {
    margin: -35px !important;
  }

  .m-sm-n40 {
    margin: -40px !important;
  }

  .m-sm-n45 {
    margin: -45px !important;
  }

  .m-sm-n50 {
    margin: -50px !important;
  }

  .m-sm-n55 {
    margin: -55px !important;
  }

  .m-sm-n60 {
    margin: -60px !important;
  }

  .m-sm-n65 {
    margin: -65px !important;
  }

  .m-sm-n70 {
    margin: -70px !important;
  }

  .m-sm-n75 {
    margin: -75px !important;
  }

  .m-sm-n80 {
    margin: -80px !important;
  }

  .m-sm-n90 {
    margin: -90px !important;
  }

  .m-sm-n95 {
    margin: -95px !important;
  }

  .m-sm-n100 {
    margin: -100px !important;
  }

  .m-sm-n110 {
    margin: -110px !important;
  }

  .m-sm-n115 {
    margin: -115px !important;
  }

  .m-sm-n120 {
    margin: -120px !important;
  }

  .m-sm-n130 {
    margin: -130px !important;
  }

  .m-sm-n150 {
    margin: -150px !important;
  }

  .m-sm-n160 {
    margin: -160px !important;
  }

  .m-sm-n180 {
    margin: -180px !important;
  }

  .m-sm-n190 {
    margin: -190px !important;
  }

  .m-sm-n200 {
    margin: -200px !important;
  }

  .m-sm-n210 {
    margin: -210px !important;
  }

  .m-sm-n235 {
    margin: -235px !important;
  }

  .m-sm-n240 {
    margin: -240px !important;
  }

  .m-sm-n270 {
    margin: -270px !important;
  }

  .m-sm-n290 {
    margin: -290px !important;
  }

  .m-sm-n300 {
    margin: -300px !important;
  }

  .mx-sm-n1 {
    margin-right: -1px !important;
    margin-left: -1px !important;
  }

  .mx-sm-n2 {
    margin-right: -2px !important;
    margin-left: -2px !important;
  }

  .mx-sm-n3 {
    margin-right: -3px !important;
    margin-left: -3px !important;
  }

  .mx-sm-n4 {
    margin-right: -4px !important;
    margin-left: -4px !important;
  }

  .mx-sm-n5 {
    margin-right: -5px !important;
    margin-left: -5px !important;
  }

  .mx-sm-n6 {
    margin-right: -6px !important;
    margin-left: -6px !important;
  }

  .mx-sm-n7 {
    margin-right: -7px !important;
    margin-left: -7px !important;
  }

  .mx-sm-n8 {
    margin-right: -8px !important;
    margin-left: -8px !important;
  }

  .mx-sm-n9 {
    margin-right: -9px !important;
    margin-left: -9px !important;
  }

  .mx-sm-n10 {
    margin-right: -10px !important;
    margin-left: -10px !important;
  }

  .mx-sm-n11 {
    margin-right: -11px !important;
    margin-left: -11px !important;
  }

  .mx-sm-n12 {
    margin-right: -12px !important;
    margin-left: -12px !important;
  }

  .mx-sm-n13 {
    margin-right: -13px !important;
    margin-left: -13px !important;
  }

  .mx-sm-n15 {
    margin-right: -15px !important;
    margin-left: -15px !important;
  }

  .mx-sm-n17 {
    margin-right: -17px !important;
    margin-left: -17px !important;
  }

  .mx-sm-n18 {
    margin-right: -18px !important;
    margin-left: -18px !important;
  }

  .mx-sm-n20 {
    margin-right: -20px !important;
    margin-left: -20px !important;
  }

  .mx-sm-n25 {
    margin-right: -25px !important;
    margin-left: -25px !important;
  }

  .mx-sm-n30 {
    margin-right: -30px !important;
    margin-left: -30px !important;
  }

  .mx-sm-n35 {
    margin-right: -35px !important;
    margin-left: -35px !important;
  }

  .mx-sm-n40 {
    margin-right: -40px !important;
    margin-left: -40px !important;
  }

  .mx-sm-n45 {
    margin-right: -45px !important;
    margin-left: -45px !important;
  }

  .mx-sm-n50 {
    margin-right: -50px !important;
    margin-left: -50px !important;
  }

  .mx-sm-n55 {
    margin-right: -55px !important;
    margin-left: -55px !important;
  }

  .mx-sm-n60 {
    margin-right: -60px !important;
    margin-left: -60px !important;
  }

  .mx-sm-n65 {
    margin-right: -65px !important;
    margin-left: -65px !important;
  }

  .mx-sm-n70 {
    margin-right: -70px !important;
    margin-left: -70px !important;
  }

  .mx-sm-n75 {
    margin-right: -75px !important;
    margin-left: -75px !important;
  }

  .mx-sm-n80 {
    margin-right: -80px !important;
    margin-left: -80px !important;
  }

  .mx-sm-n90 {
    margin-right: -90px !important;
    margin-left: -90px !important;
  }

  .mx-sm-n95 {
    margin-right: -95px !important;
    margin-left: -95px !important;
  }

  .mx-sm-n100 {
    margin-right: -100px !important;
    margin-left: -100px !important;
  }

  .mx-sm-n110 {
    margin-right: -110px !important;
    margin-left: -110px !important;
  }

  .mx-sm-n115 {
    margin-right: -115px !important;
    margin-left: -115px !important;
  }

  .mx-sm-n120 {
    margin-right: -120px !important;
    margin-left: -120px !important;
  }

  .mx-sm-n130 {
    margin-right: -130px !important;
    margin-left: -130px !important;
  }

  .mx-sm-n150 {
    margin-right: -150px !important;
    margin-left: -150px !important;
  }

  .mx-sm-n160 {
    margin-right: -160px !important;
    margin-left: -160px !important;
  }

  .mx-sm-n180 {
    margin-right: -180px !important;
    margin-left: -180px !important;
  }

  .mx-sm-n190 {
    margin-right: -190px !important;
    margin-left: -190px !important;
  }

  .mx-sm-n200 {
    margin-right: -200px !important;
    margin-left: -200px !important;
  }

  .mx-sm-n210 {
    margin-right: -210px !important;
    margin-left: -210px !important;
  }

  .mx-sm-n235 {
    margin-right: -235px !important;
    margin-left: -235px !important;
  }

  .mx-sm-n240 {
    margin-right: -240px !important;
    margin-left: -240px !important;
  }

  .mx-sm-n270 {
    margin-right: -270px !important;
    margin-left: -270px !important;
  }

  .mx-sm-n290 {
    margin-right: -290px !important;
    margin-left: -290px !important;
  }

  .mx-sm-n300 {
    margin-right: -300px !important;
    margin-left: -300px !important;
  }

  .my-sm-n1 {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .my-sm-n2 {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
  }

  .my-sm-n3 {
    margin-top: -3px !important;
    margin-bottom: -3px !important;
  }

  .my-sm-n4 {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }

  .my-sm-n5 {
    margin-top: -5px !important;
    margin-bottom: -5px !important;
  }

  .my-sm-n6 {
    margin-top: -6px !important;
    margin-bottom: -6px !important;
  }

  .my-sm-n7 {
    margin-top: -7px !important;
    margin-bottom: -7px !important;
  }

  .my-sm-n8 {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }

  .my-sm-n9 {
    margin-top: -9px !important;
    margin-bottom: -9px !important;
  }

  .my-sm-n10 {
    margin-top: -10px !important;
    margin-bottom: -10px !important;
  }

  .my-sm-n11 {
    margin-top: -11px !important;
    margin-bottom: -11px !important;
  }

  .my-sm-n12 {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }

  .my-sm-n13 {
    margin-top: -13px !important;
    margin-bottom: -13px !important;
  }

  .my-sm-n15 {
    margin-top: -15px !important;
    margin-bottom: -15px !important;
  }

  .my-sm-n17 {
    margin-top: -17px !important;
    margin-bottom: -17px !important;
  }

  .my-sm-n18 {
    margin-top: -18px !important;
    margin-bottom: -18px !important;
  }

  .my-sm-n20 {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }

  .my-sm-n25 {
    margin-top: -25px !important;
    margin-bottom: -25px !important;
  }

  .my-sm-n30 {
    margin-top: -30px !important;
    margin-bottom: -30px !important;
  }

  .my-sm-n35 {
    margin-top: -35px !important;
    margin-bottom: -35px !important;
  }

  .my-sm-n40 {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }

  .my-sm-n45 {
    margin-top: -45px !important;
    margin-bottom: -45px !important;
  }

  .my-sm-n50 {
    margin-top: -50px !important;
    margin-bottom: -50px !important;
  }

  .my-sm-n55 {
    margin-top: -55px !important;
    margin-bottom: -55px !important;
  }

  .my-sm-n60 {
    margin-top: -60px !important;
    margin-bottom: -60px !important;
  }

  .my-sm-n65 {
    margin-top: -65px !important;
    margin-bottom: -65px !important;
  }

  .my-sm-n70 {
    margin-top: -70px !important;
    margin-bottom: -70px !important;
  }

  .my-sm-n75 {
    margin-top: -75px !important;
    margin-bottom: -75px !important;
  }

  .my-sm-n80 {
    margin-top: -80px !important;
    margin-bottom: -80px !important;
  }

  .my-sm-n90 {
    margin-top: -90px !important;
    margin-bottom: -90px !important;
  }

  .my-sm-n95 {
    margin-top: -95px !important;
    margin-bottom: -95px !important;
  }

  .my-sm-n100 {
    margin-top: -100px !important;
    margin-bottom: -100px !important;
  }

  .my-sm-n110 {
    margin-top: -110px !important;
    margin-bottom: -110px !important;
  }

  .my-sm-n115 {
    margin-top: -115px !important;
    margin-bottom: -115px !important;
  }

  .my-sm-n120 {
    margin-top: -120px !important;
    margin-bottom: -120px !important;
  }

  .my-sm-n130 {
    margin-top: -130px !important;
    margin-bottom: -130px !important;
  }

  .my-sm-n150 {
    margin-top: -150px !important;
    margin-bottom: -150px !important;
  }

  .my-sm-n160 {
    margin-top: -160px !important;
    margin-bottom: -160px !important;
  }

  .my-sm-n180 {
    margin-top: -180px !important;
    margin-bottom: -180px !important;
  }

  .my-sm-n190 {
    margin-top: -190px !important;
    margin-bottom: -190px !important;
  }

  .my-sm-n200 {
    margin-top: -200px !important;
    margin-bottom: -200px !important;
  }

  .my-sm-n210 {
    margin-top: -210px !important;
    margin-bottom: -210px !important;
  }

  .my-sm-n235 {
    margin-top: -235px !important;
    margin-bottom: -235px !important;
  }

  .my-sm-n240 {
    margin-top: -240px !important;
    margin-bottom: -240px !important;
  }

  .my-sm-n270 {
    margin-top: -270px !important;
    margin-bottom: -270px !important;
  }

  .my-sm-n290 {
    margin-top: -290px !important;
    margin-bottom: -290px !important;
  }

  .my-sm-n300 {
    margin-top: -300px !important;
    margin-bottom: -300px !important;
  }

  .mt-sm-n1 {
    margin-top: -1px !important;
  }

  .mt-sm-n2 {
    margin-top: -2px !important;
  }

  .mt-sm-n3 {
    margin-top: -3px !important;
  }

  .mt-sm-n4 {
    margin-top: -4px !important;
  }

  .mt-sm-n5 {
    margin-top: -5px !important;
  }

  .mt-sm-n6 {
    margin-top: -6px !important;
  }

  .mt-sm-n7 {
    margin-top: -7px !important;
  }

  .mt-sm-n8 {
    margin-top: -8px !important;
  }

  .mt-sm-n9 {
    margin-top: -9px !important;
  }

  .mt-sm-n10 {
    margin-top: -10px !important;
  }

  .mt-sm-n11 {
    margin-top: -11px !important;
  }

  .mt-sm-n12 {
    margin-top: -12px !important;
  }

  .mt-sm-n13 {
    margin-top: -13px !important;
  }

  .mt-sm-n15 {
    margin-top: -15px !important;
  }

  .mt-sm-n17 {
    margin-top: -17px !important;
  }

  .mt-sm-n18 {
    margin-top: -18px !important;
  }

  .mt-sm-n20 {
    margin-top: -20px !important;
  }

  .mt-sm-n25 {
    margin-top: -25px !important;
  }

  .mt-sm-n30 {
    margin-top: -30px !important;
  }

  .mt-sm-n35 {
    margin-top: -35px !important;
  }

  .mt-sm-n40 {
    margin-top: -40px !important;
  }

  .mt-sm-n45 {
    margin-top: -45px !important;
  }

  .mt-sm-n50 {
    margin-top: -50px !important;
  }

  .mt-sm-n55 {
    margin-top: -55px !important;
  }

  .mt-sm-n60 {
    margin-top: -60px !important;
  }

  .mt-sm-n65 {
    margin-top: -65px !important;
  }

  .mt-sm-n70 {
    margin-top: -70px !important;
  }

  .mt-sm-n75 {
    margin-top: -75px !important;
  }

  .mt-sm-n80 {
    margin-top: -80px !important;
  }

  .mt-sm-n90 {
    margin-top: -90px !important;
  }

  .mt-sm-n95 {
    margin-top: -95px !important;
  }

  .mt-sm-n100 {
    margin-top: -100px !important;
  }

  .mt-sm-n110 {
    margin-top: -110px !important;
  }

  .mt-sm-n115 {
    margin-top: -115px !important;
  }

  .mt-sm-n120 {
    margin-top: -120px !important;
  }

  .mt-sm-n130 {
    margin-top: -130px !important;
  }

  .mt-sm-n150 {
    margin-top: -150px !important;
  }

  .mt-sm-n160 {
    margin-top: -160px !important;
  }

  .mt-sm-n180 {
    margin-top: -180px !important;
  }

  .mt-sm-n190 {
    margin-top: -190px !important;
  }

  .mt-sm-n200 {
    margin-top: -200px !important;
  }

  .mt-sm-n210 {
    margin-top: -210px !important;
  }

  .mt-sm-n235 {
    margin-top: -235px !important;
  }

  .mt-sm-n240 {
    margin-top: -240px !important;
  }

  .mt-sm-n270 {
    margin-top: -270px !important;
  }

  .mt-sm-n290 {
    margin-top: -290px !important;
  }

  .mt-sm-n300 {
    margin-top: -300px !important;
  }

  .me-sm-n1 {
    margin-right: -1px !important;
  }

  .me-sm-n2 {
    margin-right: -2px !important;
  }

  .me-sm-n3 {
    margin-right: -3px !important;
  }

  .me-sm-n4 {
    margin-right: -4px !important;
  }

  .me-sm-n5 {
    margin-right: -5px !important;
  }

  .me-sm-n6 {
    margin-right: -6px !important;
  }

  .me-sm-n7 {
    margin-right: -7px !important;
  }

  .me-sm-n8 {
    margin-right: -8px !important;
  }

  .me-sm-n9 {
    margin-right: -9px !important;
  }

  .me-sm-n10 {
    margin-right: -10px !important;
  }

  .me-sm-n11 {
    margin-right: -11px !important;
  }

  .me-sm-n12 {
    margin-right: -12px !important;
  }

  .me-sm-n13 {
    margin-right: -13px !important;
  }

  .me-sm-n15 {
    margin-right: -15px !important;
  }

  .me-sm-n17 {
    margin-right: -17px !important;
  }

  .me-sm-n18 {
    margin-right: -18px !important;
  }

  .me-sm-n20 {
    margin-right: -20px !important;
  }

  .me-sm-n25 {
    margin-right: -25px !important;
  }

  .me-sm-n30 {
    margin-right: -30px !important;
  }

  .me-sm-n35 {
    margin-right: -35px !important;
  }

  .me-sm-n40 {
    margin-right: -40px !important;
  }

  .me-sm-n45 {
    margin-right: -45px !important;
  }

  .me-sm-n50 {
    margin-right: -50px !important;
  }

  .me-sm-n55 {
    margin-right: -55px !important;
  }

  .me-sm-n60 {
    margin-right: -60px !important;
  }

  .me-sm-n65 {
    margin-right: -65px !important;
  }

  .me-sm-n70 {
    margin-right: -70px !important;
  }

  .me-sm-n75 {
    margin-right: -75px !important;
  }

  .me-sm-n80 {
    margin-right: -80px !important;
  }

  .me-sm-n90 {
    margin-right: -90px !important;
  }

  .me-sm-n95 {
    margin-right: -95px !important;
  }

  .me-sm-n100 {
    margin-right: -100px !important;
  }

  .me-sm-n110 {
    margin-right: -110px !important;
  }

  .me-sm-n115 {
    margin-right: -115px !important;
  }

  .me-sm-n120 {
    margin-right: -120px !important;
  }

  .me-sm-n130 {
    margin-right: -130px !important;
  }

  .me-sm-n150 {
    margin-right: -150px !important;
  }

  .me-sm-n160 {
    margin-right: -160px !important;
  }

  .me-sm-n180 {
    margin-right: -180px !important;
  }

  .me-sm-n190 {
    margin-right: -190px !important;
  }

  .me-sm-n200 {
    margin-right: -200px !important;
  }

  .me-sm-n210 {
    margin-right: -210px !important;
  }

  .me-sm-n235 {
    margin-right: -235px !important;
  }

  .me-sm-n240 {
    margin-right: -240px !important;
  }

  .me-sm-n270 {
    margin-right: -270px !important;
  }

  .me-sm-n290 {
    margin-right: -290px !important;
  }

  .me-sm-n300 {
    margin-right: -300px !important;
  }

  .mb-sm-n1 {
    margin-bottom: -1px !important;
  }

  .mb-sm-n2 {
    margin-bottom: -2px !important;
  }

  .mb-sm-n3 {
    margin-bottom: -3px !important;
  }

  .mb-sm-n4 {
    margin-bottom: -4px !important;
  }

  .mb-sm-n5 {
    margin-bottom: -5px !important;
  }

  .mb-sm-n6 {
    margin-bottom: -6px !important;
  }

  .mb-sm-n7 {
    margin-bottom: -7px !important;
  }

  .mb-sm-n8 {
    margin-bottom: -8px !important;
  }

  .mb-sm-n9 {
    margin-bottom: -9px !important;
  }

  .mb-sm-n10 {
    margin-bottom: -10px !important;
  }

  .mb-sm-n11 {
    margin-bottom: -11px !important;
  }

  .mb-sm-n12 {
    margin-bottom: -12px !important;
  }

  .mb-sm-n13 {
    margin-bottom: -13px !important;
  }

  .mb-sm-n15 {
    margin-bottom: -15px !important;
  }

  .mb-sm-n17 {
    margin-bottom: -17px !important;
  }

  .mb-sm-n18 {
    margin-bottom: -18px !important;
  }

  .mb-sm-n20 {
    margin-bottom: -20px !important;
  }

  .mb-sm-n25 {
    margin-bottom: -25px !important;
  }

  .mb-sm-n30 {
    margin-bottom: -30px !important;
  }

  .mb-sm-n35 {
    margin-bottom: -35px !important;
  }

  .mb-sm-n40 {
    margin-bottom: -40px !important;
  }

  .mb-sm-n45 {
    margin-bottom: -45px !important;
  }

  .mb-sm-n50 {
    margin-bottom: -50px !important;
  }

  .mb-sm-n55 {
    margin-bottom: -55px !important;
  }

  .mb-sm-n60 {
    margin-bottom: -60px !important;
  }

  .mb-sm-n65 {
    margin-bottom: -65px !important;
  }

  .mb-sm-n70 {
    margin-bottom: -70px !important;
  }

  .mb-sm-n75 {
    margin-bottom: -75px !important;
  }

  .mb-sm-n80 {
    margin-bottom: -80px !important;
  }

  .mb-sm-n90 {
    margin-bottom: -90px !important;
  }

  .mb-sm-n95 {
    margin-bottom: -95px !important;
  }

  .mb-sm-n100 {
    margin-bottom: -100px !important;
  }

  .mb-sm-n110 {
    margin-bottom: -110px !important;
  }

  .mb-sm-n115 {
    margin-bottom: -115px !important;
  }

  .mb-sm-n120 {
    margin-bottom: -120px !important;
  }

  .mb-sm-n130 {
    margin-bottom: -130px !important;
  }

  .mb-sm-n150 {
    margin-bottom: -150px !important;
  }

  .mb-sm-n160 {
    margin-bottom: -160px !important;
  }

  .mb-sm-n180 {
    margin-bottom: -180px !important;
  }

  .mb-sm-n190 {
    margin-bottom: -190px !important;
  }

  .mb-sm-n200 {
    margin-bottom: -200px !important;
  }

  .mb-sm-n210 {
    margin-bottom: -210px !important;
  }

  .mb-sm-n235 {
    margin-bottom: -235px !important;
  }

  .mb-sm-n240 {
    margin-bottom: -240px !important;
  }

  .mb-sm-n270 {
    margin-bottom: -270px !important;
  }

  .mb-sm-n290 {
    margin-bottom: -290px !important;
  }

  .mb-sm-n300 {
    margin-bottom: -300px !important;
  }

  .ms-sm-n1 {
    margin-left: -1px !important;
  }

  .ms-sm-n2 {
    margin-left: -2px !important;
  }

  .ms-sm-n3 {
    margin-left: -3px !important;
  }

  .ms-sm-n4 {
    margin-left: -4px !important;
  }

  .ms-sm-n5 {
    margin-left: -5px !important;
  }

  .ms-sm-n6 {
    margin-left: -6px !important;
  }

  .ms-sm-n7 {
    margin-left: -7px !important;
  }

  .ms-sm-n8 {
    margin-left: -8px !important;
  }

  .ms-sm-n9 {
    margin-left: -9px !important;
  }

  .ms-sm-n10 {
    margin-left: -10px !important;
  }

  .ms-sm-n11 {
    margin-left: -11px !important;
  }

  .ms-sm-n12 {
    margin-left: -12px !important;
  }

  .ms-sm-n13 {
    margin-left: -13px !important;
  }

  .ms-sm-n15 {
    margin-left: -15px !important;
  }

  .ms-sm-n17 {
    margin-left: -17px !important;
  }

  .ms-sm-n18 {
    margin-left: -18px !important;
  }

  .ms-sm-n20 {
    margin-left: -20px !important;
  }

  .ms-sm-n25 {
    margin-left: -25px !important;
  }

  .ms-sm-n30 {
    margin-left: -30px !important;
  }

  .ms-sm-n35 {
    margin-left: -35px !important;
  }

  .ms-sm-n40 {
    margin-left: -40px !important;
  }

  .ms-sm-n45 {
    margin-left: -45px !important;
  }

  .ms-sm-n50 {
    margin-left: -50px !important;
  }

  .ms-sm-n55 {
    margin-left: -55px !important;
  }

  .ms-sm-n60 {
    margin-left: -60px !important;
  }

  .ms-sm-n65 {
    margin-left: -65px !important;
  }

  .ms-sm-n70 {
    margin-left: -70px !important;
  }

  .ms-sm-n75 {
    margin-left: -75px !important;
  }

  .ms-sm-n80 {
    margin-left: -80px !important;
  }

  .ms-sm-n90 {
    margin-left: -90px !important;
  }

  .ms-sm-n95 {
    margin-left: -95px !important;
  }

  .ms-sm-n100 {
    margin-left: -100px !important;
  }

  .ms-sm-n110 {
    margin-left: -110px !important;
  }

  .ms-sm-n115 {
    margin-left: -115px !important;
  }

  .ms-sm-n120 {
    margin-left: -120px !important;
  }

  .ms-sm-n130 {
    margin-left: -130px !important;
  }

  .ms-sm-n150 {
    margin-left: -150px !important;
  }

  .ms-sm-n160 {
    margin-left: -160px !important;
  }

  .ms-sm-n180 {
    margin-left: -180px !important;
  }

  .ms-sm-n190 {
    margin-left: -190px !important;
  }

  .ms-sm-n200 {
    margin-left: -200px !important;
  }

  .ms-sm-n210 {
    margin-left: -210px !important;
  }

  .ms-sm-n235 {
    margin-left: -235px !important;
  }

  .ms-sm-n240 {
    margin-left: -240px !important;
  }

  .ms-sm-n270 {
    margin-left: -270px !important;
  }

  .ms-sm-n290 {
    margin-left: -290px !important;
  }

  .ms-sm-n300 {
    margin-left: -300px !important;
  }

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

  .p-sm-1 {
    padding: 1px !important;
  }

  .p-sm-2 {
    padding: 2px !important;
  }

  .p-sm-3 {
    padding: 3px !important;
  }

  .p-sm-4 {
    padding: 4px !important;
  }

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

  .p-sm-6 {
    padding: 6px !important;
  }

  .p-sm-7 {
    padding: 7px !important;
  }

  .p-sm-8 {
    padding: 8px !important;
  }

  .p-sm-9 {
    padding: 9px !important;
  }

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

  .p-sm-11 {
    padding: 11px !important;
  }

  .p-sm-12 {
    padding: 12px !important;
  }

  .p-sm-13 {
    padding: 13px !important;
  }

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

  .p-sm-17 {
    padding: 17px !important;
  }

  .p-sm-18 {
    padding: 18px !important;
  }

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

  .p-sm-25 {
    padding: 25px !important;
  }

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

  .p-sm-35 {
    padding: 35px !important;
  }

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

  .p-sm-45 {
    padding: 45px !important;
  }

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

  .p-sm-55 {
    padding: 55px !important;
  }

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

  .p-sm-65 {
    padding: 65px !important;
  }

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

  .p-sm-75 {
    padding: 75px !important;
  }

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

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

  .p-sm-95 {
    padding: 95px !important;
  }

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

  .p-sm-110 {
    padding: 110px !important;
  }

  .p-sm-115 {
    padding: 115px !important;
  }

  .p-sm-120 {
    padding: 120px !important;
  }

  .p-sm-130 {
    padding: 130px !important;
  }

  .p-sm-150 {
    padding: 150px !important;
  }

  .p-sm-160 {
    padding: 160px !important;
  }

  .p-sm-180 {
    padding: 180px !important;
  }

  .p-sm-190 {
    padding: 190px !important;
  }

  .p-sm-200 {
    padding: 200px !important;
  }

  .p-sm-210 {
    padding: 210px !important;
  }

  .p-sm-235 {
    padding: 235px !important;
  }

  .p-sm-240 {
    padding: 240px !important;
  }

  .p-sm-270 {
    padding: 270px !important;
  }

  .p-sm-290 {
    padding: 290px !important;
  }

  .p-sm-300 {
    padding: 300px !important;
  }

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

  .px-sm-1 {
    padding-right: 1px !important;
    padding-left: 1px !important;
  }

  .px-sm-2 {
    padding-right: 2px !important;
    padding-left: 2px !important;
  }

  .px-sm-3 {
    padding-right: 3px !important;
    padding-left: 3px !important;
  }

  .px-sm-4 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

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

  .px-sm-6 {
    padding-right: 6px !important;
    padding-left: 6px !important;
  }

  .px-sm-7 {
    padding-right: 7px !important;
    padding-left: 7px !important;
  }

  .px-sm-8 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .px-sm-9 {
    padding-right: 9px !important;
    padding-left: 9px !important;
  }

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

  .px-sm-11 {
    padding-right: 11px !important;
    padding-left: 11px !important;
  }

  .px-sm-12 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .px-sm-13 {
    padding-right: 13px !important;
    padding-left: 13px !important;
  }

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

  .px-sm-17 {
    padding-right: 17px !important;
    padding-left: 17px !important;
  }

  .px-sm-18 {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

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

  .px-sm-25 {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }

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

  .px-sm-35 {
    padding-right: 35px !important;
    padding-left: 35px !important;
  }

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

  .px-sm-45 {
    padding-right: 45px !important;
    padding-left: 45px !important;
  }

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

  .px-sm-55 {
    padding-right: 55px !important;
    padding-left: 55px !important;
  }

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

  .px-sm-65 {
    padding-right: 65px !important;
    padding-left: 65px !important;
  }

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

  .px-sm-75 {
    padding-right: 75px !important;
    padding-left: 75px !important;
  }

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

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

  .px-sm-95 {
    padding-right: 95px !important;
    padding-left: 95px !important;
  }

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

  .px-sm-110 {
    padding-right: 110px !important;
    padding-left: 110px !important;
  }

  .px-sm-115 {
    padding-right: 115px !important;
    padding-left: 115px !important;
  }

  .px-sm-120 {
    padding-right: 120px !important;
    padding-left: 120px !important;
  }

  .px-sm-130 {
    padding-right: 130px !important;
    padding-left: 130px !important;
  }

  .px-sm-150 {
    padding-right: 150px !important;
    padding-left: 150px !important;
  }

  .px-sm-160 {
    padding-right: 160px !important;
    padding-left: 160px !important;
  }

  .px-sm-180 {
    padding-right: 180px !important;
    padding-left: 180px !important;
  }

  .px-sm-190 {
    padding-right: 190px !important;
    padding-left: 190px !important;
  }

  .px-sm-200 {
    padding-right: 200px !important;
    padding-left: 200px !important;
  }

  .px-sm-210 {
    padding-right: 210px !important;
    padding-left: 210px !important;
  }

  .px-sm-235 {
    padding-right: 235px !important;
    padding-left: 235px !important;
  }

  .px-sm-240 {
    padding-right: 240px !important;
    padding-left: 240px !important;
  }

  .px-sm-270 {
    padding-right: 270px !important;
    padding-left: 270px !important;
  }

  .px-sm-290 {
    padding-right: 290px !important;
    padding-left: 290px !important;
  }

  .px-sm-300 {
    padding-right: 300px !important;
    padding-left: 300px !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .py-sm-2 {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .py-sm-3 {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }

  .py-sm-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .py-sm-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .py-sm-6 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  .py-sm-7 {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }

  .py-sm-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .py-sm-9 {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }

  .py-sm-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .py-sm-11 {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
  }

  .py-sm-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .py-sm-13 {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }

  .py-sm-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  .py-sm-17 {
    padding-top: 17px !important;
    padding-bottom: 17px !important;
  }

  .py-sm-18 {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .py-sm-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .py-sm-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  .py-sm-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .py-sm-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .py-sm-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .py-sm-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }

  .py-sm-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .py-sm-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .py-sm-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .py-sm-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }

  .py-sm-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .py-sm-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }

  .py-sm-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .py-sm-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }

  .py-sm-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }

  .py-sm-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .py-sm-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }

  .py-sm-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }

  .py-sm-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }

  .py-sm-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }

  .py-sm-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }

  .py-sm-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }

  .py-sm-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }

  .py-sm-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }

  .py-sm-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }

  .py-sm-210 {
    padding-top: 210px !important;
    padding-bottom: 210px !important;
  }

  .py-sm-235 {
    padding-top: 235px !important;
    padding-bottom: 235px !important;
  }

  .py-sm-240 {
    padding-top: 240px !important;
    padding-bottom: 240px !important;
  }

  .py-sm-270 {
    padding-top: 270px !important;
    padding-bottom: 270px !important;
  }

  .py-sm-290 {
    padding-top: 290px !important;
    padding-bottom: 290px !important;
  }

  .py-sm-300 {
    padding-top: 300px !important;
    padding-bottom: 300px !important;
  }

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

  .pt-sm-1 {
    padding-top: 1px !important;
  }

  .pt-sm-2 {
    padding-top: 2px !important;
  }

  .pt-sm-3 {
    padding-top: 3px !important;
  }

  .pt-sm-4 {
    padding-top: 4px !important;
  }

  .pt-sm-5 {
    padding-top: 5px !important;
  }

  .pt-sm-6 {
    padding-top: 6px !important;
  }

  .pt-sm-7 {
    padding-top: 7px !important;
  }

  .pt-sm-8 {
    padding-top: 8px !important;
  }

  .pt-sm-9 {
    padding-top: 9px !important;
  }

  .pt-sm-10 {
    padding-top: 10px !important;
  }

  .pt-sm-11 {
    padding-top: 11px !important;
  }

  .pt-sm-12 {
    padding-top: 12px !important;
  }

  .pt-sm-13 {
    padding-top: 13px !important;
  }

  .pt-sm-15 {
    padding-top: 15px !important;
  }

  .pt-sm-17 {
    padding-top: 17px !important;
  }

  .pt-sm-18 {
    padding-top: 18px !important;
  }

  .pt-sm-20 {
    padding-top: 20px !important;
  }

  .pt-sm-25 {
    padding-top: 25px !important;
  }

  .pt-sm-30 {
    padding-top: 30px !important;
  }

  .pt-sm-35 {
    padding-top: 35px !important;
  }

  .pt-sm-40 {
    padding-top: 40px !important;
  }

  .pt-sm-45 {
    padding-top: 45px !important;
  }

  .pt-sm-50 {
    padding-top: 50px !important;
  }

  .pt-sm-55 {
    padding-top: 55px !important;
  }

  .pt-sm-60 {
    padding-top: 60px !important;
  }

  .pt-sm-65 {
    padding-top: 65px !important;
  }

  .pt-sm-70 {
    padding-top: 70px !important;
  }

  .pt-sm-75 {
    padding-top: 75px !important;
  }

  .pt-sm-80 {
    padding-top: 80px !important;
  }

  .pt-sm-90 {
    padding-top: 90px !important;
  }

  .pt-sm-95 {
    padding-top: 95px !important;
  }

  .pt-sm-100 {
    padding-top: 100px !important;
  }

  .pt-sm-110 {
    padding-top: 110px !important;
  }

  .pt-sm-115 {
    padding-top: 115px !important;
  }

  .pt-sm-120 {
    padding-top: 120px !important;
  }

  .pt-sm-130 {
    padding-top: 130px !important;
  }

  .pt-sm-150 {
    padding-top: 150px !important;
  }

  .pt-sm-160 {
    padding-top: 160px !important;
  }

  .pt-sm-180 {
    padding-top: 180px !important;
  }

  .pt-sm-190 {
    padding-top: 190px !important;
  }

  .pt-sm-200 {
    padding-top: 200px !important;
  }

  .pt-sm-210 {
    padding-top: 210px !important;
  }

  .pt-sm-235 {
    padding-top: 235px !important;
  }

  .pt-sm-240 {
    padding-top: 240px !important;
  }

  .pt-sm-270 {
    padding-top: 270px !important;
  }

  .pt-sm-290 {
    padding-top: 290px !important;
  }

  .pt-sm-300 {
    padding-top: 300px !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 1px !important;
  }

  .pe-sm-2 {
    padding-right: 2px !important;
  }

  .pe-sm-3 {
    padding-right: 3px !important;
  }

  .pe-sm-4 {
    padding-right: 4px !important;
  }

  .pe-sm-5 {
    padding-right: 5px !important;
  }

  .pe-sm-6 {
    padding-right: 6px !important;
  }

  .pe-sm-7 {
    padding-right: 7px !important;
  }

  .pe-sm-8 {
    padding-right: 8px !important;
  }

  .pe-sm-9 {
    padding-right: 9px !important;
  }

  .pe-sm-10 {
    padding-right: 10px !important;
  }

  .pe-sm-11 {
    padding-right: 11px !important;
  }

  .pe-sm-12 {
    padding-right: 12px !important;
  }

  .pe-sm-13 {
    padding-right: 13px !important;
  }

  .pe-sm-15 {
    padding-right: 15px !important;
  }

  .pe-sm-17 {
    padding-right: 17px !important;
  }

  .pe-sm-18 {
    padding-right: 18px !important;
  }

  .pe-sm-20 {
    padding-right: 20px !important;
  }

  .pe-sm-25 {
    padding-right: 25px !important;
  }

  .pe-sm-30 {
    padding-right: 30px !important;
  }

  .pe-sm-35 {
    padding-right: 35px !important;
  }

  .pe-sm-40 {
    padding-right: 40px !important;
  }

  .pe-sm-45 {
    padding-right: 45px !important;
  }

  .pe-sm-50 {
    padding-right: 50px !important;
  }

  .pe-sm-55 {
    padding-right: 55px !important;
  }

  .pe-sm-60 {
    padding-right: 60px !important;
  }

  .pe-sm-65 {
    padding-right: 65px !important;
  }

  .pe-sm-70 {
    padding-right: 70px !important;
  }

  .pe-sm-75 {
    padding-right: 75px !important;
  }

  .pe-sm-80 {
    padding-right: 80px !important;
  }

  .pe-sm-90 {
    padding-right: 90px !important;
  }

  .pe-sm-95 {
    padding-right: 95px !important;
  }

  .pe-sm-100 {
    padding-right: 100px !important;
  }

  .pe-sm-110 {
    padding-right: 110px !important;
  }

  .pe-sm-115 {
    padding-right: 115px !important;
  }

  .pe-sm-120 {
    padding-right: 120px !important;
  }

  .pe-sm-130 {
    padding-right: 130px !important;
  }

  .pe-sm-150 {
    padding-right: 150px !important;
  }

  .pe-sm-160 {
    padding-right: 160px !important;
  }

  .pe-sm-180 {
    padding-right: 180px !important;
  }

  .pe-sm-190 {
    padding-right: 190px !important;
  }

  .pe-sm-200 {
    padding-right: 200px !important;
  }

  .pe-sm-210 {
    padding-right: 210px !important;
  }

  .pe-sm-235 {
    padding-right: 235px !important;
  }

  .pe-sm-240 {
    padding-right: 240px !important;
  }

  .pe-sm-270 {
    padding-right: 270px !important;
  }

  .pe-sm-290 {
    padding-right: 290px !important;
  }

  .pe-sm-300 {
    padding-right: 300px !important;
  }

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

  .pb-sm-1 {
    padding-bottom: 1px !important;
  }

  .pb-sm-2 {
    padding-bottom: 2px !important;
  }

  .pb-sm-3 {
    padding-bottom: 3px !important;
  }

  .pb-sm-4 {
    padding-bottom: 4px !important;
  }

  .pb-sm-5 {
    padding-bottom: 5px !important;
  }

  .pb-sm-6 {
    padding-bottom: 6px !important;
  }

  .pb-sm-7 {
    padding-bottom: 7px !important;
  }

  .pb-sm-8 {
    padding-bottom: 8px !important;
  }

  .pb-sm-9 {
    padding-bottom: 9px !important;
  }

  .pb-sm-10 {
    padding-bottom: 10px !important;
  }

  .pb-sm-11 {
    padding-bottom: 11px !important;
  }

  .pb-sm-12 {
    padding-bottom: 12px !important;
  }

  .pb-sm-13 {
    padding-bottom: 13px !important;
  }

  .pb-sm-15 {
    padding-bottom: 15px !important;
  }

  .pb-sm-17 {
    padding-bottom: 17px !important;
  }

  .pb-sm-18 {
    padding-bottom: 18px !important;
  }

  .pb-sm-20 {
    padding-bottom: 20px !important;
  }

  .pb-sm-25 {
    padding-bottom: 25px !important;
  }

  .pb-sm-30 {
    padding-bottom: 30px !important;
  }

  .pb-sm-35 {
    padding-bottom: 35px !important;
  }

  .pb-sm-40 {
    padding-bottom: 40px !important;
  }

  .pb-sm-45 {
    padding-bottom: 45px !important;
  }

  .pb-sm-50 {
    padding-bottom: 50px !important;
  }

  .pb-sm-55 {
    padding-bottom: 55px !important;
  }

  .pb-sm-60 {
    padding-bottom: 60px !important;
  }

  .pb-sm-65 {
    padding-bottom: 65px !important;
  }

  .pb-sm-70 {
    padding-bottom: 70px !important;
  }

  .pb-sm-75 {
    padding-bottom: 75px !important;
  }

  .pb-sm-80 {
    padding-bottom: 80px !important;
  }

  .pb-sm-90 {
    padding-bottom: 90px !important;
  }

  .pb-sm-95 {
    padding-bottom: 95px !important;
  }

  .pb-sm-100 {
    padding-bottom: 100px !important;
  }

  .pb-sm-110 {
    padding-bottom: 110px !important;
  }

  .pb-sm-115 {
    padding-bottom: 115px !important;
  }

  .pb-sm-120 {
    padding-bottom: 120px !important;
  }

  .pb-sm-130 {
    padding-bottom: 130px !important;
  }

  .pb-sm-150 {
    padding-bottom: 150px !important;
  }

  .pb-sm-160 {
    padding-bottom: 160px !important;
  }

  .pb-sm-180 {
    padding-bottom: 180px !important;
  }

  .pb-sm-190 {
    padding-bottom: 190px !important;
  }

  .pb-sm-200 {
    padding-bottom: 200px !important;
  }

  .pb-sm-210 {
    padding-bottom: 210px !important;
  }

  .pb-sm-235 {
    padding-bottom: 235px !important;
  }

  .pb-sm-240 {
    padding-bottom: 240px !important;
  }

  .pb-sm-270 {
    padding-bottom: 270px !important;
  }

  .pb-sm-290 {
    padding-bottom: 290px !important;
  }

  .pb-sm-300 {
    padding-bottom: 300px !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 1px !important;
  }

  .ps-sm-2 {
    padding-left: 2px !important;
  }

  .ps-sm-3 {
    padding-left: 3px !important;
  }

  .ps-sm-4 {
    padding-left: 4px !important;
  }

  .ps-sm-5 {
    padding-left: 5px !important;
  }

  .ps-sm-6 {
    padding-left: 6px !important;
  }

  .ps-sm-7 {
    padding-left: 7px !important;
  }

  .ps-sm-8 {
    padding-left: 8px !important;
  }

  .ps-sm-9 {
    padding-left: 9px !important;
  }

  .ps-sm-10 {
    padding-left: 10px !important;
  }

  .ps-sm-11 {
    padding-left: 11px !important;
  }

  .ps-sm-12 {
    padding-left: 12px !important;
  }

  .ps-sm-13 {
    padding-left: 13px !important;
  }

  .ps-sm-15 {
    padding-left: 15px !important;
  }

  .ps-sm-17 {
    padding-left: 17px !important;
  }

  .ps-sm-18 {
    padding-left: 18px !important;
  }

  .ps-sm-20 {
    padding-left: 20px !important;
  }

  .ps-sm-25 {
    padding-left: 25px !important;
  }

  .ps-sm-30 {
    padding-left: 30px !important;
  }

  .ps-sm-35 {
    padding-left: 35px !important;
  }

  .ps-sm-40 {
    padding-left: 40px !important;
  }

  .ps-sm-45 {
    padding-left: 45px !important;
  }

  .ps-sm-50 {
    padding-left: 50px !important;
  }

  .ps-sm-55 {
    padding-left: 55px !important;
  }

  .ps-sm-60 {
    padding-left: 60px !important;
  }

  .ps-sm-65 {
    padding-left: 65px !important;
  }

  .ps-sm-70 {
    padding-left: 70px !important;
  }

  .ps-sm-75 {
    padding-left: 75px !important;
  }

  .ps-sm-80 {
    padding-left: 80px !important;
  }

  .ps-sm-90 {
    padding-left: 90px !important;
  }

  .ps-sm-95 {
    padding-left: 95px !important;
  }

  .ps-sm-100 {
    padding-left: 100px !important;
  }

  .ps-sm-110 {
    padding-left: 110px !important;
  }

  .ps-sm-115 {
    padding-left: 115px !important;
  }

  .ps-sm-120 {
    padding-left: 120px !important;
  }

  .ps-sm-130 {
    padding-left: 130px !important;
  }

  .ps-sm-150 {
    padding-left: 150px !important;
  }

  .ps-sm-160 {
    padding-left: 160px !important;
  }

  .ps-sm-180 {
    padding-left: 180px !important;
  }

  .ps-sm-190 {
    padding-left: 190px !important;
  }

  .ps-sm-200 {
    padding-left: 200px !important;
  }

  .ps-sm-210 {
    padding-left: 210px !important;
  }

  .ps-sm-235 {
    padding-left: 235px !important;
  }

  .ps-sm-240 {
    padding-left: 240px !important;
  }

  .ps-sm-270 {
    padding-left: 270px !important;
  }

  .ps-sm-290 {
    padding-left: 290px !important;
  }

  .ps-sm-300 {
    padding-left: 300px !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

  .text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 828px) {
  .float-md-start {
    float: left !important;
  }

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

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

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

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

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

  .d-md-grid {
    display: grid !important;
  }

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

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

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

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

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

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

  .flex-md-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

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

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

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

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

  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-md-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }

  .flex-md-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }

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

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

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

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 1px !important;
  }

  .gap-md-2 {
    gap: 2px !important;
  }

  .gap-md-3 {
    gap: 3px !important;
  }

  .gap-md-4 {
    gap: 4px !important;
  }

  .gap-md-5 {
    gap: 5px !important;
  }

  .gap-md-6 {
    gap: 6px !important;
  }

  .gap-md-7 {
    gap: 7px !important;
  }

  .gap-md-8 {
    gap: 8px !important;
  }

  .gap-md-9 {
    gap: 9px !important;
  }

  .gap-md-10 {
    gap: 10px !important;
  }

  .gap-md-11 {
    gap: 11px !important;
  }

  .gap-md-12 {
    gap: 12px !important;
  }

  .gap-md-13 {
    gap: 13px !important;
  }

  .gap-md-15 {
    gap: 15px !important;
  }

  .gap-md-17 {
    gap: 17px !important;
  }

  .gap-md-18 {
    gap: 18px !important;
  }

  .gap-md-20 {
    gap: 20px !important;
  }

  .gap-md-25 {
    gap: 25px !important;
  }

  .gap-md-30 {
    gap: 30px !important;
  }

  .gap-md-35 {
    gap: 35px !important;
  }

  .gap-md-40 {
    gap: 40px !important;
  }

  .gap-md-45 {
    gap: 45px !important;
  }

  .gap-md-50 {
    gap: 50px !important;
  }

  .gap-md-55 {
    gap: 55px !important;
  }

  .gap-md-60 {
    gap: 60px !important;
  }

  .gap-md-65 {
    gap: 65px !important;
  }

  .gap-md-70 {
    gap: 70px !important;
  }

  .gap-md-75 {
    gap: 75px !important;
  }

  .gap-md-80 {
    gap: 80px !important;
  }

  .gap-md-90 {
    gap: 90px !important;
  }

  .gap-md-95 {
    gap: 95px !important;
  }

  .gap-md-100 {
    gap: 100px !important;
  }

  .gap-md-110 {
    gap: 110px !important;
  }

  .gap-md-115 {
    gap: 115px !important;
  }

  .gap-md-120 {
    gap: 120px !important;
  }

  .gap-md-130 {
    gap: 130px !important;
  }

  .gap-md-150 {
    gap: 150px !important;
  }

  .gap-md-160 {
    gap: 160px !important;
  }

  .gap-md-180 {
    gap: 180px !important;
  }

  .gap-md-190 {
    gap: 190px !important;
  }

  .gap-md-200 {
    gap: 200px !important;
  }

  .gap-md-210 {
    gap: 210px !important;
  }

  .gap-md-235 {
    gap: 235px !important;
  }

  .gap-md-240 {
    gap: 240px !important;
  }

  .gap-md-270 {
    gap: 270px !important;
  }

  .gap-md-290 {
    gap: 290px !important;
  }

  .gap-md-300 {
    gap: 300px !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-md-first {
    -webkit-box-ordinal-group: 0 !important;
    -webkit-order: -1 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-md-0 {
    -webkit-box-ordinal-group: 1 !important;
    -webkit-order: 0 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-md-1 {
    -webkit-box-ordinal-group: 2 !important;
    -webkit-order: 1 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-md-2 {
    -webkit-box-ordinal-group: 3 !important;
    -webkit-order: 2 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-md-3 {
    -webkit-box-ordinal-group: 4 !important;
    -webkit-order: 3 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-md-4 {
    -webkit-box-ordinal-group: 5 !important;
    -webkit-order: 4 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-md-5 {
    -webkit-box-ordinal-group: 6 !important;
    -webkit-order: 5 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-md-last {
    -webkit-box-ordinal-group: 7 !important;
    -webkit-order: 6 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

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

  .m-md-1 {
    margin: 1px !important;
  }

  .m-md-2 {
    margin: 2px !important;
  }

  .m-md-3 {
    margin: 3px !important;
  }

  .m-md-4 {
    margin: 4px !important;
  }

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

  .m-md-6 {
    margin: 6px !important;
  }

  .m-md-7 {
    margin: 7px !important;
  }

  .m-md-8 {
    margin: 8px !important;
  }

  .m-md-9 {
    margin: 9px !important;
  }

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

  .m-md-11 {
    margin: 11px !important;
  }

  .m-md-12 {
    margin: 12px !important;
  }

  .m-md-13 {
    margin: 13px !important;
  }

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

  .m-md-17 {
    margin: 17px !important;
  }

  .m-md-18 {
    margin: 18px !important;
  }

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

  .m-md-25 {
    margin: 25px !important;
  }

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

  .m-md-35 {
    margin: 35px !important;
  }

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

  .m-md-45 {
    margin: 45px !important;
  }

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

  .m-md-55 {
    margin: 55px !important;
  }

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

  .m-md-65 {
    margin: 65px !important;
  }

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

  .m-md-75 {
    margin: 75px !important;
  }

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

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

  .m-md-95 {
    margin: 95px !important;
  }

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

  .m-md-110 {
    margin: 110px !important;
  }

  .m-md-115 {
    margin: 115px !important;
  }

  .m-md-120 {
    margin: 120px !important;
  }

  .m-md-130 {
    margin: 130px !important;
  }

  .m-md-150 {
    margin: 150px !important;
  }

  .m-md-160 {
    margin: 160px !important;
  }

  .m-md-180 {
    margin: 180px !important;
  }

  .m-md-190 {
    margin: 190px !important;
  }

  .m-md-200 {
    margin: 200px !important;
  }

  .m-md-210 {
    margin: 210px !important;
  }

  .m-md-235 {
    margin: 235px !important;
  }

  .m-md-240 {
    margin: 240px !important;
  }

  .m-md-270 {
    margin: 270px !important;
  }

  .m-md-290 {
    margin: 290px !important;
  }

  .m-md-300 {
    margin: 300px !important;
  }

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

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 1px !important;
    margin-left: 1px !important;
  }

  .mx-md-2 {
    margin-right: 2px !important;
    margin-left: 2px !important;
  }

  .mx-md-3 {
    margin-right: 3px !important;
    margin-left: 3px !important;
  }

  .mx-md-4 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  .mx-md-5 {
    margin-right: 5px !important;
    margin-left: 5px !important;
  }

  .mx-md-6 {
    margin-right: 6px !important;
    margin-left: 6px !important;
  }

  .mx-md-7 {
    margin-right: 7px !important;
    margin-left: 7px !important;
  }

  .mx-md-8 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  .mx-md-9 {
    margin-right: 9px !important;
    margin-left: 9px !important;
  }

  .mx-md-10 {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }

  .mx-md-11 {
    margin-right: 11px !important;
    margin-left: 11px !important;
  }

  .mx-md-12 {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }

  .mx-md-13 {
    margin-right: 13px !important;
    margin-left: 13px !important;
  }

  .mx-md-15 {
    margin-right: 15px !important;
    margin-left: 15px !important;
  }

  .mx-md-17 {
    margin-right: 17px !important;
    margin-left: 17px !important;
  }

  .mx-md-18 {
    margin-right: 18px !important;
    margin-left: 18px !important;
  }

  .mx-md-20 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }

  .mx-md-25 {
    margin-right: 25px !important;
    margin-left: 25px !important;
  }

  .mx-md-30 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }

  .mx-md-35 {
    margin-right: 35px !important;
    margin-left: 35px !important;
  }

  .mx-md-40 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .mx-md-45 {
    margin-right: 45px !important;
    margin-left: 45px !important;
  }

  .mx-md-50 {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }

  .mx-md-55 {
    margin-right: 55px !important;
    margin-left: 55px !important;
  }

  .mx-md-60 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }

  .mx-md-65 {
    margin-right: 65px !important;
    margin-left: 65px !important;
  }

  .mx-md-70 {
    margin-right: 70px !important;
    margin-left: 70px !important;
  }

  .mx-md-75 {
    margin-right: 75px !important;
    margin-left: 75px !important;
  }

  .mx-md-80 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }

  .mx-md-90 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }

  .mx-md-95 {
    margin-right: 95px !important;
    margin-left: 95px !important;
  }

  .mx-md-100 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }

  .mx-md-110 {
    margin-right: 110px !important;
    margin-left: 110px !important;
  }

  .mx-md-115 {
    margin-right: 115px !important;
    margin-left: 115px !important;
  }

  .mx-md-120 {
    margin-right: 120px !important;
    margin-left: 120px !important;
  }

  .mx-md-130 {
    margin-right: 130px !important;
    margin-left: 130px !important;
  }

  .mx-md-150 {
    margin-right: 150px !important;
    margin-left: 150px !important;
  }

  .mx-md-160 {
    margin-right: 160px !important;
    margin-left: 160px !important;
  }

  .mx-md-180 {
    margin-right: 180px !important;
    margin-left: 180px !important;
  }

  .mx-md-190 {
    margin-right: 190px !important;
    margin-left: 190px !important;
  }

  .mx-md-200 {
    margin-right: 200px !important;
    margin-left: 200px !important;
  }

  .mx-md-210 {
    margin-right: 210px !important;
    margin-left: 210px !important;
  }

  .mx-md-235 {
    margin-right: 235px !important;
    margin-left: 235px !important;
  }

  .mx-md-240 {
    margin-right: 240px !important;
    margin-left: 240px !important;
  }

  .mx-md-270 {
    margin-right: 270px !important;
    margin-left: 270px !important;
  }

  .mx-md-290 {
    margin-right: 290px !important;
    margin-left: 290px !important;
  }

  .mx-md-300 {
    margin-right: 300px !important;
    margin-left: 300px !important;
  }

  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-md-1 {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .my-md-2 {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }

  .my-md-3 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }

  .my-md-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .my-md-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  .my-md-6 {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }

  .my-md-7 {
    margin-top: 7px !important;
    margin-bottom: 7px !important;
  }

  .my-md-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .my-md-9 {
    margin-top: 9px !important;
    margin-bottom: 9px !important;
  }

  .my-md-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .my-md-11 {
    margin-top: 11px !important;
    margin-bottom: 11px !important;
  }

  .my-md-12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .my-md-13 {
    margin-top: 13px !important;
    margin-bottom: 13px !important;
  }

  .my-md-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }

  .my-md-17 {
    margin-top: 17px !important;
    margin-bottom: 17px !important;
  }

  .my-md-18 {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }

  .my-md-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .my-md-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }

  .my-md-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  .my-md-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }

  .my-md-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .my-md-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }

  .my-md-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }

  .my-md-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }

  .my-md-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }

  .my-md-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }

  .my-md-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }

  .my-md-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }

  .my-md-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .my-md-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }

  .my-md-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }

  .my-md-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .my-md-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }

  .my-md-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }

  .my-md-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }

  .my-md-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }

  .my-md-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }

  .my-md-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .my-md-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }

  .my-md-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }

  .my-md-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }

  .my-md-210 {
    margin-top: 210px !important;
    margin-bottom: 210px !important;
  }

  .my-md-235 {
    margin-top: 235px !important;
    margin-bottom: 235px !important;
  }

  .my-md-240 {
    margin-top: 240px !important;
    margin-bottom: 240px !important;
  }

  .my-md-270 {
    margin-top: 270px !important;
    margin-bottom: 270px !important;
  }

  .my-md-290 {
    margin-top: 290px !important;
    margin-bottom: 290px !important;
  }

  .my-md-300 {
    margin-top: 300px !important;
    margin-bottom: 300px !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

  .mt-md-1 {
    margin-top: 1px !important;
  }

  .mt-md-2 {
    margin-top: 2px !important;
  }

  .mt-md-3 {
    margin-top: 3px !important;
  }

  .mt-md-4 {
    margin-top: 4px !important;
  }

  .mt-md-5 {
    margin-top: 5px !important;
  }

  .mt-md-6 {
    margin-top: 6px !important;
  }

  .mt-md-7 {
    margin-top: 7px !important;
  }

  .mt-md-8 {
    margin-top: 8px !important;
  }

  .mt-md-9 {
    margin-top: 9px !important;
  }

  .mt-md-10 {
    margin-top: 10px !important;
  }

  .mt-md-11 {
    margin-top: 11px !important;
  }

  .mt-md-12 {
    margin-top: 12px !important;
  }

  .mt-md-13 {
    margin-top: 13px !important;
  }

  .mt-md-15 {
    margin-top: 15px !important;
  }

  .mt-md-17 {
    margin-top: 17px !important;
  }

  .mt-md-18 {
    margin-top: 18px !important;
  }

  .mt-md-20 {
    margin-top: 20px !important;
  }

  .mt-md-25 {
    margin-top: 25px !important;
  }

  .mt-md-30 {
    margin-top: 30px !important;
  }

  .mt-md-35 {
    margin-top: 35px !important;
  }

  .mt-md-40 {
    margin-top: 40px !important;
  }

  .mt-md-45 {
    margin-top: 45px !important;
  }

  .mt-md-50 {
    margin-top: 50px !important;
  }

  .mt-md-55 {
    margin-top: 55px !important;
  }

  .mt-md-60 {
    margin-top: 60px !important;
  }

  .mt-md-65 {
    margin-top: 65px !important;
  }

  .mt-md-70 {
    margin-top: 70px !important;
  }

  .mt-md-75 {
    margin-top: 75px !important;
  }

  .mt-md-80 {
    margin-top: 80px !important;
  }

  .mt-md-90 {
    margin-top: 90px !important;
  }

  .mt-md-95 {
    margin-top: 95px !important;
  }

  .mt-md-100 {
    margin-top: 100px !important;
  }

  .mt-md-110 {
    margin-top: 110px !important;
  }

  .mt-md-115 {
    margin-top: 115px !important;
  }

  .mt-md-120 {
    margin-top: 120px !important;
  }

  .mt-md-130 {
    margin-top: 130px !important;
  }

  .mt-md-150 {
    margin-top: 150px !important;
  }

  .mt-md-160 {
    margin-top: 160px !important;
  }

  .mt-md-180 {
    margin-top: 180px !important;
  }

  .mt-md-190 {
    margin-top: 190px !important;
  }

  .mt-md-200 {
    margin-top: 200px !important;
  }

  .mt-md-210 {
    margin-top: 210px !important;
  }

  .mt-md-235 {
    margin-top: 235px !important;
  }

  .mt-md-240 {
    margin-top: 240px !important;
  }

  .mt-md-270 {
    margin-top: 270px !important;
  }

  .mt-md-290 {
    margin-top: 290px !important;
  }

  .mt-md-300 {
    margin-top: 300px !important;
  }

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

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 1px !important;
  }

  .me-md-2 {
    margin-right: 2px !important;
  }

  .me-md-3 {
    margin-right: 3px !important;
  }

  .me-md-4 {
    margin-right: 4px !important;
  }

  .me-md-5 {
    margin-right: 5px !important;
  }

  .me-md-6 {
    margin-right: 6px !important;
  }

  .me-md-7 {
    margin-right: 7px !important;
  }

  .me-md-8 {
    margin-right: 8px !important;
  }

  .me-md-9 {
    margin-right: 9px !important;
  }

  .me-md-10 {
    margin-right: 10px !important;
  }

  .me-md-11 {
    margin-right: 11px !important;
  }

  .me-md-12 {
    margin-right: 12px !important;
  }

  .me-md-13 {
    margin-right: 13px !important;
  }

  .me-md-15 {
    margin-right: 15px !important;
  }

  .me-md-17 {
    margin-right: 17px !important;
  }

  .me-md-18 {
    margin-right: 18px !important;
  }

  .me-md-20 {
    margin-right: 20px !important;
  }

  .me-md-25 {
    margin-right: 25px !important;
  }

  .me-md-30 {
    margin-right: 30px !important;
  }

  .me-md-35 {
    margin-right: 35px !important;
  }

  .me-md-40 {
    margin-right: 40px !important;
  }

  .me-md-45 {
    margin-right: 45px !important;
  }

  .me-md-50 {
    margin-right: 50px !important;
  }

  .me-md-55 {
    margin-right: 55px !important;
  }

  .me-md-60 {
    margin-right: 60px !important;
  }

  .me-md-65 {
    margin-right: 65px !important;
  }

  .me-md-70 {
    margin-right: 70px !important;
  }

  .me-md-75 {
    margin-right: 75px !important;
  }

  .me-md-80 {
    margin-right: 80px !important;
  }

  .me-md-90 {
    margin-right: 90px !important;
  }

  .me-md-95 {
    margin-right: 95px !important;
  }

  .me-md-100 {
    margin-right: 100px !important;
  }

  .me-md-110 {
    margin-right: 110px !important;
  }

  .me-md-115 {
    margin-right: 115px !important;
  }

  .me-md-120 {
    margin-right: 120px !important;
  }

  .me-md-130 {
    margin-right: 130px !important;
  }

  .me-md-150 {
    margin-right: 150px !important;
  }

  .me-md-160 {
    margin-right: 160px !important;
  }

  .me-md-180 {
    margin-right: 180px !important;
  }

  .me-md-190 {
    margin-right: 190px !important;
  }

  .me-md-200 {
    margin-right: 200px !important;
  }

  .me-md-210 {
    margin-right: 210px !important;
  }

  .me-md-235 {
    margin-right: 235px !important;
  }

  .me-md-240 {
    margin-right: 240px !important;
  }

  .me-md-270 {
    margin-right: 270px !important;
  }

  .me-md-290 {
    margin-right: 290px !important;
  }

  .me-md-300 {
    margin-right: 300px !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

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

  .mb-md-1 {
    margin-bottom: 1px !important;
  }

  .mb-md-2 {
    margin-bottom: 2px !important;
  }

  .mb-md-3 {
    margin-bottom: 3px !important;
  }

  .mb-md-4 {
    margin-bottom: 4px !important;
  }

  .mb-md-5 {
    margin-bottom: 5px !important;
  }

  .mb-md-6 {
    margin-bottom: 6px !important;
  }

  .mb-md-7 {
    margin-bottom: 7px !important;
  }

  .mb-md-8 {
    margin-bottom: 8px !important;
  }

  .mb-md-9 {
    margin-bottom: 9px !important;
  }

  .mb-md-10 {
    margin-bottom: 10px !important;
  }

  .mb-md-11 {
    margin-bottom: 11px !important;
  }

  .mb-md-12 {
    margin-bottom: 12px !important;
  }

  .mb-md-13 {
    margin-bottom: 13px !important;
  }

  .mb-md-15 {
    margin-bottom: 15px !important;
  }

  .mb-md-17 {
    margin-bottom: 17px !important;
  }

  .mb-md-18 {
    margin-bottom: 18px !important;
  }

  .mb-md-20 {
    margin-bottom: 20px !important;
  }

  .mb-md-25 {
    margin-bottom: 25px !important;
  }

  .mb-md-30 {
    margin-bottom: 30px !important;
  }

  .mb-md-35 {
    margin-bottom: 35px !important;
  }

  .mb-md-40 {
    margin-bottom: 40px !important;
  }

  .mb-md-45 {
    margin-bottom: 45px !important;
  }

  .mb-md-50 {
    margin-bottom: 50px !important;
  }

  .mb-md-55 {
    margin-bottom: 55px !important;
  }

  .mb-md-60 {
    margin-bottom: 60px !important;
  }

  .mb-md-65 {
    margin-bottom: 65px !important;
  }

  .mb-md-70 {
    margin-bottom: 70px !important;
  }

  .mb-md-75 {
    margin-bottom: 75px !important;
  }

  .mb-md-80 {
    margin-bottom: 80px !important;
  }

  .mb-md-90 {
    margin-bottom: 90px !important;
  }

  .mb-md-95 {
    margin-bottom: 95px !important;
  }

  .mb-md-100 {
    margin-bottom: 100px !important;
  }

  .mb-md-110 {
    margin-bottom: 110px !important;
  }

  .mb-md-115 {
    margin-bottom: 115px !important;
  }

  .mb-md-120 {
    margin-bottom: 120px !important;
  }

  .mb-md-130 {
    margin-bottom: 130px !important;
  }

  .mb-md-150 {
    margin-bottom: 150px !important;
  }

  .mb-md-160 {
    margin-bottom: 160px !important;
  }

  .mb-md-180 {
    margin-bottom: 180px !important;
  }

  .mb-md-190 {
    margin-bottom: 190px !important;
  }

  .mb-md-200 {
    margin-bottom: 200px !important;
  }

  .mb-md-210 {
    margin-bottom: 210px !important;
  }

  .mb-md-235 {
    margin-bottom: 235px !important;
  }

  .mb-md-240 {
    margin-bottom: 240px !important;
  }

  .mb-md-270 {
    margin-bottom: 270px !important;
  }

  .mb-md-290 {
    margin-bottom: 290px !important;
  }

  .mb-md-300 {
    margin-bottom: 300px !important;
  }

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

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 1px !important;
  }

  .ms-md-2 {
    margin-left: 2px !important;
  }

  .ms-md-3 {
    margin-left: 3px !important;
  }

  .ms-md-4 {
    margin-left: 4px !important;
  }

  .ms-md-5 {
    margin-left: 5px !important;
  }

  .ms-md-6 {
    margin-left: 6px !important;
  }

  .ms-md-7 {
    margin-left: 7px !important;
  }

  .ms-md-8 {
    margin-left: 8px !important;
  }

  .ms-md-9 {
    margin-left: 9px !important;
  }

  .ms-md-10 {
    margin-left: 10px !important;
  }

  .ms-md-11 {
    margin-left: 11px !important;
  }

  .ms-md-12 {
    margin-left: 12px !important;
  }

  .ms-md-13 {
    margin-left: 13px !important;
  }

  .ms-md-15 {
    margin-left: 15px !important;
  }

  .ms-md-17 {
    margin-left: 17px !important;
  }

  .ms-md-18 {
    margin-left: 18px !important;
  }

  .ms-md-20 {
    margin-left: 20px !important;
  }

  .ms-md-25 {
    margin-left: 25px !important;
  }

  .ms-md-30 {
    margin-left: 30px !important;
  }

  .ms-md-35 {
    margin-left: 35px !important;
  }

  .ms-md-40 {
    margin-left: 40px !important;
  }

  .ms-md-45 {
    margin-left: 45px !important;
  }

  .ms-md-50 {
    margin-left: 50px !important;
  }

  .ms-md-55 {
    margin-left: 55px !important;
  }

  .ms-md-60 {
    margin-left: 60px !important;
  }

  .ms-md-65 {
    margin-left: 65px !important;
  }

  .ms-md-70 {
    margin-left: 70px !important;
  }

  .ms-md-75 {
    margin-left: 75px !important;
  }

  .ms-md-80 {
    margin-left: 80px !important;
  }

  .ms-md-90 {
    margin-left: 90px !important;
  }

  .ms-md-95 {
    margin-left: 95px !important;
  }

  .ms-md-100 {
    margin-left: 100px !important;
  }

  .ms-md-110 {
    margin-left: 110px !important;
  }

  .ms-md-115 {
    margin-left: 115px !important;
  }

  .ms-md-120 {
    margin-left: 120px !important;
  }

  .ms-md-130 {
    margin-left: 130px !important;
  }

  .ms-md-150 {
    margin-left: 150px !important;
  }

  .ms-md-160 {
    margin-left: 160px !important;
  }

  .ms-md-180 {
    margin-left: 180px !important;
  }

  .ms-md-190 {
    margin-left: 190px !important;
  }

  .ms-md-200 {
    margin-left: 200px !important;
  }

  .ms-md-210 {
    margin-left: 210px !important;
  }

  .ms-md-235 {
    margin-left: 235px !important;
  }

  .ms-md-240 {
    margin-left: 240px !important;
  }

  .ms-md-270 {
    margin-left: 270px !important;
  }

  .ms-md-290 {
    margin-left: 290px !important;
  }

  .ms-md-300 {
    margin-left: 300px !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

  .m-md-n1 {
    margin: -1px !important;
  }

  .m-md-n2 {
    margin: -2px !important;
  }

  .m-md-n3 {
    margin: -3px !important;
  }

  .m-md-n4 {
    margin: -4px !important;
  }

  .m-md-n5 {
    margin: -5px !important;
  }

  .m-md-n6 {
    margin: -6px !important;
  }

  .m-md-n7 {
    margin: -7px !important;
  }

  .m-md-n8 {
    margin: -8px !important;
  }

  .m-md-n9 {
    margin: -9px !important;
  }

  .m-md-n10 {
    margin: -10px !important;
  }

  .m-md-n11 {
    margin: -11px !important;
  }

  .m-md-n12 {
    margin: -12px !important;
  }

  .m-md-n13 {
    margin: -13px !important;
  }

  .m-md-n15 {
    margin: -15px !important;
  }

  .m-md-n17 {
    margin: -17px !important;
  }

  .m-md-n18 {
    margin: -18px !important;
  }

  .m-md-n20 {
    margin: -20px !important;
  }

  .m-md-n25 {
    margin: -25px !important;
  }

  .m-md-n30 {
    margin: -30px !important;
  }

  .m-md-n35 {
    margin: -35px !important;
  }

  .m-md-n40 {
    margin: -40px !important;
  }

  .m-md-n45 {
    margin: -45px !important;
  }

  .m-md-n50 {
    margin: -50px !important;
  }

  .m-md-n55 {
    margin: -55px !important;
  }

  .m-md-n60 {
    margin: -60px !important;
  }

  .m-md-n65 {
    margin: -65px !important;
  }

  .m-md-n70 {
    margin: -70px !important;
  }

  .m-md-n75 {
    margin: -75px !important;
  }

  .m-md-n80 {
    margin: -80px !important;
  }

  .m-md-n90 {
    margin: -90px !important;
  }

  .m-md-n95 {
    margin: -95px !important;
  }

  .m-md-n100 {
    margin: -100px !important;
  }

  .m-md-n110 {
    margin: -110px !important;
  }

  .m-md-n115 {
    margin: -115px !important;
  }

  .m-md-n120 {
    margin: -120px !important;
  }

  .m-md-n130 {
    margin: -130px !important;
  }

  .m-md-n150 {
    margin: -150px !important;
  }

  .m-md-n160 {
    margin: -160px !important;
  }

  .m-md-n180 {
    margin: -180px !important;
  }

  .m-md-n190 {
    margin: -190px !important;
  }

  .m-md-n200 {
    margin: -200px !important;
  }

  .m-md-n210 {
    margin: -210px !important;
  }

  .m-md-n235 {
    margin: -235px !important;
  }

  .m-md-n240 {
    margin: -240px !important;
  }

  .m-md-n270 {
    margin: -270px !important;
  }

  .m-md-n290 {
    margin: -290px !important;
  }

  .m-md-n300 {
    margin: -300px !important;
  }

  .mx-md-n1 {
    margin-right: -1px !important;
    margin-left: -1px !important;
  }

  .mx-md-n2 {
    margin-right: -2px !important;
    margin-left: -2px !important;
  }

  .mx-md-n3 {
    margin-right: -3px !important;
    margin-left: -3px !important;
  }

  .mx-md-n4 {
    margin-right: -4px !important;
    margin-left: -4px !important;
  }

  .mx-md-n5 {
    margin-right: -5px !important;
    margin-left: -5px !important;
  }

  .mx-md-n6 {
    margin-right: -6px !important;
    margin-left: -6px !important;
  }

  .mx-md-n7 {
    margin-right: -7px !important;
    margin-left: -7px !important;
  }

  .mx-md-n8 {
    margin-right: -8px !important;
    margin-left: -8px !important;
  }

  .mx-md-n9 {
    margin-right: -9px !important;
    margin-left: -9px !important;
  }

  .mx-md-n10 {
    margin-right: -10px !important;
    margin-left: -10px !important;
  }

  .mx-md-n11 {
    margin-right: -11px !important;
    margin-left: -11px !important;
  }

  .mx-md-n12 {
    margin-right: -12px !important;
    margin-left: -12px !important;
  }

  .mx-md-n13 {
    margin-right: -13px !important;
    margin-left: -13px !important;
  }

  .mx-md-n15 {
    margin-right: -15px !important;
    margin-left: -15px !important;
  }

  .mx-md-n17 {
    margin-right: -17px !important;
    margin-left: -17px !important;
  }

  .mx-md-n18 {
    margin-right: -18px !important;
    margin-left: -18px !important;
  }

  .mx-md-n20 {
    margin-right: -20px !important;
    margin-left: -20px !important;
  }

  .mx-md-n25 {
    margin-right: -25px !important;
    margin-left: -25px !important;
  }

  .mx-md-n30 {
    margin-right: -30px !important;
    margin-left: -30px !important;
  }

  .mx-md-n35 {
    margin-right: -35px !important;
    margin-left: -35px !important;
  }

  .mx-md-n40 {
    margin-right: -40px !important;
    margin-left: -40px !important;
  }

  .mx-md-n45 {
    margin-right: -45px !important;
    margin-left: -45px !important;
  }

  .mx-md-n50 {
    margin-right: -50px !important;
    margin-left: -50px !important;
  }

  .mx-md-n55 {
    margin-right: -55px !important;
    margin-left: -55px !important;
  }

  .mx-md-n60 {
    margin-right: -60px !important;
    margin-left: -60px !important;
  }

  .mx-md-n65 {
    margin-right: -65px !important;
    margin-left: -65px !important;
  }

  .mx-md-n70 {
    margin-right: -70px !important;
    margin-left: -70px !important;
  }

  .mx-md-n75 {
    margin-right: -75px !important;
    margin-left: -75px !important;
  }

  .mx-md-n80 {
    margin-right: -80px !important;
    margin-left: -80px !important;
  }

  .mx-md-n90 {
    margin-right: -90px !important;
    margin-left: -90px !important;
  }

  .mx-md-n95 {
    margin-right: -95px !important;
    margin-left: -95px !important;
  }

  .mx-md-n100 {
    margin-right: -100px !important;
    margin-left: -100px !important;
  }

  .mx-md-n110 {
    margin-right: -110px !important;
    margin-left: -110px !important;
  }

  .mx-md-n115 {
    margin-right: -115px !important;
    margin-left: -115px !important;
  }

  .mx-md-n120 {
    margin-right: -120px !important;
    margin-left: -120px !important;
  }

  .mx-md-n130 {
    margin-right: -130px !important;
    margin-left: -130px !important;
  }

  .mx-md-n150 {
    margin-right: -150px !important;
    margin-left: -150px !important;
  }

  .mx-md-n160 {
    margin-right: -160px !important;
    margin-left: -160px !important;
  }

  .mx-md-n180 {
    margin-right: -180px !important;
    margin-left: -180px !important;
  }

  .mx-md-n190 {
    margin-right: -190px !important;
    margin-left: -190px !important;
  }

  .mx-md-n200 {
    margin-right: -200px !important;
    margin-left: -200px !important;
  }

  .mx-md-n210 {
    margin-right: -210px !important;
    margin-left: -210px !important;
  }

  .mx-md-n235 {
    margin-right: -235px !important;
    margin-left: -235px !important;
  }

  .mx-md-n240 {
    margin-right: -240px !important;
    margin-left: -240px !important;
  }

  .mx-md-n270 {
    margin-right: -270px !important;
    margin-left: -270px !important;
  }

  .mx-md-n290 {
    margin-right: -290px !important;
    margin-left: -290px !important;
  }

  .mx-md-n300 {
    margin-right: -300px !important;
    margin-left: -300px !important;
  }

  .my-md-n1 {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .my-md-n2 {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
  }

  .my-md-n3 {
    margin-top: -3px !important;
    margin-bottom: -3px !important;
  }

  .my-md-n4 {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }

  .my-md-n5 {
    margin-top: -5px !important;
    margin-bottom: -5px !important;
  }

  .my-md-n6 {
    margin-top: -6px !important;
    margin-bottom: -6px !important;
  }

  .my-md-n7 {
    margin-top: -7px !important;
    margin-bottom: -7px !important;
  }

  .my-md-n8 {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }

  .my-md-n9 {
    margin-top: -9px !important;
    margin-bottom: -9px !important;
  }

  .my-md-n10 {
    margin-top: -10px !important;
    margin-bottom: -10px !important;
  }

  .my-md-n11 {
    margin-top: -11px !important;
    margin-bottom: -11px !important;
  }

  .my-md-n12 {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }

  .my-md-n13 {
    margin-top: -13px !important;
    margin-bottom: -13px !important;
  }

  .my-md-n15 {
    margin-top: -15px !important;
    margin-bottom: -15px !important;
  }

  .my-md-n17 {
    margin-top: -17px !important;
    margin-bottom: -17px !important;
  }

  .my-md-n18 {
    margin-top: -18px !important;
    margin-bottom: -18px !important;
  }

  .my-md-n20 {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }

  .my-md-n25 {
    margin-top: -25px !important;
    margin-bottom: -25px !important;
  }

  .my-md-n30 {
    margin-top: -30px !important;
    margin-bottom: -30px !important;
  }

  .my-md-n35 {
    margin-top: -35px !important;
    margin-bottom: -35px !important;
  }

  .my-md-n40 {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }

  .my-md-n45 {
    margin-top: -45px !important;
    margin-bottom: -45px !important;
  }

  .my-md-n50 {
    margin-top: -50px !important;
    margin-bottom: -50px !important;
  }

  .my-md-n55 {
    margin-top: -55px !important;
    margin-bottom: -55px !important;
  }

  .my-md-n60 {
    margin-top: -60px !important;
    margin-bottom: -60px !important;
  }

  .my-md-n65 {
    margin-top: -65px !important;
    margin-bottom: -65px !important;
  }

  .my-md-n70 {
    margin-top: -70px !important;
    margin-bottom: -70px !important;
  }

  .my-md-n75 {
    margin-top: -75px !important;
    margin-bottom: -75px !important;
  }

  .my-md-n80 {
    margin-top: -80px !important;
    margin-bottom: -80px !important;
  }

  .my-md-n90 {
    margin-top: -90px !important;
    margin-bottom: -90px !important;
  }

  .my-md-n95 {
    margin-top: -95px !important;
    margin-bottom: -95px !important;
  }

  .my-md-n100 {
    margin-top: -100px !important;
    margin-bottom: -100px !important;
  }

  .my-md-n110 {
    margin-top: -110px !important;
    margin-bottom: -110px !important;
  }

  .my-md-n115 {
    margin-top: -115px !important;
    margin-bottom: -115px !important;
  }

  .my-md-n120 {
    margin-top: -120px !important;
    margin-bottom: -120px !important;
  }

  .my-md-n130 {
    margin-top: -130px !important;
    margin-bottom: -130px !important;
  }

  .my-md-n150 {
    margin-top: -150px !important;
    margin-bottom: -150px !important;
  }

  .my-md-n160 {
    margin-top: -160px !important;
    margin-bottom: -160px !important;
  }

  .my-md-n180 {
    margin-top: -180px !important;
    margin-bottom: -180px !important;
  }

  .my-md-n190 {
    margin-top: -190px !important;
    margin-bottom: -190px !important;
  }

  .my-md-n200 {
    margin-top: -200px !important;
    margin-bottom: -200px !important;
  }

  .my-md-n210 {
    margin-top: -210px !important;
    margin-bottom: -210px !important;
  }

  .my-md-n235 {
    margin-top: -235px !important;
    margin-bottom: -235px !important;
  }

  .my-md-n240 {
    margin-top: -240px !important;
    margin-bottom: -240px !important;
  }

  .my-md-n270 {
    margin-top: -270px !important;
    margin-bottom: -270px !important;
  }

  .my-md-n290 {
    margin-top: -290px !important;
    margin-bottom: -290px !important;
  }

  .my-md-n300 {
    margin-top: -300px !important;
    margin-bottom: -300px !important;
  }

  .mt-md-n1 {
    margin-top: -1px !important;
  }

  .mt-md-n2 {
    margin-top: -2px !important;
  }

  .mt-md-n3 {
    margin-top: -3px !important;
  }

  .mt-md-n4 {
    margin-top: -4px !important;
  }

  .mt-md-n5 {
    margin-top: -5px !important;
  }

  .mt-md-n6 {
    margin-top: -6px !important;
  }

  .mt-md-n7 {
    margin-top: -7px !important;
  }

  .mt-md-n8 {
    margin-top: -8px !important;
  }

  .mt-md-n9 {
    margin-top: -9px !important;
  }

  .mt-md-n10 {
    margin-top: -10px !important;
  }

  .mt-md-n11 {
    margin-top: -11px !important;
  }

  .mt-md-n12 {
    margin-top: -12px !important;
  }

  .mt-md-n13 {
    margin-top: -13px !important;
  }

  .mt-md-n15 {
    margin-top: -15px !important;
  }

  .mt-md-n17 {
    margin-top: -17px !important;
  }

  .mt-md-n18 {
    margin-top: -18px !important;
  }

  .mt-md-n20 {
    margin-top: -20px !important;
  }

  .mt-md-n25 {
    margin-top: -25px !important;
  }

  .mt-md-n30 {
    margin-top: -30px !important;
  }

  .mt-md-n35 {
    margin-top: -35px !important;
  }

  .mt-md-n40 {
    margin-top: -40px !important;
  }

  .mt-md-n45 {
    margin-top: -45px !important;
  }

  .mt-md-n50 {
    margin-top: -50px !important;
  }

  .mt-md-n55 {
    margin-top: -55px !important;
  }

  .mt-md-n60 {
    margin-top: -60px !important;
  }

  .mt-md-n65 {
    margin-top: -65px !important;
  }

  .mt-md-n70 {
    margin-top: -70px !important;
  }

  .mt-md-n75 {
    margin-top: -75px !important;
  }

  .mt-md-n80 {
    margin-top: -80px !important;
  }

  .mt-md-n90 {
    margin-top: -90px !important;
  }

  .mt-md-n95 {
    margin-top: -95px !important;
  }

  .mt-md-n100 {
    margin-top: -100px !important;
  }

  .mt-md-n110 {
    margin-top: -110px !important;
  }

  .mt-md-n115 {
    margin-top: -115px !important;
  }

  .mt-md-n120 {
    margin-top: -120px !important;
  }

  .mt-md-n130 {
    margin-top: -130px !important;
  }

  .mt-md-n150 {
    margin-top: -150px !important;
  }

  .mt-md-n160 {
    margin-top: -160px !important;
  }

  .mt-md-n180 {
    margin-top: -180px !important;
  }

  .mt-md-n190 {
    margin-top: -190px !important;
  }

  .mt-md-n200 {
    margin-top: -200px !important;
  }

  .mt-md-n210 {
    margin-top: -210px !important;
  }

  .mt-md-n235 {
    margin-top: -235px !important;
  }

  .mt-md-n240 {
    margin-top: -240px !important;
  }

  .mt-md-n270 {
    margin-top: -270px !important;
  }

  .mt-md-n290 {
    margin-top: -290px !important;
  }

  .mt-md-n300 {
    margin-top: -300px !important;
  }

  .me-md-n1 {
    margin-right: -1px !important;
  }

  .me-md-n2 {
    margin-right: -2px !important;
  }

  .me-md-n3 {
    margin-right: -3px !important;
  }

  .me-md-n4 {
    margin-right: -4px !important;
  }

  .me-md-n5 {
    margin-right: -5px !important;
  }

  .me-md-n6 {
    margin-right: -6px !important;
  }

  .me-md-n7 {
    margin-right: -7px !important;
  }

  .me-md-n8 {
    margin-right: -8px !important;
  }

  .me-md-n9 {
    margin-right: -9px !important;
  }

  .me-md-n10 {
    margin-right: -10px !important;
  }

  .me-md-n11 {
    margin-right: -11px !important;
  }

  .me-md-n12 {
    margin-right: -12px !important;
  }

  .me-md-n13 {
    margin-right: -13px !important;
  }

  .me-md-n15 {
    margin-right: -15px !important;
  }

  .me-md-n17 {
    margin-right: -17px !important;
  }

  .me-md-n18 {
    margin-right: -18px !important;
  }

  .me-md-n20 {
    margin-right: -20px !important;
  }

  .me-md-n25 {
    margin-right: -25px !important;
  }

  .me-md-n30 {
    margin-right: -30px !important;
  }

  .me-md-n35 {
    margin-right: -35px !important;
  }

  .me-md-n40 {
    margin-right: -40px !important;
  }

  .me-md-n45 {
    margin-right: -45px !important;
  }

  .me-md-n50 {
    margin-right: -50px !important;
  }

  .me-md-n55 {
    margin-right: -55px !important;
  }

  .me-md-n60 {
    margin-right: -60px !important;
  }

  .me-md-n65 {
    margin-right: -65px !important;
  }

  .me-md-n70 {
    margin-right: -70px !important;
  }

  .me-md-n75 {
    margin-right: -75px !important;
  }

  .me-md-n80 {
    margin-right: -80px !important;
  }

  .me-md-n90 {
    margin-right: -90px !important;
  }

  .me-md-n95 {
    margin-right: -95px !important;
  }

  .me-md-n100 {
    margin-right: -100px !important;
  }

  .me-md-n110 {
    margin-right: -110px !important;
  }

  .me-md-n115 {
    margin-right: -115px !important;
  }

  .me-md-n120 {
    margin-right: -120px !important;
  }

  .me-md-n130 {
    margin-right: -130px !important;
  }

  .me-md-n150 {
    margin-right: -150px !important;
  }

  .me-md-n160 {
    margin-right: -160px !important;
  }

  .me-md-n180 {
    margin-right: -180px !important;
  }

  .me-md-n190 {
    margin-right: -190px !important;
  }

  .me-md-n200 {
    margin-right: -200px !important;
  }

  .me-md-n210 {
    margin-right: -210px !important;
  }

  .me-md-n235 {
    margin-right: -235px !important;
  }

  .me-md-n240 {
    margin-right: -240px !important;
  }

  .me-md-n270 {
    margin-right: -270px !important;
  }

  .me-md-n290 {
    margin-right: -290px !important;
  }

  .me-md-n300 {
    margin-right: -300px !important;
  }

  .mb-md-n1 {
    margin-bottom: -1px !important;
  }

  .mb-md-n2 {
    margin-bottom: -2px !important;
  }

  .mb-md-n3 {
    margin-bottom: -3px !important;
  }

  .mb-md-n4 {
    margin-bottom: -4px !important;
  }

  .mb-md-n5 {
    margin-bottom: -5px !important;
  }

  .mb-md-n6 {
    margin-bottom: -6px !important;
  }

  .mb-md-n7 {
    margin-bottom: -7px !important;
  }

  .mb-md-n8 {
    margin-bottom: -8px !important;
  }

  .mb-md-n9 {
    margin-bottom: -9px !important;
  }

  .mb-md-n10 {
    margin-bottom: -10px !important;
  }

  .mb-md-n11 {
    margin-bottom: -11px !important;
  }

  .mb-md-n12 {
    margin-bottom: -12px !important;
  }

  .mb-md-n13 {
    margin-bottom: -13px !important;
  }

  .mb-md-n15 {
    margin-bottom: -15px !important;
  }

  .mb-md-n17 {
    margin-bottom: -17px !important;
  }

  .mb-md-n18 {
    margin-bottom: -18px !important;
  }

  .mb-md-n20 {
    margin-bottom: -20px !important;
  }

  .mb-md-n25 {
    margin-bottom: -25px !important;
  }

  .mb-md-n30 {
    margin-bottom: -30px !important;
  }

  .mb-md-n35 {
    margin-bottom: -35px !important;
  }

  .mb-md-n40 {
    margin-bottom: -40px !important;
  }

  .mb-md-n45 {
    margin-bottom: -45px !important;
  }

  .mb-md-n50 {
    margin-bottom: -50px !important;
  }

  .mb-md-n55 {
    margin-bottom: -55px !important;
  }

  .mb-md-n60 {
    margin-bottom: -60px !important;
  }

  .mb-md-n65 {
    margin-bottom: -65px !important;
  }

  .mb-md-n70 {
    margin-bottom: -70px !important;
  }

  .mb-md-n75 {
    margin-bottom: -75px !important;
  }

  .mb-md-n80 {
    margin-bottom: -80px !important;
  }

  .mb-md-n90 {
    margin-bottom: -90px !important;
  }

  .mb-md-n95 {
    margin-bottom: -95px !important;
  }

  .mb-md-n100 {
    margin-bottom: -100px !important;
  }

  .mb-md-n110 {
    margin-bottom: -110px !important;
  }

  .mb-md-n115 {
    margin-bottom: -115px !important;
  }

  .mb-md-n120 {
    margin-bottom: -120px !important;
  }

  .mb-md-n130 {
    margin-bottom: -130px !important;
  }

  .mb-md-n150 {
    margin-bottom: -150px !important;
  }

  .mb-md-n160 {
    margin-bottom: -160px !important;
  }

  .mb-md-n180 {
    margin-bottom: -180px !important;
  }

  .mb-md-n190 {
    margin-bottom: -190px !important;
  }

  .mb-md-n200 {
    margin-bottom: -200px !important;
  }

  .mb-md-n210 {
    margin-bottom: -210px !important;
  }

  .mb-md-n235 {
    margin-bottom: -235px !important;
  }

  .mb-md-n240 {
    margin-bottom: -240px !important;
  }

  .mb-md-n270 {
    margin-bottom: -270px !important;
  }

  .mb-md-n290 {
    margin-bottom: -290px !important;
  }

  .mb-md-n300 {
    margin-bottom: -300px !important;
  }

  .ms-md-n1 {
    margin-left: -1px !important;
  }

  .ms-md-n2 {
    margin-left: -2px !important;
  }

  .ms-md-n3 {
    margin-left: -3px !important;
  }

  .ms-md-n4 {
    margin-left: -4px !important;
  }

  .ms-md-n5 {
    margin-left: -5px !important;
  }

  .ms-md-n6 {
    margin-left: -6px !important;
  }

  .ms-md-n7 {
    margin-left: -7px !important;
  }

  .ms-md-n8 {
    margin-left: -8px !important;
  }

  .ms-md-n9 {
    margin-left: -9px !important;
  }

  .ms-md-n10 {
    margin-left: -10px !important;
  }

  .ms-md-n11 {
    margin-left: -11px !important;
  }

  .ms-md-n12 {
    margin-left: -12px !important;
  }

  .ms-md-n13 {
    margin-left: -13px !important;
  }

  .ms-md-n15 {
    margin-left: -15px !important;
  }

  .ms-md-n17 {
    margin-left: -17px !important;
  }

  .ms-md-n18 {
    margin-left: -18px !important;
  }

  .ms-md-n20 {
    margin-left: -20px !important;
  }

  .ms-md-n25 {
    margin-left: -25px !important;
  }

  .ms-md-n30 {
    margin-left: -30px !important;
  }

  .ms-md-n35 {
    margin-left: -35px !important;
  }

  .ms-md-n40 {
    margin-left: -40px !important;
  }

  .ms-md-n45 {
    margin-left: -45px !important;
  }

  .ms-md-n50 {
    margin-left: -50px !important;
  }

  .ms-md-n55 {
    margin-left: -55px !important;
  }

  .ms-md-n60 {
    margin-left: -60px !important;
  }

  .ms-md-n65 {
    margin-left: -65px !important;
  }

  .ms-md-n70 {
    margin-left: -70px !important;
  }

  .ms-md-n75 {
    margin-left: -75px !important;
  }

  .ms-md-n80 {
    margin-left: -80px !important;
  }

  .ms-md-n90 {
    margin-left: -90px !important;
  }

  .ms-md-n95 {
    margin-left: -95px !important;
  }

  .ms-md-n100 {
    margin-left: -100px !important;
  }

  .ms-md-n110 {
    margin-left: -110px !important;
  }

  .ms-md-n115 {
    margin-left: -115px !important;
  }

  .ms-md-n120 {
    margin-left: -120px !important;
  }

  .ms-md-n130 {
    margin-left: -130px !important;
  }

  .ms-md-n150 {
    margin-left: -150px !important;
  }

  .ms-md-n160 {
    margin-left: -160px !important;
  }

  .ms-md-n180 {
    margin-left: -180px !important;
  }

  .ms-md-n190 {
    margin-left: -190px !important;
  }

  .ms-md-n200 {
    margin-left: -200px !important;
  }

  .ms-md-n210 {
    margin-left: -210px !important;
  }

  .ms-md-n235 {
    margin-left: -235px !important;
  }

  .ms-md-n240 {
    margin-left: -240px !important;
  }

  .ms-md-n270 {
    margin-left: -270px !important;
  }

  .ms-md-n290 {
    margin-left: -290px !important;
  }

  .ms-md-n300 {
    margin-left: -300px !important;
  }

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

  .p-md-1 {
    padding: 1px !important;
  }

  .p-md-2 {
    padding: 2px !important;
  }

  .p-md-3 {
    padding: 3px !important;
  }

  .p-md-4 {
    padding: 4px !important;
  }

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

  .p-md-6 {
    padding: 6px !important;
  }

  .p-md-7 {
    padding: 7px !important;
  }

  .p-md-8 {
    padding: 8px !important;
  }

  .p-md-9 {
    padding: 9px !important;
  }

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

  .p-md-11 {
    padding: 11px !important;
  }

  .p-md-12 {
    padding: 12px !important;
  }

  .p-md-13 {
    padding: 13px !important;
  }

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

  .p-md-17 {
    padding: 17px !important;
  }

  .p-md-18 {
    padding: 18px !important;
  }

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

  .p-md-25 {
    padding: 25px !important;
  }

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

  .p-md-35 {
    padding: 35px !important;
  }

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

  .p-md-45 {
    padding: 45px !important;
  }

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

  .p-md-55 {
    padding: 55px !important;
  }

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

  .p-md-65 {
    padding: 65px !important;
  }

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

  .p-md-75 {
    padding: 75px !important;
  }

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

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

  .p-md-95 {
    padding: 95px !important;
  }

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

  .p-md-110 {
    padding: 110px !important;
  }

  .p-md-115 {
    padding: 115px !important;
  }

  .p-md-120 {
    padding: 120px !important;
  }

  .p-md-130 {
    padding: 130px !important;
  }

  .p-md-150 {
    padding: 150px !important;
  }

  .p-md-160 {
    padding: 160px !important;
  }

  .p-md-180 {
    padding: 180px !important;
  }

  .p-md-190 {
    padding: 190px !important;
  }

  .p-md-200 {
    padding: 200px !important;
  }

  .p-md-210 {
    padding: 210px !important;
  }

  .p-md-235 {
    padding: 235px !important;
  }

  .p-md-240 {
    padding: 240px !important;
  }

  .p-md-270 {
    padding: 270px !important;
  }

  .p-md-290 {
    padding: 290px !important;
  }

  .p-md-300 {
    padding: 300px !important;
  }

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

  .px-md-1 {
    padding-right: 1px !important;
    padding-left: 1px !important;
  }

  .px-md-2 {
    padding-right: 2px !important;
    padding-left: 2px !important;
  }

  .px-md-3 {
    padding-right: 3px !important;
    padding-left: 3px !important;
  }

  .px-md-4 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

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

  .px-md-6 {
    padding-right: 6px !important;
    padding-left: 6px !important;
  }

  .px-md-7 {
    padding-right: 7px !important;
    padding-left: 7px !important;
  }

  .px-md-8 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .px-md-9 {
    padding-right: 9px !important;
    padding-left: 9px !important;
  }

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

  .px-md-11 {
    padding-right: 11px !important;
    padding-left: 11px !important;
  }

  .px-md-12 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .px-md-13 {
    padding-right: 13px !important;
    padding-left: 13px !important;
  }

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

  .px-md-17 {
    padding-right: 17px !important;
    padding-left: 17px !important;
  }

  .px-md-18 {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

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

  .px-md-25 {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }

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

  .px-md-35 {
    padding-right: 35px !important;
    padding-left: 35px !important;
  }

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

  .px-md-45 {
    padding-right: 45px !important;
    padding-left: 45px !important;
  }

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

  .px-md-55 {
    padding-right: 55px !important;
    padding-left: 55px !important;
  }

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

  .px-md-65 {
    padding-right: 65px !important;
    padding-left: 65px !important;
  }

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

  .px-md-75 {
    padding-right: 75px !important;
    padding-left: 75px !important;
  }

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

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

  .px-md-95 {
    padding-right: 95px !important;
    padding-left: 95px !important;
  }

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

  .px-md-110 {
    padding-right: 110px !important;
    padding-left: 110px !important;
  }

  .px-md-115 {
    padding-right: 115px !important;
    padding-left: 115px !important;
  }

  .px-md-120 {
    padding-right: 120px !important;
    padding-left: 120px !important;
  }

  .px-md-130 {
    padding-right: 130px !important;
    padding-left: 130px !important;
  }

  .px-md-150 {
    padding-right: 150px !important;
    padding-left: 150px !important;
  }

  .px-md-160 {
    padding-right: 160px !important;
    padding-left: 160px !important;
  }

  .px-md-180 {
    padding-right: 180px !important;
    padding-left: 180px !important;
  }

  .px-md-190 {
    padding-right: 190px !important;
    padding-left: 190px !important;
  }

  .px-md-200 {
    padding-right: 200px !important;
    padding-left: 200px !important;
  }

  .px-md-210 {
    padding-right: 210px !important;
    padding-left: 210px !important;
  }

  .px-md-235 {
    padding-right: 235px !important;
    padding-left: 235px !important;
  }

  .px-md-240 {
    padding-right: 240px !important;
    padding-left: 240px !important;
  }

  .px-md-270 {
    padding-right: 270px !important;
    padding-left: 270px !important;
  }

  .px-md-290 {
    padding-right: 290px !important;
    padding-left: 290px !important;
  }

  .px-md-300 {
    padding-right: 300px !important;
    padding-left: 300px !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .py-md-2 {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .py-md-3 {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }

  .py-md-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .py-md-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .py-md-6 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  .py-md-7 {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }

  .py-md-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .py-md-9 {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }

  .py-md-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .py-md-11 {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
  }

  .py-md-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .py-md-13 {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }

  .py-md-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  .py-md-17 {
    padding-top: 17px !important;
    padding-bottom: 17px !important;
  }

  .py-md-18 {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .py-md-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .py-md-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  .py-md-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .py-md-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .py-md-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .py-md-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }

  .py-md-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .py-md-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .py-md-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .py-md-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }

  .py-md-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .py-md-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }

  .py-md-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .py-md-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }

  .py-md-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }

  .py-md-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .py-md-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }

  .py-md-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }

  .py-md-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }

  .py-md-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }

  .py-md-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }

  .py-md-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }

  .py-md-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }

  .py-md-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }

  .py-md-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }

  .py-md-210 {
    padding-top: 210px !important;
    padding-bottom: 210px !important;
  }

  .py-md-235 {
    padding-top: 235px !important;
    padding-bottom: 235px !important;
  }

  .py-md-240 {
    padding-top: 240px !important;
    padding-bottom: 240px !important;
  }

  .py-md-270 {
    padding-top: 270px !important;
    padding-bottom: 270px !important;
  }

  .py-md-290 {
    padding-top: 290px !important;
    padding-bottom: 290px !important;
  }

  .py-md-300 {
    padding-top: 300px !important;
    padding-bottom: 300px !important;
  }

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

  .pt-md-1 {
    padding-top: 1px !important;
  }

  .pt-md-2 {
    padding-top: 2px !important;
  }

  .pt-md-3 {
    padding-top: 3px !important;
  }

  .pt-md-4 {
    padding-top: 4px !important;
  }

  .pt-md-5 {
    padding-top: 5px !important;
  }

  .pt-md-6 {
    padding-top: 6px !important;
  }

  .pt-md-7 {
    padding-top: 7px !important;
  }

  .pt-md-8 {
    padding-top: 8px !important;
  }

  .pt-md-9 {
    padding-top: 9px !important;
  }

  .pt-md-10 {
    padding-top: 10px !important;
  }

  .pt-md-11 {
    padding-top: 11px !important;
  }

  .pt-md-12 {
    padding-top: 12px !important;
  }

  .pt-md-13 {
    padding-top: 13px !important;
  }

  .pt-md-15 {
    padding-top: 15px !important;
  }

  .pt-md-17 {
    padding-top: 17px !important;
  }

  .pt-md-18 {
    padding-top: 18px !important;
  }

  .pt-md-20 {
    padding-top: 20px !important;
  }

  .pt-md-25 {
    padding-top: 25px !important;
  }

  .pt-md-30 {
    padding-top: 30px !important;
  }

  .pt-md-35 {
    padding-top: 35px !important;
  }

  .pt-md-40 {
    padding-top: 40px !important;
  }

  .pt-md-45 {
    padding-top: 45px !important;
  }

  .pt-md-50 {
    padding-top: 50px !important;
  }

  .pt-md-55 {
    padding-top: 55px !important;
  }

  .pt-md-60 {
    padding-top: 60px !important;
  }

  .pt-md-65 {
    padding-top: 65px !important;
  }

  .pt-md-70 {
    padding-top: 70px !important;
  }

  .pt-md-75 {
    padding-top: 75px !important;
  }

  .pt-md-80 {
    padding-top: 80px !important;
  }

  .pt-md-90 {
    padding-top: 90px !important;
  }

  .pt-md-95 {
    padding-top: 95px !important;
  }

  .pt-md-100 {
    padding-top: 100px !important;
  }

  .pt-md-110 {
    padding-top: 110px !important;
  }

  .pt-md-115 {
    padding-top: 115px !important;
  }

  .pt-md-120 {
    padding-top: 120px !important;
  }

  .pt-md-130 {
    padding-top: 130px !important;
  }

  .pt-md-150 {
    padding-top: 150px !important;
  }

  .pt-md-160 {
    padding-top: 160px !important;
  }

  .pt-md-180 {
    padding-top: 180px !important;
  }

  .pt-md-190 {
    padding-top: 190px !important;
  }

  .pt-md-200 {
    padding-top: 200px !important;
  }

  .pt-md-210 {
    padding-top: 210px !important;
  }

  .pt-md-235 {
    padding-top: 235px !important;
  }

  .pt-md-240 {
    padding-top: 240px !important;
  }

  .pt-md-270 {
    padding-top: 270px !important;
  }

  .pt-md-290 {
    padding-top: 290px !important;
  }

  .pt-md-300 {
    padding-top: 300px !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 1px !important;
  }

  .pe-md-2 {
    padding-right: 2px !important;
  }

  .pe-md-3 {
    padding-right: 3px !important;
  }

  .pe-md-4 {
    padding-right: 4px !important;
  }

  .pe-md-5 {
    padding-right: 5px !important;
  }

  .pe-md-6 {
    padding-right: 6px !important;
  }

  .pe-md-7 {
    padding-right: 7px !important;
  }

  .pe-md-8 {
    padding-right: 8px !important;
  }

  .pe-md-9 {
    padding-right: 9px !important;
  }

  .pe-md-10 {
    padding-right: 10px !important;
  }

  .pe-md-11 {
    padding-right: 11px !important;
  }

  .pe-md-12 {
    padding-right: 12px !important;
  }

  .pe-md-13 {
    padding-right: 13px !important;
  }

  .pe-md-15 {
    padding-right: 15px !important;
  }

  .pe-md-17 {
    padding-right: 17px !important;
  }

  .pe-md-18 {
    padding-right: 18px !important;
  }

  .pe-md-20 {
    padding-right: 20px !important;
  }

  .pe-md-25 {
    padding-right: 25px !important;
  }

  .pe-md-30 {
    padding-right: 30px !important;
  }

  .pe-md-35 {
    padding-right: 35px !important;
  }

  .pe-md-40 {
    padding-right: 40px !important;
  }

  .pe-md-45 {
    padding-right: 45px !important;
  }

  .pe-md-50 {
    padding-right: 50px !important;
  }

  .pe-md-55 {
    padding-right: 55px !important;
  }

  .pe-md-60 {
    padding-right: 60px !important;
  }

  .pe-md-65 {
    padding-right: 65px !important;
  }

  .pe-md-70 {
    padding-right: 70px !important;
  }

  .pe-md-75 {
    padding-right: 75px !important;
  }

  .pe-md-80 {
    padding-right: 80px !important;
  }

  .pe-md-90 {
    padding-right: 90px !important;
  }

  .pe-md-95 {
    padding-right: 95px !important;
  }

  .pe-md-100 {
    padding-right: 100px !important;
  }

  .pe-md-110 {
    padding-right: 110px !important;
  }

  .pe-md-115 {
    padding-right: 115px !important;
  }

  .pe-md-120 {
    padding-right: 120px !important;
  }

  .pe-md-130 {
    padding-right: 130px !important;
  }

  .pe-md-150 {
    padding-right: 150px !important;
  }

  .pe-md-160 {
    padding-right: 160px !important;
  }

  .pe-md-180 {
    padding-right: 180px !important;
  }

  .pe-md-190 {
    padding-right: 190px !important;
  }

  .pe-md-200 {
    padding-right: 200px !important;
  }

  .pe-md-210 {
    padding-right: 210px !important;
  }

  .pe-md-235 {
    padding-right: 235px !important;
  }

  .pe-md-240 {
    padding-right: 240px !important;
  }

  .pe-md-270 {
    padding-right: 270px !important;
  }

  .pe-md-290 {
    padding-right: 290px !important;
  }

  .pe-md-300 {
    padding-right: 300px !important;
  }

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

  .pb-md-1 {
    padding-bottom: 1px !important;
  }

  .pb-md-2 {
    padding-bottom: 2px !important;
  }

  .pb-md-3 {
    padding-bottom: 3px !important;
  }

  .pb-md-4 {
    padding-bottom: 4px !important;
  }

  .pb-md-5 {
    padding-bottom: 5px !important;
  }

  .pb-md-6 {
    padding-bottom: 6px !important;
  }

  .pb-md-7 {
    padding-bottom: 7px !important;
  }

  .pb-md-8 {
    padding-bottom: 8px !important;
  }

  .pb-md-9 {
    padding-bottom: 9px !important;
  }

  .pb-md-10 {
    padding-bottom: 10px !important;
  }

  .pb-md-11 {
    padding-bottom: 11px !important;
  }

  .pb-md-12 {
    padding-bottom: 12px !important;
  }

  .pb-md-13 {
    padding-bottom: 13px !important;
  }

  .pb-md-15 {
    padding-bottom: 15px !important;
  }

  .pb-md-17 {
    padding-bottom: 17px !important;
  }

  .pb-md-18 {
    padding-bottom: 18px !important;
  }

  .pb-md-20 {
    padding-bottom: 20px !important;
  }

  .pb-md-25 {
    padding-bottom: 25px !important;
  }

  .pb-md-30 {
    padding-bottom: 30px !important;
  }

  .pb-md-35 {
    padding-bottom: 35px !important;
  }

  .pb-md-40 {
    padding-bottom: 40px !important;
  }

  .pb-md-45 {
    padding-bottom: 45px !important;
  }

  .pb-md-50 {
    padding-bottom: 50px !important;
  }

  .pb-md-55 {
    padding-bottom: 55px !important;
  }

  .pb-md-60 {
    padding-bottom: 60px !important;
  }

  .pb-md-65 {
    padding-bottom: 65px !important;
  }

  .pb-md-70 {
    padding-bottom: 70px !important;
  }

  .pb-md-75 {
    padding-bottom: 75px !important;
  }

  .pb-md-80 {
    padding-bottom: 80px !important;
  }

  .pb-md-90 {
    padding-bottom: 90px !important;
  }

  .pb-md-95 {
    padding-bottom: 95px !important;
  }

  .pb-md-100 {
    padding-bottom: 100px !important;
  }

  .pb-md-110 {
    padding-bottom: 110px !important;
  }

  .pb-md-115 {
    padding-bottom: 115px !important;
  }

  .pb-md-120 {
    padding-bottom: 120px !important;
  }

  .pb-md-130 {
    padding-bottom: 130px !important;
  }

  .pb-md-150 {
    padding-bottom: 150px !important;
  }

  .pb-md-160 {
    padding-bottom: 160px !important;
  }

  .pb-md-180 {
    padding-bottom: 180px !important;
  }

  .pb-md-190 {
    padding-bottom: 190px !important;
  }

  .pb-md-200 {
    padding-bottom: 200px !important;
  }

  .pb-md-210 {
    padding-bottom: 210px !important;
  }

  .pb-md-235 {
    padding-bottom: 235px !important;
  }

  .pb-md-240 {
    padding-bottom: 240px !important;
  }

  .pb-md-270 {
    padding-bottom: 270px !important;
  }

  .pb-md-290 {
    padding-bottom: 290px !important;
  }

  .pb-md-300 {
    padding-bottom: 300px !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 1px !important;
  }

  .ps-md-2 {
    padding-left: 2px !important;
  }

  .ps-md-3 {
    padding-left: 3px !important;
  }

  .ps-md-4 {
    padding-left: 4px !important;
  }

  .ps-md-5 {
    padding-left: 5px !important;
  }

  .ps-md-6 {
    padding-left: 6px !important;
  }

  .ps-md-7 {
    padding-left: 7px !important;
  }

  .ps-md-8 {
    padding-left: 8px !important;
  }

  .ps-md-9 {
    padding-left: 9px !important;
  }

  .ps-md-10 {
    padding-left: 10px !important;
  }

  .ps-md-11 {
    padding-left: 11px !important;
  }

  .ps-md-12 {
    padding-left: 12px !important;
  }

  .ps-md-13 {
    padding-left: 13px !important;
  }

  .ps-md-15 {
    padding-left: 15px !important;
  }

  .ps-md-17 {
    padding-left: 17px !important;
  }

  .ps-md-18 {
    padding-left: 18px !important;
  }

  .ps-md-20 {
    padding-left: 20px !important;
  }

  .ps-md-25 {
    padding-left: 25px !important;
  }

  .ps-md-30 {
    padding-left: 30px !important;
  }

  .ps-md-35 {
    padding-left: 35px !important;
  }

  .ps-md-40 {
    padding-left: 40px !important;
  }

  .ps-md-45 {
    padding-left: 45px !important;
  }

  .ps-md-50 {
    padding-left: 50px !important;
  }

  .ps-md-55 {
    padding-left: 55px !important;
  }

  .ps-md-60 {
    padding-left: 60px !important;
  }

  .ps-md-65 {
    padding-left: 65px !important;
  }

  .ps-md-70 {
    padding-left: 70px !important;
  }

  .ps-md-75 {
    padding-left: 75px !important;
  }

  .ps-md-80 {
    padding-left: 80px !important;
  }

  .ps-md-90 {
    padding-left: 90px !important;
  }

  .ps-md-95 {
    padding-left: 95px !important;
  }

  .ps-md-100 {
    padding-left: 100px !important;
  }

  .ps-md-110 {
    padding-left: 110px !important;
  }

  .ps-md-115 {
    padding-left: 115px !important;
  }

  .ps-md-120 {
    padding-left: 120px !important;
  }

  .ps-md-130 {
    padding-left: 130px !important;
  }

  .ps-md-150 {
    padding-left: 150px !important;
  }

  .ps-md-160 {
    padding-left: 160px !important;
  }

  .ps-md-180 {
    padding-left: 180px !important;
  }

  .ps-md-190 {
    padding-left: 190px !important;
  }

  .ps-md-200 {
    padding-left: 200px !important;
  }

  .ps-md-210 {
    padding-left: 210px !important;
  }

  .ps-md-235 {
    padding-left: 235px !important;
  }

  .ps-md-240 {
    padding-left: 240px !important;
  }

  .ps-md-270 {
    padding-left: 270px !important;
  }

  .ps-md-290 {
    padding-left: 290px !important;
  }

  .ps-md-300 {
    padding-left: 300px !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

  .text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 1024px) {
  .float-lg-start {
    float: left !important;
  }

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

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

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

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

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

  .d-lg-grid {
    display: grid !important;
  }

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

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

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

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

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

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

  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

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

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

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

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

  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-lg-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }

  .flex-lg-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }

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

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

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

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 1px !important;
  }

  .gap-lg-2 {
    gap: 2px !important;
  }

  .gap-lg-3 {
    gap: 3px !important;
  }

  .gap-lg-4 {
    gap: 4px !important;
  }

  .gap-lg-5 {
    gap: 5px !important;
  }

  .gap-lg-6 {
    gap: 6px !important;
  }

  .gap-lg-7 {
    gap: 7px !important;
  }

  .gap-lg-8 {
    gap: 8px !important;
  }

  .gap-lg-9 {
    gap: 9px !important;
  }

  .gap-lg-10 {
    gap: 10px !important;
  }

  .gap-lg-11 {
    gap: 11px !important;
  }

  .gap-lg-12 {
    gap: 12px !important;
  }

  .gap-lg-13 {
    gap: 13px !important;
  }

  .gap-lg-15 {
    gap: 15px !important;
  }

  .gap-lg-17 {
    gap: 17px !important;
  }

  .gap-lg-18 {
    gap: 18px !important;
  }

  .gap-lg-20 {
    gap: 20px !important;
  }

  .gap-lg-25 {
    gap: 25px !important;
  }

  .gap-lg-30 {
    gap: 30px !important;
  }

  .gap-lg-35 {
    gap: 35px !important;
  }

  .gap-lg-40 {
    gap: 40px !important;
  }

  .gap-lg-45 {
    gap: 45px !important;
  }

  .gap-lg-50 {
    gap: 50px !important;
  }

  .gap-lg-55 {
    gap: 55px !important;
  }

  .gap-lg-60 {
    gap: 60px !important;
  }

  .gap-lg-65 {
    gap: 65px !important;
  }

  .gap-lg-70 {
    gap: 70px !important;
  }

  .gap-lg-75 {
    gap: 75px !important;
  }

  .gap-lg-80 {
    gap: 80px !important;
  }

  .gap-lg-90 {
    gap: 90px !important;
  }

  .gap-lg-95 {
    gap: 95px !important;
  }

  .gap-lg-100 {
    gap: 100px !important;
  }

  .gap-lg-110 {
    gap: 110px !important;
  }

  .gap-lg-115 {
    gap: 115px !important;
  }

  .gap-lg-120 {
    gap: 120px !important;
  }

  .gap-lg-130 {
    gap: 130px !important;
  }

  .gap-lg-150 {
    gap: 150px !important;
  }

  .gap-lg-160 {
    gap: 160px !important;
  }

  .gap-lg-180 {
    gap: 180px !important;
  }

  .gap-lg-190 {
    gap: 190px !important;
  }

  .gap-lg-200 {
    gap: 200px !important;
  }

  .gap-lg-210 {
    gap: 210px !important;
  }

  .gap-lg-235 {
    gap: 235px !important;
  }

  .gap-lg-240 {
    gap: 240px !important;
  }

  .gap-lg-270 {
    gap: 270px !important;
  }

  .gap-lg-290 {
    gap: 290px !important;
  }

  .gap-lg-300 {
    gap: 300px !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-lg-first {
    -webkit-box-ordinal-group: 0 !important;
    -webkit-order: -1 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-lg-0 {
    -webkit-box-ordinal-group: 1 !important;
    -webkit-order: 0 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-lg-1 {
    -webkit-box-ordinal-group: 2 !important;
    -webkit-order: 1 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-lg-2 {
    -webkit-box-ordinal-group: 3 !important;
    -webkit-order: 2 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-lg-3 {
    -webkit-box-ordinal-group: 4 !important;
    -webkit-order: 3 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-lg-4 {
    -webkit-box-ordinal-group: 5 !important;
    -webkit-order: 4 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-lg-5 {
    -webkit-box-ordinal-group: 6 !important;
    -webkit-order: 5 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-lg-last {
    -webkit-box-ordinal-group: 7 !important;
    -webkit-order: 6 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

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

  .m-lg-1 {
    margin: 1px !important;
  }

  .m-lg-2 {
    margin: 2px !important;
  }

  .m-lg-3 {
    margin: 3px !important;
  }

  .m-lg-4 {
    margin: 4px !important;
  }

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

  .m-lg-6 {
    margin: 6px !important;
  }

  .m-lg-7 {
    margin: 7px !important;
  }

  .m-lg-8 {
    margin: 8px !important;
  }

  .m-lg-9 {
    margin: 9px !important;
  }

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

  .m-lg-11 {
    margin: 11px !important;
  }

  .m-lg-12 {
    margin: 12px !important;
  }

  .m-lg-13 {
    margin: 13px !important;
  }

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

  .m-lg-17 {
    margin: 17px !important;
  }

  .m-lg-18 {
    margin: 18px !important;
  }

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

  .m-lg-25 {
    margin: 25px !important;
  }

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

  .m-lg-35 {
    margin: 35px !important;
  }

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

  .m-lg-45 {
    margin: 45px !important;
  }

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

  .m-lg-55 {
    margin: 55px !important;
  }

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

  .m-lg-65 {
    margin: 65px !important;
  }

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

  .m-lg-75 {
    margin: 75px !important;
  }

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

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

  .m-lg-95 {
    margin: 95px !important;
  }

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

  .m-lg-110 {
    margin: 110px !important;
  }

  .m-lg-115 {
    margin: 115px !important;
  }

  .m-lg-120 {
    margin: 120px !important;
  }

  .m-lg-130 {
    margin: 130px !important;
  }

  .m-lg-150 {
    margin: 150px !important;
  }

  .m-lg-160 {
    margin: 160px !important;
  }

  .m-lg-180 {
    margin: 180px !important;
  }

  .m-lg-190 {
    margin: 190px !important;
  }

  .m-lg-200 {
    margin: 200px !important;
  }

  .m-lg-210 {
    margin: 210px !important;
  }

  .m-lg-235 {
    margin: 235px !important;
  }

  .m-lg-240 {
    margin: 240px !important;
  }

  .m-lg-270 {
    margin: 270px !important;
  }

  .m-lg-290 {
    margin: 290px !important;
  }

  .m-lg-300 {
    margin: 300px !important;
  }

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

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 1px !important;
    margin-left: 1px !important;
  }

  .mx-lg-2 {
    margin-right: 2px !important;
    margin-left: 2px !important;
  }

  .mx-lg-3 {
    margin-right: 3px !important;
    margin-left: 3px !important;
  }

  .mx-lg-4 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  .mx-lg-5 {
    margin-right: 5px !important;
    margin-left: 5px !important;
  }

  .mx-lg-6 {
    margin-right: 6px !important;
    margin-left: 6px !important;
  }

  .mx-lg-7 {
    margin-right: 7px !important;
    margin-left: 7px !important;
  }

  .mx-lg-8 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  .mx-lg-9 {
    margin-right: 9px !important;
    margin-left: 9px !important;
  }

  .mx-lg-10 {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }

  .mx-lg-11 {
    margin-right: 11px !important;
    margin-left: 11px !important;
  }

  .mx-lg-12 {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }

  .mx-lg-13 {
    margin-right: 13px !important;
    margin-left: 13px !important;
  }

  .mx-lg-15 {
    margin-right: 15px !important;
    margin-left: 15px !important;
  }

  .mx-lg-17 {
    margin-right: 17px !important;
    margin-left: 17px !important;
  }

  .mx-lg-18 {
    margin-right: 18px !important;
    margin-left: 18px !important;
  }

  .mx-lg-20 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }

  .mx-lg-25 {
    margin-right: 25px !important;
    margin-left: 25px !important;
  }

  .mx-lg-30 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }

  .mx-lg-35 {
    margin-right: 35px !important;
    margin-left: 35px !important;
  }

  .mx-lg-40 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .mx-lg-45 {
    margin-right: 45px !important;
    margin-left: 45px !important;
  }

  .mx-lg-50 {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }

  .mx-lg-55 {
    margin-right: 55px !important;
    margin-left: 55px !important;
  }

  .mx-lg-60 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }

  .mx-lg-65 {
    margin-right: 65px !important;
    margin-left: 65px !important;
  }

  .mx-lg-70 {
    margin-right: 70px !important;
    margin-left: 70px !important;
  }

  .mx-lg-75 {
    margin-right: 75px !important;
    margin-left: 75px !important;
  }

  .mx-lg-80 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }

  .mx-lg-90 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }

  .mx-lg-95 {
    margin-right: 95px !important;
    margin-left: 95px !important;
  }

  .mx-lg-100 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }

  .mx-lg-110 {
    margin-right: 110px !important;
    margin-left: 110px !important;
  }

  .mx-lg-115 {
    margin-right: 115px !important;
    margin-left: 115px !important;
  }

  .mx-lg-120 {
    margin-right: 120px !important;
    margin-left: 120px !important;
  }

  .mx-lg-130 {
    margin-right: 130px !important;
    margin-left: 130px !important;
  }

  .mx-lg-150 {
    margin-right: 150px !important;
    margin-left: 150px !important;
  }

  .mx-lg-160 {
    margin-right: 160px !important;
    margin-left: 160px !important;
  }

  .mx-lg-180 {
    margin-right: 180px !important;
    margin-left: 180px !important;
  }

  .mx-lg-190 {
    margin-right: 190px !important;
    margin-left: 190px !important;
  }

  .mx-lg-200 {
    margin-right: 200px !important;
    margin-left: 200px !important;
  }

  .mx-lg-210 {
    margin-right: 210px !important;
    margin-left: 210px !important;
  }

  .mx-lg-235 {
    margin-right: 235px !important;
    margin-left: 235px !important;
  }

  .mx-lg-240 {
    margin-right: 240px !important;
    margin-left: 240px !important;
  }

  .mx-lg-270 {
    margin-right: 270px !important;
    margin-left: 270px !important;
  }

  .mx-lg-290 {
    margin-right: 290px !important;
    margin-left: 290px !important;
  }

  .mx-lg-300 {
    margin-right: 300px !important;
    margin-left: 300px !important;
  }

  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-lg-1 {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .my-lg-2 {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }

  .my-lg-3 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }

  .my-lg-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .my-lg-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  .my-lg-6 {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }

  .my-lg-7 {
    margin-top: 7px !important;
    margin-bottom: 7px !important;
  }

  .my-lg-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .my-lg-9 {
    margin-top: 9px !important;
    margin-bottom: 9px !important;
  }

  .my-lg-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .my-lg-11 {
    margin-top: 11px !important;
    margin-bottom: 11px !important;
  }

  .my-lg-12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .my-lg-13 {
    margin-top: 13px !important;
    margin-bottom: 13px !important;
  }

  .my-lg-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }

  .my-lg-17 {
    margin-top: 17px !important;
    margin-bottom: 17px !important;
  }

  .my-lg-18 {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }

  .my-lg-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .my-lg-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }

  .my-lg-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  .my-lg-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }

  .my-lg-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .my-lg-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }

  .my-lg-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }

  .my-lg-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }

  .my-lg-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }

  .my-lg-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }

  .my-lg-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }

  .my-lg-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }

  .my-lg-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .my-lg-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }

  .my-lg-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }

  .my-lg-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .my-lg-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }

  .my-lg-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }

  .my-lg-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }

  .my-lg-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }

  .my-lg-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }

  .my-lg-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .my-lg-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }

  .my-lg-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }

  .my-lg-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }

  .my-lg-210 {
    margin-top: 210px !important;
    margin-bottom: 210px !important;
  }

  .my-lg-235 {
    margin-top: 235px !important;
    margin-bottom: 235px !important;
  }

  .my-lg-240 {
    margin-top: 240px !important;
    margin-bottom: 240px !important;
  }

  .my-lg-270 {
    margin-top: 270px !important;
    margin-bottom: 270px !important;
  }

  .my-lg-290 {
    margin-top: 290px !important;
    margin-bottom: 290px !important;
  }

  .my-lg-300 {
    margin-top: 300px !important;
    margin-bottom: 300px !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

  .mt-lg-1 {
    margin-top: 1px !important;
  }

  .mt-lg-2 {
    margin-top: 2px !important;
  }

  .mt-lg-3 {
    margin-top: 3px !important;
  }

  .mt-lg-4 {
    margin-top: 4px !important;
  }

  .mt-lg-5 {
    margin-top: 5px !important;
  }

  .mt-lg-6 {
    margin-top: 6px !important;
  }

  .mt-lg-7 {
    margin-top: 7px !important;
  }

  .mt-lg-8 {
    margin-top: 8px !important;
  }

  .mt-lg-9 {
    margin-top: 9px !important;
  }

  .mt-lg-10 {
    margin-top: 10px !important;
  }

  .mt-lg-11 {
    margin-top: 11px !important;
  }

  .mt-lg-12 {
    margin-top: 12px !important;
  }

  .mt-lg-13 {
    margin-top: 13px !important;
  }

  .mt-lg-15 {
    margin-top: 15px !important;
  }

  .mt-lg-17 {
    margin-top: 17px !important;
  }

  .mt-lg-18 {
    margin-top: 18px !important;
  }

  .mt-lg-20 {
    margin-top: 20px !important;
  }

  .mt-lg-25 {
    margin-top: 25px !important;
  }

  .mt-lg-30 {
    margin-top: 30px !important;
  }

  .mt-lg-35 {
    margin-top: 35px !important;
  }

  .mt-lg-40 {
    margin-top: 40px !important;
  }

  .mt-lg-45 {
    margin-top: 45px !important;
  }

  .mt-lg-50 {
    margin-top: 50px !important;
  }

  .mt-lg-55 {
    margin-top: 55px !important;
  }

  .mt-lg-60 {
    margin-top: 60px !important;
  }

  .mt-lg-65 {
    margin-top: 65px !important;
  }

  .mt-lg-70 {
    margin-top: 70px !important;
  }

  .mt-lg-75 {
    margin-top: 75px !important;
  }

  .mt-lg-80 {
    margin-top: 80px !important;
  }

  .mt-lg-90 {
    margin-top: 90px !important;
  }

  .mt-lg-95 {
    margin-top: 95px !important;
  }

  .mt-lg-100 {
    margin-top: 100px !important;
  }

  .mt-lg-110 {
    margin-top: 110px !important;
  }

  .mt-lg-115 {
    margin-top: 115px !important;
  }

  .mt-lg-120 {
    margin-top: 120px !important;
  }

  .mt-lg-130 {
    margin-top: 130px !important;
  }

  .mt-lg-150 {
    margin-top: 150px !important;
  }

  .mt-lg-160 {
    margin-top: 160px !important;
  }

  .mt-lg-180 {
    margin-top: 180px !important;
  }

  .mt-lg-190 {
    margin-top: 190px !important;
  }

  .mt-lg-200 {
    margin-top: 200px !important;
  }

  .mt-lg-210 {
    margin-top: 210px !important;
  }

  .mt-lg-235 {
    margin-top: 235px !important;
  }

  .mt-lg-240 {
    margin-top: 240px !important;
  }

  .mt-lg-270 {
    margin-top: 270px !important;
  }

  .mt-lg-290 {
    margin-top: 290px !important;
  }

  .mt-lg-300 {
    margin-top: 300px !important;
  }

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

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 1px !important;
  }

  .me-lg-2 {
    margin-right: 2px !important;
  }

  .me-lg-3 {
    margin-right: 3px !important;
  }

  .me-lg-4 {
    margin-right: 4px !important;
  }

  .me-lg-5 {
    margin-right: 5px !important;
  }

  .me-lg-6 {
    margin-right: 6px !important;
  }

  .me-lg-7 {
    margin-right: 7px !important;
  }

  .me-lg-8 {
    margin-right: 8px !important;
  }

  .me-lg-9 {
    margin-right: 9px !important;
  }

  .me-lg-10 {
    margin-right: 10px !important;
  }

  .me-lg-11 {
    margin-right: 11px !important;
  }

  .me-lg-12 {
    margin-right: 12px !important;
  }

  .me-lg-13 {
    margin-right: 13px !important;
  }

  .me-lg-15 {
    margin-right: 15px !important;
  }

  .me-lg-17 {
    margin-right: 17px !important;
  }

  .me-lg-18 {
    margin-right: 18px !important;
  }

  .me-lg-20 {
    margin-right: 20px !important;
  }

  .me-lg-25 {
    margin-right: 25px !important;
  }

  .me-lg-30 {
    margin-right: 30px !important;
  }

  .me-lg-35 {
    margin-right: 35px !important;
  }

  .me-lg-40 {
    margin-right: 40px !important;
  }

  .me-lg-45 {
    margin-right: 45px !important;
  }

  .me-lg-50 {
    margin-right: 50px !important;
  }

  .me-lg-55 {
    margin-right: 55px !important;
  }

  .me-lg-60 {
    margin-right: 60px !important;
  }

  .me-lg-65 {
    margin-right: 65px !important;
  }

  .me-lg-70 {
    margin-right: 70px !important;
  }

  .me-lg-75 {
    margin-right: 75px !important;
  }

  .me-lg-80 {
    margin-right: 80px !important;
  }

  .me-lg-90 {
    margin-right: 90px !important;
  }

  .me-lg-95 {
    margin-right: 95px !important;
  }

  .me-lg-100 {
    margin-right: 100px !important;
  }

  .me-lg-110 {
    margin-right: 110px !important;
  }

  .me-lg-115 {
    margin-right: 115px !important;
  }

  .me-lg-120 {
    margin-right: 120px !important;
  }

  .me-lg-130 {
    margin-right: 130px !important;
  }

  .me-lg-150 {
    margin-right: 150px !important;
  }

  .me-lg-160 {
    margin-right: 160px !important;
  }

  .me-lg-180 {
    margin-right: 180px !important;
  }

  .me-lg-190 {
    margin-right: 190px !important;
  }

  .me-lg-200 {
    margin-right: 200px !important;
  }

  .me-lg-210 {
    margin-right: 210px !important;
  }

  .me-lg-235 {
    margin-right: 235px !important;
  }

  .me-lg-240 {
    margin-right: 240px !important;
  }

  .me-lg-270 {
    margin-right: 270px !important;
  }

  .me-lg-290 {
    margin-right: 290px !important;
  }

  .me-lg-300 {
    margin-right: 300px !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

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

  .mb-lg-1 {
    margin-bottom: 1px !important;
  }

  .mb-lg-2 {
    margin-bottom: 2px !important;
  }

  .mb-lg-3 {
    margin-bottom: 3px !important;
  }

  .mb-lg-4 {
    margin-bottom: 4px !important;
  }

  .mb-lg-5 {
    margin-bottom: 5px !important;
  }

  .mb-lg-6 {
    margin-bottom: 6px !important;
  }

  .mb-lg-7 {
    margin-bottom: 7px !important;
  }

  .mb-lg-8 {
    margin-bottom: 8px !important;
  }

  .mb-lg-9 {
    margin-bottom: 9px !important;
  }

  .mb-lg-10 {
    margin-bottom: 10px !important;
  }

  .mb-lg-11 {
    margin-bottom: 11px !important;
  }

  .mb-lg-12 {
    margin-bottom: 12px !important;
  }

  .mb-lg-13 {
    margin-bottom: 13px !important;
  }

  .mb-lg-15 {
    margin-bottom: 15px !important;
  }

  .mb-lg-17 {
    margin-bottom: 17px !important;
  }

  .mb-lg-18 {
    margin-bottom: 18px !important;
  }

  .mb-lg-20 {
    margin-bottom: 20px !important;
  }

  .mb-lg-25 {
    margin-bottom: 25px !important;
  }

  .mb-lg-30 {
    margin-bottom: 30px !important;
  }

  .mb-lg-35 {
    margin-bottom: 35px !important;
  }

  .mb-lg-40 {
    margin-bottom: 40px !important;
  }

  .mb-lg-45 {
    margin-bottom: 45px !important;
  }

  .mb-lg-50 {
    margin-bottom: 50px !important;
  }

  .mb-lg-55 {
    margin-bottom: 55px !important;
  }

  .mb-lg-60 {
    margin-bottom: 60px !important;
  }

  .mb-lg-65 {
    margin-bottom: 65px !important;
  }

  .mb-lg-70 {
    margin-bottom: 70px !important;
  }

  .mb-lg-75 {
    margin-bottom: 75px !important;
  }

  .mb-lg-80 {
    margin-bottom: 80px !important;
  }

  .mb-lg-90 {
    margin-bottom: 90px !important;
  }

  .mb-lg-95 {
    margin-bottom: 95px !important;
  }

  .mb-lg-100 {
    margin-bottom: 100px !important;
  }

  .mb-lg-110 {
    margin-bottom: 110px !important;
  }

  .mb-lg-115 {
    margin-bottom: 115px !important;
  }

  .mb-lg-120 {
    margin-bottom: 120px !important;
  }

  .mb-lg-130 {
    margin-bottom: 130px !important;
  }

  .mb-lg-150 {
    margin-bottom: 150px !important;
  }

  .mb-lg-160 {
    margin-bottom: 160px !important;
  }

  .mb-lg-180 {
    margin-bottom: 180px !important;
  }

  .mb-lg-190 {
    margin-bottom: 190px !important;
  }

  .mb-lg-200 {
    margin-bottom: 200px !important;
  }

  .mb-lg-210 {
    margin-bottom: 210px !important;
  }

  .mb-lg-235 {
    margin-bottom: 235px !important;
  }

  .mb-lg-240 {
    margin-bottom: 240px !important;
  }

  .mb-lg-270 {
    margin-bottom: 270px !important;
  }

  .mb-lg-290 {
    margin-bottom: 290px !important;
  }

  .mb-lg-300 {
    margin-bottom: 300px !important;
  }

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

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 1px !important;
  }

  .ms-lg-2 {
    margin-left: 2px !important;
  }

  .ms-lg-3 {
    margin-left: 3px !important;
  }

  .ms-lg-4 {
    margin-left: 4px !important;
  }

  .ms-lg-5 {
    margin-left: 5px !important;
  }

  .ms-lg-6 {
    margin-left: 6px !important;
  }

  .ms-lg-7 {
    margin-left: 7px !important;
  }

  .ms-lg-8 {
    margin-left: 8px !important;
  }

  .ms-lg-9 {
    margin-left: 9px !important;
  }

  .ms-lg-10 {
    margin-left: 10px !important;
  }

  .ms-lg-11 {
    margin-left: 11px !important;
  }

  .ms-lg-12 {
    margin-left: 12px !important;
  }

  .ms-lg-13 {
    margin-left: 13px !important;
  }

  .ms-lg-15 {
    margin-left: 15px !important;
  }

  .ms-lg-17 {
    margin-left: 17px !important;
  }

  .ms-lg-18 {
    margin-left: 18px !important;
  }

  .ms-lg-20 {
    margin-left: 20px !important;
  }

  .ms-lg-25 {
    margin-left: 25px !important;
  }

  .ms-lg-30 {
    margin-left: 30px !important;
  }

  .ms-lg-35 {
    margin-left: 35px !important;
  }

  .ms-lg-40 {
    margin-left: 40px !important;
  }

  .ms-lg-45 {
    margin-left: 45px !important;
  }

  .ms-lg-50 {
    margin-left: 50px !important;
  }

  .ms-lg-55 {
    margin-left: 55px !important;
  }

  .ms-lg-60 {
    margin-left: 60px !important;
  }

  .ms-lg-65 {
    margin-left: 65px !important;
  }

  .ms-lg-70 {
    margin-left: 70px !important;
  }

  .ms-lg-75 {
    margin-left: 75px !important;
  }

  .ms-lg-80 {
    margin-left: 80px !important;
  }

  .ms-lg-90 {
    margin-left: 90px !important;
  }

  .ms-lg-95 {
    margin-left: 95px !important;
  }

  .ms-lg-100 {
    margin-left: 100px !important;
  }

  .ms-lg-110 {
    margin-left: 110px !important;
  }

  .ms-lg-115 {
    margin-left: 115px !important;
  }

  .ms-lg-120 {
    margin-left: 120px !important;
  }

  .ms-lg-130 {
    margin-left: 130px !important;
  }

  .ms-lg-150 {
    margin-left: 150px !important;
  }

  .ms-lg-160 {
    margin-left: 160px !important;
  }

  .ms-lg-180 {
    margin-left: 180px !important;
  }

  .ms-lg-190 {
    margin-left: 190px !important;
  }

  .ms-lg-200 {
    margin-left: 200px !important;
  }

  .ms-lg-210 {
    margin-left: 210px !important;
  }

  .ms-lg-235 {
    margin-left: 235px !important;
  }

  .ms-lg-240 {
    margin-left: 240px !important;
  }

  .ms-lg-270 {
    margin-left: 270px !important;
  }

  .ms-lg-290 {
    margin-left: 290px !important;
  }

  .ms-lg-300 {
    margin-left: 300px !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

  .m-lg-n1 {
    margin: -1px !important;
  }

  .m-lg-n2 {
    margin: -2px !important;
  }

  .m-lg-n3 {
    margin: -3px !important;
  }

  .m-lg-n4 {
    margin: -4px !important;
  }

  .m-lg-n5 {
    margin: -5px !important;
  }

  .m-lg-n6 {
    margin: -6px !important;
  }

  .m-lg-n7 {
    margin: -7px !important;
  }

  .m-lg-n8 {
    margin: -8px !important;
  }

  .m-lg-n9 {
    margin: -9px !important;
  }

  .m-lg-n10 {
    margin: -10px !important;
  }

  .m-lg-n11 {
    margin: -11px !important;
  }

  .m-lg-n12 {
    margin: -12px !important;
  }

  .m-lg-n13 {
    margin: -13px !important;
  }

  .m-lg-n15 {
    margin: -15px !important;
  }

  .m-lg-n17 {
    margin: -17px !important;
  }

  .m-lg-n18 {
    margin: -18px !important;
  }

  .m-lg-n20 {
    margin: -20px !important;
  }

  .m-lg-n25 {
    margin: -25px !important;
  }

  .m-lg-n30 {
    margin: -30px !important;
  }

  .m-lg-n35 {
    margin: -35px !important;
  }

  .m-lg-n40 {
    margin: -40px !important;
  }

  .m-lg-n45 {
    margin: -45px !important;
  }

  .m-lg-n50 {
    margin: -50px !important;
  }

  .m-lg-n55 {
    margin: -55px !important;
  }

  .m-lg-n60 {
    margin: -60px !important;
  }

  .m-lg-n65 {
    margin: -65px !important;
  }

  .m-lg-n70 {
    margin: -70px !important;
  }

  .m-lg-n75 {
    margin: -75px !important;
  }

  .m-lg-n80 {
    margin: -80px !important;
  }

  .m-lg-n90 {
    margin: -90px !important;
  }

  .m-lg-n95 {
    margin: -95px !important;
  }

  .m-lg-n100 {
    margin: -100px !important;
  }

  .m-lg-n110 {
    margin: -110px !important;
  }

  .m-lg-n115 {
    margin: -115px !important;
  }

  .m-lg-n120 {
    margin: -120px !important;
  }

  .m-lg-n130 {
    margin: -130px !important;
  }

  .m-lg-n150 {
    margin: -150px !important;
  }

  .m-lg-n160 {
    margin: -160px !important;
  }

  .m-lg-n180 {
    margin: -180px !important;
  }

  .m-lg-n190 {
    margin: -190px !important;
  }

  .m-lg-n200 {
    margin: -200px !important;
  }

  .m-lg-n210 {
    margin: -210px !important;
  }

  .m-lg-n235 {
    margin: -235px !important;
  }

  .m-lg-n240 {
    margin: -240px !important;
  }

  .m-lg-n270 {
    margin: -270px !important;
  }

  .m-lg-n290 {
    margin: -290px !important;
  }

  .m-lg-n300 {
    margin: -300px !important;
  }

  .mx-lg-n1 {
    margin-right: -1px !important;
    margin-left: -1px !important;
  }

  .mx-lg-n2 {
    margin-right: -2px !important;
    margin-left: -2px !important;
  }

  .mx-lg-n3 {
    margin-right: -3px !important;
    margin-left: -3px !important;
  }

  .mx-lg-n4 {
    margin-right: -4px !important;
    margin-left: -4px !important;
  }

  .mx-lg-n5 {
    margin-right: -5px !important;
    margin-left: -5px !important;
  }

  .mx-lg-n6 {
    margin-right: -6px !important;
    margin-left: -6px !important;
  }

  .mx-lg-n7 {
    margin-right: -7px !important;
    margin-left: -7px !important;
  }

  .mx-lg-n8 {
    margin-right: -8px !important;
    margin-left: -8px !important;
  }

  .mx-lg-n9 {
    margin-right: -9px !important;
    margin-left: -9px !important;
  }

  .mx-lg-n10 {
    margin-right: -10px !important;
    margin-left: -10px !important;
  }

  .mx-lg-n11 {
    margin-right: -11px !important;
    margin-left: -11px !important;
  }

  .mx-lg-n12 {
    margin-right: -12px !important;
    margin-left: -12px !important;
  }

  .mx-lg-n13 {
    margin-right: -13px !important;
    margin-left: -13px !important;
  }

  .mx-lg-n15 {
    margin-right: -15px !important;
    margin-left: -15px !important;
  }

  .mx-lg-n17 {
    margin-right: -17px !important;
    margin-left: -17px !important;
  }

  .mx-lg-n18 {
    margin-right: -18px !important;
    margin-left: -18px !important;
  }

  .mx-lg-n20 {
    margin-right: -20px !important;
    margin-left: -20px !important;
  }

  .mx-lg-n25 {
    margin-right: -25px !important;
    margin-left: -25px !important;
  }

  .mx-lg-n30 {
    margin-right: -30px !important;
    margin-left: -30px !important;
  }

  .mx-lg-n35 {
    margin-right: -35px !important;
    margin-left: -35px !important;
  }

  .mx-lg-n40 {
    margin-right: -40px !important;
    margin-left: -40px !important;
  }

  .mx-lg-n45 {
    margin-right: -45px !important;
    margin-left: -45px !important;
  }

  .mx-lg-n50 {
    margin-right: -50px !important;
    margin-left: -50px !important;
  }

  .mx-lg-n55 {
    margin-right: -55px !important;
    margin-left: -55px !important;
  }

  .mx-lg-n60 {
    margin-right: -60px !important;
    margin-left: -60px !important;
  }

  .mx-lg-n65 {
    margin-right: -65px !important;
    margin-left: -65px !important;
  }

  .mx-lg-n70 {
    margin-right: -70px !important;
    margin-left: -70px !important;
  }

  .mx-lg-n75 {
    margin-right: -75px !important;
    margin-left: -75px !important;
  }

  .mx-lg-n80 {
    margin-right: -80px !important;
    margin-left: -80px !important;
  }

  .mx-lg-n90 {
    margin-right: -90px !important;
    margin-left: -90px !important;
  }

  .mx-lg-n95 {
    margin-right: -95px !important;
    margin-left: -95px !important;
  }

  .mx-lg-n100 {
    margin-right: -100px !important;
    margin-left: -100px !important;
  }

  .mx-lg-n110 {
    margin-right: -110px !important;
    margin-left: -110px !important;
  }

  .mx-lg-n115 {
    margin-right: -115px !important;
    margin-left: -115px !important;
  }

  .mx-lg-n120 {
    margin-right: -120px !important;
    margin-left: -120px !important;
  }

  .mx-lg-n130 {
    margin-right: -130px !important;
    margin-left: -130px !important;
  }

  .mx-lg-n150 {
    margin-right: -150px !important;
    margin-left: -150px !important;
  }

  .mx-lg-n160 {
    margin-right: -160px !important;
    margin-left: -160px !important;
  }

  .mx-lg-n180 {
    margin-right: -180px !important;
    margin-left: -180px !important;
  }

  .mx-lg-n190 {
    margin-right: -190px !important;
    margin-left: -190px !important;
  }

  .mx-lg-n200 {
    margin-right: -200px !important;
    margin-left: -200px !important;
  }

  .mx-lg-n210 {
    margin-right: -210px !important;
    margin-left: -210px !important;
  }

  .mx-lg-n235 {
    margin-right: -235px !important;
    margin-left: -235px !important;
  }

  .mx-lg-n240 {
    margin-right: -240px !important;
    margin-left: -240px !important;
  }

  .mx-lg-n270 {
    margin-right: -270px !important;
    margin-left: -270px !important;
  }

  .mx-lg-n290 {
    margin-right: -290px !important;
    margin-left: -290px !important;
  }

  .mx-lg-n300 {
    margin-right: -300px !important;
    margin-left: -300px !important;
  }

  .my-lg-n1 {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .my-lg-n2 {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
  }

  .my-lg-n3 {
    margin-top: -3px !important;
    margin-bottom: -3px !important;
  }

  .my-lg-n4 {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }

  .my-lg-n5 {
    margin-top: -5px !important;
    margin-bottom: -5px !important;
  }

  .my-lg-n6 {
    margin-top: -6px !important;
    margin-bottom: -6px !important;
  }

  .my-lg-n7 {
    margin-top: -7px !important;
    margin-bottom: -7px !important;
  }

  .my-lg-n8 {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }

  .my-lg-n9 {
    margin-top: -9px !important;
    margin-bottom: -9px !important;
  }

  .my-lg-n10 {
    margin-top: -10px !important;
    margin-bottom: -10px !important;
  }

  .my-lg-n11 {
    margin-top: -11px !important;
    margin-bottom: -11px !important;
  }

  .my-lg-n12 {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }

  .my-lg-n13 {
    margin-top: -13px !important;
    margin-bottom: -13px !important;
  }

  .my-lg-n15 {
    margin-top: -15px !important;
    margin-bottom: -15px !important;
  }

  .my-lg-n17 {
    margin-top: -17px !important;
    margin-bottom: -17px !important;
  }

  .my-lg-n18 {
    margin-top: -18px !important;
    margin-bottom: -18px !important;
  }

  .my-lg-n20 {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }

  .my-lg-n25 {
    margin-top: -25px !important;
    margin-bottom: -25px !important;
  }

  .my-lg-n30 {
    margin-top: -30px !important;
    margin-bottom: -30px !important;
  }

  .my-lg-n35 {
    margin-top: -35px !important;
    margin-bottom: -35px !important;
  }

  .my-lg-n40 {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }

  .my-lg-n45 {
    margin-top: -45px !important;
    margin-bottom: -45px !important;
  }

  .my-lg-n50 {
    margin-top: -50px !important;
    margin-bottom: -50px !important;
  }

  .my-lg-n55 {
    margin-top: -55px !important;
    margin-bottom: -55px !important;
  }

  .my-lg-n60 {
    margin-top: -60px !important;
    margin-bottom: -60px !important;
  }

  .my-lg-n65 {
    margin-top: -65px !important;
    margin-bottom: -65px !important;
  }

  .my-lg-n70 {
    margin-top: -70px !important;
    margin-bottom: -70px !important;
  }

  .my-lg-n75 {
    margin-top: -75px !important;
    margin-bottom: -75px !important;
  }

  .my-lg-n80 {
    margin-top: -80px !important;
    margin-bottom: -80px !important;
  }

  .my-lg-n90 {
    margin-top: -90px !important;
    margin-bottom: -90px !important;
  }

  .my-lg-n95 {
    margin-top: -95px !important;
    margin-bottom: -95px !important;
  }

  .my-lg-n100 {
    margin-top: -100px !important;
    margin-bottom: -100px !important;
  }

  .my-lg-n110 {
    margin-top: -110px !important;
    margin-bottom: -110px !important;
  }

  .my-lg-n115 {
    margin-top: -115px !important;
    margin-bottom: -115px !important;
  }

  .my-lg-n120 {
    margin-top: -120px !important;
    margin-bottom: -120px !important;
  }

  .my-lg-n130 {
    margin-top: -130px !important;
    margin-bottom: -130px !important;
  }

  .my-lg-n150 {
    margin-top: -150px !important;
    margin-bottom: -150px !important;
  }

  .my-lg-n160 {
    margin-top: -160px !important;
    margin-bottom: -160px !important;
  }

  .my-lg-n180 {
    margin-top: -180px !important;
    margin-bottom: -180px !important;
  }

  .my-lg-n190 {
    margin-top: -190px !important;
    margin-bottom: -190px !important;
  }

  .my-lg-n200 {
    margin-top: -200px !important;
    margin-bottom: -200px !important;
  }

  .my-lg-n210 {
    margin-top: -210px !important;
    margin-bottom: -210px !important;
  }

  .my-lg-n235 {
    margin-top: -235px !important;
    margin-bottom: -235px !important;
  }

  .my-lg-n240 {
    margin-top: -240px !important;
    margin-bottom: -240px !important;
  }

  .my-lg-n270 {
    margin-top: -270px !important;
    margin-bottom: -270px !important;
  }

  .my-lg-n290 {
    margin-top: -290px !important;
    margin-bottom: -290px !important;
  }

  .my-lg-n300 {
    margin-top: -300px !important;
    margin-bottom: -300px !important;
  }

  .mt-lg-n1 {
    margin-top: -1px !important;
  }

  .mt-lg-n2 {
    margin-top: -2px !important;
  }

  .mt-lg-n3 {
    margin-top: -3px !important;
  }

  .mt-lg-n4 {
    margin-top: -4px !important;
  }

  .mt-lg-n5 {
    margin-top: -5px !important;
  }

  .mt-lg-n6 {
    margin-top: -6px !important;
  }

  .mt-lg-n7 {
    margin-top: -7px !important;
  }

  .mt-lg-n8 {
    margin-top: -8px !important;
  }

  .mt-lg-n9 {
    margin-top: -9px !important;
  }

  .mt-lg-n10 {
    margin-top: -10px !important;
  }

  .mt-lg-n11 {
    margin-top: -11px !important;
  }

  .mt-lg-n12 {
    margin-top: -12px !important;
  }

  .mt-lg-n13 {
    margin-top: -13px !important;
  }

  .mt-lg-n15 {
    margin-top: -15px !important;
  }

  .mt-lg-n17 {
    margin-top: -17px !important;
  }

  .mt-lg-n18 {
    margin-top: -18px !important;
  }

  .mt-lg-n20 {
    margin-top: -20px !important;
  }

  .mt-lg-n25 {
    margin-top: -25px !important;
  }

  .mt-lg-n30 {
    margin-top: -30px !important;
  }

  .mt-lg-n35 {
    margin-top: -35px !important;
  }

  .mt-lg-n40 {
    margin-top: -40px !important;
  }

  .mt-lg-n45 {
    margin-top: -45px !important;
  }

  .mt-lg-n50 {
    margin-top: -50px !important;
  }

  .mt-lg-n55 {
    margin-top: -55px !important;
  }

  .mt-lg-n60 {
    margin-top: -60px !important;
  }

  .mt-lg-n65 {
    margin-top: -65px !important;
  }

  .mt-lg-n70 {
    margin-top: -70px !important;
  }

  .mt-lg-n75 {
    margin-top: -75px !important;
  }

  .mt-lg-n80 {
    margin-top: -80px !important;
  }

  .mt-lg-n90 {
    margin-top: -90px !important;
  }

  .mt-lg-n95 {
    margin-top: -95px !important;
  }

  .mt-lg-n100 {
    margin-top: -100px !important;
  }

  .mt-lg-n110 {
    margin-top: -110px !important;
  }

  .mt-lg-n115 {
    margin-top: -115px !important;
  }

  .mt-lg-n120 {
    margin-top: -120px !important;
  }

  .mt-lg-n130 {
    margin-top: -130px !important;
  }

  .mt-lg-n150 {
    margin-top: -150px !important;
  }

  .mt-lg-n160 {
    margin-top: -160px !important;
  }

  .mt-lg-n180 {
    margin-top: -180px !important;
  }

  .mt-lg-n190 {
    margin-top: -190px !important;
  }

  .mt-lg-n200 {
    margin-top: -200px !important;
  }

  .mt-lg-n210 {
    margin-top: -210px !important;
  }

  .mt-lg-n235 {
    margin-top: -235px !important;
  }

  .mt-lg-n240 {
    margin-top: -240px !important;
  }

  .mt-lg-n270 {
    margin-top: -270px !important;
  }

  .mt-lg-n290 {
    margin-top: -290px !important;
  }

  .mt-lg-n300 {
    margin-top: -300px !important;
  }

  .me-lg-n1 {
    margin-right: -1px !important;
  }

  .me-lg-n2 {
    margin-right: -2px !important;
  }

  .me-lg-n3 {
    margin-right: -3px !important;
  }

  .me-lg-n4 {
    margin-right: -4px !important;
  }

  .me-lg-n5 {
    margin-right: -5px !important;
  }

  .me-lg-n6 {
    margin-right: -6px !important;
  }

  .me-lg-n7 {
    margin-right: -7px !important;
  }

  .me-lg-n8 {
    margin-right: -8px !important;
  }

  .me-lg-n9 {
    margin-right: -9px !important;
  }

  .me-lg-n10 {
    margin-right: -10px !important;
  }

  .me-lg-n11 {
    margin-right: -11px !important;
  }

  .me-lg-n12 {
    margin-right: -12px !important;
  }

  .me-lg-n13 {
    margin-right: -13px !important;
  }

  .me-lg-n15 {
    margin-right: -15px !important;
  }

  .me-lg-n17 {
    margin-right: -17px !important;
  }

  .me-lg-n18 {
    margin-right: -18px !important;
  }

  .me-lg-n20 {
    margin-right: -20px !important;
  }

  .me-lg-n25 {
    margin-right: -25px !important;
  }

  .me-lg-n30 {
    margin-right: -30px !important;
  }

  .me-lg-n35 {
    margin-right: -35px !important;
  }

  .me-lg-n40 {
    margin-right: -40px !important;
  }

  .me-lg-n45 {
    margin-right: -45px !important;
  }

  .me-lg-n50 {
    margin-right: -50px !important;
  }

  .me-lg-n55 {
    margin-right: -55px !important;
  }

  .me-lg-n60 {
    margin-right: -60px !important;
  }

  .me-lg-n65 {
    margin-right: -65px !important;
  }

  .me-lg-n70 {
    margin-right: -70px !important;
  }

  .me-lg-n75 {
    margin-right: -75px !important;
  }

  .me-lg-n80 {
    margin-right: -80px !important;
  }

  .me-lg-n90 {
    margin-right: -90px !important;
  }

  .me-lg-n95 {
    margin-right: -95px !important;
  }

  .me-lg-n100 {
    margin-right: -100px !important;
  }

  .me-lg-n110 {
    margin-right: -110px !important;
  }

  .me-lg-n115 {
    margin-right: -115px !important;
  }

  .me-lg-n120 {
    margin-right: -120px !important;
  }

  .me-lg-n130 {
    margin-right: -130px !important;
  }

  .me-lg-n150 {
    margin-right: -150px !important;
  }

  .me-lg-n160 {
    margin-right: -160px !important;
  }

  .me-lg-n180 {
    margin-right: -180px !important;
  }

  .me-lg-n190 {
    margin-right: -190px !important;
  }

  .me-lg-n200 {
    margin-right: -200px !important;
  }

  .me-lg-n210 {
    margin-right: -210px !important;
  }

  .me-lg-n235 {
    margin-right: -235px !important;
  }

  .me-lg-n240 {
    margin-right: -240px !important;
  }

  .me-lg-n270 {
    margin-right: -270px !important;
  }

  .me-lg-n290 {
    margin-right: -290px !important;
  }

  .me-lg-n300 {
    margin-right: -300px !important;
  }

  .mb-lg-n1 {
    margin-bottom: -1px !important;
  }

  .mb-lg-n2 {
    margin-bottom: -2px !important;
  }

  .mb-lg-n3 {
    margin-bottom: -3px !important;
  }

  .mb-lg-n4 {
    margin-bottom: -4px !important;
  }

  .mb-lg-n5 {
    margin-bottom: -5px !important;
  }

  .mb-lg-n6 {
    margin-bottom: -6px !important;
  }

  .mb-lg-n7 {
    margin-bottom: -7px !important;
  }

  .mb-lg-n8 {
    margin-bottom: -8px !important;
  }

  .mb-lg-n9 {
    margin-bottom: -9px !important;
  }

  .mb-lg-n10 {
    margin-bottom: -10px !important;
  }

  .mb-lg-n11 {
    margin-bottom: -11px !important;
  }

  .mb-lg-n12 {
    margin-bottom: -12px !important;
  }

  .mb-lg-n13 {
    margin-bottom: -13px !important;
  }

  .mb-lg-n15 {
    margin-bottom: -15px !important;
  }

  .mb-lg-n17 {
    margin-bottom: -17px !important;
  }

  .mb-lg-n18 {
    margin-bottom: -18px !important;
  }

  .mb-lg-n20 {
    margin-bottom: -20px !important;
  }

  .mb-lg-n25 {
    margin-bottom: -25px !important;
  }

  .mb-lg-n30 {
    margin-bottom: -30px !important;
  }

  .mb-lg-n35 {
    margin-bottom: -35px !important;
  }

  .mb-lg-n40 {
    margin-bottom: -40px !important;
  }

  .mb-lg-n45 {
    margin-bottom: -45px !important;
  }

  .mb-lg-n50 {
    margin-bottom: -50px !important;
  }

  .mb-lg-n55 {
    margin-bottom: -55px !important;
  }

  .mb-lg-n60 {
    margin-bottom: -60px !important;
  }

  .mb-lg-n65 {
    margin-bottom: -65px !important;
  }

  .mb-lg-n70 {
    margin-bottom: -70px !important;
  }

  .mb-lg-n75 {
    margin-bottom: -75px !important;
  }

  .mb-lg-n80 {
    margin-bottom: -80px !important;
  }

  .mb-lg-n90 {
    margin-bottom: -90px !important;
  }

  .mb-lg-n95 {
    margin-bottom: -95px !important;
  }

  .mb-lg-n100 {
    margin-bottom: -100px !important;
  }

  .mb-lg-n110 {
    margin-bottom: -110px !important;
  }

  .mb-lg-n115 {
    margin-bottom: -115px !important;
  }

  .mb-lg-n120 {
    margin-bottom: -120px !important;
  }

  .mb-lg-n130 {
    margin-bottom: -130px !important;
  }

  .mb-lg-n150 {
    margin-bottom: -150px !important;
  }

  .mb-lg-n160 {
    margin-bottom: -160px !important;
  }

  .mb-lg-n180 {
    margin-bottom: -180px !important;
  }

  .mb-lg-n190 {
    margin-bottom: -190px !important;
  }

  .mb-lg-n200 {
    margin-bottom: -200px !important;
  }

  .mb-lg-n210 {
    margin-bottom: -210px !important;
  }

  .mb-lg-n235 {
    margin-bottom: -235px !important;
  }

  .mb-lg-n240 {
    margin-bottom: -240px !important;
  }

  .mb-lg-n270 {
    margin-bottom: -270px !important;
  }

  .mb-lg-n290 {
    margin-bottom: -290px !important;
  }

  .mb-lg-n300 {
    margin-bottom: -300px !important;
  }

  .ms-lg-n1 {
    margin-left: -1px !important;
  }

  .ms-lg-n2 {
    margin-left: -2px !important;
  }

  .ms-lg-n3 {
    margin-left: -3px !important;
  }

  .ms-lg-n4 {
    margin-left: -4px !important;
  }

  .ms-lg-n5 {
    margin-left: -5px !important;
  }

  .ms-lg-n6 {
    margin-left: -6px !important;
  }

  .ms-lg-n7 {
    margin-left: -7px !important;
  }

  .ms-lg-n8 {
    margin-left: -8px !important;
  }

  .ms-lg-n9 {
    margin-left: -9px !important;
  }

  .ms-lg-n10 {
    margin-left: -10px !important;
  }

  .ms-lg-n11 {
    margin-left: -11px !important;
  }

  .ms-lg-n12 {
    margin-left: -12px !important;
  }

  .ms-lg-n13 {
    margin-left: -13px !important;
  }

  .ms-lg-n15 {
    margin-left: -15px !important;
  }

  .ms-lg-n17 {
    margin-left: -17px !important;
  }

  .ms-lg-n18 {
    margin-left: -18px !important;
  }

  .ms-lg-n20 {
    margin-left: -20px !important;
  }

  .ms-lg-n25 {
    margin-left: -25px !important;
  }

  .ms-lg-n30 {
    margin-left: -30px !important;
  }

  .ms-lg-n35 {
    margin-left: -35px !important;
  }

  .ms-lg-n40 {
    margin-left: -40px !important;
  }

  .ms-lg-n45 {
    margin-left: -45px !important;
  }

  .ms-lg-n50 {
    margin-left: -50px !important;
  }

  .ms-lg-n55 {
    margin-left: -55px !important;
  }

  .ms-lg-n60 {
    margin-left: -60px !important;
  }

  .ms-lg-n65 {
    margin-left: -65px !important;
  }

  .ms-lg-n70 {
    margin-left: -70px !important;
  }

  .ms-lg-n75 {
    margin-left: -75px !important;
  }

  .ms-lg-n80 {
    margin-left: -80px !important;
  }

  .ms-lg-n90 {
    margin-left: -90px !important;
  }

  .ms-lg-n95 {
    margin-left: -95px !important;
  }

  .ms-lg-n100 {
    margin-left: -100px !important;
  }

  .ms-lg-n110 {
    margin-left: -110px !important;
  }

  .ms-lg-n115 {
    margin-left: -115px !important;
  }

  .ms-lg-n120 {
    margin-left: -120px !important;
  }

  .ms-lg-n130 {
    margin-left: -130px !important;
  }

  .ms-lg-n150 {
    margin-left: -150px !important;
  }

  .ms-lg-n160 {
    margin-left: -160px !important;
  }

  .ms-lg-n180 {
    margin-left: -180px !important;
  }

  .ms-lg-n190 {
    margin-left: -190px !important;
  }

  .ms-lg-n200 {
    margin-left: -200px !important;
  }

  .ms-lg-n210 {
    margin-left: -210px !important;
  }

  .ms-lg-n235 {
    margin-left: -235px !important;
  }

  .ms-lg-n240 {
    margin-left: -240px !important;
  }

  .ms-lg-n270 {
    margin-left: -270px !important;
  }

  .ms-lg-n290 {
    margin-left: -290px !important;
  }

  .ms-lg-n300 {
    margin-left: -300px !important;
  }

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

  .p-lg-1 {
    padding: 1px !important;
  }

  .p-lg-2 {
    padding: 2px !important;
  }

  .p-lg-3 {
    padding: 3px !important;
  }

  .p-lg-4 {
    padding: 4px !important;
  }

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

  .p-lg-6 {
    padding: 6px !important;
  }

  .p-lg-7 {
    padding: 7px !important;
  }

  .p-lg-8 {
    padding: 8px !important;
  }

  .p-lg-9 {
    padding: 9px !important;
  }

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

  .p-lg-11 {
    padding: 11px !important;
  }

  .p-lg-12 {
    padding: 12px !important;
  }

  .p-lg-13 {
    padding: 13px !important;
  }

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

  .p-lg-17 {
    padding: 17px !important;
  }

  .p-lg-18 {
    padding: 18px !important;
  }

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

  .p-lg-25 {
    padding: 25px !important;
  }

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

  .p-lg-35 {
    padding: 35px !important;
  }

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

  .p-lg-45 {
    padding: 45px !important;
  }

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

  .p-lg-55 {
    padding: 55px !important;
  }

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

  .p-lg-65 {
    padding: 65px !important;
  }

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

  .p-lg-75 {
    padding: 75px !important;
  }

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

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

  .p-lg-95 {
    padding: 95px !important;
  }

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

  .p-lg-110 {
    padding: 110px !important;
  }

  .p-lg-115 {
    padding: 115px !important;
  }

  .p-lg-120 {
    padding: 120px !important;
  }

  .p-lg-130 {
    padding: 130px !important;
  }

  .p-lg-150 {
    padding: 150px !important;
  }

  .p-lg-160 {
    padding: 160px !important;
  }

  .p-lg-180 {
    padding: 180px !important;
  }

  .p-lg-190 {
    padding: 190px !important;
  }

  .p-lg-200 {
    padding: 200px !important;
  }

  .p-lg-210 {
    padding: 210px !important;
  }

  .p-lg-235 {
    padding: 235px !important;
  }

  .p-lg-240 {
    padding: 240px !important;
  }

  .p-lg-270 {
    padding: 270px !important;
  }

  .p-lg-290 {
    padding: 290px !important;
  }

  .p-lg-300 {
    padding: 300px !important;
  }

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

  .px-lg-1 {
    padding-right: 1px !important;
    padding-left: 1px !important;
  }

  .px-lg-2 {
    padding-right: 2px !important;
    padding-left: 2px !important;
  }

  .px-lg-3 {
    padding-right: 3px !important;
    padding-left: 3px !important;
  }

  .px-lg-4 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

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

  .px-lg-6 {
    padding-right: 6px !important;
    padding-left: 6px !important;
  }

  .px-lg-7 {
    padding-right: 7px !important;
    padding-left: 7px !important;
  }

  .px-lg-8 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .px-lg-9 {
    padding-right: 9px !important;
    padding-left: 9px !important;
  }

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

  .px-lg-11 {
    padding-right: 11px !important;
    padding-left: 11px !important;
  }

  .px-lg-12 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .px-lg-13 {
    padding-right: 13px !important;
    padding-left: 13px !important;
  }

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

  .px-lg-17 {
    padding-right: 17px !important;
    padding-left: 17px !important;
  }

  .px-lg-18 {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

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

  .px-lg-25 {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }

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

  .px-lg-35 {
    padding-right: 35px !important;
    padding-left: 35px !important;
  }

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

  .px-lg-45 {
    padding-right: 45px !important;
    padding-left: 45px !important;
  }

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

  .px-lg-55 {
    padding-right: 55px !important;
    padding-left: 55px !important;
  }

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

  .px-lg-65 {
    padding-right: 65px !important;
    padding-left: 65px !important;
  }

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

  .px-lg-75 {
    padding-right: 75px !important;
    padding-left: 75px !important;
  }

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

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

  .px-lg-95 {
    padding-right: 95px !important;
    padding-left: 95px !important;
  }

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

  .px-lg-110 {
    padding-right: 110px !important;
    padding-left: 110px !important;
  }

  .px-lg-115 {
    padding-right: 115px !important;
    padding-left: 115px !important;
  }

  .px-lg-120 {
    padding-right: 120px !important;
    padding-left: 120px !important;
  }

  .px-lg-130 {
    padding-right: 130px !important;
    padding-left: 130px !important;
  }

  .px-lg-150 {
    padding-right: 150px !important;
    padding-left: 150px !important;
  }

  .px-lg-160 {
    padding-right: 160px !important;
    padding-left: 160px !important;
  }

  .px-lg-180 {
    padding-right: 180px !important;
    padding-left: 180px !important;
  }

  .px-lg-190 {
    padding-right: 190px !important;
    padding-left: 190px !important;
  }

  .px-lg-200 {
    padding-right: 200px !important;
    padding-left: 200px !important;
  }

  .px-lg-210 {
    padding-right: 210px !important;
    padding-left: 210px !important;
  }

  .px-lg-235 {
    padding-right: 235px !important;
    padding-left: 235px !important;
  }

  .px-lg-240 {
    padding-right: 240px !important;
    padding-left: 240px !important;
  }

  .px-lg-270 {
    padding-right: 270px !important;
    padding-left: 270px !important;
  }

  .px-lg-290 {
    padding-right: 290px !important;
    padding-left: 290px !important;
  }

  .px-lg-300 {
    padding-right: 300px !important;
    padding-left: 300px !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .py-lg-2 {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .py-lg-3 {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }

  .py-lg-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .py-lg-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .py-lg-6 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  .py-lg-7 {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }

  .py-lg-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .py-lg-9 {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }

  .py-lg-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .py-lg-11 {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
  }

  .py-lg-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .py-lg-13 {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }

  .py-lg-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  .py-lg-17 {
    padding-top: 17px !important;
    padding-bottom: 17px !important;
  }

  .py-lg-18 {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .py-lg-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .py-lg-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  .py-lg-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .py-lg-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .py-lg-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .py-lg-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }

  .py-lg-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .py-lg-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .py-lg-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .py-lg-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }

  .py-lg-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .py-lg-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }

  .py-lg-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .py-lg-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }

  .py-lg-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }

  .py-lg-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .py-lg-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }

  .py-lg-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }

  .py-lg-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }

  .py-lg-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }

  .py-lg-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }

  .py-lg-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }

  .py-lg-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }

  .py-lg-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }

  .py-lg-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }

  .py-lg-210 {
    padding-top: 210px !important;
    padding-bottom: 210px !important;
  }

  .py-lg-235 {
    padding-top: 235px !important;
    padding-bottom: 235px !important;
  }

  .py-lg-240 {
    padding-top: 240px !important;
    padding-bottom: 240px !important;
  }

  .py-lg-270 {
    padding-top: 270px !important;
    padding-bottom: 270px !important;
  }

  .py-lg-290 {
    padding-top: 290px !important;
    padding-bottom: 290px !important;
  }

  .py-lg-300 {
    padding-top: 300px !important;
    padding-bottom: 300px !important;
  }

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

  .pt-lg-1 {
    padding-top: 1px !important;
  }

  .pt-lg-2 {
    padding-top: 2px !important;
  }

  .pt-lg-3 {
    padding-top: 3px !important;
  }

  .pt-lg-4 {
    padding-top: 4px !important;
  }

  .pt-lg-5 {
    padding-top: 5px !important;
  }

  .pt-lg-6 {
    padding-top: 6px !important;
  }

  .pt-lg-7 {
    padding-top: 7px !important;
  }

  .pt-lg-8 {
    padding-top: 8px !important;
  }

  .pt-lg-9 {
    padding-top: 9px !important;
  }

  .pt-lg-10 {
    padding-top: 10px !important;
  }

  .pt-lg-11 {
    padding-top: 11px !important;
  }

  .pt-lg-12 {
    padding-top: 12px !important;
  }

  .pt-lg-13 {
    padding-top: 13px !important;
  }

  .pt-lg-15 {
    padding-top: 15px !important;
  }

  .pt-lg-17 {
    padding-top: 17px !important;
  }

  .pt-lg-18 {
    padding-top: 18px !important;
  }

  .pt-lg-20 {
    padding-top: 20px !important;
  }

  .pt-lg-25 {
    padding-top: 25px !important;
  }

  .pt-lg-30 {
    padding-top: 30px !important;
  }

  .pt-lg-35 {
    padding-top: 35px !important;
  }

  .pt-lg-40 {
    padding-top: 40px !important;
  }

  .pt-lg-45 {
    padding-top: 45px !important;
  }

  .pt-lg-50 {
    padding-top: 50px !important;
  }

  .pt-lg-55 {
    padding-top: 55px !important;
  }

  .pt-lg-60 {
    padding-top: 60px !important;
  }

  .pt-lg-65 {
    padding-top: 65px !important;
  }

  .pt-lg-70 {
    padding-top: 70px !important;
  }

  .pt-lg-75 {
    padding-top: 75px !important;
  }

  .pt-lg-80 {
    padding-top: 80px !important;
  }

  .pt-lg-90 {
    padding-top: 90px !important;
  }

  .pt-lg-95 {
    padding-top: 95px !important;
  }

  .pt-lg-100 {
    padding-top: 100px !important;
  }

  .pt-lg-110 {
    padding-top: 110px !important;
  }

  .pt-lg-115 {
    padding-top: 115px !important;
  }

  .pt-lg-120 {
    padding-top: 120px !important;
  }

  .pt-lg-130 {
    padding-top: 130px !important;
  }

  .pt-lg-150 {
    padding-top: 150px !important;
  }

  .pt-lg-160 {
    padding-top: 160px !important;
  }

  .pt-lg-180 {
    padding-top: 180px !important;
  }

  .pt-lg-190 {
    padding-top: 190px !important;
  }

  .pt-lg-200 {
    padding-top: 200px !important;
  }

  .pt-lg-210 {
    padding-top: 210px !important;
  }

  .pt-lg-235 {
    padding-top: 235px !important;
  }

  .pt-lg-240 {
    padding-top: 240px !important;
  }

  .pt-lg-270 {
    padding-top: 270px !important;
  }

  .pt-lg-290 {
    padding-top: 290px !important;
  }

  .pt-lg-300 {
    padding-top: 300px !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 1px !important;
  }

  .pe-lg-2 {
    padding-right: 2px !important;
  }

  .pe-lg-3 {
    padding-right: 3px !important;
  }

  .pe-lg-4 {
    padding-right: 4px !important;
  }

  .pe-lg-5 {
    padding-right: 5px !important;
  }

  .pe-lg-6 {
    padding-right: 6px !important;
  }

  .pe-lg-7 {
    padding-right: 7px !important;
  }

  .pe-lg-8 {
    padding-right: 8px !important;
  }

  .pe-lg-9 {
    padding-right: 9px !important;
  }

  .pe-lg-10 {
    padding-right: 10px !important;
  }

  .pe-lg-11 {
    padding-right: 11px !important;
  }

  .pe-lg-12 {
    padding-right: 12px !important;
  }

  .pe-lg-13 {
    padding-right: 13px !important;
  }

  .pe-lg-15 {
    padding-right: 15px !important;
  }

  .pe-lg-17 {
    padding-right: 17px !important;
  }

  .pe-lg-18 {
    padding-right: 18px !important;
  }

  .pe-lg-20 {
    padding-right: 20px !important;
  }

  .pe-lg-25 {
    padding-right: 25px !important;
  }

  .pe-lg-30 {
    padding-right: 30px !important;
  }

  .pe-lg-35 {
    padding-right: 35px !important;
  }

  .pe-lg-40 {
    padding-right: 40px !important;
  }

  .pe-lg-45 {
    padding-right: 45px !important;
  }

  .pe-lg-50 {
    padding-right: 50px !important;
  }

  .pe-lg-55 {
    padding-right: 55px !important;
  }

  .pe-lg-60 {
    padding-right: 60px !important;
  }

  .pe-lg-65 {
    padding-right: 65px !important;
  }

  .pe-lg-70 {
    padding-right: 70px !important;
  }

  .pe-lg-75 {
    padding-right: 75px !important;
  }

  .pe-lg-80 {
    padding-right: 80px !important;
  }

  .pe-lg-90 {
    padding-right: 90px !important;
  }

  .pe-lg-95 {
    padding-right: 95px !important;
  }

  .pe-lg-100 {
    padding-right: 100px !important;
  }

  .pe-lg-110 {
    padding-right: 110px !important;
  }

  .pe-lg-115 {
    padding-right: 115px !important;
  }

  .pe-lg-120 {
    padding-right: 120px !important;
  }

  .pe-lg-130 {
    padding-right: 130px !important;
  }

  .pe-lg-150 {
    padding-right: 150px !important;
  }

  .pe-lg-160 {
    padding-right: 160px !important;
  }

  .pe-lg-180 {
    padding-right: 180px !important;
  }

  .pe-lg-190 {
    padding-right: 190px !important;
  }

  .pe-lg-200 {
    padding-right: 200px !important;
  }

  .pe-lg-210 {
    padding-right: 210px !important;
  }

  .pe-lg-235 {
    padding-right: 235px !important;
  }

  .pe-lg-240 {
    padding-right: 240px !important;
  }

  .pe-lg-270 {
    padding-right: 270px !important;
  }

  .pe-lg-290 {
    padding-right: 290px !important;
  }

  .pe-lg-300 {
    padding-right: 300px !important;
  }

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

  .pb-lg-1 {
    padding-bottom: 1px !important;
  }

  .pb-lg-2 {
    padding-bottom: 2px !important;
  }

  .pb-lg-3 {
    padding-bottom: 3px !important;
  }

  .pb-lg-4 {
    padding-bottom: 4px !important;
  }

  .pb-lg-5 {
    padding-bottom: 5px !important;
  }

  .pb-lg-6 {
    padding-bottom: 6px !important;
  }

  .pb-lg-7 {
    padding-bottom: 7px !important;
  }

  .pb-lg-8 {
    padding-bottom: 8px !important;
  }

  .pb-lg-9 {
    padding-bottom: 9px !important;
  }

  .pb-lg-10 {
    padding-bottom: 10px !important;
  }

  .pb-lg-11 {
    padding-bottom: 11px !important;
  }

  .pb-lg-12 {
    padding-bottom: 12px !important;
  }

  .pb-lg-13 {
    padding-bottom: 13px !important;
  }

  .pb-lg-15 {
    padding-bottom: 15px !important;
  }

  .pb-lg-17 {
    padding-bottom: 17px !important;
  }

  .pb-lg-18 {
    padding-bottom: 18px !important;
  }

  .pb-lg-20 {
    padding-bottom: 20px !important;
  }

  .pb-lg-25 {
    padding-bottom: 25px !important;
  }

  .pb-lg-30 {
    padding-bottom: 30px !important;
  }

  .pb-lg-35 {
    padding-bottom: 35px !important;
  }

  .pb-lg-40 {
    padding-bottom: 40px !important;
  }

  .pb-lg-45 {
    padding-bottom: 45px !important;
  }

  .pb-lg-50 {
    padding-bottom: 50px !important;
  }

  .pb-lg-55 {
    padding-bottom: 55px !important;
  }

  .pb-lg-60 {
    padding-bottom: 60px !important;
  }

  .pb-lg-65 {
    padding-bottom: 65px !important;
  }

  .pb-lg-70 {
    padding-bottom: 70px !important;
  }

  .pb-lg-75 {
    padding-bottom: 75px !important;
  }

  .pb-lg-80 {
    padding-bottom: 80px !important;
  }

  .pb-lg-90 {
    padding-bottom: 90px !important;
  }

  .pb-lg-95 {
    padding-bottom: 95px !important;
  }

  .pb-lg-100 {
    padding-bottom: 100px !important;
  }

  .pb-lg-110 {
    padding-bottom: 110px !important;
  }

  .pb-lg-115 {
    padding-bottom: 115px !important;
  }

  .pb-lg-120 {
    padding-bottom: 120px !important;
  }

  .pb-lg-130 {
    padding-bottom: 130px !important;
  }

  .pb-lg-150 {
    padding-bottom: 150px !important;
  }

  .pb-lg-160 {
    padding-bottom: 160px !important;
  }

  .pb-lg-180 {
    padding-bottom: 180px !important;
  }

  .pb-lg-190 {
    padding-bottom: 190px !important;
  }

  .pb-lg-200 {
    padding-bottom: 200px !important;
  }

  .pb-lg-210 {
    padding-bottom: 210px !important;
  }

  .pb-lg-235 {
    padding-bottom: 235px !important;
  }

  .pb-lg-240 {
    padding-bottom: 240px !important;
  }

  .pb-lg-270 {
    padding-bottom: 270px !important;
  }

  .pb-lg-290 {
    padding-bottom: 290px !important;
  }

  .pb-lg-300 {
    padding-bottom: 300px !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 1px !important;
  }

  .ps-lg-2 {
    padding-left: 2px !important;
  }

  .ps-lg-3 {
    padding-left: 3px !important;
  }

  .ps-lg-4 {
    padding-left: 4px !important;
  }

  .ps-lg-5 {
    padding-left: 5px !important;
  }

  .ps-lg-6 {
    padding-left: 6px !important;
  }

  .ps-lg-7 {
    padding-left: 7px !important;
  }

  .ps-lg-8 {
    padding-left: 8px !important;
  }

  .ps-lg-9 {
    padding-left: 9px !important;
  }

  .ps-lg-10 {
    padding-left: 10px !important;
  }

  .ps-lg-11 {
    padding-left: 11px !important;
  }

  .ps-lg-12 {
    padding-left: 12px !important;
  }

  .ps-lg-13 {
    padding-left: 13px !important;
  }

  .ps-lg-15 {
    padding-left: 15px !important;
  }

  .ps-lg-17 {
    padding-left: 17px !important;
  }

  .ps-lg-18 {
    padding-left: 18px !important;
  }

  .ps-lg-20 {
    padding-left: 20px !important;
  }

  .ps-lg-25 {
    padding-left: 25px !important;
  }

  .ps-lg-30 {
    padding-left: 30px !important;
  }

  .ps-lg-35 {
    padding-left: 35px !important;
  }

  .ps-lg-40 {
    padding-left: 40px !important;
  }

  .ps-lg-45 {
    padding-left: 45px !important;
  }

  .ps-lg-50 {
    padding-left: 50px !important;
  }

  .ps-lg-55 {
    padding-left: 55px !important;
  }

  .ps-lg-60 {
    padding-left: 60px !important;
  }

  .ps-lg-65 {
    padding-left: 65px !important;
  }

  .ps-lg-70 {
    padding-left: 70px !important;
  }

  .ps-lg-75 {
    padding-left: 75px !important;
  }

  .ps-lg-80 {
    padding-left: 80px !important;
  }

  .ps-lg-90 {
    padding-left: 90px !important;
  }

  .ps-lg-95 {
    padding-left: 95px !important;
  }

  .ps-lg-100 {
    padding-left: 100px !important;
  }

  .ps-lg-110 {
    padding-left: 110px !important;
  }

  .ps-lg-115 {
    padding-left: 115px !important;
  }

  .ps-lg-120 {
    padding-left: 120px !important;
  }

  .ps-lg-130 {
    padding-left: 130px !important;
  }

  .ps-lg-150 {
    padding-left: 150px !important;
  }

  .ps-lg-160 {
    padding-left: 160px !important;
  }

  .ps-lg-180 {
    padding-left: 180px !important;
  }

  .ps-lg-190 {
    padding-left: 190px !important;
  }

  .ps-lg-200 {
    padding-left: 200px !important;
  }

  .ps-lg-210 {
    padding-left: 210px !important;
  }

  .ps-lg-235 {
    padding-left: 235px !important;
  }

  .ps-lg-240 {
    padding-left: 240px !important;
  }

  .ps-lg-270 {
    padding-left: 270px !important;
  }

  .ps-lg-290 {
    padding-left: 290px !important;
  }

  .ps-lg-300 {
    padding-left: 300px !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

  .text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .float-xl-start {
    float: left !important;
  }

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

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

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

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

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

  .d-xl-grid {
    display: grid !important;
  }

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

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

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

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

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

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

  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

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

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

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

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

  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xl-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }

  .flex-xl-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }

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

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

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

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 1px !important;
  }

  .gap-xl-2 {
    gap: 2px !important;
  }

  .gap-xl-3 {
    gap: 3px !important;
  }

  .gap-xl-4 {
    gap: 4px !important;
  }

  .gap-xl-5 {
    gap: 5px !important;
  }

  .gap-xl-6 {
    gap: 6px !important;
  }

  .gap-xl-7 {
    gap: 7px !important;
  }

  .gap-xl-8 {
    gap: 8px !important;
  }

  .gap-xl-9 {
    gap: 9px !important;
  }

  .gap-xl-10 {
    gap: 10px !important;
  }

  .gap-xl-11 {
    gap: 11px !important;
  }

  .gap-xl-12 {
    gap: 12px !important;
  }

  .gap-xl-13 {
    gap: 13px !important;
  }

  .gap-xl-15 {
    gap: 15px !important;
  }

  .gap-xl-17 {
    gap: 17px !important;
  }

  .gap-xl-18 {
    gap: 18px !important;
  }

  .gap-xl-20 {
    gap: 20px !important;
  }

  .gap-xl-25 {
    gap: 25px !important;
  }

  .gap-xl-30 {
    gap: 30px !important;
  }

  .gap-xl-35 {
    gap: 35px !important;
  }

  .gap-xl-40 {
    gap: 40px !important;
  }

  .gap-xl-45 {
    gap: 45px !important;
  }

  .gap-xl-50 {
    gap: 50px !important;
  }

  .gap-xl-55 {
    gap: 55px !important;
  }

  .gap-xl-60 {
    gap: 60px !important;
  }

  .gap-xl-65 {
    gap: 65px !important;
  }

  .gap-xl-70 {
    gap: 70px !important;
  }

  .gap-xl-75 {
    gap: 75px !important;
  }

  .gap-xl-80 {
    gap: 80px !important;
  }

  .gap-xl-90 {
    gap: 90px !important;
  }

  .gap-xl-95 {
    gap: 95px !important;
  }

  .gap-xl-100 {
    gap: 100px !important;
  }

  .gap-xl-110 {
    gap: 110px !important;
  }

  .gap-xl-115 {
    gap: 115px !important;
  }

  .gap-xl-120 {
    gap: 120px !important;
  }

  .gap-xl-130 {
    gap: 130px !important;
  }

  .gap-xl-150 {
    gap: 150px !important;
  }

  .gap-xl-160 {
    gap: 160px !important;
  }

  .gap-xl-180 {
    gap: 180px !important;
  }

  .gap-xl-190 {
    gap: 190px !important;
  }

  .gap-xl-200 {
    gap: 200px !important;
  }

  .gap-xl-210 {
    gap: 210px !important;
  }

  .gap-xl-235 {
    gap: 235px !important;
  }

  .gap-xl-240 {
    gap: 240px !important;
  }

  .gap-xl-270 {
    gap: 270px !important;
  }

  .gap-xl-290 {
    gap: 290px !important;
  }

  .gap-xl-300 {
    gap: 300px !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-xl-first {
    -webkit-box-ordinal-group: 0 !important;
    -webkit-order: -1 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-xl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -webkit-order: 0 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-xl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -webkit-order: 1 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-xl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -webkit-order: 2 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-xl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -webkit-order: 3 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-xl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -webkit-order: 4 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-xl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -webkit-order: 5 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-xl-last {
    -webkit-box-ordinal-group: 7 !important;
    -webkit-order: 6 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

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

  .m-xl-1 {
    margin: 1px !important;
  }

  .m-xl-2 {
    margin: 2px !important;
  }

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

  .m-xl-4 {
    margin: 4px !important;
  }

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

  .m-xl-6 {
    margin: 6px !important;
  }

  .m-xl-7 {
    margin: 7px !important;
  }

  .m-xl-8 {
    margin: 8px !important;
  }

  .m-xl-9 {
    margin: 9px !important;
  }

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

  .m-xl-11 {
    margin: 11px !important;
  }

  .m-xl-12 {
    margin: 12px !important;
  }

  .m-xl-13 {
    margin: 13px !important;
  }

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

  .m-xl-17 {
    margin: 17px !important;
  }

  .m-xl-18 {
    margin: 18px !important;
  }

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

  .m-xl-25 {
    margin: 25px !important;
  }

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

  .m-xl-35 {
    margin: 35px !important;
  }

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

  .m-xl-45 {
    margin: 45px !important;
  }

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

  .m-xl-55 {
    margin: 55px !important;
  }

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

  .m-xl-65 {
    margin: 65px !important;
  }

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

  .m-xl-75 {
    margin: 75px !important;
  }

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

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

  .m-xl-95 {
    margin: 95px !important;
  }

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

  .m-xl-110 {
    margin: 110px !important;
  }

  .m-xl-115 {
    margin: 115px !important;
  }

  .m-xl-120 {
    margin: 120px !important;
  }

  .m-xl-130 {
    margin: 130px !important;
  }

  .m-xl-150 {
    margin: 150px !important;
  }

  .m-xl-160 {
    margin: 160px !important;
  }

  .m-xl-180 {
    margin: 180px !important;
  }

  .m-xl-190 {
    margin: 190px !important;
  }

  .m-xl-200 {
    margin: 200px !important;
  }

  .m-xl-210 {
    margin: 210px !important;
  }

  .m-xl-235 {
    margin: 235px !important;
  }

  .m-xl-240 {
    margin: 240px !important;
  }

  .m-xl-270 {
    margin: 270px !important;
  }

  .m-xl-290 {
    margin: 290px !important;
  }

  .m-xl-300 {
    margin: 300px !important;
  }

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

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 1px !important;
    margin-left: 1px !important;
  }

  .mx-xl-2 {
    margin-right: 2px !important;
    margin-left: 2px !important;
  }

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

  .mx-xl-4 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  .mx-xl-5 {
    margin-right: 5px !important;
    margin-left: 5px !important;
  }

  .mx-xl-6 {
    margin-right: 6px !important;
    margin-left: 6px !important;
  }

  .mx-xl-7 {
    margin-right: 7px !important;
    margin-left: 7px !important;
  }

  .mx-xl-8 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  .mx-xl-9 {
    margin-right: 9px !important;
    margin-left: 9px !important;
  }

  .mx-xl-10 {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }

  .mx-xl-11 {
    margin-right: 11px !important;
    margin-left: 11px !important;
  }

  .mx-xl-12 {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }

  .mx-xl-13 {
    margin-right: 13px !important;
    margin-left: 13px !important;
  }

  .mx-xl-15 {
    margin-right: 15px !important;
    margin-left: 15px !important;
  }

  .mx-xl-17 {
    margin-right: 17px !important;
    margin-left: 17px !important;
  }

  .mx-xl-18 {
    margin-right: 18px !important;
    margin-left: 18px !important;
  }

  .mx-xl-20 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }

  .mx-xl-25 {
    margin-right: 25px !important;
    margin-left: 25px !important;
  }

  .mx-xl-30 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }

  .mx-xl-35 {
    margin-right: 35px !important;
    margin-left: 35px !important;
  }

  .mx-xl-40 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .mx-xl-45 {
    margin-right: 45px !important;
    margin-left: 45px !important;
  }

  .mx-xl-50 {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }

  .mx-xl-55 {
    margin-right: 55px !important;
    margin-left: 55px !important;
  }

  .mx-xl-60 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }

  .mx-xl-65 {
    margin-right: 65px !important;
    margin-left: 65px !important;
  }

  .mx-xl-70 {
    margin-right: 70px !important;
    margin-left: 70px !important;
  }

  .mx-xl-75 {
    margin-right: 75px !important;
    margin-left: 75px !important;
  }

  .mx-xl-80 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }

  .mx-xl-90 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }

  .mx-xl-95 {
    margin-right: 95px !important;
    margin-left: 95px !important;
  }

  .mx-xl-100 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }

  .mx-xl-110 {
    margin-right: 110px !important;
    margin-left: 110px !important;
  }

  .mx-xl-115 {
    margin-right: 115px !important;
    margin-left: 115px !important;
  }

  .mx-xl-120 {
    margin-right: 120px !important;
    margin-left: 120px !important;
  }

  .mx-xl-130 {
    margin-right: 130px !important;
    margin-left: 130px !important;
  }

  .mx-xl-150 {
    margin-right: 150px !important;
    margin-left: 150px !important;
  }

  .mx-xl-160 {
    margin-right: 160px !important;
    margin-left: 160px !important;
  }

  .mx-xl-180 {
    margin-right: 180px !important;
    margin-left: 180px !important;
  }

  .mx-xl-190 {
    margin-right: 190px !important;
    margin-left: 190px !important;
  }

  .mx-xl-200 {
    margin-right: 200px !important;
    margin-left: 200px !important;
  }

  .mx-xl-210 {
    margin-right: 210px !important;
    margin-left: 210px !important;
  }

  .mx-xl-235 {
    margin-right: 235px !important;
    margin-left: 235px !important;
  }

  .mx-xl-240 {
    margin-right: 240px !important;
    margin-left: 240px !important;
  }

  .mx-xl-270 {
    margin-right: 270px !important;
    margin-left: 270px !important;
  }

  .mx-xl-290 {
    margin-right: 290px !important;
    margin-left: 290px !important;
  }

  .mx-xl-300 {
    margin-right: 300px !important;
    margin-left: 300px !important;
  }

  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xl-1 {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .my-xl-2 {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }

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

  .my-xl-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .my-xl-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  .my-xl-6 {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }

  .my-xl-7 {
    margin-top: 7px !important;
    margin-bottom: 7px !important;
  }

  .my-xl-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .my-xl-9 {
    margin-top: 9px !important;
    margin-bottom: 9px !important;
  }

  .my-xl-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .my-xl-11 {
    margin-top: 11px !important;
    margin-bottom: 11px !important;
  }

  .my-xl-12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .my-xl-13 {
    margin-top: 13px !important;
    margin-bottom: 13px !important;
  }

  .my-xl-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }

  .my-xl-17 {
    margin-top: 17px !important;
    margin-bottom: 17px !important;
  }

  .my-xl-18 {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }

  .my-xl-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .my-xl-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }

  .my-xl-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  .my-xl-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }

  .my-xl-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .my-xl-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }

  .my-xl-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }

  .my-xl-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }

  .my-xl-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }

  .my-xl-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }

  .my-xl-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }

  .my-xl-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }

  .my-xl-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .my-xl-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }

  .my-xl-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }

  .my-xl-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .my-xl-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }

  .my-xl-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }

  .my-xl-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }

  .my-xl-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }

  .my-xl-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }

  .my-xl-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .my-xl-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }

  .my-xl-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }

  .my-xl-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }

  .my-xl-210 {
    margin-top: 210px !important;
    margin-bottom: 210px !important;
  }

  .my-xl-235 {
    margin-top: 235px !important;
    margin-bottom: 235px !important;
  }

  .my-xl-240 {
    margin-top: 240px !important;
    margin-bottom: 240px !important;
  }

  .my-xl-270 {
    margin-top: 270px !important;
    margin-bottom: 270px !important;
  }

  .my-xl-290 {
    margin-top: 290px !important;
    margin-bottom: 290px !important;
  }

  .my-xl-300 {
    margin-top: 300px !important;
    margin-bottom: 300px !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

  .mt-xl-1 {
    margin-top: 1px !important;
  }

  .mt-xl-2 {
    margin-top: 2px !important;
  }

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

  .mt-xl-4 {
    margin-top: 4px !important;
  }

  .mt-xl-5 {
    margin-top: 5px !important;
  }

  .mt-xl-6 {
    margin-top: 6px !important;
  }

  .mt-xl-7 {
    margin-top: 7px !important;
  }

  .mt-xl-8 {
    margin-top: 8px !important;
  }

  .mt-xl-9 {
    margin-top: 9px !important;
  }

  .mt-xl-10 {
    margin-top: 10px !important;
  }

  .mt-xl-11 {
    margin-top: 11px !important;
  }

  .mt-xl-12 {
    margin-top: 12px !important;
  }

  .mt-xl-13 {
    margin-top: 13px !important;
  }

  .mt-xl-15 {
    margin-top: 15px !important;
  }

  .mt-xl-17 {
    margin-top: 17px !important;
  }

  .mt-xl-18 {
    margin-top: 18px !important;
  }

  .mt-xl-20 {
    margin-top: 20px !important;
  }

  .mt-xl-25 {
    margin-top: 25px !important;
  }

  .mt-xl-30 {
    margin-top: 30px !important;
  }

  .mt-xl-35 {
    margin-top: 35px !important;
  }

  .mt-xl-40 {
    margin-top: 40px !important;
  }

  .mt-xl-45 {
    margin-top: 45px !important;
  }

  .mt-xl-50 {
    margin-top: 50px !important;
  }

  .mt-xl-55 {
    margin-top: 55px !important;
  }

  .mt-xl-60 {
    margin-top: 60px !important;
  }

  .mt-xl-65 {
    margin-top: 65px !important;
  }

  .mt-xl-70 {
    margin-top: 70px !important;
  }

  .mt-xl-75 {
    margin-top: 75px !important;
  }

  .mt-xl-80 {
    margin-top: 80px !important;
  }

  .mt-xl-90 {
    margin-top: 90px !important;
  }

  .mt-xl-95 {
    margin-top: 95px !important;
  }

  .mt-xl-100 {
    margin-top: 100px !important;
  }

  .mt-xl-110 {
    margin-top: 110px !important;
  }

  .mt-xl-115 {
    margin-top: 115px !important;
  }

  .mt-xl-120 {
    margin-top: 120px !important;
  }

  .mt-xl-130 {
    margin-top: 130px !important;
  }

  .mt-xl-150 {
    margin-top: 150px !important;
  }

  .mt-xl-160 {
    margin-top: 160px !important;
  }

  .mt-xl-180 {
    margin-top: 180px !important;
  }

  .mt-xl-190 {
    margin-top: 190px !important;
  }

  .mt-xl-200 {
    margin-top: 200px !important;
  }

  .mt-xl-210 {
    margin-top: 210px !important;
  }

  .mt-xl-235 {
    margin-top: 235px !important;
  }

  .mt-xl-240 {
    margin-top: 240px !important;
  }

  .mt-xl-270 {
    margin-top: 270px !important;
  }

  .mt-xl-290 {
    margin-top: 290px !important;
  }

  .mt-xl-300 {
    margin-top: 300px !important;
  }

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

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 1px !important;
  }

  .me-xl-2 {
    margin-right: 2px !important;
  }

  .me-xl-3 {
    margin-right: 3px !important;
  }

  .me-xl-4 {
    margin-right: 4px !important;
  }

  .me-xl-5 {
    margin-right: 5px !important;
  }

  .me-xl-6 {
    margin-right: 6px !important;
  }

  .me-xl-7 {
    margin-right: 7px !important;
  }

  .me-xl-8 {
    margin-right: 8px !important;
  }

  .me-xl-9 {
    margin-right: 9px !important;
  }

  .me-xl-10 {
    margin-right: 10px !important;
  }

  .me-xl-11 {
    margin-right: 11px !important;
  }

  .me-xl-12 {
    margin-right: 12px !important;
  }

  .me-xl-13 {
    margin-right: 13px !important;
  }

  .me-xl-15 {
    margin-right: 15px !important;
  }

  .me-xl-17 {
    margin-right: 17px !important;
  }

  .me-xl-18 {
    margin-right: 18px !important;
  }

  .me-xl-20 {
    margin-right: 20px !important;
  }

  .me-xl-25 {
    margin-right: 25px !important;
  }

  .me-xl-30 {
    margin-right: 30px !important;
  }

  .me-xl-35 {
    margin-right: 35px !important;
  }

  .me-xl-40 {
    margin-right: 40px !important;
  }

  .me-xl-45 {
    margin-right: 45px !important;
  }

  .me-xl-50 {
    margin-right: 50px !important;
  }

  .me-xl-55 {
    margin-right: 55px !important;
  }

  .me-xl-60 {
    margin-right: 60px !important;
  }

  .me-xl-65 {
    margin-right: 65px !important;
  }

  .me-xl-70 {
    margin-right: 70px !important;
  }

  .me-xl-75 {
    margin-right: 75px !important;
  }

  .me-xl-80 {
    margin-right: 80px !important;
  }

  .me-xl-90 {
    margin-right: 90px !important;
  }

  .me-xl-95 {
    margin-right: 95px !important;
  }

  .me-xl-100 {
    margin-right: 100px !important;
  }

  .me-xl-110 {
    margin-right: 110px !important;
  }

  .me-xl-115 {
    margin-right: 115px !important;
  }

  .me-xl-120 {
    margin-right: 120px !important;
  }

  .me-xl-130 {
    margin-right: 130px !important;
  }

  .me-xl-150 {
    margin-right: 150px !important;
  }

  .me-xl-160 {
    margin-right: 160px !important;
  }

  .me-xl-180 {
    margin-right: 180px !important;
  }

  .me-xl-190 {
    margin-right: 190px !important;
  }

  .me-xl-200 {
    margin-right: 200px !important;
  }

  .me-xl-210 {
    margin-right: 210px !important;
  }

  .me-xl-235 {
    margin-right: 235px !important;
  }

  .me-xl-240 {
    margin-right: 240px !important;
  }

  .me-xl-270 {
    margin-right: 270px !important;
  }

  .me-xl-290 {
    margin-right: 290px !important;
  }

  .me-xl-300 {
    margin-right: 300px !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

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

  .mb-xl-1 {
    margin-bottom: 1px !important;
  }

  .mb-xl-2 {
    margin-bottom: 2px !important;
  }

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

  .mb-xl-4 {
    margin-bottom: 4px !important;
  }

  .mb-xl-5 {
    margin-bottom: 5px !important;
  }

  .mb-xl-6 {
    margin-bottom: 6px !important;
  }

  .mb-xl-7 {
    margin-bottom: 7px !important;
  }

  .mb-xl-8 {
    margin-bottom: 8px !important;
  }

  .mb-xl-9 {
    margin-bottom: 9px !important;
  }

  .mb-xl-10 {
    margin-bottom: 10px !important;
  }

  .mb-xl-11 {
    margin-bottom: 11px !important;
  }

  .mb-xl-12 {
    margin-bottom: 12px !important;
  }

  .mb-xl-13 {
    margin-bottom: 13px !important;
  }

  .mb-xl-15 {
    margin-bottom: 15px !important;
  }

  .mb-xl-17 {
    margin-bottom: 17px !important;
  }

  .mb-xl-18 {
    margin-bottom: 18px !important;
  }

  .mb-xl-20 {
    margin-bottom: 20px !important;
  }

  .mb-xl-25 {
    margin-bottom: 25px !important;
  }

  .mb-xl-30 {
    margin-bottom: 30px !important;
  }

  .mb-xl-35 {
    margin-bottom: 35px !important;
  }

  .mb-xl-40 {
    margin-bottom: 40px !important;
  }

  .mb-xl-45 {
    margin-bottom: 45px !important;
  }

  .mb-xl-50 {
    margin-bottom: 50px !important;
  }

  .mb-xl-55 {
    margin-bottom: 55px !important;
  }

  .mb-xl-60 {
    margin-bottom: 60px !important;
  }

  .mb-xl-65 {
    margin-bottom: 65px !important;
  }

  .mb-xl-70 {
    margin-bottom: 70px !important;
  }

  .mb-xl-75 {
    margin-bottom: 75px !important;
  }

  .mb-xl-80 {
    margin-bottom: 80px !important;
  }

  .mb-xl-90 {
    margin-bottom: 90px !important;
  }

  .mb-xl-95 {
    margin-bottom: 95px !important;
  }

  .mb-xl-100 {
    margin-bottom: 100px !important;
  }

  .mb-xl-110 {
    margin-bottom: 110px !important;
  }

  .mb-xl-115 {
    margin-bottom: 115px !important;
  }

  .mb-xl-120 {
    margin-bottom: 120px !important;
  }

  .mb-xl-130 {
    margin-bottom: 130px !important;
  }

  .mb-xl-150 {
    margin-bottom: 150px !important;
  }

  .mb-xl-160 {
    margin-bottom: 160px !important;
  }

  .mb-xl-180 {
    margin-bottom: 180px !important;
  }

  .mb-xl-190 {
    margin-bottom: 190px !important;
  }

  .mb-xl-200 {
    margin-bottom: 200px !important;
  }

  .mb-xl-210 {
    margin-bottom: 210px !important;
  }

  .mb-xl-235 {
    margin-bottom: 235px !important;
  }

  .mb-xl-240 {
    margin-bottom: 240px !important;
  }

  .mb-xl-270 {
    margin-bottom: 270px !important;
  }

  .mb-xl-290 {
    margin-bottom: 290px !important;
  }

  .mb-xl-300 {
    margin-bottom: 300px !important;
  }

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

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 1px !important;
  }

  .ms-xl-2 {
    margin-left: 2px !important;
  }

  .ms-xl-3 {
    margin-left: 3px !important;
  }

  .ms-xl-4 {
    margin-left: 4px !important;
  }

  .ms-xl-5 {
    margin-left: 5px !important;
  }

  .ms-xl-6 {
    margin-left: 6px !important;
  }

  .ms-xl-7 {
    margin-left: 7px !important;
  }

  .ms-xl-8 {
    margin-left: 8px !important;
  }

  .ms-xl-9 {
    margin-left: 9px !important;
  }

  .ms-xl-10 {
    margin-left: 10px !important;
  }

  .ms-xl-11 {
    margin-left: 11px !important;
  }

  .ms-xl-12 {
    margin-left: 12px !important;
  }

  .ms-xl-13 {
    margin-left: 13px !important;
  }

  .ms-xl-15 {
    margin-left: 15px !important;
  }

  .ms-xl-17 {
    margin-left: 17px !important;
  }

  .ms-xl-18 {
    margin-left: 18px !important;
  }

  .ms-xl-20 {
    margin-left: 20px !important;
  }

  .ms-xl-25 {
    margin-left: 25px !important;
  }

  .ms-xl-30 {
    margin-left: 30px !important;
  }

  .ms-xl-35 {
    margin-left: 35px !important;
  }

  .ms-xl-40 {
    margin-left: 40px !important;
  }

  .ms-xl-45 {
    margin-left: 45px !important;
  }

  .ms-xl-50 {
    margin-left: 50px !important;
  }

  .ms-xl-55 {
    margin-left: 55px !important;
  }

  .ms-xl-60 {
    margin-left: 60px !important;
  }

  .ms-xl-65 {
    margin-left: 65px !important;
  }

  .ms-xl-70 {
    margin-left: 70px !important;
  }

  .ms-xl-75 {
    margin-left: 75px !important;
  }

  .ms-xl-80 {
    margin-left: 80px !important;
  }

  .ms-xl-90 {
    margin-left: 90px !important;
  }

  .ms-xl-95 {
    margin-left: 95px !important;
  }

  .ms-xl-100 {
    margin-left: 100px !important;
  }

  .ms-xl-110 {
    margin-left: 110px !important;
  }

  .ms-xl-115 {
    margin-left: 115px !important;
  }

  .ms-xl-120 {
    margin-left: 120px !important;
  }

  .ms-xl-130 {
    margin-left: 130px !important;
  }

  .ms-xl-150 {
    margin-left: 150px !important;
  }

  .ms-xl-160 {
    margin-left: 160px !important;
  }

  .ms-xl-180 {
    margin-left: 180px !important;
  }

  .ms-xl-190 {
    margin-left: 190px !important;
  }

  .ms-xl-200 {
    margin-left: 200px !important;
  }

  .ms-xl-210 {
    margin-left: 210px !important;
  }

  .ms-xl-235 {
    margin-left: 235px !important;
  }

  .ms-xl-240 {
    margin-left: 240px !important;
  }

  .ms-xl-270 {
    margin-left: 270px !important;
  }

  .ms-xl-290 {
    margin-left: 290px !important;
  }

  .ms-xl-300 {
    margin-left: 300px !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .m-xl-n1 {
    margin: -1px !important;
  }

  .m-xl-n2 {
    margin: -2px !important;
  }

  .m-xl-n3 {
    margin: -3px !important;
  }

  .m-xl-n4 {
    margin: -4px !important;
  }

  .m-xl-n5 {
    margin: -5px !important;
  }

  .m-xl-n6 {
    margin: -6px !important;
  }

  .m-xl-n7 {
    margin: -7px !important;
  }

  .m-xl-n8 {
    margin: -8px !important;
  }

  .m-xl-n9 {
    margin: -9px !important;
  }

  .m-xl-n10 {
    margin: -10px !important;
  }

  .m-xl-n11 {
    margin: -11px !important;
  }

  .m-xl-n12 {
    margin: -12px !important;
  }

  .m-xl-n13 {
    margin: -13px !important;
  }

  .m-xl-n15 {
    margin: -15px !important;
  }

  .m-xl-n17 {
    margin: -17px !important;
  }

  .m-xl-n18 {
    margin: -18px !important;
  }

  .m-xl-n20 {
    margin: -20px !important;
  }

  .m-xl-n25 {
    margin: -25px !important;
  }

  .m-xl-n30 {
    margin: -30px !important;
  }

  .m-xl-n35 {
    margin: -35px !important;
  }

  .m-xl-n40 {
    margin: -40px !important;
  }

  .m-xl-n45 {
    margin: -45px !important;
  }

  .m-xl-n50 {
    margin: -50px !important;
  }

  .m-xl-n55 {
    margin: -55px !important;
  }

  .m-xl-n60 {
    margin: -60px !important;
  }

  .m-xl-n65 {
    margin: -65px !important;
  }

  .m-xl-n70 {
    margin: -70px !important;
  }

  .m-xl-n75 {
    margin: -75px !important;
  }

  .m-xl-n80 {
    margin: -80px !important;
  }

  .m-xl-n90 {
    margin: -90px !important;
  }

  .m-xl-n95 {
    margin: -95px !important;
  }

  .m-xl-n100 {
    margin: -100px !important;
  }

  .m-xl-n110 {
    margin: -110px !important;
  }

  .m-xl-n115 {
    margin: -115px !important;
  }

  .m-xl-n120 {
    margin: -120px !important;
  }

  .m-xl-n130 {
    margin: -130px !important;
  }

  .m-xl-n150 {
    margin: -150px !important;
  }

  .m-xl-n160 {
    margin: -160px !important;
  }

  .m-xl-n180 {
    margin: -180px !important;
  }

  .m-xl-n190 {
    margin: -190px !important;
  }

  .m-xl-n200 {
    margin: -200px !important;
  }

  .m-xl-n210 {
    margin: -210px !important;
  }

  .m-xl-n235 {
    margin: -235px !important;
  }

  .m-xl-n240 {
    margin: -240px !important;
  }

  .m-xl-n270 {
    margin: -270px !important;
  }

  .m-xl-n290 {
    margin: -290px !important;
  }

  .m-xl-n300 {
    margin: -300px !important;
  }

  .mx-xl-n1 {
    margin-right: -1px !important;
    margin-left: -1px !important;
  }

  .mx-xl-n2 {
    margin-right: -2px !important;
    margin-left: -2px !important;
  }

  .mx-xl-n3 {
    margin-right: -3px !important;
    margin-left: -3px !important;
  }

  .mx-xl-n4 {
    margin-right: -4px !important;
    margin-left: -4px !important;
  }

  .mx-xl-n5 {
    margin-right: -5px !important;
    margin-left: -5px !important;
  }

  .mx-xl-n6 {
    margin-right: -6px !important;
    margin-left: -6px !important;
  }

  .mx-xl-n7 {
    margin-right: -7px !important;
    margin-left: -7px !important;
  }

  .mx-xl-n8 {
    margin-right: -8px !important;
    margin-left: -8px !important;
  }

  .mx-xl-n9 {
    margin-right: -9px !important;
    margin-left: -9px !important;
  }

  .mx-xl-n10 {
    margin-right: -10px !important;
    margin-left: -10px !important;
  }

  .mx-xl-n11 {
    margin-right: -11px !important;
    margin-left: -11px !important;
  }

  .mx-xl-n12 {
    margin-right: -12px !important;
    margin-left: -12px !important;
  }

  .mx-xl-n13 {
    margin-right: -13px !important;
    margin-left: -13px !important;
  }

  .mx-xl-n15 {
    margin-right: -15px !important;
    margin-left: -15px !important;
  }

  .mx-xl-n17 {
    margin-right: -17px !important;
    margin-left: -17px !important;
  }

  .mx-xl-n18 {
    margin-right: -18px !important;
    margin-left: -18px !important;
  }

  .mx-xl-n20 {
    margin-right: -20px !important;
    margin-left: -20px !important;
  }

  .mx-xl-n25 {
    margin-right: -25px !important;
    margin-left: -25px !important;
  }

  .mx-xl-n30 {
    margin-right: -30px !important;
    margin-left: -30px !important;
  }

  .mx-xl-n35 {
    margin-right: -35px !important;
    margin-left: -35px !important;
  }

  .mx-xl-n40 {
    margin-right: -40px !important;
    margin-left: -40px !important;
  }

  .mx-xl-n45 {
    margin-right: -45px !important;
    margin-left: -45px !important;
  }

  .mx-xl-n50 {
    margin-right: -50px !important;
    margin-left: -50px !important;
  }

  .mx-xl-n55 {
    margin-right: -55px !important;
    margin-left: -55px !important;
  }

  .mx-xl-n60 {
    margin-right: -60px !important;
    margin-left: -60px !important;
  }

  .mx-xl-n65 {
    margin-right: -65px !important;
    margin-left: -65px !important;
  }

  .mx-xl-n70 {
    margin-right: -70px !important;
    margin-left: -70px !important;
  }

  .mx-xl-n75 {
    margin-right: -75px !important;
    margin-left: -75px !important;
  }

  .mx-xl-n80 {
    margin-right: -80px !important;
    margin-left: -80px !important;
  }

  .mx-xl-n90 {
    margin-right: -90px !important;
    margin-left: -90px !important;
  }

  .mx-xl-n95 {
    margin-right: -95px !important;
    margin-left: -95px !important;
  }

  .mx-xl-n100 {
    margin-right: -100px !important;
    margin-left: -100px !important;
  }

  .mx-xl-n110 {
    margin-right: -110px !important;
    margin-left: -110px !important;
  }

  .mx-xl-n115 {
    margin-right: -115px !important;
    margin-left: -115px !important;
  }

  .mx-xl-n120 {
    margin-right: -120px !important;
    margin-left: -120px !important;
  }

  .mx-xl-n130 {
    margin-right: -130px !important;
    margin-left: -130px !important;
  }

  .mx-xl-n150 {
    margin-right: -150px !important;
    margin-left: -150px !important;
  }

  .mx-xl-n160 {
    margin-right: -160px !important;
    margin-left: -160px !important;
  }

  .mx-xl-n180 {
    margin-right: -180px !important;
    margin-left: -180px !important;
  }

  .mx-xl-n190 {
    margin-right: -190px !important;
    margin-left: -190px !important;
  }

  .mx-xl-n200 {
    margin-right: -200px !important;
    margin-left: -200px !important;
  }

  .mx-xl-n210 {
    margin-right: -210px !important;
    margin-left: -210px !important;
  }

  .mx-xl-n235 {
    margin-right: -235px !important;
    margin-left: -235px !important;
  }

  .mx-xl-n240 {
    margin-right: -240px !important;
    margin-left: -240px !important;
  }

  .mx-xl-n270 {
    margin-right: -270px !important;
    margin-left: -270px !important;
  }

  .mx-xl-n290 {
    margin-right: -290px !important;
    margin-left: -290px !important;
  }

  .mx-xl-n300 {
    margin-right: -300px !important;
    margin-left: -300px !important;
  }

  .my-xl-n1 {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .my-xl-n2 {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
  }

  .my-xl-n3 {
    margin-top: -3px !important;
    margin-bottom: -3px !important;
  }

  .my-xl-n4 {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }

  .my-xl-n5 {
    margin-top: -5px !important;
    margin-bottom: -5px !important;
  }

  .my-xl-n6 {
    margin-top: -6px !important;
    margin-bottom: -6px !important;
  }

  .my-xl-n7 {
    margin-top: -7px !important;
    margin-bottom: -7px !important;
  }

  .my-xl-n8 {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }

  .my-xl-n9 {
    margin-top: -9px !important;
    margin-bottom: -9px !important;
  }

  .my-xl-n10 {
    margin-top: -10px !important;
    margin-bottom: -10px !important;
  }

  .my-xl-n11 {
    margin-top: -11px !important;
    margin-bottom: -11px !important;
  }

  .my-xl-n12 {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }

  .my-xl-n13 {
    margin-top: -13px !important;
    margin-bottom: -13px !important;
  }

  .my-xl-n15 {
    margin-top: -15px !important;
    margin-bottom: -15px !important;
  }

  .my-xl-n17 {
    margin-top: -17px !important;
    margin-bottom: -17px !important;
  }

  .my-xl-n18 {
    margin-top: -18px !important;
    margin-bottom: -18px !important;
  }

  .my-xl-n20 {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }

  .my-xl-n25 {
    margin-top: -25px !important;
    margin-bottom: -25px !important;
  }

  .my-xl-n30 {
    margin-top: -30px !important;
    margin-bottom: -30px !important;
  }

  .my-xl-n35 {
    margin-top: -35px !important;
    margin-bottom: -35px !important;
  }

  .my-xl-n40 {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }

  .my-xl-n45 {
    margin-top: -45px !important;
    margin-bottom: -45px !important;
  }

  .my-xl-n50 {
    margin-top: -50px !important;
    margin-bottom: -50px !important;
  }

  .my-xl-n55 {
    margin-top: -55px !important;
    margin-bottom: -55px !important;
  }

  .my-xl-n60 {
    margin-top: -60px !important;
    margin-bottom: -60px !important;
  }

  .my-xl-n65 {
    margin-top: -65px !important;
    margin-bottom: -65px !important;
  }

  .my-xl-n70 {
    margin-top: -70px !important;
    margin-bottom: -70px !important;
  }

  .my-xl-n75 {
    margin-top: -75px !important;
    margin-bottom: -75px !important;
  }

  .my-xl-n80 {
    margin-top: -80px !important;
    margin-bottom: -80px !important;
  }

  .my-xl-n90 {
    margin-top: -90px !important;
    margin-bottom: -90px !important;
  }

  .my-xl-n95 {
    margin-top: -95px !important;
    margin-bottom: -95px !important;
  }

  .my-xl-n100 {
    margin-top: -100px !important;
    margin-bottom: -100px !important;
  }

  .my-xl-n110 {
    margin-top: -110px !important;
    margin-bottom: -110px !important;
  }

  .my-xl-n115 {
    margin-top: -115px !important;
    margin-bottom: -115px !important;
  }

  .my-xl-n120 {
    margin-top: -120px !important;
    margin-bottom: -120px !important;
  }

  .my-xl-n130 {
    margin-top: -130px !important;
    margin-bottom: -130px !important;
  }

  .my-xl-n150 {
    margin-top: -150px !important;
    margin-bottom: -150px !important;
  }

  .my-xl-n160 {
    margin-top: -160px !important;
    margin-bottom: -160px !important;
  }

  .my-xl-n180 {
    margin-top: -180px !important;
    margin-bottom: -180px !important;
  }

  .my-xl-n190 {
    margin-top: -190px !important;
    margin-bottom: -190px !important;
  }

  .my-xl-n200 {
    margin-top: -200px !important;
    margin-bottom: -200px !important;
  }

  .my-xl-n210 {
    margin-top: -210px !important;
    margin-bottom: -210px !important;
  }

  .my-xl-n235 {
    margin-top: -235px !important;
    margin-bottom: -235px !important;
  }

  .my-xl-n240 {
    margin-top: -240px !important;
    margin-bottom: -240px !important;
  }

  .my-xl-n270 {
    margin-top: -270px !important;
    margin-bottom: -270px !important;
  }

  .my-xl-n290 {
    margin-top: -290px !important;
    margin-bottom: -290px !important;
  }

  .my-xl-n300 {
    margin-top: -300px !important;
    margin-bottom: -300px !important;
  }

  .mt-xl-n1 {
    margin-top: -1px !important;
  }

  .mt-xl-n2 {
    margin-top: -2px !important;
  }

  .mt-xl-n3 {
    margin-top: -3px !important;
  }

  .mt-xl-n4 {
    margin-top: -4px !important;
  }

  .mt-xl-n5 {
    margin-top: -5px !important;
  }

  .mt-xl-n6 {
    margin-top: -6px !important;
  }

  .mt-xl-n7 {
    margin-top: -7px !important;
  }

  .mt-xl-n8 {
    margin-top: -8px !important;
  }

  .mt-xl-n9 {
    margin-top: -9px !important;
  }

  .mt-xl-n10 {
    margin-top: -10px !important;
  }

  .mt-xl-n11 {
    margin-top: -11px !important;
  }

  .mt-xl-n12 {
    margin-top: -12px !important;
  }

  .mt-xl-n13 {
    margin-top: -13px !important;
  }

  .mt-xl-n15 {
    margin-top: -15px !important;
  }

  .mt-xl-n17 {
    margin-top: -17px !important;
  }

  .mt-xl-n18 {
    margin-top: -18px !important;
  }

  .mt-xl-n20 {
    margin-top: -20px !important;
  }

  .mt-xl-n25 {
    margin-top: -25px !important;
  }

  .mt-xl-n30 {
    margin-top: -30px !important;
  }

  .mt-xl-n35 {
    margin-top: -35px !important;
  }

  .mt-xl-n40 {
    margin-top: -40px !important;
  }

  .mt-xl-n45 {
    margin-top: -45px !important;
  }

  .mt-xl-n50 {
    margin-top: -50px !important;
  }

  .mt-xl-n55 {
    margin-top: -55px !important;
  }

  .mt-xl-n60 {
    margin-top: -60px !important;
  }

  .mt-xl-n65 {
    margin-top: -65px !important;
  }

  .mt-xl-n70 {
    margin-top: -70px !important;
  }

  .mt-xl-n75 {
    margin-top: -75px !important;
  }

  .mt-xl-n80 {
    margin-top: -80px !important;
  }

  .mt-xl-n90 {
    margin-top: -90px !important;
  }

  .mt-xl-n95 {
    margin-top: -95px !important;
  }

  .mt-xl-n100 {
    margin-top: -100px !important;
  }

  .mt-xl-n110 {
    margin-top: -110px !important;
  }

  .mt-xl-n115 {
    margin-top: -115px !important;
  }

  .mt-xl-n120 {
    margin-top: -120px !important;
  }

  .mt-xl-n130 {
    margin-top: -130px !important;
  }

  .mt-xl-n150 {
    margin-top: -150px !important;
  }

  .mt-xl-n160 {
    margin-top: -160px !important;
  }

  .mt-xl-n180 {
    margin-top: -180px !important;
  }

  .mt-xl-n190 {
    margin-top: -190px !important;
  }

  .mt-xl-n200 {
    margin-top: -200px !important;
  }

  .mt-xl-n210 {
    margin-top: -210px !important;
  }

  .mt-xl-n235 {
    margin-top: -235px !important;
  }

  .mt-xl-n240 {
    margin-top: -240px !important;
  }

  .mt-xl-n270 {
    margin-top: -270px !important;
  }

  .mt-xl-n290 {
    margin-top: -290px !important;
  }

  .mt-xl-n300 {
    margin-top: -300px !important;
  }

  .me-xl-n1 {
    margin-right: -1px !important;
  }

  .me-xl-n2 {
    margin-right: -2px !important;
  }

  .me-xl-n3 {
    margin-right: -3px !important;
  }

  .me-xl-n4 {
    margin-right: -4px !important;
  }

  .me-xl-n5 {
    margin-right: -5px !important;
  }

  .me-xl-n6 {
    margin-right: -6px !important;
  }

  .me-xl-n7 {
    margin-right: -7px !important;
  }

  .me-xl-n8 {
    margin-right: -8px !important;
  }

  .me-xl-n9 {
    margin-right: -9px !important;
  }

  .me-xl-n10 {
    margin-right: -10px !important;
  }

  .me-xl-n11 {
    margin-right: -11px !important;
  }

  .me-xl-n12 {
    margin-right: -12px !important;
  }

  .me-xl-n13 {
    margin-right: -13px !important;
  }

  .me-xl-n15 {
    margin-right: -15px !important;
  }

  .me-xl-n17 {
    margin-right: -17px !important;
  }

  .me-xl-n18 {
    margin-right: -18px !important;
  }

  .me-xl-n20 {
    margin-right: -20px !important;
  }

  .me-xl-n25 {
    margin-right: -25px !important;
  }

  .me-xl-n30 {
    margin-right: -30px !important;
  }

  .me-xl-n35 {
    margin-right: -35px !important;
  }

  .me-xl-n40 {
    margin-right: -40px !important;
  }

  .me-xl-n45 {
    margin-right: -45px !important;
  }

  .me-xl-n50 {
    margin-right: -50px !important;
  }

  .me-xl-n55 {
    margin-right: -55px !important;
  }

  .me-xl-n60 {
    margin-right: -60px !important;
  }

  .me-xl-n65 {
    margin-right: -65px !important;
  }

  .me-xl-n70 {
    margin-right: -70px !important;
  }

  .me-xl-n75 {
    margin-right: -75px !important;
  }

  .me-xl-n80 {
    margin-right: -80px !important;
  }

  .me-xl-n90 {
    margin-right: -90px !important;
  }

  .me-xl-n95 {
    margin-right: -95px !important;
  }

  .me-xl-n100 {
    margin-right: -100px !important;
  }

  .me-xl-n110 {
    margin-right: -110px !important;
  }

  .me-xl-n115 {
    margin-right: -115px !important;
  }

  .me-xl-n120 {
    margin-right: -120px !important;
  }

  .me-xl-n130 {
    margin-right: -130px !important;
  }

  .me-xl-n150 {
    margin-right: -150px !important;
  }

  .me-xl-n160 {
    margin-right: -160px !important;
  }

  .me-xl-n180 {
    margin-right: -180px !important;
  }

  .me-xl-n190 {
    margin-right: -190px !important;
  }

  .me-xl-n200 {
    margin-right: -200px !important;
  }

  .me-xl-n210 {
    margin-right: -210px !important;
  }

  .me-xl-n235 {
    margin-right: -235px !important;
  }

  .me-xl-n240 {
    margin-right: -240px !important;
  }

  .me-xl-n270 {
    margin-right: -270px !important;
  }

  .me-xl-n290 {
    margin-right: -290px !important;
  }

  .me-xl-n300 {
    margin-right: -300px !important;
  }

  .mb-xl-n1 {
    margin-bottom: -1px !important;
  }

  .mb-xl-n2 {
    margin-bottom: -2px !important;
  }

  .mb-xl-n3 {
    margin-bottom: -3px !important;
  }

  .mb-xl-n4 {
    margin-bottom: -4px !important;
  }

  .mb-xl-n5 {
    margin-bottom: -5px !important;
  }

  .mb-xl-n6 {
    margin-bottom: -6px !important;
  }

  .mb-xl-n7 {
    margin-bottom: -7px !important;
  }

  .mb-xl-n8 {
    margin-bottom: -8px !important;
  }

  .mb-xl-n9 {
    margin-bottom: -9px !important;
  }

  .mb-xl-n10 {
    margin-bottom: -10px !important;
  }

  .mb-xl-n11 {
    margin-bottom: -11px !important;
  }

  .mb-xl-n12 {
    margin-bottom: -12px !important;
  }

  .mb-xl-n13 {
    margin-bottom: -13px !important;
  }

  .mb-xl-n15 {
    margin-bottom: -15px !important;
  }

  .mb-xl-n17 {
    margin-bottom: -17px !important;
  }

  .mb-xl-n18 {
    margin-bottom: -18px !important;
  }

  .mb-xl-n20 {
    margin-bottom: -20px !important;
  }

  .mb-xl-n25 {
    margin-bottom: -25px !important;
  }

  .mb-xl-n30 {
    margin-bottom: -30px !important;
  }

  .mb-xl-n35 {
    margin-bottom: -35px !important;
  }

  .mb-xl-n40 {
    margin-bottom: -40px !important;
  }

  .mb-xl-n45 {
    margin-bottom: -45px !important;
  }

  .mb-xl-n50 {
    margin-bottom: -50px !important;
  }

  .mb-xl-n55 {
    margin-bottom: -55px !important;
  }

  .mb-xl-n60 {
    margin-bottom: -60px !important;
  }

  .mb-xl-n65 {
    margin-bottom: -65px !important;
  }

  .mb-xl-n70 {
    margin-bottom: -70px !important;
  }

  .mb-xl-n75 {
    margin-bottom: -75px !important;
  }

  .mb-xl-n80 {
    margin-bottom: -80px !important;
  }

  .mb-xl-n90 {
    margin-bottom: -90px !important;
  }

  .mb-xl-n95 {
    margin-bottom: -95px !important;
  }

  .mb-xl-n100 {
    margin-bottom: -100px !important;
  }

  .mb-xl-n110 {
    margin-bottom: -110px !important;
  }

  .mb-xl-n115 {
    margin-bottom: -115px !important;
  }

  .mb-xl-n120 {
    margin-bottom: -120px !important;
  }

  .mb-xl-n130 {
    margin-bottom: -130px !important;
  }

  .mb-xl-n150 {
    margin-bottom: -150px !important;
  }

  .mb-xl-n160 {
    margin-bottom: -160px !important;
  }

  .mb-xl-n180 {
    margin-bottom: -180px !important;
  }

  .mb-xl-n190 {
    margin-bottom: -190px !important;
  }

  .mb-xl-n200 {
    margin-bottom: -200px !important;
  }

  .mb-xl-n210 {
    margin-bottom: -210px !important;
  }

  .mb-xl-n235 {
    margin-bottom: -235px !important;
  }

  .mb-xl-n240 {
    margin-bottom: -240px !important;
  }

  .mb-xl-n270 {
    margin-bottom: -270px !important;
  }

  .mb-xl-n290 {
    margin-bottom: -290px !important;
  }

  .mb-xl-n300 {
    margin-bottom: -300px !important;
  }

  .ms-xl-n1 {
    margin-left: -1px !important;
  }

  .ms-xl-n2 {
    margin-left: -2px !important;
  }

  .ms-xl-n3 {
    margin-left: -3px !important;
  }

  .ms-xl-n4 {
    margin-left: -4px !important;
  }

  .ms-xl-n5 {
    margin-left: -5px !important;
  }

  .ms-xl-n6 {
    margin-left: -6px !important;
  }

  .ms-xl-n7 {
    margin-left: -7px !important;
  }

  .ms-xl-n8 {
    margin-left: -8px !important;
  }

  .ms-xl-n9 {
    margin-left: -9px !important;
  }

  .ms-xl-n10 {
    margin-left: -10px !important;
  }

  .ms-xl-n11 {
    margin-left: -11px !important;
  }

  .ms-xl-n12 {
    margin-left: -12px !important;
  }

  .ms-xl-n13 {
    margin-left: -13px !important;
  }

  .ms-xl-n15 {
    margin-left: -15px !important;
  }

  .ms-xl-n17 {
    margin-left: -17px !important;
  }

  .ms-xl-n18 {
    margin-left: -18px !important;
  }

  .ms-xl-n20 {
    margin-left: -20px !important;
  }

  .ms-xl-n25 {
    margin-left: -25px !important;
  }

  .ms-xl-n30 {
    margin-left: -30px !important;
  }

  .ms-xl-n35 {
    margin-left: -35px !important;
  }

  .ms-xl-n40 {
    margin-left: -40px !important;
  }

  .ms-xl-n45 {
    margin-left: -45px !important;
  }

  .ms-xl-n50 {
    margin-left: -50px !important;
  }

  .ms-xl-n55 {
    margin-left: -55px !important;
  }

  .ms-xl-n60 {
    margin-left: -60px !important;
  }

  .ms-xl-n65 {
    margin-left: -65px !important;
  }

  .ms-xl-n70 {
    margin-left: -70px !important;
  }

  .ms-xl-n75 {
    margin-left: -75px !important;
  }

  .ms-xl-n80 {
    margin-left: -80px !important;
  }

  .ms-xl-n90 {
    margin-left: -90px !important;
  }

  .ms-xl-n95 {
    margin-left: -95px !important;
  }

  .ms-xl-n100 {
    margin-left: -100px !important;
  }

  .ms-xl-n110 {
    margin-left: -110px !important;
  }

  .ms-xl-n115 {
    margin-left: -115px !important;
  }

  .ms-xl-n120 {
    margin-left: -120px !important;
  }

  .ms-xl-n130 {
    margin-left: -130px !important;
  }

  .ms-xl-n150 {
    margin-left: -150px !important;
  }

  .ms-xl-n160 {
    margin-left: -160px !important;
  }

  .ms-xl-n180 {
    margin-left: -180px !important;
  }

  .ms-xl-n190 {
    margin-left: -190px !important;
  }

  .ms-xl-n200 {
    margin-left: -200px !important;
  }

  .ms-xl-n210 {
    margin-left: -210px !important;
  }

  .ms-xl-n235 {
    margin-left: -235px !important;
  }

  .ms-xl-n240 {
    margin-left: -240px !important;
  }

  .ms-xl-n270 {
    margin-left: -270px !important;
  }

  .ms-xl-n290 {
    margin-left: -290px !important;
  }

  .ms-xl-n300 {
    margin-left: -300px !important;
  }

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

  .p-xl-1 {
    padding: 1px !important;
  }

  .p-xl-2 {
    padding: 2px !important;
  }

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

  .p-xl-4 {
    padding: 4px !important;
  }

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

  .p-xl-6 {
    padding: 6px !important;
  }

  .p-xl-7 {
    padding: 7px !important;
  }

  .p-xl-8 {
    padding: 8px !important;
  }

  .p-xl-9 {
    padding: 9px !important;
  }

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

  .p-xl-11 {
    padding: 11px !important;
  }

  .p-xl-12 {
    padding: 12px !important;
  }

  .p-xl-13 {
    padding: 13px !important;
  }

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

  .p-xl-17 {
    padding: 17px !important;
  }

  .p-xl-18 {
    padding: 18px !important;
  }

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

  .p-xl-25 {
    padding: 25px !important;
  }

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

  .p-xl-35 {
    padding: 35px !important;
  }

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

  .p-xl-45 {
    padding: 45px !important;
  }

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

  .p-xl-55 {
    padding: 55px !important;
  }

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

  .p-xl-65 {
    padding: 65px !important;
  }

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

  .p-xl-75 {
    padding: 75px !important;
  }

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

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

  .p-xl-95 {
    padding: 95px !important;
  }

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

  .p-xl-110 {
    padding: 110px !important;
  }

  .p-xl-115 {
    padding: 115px !important;
  }

  .p-xl-120 {
    padding: 120px !important;
  }

  .p-xl-130 {
    padding: 130px !important;
  }

  .p-xl-150 {
    padding: 150px !important;
  }

  .p-xl-160 {
    padding: 160px !important;
  }

  .p-xl-180 {
    padding: 180px !important;
  }

  .p-xl-190 {
    padding: 190px !important;
  }

  .p-xl-200 {
    padding: 200px !important;
  }

  .p-xl-210 {
    padding: 210px !important;
  }

  .p-xl-235 {
    padding: 235px !important;
  }

  .p-xl-240 {
    padding: 240px !important;
  }

  .p-xl-270 {
    padding: 270px !important;
  }

  .p-xl-290 {
    padding: 290px !important;
  }

  .p-xl-300 {
    padding: 300px !important;
  }

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

  .px-xl-1 {
    padding-right: 1px !important;
    padding-left: 1px !important;
  }

  .px-xl-2 {
    padding-right: 2px !important;
    padding-left: 2px !important;
  }

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

  .px-xl-4 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

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

  .px-xl-6 {
    padding-right: 6px !important;
    padding-left: 6px !important;
  }

  .px-xl-7 {
    padding-right: 7px !important;
    padding-left: 7px !important;
  }

  .px-xl-8 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .px-xl-9 {
    padding-right: 9px !important;
    padding-left: 9px !important;
  }

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

  .px-xl-11 {
    padding-right: 11px !important;
    padding-left: 11px !important;
  }

  .px-xl-12 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .px-xl-13 {
    padding-right: 13px !important;
    padding-left: 13px !important;
  }

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

  .px-xl-17 {
    padding-right: 17px !important;
    padding-left: 17px !important;
  }

  .px-xl-18 {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

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

  .px-xl-25 {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }

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

  .px-xl-35 {
    padding-right: 35px !important;
    padding-left: 35px !important;
  }

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

  .px-xl-45 {
    padding-right: 45px !important;
    padding-left: 45px !important;
  }

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

  .px-xl-55 {
    padding-right: 55px !important;
    padding-left: 55px !important;
  }

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

  .px-xl-65 {
    padding-right: 65px !important;
    padding-left: 65px !important;
  }

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

  .px-xl-75 {
    padding-right: 75px !important;
    padding-left: 75px !important;
  }

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

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

  .px-xl-95 {
    padding-right: 95px !important;
    padding-left: 95px !important;
  }

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

  .px-xl-110 {
    padding-right: 110px !important;
    padding-left: 110px !important;
  }

  .px-xl-115 {
    padding-right: 115px !important;
    padding-left: 115px !important;
  }

  .px-xl-120 {
    padding-right: 120px !important;
    padding-left: 120px !important;
  }

  .px-xl-130 {
    padding-right: 130px !important;
    padding-left: 130px !important;
  }

  .px-xl-150 {
    padding-right: 150px !important;
    padding-left: 150px !important;
  }

  .px-xl-160 {
    padding-right: 160px !important;
    padding-left: 160px !important;
  }

  .px-xl-180 {
    padding-right: 180px !important;
    padding-left: 180px !important;
  }

  .px-xl-190 {
    padding-right: 190px !important;
    padding-left: 190px !important;
  }

  .px-xl-200 {
    padding-right: 200px !important;
    padding-left: 200px !important;
  }

  .px-xl-210 {
    padding-right: 210px !important;
    padding-left: 210px !important;
  }

  .px-xl-235 {
    padding-right: 235px !important;
    padding-left: 235px !important;
  }

  .px-xl-240 {
    padding-right: 240px !important;
    padding-left: 240px !important;
  }

  .px-xl-270 {
    padding-right: 270px !important;
    padding-left: 270px !important;
  }

  .px-xl-290 {
    padding-right: 290px !important;
    padding-left: 290px !important;
  }

  .px-xl-300 {
    padding-right: 300px !important;
    padding-left: 300px !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .py-xl-2 {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

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

  .py-xl-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .py-xl-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .py-xl-6 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  .py-xl-7 {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }

  .py-xl-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .py-xl-9 {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }

  .py-xl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .py-xl-11 {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
  }

  .py-xl-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .py-xl-13 {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }

  .py-xl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  .py-xl-17 {
    padding-top: 17px !important;
    padding-bottom: 17px !important;
  }

  .py-xl-18 {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .py-xl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .py-xl-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  .py-xl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .py-xl-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .py-xl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .py-xl-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }

  .py-xl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .py-xl-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .py-xl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .py-xl-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }

  .py-xl-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .py-xl-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }

  .py-xl-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .py-xl-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }

  .py-xl-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }

  .py-xl-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .py-xl-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }

  .py-xl-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }

  .py-xl-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }

  .py-xl-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }

  .py-xl-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }

  .py-xl-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }

  .py-xl-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }

  .py-xl-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }

  .py-xl-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }

  .py-xl-210 {
    padding-top: 210px !important;
    padding-bottom: 210px !important;
  }

  .py-xl-235 {
    padding-top: 235px !important;
    padding-bottom: 235px !important;
  }

  .py-xl-240 {
    padding-top: 240px !important;
    padding-bottom: 240px !important;
  }

  .py-xl-270 {
    padding-top: 270px !important;
    padding-bottom: 270px !important;
  }

  .py-xl-290 {
    padding-top: 290px !important;
    padding-bottom: 290px !important;
  }

  .py-xl-300 {
    padding-top: 300px !important;
    padding-bottom: 300px !important;
  }

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

  .pt-xl-1 {
    padding-top: 1px !important;
  }

  .pt-xl-2 {
    padding-top: 2px !important;
  }

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

  .pt-xl-4 {
    padding-top: 4px !important;
  }

  .pt-xl-5 {
    padding-top: 5px !important;
  }

  .pt-xl-6 {
    padding-top: 6px !important;
  }

  .pt-xl-7 {
    padding-top: 7px !important;
  }

  .pt-xl-8 {
    padding-top: 8px !important;
  }

  .pt-xl-9 {
    padding-top: 9px !important;
  }

  .pt-xl-10 {
    padding-top: 10px !important;
  }

  .pt-xl-11 {
    padding-top: 11px !important;
  }

  .pt-xl-12 {
    padding-top: 12px !important;
  }

  .pt-xl-13 {
    padding-top: 13px !important;
  }

  .pt-xl-15 {
    padding-top: 15px !important;
  }

  .pt-xl-17 {
    padding-top: 17px !important;
  }

  .pt-xl-18 {
    padding-top: 18px !important;
  }

  .pt-xl-20 {
    padding-top: 20px !important;
  }

  .pt-xl-25 {
    padding-top: 25px !important;
  }

  .pt-xl-30 {
    padding-top: 30px !important;
  }

  .pt-xl-35 {
    padding-top: 35px !important;
  }

  .pt-xl-40 {
    padding-top: 40px !important;
  }

  .pt-xl-45 {
    padding-top: 45px !important;
  }

  .pt-xl-50 {
    padding-top: 50px !important;
  }

  .pt-xl-55 {
    padding-top: 55px !important;
  }

  .pt-xl-60 {
    padding-top: 60px !important;
  }

  .pt-xl-65 {
    padding-top: 65px !important;
  }

  .pt-xl-70 {
    padding-top: 70px !important;
  }

  .pt-xl-75 {
    padding-top: 75px !important;
  }

  .pt-xl-80 {
    padding-top: 80px !important;
  }

  .pt-xl-90 {
    padding-top: 90px !important;
  }

  .pt-xl-95 {
    padding-top: 95px !important;
  }

  .pt-xl-100 {
    padding-top: 100px !important;
  }

  .pt-xl-110 {
    padding-top: 110px !important;
  }

  .pt-xl-115 {
    padding-top: 115px !important;
  }

  .pt-xl-120 {
    padding-top: 120px !important;
  }

  .pt-xl-130 {
    padding-top: 130px !important;
  }

  .pt-xl-150 {
    padding-top: 150px !important;
  }

  .pt-xl-160 {
    padding-top: 160px !important;
  }

  .pt-xl-180 {
    padding-top: 180px !important;
  }

  .pt-xl-190 {
    padding-top: 190px !important;
  }

  .pt-xl-200 {
    padding-top: 200px !important;
  }

  .pt-xl-210 {
    padding-top: 210px !important;
  }

  .pt-xl-235 {
    padding-top: 235px !important;
  }

  .pt-xl-240 {
    padding-top: 240px !important;
  }

  .pt-xl-270 {
    padding-top: 270px !important;
  }

  .pt-xl-290 {
    padding-top: 290px !important;
  }

  .pt-xl-300 {
    padding-top: 300px !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 1px !important;
  }

  .pe-xl-2 {
    padding-right: 2px !important;
  }

  .pe-xl-3 {
    padding-right: 3px !important;
  }

  .pe-xl-4 {
    padding-right: 4px !important;
  }

  .pe-xl-5 {
    padding-right: 5px !important;
  }

  .pe-xl-6 {
    padding-right: 6px !important;
  }

  .pe-xl-7 {
    padding-right: 7px !important;
  }

  .pe-xl-8 {
    padding-right: 8px !important;
  }

  .pe-xl-9 {
    padding-right: 9px !important;
  }

  .pe-xl-10 {
    padding-right: 10px !important;
  }

  .pe-xl-11 {
    padding-right: 11px !important;
  }

  .pe-xl-12 {
    padding-right: 12px !important;
  }

  .pe-xl-13 {
    padding-right: 13px !important;
  }

  .pe-xl-15 {
    padding-right: 15px !important;
  }

  .pe-xl-17 {
    padding-right: 17px !important;
  }

  .pe-xl-18 {
    padding-right: 18px !important;
  }

  .pe-xl-20 {
    padding-right: 20px !important;
  }

  .pe-xl-25 {
    padding-right: 25px !important;
  }

  .pe-xl-30 {
    padding-right: 30px !important;
  }

  .pe-xl-35 {
    padding-right: 35px !important;
  }

  .pe-xl-40 {
    padding-right: 40px !important;
  }

  .pe-xl-45 {
    padding-right: 45px !important;
  }

  .pe-xl-50 {
    padding-right: 50px !important;
  }

  .pe-xl-55 {
    padding-right: 55px !important;
  }

  .pe-xl-60 {
    padding-right: 60px !important;
  }

  .pe-xl-65 {
    padding-right: 65px !important;
  }

  .pe-xl-70 {
    padding-right: 70px !important;
  }

  .pe-xl-75 {
    padding-right: 75px !important;
  }

  .pe-xl-80 {
    padding-right: 80px !important;
  }

  .pe-xl-90 {
    padding-right: 90px !important;
  }

  .pe-xl-95 {
    padding-right: 95px !important;
  }

  .pe-xl-100 {
    padding-right: 100px !important;
  }

  .pe-xl-110 {
    padding-right: 110px !important;
  }

  .pe-xl-115 {
    padding-right: 115px !important;
  }

  .pe-xl-120 {
    padding-right: 120px !important;
  }

  .pe-xl-130 {
    padding-right: 130px !important;
  }

  .pe-xl-150 {
    padding-right: 150px !important;
  }

  .pe-xl-160 {
    padding-right: 160px !important;
  }

  .pe-xl-180 {
    padding-right: 180px !important;
  }

  .pe-xl-190 {
    padding-right: 190px !important;
  }

  .pe-xl-200 {
    padding-right: 200px !important;
  }

  .pe-xl-210 {
    padding-right: 210px !important;
  }

  .pe-xl-235 {
    padding-right: 235px !important;
  }

  .pe-xl-240 {
    padding-right: 240px !important;
  }

  .pe-xl-270 {
    padding-right: 270px !important;
  }

  .pe-xl-290 {
    padding-right: 290px !important;
  }

  .pe-xl-300 {
    padding-right: 300px !important;
  }

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

  .pb-xl-1 {
    padding-bottom: 1px !important;
  }

  .pb-xl-2 {
    padding-bottom: 2px !important;
  }

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

  .pb-xl-4 {
    padding-bottom: 4px !important;
  }

  .pb-xl-5 {
    padding-bottom: 5px !important;
  }

  .pb-xl-6 {
    padding-bottom: 6px !important;
  }

  .pb-xl-7 {
    padding-bottom: 7px !important;
  }

  .pb-xl-8 {
    padding-bottom: 8px !important;
  }

  .pb-xl-9 {
    padding-bottom: 9px !important;
  }

  .pb-xl-10 {
    padding-bottom: 10px !important;
  }

  .pb-xl-11 {
    padding-bottom: 11px !important;
  }

  .pb-xl-12 {
    padding-bottom: 12px !important;
  }

  .pb-xl-13 {
    padding-bottom: 13px !important;
  }

  .pb-xl-15 {
    padding-bottom: 15px !important;
  }

  .pb-xl-17 {
    padding-bottom: 17px !important;
  }

  .pb-xl-18 {
    padding-bottom: 18px !important;
  }

  .pb-xl-20 {
    padding-bottom: 20px !important;
  }

  .pb-xl-25 {
    padding-bottom: 25px !important;
  }

  .pb-xl-30 {
    padding-bottom: 30px !important;
  }

  .pb-xl-35 {
    padding-bottom: 35px !important;
  }

  .pb-xl-40 {
    padding-bottom: 40px !important;
  }

  .pb-xl-45 {
    padding-bottom: 45px !important;
  }

  .pb-xl-50 {
    padding-bottom: 50px !important;
  }

  .pb-xl-55 {
    padding-bottom: 55px !important;
  }

  .pb-xl-60 {
    padding-bottom: 60px !important;
  }

  .pb-xl-65 {
    padding-bottom: 65px !important;
  }

  .pb-xl-70 {
    padding-bottom: 70px !important;
  }

  .pb-xl-75 {
    padding-bottom: 75px !important;
  }

  .pb-xl-80 {
    padding-bottom: 80px !important;
  }

  .pb-xl-90 {
    padding-bottom: 90px !important;
  }

  .pb-xl-95 {
    padding-bottom: 95px !important;
  }

  .pb-xl-100 {
    padding-bottom: 100px !important;
  }

  .pb-xl-110 {
    padding-bottom: 110px !important;
  }

  .pb-xl-115 {
    padding-bottom: 115px !important;
  }

  .pb-xl-120 {
    padding-bottom: 120px !important;
  }

  .pb-xl-130 {
    padding-bottom: 130px !important;
  }

  .pb-xl-150 {
    padding-bottom: 150px !important;
  }

  .pb-xl-160 {
    padding-bottom: 160px !important;
  }

  .pb-xl-180 {
    padding-bottom: 180px !important;
  }

  .pb-xl-190 {
    padding-bottom: 190px !important;
  }

  .pb-xl-200 {
    padding-bottom: 200px !important;
  }

  .pb-xl-210 {
    padding-bottom: 210px !important;
  }

  .pb-xl-235 {
    padding-bottom: 235px !important;
  }

  .pb-xl-240 {
    padding-bottom: 240px !important;
  }

  .pb-xl-270 {
    padding-bottom: 270px !important;
  }

  .pb-xl-290 {
    padding-bottom: 290px !important;
  }

  .pb-xl-300 {
    padding-bottom: 300px !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 1px !important;
  }

  .ps-xl-2 {
    padding-left: 2px !important;
  }

  .ps-xl-3 {
    padding-left: 3px !important;
  }

  .ps-xl-4 {
    padding-left: 4px !important;
  }

  .ps-xl-5 {
    padding-left: 5px !important;
  }

  .ps-xl-6 {
    padding-left: 6px !important;
  }

  .ps-xl-7 {
    padding-left: 7px !important;
  }

  .ps-xl-8 {
    padding-left: 8px !important;
  }

  .ps-xl-9 {
    padding-left: 9px !important;
  }

  .ps-xl-10 {
    padding-left: 10px !important;
  }

  .ps-xl-11 {
    padding-left: 11px !important;
  }

  .ps-xl-12 {
    padding-left: 12px !important;
  }

  .ps-xl-13 {
    padding-left: 13px !important;
  }

  .ps-xl-15 {
    padding-left: 15px !important;
  }

  .ps-xl-17 {
    padding-left: 17px !important;
  }

  .ps-xl-18 {
    padding-left: 18px !important;
  }

  .ps-xl-20 {
    padding-left: 20px !important;
  }

  .ps-xl-25 {
    padding-left: 25px !important;
  }

  .ps-xl-30 {
    padding-left: 30px !important;
  }

  .ps-xl-35 {
    padding-left: 35px !important;
  }

  .ps-xl-40 {
    padding-left: 40px !important;
  }

  .ps-xl-45 {
    padding-left: 45px !important;
  }

  .ps-xl-50 {
    padding-left: 50px !important;
  }

  .ps-xl-55 {
    padding-left: 55px !important;
  }

  .ps-xl-60 {
    padding-left: 60px !important;
  }

  .ps-xl-65 {
    padding-left: 65px !important;
  }

  .ps-xl-70 {
    padding-left: 70px !important;
  }

  .ps-xl-75 {
    padding-left: 75px !important;
  }

  .ps-xl-80 {
    padding-left: 80px !important;
  }

  .ps-xl-90 {
    padding-left: 90px !important;
  }

  .ps-xl-95 {
    padding-left: 95px !important;
  }

  .ps-xl-100 {
    padding-left: 100px !important;
  }

  .ps-xl-110 {
    padding-left: 110px !important;
  }

  .ps-xl-115 {
    padding-left: 115px !important;
  }

  .ps-xl-120 {
    padding-left: 120px !important;
  }

  .ps-xl-130 {
    padding-left: 130px !important;
  }

  .ps-xl-150 {
    padding-left: 150px !important;
  }

  .ps-xl-160 {
    padding-left: 160px !important;
  }

  .ps-xl-180 {
    padding-left: 180px !important;
  }

  .ps-xl-190 {
    padding-left: 190px !important;
  }

  .ps-xl-200 {
    padding-left: 200px !important;
  }

  .ps-xl-210 {
    padding-left: 210px !important;
  }

  .ps-xl-235 {
    padding-left: 235px !important;
  }

  .ps-xl-240 {
    padding-left: 240px !important;
  }

  .ps-xl-270 {
    padding-left: 270px !important;
  }

  .ps-xl-290 {
    padding-left: 290px !important;
  }

  .ps-xl-300 {
    padding-left: 300px !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }
}
@media (min-width: 1400px) {
  .float-xxl-start {
    float: left !important;
  }

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

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

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

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

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

  .d-xxl-grid {
    display: grid !important;
  }

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

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

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

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

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

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

  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
    -webkit-flex: 1 1 auto !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }

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

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

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

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

  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
    -webkit-flex-grow: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    -webkit-flex-shrink: 0 !important;
        -ms-flex-negative: 0 !important;
            flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    -webkit-flex-shrink: 1 !important;
        -ms-flex-negative: 1 !important;
            flex-shrink: 1 !important;
  }

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

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

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

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 1px !important;
  }

  .gap-xxl-2 {
    gap: 2px !important;
  }

  .gap-xxl-3 {
    gap: 3px !important;
  }

  .gap-xxl-4 {
    gap: 4px !important;
  }

  .gap-xxl-5 {
    gap: 5px !important;
  }

  .gap-xxl-6 {
    gap: 6px !important;
  }

  .gap-xxl-7 {
    gap: 7px !important;
  }

  .gap-xxl-8 {
    gap: 8px !important;
  }

  .gap-xxl-9 {
    gap: 9px !important;
  }

  .gap-xxl-10 {
    gap: 10px !important;
  }

  .gap-xxl-11 {
    gap: 11px !important;
  }

  .gap-xxl-12 {
    gap: 12px !important;
  }

  .gap-xxl-13 {
    gap: 13px !important;
  }

  .gap-xxl-15 {
    gap: 15px !important;
  }

  .gap-xxl-17 {
    gap: 17px !important;
  }

  .gap-xxl-18 {
    gap: 18px !important;
  }

  .gap-xxl-20 {
    gap: 20px !important;
  }

  .gap-xxl-25 {
    gap: 25px !important;
  }

  .gap-xxl-30 {
    gap: 30px !important;
  }

  .gap-xxl-35 {
    gap: 35px !important;
  }

  .gap-xxl-40 {
    gap: 40px !important;
  }

  .gap-xxl-45 {
    gap: 45px !important;
  }

  .gap-xxl-50 {
    gap: 50px !important;
  }

  .gap-xxl-55 {
    gap: 55px !important;
  }

  .gap-xxl-60 {
    gap: 60px !important;
  }

  .gap-xxl-65 {
    gap: 65px !important;
  }

  .gap-xxl-70 {
    gap: 70px !important;
  }

  .gap-xxl-75 {
    gap: 75px !important;
  }

  .gap-xxl-80 {
    gap: 80px !important;
  }

  .gap-xxl-90 {
    gap: 90px !important;
  }

  .gap-xxl-95 {
    gap: 95px !important;
  }

  .gap-xxl-100 {
    gap: 100px !important;
  }

  .gap-xxl-110 {
    gap: 110px !important;
  }

  .gap-xxl-115 {
    gap: 115px !important;
  }

  .gap-xxl-120 {
    gap: 120px !important;
  }

  .gap-xxl-130 {
    gap: 130px !important;
  }

  .gap-xxl-150 {
    gap: 150px !important;
  }

  .gap-xxl-160 {
    gap: 160px !important;
  }

  .gap-xxl-180 {
    gap: 180px !important;
  }

  .gap-xxl-190 {
    gap: 190px !important;
  }

  .gap-xxl-200 {
    gap: 200px !important;
  }

  .gap-xxl-210 {
    gap: 210px !important;
  }

  .gap-xxl-235 {
    gap: 235px !important;
  }

  .gap-xxl-240 {
    gap: 240px !important;
  }

  .gap-xxl-270 {
    gap: 270px !important;
  }

  .gap-xxl-290 {
    gap: 290px !important;
  }

  .gap-xxl-300 {
    gap: 300px !important;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .order-xxl-first {
    -webkit-box-ordinal-group: 0 !important;
    -webkit-order: -1 !important;
        -ms-flex-order: -1 !important;
            order: -1 !important;
  }

  .order-xxl-0 {
    -webkit-box-ordinal-group: 1 !important;
    -webkit-order: 0 !important;
        -ms-flex-order: 0 !important;
            order: 0 !important;
  }

  .order-xxl-1 {
    -webkit-box-ordinal-group: 2 !important;
    -webkit-order: 1 !important;
        -ms-flex-order: 1 !important;
            order: 1 !important;
  }

  .order-xxl-2 {
    -webkit-box-ordinal-group: 3 !important;
    -webkit-order: 2 !important;
        -ms-flex-order: 2 !important;
            order: 2 !important;
  }

  .order-xxl-3 {
    -webkit-box-ordinal-group: 4 !important;
    -webkit-order: 3 !important;
        -ms-flex-order: 3 !important;
            order: 3 !important;
  }

  .order-xxl-4 {
    -webkit-box-ordinal-group: 5 !important;
    -webkit-order: 4 !important;
        -ms-flex-order: 4 !important;
            order: 4 !important;
  }

  .order-xxl-5 {
    -webkit-box-ordinal-group: 6 !important;
    -webkit-order: 5 !important;
        -ms-flex-order: 5 !important;
            order: 5 !important;
  }

  .order-xxl-last {
    -webkit-box-ordinal-group: 7 !important;
    -webkit-order: 6 !important;
        -ms-flex-order: 6 !important;
            order: 6 !important;
  }

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

  .m-xxl-1 {
    margin: 1px !important;
  }

  .m-xxl-2 {
    margin: 2px !important;
  }

  .m-xxl-3 {
    margin: 3px !important;
  }

  .m-xxl-4 {
    margin: 4px !important;
  }

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

  .m-xxl-6 {
    margin: 6px !important;
  }

  .m-xxl-7 {
    margin: 7px !important;
  }

  .m-xxl-8 {
    margin: 8px !important;
  }

  .m-xxl-9 {
    margin: 9px !important;
  }

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

  .m-xxl-11 {
    margin: 11px !important;
  }

  .m-xxl-12 {
    margin: 12px !important;
  }

  .m-xxl-13 {
    margin: 13px !important;
  }

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

  .m-xxl-17 {
    margin: 17px !important;
  }

  .m-xxl-18 {
    margin: 18px !important;
  }

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

  .m-xxl-25 {
    margin: 25px !important;
  }

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

  .m-xxl-35 {
    margin: 35px !important;
  }

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

  .m-xxl-45 {
    margin: 45px !important;
  }

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

  .m-xxl-55 {
    margin: 55px !important;
  }

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

  .m-xxl-65 {
    margin: 65px !important;
  }

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

  .m-xxl-75 {
    margin: 75px !important;
  }

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

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

  .m-xxl-95 {
    margin: 95px !important;
  }

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

  .m-xxl-110 {
    margin: 110px !important;
  }

  .m-xxl-115 {
    margin: 115px !important;
  }

  .m-xxl-120 {
    margin: 120px !important;
  }

  .m-xxl-130 {
    margin: 130px !important;
  }

  .m-xxl-150 {
    margin: 150px !important;
  }

  .m-xxl-160 {
    margin: 160px !important;
  }

  .m-xxl-180 {
    margin: 180px !important;
  }

  .m-xxl-190 {
    margin: 190px !important;
  }

  .m-xxl-200 {
    margin: 200px !important;
  }

  .m-xxl-210 {
    margin: 210px !important;
  }

  .m-xxl-235 {
    margin: 235px !important;
  }

  .m-xxl-240 {
    margin: 240px !important;
  }

  .m-xxl-270 {
    margin: 270px !important;
  }

  .m-xxl-290 {
    margin: 290px !important;
  }

  .m-xxl-300 {
    margin: 300px !important;
  }

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

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 1px !important;
    margin-left: 1px !important;
  }

  .mx-xxl-2 {
    margin-right: 2px !important;
    margin-left: 2px !important;
  }

  .mx-xxl-3 {
    margin-right: 3px !important;
    margin-left: 3px !important;
  }

  .mx-xxl-4 {
    margin-right: 4px !important;
    margin-left: 4px !important;
  }

  .mx-xxl-5 {
    margin-right: 5px !important;
    margin-left: 5px !important;
  }

  .mx-xxl-6 {
    margin-right: 6px !important;
    margin-left: 6px !important;
  }

  .mx-xxl-7 {
    margin-right: 7px !important;
    margin-left: 7px !important;
  }

  .mx-xxl-8 {
    margin-right: 8px !important;
    margin-left: 8px !important;
  }

  .mx-xxl-9 {
    margin-right: 9px !important;
    margin-left: 9px !important;
  }

  .mx-xxl-10 {
    margin-right: 10px !important;
    margin-left: 10px !important;
  }

  .mx-xxl-11 {
    margin-right: 11px !important;
    margin-left: 11px !important;
  }

  .mx-xxl-12 {
    margin-right: 12px !important;
    margin-left: 12px !important;
  }

  .mx-xxl-13 {
    margin-right: 13px !important;
    margin-left: 13px !important;
  }

  .mx-xxl-15 {
    margin-right: 15px !important;
    margin-left: 15px !important;
  }

  .mx-xxl-17 {
    margin-right: 17px !important;
    margin-left: 17px !important;
  }

  .mx-xxl-18 {
    margin-right: 18px !important;
    margin-left: 18px !important;
  }

  .mx-xxl-20 {
    margin-right: 20px !important;
    margin-left: 20px !important;
  }

  .mx-xxl-25 {
    margin-right: 25px !important;
    margin-left: 25px !important;
  }

  .mx-xxl-30 {
    margin-right: 30px !important;
    margin-left: 30px !important;
  }

  .mx-xxl-35 {
    margin-right: 35px !important;
    margin-left: 35px !important;
  }

  .mx-xxl-40 {
    margin-right: 40px !important;
    margin-left: 40px !important;
  }

  .mx-xxl-45 {
    margin-right: 45px !important;
    margin-left: 45px !important;
  }

  .mx-xxl-50 {
    margin-right: 50px !important;
    margin-left: 50px !important;
  }

  .mx-xxl-55 {
    margin-right: 55px !important;
    margin-left: 55px !important;
  }

  .mx-xxl-60 {
    margin-right: 60px !important;
    margin-left: 60px !important;
  }

  .mx-xxl-65 {
    margin-right: 65px !important;
    margin-left: 65px !important;
  }

  .mx-xxl-70 {
    margin-right: 70px !important;
    margin-left: 70px !important;
  }

  .mx-xxl-75 {
    margin-right: 75px !important;
    margin-left: 75px !important;
  }

  .mx-xxl-80 {
    margin-right: 80px !important;
    margin-left: 80px !important;
  }

  .mx-xxl-90 {
    margin-right: 90px !important;
    margin-left: 90px !important;
  }

  .mx-xxl-95 {
    margin-right: 95px !important;
    margin-left: 95px !important;
  }

  .mx-xxl-100 {
    margin-right: 100px !important;
    margin-left: 100px !important;
  }

  .mx-xxl-110 {
    margin-right: 110px !important;
    margin-left: 110px !important;
  }

  .mx-xxl-115 {
    margin-right: 115px !important;
    margin-left: 115px !important;
  }

  .mx-xxl-120 {
    margin-right: 120px !important;
    margin-left: 120px !important;
  }

  .mx-xxl-130 {
    margin-right: 130px !important;
    margin-left: 130px !important;
  }

  .mx-xxl-150 {
    margin-right: 150px !important;
    margin-left: 150px !important;
  }

  .mx-xxl-160 {
    margin-right: 160px !important;
    margin-left: 160px !important;
  }

  .mx-xxl-180 {
    margin-right: 180px !important;
    margin-left: 180px !important;
  }

  .mx-xxl-190 {
    margin-right: 190px !important;
    margin-left: 190px !important;
  }

  .mx-xxl-200 {
    margin-right: 200px !important;
    margin-left: 200px !important;
  }

  .mx-xxl-210 {
    margin-right: 210px !important;
    margin-left: 210px !important;
  }

  .mx-xxl-235 {
    margin-right: 235px !important;
    margin-left: 235px !important;
  }

  .mx-xxl-240 {
    margin-right: 240px !important;
    margin-left: 240px !important;
  }

  .mx-xxl-270 {
    margin-right: 270px !important;
    margin-left: 270px !important;
  }

  .mx-xxl-290 {
    margin-right: 290px !important;
    margin-left: 290px !important;
  }

  .mx-xxl-300 {
    margin-right: 300px !important;
    margin-left: 300px !important;
  }

  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important;
  }

  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  .my-xxl-1 {
    margin-top: 1px !important;
    margin-bottom: 1px !important;
  }

  .my-xxl-2 {
    margin-top: 2px !important;
    margin-bottom: 2px !important;
  }

  .my-xxl-3 {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
  }

  .my-xxl-4 {
    margin-top: 4px !important;
    margin-bottom: 4px !important;
  }

  .my-xxl-5 {
    margin-top: 5px !important;
    margin-bottom: 5px !important;
  }

  .my-xxl-6 {
    margin-top: 6px !important;
    margin-bottom: 6px !important;
  }

  .my-xxl-7 {
    margin-top: 7px !important;
    margin-bottom: 7px !important;
  }

  .my-xxl-8 {
    margin-top: 8px !important;
    margin-bottom: 8px !important;
  }

  .my-xxl-9 {
    margin-top: 9px !important;
    margin-bottom: 9px !important;
  }

  .my-xxl-10 {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
  }

  .my-xxl-11 {
    margin-top: 11px !important;
    margin-bottom: 11px !important;
  }

  .my-xxl-12 {
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  .my-xxl-13 {
    margin-top: 13px !important;
    margin-bottom: 13px !important;
  }

  .my-xxl-15 {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }

  .my-xxl-17 {
    margin-top: 17px !important;
    margin-bottom: 17px !important;
  }

  .my-xxl-18 {
    margin-top: 18px !important;
    margin-bottom: 18px !important;
  }

  .my-xxl-20 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
  }

  .my-xxl-25 {
    margin-top: 25px !important;
    margin-bottom: 25px !important;
  }

  .my-xxl-30 {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  .my-xxl-35 {
    margin-top: 35px !important;
    margin-bottom: 35px !important;
  }

  .my-xxl-40 {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
  }

  .my-xxl-45 {
    margin-top: 45px !important;
    margin-bottom: 45px !important;
  }

  .my-xxl-50 {
    margin-top: 50px !important;
    margin-bottom: 50px !important;
  }

  .my-xxl-55 {
    margin-top: 55px !important;
    margin-bottom: 55px !important;
  }

  .my-xxl-60 {
    margin-top: 60px !important;
    margin-bottom: 60px !important;
  }

  .my-xxl-65 {
    margin-top: 65px !important;
    margin-bottom: 65px !important;
  }

  .my-xxl-70 {
    margin-top: 70px !important;
    margin-bottom: 70px !important;
  }

  .my-xxl-75 {
    margin-top: 75px !important;
    margin-bottom: 75px !important;
  }

  .my-xxl-80 {
    margin-top: 80px !important;
    margin-bottom: 80px !important;
  }

  .my-xxl-90 {
    margin-top: 90px !important;
    margin-bottom: 90px !important;
  }

  .my-xxl-95 {
    margin-top: 95px !important;
    margin-bottom: 95px !important;
  }

  .my-xxl-100 {
    margin-top: 100px !important;
    margin-bottom: 100px !important;
  }

  .my-xxl-110 {
    margin-top: 110px !important;
    margin-bottom: 110px !important;
  }

  .my-xxl-115 {
    margin-top: 115px !important;
    margin-bottom: 115px !important;
  }

  .my-xxl-120 {
    margin-top: 120px !important;
    margin-bottom: 120px !important;
  }

  .my-xxl-130 {
    margin-top: 130px !important;
    margin-bottom: 130px !important;
  }

  .my-xxl-150 {
    margin-top: 150px !important;
    margin-bottom: 150px !important;
  }

  .my-xxl-160 {
    margin-top: 160px !important;
    margin-bottom: 160px !important;
  }

  .my-xxl-180 {
    margin-top: 180px !important;
    margin-bottom: 180px !important;
  }

  .my-xxl-190 {
    margin-top: 190px !important;
    margin-bottom: 190px !important;
  }

  .my-xxl-200 {
    margin-top: 200px !important;
    margin-bottom: 200px !important;
  }

  .my-xxl-210 {
    margin-top: 210px !important;
    margin-bottom: 210px !important;
  }

  .my-xxl-235 {
    margin-top: 235px !important;
    margin-bottom: 235px !important;
  }

  .my-xxl-240 {
    margin-top: 240px !important;
    margin-bottom: 240px !important;
  }

  .my-xxl-270 {
    margin-top: 270px !important;
    margin-bottom: 270px !important;
  }

  .my-xxl-290 {
    margin-top: 290px !important;
    margin-bottom: 290px !important;
  }

  .my-xxl-300 {
    margin-top: 300px !important;
    margin-bottom: 300px !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

  .mt-xxl-1 {
    margin-top: 1px !important;
  }

  .mt-xxl-2 {
    margin-top: 2px !important;
  }

  .mt-xxl-3 {
    margin-top: 3px !important;
  }

  .mt-xxl-4 {
    margin-top: 4px !important;
  }

  .mt-xxl-5 {
    margin-top: 5px !important;
  }

  .mt-xxl-6 {
    margin-top: 6px !important;
  }

  .mt-xxl-7 {
    margin-top: 7px !important;
  }

  .mt-xxl-8 {
    margin-top: 8px !important;
  }

  .mt-xxl-9 {
    margin-top: 9px !important;
  }

  .mt-xxl-10 {
    margin-top: 10px !important;
  }

  .mt-xxl-11 {
    margin-top: 11px !important;
  }

  .mt-xxl-12 {
    margin-top: 12px !important;
  }

  .mt-xxl-13 {
    margin-top: 13px !important;
  }

  .mt-xxl-15 {
    margin-top: 15px !important;
  }

  .mt-xxl-17 {
    margin-top: 17px !important;
  }

  .mt-xxl-18 {
    margin-top: 18px !important;
  }

  .mt-xxl-20 {
    margin-top: 20px !important;
  }

  .mt-xxl-25 {
    margin-top: 25px !important;
  }

  .mt-xxl-30 {
    margin-top: 30px !important;
  }

  .mt-xxl-35 {
    margin-top: 35px !important;
  }

  .mt-xxl-40 {
    margin-top: 40px !important;
  }

  .mt-xxl-45 {
    margin-top: 45px !important;
  }

  .mt-xxl-50 {
    margin-top: 50px !important;
  }

  .mt-xxl-55 {
    margin-top: 55px !important;
  }

  .mt-xxl-60 {
    margin-top: 60px !important;
  }

  .mt-xxl-65 {
    margin-top: 65px !important;
  }

  .mt-xxl-70 {
    margin-top: 70px !important;
  }

  .mt-xxl-75 {
    margin-top: 75px !important;
  }

  .mt-xxl-80 {
    margin-top: 80px !important;
  }

  .mt-xxl-90 {
    margin-top: 90px !important;
  }

  .mt-xxl-95 {
    margin-top: 95px !important;
  }

  .mt-xxl-100 {
    margin-top: 100px !important;
  }

  .mt-xxl-110 {
    margin-top: 110px !important;
  }

  .mt-xxl-115 {
    margin-top: 115px !important;
  }

  .mt-xxl-120 {
    margin-top: 120px !important;
  }

  .mt-xxl-130 {
    margin-top: 130px !important;
  }

  .mt-xxl-150 {
    margin-top: 150px !important;
  }

  .mt-xxl-160 {
    margin-top: 160px !important;
  }

  .mt-xxl-180 {
    margin-top: 180px !important;
  }

  .mt-xxl-190 {
    margin-top: 190px !important;
  }

  .mt-xxl-200 {
    margin-top: 200px !important;
  }

  .mt-xxl-210 {
    margin-top: 210px !important;
  }

  .mt-xxl-235 {
    margin-top: 235px !important;
  }

  .mt-xxl-240 {
    margin-top: 240px !important;
  }

  .mt-xxl-270 {
    margin-top: 270px !important;
  }

  .mt-xxl-290 {
    margin-top: 290px !important;
  }

  .mt-xxl-300 {
    margin-top: 300px !important;
  }

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

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 1px !important;
  }

  .me-xxl-2 {
    margin-right: 2px !important;
  }

  .me-xxl-3 {
    margin-right: 3px !important;
  }

  .me-xxl-4 {
    margin-right: 4px !important;
  }

  .me-xxl-5 {
    margin-right: 5px !important;
  }

  .me-xxl-6 {
    margin-right: 6px !important;
  }

  .me-xxl-7 {
    margin-right: 7px !important;
  }

  .me-xxl-8 {
    margin-right: 8px !important;
  }

  .me-xxl-9 {
    margin-right: 9px !important;
  }

  .me-xxl-10 {
    margin-right: 10px !important;
  }

  .me-xxl-11 {
    margin-right: 11px !important;
  }

  .me-xxl-12 {
    margin-right: 12px !important;
  }

  .me-xxl-13 {
    margin-right: 13px !important;
  }

  .me-xxl-15 {
    margin-right: 15px !important;
  }

  .me-xxl-17 {
    margin-right: 17px !important;
  }

  .me-xxl-18 {
    margin-right: 18px !important;
  }

  .me-xxl-20 {
    margin-right: 20px !important;
  }

  .me-xxl-25 {
    margin-right: 25px !important;
  }

  .me-xxl-30 {
    margin-right: 30px !important;
  }

  .me-xxl-35 {
    margin-right: 35px !important;
  }

  .me-xxl-40 {
    margin-right: 40px !important;
  }

  .me-xxl-45 {
    margin-right: 45px !important;
  }

  .me-xxl-50 {
    margin-right: 50px !important;
  }

  .me-xxl-55 {
    margin-right: 55px !important;
  }

  .me-xxl-60 {
    margin-right: 60px !important;
  }

  .me-xxl-65 {
    margin-right: 65px !important;
  }

  .me-xxl-70 {
    margin-right: 70px !important;
  }

  .me-xxl-75 {
    margin-right: 75px !important;
  }

  .me-xxl-80 {
    margin-right: 80px !important;
  }

  .me-xxl-90 {
    margin-right: 90px !important;
  }

  .me-xxl-95 {
    margin-right: 95px !important;
  }

  .me-xxl-100 {
    margin-right: 100px !important;
  }

  .me-xxl-110 {
    margin-right: 110px !important;
  }

  .me-xxl-115 {
    margin-right: 115px !important;
  }

  .me-xxl-120 {
    margin-right: 120px !important;
  }

  .me-xxl-130 {
    margin-right: 130px !important;
  }

  .me-xxl-150 {
    margin-right: 150px !important;
  }

  .me-xxl-160 {
    margin-right: 160px !important;
  }

  .me-xxl-180 {
    margin-right: 180px !important;
  }

  .me-xxl-190 {
    margin-right: 190px !important;
  }

  .me-xxl-200 {
    margin-right: 200px !important;
  }

  .me-xxl-210 {
    margin-right: 210px !important;
  }

  .me-xxl-235 {
    margin-right: 235px !important;
  }

  .me-xxl-240 {
    margin-right: 240px !important;
  }

  .me-xxl-270 {
    margin-right: 270px !important;
  }

  .me-xxl-290 {
    margin-right: 290px !important;
  }

  .me-xxl-300 {
    margin-right: 300px !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

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

  .mb-xxl-1 {
    margin-bottom: 1px !important;
  }

  .mb-xxl-2 {
    margin-bottom: 2px !important;
  }

  .mb-xxl-3 {
    margin-bottom: 3px !important;
  }

  .mb-xxl-4 {
    margin-bottom: 4px !important;
  }

  .mb-xxl-5 {
    margin-bottom: 5px !important;
  }

  .mb-xxl-6 {
    margin-bottom: 6px !important;
  }

  .mb-xxl-7 {
    margin-bottom: 7px !important;
  }

  .mb-xxl-8 {
    margin-bottom: 8px !important;
  }

  .mb-xxl-9 {
    margin-bottom: 9px !important;
  }

  .mb-xxl-10 {
    margin-bottom: 10px !important;
  }

  .mb-xxl-11 {
    margin-bottom: 11px !important;
  }

  .mb-xxl-12 {
    margin-bottom: 12px !important;
  }

  .mb-xxl-13 {
    margin-bottom: 13px !important;
  }

  .mb-xxl-15 {
    margin-bottom: 15px !important;
  }

  .mb-xxl-17 {
    margin-bottom: 17px !important;
  }

  .mb-xxl-18 {
    margin-bottom: 18px !important;
  }

  .mb-xxl-20 {
    margin-bottom: 20px !important;
  }

  .mb-xxl-25 {
    margin-bottom: 25px !important;
  }

  .mb-xxl-30 {
    margin-bottom: 30px !important;
  }

  .mb-xxl-35 {
    margin-bottom: 35px !important;
  }

  .mb-xxl-40 {
    margin-bottom: 40px !important;
  }

  .mb-xxl-45 {
    margin-bottom: 45px !important;
  }

  .mb-xxl-50 {
    margin-bottom: 50px !important;
  }

  .mb-xxl-55 {
    margin-bottom: 55px !important;
  }

  .mb-xxl-60 {
    margin-bottom: 60px !important;
  }

  .mb-xxl-65 {
    margin-bottom: 65px !important;
  }

  .mb-xxl-70 {
    margin-bottom: 70px !important;
  }

  .mb-xxl-75 {
    margin-bottom: 75px !important;
  }

  .mb-xxl-80 {
    margin-bottom: 80px !important;
  }

  .mb-xxl-90 {
    margin-bottom: 90px !important;
  }

  .mb-xxl-95 {
    margin-bottom: 95px !important;
  }

  .mb-xxl-100 {
    margin-bottom: 100px !important;
  }

  .mb-xxl-110 {
    margin-bottom: 110px !important;
  }

  .mb-xxl-115 {
    margin-bottom: 115px !important;
  }

  .mb-xxl-120 {
    margin-bottom: 120px !important;
  }

  .mb-xxl-130 {
    margin-bottom: 130px !important;
  }

  .mb-xxl-150 {
    margin-bottom: 150px !important;
  }

  .mb-xxl-160 {
    margin-bottom: 160px !important;
  }

  .mb-xxl-180 {
    margin-bottom: 180px !important;
  }

  .mb-xxl-190 {
    margin-bottom: 190px !important;
  }

  .mb-xxl-200 {
    margin-bottom: 200px !important;
  }

  .mb-xxl-210 {
    margin-bottom: 210px !important;
  }

  .mb-xxl-235 {
    margin-bottom: 235px !important;
  }

  .mb-xxl-240 {
    margin-bottom: 240px !important;
  }

  .mb-xxl-270 {
    margin-bottom: 270px !important;
  }

  .mb-xxl-290 {
    margin-bottom: 290px !important;
  }

  .mb-xxl-300 {
    margin-bottom: 300px !important;
  }

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

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 1px !important;
  }

  .ms-xxl-2 {
    margin-left: 2px !important;
  }

  .ms-xxl-3 {
    margin-left: 3px !important;
  }

  .ms-xxl-4 {
    margin-left: 4px !important;
  }

  .ms-xxl-5 {
    margin-left: 5px !important;
  }

  .ms-xxl-6 {
    margin-left: 6px !important;
  }

  .ms-xxl-7 {
    margin-left: 7px !important;
  }

  .ms-xxl-8 {
    margin-left: 8px !important;
  }

  .ms-xxl-9 {
    margin-left: 9px !important;
  }

  .ms-xxl-10 {
    margin-left: 10px !important;
  }

  .ms-xxl-11 {
    margin-left: 11px !important;
  }

  .ms-xxl-12 {
    margin-left: 12px !important;
  }

  .ms-xxl-13 {
    margin-left: 13px !important;
  }

  .ms-xxl-15 {
    margin-left: 15px !important;
  }

  .ms-xxl-17 {
    margin-left: 17px !important;
  }

  .ms-xxl-18 {
    margin-left: 18px !important;
  }

  .ms-xxl-20 {
    margin-left: 20px !important;
  }

  .ms-xxl-25 {
    margin-left: 25px !important;
  }

  .ms-xxl-30 {
    margin-left: 30px !important;
  }

  .ms-xxl-35 {
    margin-left: 35px !important;
  }

  .ms-xxl-40 {
    margin-left: 40px !important;
  }

  .ms-xxl-45 {
    margin-left: 45px !important;
  }

  .ms-xxl-50 {
    margin-left: 50px !important;
  }

  .ms-xxl-55 {
    margin-left: 55px !important;
  }

  .ms-xxl-60 {
    margin-left: 60px !important;
  }

  .ms-xxl-65 {
    margin-left: 65px !important;
  }

  .ms-xxl-70 {
    margin-left: 70px !important;
  }

  .ms-xxl-75 {
    margin-left: 75px !important;
  }

  .ms-xxl-80 {
    margin-left: 80px !important;
  }

  .ms-xxl-90 {
    margin-left: 90px !important;
  }

  .ms-xxl-95 {
    margin-left: 95px !important;
  }

  .ms-xxl-100 {
    margin-left: 100px !important;
  }

  .ms-xxl-110 {
    margin-left: 110px !important;
  }

  .ms-xxl-115 {
    margin-left: 115px !important;
  }

  .ms-xxl-120 {
    margin-left: 120px !important;
  }

  .ms-xxl-130 {
    margin-left: 130px !important;
  }

  .ms-xxl-150 {
    margin-left: 150px !important;
  }

  .ms-xxl-160 {
    margin-left: 160px !important;
  }

  .ms-xxl-180 {
    margin-left: 180px !important;
  }

  .ms-xxl-190 {
    margin-left: 190px !important;
  }

  .ms-xxl-200 {
    margin-left: 200px !important;
  }

  .ms-xxl-210 {
    margin-left: 210px !important;
  }

  .ms-xxl-235 {
    margin-left: 235px !important;
  }

  .ms-xxl-240 {
    margin-left: 240px !important;
  }

  .ms-xxl-270 {
    margin-left: 270px !important;
  }

  .ms-xxl-290 {
    margin-left: 290px !important;
  }

  .ms-xxl-300 {
    margin-left: 300px !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .m-xxl-n1 {
    margin: -1px !important;
  }

  .m-xxl-n2 {
    margin: -2px !important;
  }

  .m-xxl-n3 {
    margin: -3px !important;
  }

  .m-xxl-n4 {
    margin: -4px !important;
  }

  .m-xxl-n5 {
    margin: -5px !important;
  }

  .m-xxl-n6 {
    margin: -6px !important;
  }

  .m-xxl-n7 {
    margin: -7px !important;
  }

  .m-xxl-n8 {
    margin: -8px !important;
  }

  .m-xxl-n9 {
    margin: -9px !important;
  }

  .m-xxl-n10 {
    margin: -10px !important;
  }

  .m-xxl-n11 {
    margin: -11px !important;
  }

  .m-xxl-n12 {
    margin: -12px !important;
  }

  .m-xxl-n13 {
    margin: -13px !important;
  }

  .m-xxl-n15 {
    margin: -15px !important;
  }

  .m-xxl-n17 {
    margin: -17px !important;
  }

  .m-xxl-n18 {
    margin: -18px !important;
  }

  .m-xxl-n20 {
    margin: -20px !important;
  }

  .m-xxl-n25 {
    margin: -25px !important;
  }

  .m-xxl-n30 {
    margin: -30px !important;
  }

  .m-xxl-n35 {
    margin: -35px !important;
  }

  .m-xxl-n40 {
    margin: -40px !important;
  }

  .m-xxl-n45 {
    margin: -45px !important;
  }

  .m-xxl-n50 {
    margin: -50px !important;
  }

  .m-xxl-n55 {
    margin: -55px !important;
  }

  .m-xxl-n60 {
    margin: -60px !important;
  }

  .m-xxl-n65 {
    margin: -65px !important;
  }

  .m-xxl-n70 {
    margin: -70px !important;
  }

  .m-xxl-n75 {
    margin: -75px !important;
  }

  .m-xxl-n80 {
    margin: -80px !important;
  }

  .m-xxl-n90 {
    margin: -90px !important;
  }

  .m-xxl-n95 {
    margin: -95px !important;
  }

  .m-xxl-n100 {
    margin: -100px !important;
  }

  .m-xxl-n110 {
    margin: -110px !important;
  }

  .m-xxl-n115 {
    margin: -115px !important;
  }

  .m-xxl-n120 {
    margin: -120px !important;
  }

  .m-xxl-n130 {
    margin: -130px !important;
  }

  .m-xxl-n150 {
    margin: -150px !important;
  }

  .m-xxl-n160 {
    margin: -160px !important;
  }

  .m-xxl-n180 {
    margin: -180px !important;
  }

  .m-xxl-n190 {
    margin: -190px !important;
  }

  .m-xxl-n200 {
    margin: -200px !important;
  }

  .m-xxl-n210 {
    margin: -210px !important;
  }

  .m-xxl-n235 {
    margin: -235px !important;
  }

  .m-xxl-n240 {
    margin: -240px !important;
  }

  .m-xxl-n270 {
    margin: -270px !important;
  }

  .m-xxl-n290 {
    margin: -290px !important;
  }

  .m-xxl-n300 {
    margin: -300px !important;
  }

  .mx-xxl-n1 {
    margin-right: -1px !important;
    margin-left: -1px !important;
  }

  .mx-xxl-n2 {
    margin-right: -2px !important;
    margin-left: -2px !important;
  }

  .mx-xxl-n3 {
    margin-right: -3px !important;
    margin-left: -3px !important;
  }

  .mx-xxl-n4 {
    margin-right: -4px !important;
    margin-left: -4px !important;
  }

  .mx-xxl-n5 {
    margin-right: -5px !important;
    margin-left: -5px !important;
  }

  .mx-xxl-n6 {
    margin-right: -6px !important;
    margin-left: -6px !important;
  }

  .mx-xxl-n7 {
    margin-right: -7px !important;
    margin-left: -7px !important;
  }

  .mx-xxl-n8 {
    margin-right: -8px !important;
    margin-left: -8px !important;
  }

  .mx-xxl-n9 {
    margin-right: -9px !important;
    margin-left: -9px !important;
  }

  .mx-xxl-n10 {
    margin-right: -10px !important;
    margin-left: -10px !important;
  }

  .mx-xxl-n11 {
    margin-right: -11px !important;
    margin-left: -11px !important;
  }

  .mx-xxl-n12 {
    margin-right: -12px !important;
    margin-left: -12px !important;
  }

  .mx-xxl-n13 {
    margin-right: -13px !important;
    margin-left: -13px !important;
  }

  .mx-xxl-n15 {
    margin-right: -15px !important;
    margin-left: -15px !important;
  }

  .mx-xxl-n17 {
    margin-right: -17px !important;
    margin-left: -17px !important;
  }

  .mx-xxl-n18 {
    margin-right: -18px !important;
    margin-left: -18px !important;
  }

  .mx-xxl-n20 {
    margin-right: -20px !important;
    margin-left: -20px !important;
  }

  .mx-xxl-n25 {
    margin-right: -25px !important;
    margin-left: -25px !important;
  }

  .mx-xxl-n30 {
    margin-right: -30px !important;
    margin-left: -30px !important;
  }

  .mx-xxl-n35 {
    margin-right: -35px !important;
    margin-left: -35px !important;
  }

  .mx-xxl-n40 {
    margin-right: -40px !important;
    margin-left: -40px !important;
  }

  .mx-xxl-n45 {
    margin-right: -45px !important;
    margin-left: -45px !important;
  }

  .mx-xxl-n50 {
    margin-right: -50px !important;
    margin-left: -50px !important;
  }

  .mx-xxl-n55 {
    margin-right: -55px !important;
    margin-left: -55px !important;
  }

  .mx-xxl-n60 {
    margin-right: -60px !important;
    margin-left: -60px !important;
  }

  .mx-xxl-n65 {
    margin-right: -65px !important;
    margin-left: -65px !important;
  }

  .mx-xxl-n70 {
    margin-right: -70px !important;
    margin-left: -70px !important;
  }

  .mx-xxl-n75 {
    margin-right: -75px !important;
    margin-left: -75px !important;
  }

  .mx-xxl-n80 {
    margin-right: -80px !important;
    margin-left: -80px !important;
  }

  .mx-xxl-n90 {
    margin-right: -90px !important;
    margin-left: -90px !important;
  }

  .mx-xxl-n95 {
    margin-right: -95px !important;
    margin-left: -95px !important;
  }

  .mx-xxl-n100 {
    margin-right: -100px !important;
    margin-left: -100px !important;
  }

  .mx-xxl-n110 {
    margin-right: -110px !important;
    margin-left: -110px !important;
  }

  .mx-xxl-n115 {
    margin-right: -115px !important;
    margin-left: -115px !important;
  }

  .mx-xxl-n120 {
    margin-right: -120px !important;
    margin-left: -120px !important;
  }

  .mx-xxl-n130 {
    margin-right: -130px !important;
    margin-left: -130px !important;
  }

  .mx-xxl-n150 {
    margin-right: -150px !important;
    margin-left: -150px !important;
  }

  .mx-xxl-n160 {
    margin-right: -160px !important;
    margin-left: -160px !important;
  }

  .mx-xxl-n180 {
    margin-right: -180px !important;
    margin-left: -180px !important;
  }

  .mx-xxl-n190 {
    margin-right: -190px !important;
    margin-left: -190px !important;
  }

  .mx-xxl-n200 {
    margin-right: -200px !important;
    margin-left: -200px !important;
  }

  .mx-xxl-n210 {
    margin-right: -210px !important;
    margin-left: -210px !important;
  }

  .mx-xxl-n235 {
    margin-right: -235px !important;
    margin-left: -235px !important;
  }

  .mx-xxl-n240 {
    margin-right: -240px !important;
    margin-left: -240px !important;
  }

  .mx-xxl-n270 {
    margin-right: -270px !important;
    margin-left: -270px !important;
  }

  .mx-xxl-n290 {
    margin-right: -290px !important;
    margin-left: -290px !important;
  }

  .mx-xxl-n300 {
    margin-right: -300px !important;
    margin-left: -300px !important;
  }

  .my-xxl-n1 {
    margin-top: -1px !important;
    margin-bottom: -1px !important;
  }

  .my-xxl-n2 {
    margin-top: -2px !important;
    margin-bottom: -2px !important;
  }

  .my-xxl-n3 {
    margin-top: -3px !important;
    margin-bottom: -3px !important;
  }

  .my-xxl-n4 {
    margin-top: -4px !important;
    margin-bottom: -4px !important;
  }

  .my-xxl-n5 {
    margin-top: -5px !important;
    margin-bottom: -5px !important;
  }

  .my-xxl-n6 {
    margin-top: -6px !important;
    margin-bottom: -6px !important;
  }

  .my-xxl-n7 {
    margin-top: -7px !important;
    margin-bottom: -7px !important;
  }

  .my-xxl-n8 {
    margin-top: -8px !important;
    margin-bottom: -8px !important;
  }

  .my-xxl-n9 {
    margin-top: -9px !important;
    margin-bottom: -9px !important;
  }

  .my-xxl-n10 {
    margin-top: -10px !important;
    margin-bottom: -10px !important;
  }

  .my-xxl-n11 {
    margin-top: -11px !important;
    margin-bottom: -11px !important;
  }

  .my-xxl-n12 {
    margin-top: -12px !important;
    margin-bottom: -12px !important;
  }

  .my-xxl-n13 {
    margin-top: -13px !important;
    margin-bottom: -13px !important;
  }

  .my-xxl-n15 {
    margin-top: -15px !important;
    margin-bottom: -15px !important;
  }

  .my-xxl-n17 {
    margin-top: -17px !important;
    margin-bottom: -17px !important;
  }

  .my-xxl-n18 {
    margin-top: -18px !important;
    margin-bottom: -18px !important;
  }

  .my-xxl-n20 {
    margin-top: -20px !important;
    margin-bottom: -20px !important;
  }

  .my-xxl-n25 {
    margin-top: -25px !important;
    margin-bottom: -25px !important;
  }

  .my-xxl-n30 {
    margin-top: -30px !important;
    margin-bottom: -30px !important;
  }

  .my-xxl-n35 {
    margin-top: -35px !important;
    margin-bottom: -35px !important;
  }

  .my-xxl-n40 {
    margin-top: -40px !important;
    margin-bottom: -40px !important;
  }

  .my-xxl-n45 {
    margin-top: -45px !important;
    margin-bottom: -45px !important;
  }

  .my-xxl-n50 {
    margin-top: -50px !important;
    margin-bottom: -50px !important;
  }

  .my-xxl-n55 {
    margin-top: -55px !important;
    margin-bottom: -55px !important;
  }

  .my-xxl-n60 {
    margin-top: -60px !important;
    margin-bottom: -60px !important;
  }

  .my-xxl-n65 {
    margin-top: -65px !important;
    margin-bottom: -65px !important;
  }

  .my-xxl-n70 {
    margin-top: -70px !important;
    margin-bottom: -70px !important;
  }

  .my-xxl-n75 {
    margin-top: -75px !important;
    margin-bottom: -75px !important;
  }

  .my-xxl-n80 {
    margin-top: -80px !important;
    margin-bottom: -80px !important;
  }

  .my-xxl-n90 {
    margin-top: -90px !important;
    margin-bottom: -90px !important;
  }

  .my-xxl-n95 {
    margin-top: -95px !important;
    margin-bottom: -95px !important;
  }

  .my-xxl-n100 {
    margin-top: -100px !important;
    margin-bottom: -100px !important;
  }

  .my-xxl-n110 {
    margin-top: -110px !important;
    margin-bottom: -110px !important;
  }

  .my-xxl-n115 {
    margin-top: -115px !important;
    margin-bottom: -115px !important;
  }

  .my-xxl-n120 {
    margin-top: -120px !important;
    margin-bottom: -120px !important;
  }

  .my-xxl-n130 {
    margin-top: -130px !important;
    margin-bottom: -130px !important;
  }

  .my-xxl-n150 {
    margin-top: -150px !important;
    margin-bottom: -150px !important;
  }

  .my-xxl-n160 {
    margin-top: -160px !important;
    margin-bottom: -160px !important;
  }

  .my-xxl-n180 {
    margin-top: -180px !important;
    margin-bottom: -180px !important;
  }

  .my-xxl-n190 {
    margin-top: -190px !important;
    margin-bottom: -190px !important;
  }

  .my-xxl-n200 {
    margin-top: -200px !important;
    margin-bottom: -200px !important;
  }

  .my-xxl-n210 {
    margin-top: -210px !important;
    margin-bottom: -210px !important;
  }

  .my-xxl-n235 {
    margin-top: -235px !important;
    margin-bottom: -235px !important;
  }

  .my-xxl-n240 {
    margin-top: -240px !important;
    margin-bottom: -240px !important;
  }

  .my-xxl-n270 {
    margin-top: -270px !important;
    margin-bottom: -270px !important;
  }

  .my-xxl-n290 {
    margin-top: -290px !important;
    margin-bottom: -290px !important;
  }

  .my-xxl-n300 {
    margin-top: -300px !important;
    margin-bottom: -300px !important;
  }

  .mt-xxl-n1 {
    margin-top: -1px !important;
  }

  .mt-xxl-n2 {
    margin-top: -2px !important;
  }

  .mt-xxl-n3 {
    margin-top: -3px !important;
  }

  .mt-xxl-n4 {
    margin-top: -4px !important;
  }

  .mt-xxl-n5 {
    margin-top: -5px !important;
  }

  .mt-xxl-n6 {
    margin-top: -6px !important;
  }

  .mt-xxl-n7 {
    margin-top: -7px !important;
  }

  .mt-xxl-n8 {
    margin-top: -8px !important;
  }

  .mt-xxl-n9 {
    margin-top: -9px !important;
  }

  .mt-xxl-n10 {
    margin-top: -10px !important;
  }

  .mt-xxl-n11 {
    margin-top: -11px !important;
  }

  .mt-xxl-n12 {
    margin-top: -12px !important;
  }

  .mt-xxl-n13 {
    margin-top: -13px !important;
  }

  .mt-xxl-n15 {
    margin-top: -15px !important;
  }

  .mt-xxl-n17 {
    margin-top: -17px !important;
  }

  .mt-xxl-n18 {
    margin-top: -18px !important;
  }

  .mt-xxl-n20 {
    margin-top: -20px !important;
  }

  .mt-xxl-n25 {
    margin-top: -25px !important;
  }

  .mt-xxl-n30 {
    margin-top: -30px !important;
  }

  .mt-xxl-n35 {
    margin-top: -35px !important;
  }

  .mt-xxl-n40 {
    margin-top: -40px !important;
  }

  .mt-xxl-n45 {
    margin-top: -45px !important;
  }

  .mt-xxl-n50 {
    margin-top: -50px !important;
  }

  .mt-xxl-n55 {
    margin-top: -55px !important;
  }

  .mt-xxl-n60 {
    margin-top: -60px !important;
  }

  .mt-xxl-n65 {
    margin-top: -65px !important;
  }

  .mt-xxl-n70 {
    margin-top: -70px !important;
  }

  .mt-xxl-n75 {
    margin-top: -75px !important;
  }

  .mt-xxl-n80 {
    margin-top: -80px !important;
  }

  .mt-xxl-n90 {
    margin-top: -90px !important;
  }

  .mt-xxl-n95 {
    margin-top: -95px !important;
  }

  .mt-xxl-n100 {
    margin-top: -100px !important;
  }

  .mt-xxl-n110 {
    margin-top: -110px !important;
  }

  .mt-xxl-n115 {
    margin-top: -115px !important;
  }

  .mt-xxl-n120 {
    margin-top: -120px !important;
  }

  .mt-xxl-n130 {
    margin-top: -130px !important;
  }

  .mt-xxl-n150 {
    margin-top: -150px !important;
  }

  .mt-xxl-n160 {
    margin-top: -160px !important;
  }

  .mt-xxl-n180 {
    margin-top: -180px !important;
  }

  .mt-xxl-n190 {
    margin-top: -190px !important;
  }

  .mt-xxl-n200 {
    margin-top: -200px !important;
  }

  .mt-xxl-n210 {
    margin-top: -210px !important;
  }

  .mt-xxl-n235 {
    margin-top: -235px !important;
  }

  .mt-xxl-n240 {
    margin-top: -240px !important;
  }

  .mt-xxl-n270 {
    margin-top: -270px !important;
  }

  .mt-xxl-n290 {
    margin-top: -290px !important;
  }

  .mt-xxl-n300 {
    margin-top: -300px !important;
  }

  .me-xxl-n1 {
    margin-right: -1px !important;
  }

  .me-xxl-n2 {
    margin-right: -2px !important;
  }

  .me-xxl-n3 {
    margin-right: -3px !important;
  }

  .me-xxl-n4 {
    margin-right: -4px !important;
  }

  .me-xxl-n5 {
    margin-right: -5px !important;
  }

  .me-xxl-n6 {
    margin-right: -6px !important;
  }

  .me-xxl-n7 {
    margin-right: -7px !important;
  }

  .me-xxl-n8 {
    margin-right: -8px !important;
  }

  .me-xxl-n9 {
    margin-right: -9px !important;
  }

  .me-xxl-n10 {
    margin-right: -10px !important;
  }

  .me-xxl-n11 {
    margin-right: -11px !important;
  }

  .me-xxl-n12 {
    margin-right: -12px !important;
  }

  .me-xxl-n13 {
    margin-right: -13px !important;
  }

  .me-xxl-n15 {
    margin-right: -15px !important;
  }

  .me-xxl-n17 {
    margin-right: -17px !important;
  }

  .me-xxl-n18 {
    margin-right: -18px !important;
  }

  .me-xxl-n20 {
    margin-right: -20px !important;
  }

  .me-xxl-n25 {
    margin-right: -25px !important;
  }

  .me-xxl-n30 {
    margin-right: -30px !important;
  }

  .me-xxl-n35 {
    margin-right: -35px !important;
  }

  .me-xxl-n40 {
    margin-right: -40px !important;
  }

  .me-xxl-n45 {
    margin-right: -45px !important;
  }

  .me-xxl-n50 {
    margin-right: -50px !important;
  }

  .me-xxl-n55 {
    margin-right: -55px !important;
  }

  .me-xxl-n60 {
    margin-right: -60px !important;
  }

  .me-xxl-n65 {
    margin-right: -65px !important;
  }

  .me-xxl-n70 {
    margin-right: -70px !important;
  }

  .me-xxl-n75 {
    margin-right: -75px !important;
  }

  .me-xxl-n80 {
    margin-right: -80px !important;
  }

  .me-xxl-n90 {
    margin-right: -90px !important;
  }

  .me-xxl-n95 {
    margin-right: -95px !important;
  }

  .me-xxl-n100 {
    margin-right: -100px !important;
  }

  .me-xxl-n110 {
    margin-right: -110px !important;
  }

  .me-xxl-n115 {
    margin-right: -115px !important;
  }

  .me-xxl-n120 {
    margin-right: -120px !important;
  }

  .me-xxl-n130 {
    margin-right: -130px !important;
  }

  .me-xxl-n150 {
    margin-right: -150px !important;
  }

  .me-xxl-n160 {
    margin-right: -160px !important;
  }

  .me-xxl-n180 {
    margin-right: -180px !important;
  }

  .me-xxl-n190 {
    margin-right: -190px !important;
  }

  .me-xxl-n200 {
    margin-right: -200px !important;
  }

  .me-xxl-n210 {
    margin-right: -210px !important;
  }

  .me-xxl-n235 {
    margin-right: -235px !important;
  }

  .me-xxl-n240 {
    margin-right: -240px !important;
  }

  .me-xxl-n270 {
    margin-right: -270px !important;
  }

  .me-xxl-n290 {
    margin-right: -290px !important;
  }

  .me-xxl-n300 {
    margin-right: -300px !important;
  }

  .mb-xxl-n1 {
    margin-bottom: -1px !important;
  }

  .mb-xxl-n2 {
    margin-bottom: -2px !important;
  }

  .mb-xxl-n3 {
    margin-bottom: -3px !important;
  }

  .mb-xxl-n4 {
    margin-bottom: -4px !important;
  }

  .mb-xxl-n5 {
    margin-bottom: -5px !important;
  }

  .mb-xxl-n6 {
    margin-bottom: -6px !important;
  }

  .mb-xxl-n7 {
    margin-bottom: -7px !important;
  }

  .mb-xxl-n8 {
    margin-bottom: -8px !important;
  }

  .mb-xxl-n9 {
    margin-bottom: -9px !important;
  }

  .mb-xxl-n10 {
    margin-bottom: -10px !important;
  }

  .mb-xxl-n11 {
    margin-bottom: -11px !important;
  }

  .mb-xxl-n12 {
    margin-bottom: -12px !important;
  }

  .mb-xxl-n13 {
    margin-bottom: -13px !important;
  }

  .mb-xxl-n15 {
    margin-bottom: -15px !important;
  }

  .mb-xxl-n17 {
    margin-bottom: -17px !important;
  }

  .mb-xxl-n18 {
    margin-bottom: -18px !important;
  }

  .mb-xxl-n20 {
    margin-bottom: -20px !important;
  }

  .mb-xxl-n25 {
    margin-bottom: -25px !important;
  }

  .mb-xxl-n30 {
    margin-bottom: -30px !important;
  }

  .mb-xxl-n35 {
    margin-bottom: -35px !important;
  }

  .mb-xxl-n40 {
    margin-bottom: -40px !important;
  }

  .mb-xxl-n45 {
    margin-bottom: -45px !important;
  }

  .mb-xxl-n50 {
    margin-bottom: -50px !important;
  }

  .mb-xxl-n55 {
    margin-bottom: -55px !important;
  }

  .mb-xxl-n60 {
    margin-bottom: -60px !important;
  }

  .mb-xxl-n65 {
    margin-bottom: -65px !important;
  }

  .mb-xxl-n70 {
    margin-bottom: -70px !important;
  }

  .mb-xxl-n75 {
    margin-bottom: -75px !important;
  }

  .mb-xxl-n80 {
    margin-bottom: -80px !important;
  }

  .mb-xxl-n90 {
    margin-bottom: -90px !important;
  }

  .mb-xxl-n95 {
    margin-bottom: -95px !important;
  }

  .mb-xxl-n100 {
    margin-bottom: -100px !important;
  }

  .mb-xxl-n110 {
    margin-bottom: -110px !important;
  }

  .mb-xxl-n115 {
    margin-bottom: -115px !important;
  }

  .mb-xxl-n120 {
    margin-bottom: -120px !important;
  }

  .mb-xxl-n130 {
    margin-bottom: -130px !important;
  }

  .mb-xxl-n150 {
    margin-bottom: -150px !important;
  }

  .mb-xxl-n160 {
    margin-bottom: -160px !important;
  }

  .mb-xxl-n180 {
    margin-bottom: -180px !important;
  }

  .mb-xxl-n190 {
    margin-bottom: -190px !important;
  }

  .mb-xxl-n200 {
    margin-bottom: -200px !important;
  }

  .mb-xxl-n210 {
    margin-bottom: -210px !important;
  }

  .mb-xxl-n235 {
    margin-bottom: -235px !important;
  }

  .mb-xxl-n240 {
    margin-bottom: -240px !important;
  }

  .mb-xxl-n270 {
    margin-bottom: -270px !important;
  }

  .mb-xxl-n290 {
    margin-bottom: -290px !important;
  }

  .mb-xxl-n300 {
    margin-bottom: -300px !important;
  }

  .ms-xxl-n1 {
    margin-left: -1px !important;
  }

  .ms-xxl-n2 {
    margin-left: -2px !important;
  }

  .ms-xxl-n3 {
    margin-left: -3px !important;
  }

  .ms-xxl-n4 {
    margin-left: -4px !important;
  }

  .ms-xxl-n5 {
    margin-left: -5px !important;
  }

  .ms-xxl-n6 {
    margin-left: -6px !important;
  }

  .ms-xxl-n7 {
    margin-left: -7px !important;
  }

  .ms-xxl-n8 {
    margin-left: -8px !important;
  }

  .ms-xxl-n9 {
    margin-left: -9px !important;
  }

  .ms-xxl-n10 {
    margin-left: -10px !important;
  }

  .ms-xxl-n11 {
    margin-left: -11px !important;
  }

  .ms-xxl-n12 {
    margin-left: -12px !important;
  }

  .ms-xxl-n13 {
    margin-left: -13px !important;
  }

  .ms-xxl-n15 {
    margin-left: -15px !important;
  }

  .ms-xxl-n17 {
    margin-left: -17px !important;
  }

  .ms-xxl-n18 {
    margin-left: -18px !important;
  }

  .ms-xxl-n20 {
    margin-left: -20px !important;
  }

  .ms-xxl-n25 {
    margin-left: -25px !important;
  }

  .ms-xxl-n30 {
    margin-left: -30px !important;
  }

  .ms-xxl-n35 {
    margin-left: -35px !important;
  }

  .ms-xxl-n40 {
    margin-left: -40px !important;
  }

  .ms-xxl-n45 {
    margin-left: -45px !important;
  }

  .ms-xxl-n50 {
    margin-left: -50px !important;
  }

  .ms-xxl-n55 {
    margin-left: -55px !important;
  }

  .ms-xxl-n60 {
    margin-left: -60px !important;
  }

  .ms-xxl-n65 {
    margin-left: -65px !important;
  }

  .ms-xxl-n70 {
    margin-left: -70px !important;
  }

  .ms-xxl-n75 {
    margin-left: -75px !important;
  }

  .ms-xxl-n80 {
    margin-left: -80px !important;
  }

  .ms-xxl-n90 {
    margin-left: -90px !important;
  }

  .ms-xxl-n95 {
    margin-left: -95px !important;
  }

  .ms-xxl-n100 {
    margin-left: -100px !important;
  }

  .ms-xxl-n110 {
    margin-left: -110px !important;
  }

  .ms-xxl-n115 {
    margin-left: -115px !important;
  }

  .ms-xxl-n120 {
    margin-left: -120px !important;
  }

  .ms-xxl-n130 {
    margin-left: -130px !important;
  }

  .ms-xxl-n150 {
    margin-left: -150px !important;
  }

  .ms-xxl-n160 {
    margin-left: -160px !important;
  }

  .ms-xxl-n180 {
    margin-left: -180px !important;
  }

  .ms-xxl-n190 {
    margin-left: -190px !important;
  }

  .ms-xxl-n200 {
    margin-left: -200px !important;
  }

  .ms-xxl-n210 {
    margin-left: -210px !important;
  }

  .ms-xxl-n235 {
    margin-left: -235px !important;
  }

  .ms-xxl-n240 {
    margin-left: -240px !important;
  }

  .ms-xxl-n270 {
    margin-left: -270px !important;
  }

  .ms-xxl-n290 {
    margin-left: -290px !important;
  }

  .ms-xxl-n300 {
    margin-left: -300px !important;
  }

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

  .p-xxl-1 {
    padding: 1px !important;
  }

  .p-xxl-2 {
    padding: 2px !important;
  }

  .p-xxl-3 {
    padding: 3px !important;
  }

  .p-xxl-4 {
    padding: 4px !important;
  }

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

  .p-xxl-6 {
    padding: 6px !important;
  }

  .p-xxl-7 {
    padding: 7px !important;
  }

  .p-xxl-8 {
    padding: 8px !important;
  }

  .p-xxl-9 {
    padding: 9px !important;
  }

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

  .p-xxl-11 {
    padding: 11px !important;
  }

  .p-xxl-12 {
    padding: 12px !important;
  }

  .p-xxl-13 {
    padding: 13px !important;
  }

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

  .p-xxl-17 {
    padding: 17px !important;
  }

  .p-xxl-18 {
    padding: 18px !important;
  }

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

  .p-xxl-25 {
    padding: 25px !important;
  }

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

  .p-xxl-35 {
    padding: 35px !important;
  }

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

  .p-xxl-45 {
    padding: 45px !important;
  }

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

  .p-xxl-55 {
    padding: 55px !important;
  }

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

  .p-xxl-65 {
    padding: 65px !important;
  }

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

  .p-xxl-75 {
    padding: 75px !important;
  }

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

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

  .p-xxl-95 {
    padding: 95px !important;
  }

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

  .p-xxl-110 {
    padding: 110px !important;
  }

  .p-xxl-115 {
    padding: 115px !important;
  }

  .p-xxl-120 {
    padding: 120px !important;
  }

  .p-xxl-130 {
    padding: 130px !important;
  }

  .p-xxl-150 {
    padding: 150px !important;
  }

  .p-xxl-160 {
    padding: 160px !important;
  }

  .p-xxl-180 {
    padding: 180px !important;
  }

  .p-xxl-190 {
    padding: 190px !important;
  }

  .p-xxl-200 {
    padding: 200px !important;
  }

  .p-xxl-210 {
    padding: 210px !important;
  }

  .p-xxl-235 {
    padding: 235px !important;
  }

  .p-xxl-240 {
    padding: 240px !important;
  }

  .p-xxl-270 {
    padding: 270px !important;
  }

  .p-xxl-290 {
    padding: 290px !important;
  }

  .p-xxl-300 {
    padding: 300px !important;
  }

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

  .px-xxl-1 {
    padding-right: 1px !important;
    padding-left: 1px !important;
  }

  .px-xxl-2 {
    padding-right: 2px !important;
    padding-left: 2px !important;
  }

  .px-xxl-3 {
    padding-right: 3px !important;
    padding-left: 3px !important;
  }

  .px-xxl-4 {
    padding-right: 4px !important;
    padding-left: 4px !important;
  }

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

  .px-xxl-6 {
    padding-right: 6px !important;
    padding-left: 6px !important;
  }

  .px-xxl-7 {
    padding-right: 7px !important;
    padding-left: 7px !important;
  }

  .px-xxl-8 {
    padding-right: 8px !important;
    padding-left: 8px !important;
  }

  .px-xxl-9 {
    padding-right: 9px !important;
    padding-left: 9px !important;
  }

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

  .px-xxl-11 {
    padding-right: 11px !important;
    padding-left: 11px !important;
  }

  .px-xxl-12 {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  .px-xxl-13 {
    padding-right: 13px !important;
    padding-left: 13px !important;
  }

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

  .px-xxl-17 {
    padding-right: 17px !important;
    padding-left: 17px !important;
  }

  .px-xxl-18 {
    padding-right: 18px !important;
    padding-left: 18px !important;
  }

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

  .px-xxl-25 {
    padding-right: 25px !important;
    padding-left: 25px !important;
  }

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

  .px-xxl-35 {
    padding-right: 35px !important;
    padding-left: 35px !important;
  }

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

  .px-xxl-45 {
    padding-right: 45px !important;
    padding-left: 45px !important;
  }

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

  .px-xxl-55 {
    padding-right: 55px !important;
    padding-left: 55px !important;
  }

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

  .px-xxl-65 {
    padding-right: 65px !important;
    padding-left: 65px !important;
  }

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

  .px-xxl-75 {
    padding-right: 75px !important;
    padding-left: 75px !important;
  }

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

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

  .px-xxl-95 {
    padding-right: 95px !important;
    padding-left: 95px !important;
  }

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

  .px-xxl-110 {
    padding-right: 110px !important;
    padding-left: 110px !important;
  }

  .px-xxl-115 {
    padding-right: 115px !important;
    padding-left: 115px !important;
  }

  .px-xxl-120 {
    padding-right: 120px !important;
    padding-left: 120px !important;
  }

  .px-xxl-130 {
    padding-right: 130px !important;
    padding-left: 130px !important;
  }

  .px-xxl-150 {
    padding-right: 150px !important;
    padding-left: 150px !important;
  }

  .px-xxl-160 {
    padding-right: 160px !important;
    padding-left: 160px !important;
  }

  .px-xxl-180 {
    padding-right: 180px !important;
    padding-left: 180px !important;
  }

  .px-xxl-190 {
    padding-right: 190px !important;
    padding-left: 190px !important;
  }

  .px-xxl-200 {
    padding-right: 200px !important;
    padding-left: 200px !important;
  }

  .px-xxl-210 {
    padding-right: 210px !important;
    padding-left: 210px !important;
  }

  .px-xxl-235 {
    padding-right: 235px !important;
    padding-left: 235px !important;
  }

  .px-xxl-240 {
    padding-right: 240px !important;
    padding-left: 240px !important;
  }

  .px-xxl-270 {
    padding-right: 270px !important;
    padding-left: 270px !important;
  }

  .px-xxl-290 {
    padding-right: 290px !important;
    padding-left: 290px !important;
  }

  .px-xxl-300 {
    padding-right: 300px !important;
    padding-left: 300px !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 1px !important;
    padding-bottom: 1px !important;
  }

  .py-xxl-2 {
    padding-top: 2px !important;
    padding-bottom: 2px !important;
  }

  .py-xxl-3 {
    padding-top: 3px !important;
    padding-bottom: 3px !important;
  }

  .py-xxl-4 {
    padding-top: 4px !important;
    padding-bottom: 4px !important;
  }

  .py-xxl-5 {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
  }

  .py-xxl-6 {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
  }

  .py-xxl-7 {
    padding-top: 7px !important;
    padding-bottom: 7px !important;
  }

  .py-xxl-8 {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
  }

  .py-xxl-9 {
    padding-top: 9px !important;
    padding-bottom: 9px !important;
  }

  .py-xxl-10 {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
  }

  .py-xxl-11 {
    padding-top: 11px !important;
    padding-bottom: 11px !important;
  }

  .py-xxl-12 {
    padding-top: 12px !important;
    padding-bottom: 12px !important;
  }

  .py-xxl-13 {
    padding-top: 13px !important;
    padding-bottom: 13px !important;
  }

  .py-xxl-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
  }

  .py-xxl-17 {
    padding-top: 17px !important;
    padding-bottom: 17px !important;
  }

  .py-xxl-18 {
    padding-top: 18px !important;
    padding-bottom: 18px !important;
  }

  .py-xxl-20 {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
  }

  .py-xxl-25 {
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }

  .py-xxl-30 {
    padding-top: 30px !important;
    padding-bottom: 30px !important;
  }

  .py-xxl-35 {
    padding-top: 35px !important;
    padding-bottom: 35px !important;
  }

  .py-xxl-40 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }

  .py-xxl-45 {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
  }

  .py-xxl-50 {
    padding-top: 50px !important;
    padding-bottom: 50px !important;
  }

  .py-xxl-55 {
    padding-top: 55px !important;
    padding-bottom: 55px !important;
  }

  .py-xxl-60 {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }

  .py-xxl-65 {
    padding-top: 65px !important;
    padding-bottom: 65px !important;
  }

  .py-xxl-70 {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .py-xxl-75 {
    padding-top: 75px !important;
    padding-bottom: 75px !important;
  }

  .py-xxl-80 {
    padding-top: 80px !important;
    padding-bottom: 80px !important;
  }

  .py-xxl-90 {
    padding-top: 90px !important;
    padding-bottom: 90px !important;
  }

  .py-xxl-95 {
    padding-top: 95px !important;
    padding-bottom: 95px !important;
  }

  .py-xxl-100 {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
  }

  .py-xxl-110 {
    padding-top: 110px !important;
    padding-bottom: 110px !important;
  }

  .py-xxl-115 {
    padding-top: 115px !important;
    padding-bottom: 115px !important;
  }

  .py-xxl-120 {
    padding-top: 120px !important;
    padding-bottom: 120px !important;
  }

  .py-xxl-130 {
    padding-top: 130px !important;
    padding-bottom: 130px !important;
  }

  .py-xxl-150 {
    padding-top: 150px !important;
    padding-bottom: 150px !important;
  }

  .py-xxl-160 {
    padding-top: 160px !important;
    padding-bottom: 160px !important;
  }

  .py-xxl-180 {
    padding-top: 180px !important;
    padding-bottom: 180px !important;
  }

  .py-xxl-190 {
    padding-top: 190px !important;
    padding-bottom: 190px !important;
  }

  .py-xxl-200 {
    padding-top: 200px !important;
    padding-bottom: 200px !important;
  }

  .py-xxl-210 {
    padding-top: 210px !important;
    padding-bottom: 210px !important;
  }

  .py-xxl-235 {
    padding-top: 235px !important;
    padding-bottom: 235px !important;
  }

  .py-xxl-240 {
    padding-top: 240px !important;
    padding-bottom: 240px !important;
  }

  .py-xxl-270 {
    padding-top: 270px !important;
    padding-bottom: 270px !important;
  }

  .py-xxl-290 {
    padding-top: 290px !important;
    padding-bottom: 290px !important;
  }

  .py-xxl-300 {
    padding-top: 300px !important;
    padding-bottom: 300px !important;
  }

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

  .pt-xxl-1 {
    padding-top: 1px !important;
  }

  .pt-xxl-2 {
    padding-top: 2px !important;
  }

  .pt-xxl-3 {
    padding-top: 3px !important;
  }

  .pt-xxl-4 {
    padding-top: 4px !important;
  }

  .pt-xxl-5 {
    padding-top: 5px !important;
  }

  .pt-xxl-6 {
    padding-top: 6px !important;
  }

  .pt-xxl-7 {
    padding-top: 7px !important;
  }

  .pt-xxl-8 {
    padding-top: 8px !important;
  }

  .pt-xxl-9 {
    padding-top: 9px !important;
  }

  .pt-xxl-10 {
    padding-top: 10px !important;
  }

  .pt-xxl-11 {
    padding-top: 11px !important;
  }

  .pt-xxl-12 {
    padding-top: 12px !important;
  }

  .pt-xxl-13 {
    padding-top: 13px !important;
  }

  .pt-xxl-15 {
    padding-top: 15px !important;
  }

  .pt-xxl-17 {
    padding-top: 17px !important;
  }

  .pt-xxl-18 {
    padding-top: 18px !important;
  }

  .pt-xxl-20 {
    padding-top: 20px !important;
  }

  .pt-xxl-25 {
    padding-top: 25px !important;
  }

  .pt-xxl-30 {
    padding-top: 30px !important;
  }

  .pt-xxl-35 {
    padding-top: 35px !important;
  }

  .pt-xxl-40 {
    padding-top: 40px !important;
  }

  .pt-xxl-45 {
    padding-top: 45px !important;
  }

  .pt-xxl-50 {
    padding-top: 50px !important;
  }

  .pt-xxl-55 {
    padding-top: 55px !important;
  }

  .pt-xxl-60 {
    padding-top: 60px !important;
  }

  .pt-xxl-65 {
    padding-top: 65px !important;
  }

  .pt-xxl-70 {
    padding-top: 70px !important;
  }

  .pt-xxl-75 {
    padding-top: 75px !important;
  }

  .pt-xxl-80 {
    padding-top: 80px !important;
  }

  .pt-xxl-90 {
    padding-top: 90px !important;
  }

  .pt-xxl-95 {
    padding-top: 95px !important;
  }

  .pt-xxl-100 {
    padding-top: 100px !important;
  }

  .pt-xxl-110 {
    padding-top: 110px !important;
  }

  .pt-xxl-115 {
    padding-top: 115px !important;
  }

  .pt-xxl-120 {
    padding-top: 120px !important;
  }

  .pt-xxl-130 {
    padding-top: 130px !important;
  }

  .pt-xxl-150 {
    padding-top: 150px !important;
  }

  .pt-xxl-160 {
    padding-top: 160px !important;
  }

  .pt-xxl-180 {
    padding-top: 180px !important;
  }

  .pt-xxl-190 {
    padding-top: 190px !important;
  }

  .pt-xxl-200 {
    padding-top: 200px !important;
  }

  .pt-xxl-210 {
    padding-top: 210px !important;
  }

  .pt-xxl-235 {
    padding-top: 235px !important;
  }

  .pt-xxl-240 {
    padding-top: 240px !important;
  }

  .pt-xxl-270 {
    padding-top: 270px !important;
  }

  .pt-xxl-290 {
    padding-top: 290px !important;
  }

  .pt-xxl-300 {
    padding-top: 300px !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 1px !important;
  }

  .pe-xxl-2 {
    padding-right: 2px !important;
  }

  .pe-xxl-3 {
    padding-right: 3px !important;
  }

  .pe-xxl-4 {
    padding-right: 4px !important;
  }

  .pe-xxl-5 {
    padding-right: 5px !important;
  }

  .pe-xxl-6 {
    padding-right: 6px !important;
  }

  .pe-xxl-7 {
    padding-right: 7px !important;
  }

  .pe-xxl-8 {
    padding-right: 8px !important;
  }

  .pe-xxl-9 {
    padding-right: 9px !important;
  }

  .pe-xxl-10 {
    padding-right: 10px !important;
  }

  .pe-xxl-11 {
    padding-right: 11px !important;
  }

  .pe-xxl-12 {
    padding-right: 12px !important;
  }

  .pe-xxl-13 {
    padding-right: 13px !important;
  }

  .pe-xxl-15 {
    padding-right: 15px !important;
  }

  .pe-xxl-17 {
    padding-right: 17px !important;
  }

  .pe-xxl-18 {
    padding-right: 18px !important;
  }

  .pe-xxl-20 {
    padding-right: 20px !important;
  }

  .pe-xxl-25 {
    padding-right: 25px !important;
  }

  .pe-xxl-30 {
    padding-right: 30px !important;
  }

  .pe-xxl-35 {
    padding-right: 35px !important;
  }

  .pe-xxl-40 {
    padding-right: 40px !important;
  }

  .pe-xxl-45 {
    padding-right: 45px !important;
  }

  .pe-xxl-50 {
    padding-right: 50px !important;
  }

  .pe-xxl-55 {
    padding-right: 55px !important;
  }

  .pe-xxl-60 {
    padding-right: 60px !important;
  }

  .pe-xxl-65 {
    padding-right: 65px !important;
  }

  .pe-xxl-70 {
    padding-right: 70px !important;
  }

  .pe-xxl-75 {
    padding-right: 75px !important;
  }

  .pe-xxl-80 {
    padding-right: 80px !important;
  }

  .pe-xxl-90 {
    padding-right: 90px !important;
  }

  .pe-xxl-95 {
    padding-right: 95px !important;
  }

  .pe-xxl-100 {
    padding-right: 100px !important;
  }

  .pe-xxl-110 {
    padding-right: 110px !important;
  }

  .pe-xxl-115 {
    padding-right: 115px !important;
  }

  .pe-xxl-120 {
    padding-right: 120px !important;
  }

  .pe-xxl-130 {
    padding-right: 130px !important;
  }

  .pe-xxl-150 {
    padding-right: 150px !important;
  }

  .pe-xxl-160 {
    padding-right: 160px !important;
  }

  .pe-xxl-180 {
    padding-right: 180px !important;
  }

  .pe-xxl-190 {
    padding-right: 190px !important;
  }

  .pe-xxl-200 {
    padding-right: 200px !important;
  }

  .pe-xxl-210 {
    padding-right: 210px !important;
  }

  .pe-xxl-235 {
    padding-right: 235px !important;
  }

  .pe-xxl-240 {
    padding-right: 240px !important;
  }

  .pe-xxl-270 {
    padding-right: 270px !important;
  }

  .pe-xxl-290 {
    padding-right: 290px !important;
  }

  .pe-xxl-300 {
    padding-right: 300px !important;
  }

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

  .pb-xxl-1 {
    padding-bottom: 1px !important;
  }

  .pb-xxl-2 {
    padding-bottom: 2px !important;
  }

  .pb-xxl-3 {
    padding-bottom: 3px !important;
  }

  .pb-xxl-4 {
    padding-bottom: 4px !important;
  }

  .pb-xxl-5 {
    padding-bottom: 5px !important;
  }

  .pb-xxl-6 {
    padding-bottom: 6px !important;
  }

  .pb-xxl-7 {
    padding-bottom: 7px !important;
  }

  .pb-xxl-8 {
    padding-bottom: 8px !important;
  }

  .pb-xxl-9 {
    padding-bottom: 9px !important;
  }

  .pb-xxl-10 {
    padding-bottom: 10px !important;
  }

  .pb-xxl-11 {
    padding-bottom: 11px !important;
  }

  .pb-xxl-12 {
    padding-bottom: 12px !important;
  }

  .pb-xxl-13 {
    padding-bottom: 13px !important;
  }

  .pb-xxl-15 {
    padding-bottom: 15px !important;
  }

  .pb-xxl-17 {
    padding-bottom: 17px !important;
  }

  .pb-xxl-18 {
    padding-bottom: 18px !important;
  }

  .pb-xxl-20 {
    padding-bottom: 20px !important;
  }

  .pb-xxl-25 {
    padding-bottom: 25px !important;
  }

  .pb-xxl-30 {
    padding-bottom: 30px !important;
  }

  .pb-xxl-35 {
    padding-bottom: 35px !important;
  }

  .pb-xxl-40 {
    padding-bottom: 40px !important;
  }

  .pb-xxl-45 {
    padding-bottom: 45px !important;
  }

  .pb-xxl-50 {
    padding-bottom: 50px !important;
  }

  .pb-xxl-55 {
    padding-bottom: 55px !important;
  }

  .pb-xxl-60 {
    padding-bottom: 60px !important;
  }

  .pb-xxl-65 {
    padding-bottom: 65px !important;
  }

  .pb-xxl-70 {
    padding-bottom: 70px !important;
  }

  .pb-xxl-75 {
    padding-bottom: 75px !important;
  }

  .pb-xxl-80 {
    padding-bottom: 80px !important;
  }

  .pb-xxl-90 {
    padding-bottom: 90px !important;
  }

  .pb-xxl-95 {
    padding-bottom: 95px !important;
  }

  .pb-xxl-100 {
    padding-bottom: 100px !important;
  }

  .pb-xxl-110 {
    padding-bottom: 110px !important;
  }

  .pb-xxl-115 {
    padding-bottom: 115px !important;
  }

  .pb-xxl-120 {
    padding-bottom: 120px !important;
  }

  .pb-xxl-130 {
    padding-bottom: 130px !important;
  }

  .pb-xxl-150 {
    padding-bottom: 150px !important;
  }

  .pb-xxl-160 {
    padding-bottom: 160px !important;
  }

  .pb-xxl-180 {
    padding-bottom: 180px !important;
  }

  .pb-xxl-190 {
    padding-bottom: 190px !important;
  }

  .pb-xxl-200 {
    padding-bottom: 200px !important;
  }

  .pb-xxl-210 {
    padding-bottom: 210px !important;
  }

  .pb-xxl-235 {
    padding-bottom: 235px !important;
  }

  .pb-xxl-240 {
    padding-bottom: 240px !important;
  }

  .pb-xxl-270 {
    padding-bottom: 270px !important;
  }

  .pb-xxl-290 {
    padding-bottom: 290px !important;
  }

  .pb-xxl-300 {
    padding-bottom: 300px !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 1px !important;
  }

  .ps-xxl-2 {
    padding-left: 2px !important;
  }

  .ps-xxl-3 {
    padding-left: 3px !important;
  }

  .ps-xxl-4 {
    padding-left: 4px !important;
  }

  .ps-xxl-5 {
    padding-left: 5px !important;
  }

  .ps-xxl-6 {
    padding-left: 6px !important;
  }

  .ps-xxl-7 {
    padding-left: 7px !important;
  }

  .ps-xxl-8 {
    padding-left: 8px !important;
  }

  .ps-xxl-9 {
    padding-left: 9px !important;
  }

  .ps-xxl-10 {
    padding-left: 10px !important;
  }

  .ps-xxl-11 {
    padding-left: 11px !important;
  }

  .ps-xxl-12 {
    padding-left: 12px !important;
  }

  .ps-xxl-13 {
    padding-left: 13px !important;
  }

  .ps-xxl-15 {
    padding-left: 15px !important;
  }

  .ps-xxl-17 {
    padding-left: 17px !important;
  }

  .ps-xxl-18 {
    padding-left: 18px !important;
  }

  .ps-xxl-20 {
    padding-left: 20px !important;
  }

  .ps-xxl-25 {
    padding-left: 25px !important;
  }

  .ps-xxl-30 {
    padding-left: 30px !important;
  }

  .ps-xxl-35 {
    padding-left: 35px !important;
  }

  .ps-xxl-40 {
    padding-left: 40px !important;
  }

  .ps-xxl-45 {
    padding-left: 45px !important;
  }

  .ps-xxl-50 {
    padding-left: 50px !important;
  }

  .ps-xxl-55 {
    padding-left: 55px !important;
  }

  .ps-xxl-60 {
    padding-left: 60px !important;
  }

  .ps-xxl-65 {
    padding-left: 65px !important;
  }

  .ps-xxl-70 {
    padding-left: 70px !important;
  }

  .ps-xxl-75 {
    padding-left: 75px !important;
  }

  .ps-xxl-80 {
    padding-left: 80px !important;
  }

  .ps-xxl-90 {
    padding-left: 90px !important;
  }

  .ps-xxl-95 {
    padding-left: 95px !important;
  }

  .ps-xxl-100 {
    padding-left: 100px !important;
  }

  .ps-xxl-110 {
    padding-left: 110px !important;
  }

  .ps-xxl-115 {
    padding-left: 115px !important;
  }

  .ps-xxl-120 {
    padding-left: 120px !important;
  }

  .ps-xxl-130 {
    padding-left: 130px !important;
  }

  .ps-xxl-150 {
    padding-left: 150px !important;
  }

  .ps-xxl-160 {
    padding-left: 160px !important;
  }

  .ps-xxl-180 {
    padding-left: 180px !important;
  }

  .ps-xxl-190 {
    padding-left: 190px !important;
  }

  .ps-xxl-200 {
    padding-left: 200px !important;
  }

  .ps-xxl-210 {
    padding-left: 210px !important;
  }

  .ps-xxl-235 {
    padding-left: 235px !important;
  }

  .ps-xxl-240 {
    padding-left: 240px !important;
  }

  .ps-xxl-270 {
    padding-left: 270px !important;
  }

  .ps-xxl-290 {
    padding-left: 290px !important;
  }

  .ps-xxl-300 {
    padding-left: 300px !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.5rem !important;
  }

  .fs-2 {
    font-size: 2rem !important;
  }

  .fs-3 {
    font-size: 1.75rem !important;
  }

  .fs-4 {
    font-size: 1.5rem !important;
  }
}
@media print {
  .d-print-inline {
    display: inline !important;
  }

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

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

  .d-print-grid {
    display: grid !important;
  }

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

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

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

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

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

  .d-print-none {
    display: none !important;
  }
}
.btn {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.btn svg {
  height: 1em;
}
.btn:hover, .btn:focus {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}

.btn-clean {
  padding: 0;
  background-color: transparent;
}

.btn-accent-1 {
  color: #fff;
  background-color: #F01F4B;
}
.btn-accent-1:hover, .btn-accent-1:focus, .btn-accent-1.focus, .btn-accent-1:not(:disabled):not(.disabled):active, .btn-accent-1:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #e60f3d;
}

.btn-accent-2 {
  color: #fff;
  background-color: #481FA0;
}
.btn-accent-2:hover, .btn-accent-2:focus, .btn-accent-2.focus, .btn-accent-2:not(:disabled):not(.disabled):active, .btn-accent-2:not(:disabled):not(.disabled).active {
  color: #fff;
  background-color: #3e1b8b;
}

.btn-accent-3 {
  color: #17161A;
  background-color: #FFBB38;
}
.btn-accent-3:hover, .btn-accent-3:focus, .btn-accent-3.focus, .btn-accent-3:not(:disabled):not(.disabled):active, .btn-accent-3:not(:disabled):not(.disabled).active {
  color: #17161A;
  background-color: #ffb21f;
}

.btn-light {
  color: #17161A;
  background-color: rgba(177, 177, 180, 0.3);
}
.btn-light:hover, .btn-light:focus, .btn-light.focus, .btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active {
  color: #17161A;
  background-color: #F5F5F7;
}

.btn-link {
  position: relative;
  font-weight: 700;
  color: #17161A;
  text-decoration: none;
}
.btn-link:hover, .btn-link:focus {
  -webkit-transform: none;
      -ms-transform: none;
          transform: none;
}
.btn-link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: currentColor;
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  -webkit-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: 0 50%;
      -ms-transform-origin: 0 50%;
          transform-origin: 0 50%;
  will-change: transform;
}
.btn-link.btn-accent-1, .btn-link.btn-accent-1:hover, .btn-link.btn-accent-1:focus, .btn-link.btn-accent-1.focus, .btn-link.btn-accent-1:not(:disabled):not(.disabled):active, .btn-link.btn-accent-1:not(:disabled):not(.disabled).active {
  color: #F01F4B;
  background-color: transparent;
}
.btn-link:hover, .btn-link:focus {
  color: #17161A;
  text-decoration: none;
}
.btn-link:hover::after, .btn-link:focus::after {
  -webkit-transform: scale(0, 1);
      -ms-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: 100% 50%;
      -ms-transform-origin: 100% 50%;
          transform-origin: 100% 50%;
}

.btn-video {
  position: relative;
  width: 80px;
  height: 80px;
}
.btn-video svg {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate3d(-50%, -50%, 0);
          transform: translate3d(-50%, -50%, 0);
}

.badge {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.accordion-header .accordion-button {
  margin-bottom: 0;
  color: #17161A;
  text-decoration: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media (max-width: 1199.98px) {
  .accordion-header .accordion-button {
    padding: 30px 45px;
  }
}
@media (max-width: 827.98px) {
  .accordion-header .accordion-button {
    padding: 30px;
  }
}
.accordion-header .accordion-button::after {
  background-position: center;
  background-size: auto;
}
.accordion-header .accordion-button:not(.collapsed) {
  -webkit-box-shadow: none;
          box-shadow: none;
}
.accordion-header .accordion-button[aria-expanded=true] {
  color: #F01F4B;
}
.accordion-header .accordion-button[aria-expanded=true] h4, .accordion-header .accordion-button[aria-expanded=true] .h4 {
  color: inherit;
}

.accordion-item {
  border-radius: 14px !important;
}
.accordion-item:not(:first-of-type) {
  border-top: 1px solid rgba(177, 177, 180, 0.3);
}

.accordion-item + .accordion-item {
  margin-top: 20px;
}

.accordion-body {
  padding-top: 0;
}
.accordion-body p:last-child {
  margin-bottom: 0;
}

.form-control {
  padding-bottom: 16px;
  font-size: 15px;
  border-top: 0;
  border-right: 0;
  border-left: 0;
}
.form-control.form-control-white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}
.form-control.form-control-white::-webkit-input-placeholder {
  color: #fff;
}
.form-control.form-control-white::-moz-placeholder {
  color: #fff;
}
.form-control.form-control-white:-ms-input-placeholder {
  color: #fff;
}
.form-control.form-control-white::-ms-input-placeholder {
  color: #fff;
}
.form-control.form-control-white::placeholder {
  color: #fff;
}
.form-control.form-control-white option {
  color: #17161A;
}
.form-control.form-control-white:hover, .form-control.form-control-white:focus {
  color: #fff;
  border-color: #fff;
}
.form-control.form-control-white:hover::-webkit-input-placeholder, .form-control.form-control-white:focus::-webkit-input-placeholder {
  color: #fff;
}
.form-control.form-control-white:hover::-moz-placeholder, .form-control.form-control-white:focus::-moz-placeholder {
  color: #fff;
}
.form-control.form-control-white:hover:-ms-input-placeholder, .form-control.form-control-white:focus:-ms-input-placeholder {
  color: #fff;
}
.form-control.form-control-white:hover::-ms-input-placeholder, .form-control.form-control-white:focus::-ms-input-placeholder {
  color: #fff;
}
.form-control.form-control-white:hover::placeholder, .form-control.form-control-white:focus::placeholder {
  color: #fff;
}
.form-control.form-control-gray {
  color: #fff;
  border-color: #4B4A4D;
}
.form-control.form-control-gray::-webkit-input-placeholder {
  color: #fff;
}
.form-control.form-control-gray::-moz-placeholder {
  color: #fff;
}
.form-control.form-control-gray:-ms-input-placeholder {
  color: #fff;
}
.form-control.form-control-gray::-ms-input-placeholder {
  color: #fff;
}
.form-control.form-control-gray::placeholder {
  color: #fff;
}
.form-control.form-control-gray option {
  color: #17161A;
}
.form-control.form-control-gray:hover, .form-control.form-control-gray:focus {
  color: #fff;
  border-color: #fff;
}
.form-control.form-control-gray:hover::-webkit-input-placeholder, .form-control.form-control-gray:focus::-webkit-input-placeholder {
  color: #fff;
}
.form-control.form-control-gray:hover::-moz-placeholder, .form-control.form-control-gray:focus::-moz-placeholder {
  color: #fff;
}
.form-control.form-control-gray:hover:-ms-input-placeholder, .form-control.form-control-gray:focus:-ms-input-placeholder {
  color: #fff;
}
.form-control.form-control-gray:hover::-ms-input-placeholder, .form-control.form-control-gray:focus::-ms-input-placeholder {
  color: #fff;
}
.form-control.form-control-gray:hover::placeholder, .form-control.form-control-gray:focus::placeholder {
  color: #fff;
}

.form-control-style-2 {
  padding: 14px 20px;
  font-size: 14px;
  color: #17161A;
  background-color: rgba(177, 177, 180, 0.17);
  border: none;
  border-radius: 6px;
}
.form-control-style-2:focus {
  background-color: rgba(177, 177, 180, 0.2);
}
.form-control-style-2.form-control-white {
  color: #17161A;
  background-color: #fff;
}
.form-control-style-2.form-control-white::-webkit-input-placeholder {
  color: #17161A;
}
.form-control-style-2.form-control-white::-moz-placeholder {
  color: #17161A;
}
.form-control-style-2.form-control-white:-ms-input-placeholder {
  color: #17161A;
}
.form-control-style-2.form-control-white::-ms-input-placeholder {
  color: #17161A;
}
.form-control-style-2.form-control-white::placeholder {
  color: #17161A;
}
.form-control-style-2.form-control-white:focus, .form-control-style-2.form-control-white:hover {
  color: #17161A;
  background-color: #fff;
}
.form-control-style-2.form-control-white:focus::-webkit-input-placeholder, .form-control-style-2.form-control-white:hover::-webkit-input-placeholder {
  color: #17161A;
}
.form-control-style-2.form-control-white:focus::-moz-placeholder, .form-control-style-2.form-control-white:hover::-moz-placeholder {
  color: #17161A;
}
.form-control-style-2.form-control-white:focus:-ms-input-placeholder, .form-control-style-2.form-control-white:hover:-ms-input-placeholder {
  color: #17161A;
}
.form-control-style-2.form-control-white:focus::-ms-input-placeholder, .form-control-style-2.form-control-white:hover::-ms-input-placeholder {
  color: #17161A;
}
.form-control-style-2.form-control-white:focus::placeholder, .form-control-style-2.form-control-white:hover::placeholder {
  color: #17161A;
}

.form-control-style-3 {
  padding: 23px 28px;
  font-size: 14px;
  background-color: #F5F5F7;
  border: none;
  border-radius: 35px;
}
.form-control-style-3:focus {
  background-color: #F5F5F7;
}
.form-control-style-3.form-control-white {
  color: #17161A;
  background-color: #fff;
}
.form-control-style-3.form-control-white::-webkit-input-placeholder {
  color: #17161A;
}
.form-control-style-3.form-control-white::-moz-placeholder {
  color: #17161A;
}
.form-control-style-3.form-control-white:-ms-input-placeholder {
  color: #17161A;
}
.form-control-style-3.form-control-white::-ms-input-placeholder {
  color: #17161A;
}
.form-control-style-3.form-control-white::placeholder {
  color: #17161A;
}
.form-control-style-3.form-control-white:focus, .form-control-style-3.form-control-white:hover {
  color: #17161A;
  background-color: #fff;
}
.form-control-style-3.form-control-white:focus::-webkit-input-placeholder, .form-control-style-3.form-control-white:hover::-webkit-input-placeholder {
  color: #17161A;
}
.form-control-style-3.form-control-white:focus::-moz-placeholder, .form-control-style-3.form-control-white:hover::-moz-placeholder {
  color: #17161A;
}
.form-control-style-3.form-control-white:focus:-ms-input-placeholder, .form-control-style-3.form-control-white:hover:-ms-input-placeholder {
  color: #17161A;
}
.form-control-style-3.form-control-white:focus::-ms-input-placeholder, .form-control-style-3.form-control-white:hover::-ms-input-placeholder {
  color: #17161A;
}
.form-control-style-3.form-control-white:focus::placeholder, .form-control-style-3.form-control-white:hover::placeholder {
  color: #17161A;
}

select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3e%3cpath fill='%234B4A4D' d='m6 6-.495.495L6 6.99l.495-.495L6 6ZM.505 1.495l5 5 .99-.99-5-5-.99.99Zm5.99 5 5-5-.99-.99-5 5 .99.99Z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: 100% calc(50% - 8px);
  background-size: 12px 7px;
}

select.form-control-style-2,
select.form-control-style-3 {
  background-position: calc(100% - 20px) center;
}

select.form-control-white {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3e%3cpath fill='%23fff' d='m6 6-.495.495L6 6.99l.495-.495L6 6ZM.505 1.495l5 5 .99-.99-5-5-.99.99Zm5.99 5 5-5-.99-.99-5 5 .99.99Z'/%3e%3c/svg%3e");
}

.form-group-overlay {
  position: relative;
}
.form-group-overlay .btn {
  position: absolute;
  top: 0;
  right: 0;
}

.form-check {
  padding-left: 30px;
}

.form-check-input[type=checkbox] {
  border-radius: 3px;
}

.form-check .form-check-input {
  width: 17px;
  height: 17px;
  margin-left: -30px;
  border-color: rgba(177, 177, 180, 0.7);
}
.form-check .form-check-input:checked {
  background-color: #17161A;
  border-color: #17161A;
}
.form-check .form-check-label {
  cursor: pointer;
}

.form-check-white {
  color: #fff;
}
.form-check-white .form-check-input {
  border-color: #fff;
}
.form-check-white .form-check-input[type=checkbox]:checked {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%2317161A' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
  border-color: #fff;
}

.form-check .form-check-label {
  font-size: 13px;
}

.form-attach-label {
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.form-attach-label svg {
  margin-right: 15px;
}

.form-attach-file-white {
  color: #fff;
}

.nav {
  font-size: 0.9375em;
}
.nav .nav-link,
.nav .nav-link.active {
  color: #17161A;
}
.nav .nav-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 6px 18px;
  margin-bottom: 0;
  font-weight: 500;
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
  will-change: opacity;
}
.nav .nav-link > svg {
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.nav .nav-link span {
  position: relative;
}
.nav .nav-link span::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background-color: currentColor;
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: center left;
      -ms-transform-origin: center left;
          transform-origin: center left;
  will-change: transform;
}
.nav .active > .nav-link span::before,
.nav .nav-link.active > span::before {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}
.nav:not(.nav-opacity):not(.nav-no-opacity):hover .nav-link, .nav:not(.nav-opacity):not(.nav-no-opacity).focus .nav-link {
  opacity: 0.6;
}
.nav:not(.nav-opacity):not(.nav-no-opacity):hover .active > .nav-link,
.nav:not(.nav-opacity):not(.nav-no-opacity):hover .nav-link.active, .nav:not(.nav-opacity):not(.nav-no-opacity).focus .active > .nav-link,
.nav:not(.nav-opacity):not(.nav-no-opacity).focus .nav-link.active {
  opacity: 1;
}
.nav:not(.nav-opacity):not(.nav-no-opacity) .nav-link:hover, .nav:not(.nav-opacity):not(.nav-no-opacity) .nav-link:focus, .nav:not(.nav-opacity):not(.nav-no-opacity) .nav-link.active {
  opacity: 1;
}
.nav.nav-no-opacity .nav-link {
  opacity: 1;
}
.nav.nav-no-opacity .nav-link:hover, .nav.nav-no-opacity .nav-link:focus, .nav.nav-no-opacity .nav-link.active {
  opacity: 1;
}
.nav.nav-opacity .nav-link {
  opacity: 0.6;
}
.nav.nav-opacity .nav-link:hover, .nav.nav-opacity .nav-link:focus, .nav.nav-opacity .nav-link.active {
  opacity: 1;
}

.nav[class*=-column] {
  margin: -2px 0;
  font-size: 0.9375em;
}
.nav[class*=-column] .nav-item {
  display: block;
  max-width: 100%;
}
.nav[class*=-column] .nav-link {
  padding: 2px 0;
}

.nav.text-muted .nav-link,
.nav.text-muted .nav-link.active {
  color: #858589;
}

.nav.text-white .nav-link,
.nav.text-white .nav-link.active {
  color: #fff;
}

.nav-no-gap {
  margin: 0;
}
.nav-no-gap .nav-link {
  padding: 0;
}
.nav-no-gap[class*=-column] {
  margin: 0;
}
.nav-no-gap[class*=-column] .nav-link {
  padding: 0;
}

.nav.nav-gap-sm {
  margin: 0 -5px;
}
.nav.nav-gap-sm .nav-link {
  padding: 0 5px;
}
.nav.nav-gap-sm[class*=-column] {
  margin: -5px;
}
.nav.nav-gap-sm[class*=-column] .nav-link {
  padding: 5px;
}

.nav.nav-gap-md {
  margin: 0 -8px;
}
.nav.nav-gap-md .nav-link {
  padding: 0 8px;
}
.nav.nav-gap-md[class*=-column] {
  margin: -8px;
}
.nav.nav-gap-md[class*=-column] .nav-link {
  padding: 8px;
}

.nav.nav-gap-xl {
  margin: 0 -30px;
}
.nav.nav-gap-xl .nav-link {
  padding: 0 30px;
}
.nav.nav-gap-xl[class*=-column] {
  margin: -30px;
}
.nav.nav-gap-xl[class*=-column] .nav-link {
  padding: 30px;
}

.nav-tabs[class*=-column] .nav-link {
  position: relative;
  padding: 35px 50px 35px 40px;
  font-weight: normal;
  background-color: #fff;
}
.nav-tabs[class*=-column] .nav-link::after {
  content: "";
  position: absolute;
  top: calc(50% - 10px);
  left: 100%;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #fff;
  -webkit-transition: inherit;
  transition: inherit;
}
.nav-tabs[class*=-column] .nav-link.active {
  background-color: #F5F5F7;
}
.nav-tabs[class*=-column] .nav-link.active::after {
  border-left: 10px solid #F5F5F7;
}

.list-group {
  padding-left: 0;
}

.list-group.borderless .list-group-item {
  color: inherit;
  border: none;
}
.list-group.borderless .list-group-item a {
  text-decoration: none;
}

.card-wrapper {
  position: relative;
}

.card {
  color: #17161A;
}
.card .card-title,
.card .card-category {
  will-change: transform, opacity;
}
.card .card-title {
  color: inherit;
}
.card > .background {
  z-index: 1;
}
.card .background-color {
  opacity: 0;
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
  will-change: opacity;
}
.card.card-bg-show .background-color {
  opacity: 1;
}
.card:hover .background-color, .card:focus .background-color {
  opacity: 1;
}

.card-hover-zoom .card-img {
  display: block;
  overflow: hidden;
}
.card-hover-zoom img {
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
}
.card-portfolio {
  position: relative;
}
.card-portfolio .card-img {
  display: block;
}
.card-portfolio .card-location {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: auto;
  font-size: 13px;
  font-weight: 500;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.card-portfolio .card-location svg {
  margin-right: 14px;
  color: #FFBB38;
}
.card-portfolio .card-title {
  position: relative;
  display: block;
  margin-bottom: 0;
}
.card-portfolio a.card-title {
  text-decoration: none;
  -webkit-transition: color 150ms linear;
  transition: color 150ms linear;
}
.card-portfolio a.card-title:hover, .card-portfolio a.card-title:focus {
  color: #17161A;
}
.card-portfolio .card-category {
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 15px;
}
.card-portfolio a.card-category {
  text-decoration: none;
}
.card-portfolio .card-img-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 100%;
  padding: 40px 30px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
}
@media (min-width: 1024px) {
  .card-portfolio .card-img-overlay {
    padding: 50px 40px;
  }
}
@media (min-width: 1024px) {
  .card-portfolio .card-img-overlay-lg {
    padding: 50px 60px;
  }
}
.card-portfolio .card-body {
  display: block;
  padding: 0;
}
.card-portfolio.card-default .card-title {
  margin-bottom: 0;
}
.card-portfolio.card-default .card-subtitle {
  display: block;
}
.card-portfolio.card-default .card-body {
  padding: 34px 0 0;
}
.card-portfolio.card-default:hover, .card-portfolio.card-default:focus {
  color: #17161A;
}
.card-portfolio.card-overlay {
  overflow: hidden;
}
@media (max-width: 619.98px) {
  .card-portfolio.card-overlay .card-img {
    min-height: 300px;
  }
}
.card-portfolio.card-overlay:hover .background-color {
  background-color: var(--background-color-hover, var(--background-color));
}
.card-portfolio.card-horizontal {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  background-color: transparent;
}
@media (max-width: 1023.98px) {
  .card-portfolio.card-horizontal {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.card-portfolio.card-horizontal .card-title {
  margin-bottom: 35px;
}
.card-portfolio.card-horizontal .card-img {
  margin-bottom: 50px;
}
@media (min-width: 1024px) {
  .card-portfolio.card-horizontal .card-img {
    max-width: 500px;
    margin-right: 100px;
    margin-bottom: 0;
  }
}
.card-portfolio.card-horizontal .card-body {
  padding-right: 60px;
}
@media (min-width: 1024px) {
  .card-portfolio.card-horizontal .card-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.card-portfolio.card-horizontal .card-body p {
  margin-bottom: 0;
}
.card-portfolio.card-horizontal .btn {
  margin-top: 40px;
}
.card-portfolio.text-white a.card-title:hover, .card-portfolio.text-white a.card-title:focus {
  color: inherit;
}
.card-portfolio.text-white a.card-category {
  color: #fff;
}
.card-portfolio.card-hover-frame .card-img img {
  width: 100%;
  -webkit-transition: -webkit-clip-path 150ms linear;
  transition: -webkit-clip-path 150ms linear;
  transition: clip-path 150ms linear;
  transition: clip-path 150ms linear, -webkit-clip-path 150ms linear;
  will-change: clip-path;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.card-portfolio.card-hover-frame .card-img:hover img, .card-portfolio.card-hover-frame .card-img:focus img {
  -webkit-clip-path: polygon(10px 10px, calc(100% - 10px) 10px, calc(100% - 10px) calc(100% - 10px), 10px calc(100% - 10px));
          clip-path: polygon(10px 10px, calc(100% - 10px) 10px, calc(100% - 10px) calc(100% - 10px), 10px calc(100% - 10px));
}
.card-portfolio.card-hover-frame:hover .card-img img, .card-portfolio.card-hover-frame:focus .card-img img {
  -webkit-clip-path: polygon(10px 10px, calc(100% - 10px) 10px, calc(100% - 10px) calc(100% - 10px), 10px calc(100% - 10px));
          clip-path: polygon(10px 10px, calc(100% - 10px) 10px, calc(100% - 10px) calc(100% - 10px), 10px calc(100% - 10px));
}
.card-portfolio.card-hover-appearance {
  overflow: hidden;
}
.card-portfolio.card-hover-appearance .card-img img {
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
  will-change: transform;
}
.card-portfolio.card-hover-appearance .card-img-overlay {
  opacity: 0;
  -webkit-transition: opacity 150ms linear;
  transition: opacity 150ms linear;
  will-change: opacity;
}
.card-portfolio.card-hover-appearance .card-title,
.card-portfolio.card-hover-appearance .card-category {
  opacity: 0;
  -webkit-transition: opacity 150ms linear, -webkit-transform 150ms linear;
  transition: opacity 150ms linear, -webkit-transform 150ms linear;
  transition: transform 150ms linear, opacity 150ms linear;
  transition: transform 150ms linear, opacity 150ms linear, -webkit-transform 150ms linear;
  -webkit-transition-delay: 0.05s;
          transition-delay: 0.05s;
  will-change: transform, opacity;
}
.card-portfolio.card-hover-appearance .card-title {
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
}
.card-portfolio.card-hover-appearance .card-category {
  -webkit-transform: translateY(18px);
      -ms-transform: translateY(18px);
          transform: translateY(18px);
}
.card-portfolio.card-hover-appearance:hover .card-img-overlay, .card-portfolio.card-hover-appearance:focus .card-img-overlay {
  opacity: 1;
}
.card-portfolio.card-hover-appearance:hover .card-title,
.card-portfolio.card-hover-appearance:hover .card-category, .card-portfolio.card-hover-appearance:focus .card-title,
.card-portfolio.card-hover-appearance:focus .card-category {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.card-portfolio.card-hover-bar {
  overflow: hidden;
}
.card-portfolio.card-hover-bar .card-img img {
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  will-change: transform;
}
.card-portfolio.card-hover-bar .card-title,
.card-portfolio.card-hover-bar .card-category {
  opacity: 0;
  -webkit-transition: opacity 150ms linear, -webkit-transform 150ms linear;
  transition: opacity 150ms linear, -webkit-transform 150ms linear;
  transition: transform 150ms linear, opacity 150ms linear;
  transition: transform 150ms linear, opacity 150ms linear, -webkit-transform 150ms linear;
  will-change: transform, opacity;
}
.card-portfolio.card-hover-bar .card-title {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transform: translateY(5px);
      -ms-transform: translateY(5px);
          transform: translateY(5px);
}
.card-portfolio.card-hover-bar .card-category {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
  -webkit-transform: translateY(10px);
      -ms-transform: translateY(10px);
          transform: translateY(10px);
}
.card-portfolio.card-hover-bar .card-img-overlay {
  top: auto;
  padding: 30px 50px;
  background-color: inherit;
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  will-change: transform;
}
.card-portfolio.card-hover-bar.rounded-4 .card-img-overlay::before, .card-portfolio.card-hover-bar.rounded-4 .card-img-overlay::after {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: -webkit-radial-gradient(100% 0, circle, transparent 0%, transparent 20px, #fff 20px);
  background-image: radial-gradient(circle at 100% 0, transparent 0%, transparent 20px, #fff 20px);
}
.card-portfolio.card-hover-bar.rounded-4 .card-img-overlay::after {
  right: 0;
  left: auto;
  -webkit-transform: scaleX(-1);
      -ms-transform: scaleX(-1);
          transform: scaleX(-1);
}
.card-portfolio.card-hover-bar:hover .card-img-overlay, .card-portfolio.card-hover-bar:focus .card-img-overlay {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
.card-portfolio.card-hover-bar:hover .card-img img, .card-portfolio.card-hover-bar:focus .card-img img {
  -webkit-transform: translateY(-25px);
      -ms-transform: translateY(-25px);
          transform: translateY(-25px);
}
.card-portfolio.card-hover-bar:hover .card-title,
.card-portfolio.card-hover-bar:hover .card-category, .card-portfolio.card-hover-bar:focus .card-title,
.card-portfolio.card-hover-bar:focus .card-category {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

a.card-portfolio {
  text-decoration: none;
}

.card-blog {
  position: relative;
  color: #17161A;
  border: 0;
}
.card-blog-bordered {
  -webkit-box-shadow: inset 0 0 0 1px rgba(177, 177, 180, 0.3);
          box-shadow: inset 0 0 0 1px rgba(177, 177, 180, 0.3);
}
.card-blog .card-date {
  display: block;
  margin-bottom: 18px;
  font-size: 0.875em;
}
.card-blog .card-title {
  -webkit-transition: color 150ms linear;
  transition: color 150ms linear;
}
.card-blog .card-text {
  font-size: 0.9375em;
}
.card-blog:hover .card-title {
  color: #F01F4B;
}
.card-blog.card-horizontal {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
.card-blog.card-horizontal + .card-horizontal {
  margin-top: 30px;
}
@media (min-width: 620px) {
  .card-blog.card-horizontal.card-sm .card-img {
    width: 170px;
    margin-right: 30px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
  }
}
@media (max-width: 619.98px) {
  .card-blog.card-horizontal.card-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .card-blog.card-horizontal.card-sm + .card-horizontal {
    margin-top: 60px;
  }
  .card-blog.card-horizontal.card-sm .card-img {
    margin-bottom: 25px;
  }
  .card-blog.card-horizontal.card-sm .card-body {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 100%;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
  }
}
.card-blog .card-title {
  display: block;
  margin-bottom: 0;
}
.card-blog a.card-title {
  text-decoration: none;
}
.card-blog .card-text {
  margin-top: 18px;
  margin-bottom: 0;
}
.card-blog .card-body {
  padding: 0;
}
.card-blog .btn {
  margin-top: 25px;
}
.card-blog:hover, .card-blog:focus {
  color: #17161A;
}

a.card-blog {
  text-decoration: none;
}

.card-demo {
  position: relative;
}
.card-demo .card-img {
  display: block;
  border: 1px solid rgba(177, 177, 180, 0.1);
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  will-change: transform;
}
.card-demo .card-title {
  position: relative;
  display: block;
  margin-bottom: 0;
}
.card-demo a.card-title {
  text-decoration: none;
  -webkit-transition: color 150ms linear;
  transition: color 150ms linear;
}
.card-demo a.card-title:hover, .card-demo a.card-title:focus {
  color: #F01F4B;
}
.card-demo .card-body {
  display: block;
  padding: 25px 0 0;
}
.card-demo.text-white .card-img {
  border-color: #262528;
}
.card-demo.text-white a.card-title:hover, .card-demo.text-white a.card-title:focus {
  color: inherit;
}
.card-demo:hover .card-img {
  -webkit-transform: translateY(-15px);
      -ms-transform: translateY(-15px);
          transform: translateY(-15px);
}

a.card-demo {
  text-decoration: none;
}

.navbar {
  position: -webkit-sticky;
  position: sticky;
  -webkit-transition: background-color 150ms linear, -webkit-transform 150ms linear;
  transition: background-color 150ms linear, -webkit-transform 150ms linear;
  transition: transform 150ms linear, background-color 150ms linear;
  transition: transform 150ms linear, background-color 150ms linear, -webkit-transform 150ms linear;
  will-change: transform, background-color;
  z-index: 100;
}
.navbar .navbar-nav {
  display: none;
}
.navbar .navbar-nav .nav-link,
.navbar .navbar-nav .nav-link.active {
  color: #17161A;
}
.navbar .navbar-toggle {
  color: #17161A;
}

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

.navbar-top {
  top: 0;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  min-height: 80px;
  background-color: transparent;
}
.navbar-top .navbar-brand .dark {
  display: none;
}
.navbar-top.navbar-dark .navbar-brand .light {
  display: none;
}
.navbar-top.navbar-dark .navbar-brand .dark {
  display: block;
}
.navbar-top .navbar-nav:not(.nav-social) {
  height: 100%;
}
.navbar-top .navbar-nav:not(.nav-social) > .nav-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.navbar-top .navbar-nav:not(.nav-social) > .nav-item > .nav-link {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6px 18px;
  font-weight: 700;
}
.navbar-top .navbar-nav:not(.nav-social) > .nav-item > .dropdown-menu > .navbar-nav > .nav-item > .nav-link {
  padding: 6px 36px;
  font-weight: 500;
  color: #17161A;
}
.navbar-top .dropdown-menu .nav {
  margin: 0;
}

@media (min-width: 620px) {
  .navbar-expand-sm.navbar-top .navbar-nav, .navbar-expand-sm.navbar-topbar .navbar-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar-expand-sm.navbar-top .navbar-toggle,
.navbar-expand-sm.navbar-top .breadcrumb, .navbar-expand-sm.navbar-topbar .navbar-toggle,
.navbar-expand-sm.navbar-topbar .breadcrumb {
    display: none;
  }
}

@media (min-width: 828px) {
  .navbar-expand-md.navbar-top .navbar-nav, .navbar-expand-md.navbar-topbar .navbar-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar-expand-md.navbar-top .navbar-toggle,
.navbar-expand-md.navbar-top .breadcrumb, .navbar-expand-md.navbar-topbar .navbar-toggle,
.navbar-expand-md.navbar-topbar .breadcrumb {
    display: none;
  }
}

@media (min-width: 1024px) {
  .navbar-expand-lg.navbar-top .navbar-nav, .navbar-expand-lg.navbar-topbar .navbar-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar-expand-lg.navbar-top .navbar-toggle,
.navbar-expand-lg.navbar-top .breadcrumb, .navbar-expand-lg.navbar-topbar .navbar-toggle,
.navbar-expand-lg.navbar-topbar .breadcrumb {
    display: none;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl.navbar-top .navbar-nav, .navbar-expand-xl.navbar-topbar .navbar-nav {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .navbar-expand-xl.navbar-top .navbar-toggle,
.navbar-expand-xl.navbar-top .breadcrumb, .navbar-expand-xl.navbar-topbar .navbar-toggle,
.navbar-expand-xl.navbar-topbar .breadcrumb {
    display: none;
  }
}

.navbar-dark .navbar-nav .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}
.navbar-dark .navbar-nav .nav-item:hover > .nav-link {
  color: #fff;
}
.navbar-dark .navbar-toggle {
  color: #fff;
}
.navbar-dark .dropdown-menu {
  background-color: #fff;
}

@media (min-width: 1200px) {
  body.has-topbar {
    padding-top: 46px;
  }
}
body.has-topbar .navbar-top.navbar-opaque {
  margin-bottom: -80px;
}

.navbar-fixed {
  position: fixed;
  width: 100%;
}

.navbar-absolute {
  position: absolute;
  width: 100%;
}

.navbar-relative {
  position: relative;
}

.navbar-static {
  position: static;
}

.navbar-scroll .navbar-top {
  background-color: #fff;
}
.navbar-scroll .navbar-top.navbar-dark {
  background-color: #17161A;
}

.navbar-border-bottom {
  -webkit-box-shadow: inset 0 -1px rgba(177, 177, 180, 0.2);
          box-shadow: inset 0 -1px rgba(177, 177, 180, 0.2);
}
.navbar-border-bottom.navbar-dark {
  -webkit-box-shadow: inset 0 -1px rgba(255, 255, 255, 0.2);
          box-shadow: inset 0 -1px rgba(255, 255, 255, 0.2);
}

.navbar-hide:not(.navbar-end) .navbar-top {
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
}

.navbar.sticky-left {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow-y: auto;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
}
.navbar.sticky-left .nav-link {
  display: block;
  padding: 6px 0;
}
.navbar.sticky-left .nav-item .nav {
  padding-left: 10px;
}
.navbar.sticky-left .navbar-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.navbar.sticky-left .nav-link.active {
  color: #F01F4B;
}

.navbar-mobile {
  position: absolute;
  display: none;
}
.navbar-mobile .navbar-head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  width: 100%;
  min-height: 80px;
  -webkit-align-self: start;
      -ms-flex-item-align: start;
          align-self: start;
}
.navbar-mobile .navbar-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.navbar-mobile .navbar-wrapper {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.navbar-mobile .navbar-body > .navbar-nav {
  margin-top: -8px;
  margin-bottom: -8px;
  font-size: 34px;
  line-height: 1.2;
}
.navbar-mobile .navbar-body .nav .nav-link {
  font-weight: 700;
}
.navbar-mobile .navbar-body .navbar-collapse-menu > .nav {
  padding: 8px 0;
  font-size: 15px;
}
.navbar-mobile .navbar-body .navbar-collapse-menu > .nav .nav-link {
  padding: 8px 0;
  font-weight: 500;
}
.navbar-mobile .nav-social {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
.navbar-mobile.navbar-dark {
  background-color: #17161A;
}

.mfp-content .navbar-mobile {
  display: block;
}

.navbar-mobile-style-1 {
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  padding: 0 15px;
  overflow: auto;
}
@media (min-width: 620px) {
  .navbar-mobile-style-1 {
    padding: 0 40px;
  }
}
@media (min-width: 828px) {
  .navbar-mobile-style-1 {
    width: 568px;
    max-width: 100%;
    padding: 0 80px;
  }
  .navbar-mobile-style-1 .navbar-body > .navbar-nav {
    font-size: 40px;
  }
}
.navbar-mobile-style-1 .navbar-body {
  margin-bottom: auto;
}
.navbar-mobile-style-1 .navbar-footer {
  margin-top: 70px;
  margin-bottom: 60px;
}
.navbar-mobile-style-1 .navbar-footer a {
  color: inherit;
}
.navbar-mobile-style-1 .navbar-head {
  margin-bottom: 30px;
  background-color: #fff;
}
.navbar-mobile-style-1 .navbar-head .navbar-toggle {
  margin-left: auto;
}
.navbar-mobile-style-1 .navbar-brand .dark {
  display: none;
}
.navbar-mobile-style-1.navbar-dark .navbar-brand .light {
  display: none;
}
.navbar-mobile-style-1.navbar-dark .navbar-brand .dark {
  display: block;
}
.navbar-mobile-style-1.navbar-dark {
  color: #fff;
  background-color: #17161A;
}

.navbar-top .container > .navbar-nav > .navbar-dropdown > .nav-link svg {
  display: none;
}
.navbar-top .container > .navbar-nav > .navbar-dropdown > .dropdown-menu {
  margin-top: 0;
  margin-left: -18px;
}

.navbar-dropdown {
  position: relative;
}
.navbar-dropdown .nav-link svg {
  margin-left: auto;
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  will-change: transform;
}
.navbar-dropdown .nav-link:hover svg, .navbar-dropdown .nav-link:focus svg {
  -webkit-transform: translateX(3px);
      -ms-transform: translateX(3px);
          transform: translateX(3px);
}
.navbar-dropdown .nav-link:hover ~ .dropdown-menu, .navbar-dropdown .nav-link:focus ~ .dropdown-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-dropdown.focus > .dropdown-menu {
  visibility: visible;
  opacity: 1;
}
.navbar-dropdown.nav-item:hover > .nav-link, .navbar-dropdown.nav-item.focus > .nav-link {
  opacity: 1;
}
.navbar-dropdown .dropdown-menu {
  top: 100%;
  left: 0;
  display: block;
  font-size: 15px;
  font-weight: 500;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: visibility 150ms linear, opacity 150ms linear;
  transition: visibility 150ms linear, opacity 150ms linear;
  will-change: opacity;
}
.navbar-dropdown .dropdown-menu .navbar-nav {
  margin-right: 0;
}
.navbar-dropdown .dropdown-menu .nav-item {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.navbar-dropdown .dropdown-menu .nav-item .nav-link {
  width: 100%;
  padding-right: 36px;
  padding-left: 36px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.navbar-dropdown .dropdown-menu:hover {
  visibility: visible;
  opacity: 1;
}
.navbar-dropdown .dropdown-menu .dropdown-menu:not(.dropdown-menu-drop-left) {
  top: -18px;
  left: 100%;
}
.navbar-dropdown .dropdown-menu[data-bs-popper] {
  min-width: 124px;
}
.navbar-dropdown .dropdown-menu-drop-left {
  top: -18px;
  right: 100%;
  left: auto;
}
.navbar-dropdown .navbar-nav {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}

.navbar-hide .dropdown-menu {
  display: none;
}

.dropdown-toggle::after {
  display: none;
}

.dropdown-toggle svg {
  margin-left: 15px;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}

.navbar-collapse {
  max-width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.navbar-collapse .nav-link {
  width: 100%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}
.navbar-collapse .navbar-nav {
  margin: -12px 0;
}
.navbar-collapse .navbar-nav .nav-link {
  padding: 12px 0;
}

.navbar-nav.navbar-nav-collapse {
  margin: -12px 0;
  -webkit-flex-wrap: nowrap;
      -ms-flex-wrap: nowrap;
          flex-wrap: nowrap;
}
.navbar-nav.navbar-nav-collapse .nav-link {
  padding: 12px 0;
}

.navbar-collapse-menu {
  width: 100%;
}
.navbar-collapse-menu > .navbar-nav {
  margin-top: 0;
  margin-bottom: 0;
}

.navbar-toggle {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.navbar-toggle > span {
  width: 24px;
  height: 2px;
  margin-top: 3px;
  margin-bottom: 3px;
  background-color: currentColor;
  -webkit-transition: opacity 150ms linear, -webkit-transform 150ms linear;
  transition: opacity 150ms linear, -webkit-transform 150ms linear;
  transition: transform 150ms linear, opacity 150ms linear;
  transition: transform 150ms linear, opacity 150ms linear, -webkit-transform 150ms linear;
  -webkit-transform-origin: center right;
      -ms-transform-origin: center right;
          transform-origin: center right;
  will-change: transform, opacity;
}
.navbar-toggle > span:nth-child(2) {
  -webkit-transform: scaleX(0.5);
      -ms-transform: scaleX(0.5);
          transform: scaleX(0.5);
}
.navbar-toggle:hover > span:nth-child(2) {
  -webkit-transform: scaleX(1);
      -ms-transform: scaleX(1);
          transform: scaleX(1);
}

.mfp-ready .navbar-toggle > span:nth-child(1) {
  -webkit-transform: rotate(-45deg) translateX(0.5px);
      -ms-transform: rotate(-45deg) translateX(0.5px);
          transform: rotate(-45deg) translateX(0.5px);
}
.mfp-ready .navbar-toggle > span:nth-child(2) {
  opacity: 0;
}
.mfp-ready .navbar-toggle > span:nth-child(3) {
  -webkit-transform: rotate(45deg) translateX(0.5px);
      -ms-transform: rotate(45deg) translateX(0.5px);
          transform: rotate(45deg) translateX(0.5px);
}

.navbar-topbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  min-height: 46px;
  z-index: 110;
}
.navbar-topbar.navbar-dark {
  background-color: #17161A;
}
.navbar-topbar .nav-link {
  font-size: 13px;
}
.navbar-topbar .navbar-nav {
  height: 100%;
}
.navbar-topbar .navbar-nav > .nav-item {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.navbar-topbar .navbar-nav > .nav-item > .nav-link {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.navbar-topbar .dropdown-menu[data-bs-popper] {
  left: -20px;
  min-width: 124px;
  padding: 15px 0;
  margin-top: 0;
}
.navbar-topbar .dropdown-item {
  padding: 6px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #17161A;
  opacity: 0.7;
}
.navbar-topbar .dropdown-item:focus, .navbar-topbar .dropdown-item:hover, .navbar-topbar .dropdown-item.active, .navbar-topbar .dropdown-item:active {
  background-color: transparent;
  opacity: 1;
}
.navbar-topbar .nav-contacts svg {
  margin-right: 15px;
  color: #FFBB38;
}

:root {
  --swiper-navigation-size: 46px;
}

.swiper {
  position: relative;
  overflow: unset;
}
.swiper .swiper-container {
  overflow: hidden;
}
.swiper .swiper-button-prev,
.swiper .swiper-button-next {
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}
.swiper .swiper-button-prev:focus,
.swiper .swiper-button-next:focus {
  outline: none;
}

.swiper-button-prev,
.swiper-button-next {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);
  overflow: hidden;
  background-image: none;
  border-radius: 50%;
}
.swiper-button-prev::after,
.swiper-button-next::after {
  display: none;
}

.swiper-button-prev {
  left: 0;
}
.swiper-button-next {
  right: 0;
}
.swiper-button-prev.swiper-button-position-1 {
  left: 20px;
}
@media (min-width: 828px) {
  .swiper-button-prev.swiper-button-position-1 {
    left: 0;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.swiper-button-next.swiper-button-position-1 {
  right: 20px;
}
@media (min-width: 828px) {
  .swiper-button-next.swiper-button-position-1 {
    right: 0;
    -webkit-transform: translateX(50%);
        -ms-transform: translateX(50%);
            transform: translateX(50%);
  }
}

.swiper-button-position-2 {
  position: static;
  right: auto;
  left: auto;
  margin-top: unset;
}

.swiper-button-next.swiper-button-position-2 {
  margin-left: 15px;
}

.swiper-button-prev.swiper-button-position-3 {
  left: 20px;
}
@media (min-width: 828px) {
  .swiper-button-prev.swiper-button-position-3 {
    left: 40px;
  }
}

.swiper-button-next.swiper-button-position-3 {
  right: 20px;
}
@media (min-width: 828px) {
  .swiper-button-next.swiper-button-position-3 {
    right: 40px;
  }
}

@media (max-width: 827.98px) {
  .swiper-button-prev.swiper-button-position-3,
.swiper-button-next.swiper-button-position-3 {
    display: none;
  }
}
.swiper-button-gray {
  color: #17161A;
  background-color: #F5F5F7;
}
.swiper-button-gray:hover {
  color: #F01F4B;
  background-color: #F5F5F7;
}
.swiper-button-white {
  color: #17161A;
  background-color: #fff;
}
.swiper-button-white:hover {
  color: #F01F4B;
  background-color: #fff;
}
.swiper-button-dark {
  color: #B1B1B4;
  background-color: #262528;
}
.swiper-button-dark:hover {
  color: #fff;
  background-color: #262528;
}
.swiper-button-opacity {
  color: #B1B1B4;
  background-color: rgba(133, 133, 137, 0.4);
}
.swiper-button-opacity:hover {
  color: #fff;
  background-color: rgba(133, 133, 137, 0.6);
}

.swiper-pagination-custom {
  bottom: 0;
}
.swiper-pagination-custom .swiper-pagination-item {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-bottom: 5px;
  font-size: 1em;
  font-weight: 700;
  color: inherit;
  text-align: left;
  text-decoration: none;
  white-space: nowrap;
}
.swiper-pagination-custom .swiper-pagination-item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  -webkit-transform: scaleX(0);
      -ms-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: top left;
      -ms-transform-origin: top left;
          transform-origin: top left;
  will-change: transform;
}
.swiper-pagination-custom .swiper-pagination-item-active::after {
  -webkit-animation: pagination-custom-active 300ms linear forwards;
          animation: pagination-custom-active 300ms linear forwards;
}

[data-parallax] .swiper-slide {
  overflow-x: hidden;
}

/* Styles */
.swiper-full-horizontal {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.swiper-full-horizontal .swiper-container {
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}
@media (min-width: 1024px) {
  .swiper-full-horizontal .swiper-slide {
    width: 770px;
  }
}
@media (min-width: 828px) and (max-width: 1023.98px) {
  .swiper-full-horizontal .swiper-slide {
    width: 600px;
  }
}

.mfp-bg {
  background-color: #17161A;
}

.mfp-container.mfp-inline-holder {
  padding: 0;
}
.mfp-container.mfp-inline-holder .mfp-content {
  height: 100%;
}

/**
 * Simple fade transition,
 */
.mfp-fade.mfp-bg {
  opacity: 0;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}

.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.6;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
}

.isotope-filters {
  font-size: 0.875em;
}
.isotope-filters .nav-link {
  font-weight: 700;
  color: #4B4A4D;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}
.isotope-filters .nav-item.active > .nav-link {
  color: #17161A;
  background-color: #EAEAEE;
  border-radius: 50px;
}

/* 03. Base */
/* CUSTOM
-------------------------------------------- */
.z-index-1 {
  z-index: 1;
}

.z-index-n1 {
  z-index: -1;
}

.start-custom {
  display: none !important;
}
@media (min-width: 1024px) {
  .start-custom {
    left: calc(50vw + 16.666% - 30px) !important;
    display: block !important;
  }
}

*[class^=rounded] {
  z-index: 1;
}

span.highlight {
  position: relative;
  z-index: 1;
}
span.highlight::after {
  content: "";
  position: absolute;
  top: calc(100% - 7.5px);
  right: 0;
  left: 0;
  height: 15px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='282' height='15' fill='none'%3e%3cpath fill='%23FFBB38' fill-rule='evenodd' d='M267.969 2.18c13.232 1.358 11.07.341 10.716 1.01l3.315.794-2.502 1.14c.158.117.379.283.601.45-.163.077-.349.244-.515.236-4.099-.199-8.062.718-12.194.533-4.145-.185-8.371-.29-12.475.037-3.343.264-6.657.346-9.997.425-1.03.024-1.871-.543-3.123-.09-.937.34-2.393.068-3.619.068h-4.041c-1.226 0-2.45-.003-3.675.001-1.22.002-2.441.008-3.661.026-.089.001-.174.106-.484.309 1.15.097 2.121.178 3.092.258l-.014.305c-1.278.02-2.556.05-3.833.059-1.347.01-2.694.006-4.042-.001-.229-.001-.57.007-.67-.08-1.356-1.19-2.885-1.043-4.691-.434-.678.228-1.686.037-2.543.037-11.514 0-23.029-.012-34.541.018-1.254.003-2.702-.4-3.748.458-.048.038-.297.039-.349 0-1.034-.795-2.212.391-3.034-.03-1.062-.54-1.776-.447-2.777-.003-.304.137-1.102-.107-1.6-.273-.695-.232-.651-.554-.006-.836-.127-.098-.23-.252-.386-.282-.213-.04-.597-.04-.677.042-.241.245-.272.6-.567.793-.392.258-.954.555-1.448.559-.849.007-1.895-.455-2.51-.257-.988.318-1.608.278-2.586.017-.668-.177-1.656.25-2.505.26-3.419.036-6.841.014-10.181.014-.337-.357-.621-.66-.906-.96l-1.771.987c-1.43.236-3.91-.655-5.404.968l-1.209-.87c-2.906.53-5.718.607-8.525-.02-2.904.875-5.913.112-8.847.412.063-.442.217-.943.125-.962-1.143-.251-.959.43-1.28.888h-3.893l-.518.921c-.171-.055-.408-.082-.497-.172-.698-.696-1.891-.981-2.833-.67-2.207.73-4.477.343-6.71.425-1.924.07-3.858.014-5.825.362l3.534.233c-2.693.154-5.556 1.147-7.57-.448-1.414.133-2.543.32-3.678.333-3.525.04-7.052.015-10.505.015l-.586 1.103-1.562-1.538c-.25.66-.83 1.343-1.88.87-1.113-.499-1.749-.156-2.767-.023-1.86.242-3.848.069-5.839.38.913.093 1.825.186 2.785.286-.152.156-.252.35-.355.35-2.694.017-5.397.096-8.083-.013-1.982-.08-3.894-.66-5.943-.452-.333.035-.66.097-.994.369l2.95.201c-3.074.207-6.084.755-9.181.005-1.371-.332-3.086-.056-4.74.2l2.05.328c-.12.126-.215.322-.317.323-1.222.016-2.443.003-3.664-.002-.657-1.013-1.638.492-2.635-.174-.65-.433-2.002.584-3.315-.205-.716-.428-2.526-.076-3.894.235l2.894.296c-.214.154-.344.33-.48.332-1.836.018-3.677-.04-5.51.023-3.576.123-7.205.113-10.698.548-1.883.235-3.73.283-5.592.431-1.599.126-3.157.494-3.781 1.877-.638 0-2.054.164-2.18-.029-.546-.844-2.205-.932-2.577-1.658-.35-.686-.927-.897-1.797-1.216-1.753-.644-2.13-1.876-1.244-3.076L.003 7.952c.022-.173-.054-.382.073-.475C1.449 6.46 3.059 5.937 5.253 5.76c3.595-.291 7.11-1.01 10.793-.898 2.111-.842 4.45-.332 6.677-.489 1.741-.122 3.465-.374 5.21-.455 1.704-.08 3.605.285 5.1-.09 2.151-.537 4.26-.469 6.346-.365 2.682.134 5.155-.574 7.784-.532 2.694.04 5.501.327 8.061-.06 4.94-.744 9.911-.003 14.775-.46 6.03-.569 12.117-.017 18.062-.515 8.008-.673 15.985-.162 23.965-.395.977-.028 1.959.004 2.939-.005.825-.007 1.73.143 2.282-.457.437.758 1.384-.076 2.148.29.468.223 1.633-.24 2.501-.297.97-.063 1.957-.015 2.937-.015h11.023c.98 0 1.967-.046 2.939.012 1.148.07 2.285-.183 3.475.349.573.256 1.905-.323 2.899-.341 3.06-.054 6.125.015 9.185-.038 1.139-.019 2.42.349 3.392-.452.636-.526 1.112.918 2.075.131.304-.248 1.831-.29 1.994-.11.926 1.008 1.973-.523 2.678.098 1.001.88 1.622-.155 2.428-.122.456.019.906.111 1.359.169.792.102 2.051.455 2.298.26 1.006-.794 2.181-.015 3.284-.32 1.141-.317 2.631-.114 3.968-.114 24.005-.003 48.014.021 72.02-.03 3.202-.007 6.507.518 9.616-.453 1.636.918 3.25-.1 4.907-.053 5.132.147 10.278.053 15.772.053-.184.375-.296.913-.482.924-2.594.156-5.106.62-7.777.556-5.382-.128-10.776-.04-16.165-.029-.195.001-.389.15-.584.23.245.08.477.193.736.235.648.105 1.243.637 2.006.03.196-.157.935-.023 1.424-.023 7.095 0 14.187 0 8.666.201-12.8.118-12.786.033-12.773-.052-1.137-.2-2.26-.462-3.419-.576-.615-.06-4.504.028-5.062-.023-.476-.044-1.21-.16-1.411-.008-.999.754-2.27.443-3.413.444-17.401.019-34.801.02-52.201-.007-1.021 0-2.186.354-3.113-.31-.177-.128-.817-.19-.945-.1-1.115.788-2.526.332-3.791.42-2.589.177-5.238-.29-7.81.446-.726.208-1.834-.092-2.743-.225-1.749-.256-3.485-.44-5.191.085-.595.183-1.331-.504-1.822.146-.941-.774-2.519-.648-3.336-.368-1.363.468-2.348-.42-3.497-.076-.205.06-.513.041-.64.136-.604.452-1.038.35-1.828.07-.765-.272-1.965-.349-2.775-.155-1.05.252-2.321.446-3.129.338-1.255-.166-2.317.06-3.463.088-8.965.214-17.933-.292-26.91.429-6.7.537-13.494-.192-20.289.454-6.18.587-12.516-.152-18.81.494-4.96.51-10.086-.213-15.136.495-2.343.329-4.896-.045-7.33.085-2.234.12-4.415-.217-6.762.314-2.188.494-4.832.12-7.275.144-.377.004-.753.095-1.13.146.5.328.955.337 1.41.326 4.314-.098 8.606.035 12.946-.403 5.213-.525 10.55.143 15.875-.48 4.942-.577 10.134.437 15.109-.566.7-.14 1.295.922 1.987.04.796.79 1.542-.05 2.312-.06 6.029-.082 12.091.394 18.084-.433.803-.11 2.005-.201 2.465.083 1.042.645 1.551-.362 2.456-.14.751.186 1.693.039 2.55.039 4.903 0 9.805.026 14.705-.018 1.26-.011 2.665.364 3.796-.412.126-.086.788.195 1.217.256.569.082 1.495.288 1.667.14.684-.584 1.088-.074 1.672-.014.581.06 1.256-.402 1.889-.402 1.024 0 2.219-.334 3.036.4.71-.55 1.688-.431 2.606-.426.931.005 1.968-.198 2.631.468.66-.682 1.713-.464 2.64-.466 6.128-.012 12.257.086 18.38-.033 6.025-.118 12.104.547 18.078-.454.736.461 1.692.213 2.517.256 1.065.057 2.163-.233 3.248-.236 1.257-.003 2.63-.284 3.714.418 1.199-.859 2.763-.411 4.133-.415 16.174-.036 32.349-.022 48.524-.027 1.181 0 2.363-.047 16.357-.275' clip-rule='evenodd'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

span.highlight {
  position: relative;
  z-index: 1;
}
span.highlight::after {
  content: "";
  position: absolute;
  top: calc(100% - 7.5px);
  right: 0;
  left: 0;
  height: 15px;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='282' height='15' fill='none'%3e%3cpath fill='%23FFBB38' fill-rule='evenodd' d='M267.969 2.18c13.232 1.358 11.07.341 10.716 1.01l3.315.794-2.502 1.14c.158.117.379.283.601.45-.163.077-.349.244-.515.236-4.099-.199-8.062.718-12.194.533-4.145-.185-8.371-.29-12.475.037-3.343.264-6.657.346-9.997.425-1.03.024-1.871-.543-3.123-.09-.937.34-2.393.068-3.619.068h-4.041c-1.226 0-2.45-.003-3.675.001-1.22.002-2.441.008-3.661.026-.089.001-.174.106-.484.309 1.15.097 2.121.178 3.092.258l-.014.305c-1.278.02-2.556.05-3.833.059-1.347.01-2.694.006-4.042-.001-.229-.001-.57.007-.67-.08-1.356-1.19-2.885-1.043-4.691-.434-.678.228-1.686.037-2.543.037-11.514 0-23.029-.012-34.541.018-1.254.003-2.702-.4-3.748.458-.048.038-.297.039-.349 0-1.034-.795-2.212.391-3.034-.03-1.062-.54-1.776-.447-2.777-.003-.304.137-1.102-.107-1.6-.273-.695-.232-.651-.554-.006-.836-.127-.098-.23-.252-.386-.282-.213-.04-.597-.04-.677.042-.241.245-.272.6-.567.793-.392.258-.954.555-1.448.559-.849.007-1.895-.455-2.51-.257-.988.318-1.608.278-2.586.017-.668-.177-1.656.25-2.505.26-3.419.036-6.841.014-10.181.014-.337-.357-.621-.66-.906-.96l-1.771.987c-1.43.236-3.91-.655-5.404.968l-1.209-.87c-2.906.53-5.718.607-8.525-.02-2.904.875-5.913.112-8.847.412.063-.442.217-.943.125-.962-1.143-.251-.959.43-1.28.888h-3.893l-.518.921c-.171-.055-.408-.082-.497-.172-.698-.696-1.891-.981-2.833-.67-2.207.73-4.477.343-6.71.425-1.924.07-3.858.014-5.825.362l3.534.233c-2.693.154-5.556 1.147-7.57-.448-1.414.133-2.543.32-3.678.333-3.525.04-7.052.015-10.505.015l-.586 1.103-1.562-1.538c-.25.66-.83 1.343-1.88.87-1.113-.499-1.749-.156-2.767-.023-1.86.242-3.848.069-5.839.38.913.093 1.825.186 2.785.286-.152.156-.252.35-.355.35-2.694.017-5.397.096-8.083-.013-1.982-.08-3.894-.66-5.943-.452-.333.035-.66.097-.994.369l2.95.201c-3.074.207-6.084.755-9.181.005-1.371-.332-3.086-.056-4.74.2l2.05.328c-.12.126-.215.322-.317.323-1.222.016-2.443.003-3.664-.002-.657-1.013-1.638.492-2.635-.174-.65-.433-2.002.584-3.315-.205-.716-.428-2.526-.076-3.894.235l2.894.296c-.214.154-.344.33-.48.332-1.836.018-3.677-.04-5.51.023-3.576.123-7.205.113-10.698.548-1.883.235-3.73.283-5.592.431-1.599.126-3.157.494-3.781 1.877-.638 0-2.054.164-2.18-.029-.546-.844-2.205-.932-2.577-1.658-.35-.686-.927-.897-1.797-1.216-1.753-.644-2.13-1.876-1.244-3.076L.003 7.952c.022-.173-.054-.382.073-.475C1.449 6.46 3.059 5.937 5.253 5.76c3.595-.291 7.11-1.01 10.793-.898 2.111-.842 4.45-.332 6.677-.489 1.741-.122 3.465-.374 5.21-.455 1.704-.08 3.605.285 5.1-.09 2.151-.537 4.26-.469 6.346-.365 2.682.134 5.155-.574 7.784-.532 2.694.04 5.501.327 8.061-.06 4.94-.744 9.911-.003 14.775-.46 6.03-.569 12.117-.017 18.062-.515 8.008-.673 15.985-.162 23.965-.395.977-.028 1.959.004 2.939-.005.825-.007 1.73.143 2.282-.457.437.758 1.384-.076 2.148.29.468.223 1.633-.24 2.501-.297.97-.063 1.957-.015 2.937-.015h11.023c.98 0 1.967-.046 2.939.012 1.148.07 2.285-.183 3.475.349.573.256 1.905-.323 2.899-.341 3.06-.054 6.125.015 9.185-.038 1.139-.019 2.42.349 3.392-.452.636-.526 1.112.918 2.075.131.304-.248 1.831-.29 1.994-.11.926 1.008 1.973-.523 2.678.098 1.001.88 1.622-.155 2.428-.122.456.019.906.111 1.359.169.792.102 2.051.455 2.298.26 1.006-.794 2.181-.015 3.284-.32 1.141-.317 2.631-.114 3.968-.114 24.005-.003 48.014.021 72.02-.03 3.202-.007 6.507.518 9.616-.453 1.636.918 3.25-.1 4.907-.053 5.132.147 10.278.053 15.772.053-.184.375-.296.913-.482.924-2.594.156-5.106.62-7.777.556-5.382-.128-10.776-.04-16.165-.029-.195.001-.389.15-.584.23.245.08.477.193.736.235.648.105 1.243.637 2.006.03.196-.157.935-.023 1.424-.023 7.095 0 14.187 0 8.666.201-12.8.118-12.786.033-12.773-.052-1.137-.2-2.26-.462-3.419-.576-.615-.06-4.504.028-5.062-.023-.476-.044-1.21-.16-1.411-.008-.999.754-2.27.443-3.413.444-17.401.019-34.801.02-52.201-.007-1.021 0-2.186.354-3.113-.31-.177-.128-.817-.19-.945-.1-1.115.788-2.526.332-3.791.42-2.589.177-5.238-.29-7.81.446-.726.208-1.834-.092-2.743-.225-1.749-.256-3.485-.44-5.191.085-.595.183-1.331-.504-1.822.146-.941-.774-2.519-.648-3.336-.368-1.363.468-2.348-.42-3.497-.076-.205.06-.513.041-.64.136-.604.452-1.038.35-1.828.07-.765-.272-1.965-.349-2.775-.155-1.05.252-2.321.446-3.129.338-1.255-.166-2.317.06-3.463.088-8.965.214-17.933-.292-26.91.429-6.7.537-13.494-.192-20.289.454-6.18.587-12.516-.152-18.81.494-4.96.51-10.086-.213-15.136.495-2.343.329-4.896-.045-7.33.085-2.234.12-4.415-.217-6.762.314-2.188.494-4.832.12-7.275.144-.377.004-.753.095-1.13.146.5.328.955.337 1.41.326 4.314-.098 8.606.035 12.946-.403 5.213-.525 10.55.143 15.875-.48 4.942-.577 10.134.437 15.109-.566.7-.14 1.295.922 1.987.04.796.79 1.542-.05 2.312-.06 6.029-.082 12.091.394 18.084-.433.803-.11 2.005-.201 2.465.083 1.042.645 1.551-.362 2.456-.14.751.186 1.693.039 2.55.039 4.903 0 9.805.026 14.705-.018 1.26-.011 2.665.364 3.796-.412.126-.086.788.195 1.217.256.569.082 1.495.288 1.667.14.684-.584 1.088-.074 1.672-.014.581.06 1.256-.402 1.889-.402 1.024 0 2.219-.334 3.036.4.71-.55 1.688-.431 2.606-.426.931.005 1.968-.198 2.631.468.66-.682 1.713-.464 2.64-.466 6.128-.012 12.257.086 18.38-.033 6.025-.118 12.104.547 18.078-.454.736.461 1.692.213 2.517.256 1.065.057 2.163-.233 3.248-.236 1.257-.003 2.63-.284 3.714.418 1.199-.859 2.763-.411 4.133-.415 16.174-.036 32.349-.022 48.524-.027 1.181 0 2.363-.047 16.357-.275' clip-rule='evenodd'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: -1;
}

@media (min-width: 620px) {
  span.highlight-sm {
    position: relative;
    z-index: 1;
  }
  span.highlight-sm::after {
    content: "";
    position: absolute;
    top: calc(100% - 7.5px);
    right: 0;
    left: 0;
    height: 15px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='282' height='15' fill='none'%3e%3cpath fill='%23FFBB38' fill-rule='evenodd' d='M267.969 2.18c13.232 1.358 11.07.341 10.716 1.01l3.315.794-2.502 1.14c.158.117.379.283.601.45-.163.077-.349.244-.515.236-4.099-.199-8.062.718-12.194.533-4.145-.185-8.371-.29-12.475.037-3.343.264-6.657.346-9.997.425-1.03.024-1.871-.543-3.123-.09-.937.34-2.393.068-3.619.068h-4.041c-1.226 0-2.45-.003-3.675.001-1.22.002-2.441.008-3.661.026-.089.001-.174.106-.484.309 1.15.097 2.121.178 3.092.258l-.014.305c-1.278.02-2.556.05-3.833.059-1.347.01-2.694.006-4.042-.001-.229-.001-.57.007-.67-.08-1.356-1.19-2.885-1.043-4.691-.434-.678.228-1.686.037-2.543.037-11.514 0-23.029-.012-34.541.018-1.254.003-2.702-.4-3.748.458-.048.038-.297.039-.349 0-1.034-.795-2.212.391-3.034-.03-1.062-.54-1.776-.447-2.777-.003-.304.137-1.102-.107-1.6-.273-.695-.232-.651-.554-.006-.836-.127-.098-.23-.252-.386-.282-.213-.04-.597-.04-.677.042-.241.245-.272.6-.567.793-.392.258-.954.555-1.448.559-.849.007-1.895-.455-2.51-.257-.988.318-1.608.278-2.586.017-.668-.177-1.656.25-2.505.26-3.419.036-6.841.014-10.181.014-.337-.357-.621-.66-.906-.96l-1.771.987c-1.43.236-3.91-.655-5.404.968l-1.209-.87c-2.906.53-5.718.607-8.525-.02-2.904.875-5.913.112-8.847.412.063-.442.217-.943.125-.962-1.143-.251-.959.43-1.28.888h-3.893l-.518.921c-.171-.055-.408-.082-.497-.172-.698-.696-1.891-.981-2.833-.67-2.207.73-4.477.343-6.71.425-1.924.07-3.858.014-5.825.362l3.534.233c-2.693.154-5.556 1.147-7.57-.448-1.414.133-2.543.32-3.678.333-3.525.04-7.052.015-10.505.015l-.586 1.103-1.562-1.538c-.25.66-.83 1.343-1.88.87-1.113-.499-1.749-.156-2.767-.023-1.86.242-3.848.069-5.839.38.913.093 1.825.186 2.785.286-.152.156-.252.35-.355.35-2.694.017-5.397.096-8.083-.013-1.982-.08-3.894-.66-5.943-.452-.333.035-.66.097-.994.369l2.95.201c-3.074.207-6.084.755-9.181.005-1.371-.332-3.086-.056-4.74.2l2.05.328c-.12.126-.215.322-.317.323-1.222.016-2.443.003-3.664-.002-.657-1.013-1.638.492-2.635-.174-.65-.433-2.002.584-3.315-.205-.716-.428-2.526-.076-3.894.235l2.894.296c-.214.154-.344.33-.48.332-1.836.018-3.677-.04-5.51.023-3.576.123-7.205.113-10.698.548-1.883.235-3.73.283-5.592.431-1.599.126-3.157.494-3.781 1.877-.638 0-2.054.164-2.18-.029-.546-.844-2.205-.932-2.577-1.658-.35-.686-.927-.897-1.797-1.216-1.753-.644-2.13-1.876-1.244-3.076L.003 7.952c.022-.173-.054-.382.073-.475C1.449 6.46 3.059 5.937 5.253 5.76c3.595-.291 7.11-1.01 10.793-.898 2.111-.842 4.45-.332 6.677-.489 1.741-.122 3.465-.374 5.21-.455 1.704-.08 3.605.285 5.1-.09 2.151-.537 4.26-.469 6.346-.365 2.682.134 5.155-.574 7.784-.532 2.694.04 5.501.327 8.061-.06 4.94-.744 9.911-.003 14.775-.46 6.03-.569 12.117-.017 18.062-.515 8.008-.673 15.985-.162 23.965-.395.977-.028 1.959.004 2.939-.005.825-.007 1.73.143 2.282-.457.437.758 1.384-.076 2.148.29.468.223 1.633-.24 2.501-.297.97-.063 1.957-.015 2.937-.015h11.023c.98 0 1.967-.046 2.939.012 1.148.07 2.285-.183 3.475.349.573.256 1.905-.323 2.899-.341 3.06-.054 6.125.015 9.185-.038 1.139-.019 2.42.349 3.392-.452.636-.526 1.112.918 2.075.131.304-.248 1.831-.29 1.994-.11.926 1.008 1.973-.523 2.678.098 1.001.88 1.622-.155 2.428-.122.456.019.906.111 1.359.169.792.102 2.051.455 2.298.26 1.006-.794 2.181-.015 3.284-.32 1.141-.317 2.631-.114 3.968-.114 24.005-.003 48.014.021 72.02-.03 3.202-.007 6.507.518 9.616-.453 1.636.918 3.25-.1 4.907-.053 5.132.147 10.278.053 15.772.053-.184.375-.296.913-.482.924-2.594.156-5.106.62-7.777.556-5.382-.128-10.776-.04-16.165-.029-.195.001-.389.15-.584.23.245.08.477.193.736.235.648.105 1.243.637 2.006.03.196-.157.935-.023 1.424-.023 7.095 0 14.187 0 8.666.201-12.8.118-12.786.033-12.773-.052-1.137-.2-2.26-.462-3.419-.576-.615-.06-4.504.028-5.062-.023-.476-.044-1.21-.16-1.411-.008-.999.754-2.27.443-3.413.444-17.401.019-34.801.02-52.201-.007-1.021 0-2.186.354-3.113-.31-.177-.128-.817-.19-.945-.1-1.115.788-2.526.332-3.791.42-2.589.177-5.238-.29-7.81.446-.726.208-1.834-.092-2.743-.225-1.749-.256-3.485-.44-5.191.085-.595.183-1.331-.504-1.822.146-.941-.774-2.519-.648-3.336-.368-1.363.468-2.348-.42-3.497-.076-.205.06-.513.041-.64.136-.604.452-1.038.35-1.828.07-.765-.272-1.965-.349-2.775-.155-1.05.252-2.321.446-3.129.338-1.255-.166-2.317.06-3.463.088-8.965.214-17.933-.292-26.91.429-6.7.537-13.494-.192-20.289.454-6.18.587-12.516-.152-18.81.494-4.96.51-10.086-.213-15.136.495-2.343.329-4.896-.045-7.33.085-2.234.12-4.415-.217-6.762.314-2.188.494-4.832.12-7.275.144-.377.004-.753.095-1.13.146.5.328.955.337 1.41.326 4.314-.098 8.606.035 12.946-.403 5.213-.525 10.55.143 15.875-.48 4.942-.577 10.134.437 15.109-.566.7-.14 1.295.922 1.987.04.796.79 1.542-.05 2.312-.06 6.029-.082 12.091.394 18.084-.433.803-.11 2.005-.201 2.465.083 1.042.645 1.551-.362 2.456-.14.751.186 1.693.039 2.55.039 4.903 0 9.805.026 14.705-.018 1.26-.011 2.665.364 3.796-.412.126-.086.788.195 1.217.256.569.082 1.495.288 1.667.14.684-.584 1.088-.074 1.672-.014.581.06 1.256-.402 1.889-.402 1.024 0 2.219-.334 3.036.4.71-.55 1.688-.431 2.606-.426.931.005 1.968-.198 2.631.468.66-.682 1.713-.464 2.64-.466 6.128-.012 12.257.086 18.38-.033 6.025-.118 12.104.547 18.078-.454.736.461 1.692.213 2.517.256 1.065.057 2.163-.233 3.248-.236 1.257-.003 2.63-.284 3.714.418 1.199-.859 2.763-.411 4.133-.415 16.174-.036 32.349-.022 48.524-.027 1.181 0 2.363-.047 16.357-.275' clip-rule='evenodd'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
  }
}
@media (min-width: 828px) {
  span.highlight-md {
    position: relative;
    z-index: 1;
  }
  span.highlight-md::after {
    content: "";
    position: absolute;
    top: calc(100% - 7.5px);
    right: 0;
    left: 0;
    height: 15px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='282' height='15' fill='none'%3e%3cpath fill='%23FFBB38' fill-rule='evenodd' d='M267.969 2.18c13.232 1.358 11.07.341 10.716 1.01l3.315.794-2.502 1.14c.158.117.379.283.601.45-.163.077-.349.244-.515.236-4.099-.199-8.062.718-12.194.533-4.145-.185-8.371-.29-12.475.037-3.343.264-6.657.346-9.997.425-1.03.024-1.871-.543-3.123-.09-.937.34-2.393.068-3.619.068h-4.041c-1.226 0-2.45-.003-3.675.001-1.22.002-2.441.008-3.661.026-.089.001-.174.106-.484.309 1.15.097 2.121.178 3.092.258l-.014.305c-1.278.02-2.556.05-3.833.059-1.347.01-2.694.006-4.042-.001-.229-.001-.57.007-.67-.08-1.356-1.19-2.885-1.043-4.691-.434-.678.228-1.686.037-2.543.037-11.514 0-23.029-.012-34.541.018-1.254.003-2.702-.4-3.748.458-.048.038-.297.039-.349 0-1.034-.795-2.212.391-3.034-.03-1.062-.54-1.776-.447-2.777-.003-.304.137-1.102-.107-1.6-.273-.695-.232-.651-.554-.006-.836-.127-.098-.23-.252-.386-.282-.213-.04-.597-.04-.677.042-.241.245-.272.6-.567.793-.392.258-.954.555-1.448.559-.849.007-1.895-.455-2.51-.257-.988.318-1.608.278-2.586.017-.668-.177-1.656.25-2.505.26-3.419.036-6.841.014-10.181.014-.337-.357-.621-.66-.906-.96l-1.771.987c-1.43.236-3.91-.655-5.404.968l-1.209-.87c-2.906.53-5.718.607-8.525-.02-2.904.875-5.913.112-8.847.412.063-.442.217-.943.125-.962-1.143-.251-.959.43-1.28.888h-3.893l-.518.921c-.171-.055-.408-.082-.497-.172-.698-.696-1.891-.981-2.833-.67-2.207.73-4.477.343-6.71.425-1.924.07-3.858.014-5.825.362l3.534.233c-2.693.154-5.556 1.147-7.57-.448-1.414.133-2.543.32-3.678.333-3.525.04-7.052.015-10.505.015l-.586 1.103-1.562-1.538c-.25.66-.83 1.343-1.88.87-1.113-.499-1.749-.156-2.767-.023-1.86.242-3.848.069-5.839.38.913.093 1.825.186 2.785.286-.152.156-.252.35-.355.35-2.694.017-5.397.096-8.083-.013-1.982-.08-3.894-.66-5.943-.452-.333.035-.66.097-.994.369l2.95.201c-3.074.207-6.084.755-9.181.005-1.371-.332-3.086-.056-4.74.2l2.05.328c-.12.126-.215.322-.317.323-1.222.016-2.443.003-3.664-.002-.657-1.013-1.638.492-2.635-.174-.65-.433-2.002.584-3.315-.205-.716-.428-2.526-.076-3.894.235l2.894.296c-.214.154-.344.33-.48.332-1.836.018-3.677-.04-5.51.023-3.576.123-7.205.113-10.698.548-1.883.235-3.73.283-5.592.431-1.599.126-3.157.494-3.781 1.877-.638 0-2.054.164-2.18-.029-.546-.844-2.205-.932-2.577-1.658-.35-.686-.927-.897-1.797-1.216-1.753-.644-2.13-1.876-1.244-3.076L.003 7.952c.022-.173-.054-.382.073-.475C1.449 6.46 3.059 5.937 5.253 5.76c3.595-.291 7.11-1.01 10.793-.898 2.111-.842 4.45-.332 6.677-.489 1.741-.122 3.465-.374 5.21-.455 1.704-.08 3.605.285 5.1-.09 2.151-.537 4.26-.469 6.346-.365 2.682.134 5.155-.574 7.784-.532 2.694.04 5.501.327 8.061-.06 4.94-.744 9.911-.003 14.775-.46 6.03-.569 12.117-.017 18.062-.515 8.008-.673 15.985-.162 23.965-.395.977-.028 1.959.004 2.939-.005.825-.007 1.73.143 2.282-.457.437.758 1.384-.076 2.148.29.468.223 1.633-.24 2.501-.297.97-.063 1.957-.015 2.937-.015h11.023c.98 0 1.967-.046 2.939.012 1.148.07 2.285-.183 3.475.349.573.256 1.905-.323 2.899-.341 3.06-.054 6.125.015 9.185-.038 1.139-.019 2.42.349 3.392-.452.636-.526 1.112.918 2.075.131.304-.248 1.831-.29 1.994-.11.926 1.008 1.973-.523 2.678.098 1.001.88 1.622-.155 2.428-.122.456.019.906.111 1.359.169.792.102 2.051.455 2.298.26 1.006-.794 2.181-.015 3.284-.32 1.141-.317 2.631-.114 3.968-.114 24.005-.003 48.014.021 72.02-.03 3.202-.007 6.507.518 9.616-.453 1.636.918 3.25-.1 4.907-.053 5.132.147 10.278.053 15.772.053-.184.375-.296.913-.482.924-2.594.156-5.106.62-7.777.556-5.382-.128-10.776-.04-16.165-.029-.195.001-.389.15-.584.23.245.08.477.193.736.235.648.105 1.243.637 2.006.03.196-.157.935-.023 1.424-.023 7.095 0 14.187 0 8.666.201-12.8.118-12.786.033-12.773-.052-1.137-.2-2.26-.462-3.419-.576-.615-.06-4.504.028-5.062-.023-.476-.044-1.21-.16-1.411-.008-.999.754-2.27.443-3.413.444-17.401.019-34.801.02-52.201-.007-1.021 0-2.186.354-3.113-.31-.177-.128-.817-.19-.945-.1-1.115.788-2.526.332-3.791.42-2.589.177-5.238-.29-7.81.446-.726.208-1.834-.092-2.743-.225-1.749-.256-3.485-.44-5.191.085-.595.183-1.331-.504-1.822.146-.941-.774-2.519-.648-3.336-.368-1.363.468-2.348-.42-3.497-.076-.205.06-.513.041-.64.136-.604.452-1.038.35-1.828.07-.765-.272-1.965-.349-2.775-.155-1.05.252-2.321.446-3.129.338-1.255-.166-2.317.06-3.463.088-8.965.214-17.933-.292-26.91.429-6.7.537-13.494-.192-20.289.454-6.18.587-12.516-.152-18.81.494-4.96.51-10.086-.213-15.136.495-2.343.329-4.896-.045-7.33.085-2.234.12-4.415-.217-6.762.314-2.188.494-4.832.12-7.275.144-.377.004-.753.095-1.13.146.5.328.955.337 1.41.326 4.314-.098 8.606.035 12.946-.403 5.213-.525 10.55.143 15.875-.48 4.942-.577 10.134.437 15.109-.566.7-.14 1.295.922 1.987.04.796.79 1.542-.05 2.312-.06 6.029-.082 12.091.394 18.084-.433.803-.11 2.005-.201 2.465.083 1.042.645 1.551-.362 2.456-.14.751.186 1.693.039 2.55.039 4.903 0 9.805.026 14.705-.018 1.26-.011 2.665.364 3.796-.412.126-.086.788.195 1.217.256.569.082 1.495.288 1.667.14.684-.584 1.088-.074 1.672-.014.581.06 1.256-.402 1.889-.402 1.024 0 2.219-.334 3.036.4.71-.55 1.688-.431 2.606-.426.931.005 1.968-.198 2.631.468.66-.682 1.713-.464 2.64-.466 6.128-.012 12.257.086 18.38-.033 6.025-.118 12.104.547 18.078-.454.736.461 1.692.213 2.517.256 1.065.057 2.163-.233 3.248-.236 1.257-.003 2.63-.284 3.714.418 1.199-.859 2.763-.411 4.133-.415 16.174-.036 32.349-.022 48.524-.027 1.181 0 2.363-.047 16.357-.275' clip-rule='evenodd'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
  }
}
@media (min-width: 1024px) {
  span.highlight-lg {
    position: relative;
    z-index: 1;
  }
  span.highlight-lg::after {
    content: "";
    position: absolute;
    top: calc(100% - 7.5px);
    right: 0;
    left: 0;
    height: 15px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='282' height='15' fill='none'%3e%3cpath fill='%23FFBB38' fill-rule='evenodd' d='M267.969 2.18c13.232 1.358 11.07.341 10.716 1.01l3.315.794-2.502 1.14c.158.117.379.283.601.45-.163.077-.349.244-.515.236-4.099-.199-8.062.718-12.194.533-4.145-.185-8.371-.29-12.475.037-3.343.264-6.657.346-9.997.425-1.03.024-1.871-.543-3.123-.09-.937.34-2.393.068-3.619.068h-4.041c-1.226 0-2.45-.003-3.675.001-1.22.002-2.441.008-3.661.026-.089.001-.174.106-.484.309 1.15.097 2.121.178 3.092.258l-.014.305c-1.278.02-2.556.05-3.833.059-1.347.01-2.694.006-4.042-.001-.229-.001-.57.007-.67-.08-1.356-1.19-2.885-1.043-4.691-.434-.678.228-1.686.037-2.543.037-11.514 0-23.029-.012-34.541.018-1.254.003-2.702-.4-3.748.458-.048.038-.297.039-.349 0-1.034-.795-2.212.391-3.034-.03-1.062-.54-1.776-.447-2.777-.003-.304.137-1.102-.107-1.6-.273-.695-.232-.651-.554-.006-.836-.127-.098-.23-.252-.386-.282-.213-.04-.597-.04-.677.042-.241.245-.272.6-.567.793-.392.258-.954.555-1.448.559-.849.007-1.895-.455-2.51-.257-.988.318-1.608.278-2.586.017-.668-.177-1.656.25-2.505.26-3.419.036-6.841.014-10.181.014-.337-.357-.621-.66-.906-.96l-1.771.987c-1.43.236-3.91-.655-5.404.968l-1.209-.87c-2.906.53-5.718.607-8.525-.02-2.904.875-5.913.112-8.847.412.063-.442.217-.943.125-.962-1.143-.251-.959.43-1.28.888h-3.893l-.518.921c-.171-.055-.408-.082-.497-.172-.698-.696-1.891-.981-2.833-.67-2.207.73-4.477.343-6.71.425-1.924.07-3.858.014-5.825.362l3.534.233c-2.693.154-5.556 1.147-7.57-.448-1.414.133-2.543.32-3.678.333-3.525.04-7.052.015-10.505.015l-.586 1.103-1.562-1.538c-.25.66-.83 1.343-1.88.87-1.113-.499-1.749-.156-2.767-.023-1.86.242-3.848.069-5.839.38.913.093 1.825.186 2.785.286-.152.156-.252.35-.355.35-2.694.017-5.397.096-8.083-.013-1.982-.08-3.894-.66-5.943-.452-.333.035-.66.097-.994.369l2.95.201c-3.074.207-6.084.755-9.181.005-1.371-.332-3.086-.056-4.74.2l2.05.328c-.12.126-.215.322-.317.323-1.222.016-2.443.003-3.664-.002-.657-1.013-1.638.492-2.635-.174-.65-.433-2.002.584-3.315-.205-.716-.428-2.526-.076-3.894.235l2.894.296c-.214.154-.344.33-.48.332-1.836.018-3.677-.04-5.51.023-3.576.123-7.205.113-10.698.548-1.883.235-3.73.283-5.592.431-1.599.126-3.157.494-3.781 1.877-.638 0-2.054.164-2.18-.029-.546-.844-2.205-.932-2.577-1.658-.35-.686-.927-.897-1.797-1.216-1.753-.644-2.13-1.876-1.244-3.076L.003 7.952c.022-.173-.054-.382.073-.475C1.449 6.46 3.059 5.937 5.253 5.76c3.595-.291 7.11-1.01 10.793-.898 2.111-.842 4.45-.332 6.677-.489 1.741-.122 3.465-.374 5.21-.455 1.704-.08 3.605.285 5.1-.09 2.151-.537 4.26-.469 6.346-.365 2.682.134 5.155-.574 7.784-.532 2.694.04 5.501.327 8.061-.06 4.94-.744 9.911-.003 14.775-.46 6.03-.569 12.117-.017 18.062-.515 8.008-.673 15.985-.162 23.965-.395.977-.028 1.959.004 2.939-.005.825-.007 1.73.143 2.282-.457.437.758 1.384-.076 2.148.29.468.223 1.633-.24 2.501-.297.97-.063 1.957-.015 2.937-.015h11.023c.98 0 1.967-.046 2.939.012 1.148.07 2.285-.183 3.475.349.573.256 1.905-.323 2.899-.341 3.06-.054 6.125.015 9.185-.038 1.139-.019 2.42.349 3.392-.452.636-.526 1.112.918 2.075.131.304-.248 1.831-.29 1.994-.11.926 1.008 1.973-.523 2.678.098 1.001.88 1.622-.155 2.428-.122.456.019.906.111 1.359.169.792.102 2.051.455 2.298.26 1.006-.794 2.181-.015 3.284-.32 1.141-.317 2.631-.114 3.968-.114 24.005-.003 48.014.021 72.02-.03 3.202-.007 6.507.518 9.616-.453 1.636.918 3.25-.1 4.907-.053 5.132.147 10.278.053 15.772.053-.184.375-.296.913-.482.924-2.594.156-5.106.62-7.777.556-5.382-.128-10.776-.04-16.165-.029-.195.001-.389.15-.584.23.245.08.477.193.736.235.648.105 1.243.637 2.006.03.196-.157.935-.023 1.424-.023 7.095 0 14.187 0 8.666.201-12.8.118-12.786.033-12.773-.052-1.137-.2-2.26-.462-3.419-.576-.615-.06-4.504.028-5.062-.023-.476-.044-1.21-.16-1.411-.008-.999.754-2.27.443-3.413.444-17.401.019-34.801.02-52.201-.007-1.021 0-2.186.354-3.113-.31-.177-.128-.817-.19-.945-.1-1.115.788-2.526.332-3.791.42-2.589.177-5.238-.29-7.81.446-.726.208-1.834-.092-2.743-.225-1.749-.256-3.485-.44-5.191.085-.595.183-1.331-.504-1.822.146-.941-.774-2.519-.648-3.336-.368-1.363.468-2.348-.42-3.497-.076-.205.06-.513.041-.64.136-.604.452-1.038.35-1.828.07-.765-.272-1.965-.349-2.775-.155-1.05.252-2.321.446-3.129.338-1.255-.166-2.317.06-3.463.088-8.965.214-17.933-.292-26.91.429-6.7.537-13.494-.192-20.289.454-6.18.587-12.516-.152-18.81.494-4.96.51-10.086-.213-15.136.495-2.343.329-4.896-.045-7.33.085-2.234.12-4.415-.217-6.762.314-2.188.494-4.832.12-7.275.144-.377.004-.753.095-1.13.146.5.328.955.337 1.41.326 4.314-.098 8.606.035 12.946-.403 5.213-.525 10.55.143 15.875-.48 4.942-.577 10.134.437 15.109-.566.7-.14 1.295.922 1.987.04.796.79 1.542-.05 2.312-.06 6.029-.082 12.091.394 18.084-.433.803-.11 2.005-.201 2.465.083 1.042.645 1.551-.362 2.456-.14.751.186 1.693.039 2.55.039 4.903 0 9.805.026 14.705-.018 1.26-.011 2.665.364 3.796-.412.126-.086.788.195 1.217.256.569.082 1.495.288 1.667.14.684-.584 1.088-.074 1.672-.014.581.06 1.256-.402 1.889-.402 1.024 0 2.219-.334 3.036.4.71-.55 1.688-.431 2.606-.426.931.005 1.968-.198 2.631.468.66-.682 1.713-.464 2.64-.466 6.128-.012 12.257.086 18.38-.033 6.025-.118 12.104.547 18.078-.454.736.461 1.692.213 2.517.256 1.065.057 2.163-.233 3.248-.236 1.257-.003 2.63-.284 3.714.418 1.199-.859 2.763-.411 4.133-.415 16.174-.036 32.349-.022 48.524-.027 1.181 0 2.363-.047 16.357-.275' clip-rule='evenodd'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
  }
}
@media (min-width: 1200px) {
  span.highlight-xl {
    position: relative;
    z-index: 1;
  }
  span.highlight-xl::after {
    content: "";
    position: absolute;
    top: calc(100% - 7.5px);
    right: 0;
    left: 0;
    height: 15px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='282' height='15' fill='none'%3e%3cpath fill='%23FFBB38' fill-rule='evenodd' d='M267.969 2.18c13.232 1.358 11.07.341 10.716 1.01l3.315.794-2.502 1.14c.158.117.379.283.601.45-.163.077-.349.244-.515.236-4.099-.199-8.062.718-12.194.533-4.145-.185-8.371-.29-12.475.037-3.343.264-6.657.346-9.997.425-1.03.024-1.871-.543-3.123-.09-.937.34-2.393.068-3.619.068h-4.041c-1.226 0-2.45-.003-3.675.001-1.22.002-2.441.008-3.661.026-.089.001-.174.106-.484.309 1.15.097 2.121.178 3.092.258l-.014.305c-1.278.02-2.556.05-3.833.059-1.347.01-2.694.006-4.042-.001-.229-.001-.57.007-.67-.08-1.356-1.19-2.885-1.043-4.691-.434-.678.228-1.686.037-2.543.037-11.514 0-23.029-.012-34.541.018-1.254.003-2.702-.4-3.748.458-.048.038-.297.039-.349 0-1.034-.795-2.212.391-3.034-.03-1.062-.54-1.776-.447-2.777-.003-.304.137-1.102-.107-1.6-.273-.695-.232-.651-.554-.006-.836-.127-.098-.23-.252-.386-.282-.213-.04-.597-.04-.677.042-.241.245-.272.6-.567.793-.392.258-.954.555-1.448.559-.849.007-1.895-.455-2.51-.257-.988.318-1.608.278-2.586.017-.668-.177-1.656.25-2.505.26-3.419.036-6.841.014-10.181.014-.337-.357-.621-.66-.906-.96l-1.771.987c-1.43.236-3.91-.655-5.404.968l-1.209-.87c-2.906.53-5.718.607-8.525-.02-2.904.875-5.913.112-8.847.412.063-.442.217-.943.125-.962-1.143-.251-.959.43-1.28.888h-3.893l-.518.921c-.171-.055-.408-.082-.497-.172-.698-.696-1.891-.981-2.833-.67-2.207.73-4.477.343-6.71.425-1.924.07-3.858.014-5.825.362l3.534.233c-2.693.154-5.556 1.147-7.57-.448-1.414.133-2.543.32-3.678.333-3.525.04-7.052.015-10.505.015l-.586 1.103-1.562-1.538c-.25.66-.83 1.343-1.88.87-1.113-.499-1.749-.156-2.767-.023-1.86.242-3.848.069-5.839.38.913.093 1.825.186 2.785.286-.152.156-.252.35-.355.35-2.694.017-5.397.096-8.083-.013-1.982-.08-3.894-.66-5.943-.452-.333.035-.66.097-.994.369l2.95.201c-3.074.207-6.084.755-9.181.005-1.371-.332-3.086-.056-4.74.2l2.05.328c-.12.126-.215.322-.317.323-1.222.016-2.443.003-3.664-.002-.657-1.013-1.638.492-2.635-.174-.65-.433-2.002.584-3.315-.205-.716-.428-2.526-.076-3.894.235l2.894.296c-.214.154-.344.33-.48.332-1.836.018-3.677-.04-5.51.023-3.576.123-7.205.113-10.698.548-1.883.235-3.73.283-5.592.431-1.599.126-3.157.494-3.781 1.877-.638 0-2.054.164-2.18-.029-.546-.844-2.205-.932-2.577-1.658-.35-.686-.927-.897-1.797-1.216-1.753-.644-2.13-1.876-1.244-3.076L.003 7.952c.022-.173-.054-.382.073-.475C1.449 6.46 3.059 5.937 5.253 5.76c3.595-.291 7.11-1.01 10.793-.898 2.111-.842 4.45-.332 6.677-.489 1.741-.122 3.465-.374 5.21-.455 1.704-.08 3.605.285 5.1-.09 2.151-.537 4.26-.469 6.346-.365 2.682.134 5.155-.574 7.784-.532 2.694.04 5.501.327 8.061-.06 4.94-.744 9.911-.003 14.775-.46 6.03-.569 12.117-.017 18.062-.515 8.008-.673 15.985-.162 23.965-.395.977-.028 1.959.004 2.939-.005.825-.007 1.73.143 2.282-.457.437.758 1.384-.076 2.148.29.468.223 1.633-.24 2.501-.297.97-.063 1.957-.015 2.937-.015h11.023c.98 0 1.967-.046 2.939.012 1.148.07 2.285-.183 3.475.349.573.256 1.905-.323 2.899-.341 3.06-.054 6.125.015 9.185-.038 1.139-.019 2.42.349 3.392-.452.636-.526 1.112.918 2.075.131.304-.248 1.831-.29 1.994-.11.926 1.008 1.973-.523 2.678.098 1.001.88 1.622-.155 2.428-.122.456.019.906.111 1.359.169.792.102 2.051.455 2.298.26 1.006-.794 2.181-.015 3.284-.32 1.141-.317 2.631-.114 3.968-.114 24.005-.003 48.014.021 72.02-.03 3.202-.007 6.507.518 9.616-.453 1.636.918 3.25-.1 4.907-.053 5.132.147 10.278.053 15.772.053-.184.375-.296.913-.482.924-2.594.156-5.106.62-7.777.556-5.382-.128-10.776-.04-16.165-.029-.195.001-.389.15-.584.23.245.08.477.193.736.235.648.105 1.243.637 2.006.03.196-.157.935-.023 1.424-.023 7.095 0 14.187 0 8.666.201-12.8.118-12.786.033-12.773-.052-1.137-.2-2.26-.462-3.419-.576-.615-.06-4.504.028-5.062-.023-.476-.044-1.21-.16-1.411-.008-.999.754-2.27.443-3.413.444-17.401.019-34.801.02-52.201-.007-1.021 0-2.186.354-3.113-.31-.177-.128-.817-.19-.945-.1-1.115.788-2.526.332-3.791.42-2.589.177-5.238-.29-7.81.446-.726.208-1.834-.092-2.743-.225-1.749-.256-3.485-.44-5.191.085-.595.183-1.331-.504-1.822.146-.941-.774-2.519-.648-3.336-.368-1.363.468-2.348-.42-3.497-.076-.205.06-.513.041-.64.136-.604.452-1.038.35-1.828.07-.765-.272-1.965-.349-2.775-.155-1.05.252-2.321.446-3.129.338-1.255-.166-2.317.06-3.463.088-8.965.214-17.933-.292-26.91.429-6.7.537-13.494-.192-20.289.454-6.18.587-12.516-.152-18.81.494-4.96.51-10.086-.213-15.136.495-2.343.329-4.896-.045-7.33.085-2.234.12-4.415-.217-6.762.314-2.188.494-4.832.12-7.275.144-.377.004-.753.095-1.13.146.5.328.955.337 1.41.326 4.314-.098 8.606.035 12.946-.403 5.213-.525 10.55.143 15.875-.48 4.942-.577 10.134.437 15.109-.566.7-.14 1.295.922 1.987.04.796.79 1.542-.05 2.312-.06 6.029-.082 12.091.394 18.084-.433.803-.11 2.005-.201 2.465.083 1.042.645 1.551-.362 2.456-.14.751.186 1.693.039 2.55.039 4.903 0 9.805.026 14.705-.018 1.26-.011 2.665.364 3.796-.412.126-.086.788.195 1.217.256.569.082 1.495.288 1.667.14.684-.584 1.088-.074 1.672-.014.581.06 1.256-.402 1.889-.402 1.024 0 2.219-.334 3.036.4.71-.55 1.688-.431 2.606-.426.931.005 1.968-.198 2.631.468.66-.682 1.713-.464 2.64-.466 6.128-.012 12.257.086 18.38-.033 6.025-.118 12.104.547 18.078-.454.736.461 1.692.213 2.517.256 1.065.057 2.163-.233 3.248-.236 1.257-.003 2.63-.284 3.714.418 1.199-.859 2.763-.411 4.133-.415 16.174-.036 32.349-.022 48.524-.027 1.181 0 2.363-.047 16.357-.275' clip-rule='evenodd'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
  }
}
@media (min-width: 1400px) {
  span.highlight-xxl {
    position: relative;
    z-index: 1;
  }
  span.highlight-xxl::after {
    content: "";
    position: absolute;
    top: calc(100% - 7.5px);
    right: 0;
    left: 0;
    height: 15px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='282' height='15' fill='none'%3e%3cpath fill='%23FFBB38' fill-rule='evenodd' d='M267.969 2.18c13.232 1.358 11.07.341 10.716 1.01l3.315.794-2.502 1.14c.158.117.379.283.601.45-.163.077-.349.244-.515.236-4.099-.199-8.062.718-12.194.533-4.145-.185-8.371-.29-12.475.037-3.343.264-6.657.346-9.997.425-1.03.024-1.871-.543-3.123-.09-.937.34-2.393.068-3.619.068h-4.041c-1.226 0-2.45-.003-3.675.001-1.22.002-2.441.008-3.661.026-.089.001-.174.106-.484.309 1.15.097 2.121.178 3.092.258l-.014.305c-1.278.02-2.556.05-3.833.059-1.347.01-2.694.006-4.042-.001-.229-.001-.57.007-.67-.08-1.356-1.19-2.885-1.043-4.691-.434-.678.228-1.686.037-2.543.037-11.514 0-23.029-.012-34.541.018-1.254.003-2.702-.4-3.748.458-.048.038-.297.039-.349 0-1.034-.795-2.212.391-3.034-.03-1.062-.54-1.776-.447-2.777-.003-.304.137-1.102-.107-1.6-.273-.695-.232-.651-.554-.006-.836-.127-.098-.23-.252-.386-.282-.213-.04-.597-.04-.677.042-.241.245-.272.6-.567.793-.392.258-.954.555-1.448.559-.849.007-1.895-.455-2.51-.257-.988.318-1.608.278-2.586.017-.668-.177-1.656.25-2.505.26-3.419.036-6.841.014-10.181.014-.337-.357-.621-.66-.906-.96l-1.771.987c-1.43.236-3.91-.655-5.404.968l-1.209-.87c-2.906.53-5.718.607-8.525-.02-2.904.875-5.913.112-8.847.412.063-.442.217-.943.125-.962-1.143-.251-.959.43-1.28.888h-3.893l-.518.921c-.171-.055-.408-.082-.497-.172-.698-.696-1.891-.981-2.833-.67-2.207.73-4.477.343-6.71.425-1.924.07-3.858.014-5.825.362l3.534.233c-2.693.154-5.556 1.147-7.57-.448-1.414.133-2.543.32-3.678.333-3.525.04-7.052.015-10.505.015l-.586 1.103-1.562-1.538c-.25.66-.83 1.343-1.88.87-1.113-.499-1.749-.156-2.767-.023-1.86.242-3.848.069-5.839.38.913.093 1.825.186 2.785.286-.152.156-.252.35-.355.35-2.694.017-5.397.096-8.083-.013-1.982-.08-3.894-.66-5.943-.452-.333.035-.66.097-.994.369l2.95.201c-3.074.207-6.084.755-9.181.005-1.371-.332-3.086-.056-4.74.2l2.05.328c-.12.126-.215.322-.317.323-1.222.016-2.443.003-3.664-.002-.657-1.013-1.638.492-2.635-.174-.65-.433-2.002.584-3.315-.205-.716-.428-2.526-.076-3.894.235l2.894.296c-.214.154-.344.33-.48.332-1.836.018-3.677-.04-5.51.023-3.576.123-7.205.113-10.698.548-1.883.235-3.73.283-5.592.431-1.599.126-3.157.494-3.781 1.877-.638 0-2.054.164-2.18-.029-.546-.844-2.205-.932-2.577-1.658-.35-.686-.927-.897-1.797-1.216-1.753-.644-2.13-1.876-1.244-3.076L.003 7.952c.022-.173-.054-.382.073-.475C1.449 6.46 3.059 5.937 5.253 5.76c3.595-.291 7.11-1.01 10.793-.898 2.111-.842 4.45-.332 6.677-.489 1.741-.122 3.465-.374 5.21-.455 1.704-.08 3.605.285 5.1-.09 2.151-.537 4.26-.469 6.346-.365 2.682.134 5.155-.574 7.784-.532 2.694.04 5.501.327 8.061-.06 4.94-.744 9.911-.003 14.775-.46 6.03-.569 12.117-.017 18.062-.515 8.008-.673 15.985-.162 23.965-.395.977-.028 1.959.004 2.939-.005.825-.007 1.73.143 2.282-.457.437.758 1.384-.076 2.148.29.468.223 1.633-.24 2.501-.297.97-.063 1.957-.015 2.937-.015h11.023c.98 0 1.967-.046 2.939.012 1.148.07 2.285-.183 3.475.349.573.256 1.905-.323 2.899-.341 3.06-.054 6.125.015 9.185-.038 1.139-.019 2.42.349 3.392-.452.636-.526 1.112.918 2.075.131.304-.248 1.831-.29 1.994-.11.926 1.008 1.973-.523 2.678.098 1.001.88 1.622-.155 2.428-.122.456.019.906.111 1.359.169.792.102 2.051.455 2.298.26 1.006-.794 2.181-.015 3.284-.32 1.141-.317 2.631-.114 3.968-.114 24.005-.003 48.014.021 72.02-.03 3.202-.007 6.507.518 9.616-.453 1.636.918 3.25-.1 4.907-.053 5.132.147 10.278.053 15.772.053-.184.375-.296.913-.482.924-2.594.156-5.106.62-7.777.556-5.382-.128-10.776-.04-16.165-.029-.195.001-.389.15-.584.23.245.08.477.193.736.235.648.105 1.243.637 2.006.03.196-.157.935-.023 1.424-.023 7.095 0 14.187 0 8.666.201-12.8.118-12.786.033-12.773-.052-1.137-.2-2.26-.462-3.419-.576-.615-.06-4.504.028-5.062-.023-.476-.044-1.21-.16-1.411-.008-.999.754-2.27.443-3.413.444-17.401.019-34.801.02-52.201-.007-1.021 0-2.186.354-3.113-.31-.177-.128-.817-.19-.945-.1-1.115.788-2.526.332-3.791.42-2.589.177-5.238-.29-7.81.446-.726.208-1.834-.092-2.743-.225-1.749-.256-3.485-.44-5.191.085-.595.183-1.331-.504-1.822.146-.941-.774-2.519-.648-3.336-.368-1.363.468-2.348-.42-3.497-.076-.205.06-.513.041-.64.136-.604.452-1.038.35-1.828.07-.765-.272-1.965-.349-2.775-.155-1.05.252-2.321.446-3.129.338-1.255-.166-2.317.06-3.463.088-8.965.214-17.933-.292-26.91.429-6.7.537-13.494-.192-20.289.454-6.18.587-12.516-.152-18.81.494-4.96.51-10.086-.213-15.136.495-2.343.329-4.896-.045-7.33.085-2.234.12-4.415-.217-6.762.314-2.188.494-4.832.12-7.275.144-.377.004-.753.095-1.13.146.5.328.955.337 1.41.326 4.314-.098 8.606.035 12.946-.403 5.213-.525 10.55.143 15.875-.48 4.942-.577 10.134.437 15.109-.566.7-.14 1.295.922 1.987.04.796.79 1.542-.05 2.312-.06 6.029-.082 12.091.394 18.084-.433.803-.11 2.005-.201 2.465.083 1.042.645 1.551-.362 2.456-.14.751.186 1.693.039 2.55.039 4.903 0 9.805.026 14.705-.018 1.26-.011 2.665.364 3.796-.412.126-.086.788.195 1.217.256.569.082 1.495.288 1.667.14.684-.584 1.088-.074 1.672-.014.581.06 1.256-.402 1.889-.402 1.024 0 2.219-.334 3.036.4.71-.55 1.688-.431 2.606-.426.931.005 1.968-.198 2.631.468.66-.682 1.713-.464 2.64-.466 6.128-.012 12.257.086 18.38-.033 6.025-.118 12.104.547 18.078-.454.736.461 1.692.213 2.517.256 1.065.057 2.163-.233 3.248-.236 1.257-.003 2.63-.284 3.714.418 1.199-.859 2.763-.411 4.133-.415 16.174-.036 32.349-.022 48.524-.027 1.181 0 2.363-.047 16.357-.275' clip-rule='evenodd'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    z-index: -1;
  }
}
.down-arrow {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 45px;
  height: 45px;
  overflow: hidden;
  color: #fff;
  background-color: rgba(133, 133, 137, 0.3);
  border-radius: 50%;
}
.down-arrow:hover {
  color: #fff;
}
.content-wrap {
  position: relative;
  max-width: 100%;
  z-index: 1;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

.sticky-top {
  top: 0;
  -webkit-transition: top 150ms linear;
  transition: top 150ms linear;
  will-change: top;
}

.navbar-show .sticky-top {
  top: 80px;
}

.no-transform {
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}

.lift {
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  will-change: transform;
}
.lift:hover {
  -webkit-transform: translate3d(0, -15px, 0);
          transform: translate3d(0, -15px, 0);
}

.no-transform {
  -webkit-transform: none !important;
      -ms-transform: none !important;
          transform: none !important;
}

@media (max-width: 619.98px) {
  .no-transform-sm {
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }
}
@media (max-width: 827.98px) {
  .no-transform-md {
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }
}
@media (max-width: 1023.98px) {
  .no-transform-lg {
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }
}
@media (max-width: 1199.98px) {
  .no-transform-xl {
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }
}
@media (max-width: 1399.98px) {
  .no-transform-xxl {
    -webkit-transform: none !important;
        -ms-transform: none !important;
            transform: none !important;
  }
}
.sep-dot {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 14px;
  vertical-align: middle;
  background-color: currentColor;
  border-radius: 50%;
}

/* FONT SIZE
-------------------------------------------- */
.font-size-13 {
  font-size: 0.875em;
}
@media (min-width: 1024px) {
  .font-size-13 {
    font-size: 0.8125em;
  }
}

.font-size-14 {
  font-size: 0.9375em;
}
@media (min-width: 1024px) {
  .font-size-14 {
    font-size: 0.875em;
  }
}

.font-size-15 {
  font-size: 1em;
}
@media (min-width: 1024px) {
  .font-size-15 {
    font-size: 0.9375em;
  }
}

.font-size-18 {
  font-size: 1.1875em;
}
@media (min-width: 1024px) {
  .font-size-18 {
    font-size: 1.125em;
  }
}

/* FONT WEIGHT
-------------------------------------------- */
.fw-medium {
  font-weight: 500;
}

/* TEXT COLOR
-------------------------------------------- */
.text-accent-1 {
  color: #F01F4B !important;
}

.text-accent-2 {
  color: #481FA0 !important;
}

.text-accent-3 {
  color: #FFBB38 !important;
}

.text-gray-light {
  color: #F5F5F7 !important;
}

.text-gray {
  color: #B1B1B4 !important;
}

.text-gray-dark {
  color: #4B4A4D !important;
}

.text-gray-darker {
  color: #858589 !important;
}

.text-hover-accent-1:hover {
  color: #F01F4B;
}

.text-hover-accent-2:hover {
  color: #481FA0;
}

.text-hover-accent-3:hover {
  color: #FFBB38;
}

/* BACKGROUND COLOR
-------------------------------------------- */
.bg-linear-gradient {
  background-image: -webkit-linear-gradient(26.66deg, #FFF5EB 0%, #F4F2F9 100%);
  background-image: linear-gradient(63.34deg, #FFF5EB 0%, #F4F2F9 100%);
}

.bg-accent-1 {
  background-color: #F01F4B !important;
}

.bg-accent-2 {
  background-color: #481FA0 !important;
}

.bg-accent-3 {
  background-color: #FFBB38 !important;
}

.bg-dark-light {
  background-color: #262528 !important;
}

.bg-gray {
  background-color: #B1B1B4 !important;
}

.bg-gray-dark {
  background-color: #4B4A4D !important;
}

.bg-gray-darker {
  background-color: #858589 !important;
}

.bg-gray-op20 {
  background-color: rgba(177, 177, 180, 0.2) !important;
}

.bg-gray-light {
  background-color: #F5F5F7 !important;
}

/* BORDER COLOR
-------------------------------------------- */
.border-gray {
  border-color: rgba(177, 177, 180, 0.3) !important;
}

/* SELECTION
-------------------------------------------- */
::-moz-selection {
  color: #FFFFFF;
  background-color: #F01F4B;
}
::selection {
  color: #FFFFFF;
  background-color: #F01F4B;
}

::-moz-selection {
  color: #FFFFFF;
  background-color: #F01F4B;
}

/* BODY
-------------------------------------------- */
html {
  min-height: 100%;
}

body {
  position: relative;
  overflow-x: hidden;
  overflow-y: initial;
  color: #17161A;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* PARAGRAPH
-------------------------------------------- */
p {
  margin-bottom: 1.7647058824em;
  font-size: 1.0625em;
}
p a {
  color: #F01F4B;
  text-decoration: none;
}
p a:hover {
  color: #F01F4B;
  text-decoration: underline;
}

/* LIST
-------------------------------------------- */
.list {
  padding-left: 40px;
  font-weight: 500;
  color: #17161A;
}
.list li {
  position: relative;
  list-style: none;
}
.list li::before {
  content: "";
  position: absolute;
  top: 0;
  left: -40px;
  width: 24px;
  height: 24px;
  background-color: #EAEAEE;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 10'%3e%3cpath fill='%23B1B1B4' d='m10.663 2.608.609-.663L9.945.728l-.608.664 1.326 1.216ZM4.5 8l-.663.608.663.724.663-.724L4.5 8ZM2.663 4.665 2.055 4 .728 5.217l.609.664 1.326-1.216Zm6.674-3.273-5.5 6 1.326 1.216 5.5-6-1.326-1.216Zm-4.174 6-2.5-2.727L1.337 5.88l2.5 2.727 1.326-1.216Z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50%;
  border-radius: 100%;
}
.list li + li {
  margin-top: 20px;
}
.list li.active::before {
  background-color: #481FA0;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 12 10'%3e%3cpath fill='%23fff' d='m10.663 2.608.609-.663L9.945.728l-.608.664 1.326 1.216ZM4.5 8l-.663.608.663.724.663-.724L4.5 8ZM2.663 4.665 2.055 4 .728 5.217l.609.664 1.326-1.216Zm6.674-3.273-5.5 6 1.326 1.216 5.5-6-1.326-1.216Zm-4.174 6-2.5-2.727L1.337 5.88l2.5 2.727 1.326-1.216Z'/%3e%3c/svg%3e");
}

/* LINK
-------------------------------------------- */
a {
  color: #17161A;
  -webkit-transition: all 150ms linear;
  transition: all 150ms linear;
}
a:hover {
  text-decoration: none;
}
a:hover, a:focus {
  color: #17161A;
}

/* HEADINGS
-------------------------------------------- */
h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  color: #17161A;
}
h1 u,
.h1 u,
h2 u,
.h2 u,
h3 u,
.h3 u,
h4 u,
.h4 u,
h5 u,
.h5 u,
h6 u,
.h6 u {
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

h1,
.h1 {
  margin-bottom: 0.8em;
  font-size: 3.125em;
  line-height: 1.2;
}
@media (max-width: 619.98px) {
  h1,
.h1 {
    margin-bottom: 1em;
    font-size: 2.5em;
  }
}
h1.large-heading,
.h1.large-heading {
  margin-bottom: 0.5714285714em;
  font-size: 4.375em;
  line-height: 1.2;
}
@media (max-width: 619.98px) {
  h1.large-heading,
.h1.large-heading {
    margin-bottom: 0.8em;
    font-size: 3.125em;
    line-height: 1.2;
  }
}

h2,
.h2 {
  margin-bottom: 1em;
  font-size: 2.5em;
  line-height: 1.2;
}
@media (max-width: 619.98px) {
  h2,
.h2 {
    margin-bottom: 1.1764705882em;
    font-size: 2.125em;
  }
}

h3,
.h3 {
  margin-bottom: 1.1764705882em;
  font-size: 2.125em;
  line-height: 1.4;
}
@media (max-width: 619.98px) {
  h3,
.h3 {
    margin-bottom: 1.3333333333rem;
    font-size: 1.875rem;
  }
}

h4,
.h4 {
  margin-bottom: 2em;
  font-size: 1.375em;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  h4,
.h4 {
    font-size: 1.25em;
  }
}

h5,
.h5 {
  margin-bottom: 2.2222222222em;
  font-size: 1.25em;
  line-height: 1.5;
}
@media (min-width: 1024px) {
  h5,
.h5 {
    font-size: 1.125em;
  }
}

h6,
.h6 {
  margin-bottom: 1em;
  font-size: 1.125em;
  line-height: 1.6;
}
@media (min-width: 1024px) {
  h6,
.h6 {
    font-size: 1em;
  }
}

.display-6 {
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* LEAD
-------------------------------------------- */
.lead {
  margin-bottom: 0.9em;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
  color: #17161A;
}
@media (max-width: 619.98px) {
  .lead {
    margin-bottom: 1em;
    font-size: 1.125em;
  }
}

/* HR
-------------------------------------------- */
hr,
.hr {
  height: 0;
  margin-top: 2.25em;
  margin-bottom: 2.25em;
  background-color: transparent;
  border-top: 1px solid #B1B1B4;
  opacity: 0.3;
}

/* BLOCKQUOTE
-------------------------------------------- */
blockquote,
.blockquote {
  font-size: 1.25em;
  font-weight: 700;
}

/* CODE
-------------------------------------------- */
code:not([class]) {
  display: inline-block;
  padding: 0 8px;
  font-size: 0.875em;
  line-height: 1.6;
  color: #17161A;
  background-image: -webkit-linear-gradient(26.66deg, #FFF5EB 0%, #F4F2F9 100%);
  background-image: linear-gradient(63.34deg, #FFF5EB 0%, #F4F2F9 100%);
  border-radius: 3px;
}

/* 04. Partials */
.object-fit-image, .background-video,
.background-image img, [data-img-height] img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "object-fit: cover";
  -o-object-fit: cover;
     object-fit: cover;
}

[data-img-height] {
  position: relative;
  display: block;
}
[data-img-height]::before {
  content: "";
  display: block;
  padding-top: var(--img-height);
}
.browser-topbar {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding: 11px 13px;
  background-color: rgba(177, 177, 180, 0.25);
}
.browser-topbar span {
  display: inline-block;
  width: 6px;
  height: 6px;
  background-color: #B1B1B4;
  border-radius: 50%;
}
.browser-topbar span + span {
  margin-left: 5px;
}
.browser-topbar-dark {
  background-color: #4B4A4D;
}
.browser-topbar-dark span {
  background-color: #858589;
}

.background {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.background-color,
.background-image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  -webkit-transition: background-color 150ms linear;
  transition: background-color 150ms linear;
  will-change: background-color;
}

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

.map-container iframe {
  width: 100%;
  height: 100%;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
}

/* PARTIAL: SHOW ON SCROLL
-------------------------------------------- */
[data-show=startbox] {
  opacity: 0;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  will-change: opacity, transform;
}

.half-section-block {
  z-index: 1;
}

/* 05. Components */
.brand {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 180px;
  min-height: 130px;
  -webkit-filter: brightness(1);
          filter: brightness(1);
  -webkit-transition: -webkit-transform 150ms linear, -webkit-filter 150ms linear;
  transition: -webkit-transform 150ms linear, -webkit-filter 150ms linear;
  transition: transform 150ms linear, filter 150ms linear;
  transition: transform 150ms linear, filter 150ms linear, -webkit-transform 150ms linear, -webkit-filter 150ms linear;
  will-change: transform, filter;
}
@media (max-width: 827.98px) {
  .brand {
    min-width: 170px;
  }
}
@media (max-width: 619.98px) {
  .brand {
    min-width: 132px;
  }
}
.brand svg {
  display: block;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
}
.brand:hover, .brand:focus {
  -webkit-transform: translateY(-2px);
      -ms-transform: translateY(-2px);
          transform: translateY(-2px);
}
.brand-md {
  min-width: 170px;
  min-height: 150px;
}
@media (max-width: 619.98px) {
  .brand-md {
    min-width: 132px;
    min-height: 132px;
  }
}
.brand-sm {
  min-width: 132px;
  min-height: 96px;
}

.docs-card {
  padding: 30px 60px 60px;
}
.docs-card .docs-card-title {
  padding-right: 60px;
  padding-bottom: 30px;
  padding-left: 60px;
  margin-top: 0;
  margin-right: -60px;
  margin-bottom: 40px;
  margin-left: -60px;
  border-bottom: 1px solid rgba(177, 177, 180, 0.3);
}
.docs-card > h2,
.docs-card > .h2 {
  margin-top: 1em;
}
.docs-card > h3,
.docs-card > .h3 {
  margin-top: 1.1764705882em;
}
.docs-card > h4,
.docs-card > .h4 {
  margin-top: 2em;
}
.docs-card > h5,
.docs-card > .h5 {
  margin-top: 2.2222222222em;
}
.docs-card > h6,
.docs-card > .h6 {
  margin-top: 1em;
}
.docs-card ul:not([class]),
.docs-card ol:not([class]) {
  margin-bottom: 30px;
  line-height: 2;
}
.docs-card ul:not([class]) ul,
.docs-card ul:not([class]) ul,
.docs-card ol:not([class]) ul,
.docs-card ol:not([class]) ul {
  margin-bottom: 0;
}
.docs-card ul:not([class]):last-of-type,
.docs-card ol:not([class]):last-of-type {
  margin-bottom: 0;
}
.docs-card a + p,
.docs-card ul:not([class]) + p,
.docs-card ol:not([class]) + p,
.docs-card ul:not([class]) + .docs-card-example,
.docs-card ol:not([class]) + .docs-card-example,
.docs-card .docs-card-example + p,
.docs-card p + .docs-card-example,
.docs-card .docs-card-example + .docs-card-example {
  margin-top: 40px;
}
.docs-card p a,
.docs-card ul:not([class]) a,
.docs-card ol:not([class]) a {
  color: #F01F4B;
  text-decoration: underline;
}
.docs-card:not(.show) {
  display: none;
}

code.docs-card-gist {
  display: block;
  margin-top: 45px;
  margin-bottom: 45px;
}
code.docs-card-gist .blob-wrapper {
  max-height: 500px;
  overflow-y: auto;
}

.docs-card-example {
  position: relative;
  padding: 30px;
  background-color: #F5F5F7;
  border: 1px solid rgba(177, 177, 180, 0.3);
}

.industry {
  overflow: hidden;
}
.industry img {
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  will-change: transform;
}
.industry::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 68%;
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#17161A));
  background: -webkit-linear-gradient(top, transparent 0%, #17161A 100%);
  background: linear-gradient(180deg, transparent 0%, #17161A 100%);
  -webkit-transition: height 150ms linear;
  transition: height 150ms linear;
  will-change: height;
  z-index: 1;
}
.industry:hover::before {
  height: 100%;
}
.industry .industry-body {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  padding: 20px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: center;
      -ms-flex-direction: center;
          flex-direction: center;
  z-index: 2;
}

.shape {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  pointer-events: none;
}
@media (max-width: 1199.98px) {
  .shape:not(.shape-visible) {
    display: none;
  }
}
.shape svg,
.shape img {
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  z-index: -1;
}

.shape-parent {
  position: relative;
  z-index: 0;
}

.category {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.category-icon {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.circle-icon {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.circle-icon-sm {
  width: 60px;
  height: 60px;
}

.process-step {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.process-number {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.process-body .process-title {
  margin-bottom: 15px;
}

.process-title {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-decoration: none;
}
.process-title svg {
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  will-change: transform;
}
.process-title:hover svg {
  -webkit-transform: translateX(10px);
      -ms-transform: translateX(10px);
          transform: translateX(10px);
}

.service-box {
  padding: 35px 30px;
}
.service-box-arrow:hover {
  color: #F01F4B;
}

.service-box-sm {
  padding: 35px 25px 50px;
}

.service-line {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 30px 35px;
  border: 1px solid rgba(177, 177, 180, 0.3);
  -webkit-transition: background-color 150ms linear, border-color 150ms linear, -webkit-transform 150ms linear;
  transition: background-color 150ms linear, border-color 150ms linear, -webkit-transform 150ms linear;
  transition: background-color 150ms linear, border-color 150ms linear, transform 150ms linear;
  transition: background-color 150ms linear, border-color 150ms linear, transform 150ms linear, -webkit-transform 150ms linear;
  will-change: background-color, border-color, transform;
}
@media (min-width: 1200px) {
  .service-line {
    padding: 30px 70px;
  }
}
.service-line:hover {
  background-color: #F5F5F7;
  border-color: #F5F5F7;
}
.service-line:hover .service-line-arrow {
  color: #F01F4B;
}
.service-line-icon {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.service-line-body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-basis: 100%;
      -ms-flex-preferred-size: 100%;
          flex-basis: 100%;
}

.service-line-sm {
  padding-right: 40px;
  padding-left: 40px;
}

.service-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media (max-width: 827.98px) {
  .service-card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.service-card .service-card-image {
  position: relative;
  display: block;
  width: 200px;
  overflow: hidden;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 827.98px) {
  .service-card .service-card-image {
    width: 100%;
  }
}
.service-card .service-card-image img {
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  will-change: transform;
}
.service-card-body {
  padding: 25px 60px 25px 50px;
}

.service-card-arrow:hover {
  color: #F01F4B;
}

.service-case .service-case-image {
  overflow: hidden;
}
.service-case .service-case-image img {
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  will-change: transform;
}
.service-case-body {
  padding: 40px 50px;
}

.service-case-arrow:hover {
  color: #F01F4B;
}

.feedback {
  padding: 50px 40px;
}

.pricing {
  padding: 40px 45px 50px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item img {
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  will-change: transform;
}
.member .member-image {
  display: block;
  overflow: hidden;
}
.member .member-image img {
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  will-change: transform;
}
.member .member-body {
  padding: 32px 0 0;
}
.member .member-title {
  display: block;
  margin-bottom: 10px;
}
.member a.member-title {
  text-decoration: none;
}
.countdown {
  display: grid;
  grid-template-columns: 1fr 70px 1fr 70px 1fr 70px 1fr;
}
@media (max-width: 827.98px) {
  .countdown {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 30px;
  }
}

.countdown-item {
  white-space: nowrap;
}
.countdown-item span {
  display: block;
}

.page-navigation {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 18px;
}
.page-navigation .page-navigation-all {
  position: absolute;
  top: calc(50% - 35px);
  left: calc(50% - 35px);
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 70px;
  height: 70px;
  color: #F01F4B;
  background-color: #fff;
  border-radius: 50%;
}
.page-navigation .page-navigation-all svg {
  -webkit-transition: -webkit-transform 150ms linear;
  transition: -webkit-transform 150ms linear;
  transition: transform 150ms linear;
  transition: transform 150ms linear, -webkit-transform 150ms linear;
  will-change: transform;
}
.page-navigation .page-navigation-all:hover {
  color: #fff;
  background-color: #F01F4B;
}
.page-navigation .page-navigation-all:hover svg {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}
.page-navigation .page-navigation-prev,
.page-navigation .page-navigation-next {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
  margin: 0;
  text-decoration: none;
}
@media (min-width: 828px) {
  .page-navigation .page-navigation-prev,
.page-navigation .page-navigation-next {
    padding: 50px 70px;
  }
}
.page-navigation .page-navigation-prev svg {
  margin-right: 30px;
}
.page-navigation .page-navigation-next {
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  text-align: right;
}
.page-navigation .page-navigation-next svg {
  margin-left: 30px;
}