@charset "UTF-8";
:root {
  --bs-blue: #009ef6;
  --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-gray: #7E8299;
  --bs-gray-dark: #3F4254;
  --bs-gray-100: #F5F8FA;
  --bs-gray-200: #EFF2F5;
  --bs-gray-300: #E4E6EF;
  --bs-gray-400: #B5B5C3;
  --bs-gray-500: #A1A5B7;
  --bs-gray-600: #7E8299;
  --bs-gray-700: #5E6278;
  --bs-gray-800: #3F4254;
  --bs-gray-900: #181C32;
  --bs-white: #ffffff;
  --bs-light: #F5F8FA;
  --bs-primary: #009EF7;
  --bs-secondary: #E4E6EF;
  --bs-success: #50CD89;
  --bs-info: #7239EA;
  --bs-warning: #FFC700;
  --bs-danger: #F1416C;
  --bs-dark: #181C32;
  --bs-white-rgb: 255, 255, 255;
  --bs-light-rgb: 245, 248, 250;
  --bs-primary-rgb: 0, 158, 247;
  --bs-secondary-rgb: 228, 230, 239;
  --bs-success-rgb: 80, 205, 137;
  --bs-info-rgb: 114, 57, 234;
  --bs-warning-rgb: 255, 199, 0;
  --bs-danger-rgb: 241, 65, 108;
  --bs-dark-rgb: 24, 28, 50;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 24, 28, 50;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: Poppins, Helvetica, "sans-serif";
  --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: var(--bs-font-sans-serif);
  --bs-body-font-size: 1rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.5;
  --bs-body-color: #181C32;
  --bs-body-bg: #ffffff;
}

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

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(0, 0, 0, 0);
}

hr {
  margin: 1rem 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: 0.5rem;
  font-weight: 600;
  line-height: 1.2;
  color: #181C32;
}

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

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

h3, .h3 {
  font-size: calc(1.26rem + 0.12vw);
}
@media (min-width: 1200px) {
  h3, .h3 {
    font-size: 1.35rem;
  }
}

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

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

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

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

abbr[title],
abbr[data-bs-original-title] {
  text-decoration: underline dotted;
  cursor: help;
  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: 500;
}

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

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: 600;
}

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: #009EF7;
  text-decoration: none;
}
a:hover {
  color: #006dab;
  text-decoration: underline;
}

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: #b93993;
  word-wrap: break-word;
}
a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #ffffff;
  background-color: #181C32;
  border-radius: 0.325rem;
}
kbd kbd {
  padding: 0;
  font-size: 1em;
  font-weight: 500;
}

figure {
  margin: 0 0 1rem;
}

img,
svg {
  vertical-align: middle;
}

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

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #A1A5B7;
  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;
}

::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.25rem;
  font-weight: 300;
}

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

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 600;
  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: 600;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-3 {
    font-size: 4rem;
  }
}

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 600;
  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: 600;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-5 {
    font-size: 3rem;
  }
}

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 600;
  line-height: 1.2;
}
@media (min-width: 1200px) {
  .display-6 {
    font-size: 2.5rem;
  }
}

.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: 1rem;
  font-size: 1.25rem;
}
.blockquote > :last-child {
  margin-bottom: 0;
}

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

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #ffffff;
  border: 1px solid #E4E6EF;
  border-radius: 0.475rem;
  box-shadow: 0 0.1rem 1rem 0.25rem rgba(0, 0, 0, 0.05);
  max-width: 100%;
  height: auto;
}

.figure {
  display: inline-block;
}

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

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

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

@media (min-width: 576px) {
  .container-sm, .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container-md, .container-sm, .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .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: 1140px;
  }
}
@media (min-width: 1400px) {
  .container-xxl, .container-xl, .container-lg, .container-md, .container-sm, .container {
    max-width: 1320px;
  }
}
.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  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 > * {
  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 {
  flex: 1 0 0%;
}

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

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

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

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

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

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

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

.col-auto {
  flex: 0 0 auto;
  width: auto;
}

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

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

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

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

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

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

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

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

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

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

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

.col-12 {
  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: 0rem;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .col-sm-12 {
    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: 0rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-sm-10,
.gy-sm-10 {
    --bs-gutter-y: 2.5rem;
  }
}
@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .col-md-12 {
    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: 0rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-md-10,
.gy-md-10 {
    --bs-gutter-y: 2.5rem;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .col-lg-12 {
    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: 0rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-lg-10,
.gy-lg-10 {
    --bs-gutter-y: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .col-xl-12 {
    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: 0rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-xl-10,
.gy-xl-10 {
    --bs-gutter-y: 2.5rem;
  }
}
@media (min-width: 1400px) {
  .col-xxl {
    flex: 1 0 0%;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .col-xxl-12 {
    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: 0rem;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  .g-xxl-10,
.gy-xxl-10 {
    --bs-gutter-y: 2.5rem;
  }
}
.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #181C32;
  --bs-table-striped-bg: rgba(245, 248, 250, 0.75);
  --bs-table-active-color: #181C32;
  --bs-table-active-bg: #F5F8FA;
  --bs-table-hover-color: #181C32;
  --bs-table-hover-bg: #F5F8FA;
  width: 100%;
  margin-bottom: 1rem;
  color: #181C32;
  vertical-align: top;
  border-color: #EFF2F5;
}
.table > :not(caption) > * > * {
  padding: 0.75rem 0.75rem;
  background-color: var(--bs-table-bg);
  border-bottom-width: 1px;
  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.5rem 0.5rem;
}

.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: #ccecfd;
  --bs-table-striped-bg: #c2e0f0;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #b8d4e4;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #bddaea;
  --bs-table-hover-color: #000000;
  color: #000000;
  border-color: #b8d4e4;
}

.table-secondary {
  --bs-table-bg: #fafafc;
  --bs-table-striped-bg: #eeeeef;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #e1e1e3;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #e7e7e9;
  --bs-table-hover-color: #000000;
  color: #000000;
  border-color: #e1e1e3;
}

.table-success {
  --bs-table-bg: #dcf5e7;
  --bs-table-striped-bg: #d1e9db;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #c6ddd0;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #cce3d6;
  --bs-table-hover-color: #000000;
  color: #000000;
  border-color: #c6ddd0;
}

.table-info {
  --bs-table-bg: #e3d7fb;
  --bs-table-striped-bg: #d8ccee;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #ccc2e2;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #d2c7e8;
  --bs-table-hover-color: #000000;
  color: #000000;
  border-color: #ccc2e2;
}

.table-warning {
  --bs-table-bg: #fff4cc;
  --bs-table-striped-bg: #f2e8c2;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #e6dcb8;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #ece2bd;
  --bs-table-hover-color: #000000;
  color: #000000;
  border-color: #e6dcb8;
}

.table-danger {
  --bs-table-bg: #fcd9e2;
  --bs-table-striped-bg: #efced7;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #e3c3cb;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #e9c9d1;
  --bs-table-hover-color: #000000;
  color: #000000;
  border-color: #e3c3cb;
}

.table-light {
  --bs-table-bg: #F5F8FA;
  --bs-table-striped-bg: #e9ecee;
  --bs-table-striped-color: #000000;
  --bs-table-active-bg: #dddfe1;
  --bs-table-active-color: #000000;
  --bs-table-hover-bg: #e3e5e7;
  --bs-table-hover-color: #000000;
  color: #000000;
  border-color: #dddfe1;
}

.table-dark {
  --bs-table-bg: #181C32;
  --bs-table-striped-bg: #24273c;
  --bs-table-striped-color: #ffffff;
  --bs-table-active-bg: #2f3347;
  --bs-table-active-color: #ffffff;
  --bs-table-hover-bg: #292d41;
  --bs-table-hover-color: #ffffff;
  color: #ffffff;
  border-color: #2f3347;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 991.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;
  font-size: 1.05rem;
  font-weight: 500;
  color: #3F4254;
}

.col-form-label {
  padding-top: calc(0.75rem + 1px);
  padding-bottom: calc(0.75rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  font-weight: 500;
  line-height: 1.5;
  color: #3F4254;
}

.col-form-label-lg {
  padding-top: calc(0.825rem + 1px);
  padding-bottom: calc(0.825rem + 1px);
  font-size: 1.15rem;
}

.col-form-label-sm {
  padding-top: calc(0.55rem + 1px);
  padding-bottom: calc(0.55rem + 1px);
  font-size: 0.925rem;
}

.form-text {
  margin-top: 0.5rem;
  font-size: 0.925rem;
  color: #A1A5B7;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #5E6278;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #E4E6EF;
  appearance: none;
  border-radius: 0.475rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-control {
    transition: none;
  }
}
.form-control[type=file] {
  overflow: hidden;
}
.form-control[type=file]:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control:focus {
  color: #5E6278;
  background-color: #ffffff;
  border-color: #B5B5C3;
  outline: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(0, 158, 247, 0.25);
}
.form-control::-webkit-date-and-time-value {
  height: 1.5em;
}
.form-control::placeholder {
  color: #A1A5B7;
  opacity: 1;
}
.form-control:disabled, .form-control[readonly] {
  background-color: #EFF2F5;
  opacity: 1;
}
.form-control::file-selector-button {
  padding: 0.75rem 1rem;
  margin: -0.75rem -1rem;
  margin-inline-end: 1rem;
  color: #5E6278;
  background-color: #F5F8FA;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::file-selector-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::file-selector-button {
  background-color: #e9ecee;
}
.form-control::-webkit-file-upload-button {
  padding: 0.75rem 1rem;
  margin: -0.75rem -1rem;
  margin-inline-end: 1rem;
  color: #5E6278;
  background-color: #F5F8FA;
  pointer-events: none;
  border-color: inherit;
  border-style: solid;
  border-width: 0;
  border-inline-end-width: 1px;
  border-radius: 0;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .form-control::-webkit-file-upload-button {
    transition: none;
  }
}
.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
  background-color: #e9ecee;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.75rem 0;
  margin-bottom: 0;
  line-height: 1.5;
  color: #5E6278;
  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 + 1.1rem + 2px);
  padding: 0.55rem 0.75rem;
  font-size: 0.925rem;
  border-radius: 0.325rem;
}
.form-control-sm::file-selector-button {
  padding: 0.55rem 0.75rem;
  margin: -0.55rem -0.75rem;
  margin-inline-end: 0.75rem;
}
.form-control-sm::-webkit-file-upload-button {
  padding: 0.55rem 0.75rem;
  margin: -0.55rem -0.75rem;
  margin-inline-end: 0.75rem;
}

.form-control-lg {
  min-height: calc(1.5em + 1.65rem + 2px);
  padding: 0.825rem 1.5rem;
  font-size: 1.15rem;
  border-radius: 0.625rem;
}
.form-control-lg::file-selector-button {
  padding: 0.825rem 1.5rem;
  margin: -0.825rem -1.5rem;
  margin-inline-end: 1.5rem;
}
.form-control-lg::-webkit-file-upload-button {
  padding: 0.825rem 1.5rem;
  margin: -0.825rem -1.5rem;
  margin-inline-end: 1.5rem;
}

textarea.form-control {
  min-height: calc(1.5em + 1.5rem + 2px);
}
textarea.form-control-sm {
  min-height: calc(1.5em + 1.1rem + 2px);
}
textarea.form-control-lg {
  min-height: calc(1.5em + 1.65rem + 2px);
}

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.75rem;
}
.form-control-color:not(:disabled):not([readonly]) {
  cursor: pointer;
}
.form-control-color::-moz-color-swatch {
  height: 1.5em;
  border-radius: 0.475rem;
}
.form-control-color::-webkit-color-swatch {
  height: 1.5em;
  border-radius: 0.475rem;
}

.form-select {
  display: block;
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1rem;
  -moz-padding-start: calc(1rem - 3px);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #5E6278;
  background-color: #ffffff;
  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='%237E8299' 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 1rem center;
  background-size: 16px 12px;
  border: 1px solid #E4E6EF;
  border-radius: 0.475rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-select {
    transition: none;
  }
}
.form-select:focus {
  border-color: #B5B5C3;
  outline: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(0, 158, 247, 0.25);
}
.form-select[multiple], .form-select[size]:not([size="1"]) {
  padding-right: 1rem;
  background-image: none;
}
.form-select:disabled {
  background-color: #EFF2F5;
}
.form-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #5E6278;
}

.form-select-sm {
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  padding-left: 0.75rem;
  font-size: 0.925rem;
  border-radius: 0.325rem;
}

.form-select-lg {
  padding-top: 0.825rem;
  padding-bottom: 0.825rem;
  padding-left: 1.5rem;
  font-size: 1.15rem;
  border-radius: 0.625rem;
}

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 2.25rem;
  margin-bottom: 0.125rem;
}
.form-check .form-check-input {
  float: left;
  margin-left: -2.25rem;
}

.form-check-input {
  width: 1.75rem;
  height: 1.75rem;
  margin-top: -0.125rem;
  vertical-align: top;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  color-adjust: exact;
  transition: background-color 0.15s ease-in-out, background-position 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-check-input {
    transition: none;
  }
}
.form-check-input[type=checkbox] {
  border-radius: 0.45em;
}
.form-check-input[type=radio] {
  border-radius: 50%;
}
.form-check-input:active {
  filter: brightness(90%);
}
.form-check-input:focus {
  border-color: #B5B5C3;
  outline: 0;
  box-shadow: none;
}
.form-check-input:checked {
  background-color: #009EF7;
  border-color: #009EF7;
}
.form-check-input:checked[type=checkbox] {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 13 11' width='13' height='11' fill='none'%3e%3cpath d='M11.0426 1.02893C11.3258 0.695792 11.8254 0.655283 12.1585 0.938451C12.4917 1.22162 12.5322 1.72124 12.249 2.05437L5.51985 9.97104C5.23224 10.3094 4.72261 10.3451 4.3907 10.05L0.828197 6.88335C0.50141 6.59288 0.471975 6.09249 0.762452 5.7657C1.05293 5.43891 1.55332 5.40948 1.88011 5.69995L4.83765 8.32889L11.0426 1.02893Z' fill='%23FFFFFF'/%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='%23FFFFFF'/%3e%3c/svg%3e");
}
.form-check-input[type=checkbox]:indeterminate {
  background-color: #009EF7;
  border-color: #009EF7;
  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='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e");
}
.form-check-input:disabled {
  pointer-events: 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: 3.75rem;
}
.form-switch .form-check-input {
  width: 3.25rem;
  margin-left: -3.75rem;
  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%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
  background-position: left center;
  border-radius: 3.25rem;
  transition: background-position 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-switch .form-check-input {
    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='%23B5B5C3'/%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='%23FFFFFF'/%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;
  filter: none;
  opacity: 0.6;
}

.form-range {
  width: 100%;
  height: 1.5rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.form-range:focus {
  outline: 0;
}
.form-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.25rem rgba(0, 158, 247, 0.25);
}
.form-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #ffffff, 0 0 0 0.25rem rgba(0, 158, 247, 0.25);
}
.form-range::-moz-focus-outer {
  border: 0;
}
.form-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #009EF7;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-webkit-slider-thumb {
    transition: none;
  }
}
.form-range::-webkit-slider-thumb:active {
  background-color: #b3e2fd;
}
.form-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #E4E6EF;
  border-color: transparent;
  border-radius: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
}
.form-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #009EF7;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .form-range::-moz-range-thumb {
    transition: none;
  }
}
.form-range::-moz-range-thumb:active {
  background-color: #b3e2fd;
}
.form-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #E4E6EF;
  border-color: transparent;
  border-radius: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
}
.form-range:disabled {
  pointer-events: none;
}
.form-range:disabled::-webkit-slider-thumb {
  background-color: #A1A5B7;
}
.form-range:disabled::-moz-range-thumb {
  background-color: #A1A5B7;
}

.form-floating {
  position: relative;
}
.form-floating > .form-control,
.form-floating > .form-select {
  height: add(3.75rem, 2px);
  line-height: 1.25;
}
.form-floating > label {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  padding: 1rem 1rem;
  pointer-events: none;
  border: 1px solid transparent;
  transform-origin: 0 0;
  transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .form-floating > label {
    transition: none;
  }
}
.form-floating > .form-control {
  padding: 1rem 1rem;
}
.form-floating > .form-control::placeholder {
  color: transparent;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown) {
  padding-top: 2.15rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:-webkit-autofill {
  padding-top: 2.15rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-select {
  padding-top: 2.15rem;
  padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-control:-webkit-autofill ~ label {
  opacity: 0.65;
  transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.input-group > .form-control,
.input-group > .form-select {
  position: relative;
  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: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #3F4254;
  text-align: center;
  white-space: nowrap;
  background-color: #F5F8FA;
  border: 1px solid #E4E6EF;
  border-radius: 0.475rem;
}

.input-group-lg > .form-control,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn {
  padding: 0.825rem 1.5rem;
  font-size: 1.15rem;
  border-radius: 0.625rem;
}

.input-group-sm > .form-control,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn {
  padding: 0.55rem 0.75rem;
  font-size: 0.925rem;
  border-radius: 0.325rem;
}

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 4rem;
}

.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.5rem;
  font-size: 0.925rem;
  color: #50CD89;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.75rem 1rem;
  margin-top: 0.1rem;
  font-size: 0.925rem;
  color: #000000;
  background-color: #50cd89;
  border-radius: 0.475rem;
}

.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: #50CD89;
  padding-right: calc(1.5em + 1.5rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2350CD89' 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 calc(0.375em + 0.375rem) center;
  background-size: calc(0.75em + 0.75rem) calc(0.75em + 0.75rem);
}
.was-validated .form-control:valid:focus, .form-control.is-valid:focus {
  border-color: #50CD89;
  box-shadow: 0 0 0 0.25rem rgba(80, 205, 137, 0.25);
}

.was-validated textarea.form-control:valid, textarea.form-control.is-valid {
  padding-right: calc(1.5em + 1.5rem);
  background-position: top calc(0.375em + 0.375rem) right calc(0.375em + 0.375rem);
}

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #50CD89;
}
.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: 5.5rem;
  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='%237E8299' 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='%2350CD89' 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 1rem center, center right 3rem;
  background-size: 16px 12px, calc(0.75em + 0.75rem) calc(0.75em + 0.75rem);
}
.was-validated .form-select:valid:focus, .form-select.is-valid:focus {
  border-color: #50CD89;
  box-shadow: 0 0 0 0.25rem rgba(80, 205, 137, 0.25);
}

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #50CD89;
}
.was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
  background-color: #50CD89;
}
.was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
  box-shadow: 0 0 0 0.25rem rgba(80, 205, 137, 0.25);
}
.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #50CD89;
}

.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.5rem;
  font-size: 0.925rem;
  color: #F1416C;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.75rem 1rem;
  margin-top: 0.1rem;
  font-size: 0.925rem;
  color: #000000;
  background-color: #f1416c;
  border-radius: 0.475rem;
}

.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: #F1416C;
  padding-right: calc(1.5em + 1.5rem);
  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='%23F1416C'%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='%23F1416C' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.375rem) center;
  background-size: calc(0.75em + 0.75rem) calc(0.75em + 0.75rem);
}
.was-validated .form-control:invalid:focus, .form-control.is-invalid:focus {
  border-color: #F1416C;
  box-shadow: 0 0 0 0.25rem rgba(241, 65, 108, 0.25);
}

.was-validated textarea.form-control:invalid, textarea.form-control.is-invalid {
  padding-right: calc(1.5em + 1.5rem);
  background-position: top calc(0.375em + 0.375rem) right calc(0.375em + 0.375rem);
}

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #F1416C;
}
.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: 5.5rem;
  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='%237E8299' 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='%23F1416C'%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='%23F1416C' stroke='none'/%3e%3c/svg%3e");
  background-position: right 1rem center, center right 3rem;
  background-size: 16px 12px, calc(0.75em + 0.75rem) calc(0.75em + 0.75rem);
}
.was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
  border-color: #F1416C;
  box-shadow: 0 0 0 0.25rem rgba(241, 65, 108, 0.25);
}

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #F1416C;
}
.was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
  background-color: #F1416C;
}
.was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
  box-shadow: 0 0 0 0.25rem rgba(241, 65, 108, 0.25);
}
.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #F1416C;
}

.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-weight: 500;
  line-height: 1.5;
  color: #181C32;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.75rem 1.5rem;
  font-size: 1.1rem;
  border-radius: 0.475rem;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .btn {
    transition: none;
  }
}
.btn:hover {
  color: #181C32;
  text-decoration: none;
}
.btn-check:focus + .btn, .btn:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 158, 247, 0.25);
}
.btn-check:checked + .btn, .btn-check:active + .btn, .btn:active, .btn.active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-check:checked + .btn:focus, .btn-check:active + .btn:focus, .btn:active:focus, .btn.active:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 158, 247, 0.25), inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn:disabled, .btn.disabled, fieldset:disabled .btn {
  pointer-events: none;
  opacity: 0.6;
  box-shadow: none;
}

.btn-white {
  color: #000000;
  background-color: #ffffff;
  border-color: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-white:hover {
  color: #000000;
  background-color: white;
  border-color: white;
}
.btn-check:focus + .btn-white, .btn-white:focus {
  color: #000000;
  background-color: white;
  border-color: white;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(217, 217, 217, 0.5);
}
.btn-check:checked + .btn-white, .btn-check:active + .btn-white, .btn-white:active, .btn-white.active, .show > .btn-white.dropdown-toggle {
  color: #000000;
  background-color: white;
  border-color: white;
}
.btn-check:checked + .btn-white:focus, .btn-check:active + .btn-white:focus, .btn-white:active:focus, .btn-white.active:focus, .show > .btn-white.dropdown-toggle:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(217, 217, 217, 0.5);
}
.btn-white:disabled, .btn-white.disabled {
  color: #000000;
  background-color: #ffffff;
  border-color: #ffffff;
}

.btn-light {
  color: #000000;
  background-color: #F5F8FA;
  border-color: #F5F8FA;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-light:hover {
  color: #000000;
  background-color: #f7f9fb;
  border-color: #f6f9fb;
}
.btn-check:focus + .btn-light, .btn-light:focus {
  color: #000000;
  background-color: #f7f9fb;
  border-color: #f6f9fb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(208, 211, 213, 0.5);
}
.btn-check:checked + .btn-light, .btn-check:active + .btn-light, .btn-light:active, .btn-light.active, .show > .btn-light.dropdown-toggle {
  color: #000000;
  background-color: #f7f9fb;
  border-color: #f6f9fb;
}
.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 {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(208, 211, 213, 0.5);
}
.btn-light:disabled, .btn-light.disabled {
  color: #000000;
  background-color: #F5F8FA;
  border-color: #F5F8FA;
}

.btn-primary {
  color: #000000;
  background-color: #009EF7;
  border-color: #009EF7;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-primary:hover {
  color: #000000;
  background-color: #26adf8;
  border-color: #1aa8f8;
}
.btn-check:focus + .btn-primary, .btn-primary:focus {
  color: #000000;
  background-color: #26adf8;
  border-color: #1aa8f8;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(0, 134, 210, 0.5);
}
.btn-check:checked + .btn-primary, .btn-check:active + .btn-primary, .btn-primary:active, .btn-primary.active, .show > .btn-primary.dropdown-toggle {
  color: #000000;
  background-color: #33b1f9;
  border-color: #1aa8f8;
}
.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 {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(0, 134, 210, 0.5);
}
.btn-primary:disabled, .btn-primary.disabled {
  color: #000000;
  background-color: #009EF7;
  border-color: #009EF7;
}

.btn-secondary {
  color: #000000;
  background-color: #E4E6EF;
  border-color: #E4E6EF;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-secondary:hover {
  color: #000000;
  background-color: #e8eaf1;
  border-color: #e7e9f1;
}
.btn-check:focus + .btn-secondary, .btn-secondary:focus {
  color: #000000;
  background-color: #e8eaf1;
  border-color: #e7e9f1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(194, 196, 203, 0.5);
}
.btn-check:checked + .btn-secondary, .btn-check:active + .btn-secondary, .btn-secondary:active, .btn-secondary.active, .show > .btn-secondary.dropdown-toggle {
  color: #000000;
  background-color: #e9ebf2;
  border-color: #e7e9f1;
}
.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 {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(194, 196, 203, 0.5);
}
.btn-secondary:disabled, .btn-secondary.disabled {
  color: #000000;
  background-color: #E4E6EF;
  border-color: #E4E6EF;
}

.btn-success {
  color: #000000;
  background-color: #50CD89;
  border-color: #50CD89;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-success:hover {
  color: #000000;
  background-color: #6ad59b;
  border-color: #62d295;
}
.btn-check:focus + .btn-success, .btn-success:focus {
  color: #000000;
  background-color: #6ad59b;
  border-color: #62d295;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(68, 174, 116, 0.5);
}
.btn-check:checked + .btn-success, .btn-check:active + .btn-success, .btn-success:active, .btn-success.active, .show > .btn-success.dropdown-toggle {
  color: #000000;
  background-color: #73d7a1;
  border-color: #62d295;
}
.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 {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(68, 174, 116, 0.5);
}
.btn-success:disabled, .btn-success.disabled {
  color: #000000;
  background-color: #50CD89;
  border-color: #50CD89;
}

.btn-info {
  color: #ffffff;
  background-color: #7239EA;
  border-color: #7239EA;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-info:hover {
  color: #ffffff;
  background-color: #6130c7;
  border-color: #5b2ebb;
}
.btn-check:focus + .btn-info, .btn-info:focus {
  color: #ffffff;
  background-color: #6130c7;
  border-color: #5b2ebb;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(135, 87, 237, 0.5);
}
.btn-check:checked + .btn-info, .btn-check:active + .btn-info, .btn-info:active, .btn-info.active, .show > .btn-info.dropdown-toggle {
  color: #ffffff;
  background-color: #5b2ebb;
  border-color: #562bb0;
}
.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 {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(135, 87, 237, 0.5);
}
.btn-info:disabled, .btn-info.disabled {
  color: #ffffff;
  background-color: #7239EA;
  border-color: #7239EA;
}

.btn-warning {
  color: #000000;
  background-color: #FFC700;
  border-color: #FFC700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-warning:hover {
  color: #000000;
  background-color: #ffcf26;
  border-color: #ffcd1a;
}
.btn-check:focus + .btn-warning, .btn-warning:focus {
  color: #000000;
  background-color: #ffcf26;
  border-color: #ffcd1a;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(217, 169, 0, 0.5);
}
.btn-check:checked + .btn-warning, .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active, .show > .btn-warning.dropdown-toggle {
  color: #000000;
  background-color: #ffd233;
  border-color: #ffcd1a;
}
.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 {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(217, 169, 0, 0.5);
}
.btn-warning:disabled, .btn-warning.disabled {
  color: #000000;
  background-color: #FFC700;
  border-color: #FFC700;
}

.btn-danger {
  color: #000000;
  background-color: #F1416C;
  border-color: #F1416C;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-danger:hover {
  color: #000000;
  background-color: #f35e82;
  border-color: #f2547b;
}
.btn-check:focus + .btn-danger, .btn-danger:focus {
  color: #000000;
  background-color: #f35e82;
  border-color: #f2547b;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(205, 55, 92, 0.5);
}
.btn-check:checked + .btn-danger, .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active, .show > .btn-danger.dropdown-toggle {
  color: #000000;
  background-color: #f46789;
  border-color: #f2547b;
}
.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 {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(205, 55, 92, 0.5);
}
.btn-danger:disabled, .btn-danger.disabled {
  color: #000000;
  background-color: #F1416C;
  border-color: #F1416C;
}

.btn-dark {
  color: #ffffff;
  background-color: #181C32;
  border-color: #181C32;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075);
}
.btn-dark:hover {
  color: #ffffff;
  background-color: #14182b;
  border-color: #131628;
}
.btn-check:focus + .btn-dark, .btn-dark:focus {
  color: #ffffff;
  background-color: #14182b;
  border-color: #131628;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 0 0.25rem rgba(59, 62, 81, 0.5);
}
.btn-check:checked + .btn-dark, .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active, .show > .btn-dark.dropdown-toggle {
  color: #ffffff;
  background-color: #131628;
  border-color: #121526;
}
.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 {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(59, 62, 81, 0.5);
}
.btn-dark:disabled, .btn-dark.disabled {
  color: #ffffff;
  background-color: #181C32;
  border-color: #181C32;
}

.btn-outline-white {
  color: #ffffff;
  border-color: #ffffff;
}
.btn-outline-white:hover {
  color: #000000;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-check:focus + .btn-outline-white, .btn-outline-white:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}
.btn-check:checked + .btn-outline-white, .btn-check:active + .btn-outline-white, .btn-outline-white:active, .btn-outline-white.active, .btn-outline-white.dropdown-toggle.show {
  color: #000000;
  background-color: #ffffff;
  border-color: #ffffff;
}
.btn-check:checked + .btn-outline-white:focus, .btn-check:active + .btn-outline-white:focus, .btn-outline-white:active:focus, .btn-outline-white.active:focus, .btn-outline-white.dropdown-toggle.show:focus {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(255, 255, 255, 0.5);
}
.btn-outline-white:disabled, .btn-outline-white.disabled {
  color: #ffffff;
  background-color: transparent;
}

.btn-outline-light {
  color: #F5F8FA;
  border-color: #F5F8FA;
}
.btn-outline-light:hover {
  color: #000000;
  background-color: #F5F8FA;
  border-color: #F5F8FA;
}
.btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
  box-shadow: 0 0 0 0.25rem rgba(245, 248, 250, 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: #000000;
  background-color: #F5F8FA;
  border-color: #F5F8FA;
}
.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 {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(245, 248, 250, 0.5);
}
.btn-outline-light:disabled, .btn-outline-light.disabled {
  color: #F5F8FA;
  background-color: transparent;
}

.btn-outline-primary {
  color: #009EF7;
  border-color: #009EF7;
}
.btn-outline-primary:hover {
  color: #000000;
  background-color: #009EF7;
  border-color: #009EF7;
}
.btn-check:focus + .btn-outline-primary, .btn-outline-primary:focus {
  box-shadow: 0 0 0 0.25rem rgba(0, 158, 247, 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: #000000;
  background-color: #009EF7;
  border-color: #009EF7;
}
.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 {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(0, 158, 247, 0.5);
}
.btn-outline-primary:disabled, .btn-outline-primary.disabled {
  color: #009EF7;
  background-color: transparent;
}

.btn-outline-secondary {
  color: #E4E6EF;
  border-color: #E4E6EF;
}
.btn-outline-secondary:hover {
  color: #000000;
  background-color: #E4E6EF;
  border-color: #E4E6EF;
}
.btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
  box-shadow: 0 0 0 0.25rem rgba(228, 230, 239, 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: #000000;
  background-color: #E4E6EF;
  border-color: #E4E6EF;
}
.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 {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(228, 230, 239, 0.5);
}
.btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
  color: #E4E6EF;
  background-color: transparent;
}

.btn-outline-success {
  color: #50CD89;
  border-color: #50CD89;
}
.btn-outline-success:hover {
  color: #000000;
  background-color: #50CD89;
  border-color: #50CD89;
}
.btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
  box-shadow: 0 0 0 0.25rem rgba(80, 205, 137, 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: #000000;
  background-color: #50CD89;
  border-color: #50CD89;
}
.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 {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(80, 205, 137, 0.5);
}
.btn-outline-success:disabled, .btn-outline-success.disabled {
  color: #50CD89;
  background-color: transparent;
}

.btn-outline-info {
  color: #7239EA;
  border-color: #7239EA;
}
.btn-outline-info:hover {
  color: #ffffff;
  background-color: #7239EA;
  border-color: #7239EA;
}
.btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
  box-shadow: 0 0 0 0.25rem rgba(114, 57, 234, 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: #ffffff;
  background-color: #7239EA;
  border-color: #7239EA;
}
.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 {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(114, 57, 234, 0.5);
}
.btn-outline-info:disabled, .btn-outline-info.disabled {
  color: #7239EA;
  background-color: transparent;
}

.btn-outline-warning {
  color: #FFC700;
  border-color: #FFC700;
}
.btn-outline-warning:hover {
  color: #000000;
  background-color: #FFC700;
  border-color: #FFC700;
}
.btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
  box-shadow: 0 0 0 0.25rem rgba(255, 199, 0, 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: #000000;
  background-color: #FFC700;
  border-color: #FFC700;
}
.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 {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(255, 199, 0, 0.5);
}
.btn-outline-warning:disabled, .btn-outline-warning.disabled {
  color: #FFC700;
  background-color: transparent;
}

.btn-outline-danger {
  color: #F1416C;
  border-color: #F1416C;
}
.btn-outline-danger:hover {
  color: #000000;
  background-color: #F1416C;
  border-color: #F1416C;
}
.btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
  box-shadow: 0 0 0 0.25rem rgba(241, 65, 108, 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: #000000;
  background-color: #F1416C;
  border-color: #F1416C;
}
.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 {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(241, 65, 108, 0.5);
}
.btn-outline-danger:disabled, .btn-outline-danger.disabled {
  color: #F1416C;
  background-color: transparent;
}

.btn-outline-dark {
  color: #181C32;
  border-color: #181C32;
}
.btn-outline-dark:hover {
  color: #ffffff;
  background-color: #181C32;
  border-color: #181C32;
}
.btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
  box-shadow: 0 0 0 0.25rem rgba(24, 28, 50, 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: #ffffff;
  background-color: #181C32;
  border-color: #181C32;
}
.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 {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125), 0 0 0 0.25rem rgba(24, 28, 50, 0.5);
}
.btn-outline-dark:disabled, .btn-outline-dark.disabled {
  color: #181C32;
  background-color: transparent;
}

.btn-link {
  font-weight: 400;
  color: #009EF7;
  text-decoration: none;
}
.btn-link:hover {
  color: #006dab;
  text-decoration: underline;
}
.btn-link:focus {
  text-decoration: underline;
}
.btn-link:disabled, .btn-link.disabled {
  color: #7E8299;
}

.btn-lg, .btn-group-lg > .btn {
  padding: 0.825rem 1.75rem;
  font-size: 1.15rem;
  border-radius: 0.625rem;
}

.btn-sm, .btn-group-sm > .btn {
  padding: 0.55rem 1.25rem;
  font-size: 0.925rem;
  border-radius: 0.325rem;
}

.fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .fade {
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing {
    transition: none;
  }
}
.collapsing.collapse-horizontal {
  width: 0;
  height: auto;
  transition: width 0.35s ease;
}
@media (prefers-reduced-motion: reduce) {
  .collapsing.collapse-horizontal {
    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: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 1rem;
  color: #181C32;
  text-align: left;
  list-style: none;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.15);
  border-radius: 0.475rem;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
}
.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: 576px) {
  .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: 768px) {
  .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: 992px) {
  .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: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15);
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #181C32;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}
.dropdown-item:hover, .dropdown-item:focus {
  color: #16192d;
  text-decoration: none;
  background-color: #EFF2F5;
}
.dropdown-item.active, .dropdown-item:active {
  color: #FFFFFF;
  text-decoration: none;
  background-color: #009EF7;
}
.dropdown-item.disabled, .dropdown-item:disabled {
  color: #A1A5B7;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.925rem;
  color: #7E8299;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #181C32;
}

.dropdown-menu-dark {
  color: #E4E6EF;
  background-color: #3F4254;
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item {
  color: #E4E6EF;
}
.dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
}
.dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
  color: #FFFFFF;
  background-color: #009EF7;
}
.dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
  color: #A1A5B7;
}
.dropdown-menu-dark .dropdown-divider {
  border-color: rgba(0, 0, 0, 0.15);
}
.dropdown-menu-dark .dropdown-item-text {
  color: #E4E6EF;
}
.dropdown-menu-dark .dropdown-header {
  color: #A1A5B7;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  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: flex;
  flex-wrap: wrap;
  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: -1px;
}
.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: 1.125rem;
  padding-left: 1.125rem;
}
.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: 0.9375rem;
  padding-left: 0.9375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split {
  padding-right: 1.3125rem;
  padding-left: 1.3125rem;
}

.btn-group.show .dropdown-toggle {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.show .dropdown-toggle.btn-link {
  box-shadow: none;
}

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  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: -1px;
}
.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: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #009EF7;
  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 {
    transition: none;
  }
}
.nav-link:hover, .nav-link:focus {
  color: #006dab;
  text-decoration: none;
}
.nav-link.disabled {
  color: #7E8299;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #EFF2F5;
}
.nav-tabs .nav-link {
  margin-bottom: -1px;
  background: none;
  border: 1px solid transparent;
  border-top-left-radius: 0.475rem;
  border-top-right-radius: 0.475rem;
}
.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  border-color: #EFF2F5 #EFF2F5 #EFF2F5;
  isolation: isolate;
}
.nav-tabs .nav-link.disabled {
  color: #7E8299;
  background-color: transparent;
  border-color: transparent;
}
.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #5E6278;
  background-color: #ffffff;
  border-color: #E4E6EF #E4E6EF #ffffff;
}
.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.475rem;
}
.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #FFFFFF;
  background-color: #009EF7;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  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: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-sm,
.navbar > .container-md,
.navbar > .container-lg,
.navbar > .container-xl,
.navbar > .container-xxl {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
.navbar-brand {
  padding-top: 0.44375rem;
  padding-bottom: 0.44375rem;
  margin-right: 1rem;
  font-size: 1.075rem;
  white-space: nowrap;
}
.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: flex;
  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.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.075rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.475rem;
  transition: box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-toggler {
    transition: none;
  }
}
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler:focus {
  text-decoration: none;
  outline: 0;
  box-shadow: 0 0 0 0.25rem;
}

.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: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    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: flex !important;
    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;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: 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: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    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: flex !important;
    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;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: 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: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    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: flex !important;
    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;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: 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: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1200px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    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: flex !important;
    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;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: 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: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
@media (min-width: 1400px) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    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: flex !important;
    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;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: 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: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible;
  }
}
.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start;
}
.navbar-expand .navbar-nav {
  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: flex !important;
  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;
  flex-grow: 1;
  visibility: visible !important;
  background-color: transparent;
  border-right: 0;
  border-left: 0;
  transition: none;
  transform: none;
}
.navbar-expand .offcanvas-top,
.navbar-expand .offcanvas-bottom {
  height: auto;
  border-top: 0;
  border-bottom: 0;
}
.navbar-expand .offcanvas-body {
  display: flex;
  flex-grow: 0;
  padding: 0;
  overflow-y: visible;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55);
}
.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}
.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}
.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 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%280, 0, 0, 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(0, 0, 0, 0.55);
}
.navbar-light .navbar-text a,
.navbar-light .navbar-text a:hover,
.navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #ffffff;
}
.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #ffffff;
}
.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: #ffffff;
}
.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: #ffffff;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: border-box;
  border: 1px solid #EFF2F5;
  border-radius: 0.625rem;
  box-shadow: 0px 0px 20px 0px rgba(76, 87, 125, 0.02);
}
.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: calc(0.625rem - 1px);
  border-top-right-radius: calc(0.625rem - 1px);
}
.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.625rem - 1px);
  border-bottom-left-radius: calc(0.625rem - 1px);
}
.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem;
}

.card-title {
  margin-bottom: 0.5rem;
}

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}
.card-link + .card-link {
  margin-left: 1rem;
}

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: #ffffff;
  border-bottom: 1px solid #EFF2F5;
}
.card-header:first-child {
  border-radius: calc(0.625rem - 1px) calc(0.625rem - 1px) 0 0;
}

.card-footer {
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  border-top: 1px solid #EFF2F5;
}
.card-footer:last-child {
  border-radius: 0 0 calc(0.625rem - 1px) calc(0.625rem - 1px);
}

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.625rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.625rem - 1px);
  border-top-right-radius: calc(0.625rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.625rem - 1px);
  border-bottom-left-radius: calc(0.625rem - 1px);
}

.card-group > .card {
  margin-bottom: 0.75rem;
}
@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .card-group > .card {
    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: flex;
  align-items: center;
  width: 100%;
  padding: 1.5rem 1.5rem;
  font-size: 1rem;
  color: #181C32;
  text-align: left;
  background-color: #ffffff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  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, border-radius 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button {
    transition: none;
  }
}
.accordion-button:not(.collapsed) {
  color: #009EF7;
  background-color: #F5F8FA;
  box-shadow: inset 0 -1px 0 #EFF2F5;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(-180deg);
}
.accordion-button::after {
  flex-shrink: 0;
  width: 1.15rem;
  height: 1.15rem;
  margin-left: auto;
  content: "";
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23181C32'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-size: 1.15rem;
  transition: transform 0.2s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .accordion-button::after {
    transition: none;
  }
}
.accordion-button:hover {
  z-index: 2;
}
.accordion-button:focus {
  z-index: 3;
  border-color: #EFF2F5;
  outline: 0;
  box-shadow: none;
}

.accordion-header {
  margin-bottom: 0;
}

.accordion-item {
  background-color: #ffffff;
  border: 1px solid #EFF2F5;
}
.accordion-item:first-of-type {
  border-top-left-radius: 0.475rem;
  border-top-right-radius: 0.475rem;
}
.accordion-item:first-of-type .accordion-button {
  border-top-left-radius: calc(0.475rem - 1px);
  border-top-right-radius: calc(0.475rem - 1px);
}
.accordion-item:not(:first-of-type) {
  border-top: 0;
}
.accordion-item:last-of-type {
  border-bottom-right-radius: 0.475rem;
  border-bottom-left-radius: 0.475rem;
}
.accordion-item:last-of-type .accordion-button.collapsed {
  border-bottom-right-radius: calc(0.475rem - 1px);
  border-bottom-left-radius: calc(0.475rem - 1px);
}
.accordion-item:last-of-type .accordion-collapse {
  border-bottom-right-radius: 0.475rem;
  border-bottom-left-radius: 0.475rem;
}

.accordion-body {
  padding: 1.5rem 1.5rem;
}

.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: flex;
  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: #7E8299;
  content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */;
}
.breadcrumb-item.active {
  color: #009EF7;
}

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none;
}

.page-link {
  position: relative;
  display: block;
  color: #5E6278;
  background-color: transparent;
  border: 0 solid transparent;
  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;
}
@media (prefers-reduced-motion: reduce) {
  .page-link {
    transition: none;
  }
}
.page-link:hover {
  z-index: 2;
  color: #009EF7;
  text-decoration: none;
  background-color: #F1FAFF;
  border-color: transparent;
}
.page-link:focus {
  z-index: 3;
  color: #009EF7;
  background-color: #F1FAFF;
  outline: 0;
  box-shadow: none;
}

.page-item:not(:first-child) .page-link {
  margin-left: 0;
}
.page-item.active .page-link {
  z-index: 3;
  color: #FFFFFF;
  background-color: #009EF7;
  border-color: transparent;
}
.page-item.disabled .page-link {
  color: #B5B5C3;
  pointer-events: none;
  background-color: transparent;
  border-color: transparent;
}

.page-link {
  padding: 0.375rem 0.75rem;
}

.page-item:first-child .page-link {
  border-top-left-radius: 0.475rem;
  border-bottom-left-radius: 0.475rem;
}
.page-item:last-child .page-link {
  border-top-right-radius: 0.475rem;
  border-bottom-right-radius: 0.475rem;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.075rem;
}
.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.625rem;
  border-bottom-left-radius: 0.625rem;
}
.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.925rem;
}
.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.325rem;
  border-bottom-left-radius: 0.325rem;
}
.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.325rem;
  border-bottom-right-radius: 0.325rem;
}

.badge {
  display: inline-block;
  padding: 0.325rem 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.325rem;
}
.badge:empty {
  display: none;
}

.btn .badge {
  position: relative;
  top: -1px;
}

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.475rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 500;
}

.alert-dismissible {
  padding-right: 3rem;
}
.alert-dismissible .btn-close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 1.25rem 1rem;
}

.alert-white {
  color: #666666;
  background-color: white;
  border-color: white;
}
.alert-white .alert-link {
  color: #525252;
}

.alert-light {
  color: #626364;
  background-color: #fdfefe;
  border-color: #fcfdfe;
}
.alert-light .alert-link {
  color: #4e4f50;
}

.alert-primary {
  color: #005f94;
  background-color: #ccecfd;
  border-color: #b3e2fd;
}
.alert-primary .alert-link {
  color: #004c76;
}

.alert-secondary {
  color: #5b5c60;
  background-color: #fafafc;
  border-color: #f7f8fa;
}
.alert-secondary .alert-link {
  color: #494a4d;
}

.alert-success {
  color: #205237;
  background-color: #dcf5e7;
  border-color: #cbf0dc;
}
.alert-success .alert-link {
  color: #1a422c;
}

.alert-info {
  color: #44228c;
  background-color: #e3d7fb;
  border-color: #d5c4f9;
}
.alert-info .alert-link {
  color: #361b70;
}

.alert-warning {
  color: #665000;
  background-color: #fff4cc;
  border-color: #ffeeb3;
}
.alert-warning .alert-link {
  color: #524000;
}

.alert-danger {
  color: #912741;
  background-color: #fcd9e2;
  border-color: #fbc6d3;
}
.alert-danger .alert-link {
  color: #741f34;
}

.alert-dark {
  color: #0e111e;
  background-color: #d1d2d6;
  border-color: #babbc2;
}
.alert-dark .alert-link {
  color: #0b0e18;
}

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem;
  }
}
.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.75rem;
  background-color: #F5F8FA;
  border-radius: 6px;
  box-shadow: none;
}

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  white-space: nowrap;
  background-color: #009EF7;
  transition: width 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    transition: none;
  }
}

.progress-bar-striped {
  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 {
  animation: 1s linear infinite progress-bar-stripes;
}
@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    animation: none;
  }
}

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.475rem;
}

.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: #5E6278;
  text-align: inherit;
}
.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #5E6278;
  text-decoration: none;
  background-color: #F5F8FA;
}
.list-group-item-action:active {
  color: #181C32;
  background-color: #EFF2F5;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #181C32;
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 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: #7E8299;
  pointer-events: none;
  background-color: #ffffff;
}
.list-group-item.active {
  z-index: 2;
  color: #FFFFFF;
  background-color: #009EF7;
  border-color: #009EF7;
}
.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 {
  flex-direction: row;
}
.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.475rem;
  border-top-right-radius: 0;
}
.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.475rem;
  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: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.475rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.475rem;
    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: 768px) {
  .list-group-horizontal-md {
    flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.475rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.475rem;
    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: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.475rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.475rem;
    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 {
    flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.475rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.475rem;
    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 {
    flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.475rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.475rem;
    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-white {
  color: #666666;
  background-color: white;
}
.list-group-item-white.list-group-item-action:hover, .list-group-item-white.list-group-item-action:focus {
  color: #666666;
  background-color: #e6e6e6;
}
.list-group-item-white.list-group-item-action.active {
  color: #ffffff;
  background-color: #666666;
  border-color: #666666;
}

.list-group-item-light {
  color: #626364;
  background-color: #fdfefe;
}
.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #626364;
  background-color: #e4e5e5;
}
.list-group-item-light.list-group-item-action.active {
  color: #ffffff;
  background-color: #626364;
  border-color: #626364;
}

.list-group-item-primary {
  color: #005f94;
  background-color: #ccecfd;
}
.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #005f94;
  background-color: #b8d4e4;
}
.list-group-item-primary.list-group-item-action.active {
  color: #ffffff;
  background-color: #005f94;
  border-color: #005f94;
}

.list-group-item-secondary {
  color: #5b5c60;
  background-color: #fafafc;
}
.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #5b5c60;
  background-color: #e1e1e3;
}
.list-group-item-secondary.list-group-item-action.active {
  color: #ffffff;
  background-color: #5b5c60;
  border-color: #5b5c60;
}

.list-group-item-success {
  color: #205237;
  background-color: #dcf5e7;
}
.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #205237;
  background-color: #c6ddd0;
}
.list-group-item-success.list-group-item-action.active {
  color: #ffffff;
  background-color: #205237;
  border-color: #205237;
}

.list-group-item-info {
  color: #44228c;
  background-color: #e3d7fb;
}
.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #44228c;
  background-color: #ccc2e2;
}
.list-group-item-info.list-group-item-action.active {
  color: #ffffff;
  background-color: #44228c;
  border-color: #44228c;
}

.list-group-item-warning {
  color: #665000;
  background-color: #fff4cc;
}
.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #665000;
  background-color: #e6dcb8;
}
.list-group-item-warning.list-group-item-action.active {
  color: #ffffff;
  background-color: #665000;
  border-color: #665000;
}

.list-group-item-danger {
  color: #912741;
  background-color: #fcd9e2;
}
.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #912741;
  background-color: #e3c3cb;
}
.list-group-item-danger.list-group-item-action.active {
  color: #ffffff;
  background-color: #912741;
  border-color: #912741;
}

.list-group-item-dark {
  color: #0e111e;
  background-color: #d1d2d6;
}
.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #0e111e;
  background-color: #bcbdc1;
}
.list-group-item-dark.list-group-item-action.active {
  color: #ffffff;
  background-color: #0e111e;
  border-color: #0e111e;
}

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%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: 0.475rem;
  opacity: 0.5;
}
.btn-close:hover {
  color: #000000;
  text-decoration: none;
  opacity: 0.75;
}
.btn-close:focus {
  outline: 0;
  box-shadow: 0 0 0 0.25rem rgba(0, 158, 247, 0.25);
  opacity: 1;
}
.btn-close:disabled, .btn-close.disabled {
  pointer-events: none;
  user-select: none;
  opacity: 0.25;
}

.btn-close-white {
  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(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, 0.075);
  border-radius: 0.475rem;
}
.toast.showing {
  opacity: 0;
}
.toast:not(.show) {
  display: none;
}

.toast-container {
  width: max-content;
  max-width: 100%;
  pointer-events: none;
}
.toast-container > :not(:last-child) {
  margin-bottom: 1.5rem;
}

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #7E8299;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.475rem - 1px);
  border-top-right-radius: calc(0.475rem - 1px);
}
.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 {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    transition: none;
  }
}
.modal.show .modal-dialog {
  transform: none;
}
.modal.modal-static .modal-dialog {
  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: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.2);
  border-radius: 0.475rem;
  box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000000;
}
.modal-backdrop.fade {
  opacity: 0;
}
.modal-backdrop.show {
  opacity: 0.3;
}

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 1.75rem;
  border-bottom: 1px solid #EFF2F5;
  border-top-left-radius: 0.475rem;
  border-top-right-radius: 0.475rem;
}
.modal-header .btn-close {
  padding: 0.875rem 0.875rem;
  margin: -0.875rem -0.875rem -0.875rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1.75rem;
}

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  border-top: 1px solid #EFF2F5;
  border-bottom-right-radius: 0.475rem;
  border-bottom-left-radius: 0.475rem;
}
.modal-footer > * {
  margin: 0.25rem;
}

@media (min-width: 576px) {
  .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-content {
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
  }

  .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .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: 575.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: 767.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: 991.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: var(--bs-font-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.925rem;
  word-wrap: break-word;
  opacity: 0;
}
.tooltip.show {
  opacity: 1;
}
.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: #ffffff;
}

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

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

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

.tooltip-inner {
  max-width: 200px;
  padding: 0.75rem 1rem;
  color: #3F4254;
  text-align: center;
  background-color: #ffffff;
  border-radius: 0.475rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: var(--bs-font-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: 1rem;
  word-wrap: break-word;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #ffffff;
  border-radius: 0.475rem;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
}
.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: white;
}
.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: #ffffff;
}

.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: white;
}
.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: #ffffff;
}

.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: white;
}
.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: #ffffff;
}
.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 #ffffff;
}

.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: white;
}
.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: #ffffff;
}

.popover-header {
  padding: 1rem 1.25rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: #3F4254;
  background-color: #ffffff;
  border-bottom: 1px solid #ffffff;
  border-top-left-radius: calc(0.475rem - 1px);
  border-top-right-radius: calc(0.475rem - 1px);
}
.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 1.25rem 1.25rem;
  color: #3F4254;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  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%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    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 {
  transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%);
}

/* rtl:end:ignore */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  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;
  transition: opacity 0s 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #ffffff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
.carousel-control-next {
    transition: none;
  }
}
.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #ffffff;
  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='%23ffffff'%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='%23ffffff'%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: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none;
}
.carousel-indicators [data-bs-target] {
  box-sizing: content-box;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  padding: 0;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: 0.5;
  transition: opacity 0.6s ease;
}
@media (prefers-reduced-motion: reduce) {
  .carousel-indicators [data-bs-target] {
    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: #ffffff;
  text-align: center;
}

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100);
}
.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000000;
}
.carousel-dark .carousel-caption {
  color: #000000;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */;
  }
}
.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.185em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.65s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.145em;
}

@keyframes spinner-grow {
  0% {
    transform: scale(0);
  }
  50% {
    opacity: 1;
    transform: none;
  }
}
.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.65s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
.spinner-grow {
    animation-duration: 1.3s;
  }
}
.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.link-white {
  color: #ffffff;
}
.link-white:hover, .link-white:focus {
  color: white;
}

.link-light {
  color: #F5F8FA;
}
.link-light:hover, .link-light:focus {
  color: #f7f9fb;
}

.link-primary {
  color: #009EF7;
}
.link-primary:hover, .link-primary:focus {
  color: #33b1f9;
}

.link-secondary {
  color: #E4E6EF;
}
.link-secondary:hover, .link-secondary:focus {
  color: #e9ebf2;
}

.link-success {
  color: #50CD89;
}
.link-success:hover, .link-success:focus {
  color: #73d7a1;
}

.link-info {
  color: #7239EA;
}
.link-info:hover, .link-info:focus {
  color: #5b2ebb;
}

.link-warning {
  color: #FFC700;
}
.link-warning:hover, .link-warning:focus {
  color: #ffd233;
}

.link-danger {
  color: #F1416C;
}
.link-danger:hover, .link-danger:focus {
  color: #f46789;
}

.link-dark {
  color: #181C32;
}
.link-dark:hover, .link-dark:focus {
  color: #131628;
}

.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: sticky;
  top: 0;
  z-index: 1020;
}

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1200px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
@media (min-width: 1400px) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}
.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch;
}

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  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;
  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-5 {
  opacity: 0.05 !important;
}

.opacity-10 {
  opacity: 0.1 !important;
}

.opacity-15 {
  opacity: 0.15 !important;
}

.opacity-20 {
  opacity: 0.2 !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: flex !important;
}

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

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

.shadow {
  box-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, 0.075) !important;
}

.shadow-sm {
  box-shadow: 0 0.1rem 1rem 0.25rem rgba(0, 0, 0, 0.05) !important;
}

.shadow-lg {
  box-shadow: 0 1rem 2rem 1rem rgba(0, 0, 0, 0.1) !important;
}

.shadow-none {
  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: sticky !important;
}

.top-0 {
  top: 0 !important;
}

.top-25 {
  top: 25% !important;
}

.top-50 {
  top: 50% !important;
}

.top-75 {
  top: 75% !important;
}

.top-100 {
  top: 100% !important;
}

.bottom-0 {
  bottom: 0 !important;
}

.bottom-25 {
  bottom: 25% !important;
}

.bottom-50 {
  bottom: 50% !important;
}

.bottom-75 {
  bottom: 75% !important;
}

.bottom-100 {
  bottom: 100% !important;
}

.start-0 {
  left: 0 !important;
}

.start-25 {
  left: 25% !important;
}

.start-50 {
  left: 50% !important;
}

.start-75 {
  left: 75% !important;
}

.start-100 {
  left: 100% !important;
}

.end-0 {
  right: 0 !important;
}

.end-25 {
  right: 25% !important;
}

.end-50 {
  right: 50% !important;
}

.end-75 {
  right: 75% !important;
}

.end-100 {
  right: 100% !important;
}

.translate-middle {
  transform: translate(-50%, -50%) !important;
}

.translate-middle-x {
  transform: translateX(-50%) !important;
}

.translate-middle-y {
  transform: translateY(-50%) !important;
}

.border {
  border: 1px solid #EFF2F5 !important;
}

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

.border-top {
  border-top: 1px solid #EFF2F5 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-end {
  border-right: 1px solid #EFF2F5 !important;
}

.border-end-0 {
  border-right: 0 !important;
}

.border-bottom {
  border-bottom: 1px solid #EFF2F5 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-start {
  border-left: 1px solid #EFF2F5 !important;
}

.border-start-0 {
  border-left: 0 !important;
}

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

.border-light {
  border-color: #F5F8FA !important;
}

.border-primary {
  border-color: #009EF7 !important;
}

.border-secondary {
  border-color: #E4E6EF !important;
}

.border-success {
  border-color: #50CD89 !important;
}

.border-info {
  border-color: #7239EA !important;
}

.border-warning {
  border-color: #FFC700 !important;
}

.border-danger {
  border-color: #F1416C !important;
}

.border-dark {
  border-color: #181C32 !important;
}

.border-0 {
  border-width: 0 !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-unset {
  width: unset !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;
}

.w-1px {
  width: 1px !important;
}

.w-2px {
  width: 2px !important;
}

.w-3px {
  width: 3px !important;
}

.w-4px {
  width: 4px !important;
}

.w-5px {
  width: 5px !important;
}

.w-6px {
  width: 6px !important;
}

.w-7px {
  width: 7px !important;
}

.w-8px {
  width: 8px !important;
}

.w-9px {
  width: 9px !important;
}

.w-10px {
  width: 10px !important;
}

.w-15px {
  width: 15px !important;
}

.w-20px {
  width: 20px !important;
}

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

.w-30px {
  width: 30px !important;
}

.w-35px {
  width: 35px !important;
}

.w-40px {
  width: 40px !important;
}

.w-45px {
  width: 45px !important;
}

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

.w-55px {
  width: 55px !important;
}

.w-60px {
  width: 60px !important;
}

.w-65px {
  width: 65px !important;
}

.w-70px {
  width: 70px !important;
}

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

.w-80px {
  width: 80px !important;
}

.w-85px {
  width: 85px !important;
}

.w-90px {
  width: 90px !important;
}

.w-95px {
  width: 95px !important;
}

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

.w-125px {
  width: 125px !important;
}

.w-150px {
  width: 150px !important;
}

.w-175px {
  width: 175px !important;
}

.w-200px {
  width: 200px !important;
}

.w-225px {
  width: 225px !important;
}

.w-250px {
  width: 250px !important;
}

.w-275px {
  width: 275px !important;
}

.w-300px {
  width: 300px !important;
}

.w-325px {
  width: 325px !important;
}

.w-350px {
  width: 350px !important;
}

.w-375px {
  width: 375px !important;
}

.w-400px {
  width: 400px !important;
}

.w-425px {
  width: 425px !important;
}

.w-450px {
  width: 450px !important;
}

.w-475px {
  width: 475px !important;
}

.w-500px {
  width: 500px !important;
}

.w-550px {
  width: 550px !important;
}

.w-600px {
  width: 600px !important;
}

.w-650px {
  width: 650px !important;
}

.w-700px {
  width: 700px !important;
}

.w-750px {
  width: 750px !important;
}

.w-800px {
  width: 800px !important;
}

.w-850px {
  width: 850px !important;
}

.w-900px {
  width: 900px !important;
}

.w-950px {
  width: 950px !important;
}

.w-1000px {
  width: 1000px !important;
}

.mw-unset {
  max-width: unset !important;
}

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

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

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

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

.mw-auto {
  max-width: auto !important;
}

.mw-1px {
  max-width: 1px !important;
}

.mw-2px {
  max-width: 2px !important;
}

.mw-3px {
  max-width: 3px !important;
}

.mw-4px {
  max-width: 4px !important;
}

.mw-5px {
  max-width: 5px !important;
}

.mw-6px {
  max-width: 6px !important;
}

.mw-7px {
  max-width: 7px !important;
}

.mw-8px {
  max-width: 8px !important;
}

.mw-9px {
  max-width: 9px !important;
}

.mw-10px {
  max-width: 10px !important;
}

.mw-15px {
  max-width: 15px !important;
}

.mw-20px {
  max-width: 20px !important;
}

.mw-25px {
  max-width: 25px !important;
}

.mw-30px {
  max-width: 30px !important;
}

.mw-35px {
  max-width: 35px !important;
}

.mw-40px {
  max-width: 40px !important;
}

.mw-45px {
  max-width: 45px !important;
}

.mw-50px {
  max-width: 50px !important;
}

.mw-55px {
  max-width: 55px !important;
}

.mw-60px {
  max-width: 60px !important;
}

.mw-65px {
  max-width: 65px !important;
}

.mw-70px {
  max-width: 70px !important;
}

.mw-75px {
  max-width: 75px !important;
}

.mw-80px {
  max-width: 80px !important;
}

.mw-85px {
  max-width: 85px !important;
}

.mw-90px {
  max-width: 90px !important;
}

.mw-95px {
  max-width: 95px !important;
}

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

.mw-125px {
  max-width: 125px !important;
}

.mw-150px {
  max-width: 150px !important;
}

.mw-175px {
  max-width: 175px !important;
}

.mw-200px {
  max-width: 200px !important;
}

.mw-225px {
  max-width: 225px !important;
}

.mw-250px {
  max-width: 250px !important;
}

.mw-275px {
  max-width: 275px !important;
}

.mw-300px {
  max-width: 300px !important;
}

.mw-325px {
  max-width: 325px !important;
}

.mw-350px {
  max-width: 350px !important;
}

.mw-375px {
  max-width: 375px !important;
}

.mw-400px {
  max-width: 400px !important;
}

.mw-425px {
  max-width: 425px !important;
}

.mw-450px {
  max-width: 450px !important;
}

.mw-475px {
  max-width: 475px !important;
}

.mw-500px {
  max-width: 500px !important;
}

.mw-550px {
  max-width: 550px !important;
}

.mw-600px {
  max-width: 600px !important;
}

.mw-650px {
  max-width: 650px !important;
}

.mw-700px {
  max-width: 700px !important;
}

.mw-750px {
  max-width: 750px !important;
}

.mw-800px {
  max-width: 800px !important;
}

.mw-850px {
  max-width: 850px !important;
}

.mw-900px {
  max-width: 900px !important;
}

.mw-950px {
  max-width: 950px !important;
}

.mw-1000px {
  max-width: 1000px !important;
}

.vw-100 {
  width: 100vw !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.h-unset {
  height: unset !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;
}

.h-1px {
  height: 1px !important;
}

.h-2px {
  height: 2px !important;
}

.h-3px {
  height: 3px !important;
}

.h-4px {
  height: 4px !important;
}

.h-5px {
  height: 5px !important;
}

.h-6px {
  height: 6px !important;
}

.h-7px {
  height: 7px !important;
}

.h-8px {
  height: 8px !important;
}

.h-9px {
  height: 9px !important;
}

.h-10px {
  height: 10px !important;
}

.h-15px {
  height: 15px !important;
}

.h-20px {
  height: 20px !important;
}

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

.h-30px {
  height: 30px !important;
}

.h-35px {
  height: 35px !important;
}

.h-40px {
  height: 40px !important;
}

.h-45px {
  height: 45px !important;
}

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

.h-55px {
  height: 55px !important;
}

.h-60px {
  height: 60px !important;
}

.h-65px {
  height: 65px !important;
}

.h-70px {
  height: 70px !important;
}

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

.h-80px {
  height: 80px !important;
}

.h-85px {
  height: 85px !important;
}

.h-90px {
  height: 90px !important;
}

.h-95px {
  height: 95px !important;
}

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

.h-125px {
  height: 125px !important;
}

.h-150px {
  height: 150px !important;
}

.h-175px {
  height: 175px !important;
}

.h-200px {
  height: 200px !important;
}

.h-225px {
  height: 225px !important;
}

.h-250px {
  height: 250px !important;
}

.h-275px {
  height: 275px !important;
}

.h-300px {
  height: 300px !important;
}

.h-325px {
  height: 325px !important;
}

.h-350px {
  height: 350px !important;
}

.h-375px {
  height: 375px !important;
}

.h-400px {
  height: 400px !important;
}

.h-425px {
  height: 425px !important;
}

.h-450px {
  height: 450px !important;
}

.h-475px {
  height: 475px !important;
}

.h-500px {
  height: 500px !important;
}

.h-550px {
  height: 550px !important;
}

.h-600px {
  height: 600px !important;
}

.h-650px {
  height: 650px !important;
}

.h-700px {
  height: 700px !important;
}

.h-750px {
  height: 750px !important;
}

.h-800px {
  height: 800px !important;
}

.h-850px {
  height: 850px !important;
}

.h-900px {
  height: 900px !important;
}

.h-950px {
  height: 950px !important;
}

.h-1000px {
  height: 1000px !important;
}

.mh-unset {
  max-height: unset !important;
}

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

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

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

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

.mh-auto {
  max-height: auto !important;
}

.mh-1px {
  max-height: 1px !important;
}

.mh-2px {
  max-height: 2px !important;
}

.mh-3px {
  max-height: 3px !important;
}

.mh-4px {
  max-height: 4px !important;
}

.mh-5px {
  max-height: 5px !important;
}

.mh-6px {
  max-height: 6px !important;
}

.mh-7px {
  max-height: 7px !important;
}

.mh-8px {
  max-height: 8px !important;
}

.mh-9px {
  max-height: 9px !important;
}

.mh-10px {
  max-height: 10px !important;
}

.mh-15px {
  max-height: 15px !important;
}

.mh-20px {
  max-height: 20px !important;
}

.mh-25px {
  max-height: 25px !important;
}

.mh-30px {
  max-height: 30px !important;
}

.mh-35px {
  max-height: 35px !important;
}

.mh-40px {
  max-height: 40px !important;
}

.mh-45px {
  max-height: 45px !important;
}

.mh-50px {
  max-height: 50px !important;
}

.mh-55px {
  max-height: 55px !important;
}

.mh-60px {
  max-height: 60px !important;
}

.mh-65px {
  max-height: 65px !important;
}

.mh-70px {
  max-height: 70px !important;
}

.mh-75px {
  max-height: 75px !important;
}

.mh-80px {
  max-height: 80px !important;
}

.mh-85px {
  max-height: 85px !important;
}

.mh-90px {
  max-height: 90px !important;
}

.mh-95px {
  max-height: 95px !important;
}

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

.mh-125px {
  max-height: 125px !important;
}

.mh-150px {
  max-height: 150px !important;
}

.mh-175px {
  max-height: 175px !important;
}

.mh-200px {
  max-height: 200px !important;
}

.mh-225px {
  max-height: 225px !important;
}

.mh-250px {
  max-height: 250px !important;
}

.mh-275px {
  max-height: 275px !important;
}

.mh-300px {
  max-height: 300px !important;
}

.mh-325px {
  max-height: 325px !important;
}

.mh-350px {
  max-height: 350px !important;
}

.mh-375px {
  max-height: 375px !important;
}

.mh-400px {
  max-height: 400px !important;
}

.mh-425px {
  max-height: 425px !important;
}

.mh-450px {
  max-height: 450px !important;
}

.mh-475px {
  max-height: 475px !important;
}

.mh-500px {
  max-height: 500px !important;
}

.mh-550px {
  max-height: 550px !important;
}

.mh-600px {
  max-height: 600px !important;
}

.mh-650px {
  max-height: 650px !important;
}

.mh-700px {
  max-height: 700px !important;
}

.mh-750px {
  max-height: 750px !important;
}

.mh-800px {
  max-height: 800px !important;
}

.mh-850px {
  max-height: 850px !important;
}

.mh-900px {
  max-height: 900px !important;
}

.mh-950px {
  max-height: 950px !important;
}

.mh-1000px {
  max-height: 1000px !important;
}

.vh-100 {
  height: 100vh !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

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

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

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

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

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

.flex-grow-0 {
  flex-grow: 0 !important;
}

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

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

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

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

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

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

.gap-0 {
  gap: 0 !important;
}

.gap-1 {
  gap: 0.25rem !important;
}

.gap-2 {
  gap: 0.5rem !important;
}

.gap-3 {
  gap: 0.75rem !important;
}

.gap-4 {
  gap: 1rem !important;
}

.gap-5 {
  gap: 1.25rem !important;
}

.gap-6 {
  gap: 1.5rem !important;
}

.gap-7 {
  gap: 1.75rem !important;
}

.gap-8 {
  gap: 2rem !important;
}

.gap-9 {
  gap: 2.25rem !important;
}

.gap-10 {
  gap: 2.5rem !important;
}

.gap-11 {
  gap: 2.75rem !important;
}

.gap-12 {
  gap: 3rem !important;
}

.gap-13 {
  gap: 3.25rem !important;
}

.gap-14 {
  gap: 3.5rem !important;
}

.gap-15 {
  gap: 3.75rem !important;
}

.gap-16 {
  gap: 4rem !important;
}

.gap-17 {
  gap: 4.25rem !important;
}

.gap-18 {
  gap: 4.5rem !important;
}

.gap-19 {
  gap: 4.75rem !important;
}

.gap-20 {
  gap: 5rem !important;
}

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

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

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

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

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

.justify-content-evenly {
  justify-content: space-evenly !important;
}

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

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

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

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

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

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

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

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

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

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

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

.align-self-auto {
  align-self: auto !important;
}

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

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

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

.align-self-baseline {
  align-self: baseline !important;
}

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

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

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

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

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

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

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

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

.order-last {
  order: 6 !important;
}

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

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

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

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

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

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

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

.m-7 {
  margin: 1.75rem !important;
}

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

.m-9 {
  margin: 2.25rem !important;
}

.m-10 {
  margin: 2.5rem !important;
}

.m-11 {
  margin: 2.75rem !important;
}

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

.m-13 {
  margin: 3.25rem !important;
}

.m-14 {
  margin: 3.5rem !important;
}

.m-15 {
  margin: 3.75rem !important;
}

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

.m-17 {
  margin: 4.25rem !important;
}

.m-18 {
  margin: 4.5rem !important;
}

.m-19 {
  margin: 4.75rem !important;
}

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

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

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

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

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

.mx-3 {
  margin-right: 0.75rem !important;
  margin-left: 0.75rem !important;
}

.mx-4 {
  margin-right: 1rem !important;
  margin-left: 1rem !important;
}

.mx-5 {
  margin-right: 1.25rem !important;
  margin-left: 1.25rem !important;
}

.mx-6 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important;
}

.mx-7 {
  margin-right: 1.75rem !important;
  margin-left: 1.75rem !important;
}

.mx-8 {
  margin-right: 2rem !important;
  margin-left: 2rem !important;
}

.mx-9 {
  margin-right: 2.25rem !important;
  margin-left: 2.25rem !important;
}

.mx-10 {
  margin-right: 2.5rem !important;
  margin-left: 2.5rem !important;
}

.mx-11 {
  margin-right: 2.75rem !important;
  margin-left: 2.75rem !important;
}

.mx-12 {
  margin-right: 3rem !important;
  margin-left: 3rem !important;
}

.mx-13 {
  margin-right: 3.25rem !important;
  margin-left: 3.25rem !important;
}

.mx-14 {
  margin-right: 3.5rem !important;
  margin-left: 3.5rem !important;
}

.mx-15 {
  margin-right: 3.75rem !important;
  margin-left: 3.75rem !important;
}

.mx-16 {
  margin-right: 4rem !important;
  margin-left: 4rem !important;
}

.mx-17 {
  margin-right: 4.25rem !important;
  margin-left: 4.25rem !important;
}

.mx-18 {
  margin-right: 4.5rem !important;
  margin-left: 4.5rem !important;
}

.mx-19 {
  margin-right: 4.75rem !important;
  margin-left: 4.75rem !important;
}

.mx-20 {
  margin-right: 5rem !important;
  margin-left: 5rem !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: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

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

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.my-7 {
  margin-top: 1.75rem !important;
  margin-bottom: 1.75rem !important;
}

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.my-9 {
  margin-top: 2.25rem !important;
  margin-bottom: 2.25rem !important;
}

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.my-11 {
  margin-top: 2.75rem !important;
  margin-bottom: 2.75rem !important;
}

.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.my-13 {
  margin-top: 3.25rem !important;
  margin-bottom: 3.25rem !important;
}

.my-14 {
  margin-top: 3.5rem !important;
  margin-bottom: 3.5rem !important;
}

.my-15 {
  margin-top: 3.75rem !important;
  margin-bottom: 3.75rem !important;
}

.my-16 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.my-17 {
  margin-top: 4.25rem !important;
  margin-bottom: 4.25rem !important;
}

.my-18 {
  margin-top: 4.5rem !important;
  margin-bottom: 4.5rem !important;
}

.my-19 {
  margin-top: 4.75rem !important;
  margin-bottom: 4.75rem !important;
}

.my-20 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

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

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

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

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

.mt-3 {
  margin-top: 0.75rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mt-7 {
  margin-top: 1.75rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mt-9 {
  margin-top: 2.25rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mt-11 {
  margin-top: 2.75rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.mt-13 {
  margin-top: 3.25rem !important;
}

.mt-14 {
  margin-top: 3.5rem !important;
}

.mt-15 {
  margin-top: 3.75rem !important;
}

.mt-16 {
  margin-top: 4rem !important;
}

.mt-17 {
  margin-top: 4.25rem !important;
}

.mt-18 {
  margin-top: 4.5rem !important;
}

.mt-19 {
  margin-top: 4.75rem !important;
}

.mt-20 {
  margin-top: 5rem !important;
}

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

.me-0 {
  margin-right: 0 !important;
}

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

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

.me-3 {
  margin-right: 0.75rem !important;
}

.me-4 {
  margin-right: 1rem !important;
}

.me-5 {
  margin-right: 1.25rem !important;
}

.me-6 {
  margin-right: 1.5rem !important;
}

.me-7 {
  margin-right: 1.75rem !important;
}

.me-8 {
  margin-right: 2rem !important;
}

.me-9 {
  margin-right: 2.25rem !important;
}

.me-10 {
  margin-right: 2.5rem !important;
}

.me-11 {
  margin-right: 2.75rem !important;
}

.me-12 {
  margin-right: 3rem !important;
}

.me-13 {
  margin-right: 3.25rem !important;
}

.me-14 {
  margin-right: 3.5rem !important;
}

.me-15 {
  margin-right: 3.75rem !important;
}

.me-16 {
  margin-right: 4rem !important;
}

.me-17 {
  margin-right: 4.25rem !important;
}

.me-18 {
  margin-right: 4.5rem !important;
}

.me-19 {
  margin-right: 4.75rem !important;
}

.me-20 {
  margin-right: 5rem !important;
}

.me-auto {
  margin-right: auto !important;
}

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

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

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

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.mb-7 {
  margin-bottom: 1.75rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.mb-9 {
  margin-bottom: 2.25rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.mb-11 {
  margin-bottom: 2.75rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.mb-13 {
  margin-bottom: 3.25rem !important;
}

.mb-14 {
  margin-bottom: 3.5rem !important;
}

.mb-15 {
  margin-bottom: 3.75rem !important;
}

.mb-16 {
  margin-bottom: 4rem !important;
}

.mb-17 {
  margin-bottom: 4.25rem !important;
}

.mb-18 {
  margin-bottom: 4.5rem !important;
}

.mb-19 {
  margin-bottom: 4.75rem !important;
}

.mb-20 {
  margin-bottom: 5rem !important;
}

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

.ms-0 {
  margin-left: 0 !important;
}

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

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

.ms-3 {
  margin-left: 0.75rem !important;
}

.ms-4 {
  margin-left: 1rem !important;
}

.ms-5 {
  margin-left: 1.25rem !important;
}

.ms-6 {
  margin-left: 1.5rem !important;
}

.ms-7 {
  margin-left: 1.75rem !important;
}

.ms-8 {
  margin-left: 2rem !important;
}

.ms-9 {
  margin-left: 2.25rem !important;
}

.ms-10 {
  margin-left: 2.5rem !important;
}

.ms-11 {
  margin-left: 2.75rem !important;
}

.ms-12 {
  margin-left: 3rem !important;
}

.ms-13 {
  margin-left: 3.25rem !important;
}

.ms-14 {
  margin-left: 3.5rem !important;
}

.ms-15 {
  margin-left: 3.75rem !important;
}

.ms-16 {
  margin-left: 4rem !important;
}

.ms-17 {
  margin-left: 4.25rem !important;
}

.ms-18 {
  margin-left: 4.5rem !important;
}

.ms-19 {
  margin-left: 4.75rem !important;
}

.ms-20 {
  margin-left: 5rem !important;
}

.ms-auto {
  margin-left: auto !important;
}

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

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

.m-n3 {
  margin: -0.75rem !important;
}

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

.m-n5 {
  margin: -1.25rem !important;
}

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

.m-n7 {
  margin: -1.75rem !important;
}

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

.m-n9 {
  margin: -2.25rem !important;
}

.m-n10 {
  margin: -2.5rem !important;
}

.m-n11 {
  margin: -2.75rem !important;
}

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

.m-n13 {
  margin: -3.25rem !important;
}

.m-n14 {
  margin: -3.5rem !important;
}

.m-n15 {
  margin: -3.75rem !important;
}

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

.m-n17 {
  margin: -4.25rem !important;
}

.m-n18 {
  margin: -4.5rem !important;
}

.m-n19 {
  margin: -4.75rem !important;
}

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

.mx-n1 {
  margin-right: -0.25rem !important;
  margin-left: -0.25rem !important;
}

.mx-n2 {
  margin-right: -0.5rem !important;
  margin-left: -0.5rem !important;
}

.mx-n3 {
  margin-right: -0.75rem !important;
  margin-left: -0.75rem !important;
}

.mx-n4 {
  margin-right: -1rem !important;
  margin-left: -1rem !important;
}

.mx-n5 {
  margin-right: -1.25rem !important;
  margin-left: -1.25rem !important;
}

.mx-n6 {
  margin-right: -1.5rem !important;
  margin-left: -1.5rem !important;
}

.mx-n7 {
  margin-right: -1.75rem !important;
  margin-left: -1.75rem !important;
}

.mx-n8 {
  margin-right: -2rem !important;
  margin-left: -2rem !important;
}

.mx-n9 {
  margin-right: -2.25rem !important;
  margin-left: -2.25rem !important;
}

.mx-n10 {
  margin-right: -2.5rem !important;
  margin-left: -2.5rem !important;
}

.mx-n11 {
  margin-right: -2.75rem !important;
  margin-left: -2.75rem !important;
}

.mx-n12 {
  margin-right: -3rem !important;
  margin-left: -3rem !important;
}

.mx-n13 {
  margin-right: -3.25rem !important;
  margin-left: -3.25rem !important;
}

.mx-n14 {
  margin-right: -3.5rem !important;
  margin-left: -3.5rem !important;
}

.mx-n15 {
  margin-right: -3.75rem !important;
  margin-left: -3.75rem !important;
}

.mx-n16 {
  margin-right: -4rem !important;
  margin-left: -4rem !important;
}

.mx-n17 {
  margin-right: -4.25rem !important;
  margin-left: -4.25rem !important;
}

.mx-n18 {
  margin-right: -4.5rem !important;
  margin-left: -4.5rem !important;
}

.mx-n19 {
  margin-right: -4.75rem !important;
  margin-left: -4.75rem !important;
}

.mx-n20 {
  margin-right: -5rem !important;
  margin-left: -5rem !important;
}

.my-n1 {
  margin-top: -0.25rem !important;
  margin-bottom: -0.25rem !important;
}

.my-n2 {
  margin-top: -0.5rem !important;
  margin-bottom: -0.5rem !important;
}

.my-n3 {
  margin-top: -0.75rem !important;
  margin-bottom: -0.75rem !important;
}

.my-n4 {
  margin-top: -1rem !important;
  margin-bottom: -1rem !important;
}

.my-n5 {
  margin-top: -1.25rem !important;
  margin-bottom: -1.25rem !important;
}

.my-n6 {
  margin-top: -1.5rem !important;
  margin-bottom: -1.5rem !important;
}

.my-n7 {
  margin-top: -1.75rem !important;
  margin-bottom: -1.75rem !important;
}

.my-n8 {
  margin-top: -2rem !important;
  margin-bottom: -2rem !important;
}

.my-n9 {
  margin-top: -2.25rem !important;
  margin-bottom: -2.25rem !important;
}

.my-n10 {
  margin-top: -2.5rem !important;
  margin-bottom: -2.5rem !important;
}

.my-n11 {
  margin-top: -2.75rem !important;
  margin-bottom: -2.75rem !important;
}

.my-n12 {
  margin-top: -3rem !important;
  margin-bottom: -3rem !important;
}

.my-n13 {
  margin-top: -3.25rem !important;
  margin-bottom: -3.25rem !important;
}

.my-n14 {
  margin-top: -3.5rem !important;
  margin-bottom: -3.5rem !important;
}

.my-n15 {
  margin-top: -3.75rem !important;
  margin-bottom: -3.75rem !important;
}

.my-n16 {
  margin-top: -4rem !important;
  margin-bottom: -4rem !important;
}

.my-n17 {
  margin-top: -4.25rem !important;
  margin-bottom: -4.25rem !important;
}

.my-n18 {
  margin-top: -4.5rem !important;
  margin-bottom: -4.5rem !important;
}

.my-n19 {
  margin-top: -4.75rem !important;
  margin-bottom: -4.75rem !important;
}

.my-n20 {
  margin-top: -5rem !important;
  margin-bottom: -5rem !important;
}

.mt-n1 {
  margin-top: -0.25rem !important;
}

.mt-n2 {
  margin-top: -0.5rem !important;
}

.mt-n3 {
  margin-top: -0.75rem !important;
}

.mt-n4 {
  margin-top: -1rem !important;
}

.mt-n5 {
  margin-top: -1.25rem !important;
}

.mt-n6 {
  margin-top: -1.5rem !important;
}

.mt-n7 {
  margin-top: -1.75rem !important;
}

.mt-n8 {
  margin-top: -2rem !important;
}

.mt-n9 {
  margin-top: -2.25rem !important;
}

.mt-n10 {
  margin-top: -2.5rem !important;
}

.mt-n11 {
  margin-top: -2.75rem !important;
}

.mt-n12 {
  margin-top: -3rem !important;
}

.mt-n13 {
  margin-top: -3.25rem !important;
}

.mt-n14 {
  margin-top: -3.5rem !important;
}

.mt-n15 {
  margin-top: -3.75rem !important;
}

.mt-n16 {
  margin-top: -4rem !important;
}

.mt-n17 {
  margin-top: -4.25rem !important;
}

.mt-n18 {
  margin-top: -4.5rem !important;
}

.mt-n19 {
  margin-top: -4.75rem !important;
}

.mt-n20 {
  margin-top: -5rem !important;
}

.me-n1 {
  margin-right: -0.25rem !important;
}

.me-n2 {
  margin-right: -0.5rem !important;
}

.me-n3 {
  margin-right: -0.75rem !important;
}

.me-n4 {
  margin-right: -1rem !important;
}

.me-n5 {
  margin-right: -1.25rem !important;
}

.me-n6 {
  margin-right: -1.5rem !important;
}

.me-n7 {
  margin-right: -1.75rem !important;
}

.me-n8 {
  margin-right: -2rem !important;
}

.me-n9 {
  margin-right: -2.25rem !important;
}

.me-n10 {
  margin-right: -2.5rem !important;
}

.me-n11 {
  margin-right: -2.75rem !important;
}

.me-n12 {
  margin-right: -3rem !important;
}

.me-n13 {
  margin-right: -3.25rem !important;
}

.me-n14 {
  margin-right: -3.5rem !important;
}

.me-n15 {
  margin-right: -3.75rem !important;
}

.me-n16 {
  margin-right: -4rem !important;
}

.me-n17 {
  margin-right: -4.25rem !important;
}

.me-n18 {
  margin-right: -4.5rem !important;
}

.me-n19 {
  margin-right: -4.75rem !important;
}

.me-n20 {
  margin-right: -5rem !important;
}

.mb-n1 {
  margin-bottom: -0.25rem !important;
}

.mb-n2 {
  margin-bottom: -0.5rem !important;
}

.mb-n3 {
  margin-bottom: -0.75rem !important;
}

.mb-n4 {
  margin-bottom: -1rem !important;
}

.mb-n5 {
  margin-bottom: -1.25rem !important;
}

.mb-n6 {
  margin-bottom: -1.5rem !important;
}

.mb-n7 {
  margin-bottom: -1.75rem !important;
}

.mb-n8 {
  margin-bottom: -2rem !important;
}

.mb-n9 {
  margin-bottom: -2.25rem !important;
}

.mb-n10 {
  margin-bottom: -2.5rem !important;
}

.mb-n11 {
  margin-bottom: -2.75rem !important;
}

.mb-n12 {
  margin-bottom: -3rem !important;
}

.mb-n13 {
  margin-bottom: -3.25rem !important;
}

.mb-n14 {
  margin-bottom: -3.5rem !important;
}

.mb-n15 {
  margin-bottom: -3.75rem !important;
}

.mb-n16 {
  margin-bottom: -4rem !important;
}

.mb-n17 {
  margin-bottom: -4.25rem !important;
}

.mb-n18 {
  margin-bottom: -4.5rem !important;
}

.mb-n19 {
  margin-bottom: -4.75rem !important;
}

.mb-n20 {
  margin-bottom: -5rem !important;
}

.ms-n1 {
  margin-left: -0.25rem !important;
}

.ms-n2 {
  margin-left: -0.5rem !important;
}

.ms-n3 {
  margin-left: -0.75rem !important;
}

.ms-n4 {
  margin-left: -1rem !important;
}

.ms-n5 {
  margin-left: -1.25rem !important;
}

.ms-n6 {
  margin-left: -1.5rem !important;
}

.ms-n7 {
  margin-left: -1.75rem !important;
}

.ms-n8 {
  margin-left: -2rem !important;
}

.ms-n9 {
  margin-left: -2.25rem !important;
}

.ms-n10 {
  margin-left: -2.5rem !important;
}

.ms-n11 {
  margin-left: -2.75rem !important;
}

.ms-n12 {
  margin-left: -3rem !important;
}

.ms-n13 {
  margin-left: -3.25rem !important;
}

.ms-n14 {
  margin-left: -3.5rem !important;
}

.ms-n15 {
  margin-left: -3.75rem !important;
}

.ms-n16 {
  margin-left: -4rem !important;
}

.ms-n17 {
  margin-left: -4.25rem !important;
}

.ms-n18 {
  margin-left: -4.5rem !important;
}

.ms-n19 {
  margin-left: -4.75rem !important;
}

.ms-n20 {
  margin-left: -5rem !important;
}

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

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

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

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

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

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

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

.p-7 {
  padding: 1.75rem !important;
}

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

.p-9 {
  padding: 2.25rem !important;
}

.p-10 {
  padding: 2.5rem !important;
}

.p-11 {
  padding: 2.75rem !important;
}

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

.p-13 {
  padding: 3.25rem !important;
}

.p-14 {
  padding: 3.5rem !important;
}

.p-15 {
  padding: 3.75rem !important;
}

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

.p-17 {
  padding: 4.25rem !important;
}

.p-18 {
  padding: 4.5rem !important;
}

.p-19 {
  padding: 4.75rem !important;
}

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

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

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

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

.px-3 {
  padding-right: 0.75rem !important;
  padding-left: 0.75rem !important;
}

.px-4 {
  padding-right: 1rem !important;
  padding-left: 1rem !important;
}

.px-5 {
  padding-right: 1.25rem !important;
  padding-left: 1.25rem !important;
}

.px-6 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important;
}

.px-7 {
  padding-right: 1.75rem !important;
  padding-left: 1.75rem !important;
}

.px-8 {
  padding-right: 2rem !important;
  padding-left: 2rem !important;
}

.px-9 {
  padding-right: 2.25rem !important;
  padding-left: 2.25rem !important;
}

.px-10 {
  padding-right: 2.5rem !important;
  padding-left: 2.5rem !important;
}

.px-11 {
  padding-right: 2.75rem !important;
  padding-left: 2.75rem !important;
}

.px-12 {
  padding-right: 3rem !important;
  padding-left: 3rem !important;
}

.px-13 {
  padding-right: 3.25rem !important;
  padding-left: 3.25rem !important;
}

.px-14 {
  padding-right: 3.5rem !important;
  padding-left: 3.5rem !important;
}

.px-15 {
  padding-right: 3.75rem !important;
  padding-left: 3.75rem !important;
}

.px-16 {
  padding-right: 4rem !important;
  padding-left: 4rem !important;
}

.px-17 {
  padding-right: 4.25rem !important;
  padding-left: 4.25rem !important;
}

.px-18 {
  padding-right: 4.5rem !important;
  padding-left: 4.5rem !important;
}

.px-19 {
  padding-right: 4.75rem !important;
  padding-left: 4.75rem !important;
}

.px-20 {
  padding-right: 5rem !important;
  padding-left: 5rem !important;
}

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

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

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

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.py-5 {
  padding-top: 1.25rem !important;
  padding-bottom: 1.25rem !important;
}

.py-6 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important;
}

.py-7 {
  padding-top: 1.75rem !important;
  padding-bottom: 1.75rem !important;
}

.py-8 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.py-9 {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}

.py-10 {
  padding-top: 2.5rem !important;
  padding-bottom: 2.5rem !important;
}

.py-11 {
  padding-top: 2.75rem !important;
  padding-bottom: 2.75rem !important;
}

.py-12 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.py-13 {
  padding-top: 3.25rem !important;
  padding-bottom: 3.25rem !important;
}

.py-14 {
  padding-top: 3.5rem !important;
  padding-bottom: 3.5rem !important;
}

.py-15 {
  padding-top: 3.75rem !important;
  padding-bottom: 3.75rem !important;
}

.py-16 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.py-17 {
  padding-top: 4.25rem !important;
  padding-bottom: 4.25rem !important;
}

.py-18 {
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.py-19 {
  padding-top: 4.75rem !important;
  padding-bottom: 4.75rem !important;
}

.py-20 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

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

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

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

.pt-3 {
  padding-top: 0.75rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pt-5 {
  padding-top: 1.25rem !important;
}

.pt-6 {
  padding-top: 1.5rem !important;
}

.pt-7 {
  padding-top: 1.75rem !important;
}

.pt-8 {
  padding-top: 2rem !important;
}

.pt-9 {
  padding-top: 2.25rem !important;
}

.pt-10 {
  padding-top: 2.5rem !important;
}

.pt-11 {
  padding-top: 2.75rem !important;
}

.pt-12 {
  padding-top: 3rem !important;
}

.pt-13 {
  padding-top: 3.25rem !important;
}

.pt-14 {
  padding-top: 3.5rem !important;
}

.pt-15 {
  padding-top: 3.75rem !important;
}

.pt-16 {
  padding-top: 4rem !important;
}

.pt-17 {
  padding-top: 4.25rem !important;
}

.pt-18 {
  padding-top: 4.5rem !important;
}

.pt-19 {
  padding-top: 4.75rem !important;
}

.pt-20 {
  padding-top: 5rem !important;
}

.pe-0 {
  padding-right: 0 !important;
}

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

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

.pe-3 {
  padding-right: 0.75rem !important;
}

.pe-4 {
  padding-right: 1rem !important;
}

.pe-5 {
  padding-right: 1.25rem !important;
}

.pe-6 {
  padding-right: 1.5rem !important;
}

.pe-7 {
  padding-right: 1.75rem !important;
}

.pe-8 {
  padding-right: 2rem !important;
}

.pe-9 {
  padding-right: 2.25rem !important;
}

.pe-10 {
  padding-right: 2.5rem !important;
}

.pe-11 {
  padding-right: 2.75rem !important;
}

.pe-12 {
  padding-right: 3rem !important;
}

.pe-13 {
  padding-right: 3.25rem !important;
}

.pe-14 {
  padding-right: 3.5rem !important;
}

.pe-15 {
  padding-right: 3.75rem !important;
}

.pe-16 {
  padding-right: 4rem !important;
}

.pe-17 {
  padding-right: 4.25rem !important;
}

.pe-18 {
  padding-right: 4.5rem !important;
}

.pe-19 {
  padding-right: 4.75rem !important;
}

.pe-20 {
  padding-right: 5rem !important;
}

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

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

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

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem !important;
}

.pb-6 {
  padding-bottom: 1.5rem !important;
}

.pb-7 {
  padding-bottom: 1.75rem !important;
}

.pb-8 {
  padding-bottom: 2rem !important;
}

.pb-9 {
  padding-bottom: 2.25rem !important;
}

.pb-10 {
  padding-bottom: 2.5rem !important;
}

.pb-11 {
  padding-bottom: 2.75rem !important;
}

.pb-12 {
  padding-bottom: 3rem !important;
}

.pb-13 {
  padding-bottom: 3.25rem !important;
}

.pb-14 {
  padding-bottom: 3.5rem !important;
}

.pb-15 {
  padding-bottom: 3.75rem !important;
}

.pb-16 {
  padding-bottom: 4rem !important;
}

.pb-17 {
  padding-bottom: 4.25rem !important;
}

.pb-18 {
  padding-bottom: 4.5rem !important;
}

.pb-19 {
  padding-bottom: 4.75rem !important;
}

.pb-20 {
  padding-bottom: 5rem !important;
}

.ps-0 {
  padding-left: 0 !important;
}

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

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

.ps-3 {
  padding-left: 0.75rem !important;
}

.ps-4 {
  padding-left: 1rem !important;
}

.ps-5 {
  padding-left: 1.25rem !important;
}

.ps-6 {
  padding-left: 1.5rem !important;
}

.ps-7 {
  padding-left: 1.75rem !important;
}

.ps-8 {
  padding-left: 2rem !important;
}

.ps-9 {
  padding-left: 2.25rem !important;
}

.ps-10 {
  padding-left: 2.5rem !important;
}

.ps-11 {
  padding-left: 2.75rem !important;
}

.ps-12 {
  padding-left: 3rem !important;
}

.ps-13 {
  padding-left: 3.25rem !important;
}

.ps-14 {
  padding-left: 3.5rem !important;
}

.ps-15 {
  padding-left: 3.75rem !important;
}

.ps-16 {
  padding-left: 4rem !important;
}

.ps-17 {
  padding-left: 4.25rem !important;
}

.ps-18 {
  padding-left: 4.5rem !important;
}

.ps-19 {
  padding-left: 4.75rem !important;
}

.ps-20 {
  padding-left: 5rem !important;
}

.font-monospace {
  font-family: var(--bs-font-monospace) !important;
}

.fs-1 {
  font-size: calc(1.3rem + 0.6vw) !important;
}

.fs-2 {
  font-size: calc(1.275rem + 0.3vw) !important;
}

.fs-3 {
  font-size: calc(1.26rem + 0.12vw) !important;
}

.fs-4 {
  font-size: 1.25rem !important;
}

.fs-5 {
  font-size: 1.15rem !important;
}

.fs-6 {
  font-size: 1.075rem !important;
}

.fs-7 {
  font-size: 0.95rem !important;
}

.fs-8 {
  font-size: 0.85rem !important;
}

.fs-9 {
  font-size: 0.75rem !important;
}

.fs-10 {
  font-size: 0.5rem !important;
}

.fs-base {
  font-size: 1rem !important;
}

.fs-fluid {
  font-size: 100% !important;
}

.fs-2x {
  font-size: calc(1.325rem + 0.9vw) !important;
}

.fs-2qx {
  font-size: calc(1.35rem + 1.2vw) !important;
}

.fs-2hx {
  font-size: calc(1.375rem + 1.5vw) !important;
}

.fs-2tx {
  font-size: calc(1.4rem + 1.8vw) !important;
}

.fs-3x {
  font-size: calc(1.425rem + 2.1vw) !important;
}

.fs-3qx {
  font-size: calc(1.45rem + 2.4vw) !important;
}

.fs-3hx {
  font-size: calc(1.475rem + 2.7vw) !important;
}

.fs-3tx {
  font-size: calc(1.5rem + 3vw) !important;
}

.fs-4x {
  font-size: calc(1.525rem + 3.3vw) !important;
}

.fs-4qx {
  font-size: calc(1.55rem + 3.6vw) !important;
}

.fs-4hx {
  font-size: calc(1.575rem + 3.9vw) !important;
}

.fs-4tx {
  font-size: calc(1.6rem + 4.2vw) !important;
}

.fs-5x {
  font-size: calc(1.625rem + 4.5vw) !important;
}

.fs-5qx {
  font-size: calc(1.65rem + 4.8vw) !important;
}

.fs-5hx {
  font-size: calc(1.675rem + 5.1vw) !important;
}

.fs-5tx {
  font-size: calc(1.7rem + 5.4vw) !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: 500 !important;
}

.fw-bolder {
  font-weight: 600 !important;
}

.lh-0 {
  line-height: 0 !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: 1.75 !important;
}

.lh-xl {
  line-height: 2 !important;
}

.lh-xxl {
  line-height: 2.25 !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-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important;
}

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important;
}

.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-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-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important;
}

.text-muted {
  --bs-text-opacity: 1;
  color: #A1A5B7 !important;
}

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 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-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-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-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-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-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 {
  user-select: all !important;
}

.user-select-auto {
  user-select: auto !important;
}

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

.pe-none {
  pointer-events: none !important;
}

.pe-auto {
  pointer-events: auto !important;
}

.rounded {
  border-radius: 0.475rem !important;
}

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

.rounded-1 {
  border-radius: 0.325rem !important;
}

.rounded-2 {
  border-radius: 0.475rem !important;
}

.rounded-3 {
  border-radius: 0.625rem !important;
}

.rounded-4 {
  border-radius: 1rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-top {
  border-top-left-radius: 0.475rem !important;
  border-top-right-radius: 0.475rem !important;
}

.rounded-end {
  border-top-right-radius: 0.475rem !important;
  border-bottom-right-radius: 0.475rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.475rem !important;
  border-bottom-left-radius: 0.475rem !important;
}

.rounded-start {
  border-bottom-left-radius: 0.475rem !important;
  border-top-left-radius: 0.475rem !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

.opacity-0 {
  opacity: 0 !important;
}

.opacity-0-hover:hover {
  opacity: 0 !important;
}

.opacity-5 {
  opacity: 0.05 !important;
}

.opacity-5-hover:hover {
  opacity: 0.05 !important;
}

.opacity-10 {
  opacity: 0.1 !important;
}

.opacity-10-hover:hover {
  opacity: 0.1 !important;
}

.opacity-15 {
  opacity: 0.15 !important;
}

.opacity-15-hover:hover {
  opacity: 0.15 !important;
}

.opacity-20 {
  opacity: 0.2 !important;
}

.opacity-20-hover:hover {
  opacity: 0.2 !important;
}

.opacity-25 {
  opacity: 0.25 !important;
}

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

.opacity-50 {
  opacity: 0.5 !important;
}

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

.opacity-75 {
  opacity: 0.75 !important;
}

.opacity-75-hover:hover {
  opacity: 0.75 !important;
}

.opacity-100 {
  opacity: 1 !important;
}

.opacity-100-hover:hover {
  opacity: 1 !important;
}

.min-w-unset {
  min-width: unset !important;
}

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

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

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

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

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

.min-w-1px {
  min-width: 1px !important;
}

.min-w-2px {
  min-width: 2px !important;
}

.min-w-3px {
  min-width: 3px !important;
}

.min-w-4px {
  min-width: 4px !important;
}

.min-w-5px {
  min-width: 5px !important;
}

.min-w-6px {
  min-width: 6px !important;
}

.min-w-7px {
  min-width: 7px !important;
}

.min-w-8px {
  min-width: 8px !important;
}

.min-w-9px {
  min-width: 9px !important;
}

.min-w-10px {
  min-width: 10px !important;
}

.min-w-15px {
  min-width: 15px !important;
}

.min-w-20px {
  min-width: 20px !important;
}

.min-w-25px {
  min-width: 25px !important;
}

.min-w-30px {
  min-width: 30px !important;
}

.min-w-35px {
  min-width: 35px !important;
}

.min-w-40px {
  min-width: 40px !important;
}

.min-w-45px {
  min-width: 45px !important;
}

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

.min-w-55px {
  min-width: 55px !important;
}

.min-w-60px {
  min-width: 60px !important;
}

.min-w-65px {
  min-width: 65px !important;
}

.min-w-70px {
  min-width: 70px !important;
}

.min-w-75px {
  min-width: 75px !important;
}

.min-w-80px {
  min-width: 80px !important;
}

.min-w-85px {
  min-width: 85px !important;
}

.min-w-90px {
  min-width: 90px !important;
}

.min-w-95px {
  min-width: 95px !important;
}

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

.min-w-125px {
  min-width: 125px !important;
}

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

.min-w-175px {
  min-width: 175px !important;
}

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

.min-w-225px {
  min-width: 225px !important;
}

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

.min-w-275px {
  min-width: 275px !important;
}

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

.min-w-325px {
  min-width: 325px !important;
}

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

.min-w-375px {
  min-width: 375px !important;
}

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

.min-w-425px {
  min-width: 425px !important;
}

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

.min-w-475px {
  min-width: 475px !important;
}

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

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

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

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

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

.min-w-750px {
  min-width: 750px !important;
}

.min-w-800px {
  min-width: 800px !important;
}

.min-w-850px {
  min-width: 850px !important;
}

.min-w-900px {
  min-width: 900px !important;
}

.min-w-950px {
  min-width: 950px !important;
}

.min-w-1000px {
  min-width: 1000px !important;
}

.min-h-unset {
  min-height: unset !important;
}

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

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

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

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

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

.min-h-1px {
  min-height: 1px !important;
}

.min-h-2px {
  min-height: 2px !important;
}

.min-h-3px {
  min-height: 3px !important;
}

.min-h-4px {
  min-height: 4px !important;
}

.min-h-5px {
  min-height: 5px !important;
}

.min-h-6px {
  min-height: 6px !important;
}

.min-h-7px {
  min-height: 7px !important;
}

.min-h-8px {
  min-height: 8px !important;
}

.min-h-9px {
  min-height: 9px !important;
}

.min-h-10px {
  min-height: 10px !important;
}

.min-h-15px {
  min-height: 15px !important;
}

.min-h-20px {
  min-height: 20px !important;
}

.min-h-25px {
  min-height: 25px !important;
}

.min-h-30px {
  min-height: 30px !important;
}

.min-h-35px {
  min-height: 35px !important;
}

.min-h-40px {
  min-height: 40px !important;
}

.min-h-45px {
  min-height: 45px !important;
}

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

.min-h-55px {
  min-height: 55px !important;
}

.min-h-60px {
  min-height: 60px !important;
}

.min-h-65px {
  min-height: 65px !important;
}

.min-h-70px {
  min-height: 70px !important;
}

.min-h-75px {
  min-height: 75px !important;
}

.min-h-80px {
  min-height: 80px !important;
}

.min-h-85px {
  min-height: 85px !important;
}

.min-h-90px {
  min-height: 90px !important;
}

.min-h-95px {
  min-height: 95px !important;
}

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

.min-h-125px {
  min-height: 125px !important;
}

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

.min-h-175px {
  min-height: 175px !important;
}

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

.min-h-225px {
  min-height: 225px !important;
}

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

.min-h-275px {
  min-height: 275px !important;
}

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

.min-h-325px {
  min-height: 325px !important;
}

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

.min-h-375px {
  min-height: 375px !important;
}

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

.min-h-425px {
  min-height: 425px !important;
}

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

.min-h-475px {
  min-height: 475px !important;
}

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

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

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

.min-h-650px {
  min-height: 650px !important;
}

.min-h-700px {
  min-height: 700px !important;
}

.min-h-750px {
  min-height: 750px !important;
}

.min-h-800px {
  min-height: 800px !important;
}

.min-h-850px {
  min-height: 850px !important;
}

.min-h-900px {
  min-height: 900px !important;
}

.min-h-950px {
  min-height: 950px !important;
}

.min-h-1000px {
  min-height: 1000px !important;
}

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

.z-index-n2 {
  z-index: -2 !important;
}

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

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

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

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

.border-top-0 {
  border-top-width: 0 !important;
}

.border-top-1 {
  border-top-width: 1px !important;
}

.border-top-2 {
  border-top-width: 2px !important;
}

.border-top-3 {
  border-top-width: 3px !important;
}

.border-top-4 {
  border-top-width: 4px !important;
}

.border-top-5 {
  border-top-width: 5px !important;
}

.border-bottom-0 {
  border-bottom-width: 0 !important;
}

.border-bottom-1 {
  border-bottom-width: 1px !important;
}

.border-bottom-2 {
  border-bottom-width: 2px !important;
}

.border-bottom-3 {
  border-bottom-width: 3px !important;
}

.border-bottom-4 {
  border-bottom-width: 4px !important;
}

.border-bottom-5 {
  border-bottom-width: 5px !important;
}

.border-right-0 {
  border-right-width: 0 !important;
}

.border-right-1 {
  border-right-width: 1px !important;
}

.border-right-2 {
  border-right-width: 2px !important;
}

.border-right-3 {
  border-right-width: 3px !important;
}

.border-right-4 {
  border-right-width: 4px !important;
}

.border-right-5 {
  border-right-width: 5px !important;
}

.border-left-0 {
  border-left-width: 0 !important;
}

.border-left-1 {
  border-left-width: 1px !important;
}

.border-left-2 {
  border-left-width: 2px !important;
}

.border-left-3 {
  border-left-width: 3px !important;
}

.border-left-4 {
  border-left-width: 4px !important;
}

.border-left-5 {
  border-left-width: 5px !important;
}

.ls-1 {
  letter-spacing: 0.1rem !important;
}

.ls-2 {
  letter-spacing: 0.115rem !important;
}

.ls-3 {
  letter-spacing: 0.125rem !important;
}

.ls-4 {
  letter-spacing: 0.25rem !important;
}

.ls-5 {
  letter-spacing: 0.5rem !important;
}

.ls-n1 {
  letter-spacing: -0.1rem !important;
}

.ls-n2 {
  letter-spacing: -0.115rem !important;
}

.ls-n3 {
  letter-spacing: -0.125rem !important;
}

.ls-n4 {
  letter-spacing: -0.25rem !important;
}

.ls-n5 {
  letter-spacing: -0.5rem !important;
}

@media (min-width: 576px) {
  .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: flex !important;
  }

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

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

  .position-sm-static {
    position: static !important;
  }

  .position-sm-relative {
    position: relative !important;
  }

  .position-sm-absolute {
    position: absolute !important;
  }

  .position-sm-fixed {
    position: fixed !important;
  }

  .position-sm-sticky {
    position: sticky !important;
  }

  .w-sm-unset {
    width: unset !important;
  }

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

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

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

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

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

  .w-sm-1px {
    width: 1px !important;
  }

  .w-sm-2px {
    width: 2px !important;
  }

  .w-sm-3px {
    width: 3px !important;
  }

  .w-sm-4px {
    width: 4px !important;
  }

  .w-sm-5px {
    width: 5px !important;
  }

  .w-sm-6px {
    width: 6px !important;
  }

  .w-sm-7px {
    width: 7px !important;
  }

  .w-sm-8px {
    width: 8px !important;
  }

  .w-sm-9px {
    width: 9px !important;
  }

  .w-sm-10px {
    width: 10px !important;
  }

  .w-sm-15px {
    width: 15px !important;
  }

  .w-sm-20px {
    width: 20px !important;
  }

  .w-sm-25px {
    width: 25px !important;
  }

  .w-sm-30px {
    width: 30px !important;
  }

  .w-sm-35px {
    width: 35px !important;
  }

  .w-sm-40px {
    width: 40px !important;
  }

  .w-sm-45px {
    width: 45px !important;
  }

  .w-sm-50px {
    width: 50px !important;
  }

  .w-sm-55px {
    width: 55px !important;
  }

  .w-sm-60px {
    width: 60px !important;
  }

  .w-sm-65px {
    width: 65px !important;
  }

  .w-sm-70px {
    width: 70px !important;
  }

  .w-sm-75px {
    width: 75px !important;
  }

  .w-sm-80px {
    width: 80px !important;
  }

  .w-sm-85px {
    width: 85px !important;
  }

  .w-sm-90px {
    width: 90px !important;
  }

  .w-sm-95px {
    width: 95px !important;
  }

  .w-sm-100px {
    width: 100px !important;
  }

  .w-sm-125px {
    width: 125px !important;
  }

  .w-sm-150px {
    width: 150px !important;
  }

  .w-sm-175px {
    width: 175px !important;
  }

  .w-sm-200px {
    width: 200px !important;
  }

  .w-sm-225px {
    width: 225px !important;
  }

  .w-sm-250px {
    width: 250px !important;
  }

  .w-sm-275px {
    width: 275px !important;
  }

  .w-sm-300px {
    width: 300px !important;
  }

  .w-sm-325px {
    width: 325px !important;
  }

  .w-sm-350px {
    width: 350px !important;
  }

  .w-sm-375px {
    width: 375px !important;
  }

  .w-sm-400px {
    width: 400px !important;
  }

  .w-sm-425px {
    width: 425px !important;
  }

  .w-sm-450px {
    width: 450px !important;
  }

  .w-sm-475px {
    width: 475px !important;
  }

  .w-sm-500px {
    width: 500px !important;
  }

  .w-sm-550px {
    width: 550px !important;
  }

  .w-sm-600px {
    width: 600px !important;
  }

  .w-sm-650px {
    width: 650px !important;
  }

  .w-sm-700px {
    width: 700px !important;
  }

  .w-sm-750px {
    width: 750px !important;
  }

  .w-sm-800px {
    width: 800px !important;
  }

  .w-sm-850px {
    width: 850px !important;
  }

  .w-sm-900px {
    width: 900px !important;
  }

  .w-sm-950px {
    width: 950px !important;
  }

  .w-sm-1000px {
    width: 1000px !important;
  }

  .mw-sm-unset {
    max-width: unset !important;
  }

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

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

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

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

  .mw-sm-auto {
    max-width: auto !important;
  }

  .mw-sm-1px {
    max-width: 1px !important;
  }

  .mw-sm-2px {
    max-width: 2px !important;
  }

  .mw-sm-3px {
    max-width: 3px !important;
  }

  .mw-sm-4px {
    max-width: 4px !important;
  }

  .mw-sm-5px {
    max-width: 5px !important;
  }

  .mw-sm-6px {
    max-width: 6px !important;
  }

  .mw-sm-7px {
    max-width: 7px !important;
  }

  .mw-sm-8px {
    max-width: 8px !important;
  }

  .mw-sm-9px {
    max-width: 9px !important;
  }

  .mw-sm-10px {
    max-width: 10px !important;
  }

  .mw-sm-15px {
    max-width: 15px !important;
  }

  .mw-sm-20px {
    max-width: 20px !important;
  }

  .mw-sm-25px {
    max-width: 25px !important;
  }

  .mw-sm-30px {
    max-width: 30px !important;
  }

  .mw-sm-35px {
    max-width: 35px !important;
  }

  .mw-sm-40px {
    max-width: 40px !important;
  }

  .mw-sm-45px {
    max-width: 45px !important;
  }

  .mw-sm-50px {
    max-width: 50px !important;
  }

  .mw-sm-55px {
    max-width: 55px !important;
  }

  .mw-sm-60px {
    max-width: 60px !important;
  }

  .mw-sm-65px {
    max-width: 65px !important;
  }

  .mw-sm-70px {
    max-width: 70px !important;
  }

  .mw-sm-75px {
    max-width: 75px !important;
  }

  .mw-sm-80px {
    max-width: 80px !important;
  }

  .mw-sm-85px {
    max-width: 85px !important;
  }

  .mw-sm-90px {
    max-width: 90px !important;
  }

  .mw-sm-95px {
    max-width: 95px !important;
  }

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

  .mw-sm-125px {
    max-width: 125px !important;
  }

  .mw-sm-150px {
    max-width: 150px !important;
  }

  .mw-sm-175px {
    max-width: 175px !important;
  }

  .mw-sm-200px {
    max-width: 200px !important;
  }

  .mw-sm-225px {
    max-width: 225px !important;
  }

  .mw-sm-250px {
    max-width: 250px !important;
  }

  .mw-sm-275px {
    max-width: 275px !important;
  }

  .mw-sm-300px {
    max-width: 300px !important;
  }

  .mw-sm-325px {
    max-width: 325px !important;
  }

  .mw-sm-350px {
    max-width: 350px !important;
  }

  .mw-sm-375px {
    max-width: 375px !important;
  }

  .mw-sm-400px {
    max-width: 400px !important;
  }

  .mw-sm-425px {
    max-width: 425px !important;
  }

  .mw-sm-450px {
    max-width: 450px !important;
  }

  .mw-sm-475px {
    max-width: 475px !important;
  }

  .mw-sm-500px {
    max-width: 500px !important;
  }

  .mw-sm-550px {
    max-width: 550px !important;
  }

  .mw-sm-600px {
    max-width: 600px !important;
  }

  .mw-sm-650px {
    max-width: 650px !important;
  }

  .mw-sm-700px {
    max-width: 700px !important;
  }

  .mw-sm-750px {
    max-width: 750px !important;
  }

  .mw-sm-800px {
    max-width: 800px !important;
  }

  .mw-sm-850px {
    max-width: 850px !important;
  }

  .mw-sm-900px {
    max-width: 900px !important;
  }

  .mw-sm-950px {
    max-width: 950px !important;
  }

  .mw-sm-1000px {
    max-width: 1000px !important;
  }

  .h-sm-unset {
    height: unset !important;
  }

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

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

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

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

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

  .h-sm-1px {
    height: 1px !important;
  }

  .h-sm-2px {
    height: 2px !important;
  }

  .h-sm-3px {
    height: 3px !important;
  }

  .h-sm-4px {
    height: 4px !important;
  }

  .h-sm-5px {
    height: 5px !important;
  }

  .h-sm-6px {
    height: 6px !important;
  }

  .h-sm-7px {
    height: 7px !important;
  }

  .h-sm-8px {
    height: 8px !important;
  }

  .h-sm-9px {
    height: 9px !important;
  }

  .h-sm-10px {
    height: 10px !important;
  }

  .h-sm-15px {
    height: 15px !important;
  }

  .h-sm-20px {
    height: 20px !important;
  }

  .h-sm-25px {
    height: 25px !important;
  }

  .h-sm-30px {
    height: 30px !important;
  }

  .h-sm-35px {
    height: 35px !important;
  }

  .h-sm-40px {
    height: 40px !important;
  }

  .h-sm-45px {
    height: 45px !important;
  }

  .h-sm-50px {
    height: 50px !important;
  }

  .h-sm-55px {
    height: 55px !important;
  }

  .h-sm-60px {
    height: 60px !important;
  }

  .h-sm-65px {
    height: 65px !important;
  }

  .h-sm-70px {
    height: 70px !important;
  }

  .h-sm-75px {
    height: 75px !important;
  }

  .h-sm-80px {
    height: 80px !important;
  }

  .h-sm-85px {
    height: 85px !important;
  }

  .h-sm-90px {
    height: 90px !important;
  }

  .h-sm-95px {
    height: 95px !important;
  }

  .h-sm-100px {
    height: 100px !important;
  }

  .h-sm-125px {
    height: 125px !important;
  }

  .h-sm-150px {
    height: 150px !important;
  }

  .h-sm-175px {
    height: 175px !important;
  }

  .h-sm-200px {
    height: 200px !important;
  }

  .h-sm-225px {
    height: 225px !important;
  }

  .h-sm-250px {
    height: 250px !important;
  }

  .h-sm-275px {
    height: 275px !important;
  }

  .h-sm-300px {
    height: 300px !important;
  }

  .h-sm-325px {
    height: 325px !important;
  }

  .h-sm-350px {
    height: 350px !important;
  }

  .h-sm-375px {
    height: 375px !important;
  }

  .h-sm-400px {
    height: 400px !important;
  }

  .h-sm-425px {
    height: 425px !important;
  }

  .h-sm-450px {
    height: 450px !important;
  }

  .h-sm-475px {
    height: 475px !important;
  }

  .h-sm-500px {
    height: 500px !important;
  }

  .h-sm-550px {
    height: 550px !important;
  }

  .h-sm-600px {
    height: 600px !important;
  }

  .h-sm-650px {
    height: 650px !important;
  }

  .h-sm-700px {
    height: 700px !important;
  }

  .h-sm-750px {
    height: 750px !important;
  }

  .h-sm-800px {
    height: 800px !important;
  }

  .h-sm-850px {
    height: 850px !important;
  }

  .h-sm-900px {
    height: 900px !important;
  }

  .h-sm-950px {
    height: 950px !important;
  }

  .h-sm-1000px {
    height: 1000px !important;
  }

  .mh-sm-unset {
    max-height: unset !important;
  }

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

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

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

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

  .mh-sm-auto {
    max-height: auto !important;
  }

  .mh-sm-1px {
    max-height: 1px !important;
  }

  .mh-sm-2px {
    max-height: 2px !important;
  }

  .mh-sm-3px {
    max-height: 3px !important;
  }

  .mh-sm-4px {
    max-height: 4px !important;
  }

  .mh-sm-5px {
    max-height: 5px !important;
  }

  .mh-sm-6px {
    max-height: 6px !important;
  }

  .mh-sm-7px {
    max-height: 7px !important;
  }

  .mh-sm-8px {
    max-height: 8px !important;
  }

  .mh-sm-9px {
    max-height: 9px !important;
  }

  .mh-sm-10px {
    max-height: 10px !important;
  }

  .mh-sm-15px {
    max-height: 15px !important;
  }

  .mh-sm-20px {
    max-height: 20px !important;
  }

  .mh-sm-25px {
    max-height: 25px !important;
  }

  .mh-sm-30px {
    max-height: 30px !important;
  }

  .mh-sm-35px {
    max-height: 35px !important;
  }

  .mh-sm-40px {
    max-height: 40px !important;
  }

  .mh-sm-45px {
    max-height: 45px !important;
  }

  .mh-sm-50px {
    max-height: 50px !important;
  }

  .mh-sm-55px {
    max-height: 55px !important;
  }

  .mh-sm-60px {
    max-height: 60px !important;
  }

  .mh-sm-65px {
    max-height: 65px !important;
  }

  .mh-sm-70px {
    max-height: 70px !important;
  }

  .mh-sm-75px {
    max-height: 75px !important;
  }

  .mh-sm-80px {
    max-height: 80px !important;
  }

  .mh-sm-85px {
    max-height: 85px !important;
  }

  .mh-sm-90px {
    max-height: 90px !important;
  }

  .mh-sm-95px {
    max-height: 95px !important;
  }

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

  .mh-sm-125px {
    max-height: 125px !important;
  }

  .mh-sm-150px {
    max-height: 150px !important;
  }

  .mh-sm-175px {
    max-height: 175px !important;
  }

  .mh-sm-200px {
    max-height: 200px !important;
  }

  .mh-sm-225px {
    max-height: 225px !important;
  }

  .mh-sm-250px {
    max-height: 250px !important;
  }

  .mh-sm-275px {
    max-height: 275px !important;
  }

  .mh-sm-300px {
    max-height: 300px !important;
  }

  .mh-sm-325px {
    max-height: 325px !important;
  }

  .mh-sm-350px {
    max-height: 350px !important;
  }

  .mh-sm-375px {
    max-height: 375px !important;
  }

  .mh-sm-400px {
    max-height: 400px !important;
  }

  .mh-sm-425px {
    max-height: 425px !important;
  }

  .mh-sm-450px {
    max-height: 450px !important;
  }

  .mh-sm-475px {
    max-height: 475px !important;
  }

  .mh-sm-500px {
    max-height: 500px !important;
  }

  .mh-sm-550px {
    max-height: 550px !important;
  }

  .mh-sm-600px {
    max-height: 600px !important;
  }

  .mh-sm-650px {
    max-height: 650px !important;
  }

  .mh-sm-700px {
    max-height: 700px !important;
  }

  .mh-sm-750px {
    max-height: 750px !important;
  }

  .mh-sm-800px {
    max-height: 800px !important;
  }

  .mh-sm-850px {
    max-height: 850px !important;
  }

  .mh-sm-900px {
    max-height: 900px !important;
  }

  .mh-sm-950px {
    max-height: 950px !important;
  }

  .mh-sm-1000px {
    max-height: 1000px !important;
  }

  .flex-sm-fill {
    flex: 1 1 auto !important;
  }

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

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

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

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

  .flex-sm-grow-0 {
    flex-grow: 0 !important;
  }

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

  .flex-sm-shrink-0 {
    flex-shrink: 0 !important;
  }

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

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

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

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

  .gap-sm-0 {
    gap: 0 !important;
  }

  .gap-sm-1 {
    gap: 0.25rem !important;
  }

  .gap-sm-2 {
    gap: 0.5rem !important;
  }

  .gap-sm-3 {
    gap: 0.75rem !important;
  }

  .gap-sm-4 {
    gap: 1rem !important;
  }

  .gap-sm-5 {
    gap: 1.25rem !important;
  }

  .gap-sm-6 {
    gap: 1.5rem !important;
  }

  .gap-sm-7 {
    gap: 1.75rem !important;
  }

  .gap-sm-8 {
    gap: 2rem !important;
  }

  .gap-sm-9 {
    gap: 2.25rem !important;
  }

  .gap-sm-10 {
    gap: 2.5rem !important;
  }

  .gap-sm-11 {
    gap: 2.75rem !important;
  }

  .gap-sm-12 {
    gap: 3rem !important;
  }

  .gap-sm-13 {
    gap: 3.25rem !important;
  }

  .gap-sm-14 {
    gap: 3.5rem !important;
  }

  .gap-sm-15 {
    gap: 3.75rem !important;
  }

  .gap-sm-16 {
    gap: 4rem !important;
  }

  .gap-sm-17 {
    gap: 4.25rem !important;
  }

  .gap-sm-18 {
    gap: 4.5rem !important;
  }

  .gap-sm-19 {
    gap: 4.75rem !important;
  }

  .gap-sm-20 {
    gap: 5rem !important;
  }

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

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

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

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

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

  .justify-content-sm-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

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

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

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

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

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

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

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

  .align-self-sm-auto {
    align-self: auto !important;
  }

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

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

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

  .align-self-sm-baseline {
    align-self: baseline !important;
  }

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

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

  .order-sm-0 {
    order: 0 !important;
  }

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

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

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

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

  .order-sm-5 {
    order: 5 !important;
  }

  .order-sm-last {
    order: 6 !important;
  }

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

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

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

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

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

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

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

  .m-sm-7 {
    margin: 1.75rem !important;
  }

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

  .m-sm-9 {
    margin: 2.25rem !important;
  }

  .m-sm-10 {
    margin: 2.5rem !important;
  }

  .m-sm-11 {
    margin: 2.75rem !important;
  }

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

  .m-sm-13 {
    margin: 3.25rem !important;
  }

  .m-sm-14 {
    margin: 3.5rem !important;
  }

  .m-sm-15 {
    margin: 3.75rem !important;
  }

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

  .m-sm-17 {
    margin: 4.25rem !important;
  }

  .m-sm-18 {
    margin: 4.5rem !important;
  }

  .m-sm-19 {
    margin: 4.75rem !important;
  }

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

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

  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-sm-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }

  .mx-sm-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-sm-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-sm-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-sm-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }

  .mx-sm-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .mx-sm-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }

  .mx-sm-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-sm-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }

  .mx-sm-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-sm-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }

  .mx-sm-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }

  .mx-sm-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

  .mx-sm-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .mx-sm-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important;
  }

  .mx-sm-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }

  .mx-sm-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important;
  }

  .mx-sm-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !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: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-sm-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .my-sm-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-sm-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-sm-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-sm-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .my-sm-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-sm-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .my-sm-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-sm-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .my-sm-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-sm-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }

  .my-sm-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .my-sm-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .my-sm-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .my-sm-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }

  .my-sm-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .my-sm-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
  }

  .my-sm-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

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

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

  .mt-sm-3 {
    margin-top: 0.75rem !important;
  }

  .mt-sm-4 {
    margin-top: 1rem !important;
  }

  .mt-sm-5 {
    margin-top: 1.25rem !important;
  }

  .mt-sm-6 {
    margin-top: 1.5rem !important;
  }

  .mt-sm-7 {
    margin-top: 1.75rem !important;
  }

  .mt-sm-8 {
    margin-top: 2rem !important;
  }

  .mt-sm-9 {
    margin-top: 2.25rem !important;
  }

  .mt-sm-10 {
    margin-top: 2.5rem !important;
  }

  .mt-sm-11 {
    margin-top: 2.75rem !important;
  }

  .mt-sm-12 {
    margin-top: 3rem !important;
  }

  .mt-sm-13 {
    margin-top: 3.25rem !important;
  }

  .mt-sm-14 {
    margin-top: 3.5rem !important;
  }

  .mt-sm-15 {
    margin-top: 3.75rem !important;
  }

  .mt-sm-16 {
    margin-top: 4rem !important;
  }

  .mt-sm-17 {
    margin-top: 4.25rem !important;
  }

  .mt-sm-18 {
    margin-top: 4.5rem !important;
  }

  .mt-sm-19 {
    margin-top: 4.75rem !important;
  }

  .mt-sm-20 {
    margin-top: 5rem !important;
  }

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

  .me-sm-0 {
    margin-right: 0 !important;
  }

  .me-sm-1 {
    margin-right: 0.25rem !important;
  }

  .me-sm-2 {
    margin-right: 0.5rem !important;
  }

  .me-sm-3 {
    margin-right: 0.75rem !important;
  }

  .me-sm-4 {
    margin-right: 1rem !important;
  }

  .me-sm-5 {
    margin-right: 1.25rem !important;
  }

  .me-sm-6 {
    margin-right: 1.5rem !important;
  }

  .me-sm-7 {
    margin-right: 1.75rem !important;
  }

  .me-sm-8 {
    margin-right: 2rem !important;
  }

  .me-sm-9 {
    margin-right: 2.25rem !important;
  }

  .me-sm-10 {
    margin-right: 2.5rem !important;
  }

  .me-sm-11 {
    margin-right: 2.75rem !important;
  }

  .me-sm-12 {
    margin-right: 3rem !important;
  }

  .me-sm-13 {
    margin-right: 3.25rem !important;
  }

  .me-sm-14 {
    margin-right: 3.5rem !important;
  }

  .me-sm-15 {
    margin-right: 3.75rem !important;
  }

  .me-sm-16 {
    margin-right: 4rem !important;
  }

  .me-sm-17 {
    margin-right: 4.25rem !important;
  }

  .me-sm-18 {
    margin-right: 4.5rem !important;
  }

  .me-sm-19 {
    margin-right: 4.75rem !important;
  }

  .me-sm-20 {
    margin-right: 5rem !important;
  }

  .me-sm-auto {
    margin-right: auto !important;
  }

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

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

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

  .mb-sm-3 {
    margin-bottom: 0.75rem !important;
  }

  .mb-sm-4 {
    margin-bottom: 1rem !important;
  }

  .mb-sm-5 {
    margin-bottom: 1.25rem !important;
  }

  .mb-sm-6 {
    margin-bottom: 1.5rem !important;
  }

  .mb-sm-7 {
    margin-bottom: 1.75rem !important;
  }

  .mb-sm-8 {
    margin-bottom: 2rem !important;
  }

  .mb-sm-9 {
    margin-bottom: 2.25rem !important;
  }

  .mb-sm-10 {
    margin-bottom: 2.5rem !important;
  }

  .mb-sm-11 {
    margin-bottom: 2.75rem !important;
  }

  .mb-sm-12 {
    margin-bottom: 3rem !important;
  }

  .mb-sm-13 {
    margin-bottom: 3.25rem !important;
  }

  .mb-sm-14 {
    margin-bottom: 3.5rem !important;
  }

  .mb-sm-15 {
    margin-bottom: 3.75rem !important;
  }

  .mb-sm-16 {
    margin-bottom: 4rem !important;
  }

  .mb-sm-17 {
    margin-bottom: 4.25rem !important;
  }

  .mb-sm-18 {
    margin-bottom: 4.5rem !important;
  }

  .mb-sm-19 {
    margin-bottom: 4.75rem !important;
  }

  .mb-sm-20 {
    margin-bottom: 5rem !important;
  }

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

  .ms-sm-0 {
    margin-left: 0 !important;
  }

  .ms-sm-1 {
    margin-left: 0.25rem !important;
  }

  .ms-sm-2 {
    margin-left: 0.5rem !important;
  }

  .ms-sm-3 {
    margin-left: 0.75rem !important;
  }

  .ms-sm-4 {
    margin-left: 1rem !important;
  }

  .ms-sm-5 {
    margin-left: 1.25rem !important;
  }

  .ms-sm-6 {
    margin-left: 1.5rem !important;
  }

  .ms-sm-7 {
    margin-left: 1.75rem !important;
  }

  .ms-sm-8 {
    margin-left: 2rem !important;
  }

  .ms-sm-9 {
    margin-left: 2.25rem !important;
  }

  .ms-sm-10 {
    margin-left: 2.5rem !important;
  }

  .ms-sm-11 {
    margin-left: 2.75rem !important;
  }

  .ms-sm-12 {
    margin-left: 3rem !important;
  }

  .ms-sm-13 {
    margin-left: 3.25rem !important;
  }

  .ms-sm-14 {
    margin-left: 3.5rem !important;
  }

  .ms-sm-15 {
    margin-left: 3.75rem !important;
  }

  .ms-sm-16 {
    margin-left: 4rem !important;
  }

  .ms-sm-17 {
    margin-left: 4.25rem !important;
  }

  .ms-sm-18 {
    margin-left: 4.5rem !important;
  }

  .ms-sm-19 {
    margin-left: 4.75rem !important;
  }

  .ms-sm-20 {
    margin-left: 5rem !important;
  }

  .ms-sm-auto {
    margin-left: auto !important;
  }

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

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

  .m-sm-n3 {
    margin: -0.75rem !important;
  }

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

  .m-sm-n5 {
    margin: -1.25rem !important;
  }

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

  .m-sm-n7 {
    margin: -1.75rem !important;
  }

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

  .m-sm-n9 {
    margin: -2.25rem !important;
  }

  .m-sm-n10 {
    margin: -2.5rem !important;
  }

  .m-sm-n11 {
    margin: -2.75rem !important;
  }

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

  .m-sm-n13 {
    margin: -3.25rem !important;
  }

  .m-sm-n14 {
    margin: -3.5rem !important;
  }

  .m-sm-n15 {
    margin: -3.75rem !important;
  }

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

  .m-sm-n17 {
    margin: -4.25rem !important;
  }

  .m-sm-n18 {
    margin: -4.5rem !important;
  }

  .m-sm-n19 {
    margin: -4.75rem !important;
  }

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

  .mx-sm-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-sm-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-sm-n3 {
    margin-right: -0.75rem !important;
    margin-left: -0.75rem !important;
  }

  .mx-sm-n4 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-sm-n5 {
    margin-right: -1.25rem !important;
    margin-left: -1.25rem !important;
  }

  .mx-sm-n6 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-sm-n7 {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important;
  }

  .mx-sm-n8 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }

  .mx-sm-n9 {
    margin-right: -2.25rem !important;
    margin-left: -2.25rem !important;
  }

  .mx-sm-n10 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }

  .mx-sm-n11 {
    margin-right: -2.75rem !important;
    margin-left: -2.75rem !important;
  }

  .mx-sm-n12 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .mx-sm-n13 {
    margin-right: -3.25rem !important;
    margin-left: -3.25rem !important;
  }

  .mx-sm-n14 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }

  .mx-sm-n15 {
    margin-right: -3.75rem !important;
    margin-left: -3.75rem !important;
  }

  .mx-sm-n16 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }

  .mx-sm-n17 {
    margin-right: -4.25rem !important;
    margin-left: -4.25rem !important;
  }

  .mx-sm-n18 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }

  .mx-sm-n19 {
    margin-right: -4.75rem !important;
    margin-left: -4.75rem !important;
  }

  .mx-sm-n20 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }

  .my-sm-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-sm-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-sm-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .my-sm-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-sm-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .my-sm-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-sm-n7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .my-sm-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .my-sm-n9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .my-sm-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .my-sm-n11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .my-sm-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .my-sm-n13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }

  .my-sm-n14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .my-sm-n15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }

  .my-sm-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .my-sm-n17 {
    margin-top: -4.25rem !important;
    margin-bottom: -4.25rem !important;
  }

  .my-sm-n18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

  .my-sm-n19 {
    margin-top: -4.75rem !important;
    margin-bottom: -4.75rem !important;
  }

  .my-sm-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .mt-sm-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-sm-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-sm-n3 {
    margin-top: -0.75rem !important;
  }

  .mt-sm-n4 {
    margin-top: -1rem !important;
  }

  .mt-sm-n5 {
    margin-top: -1.25rem !important;
  }

  .mt-sm-n6 {
    margin-top: -1.5rem !important;
  }

  .mt-sm-n7 {
    margin-top: -1.75rem !important;
  }

  .mt-sm-n8 {
    margin-top: -2rem !important;
  }

  .mt-sm-n9 {
    margin-top: -2.25rem !important;
  }

  .mt-sm-n10 {
    margin-top: -2.5rem !important;
  }

  .mt-sm-n11 {
    margin-top: -2.75rem !important;
  }

  .mt-sm-n12 {
    margin-top: -3rem !important;
  }

  .mt-sm-n13 {
    margin-top: -3.25rem !important;
  }

  .mt-sm-n14 {
    margin-top: -3.5rem !important;
  }

  .mt-sm-n15 {
    margin-top: -3.75rem !important;
  }

  .mt-sm-n16 {
    margin-top: -4rem !important;
  }

  .mt-sm-n17 {
    margin-top: -4.25rem !important;
  }

  .mt-sm-n18 {
    margin-top: -4.5rem !important;
  }

  .mt-sm-n19 {
    margin-top: -4.75rem !important;
  }

  .mt-sm-n20 {
    margin-top: -5rem !important;
  }

  .me-sm-n1 {
    margin-right: -0.25rem !important;
  }

  .me-sm-n2 {
    margin-right: -0.5rem !important;
  }

  .me-sm-n3 {
    margin-right: -0.75rem !important;
  }

  .me-sm-n4 {
    margin-right: -1rem !important;
  }

  .me-sm-n5 {
    margin-right: -1.25rem !important;
  }

  .me-sm-n6 {
    margin-right: -1.5rem !important;
  }

  .me-sm-n7 {
    margin-right: -1.75rem !important;
  }

  .me-sm-n8 {
    margin-right: -2rem !important;
  }

  .me-sm-n9 {
    margin-right: -2.25rem !important;
  }

  .me-sm-n10 {
    margin-right: -2.5rem !important;
  }

  .me-sm-n11 {
    margin-right: -2.75rem !important;
  }

  .me-sm-n12 {
    margin-right: -3rem !important;
  }

  .me-sm-n13 {
    margin-right: -3.25rem !important;
  }

  .me-sm-n14 {
    margin-right: -3.5rem !important;
  }

  .me-sm-n15 {
    margin-right: -3.75rem !important;
  }

  .me-sm-n16 {
    margin-right: -4rem !important;
  }

  .me-sm-n17 {
    margin-right: -4.25rem !important;
  }

  .me-sm-n18 {
    margin-right: -4.5rem !important;
  }

  .me-sm-n19 {
    margin-right: -4.75rem !important;
  }

  .me-sm-n20 {
    margin-right: -5rem !important;
  }

  .mb-sm-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-sm-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-sm-n3 {
    margin-bottom: -0.75rem !important;
  }

  .mb-sm-n4 {
    margin-bottom: -1rem !important;
  }

  .mb-sm-n5 {
    margin-bottom: -1.25rem !important;
  }

  .mb-sm-n6 {
    margin-bottom: -1.5rem !important;
  }

  .mb-sm-n7 {
    margin-bottom: -1.75rem !important;
  }

  .mb-sm-n8 {
    margin-bottom: -2rem !important;
  }

  .mb-sm-n9 {
    margin-bottom: -2.25rem !important;
  }

  .mb-sm-n10 {
    margin-bottom: -2.5rem !important;
  }

  .mb-sm-n11 {
    margin-bottom: -2.75rem !important;
  }

  .mb-sm-n12 {
    margin-bottom: -3rem !important;
  }

  .mb-sm-n13 {
    margin-bottom: -3.25rem !important;
  }

  .mb-sm-n14 {
    margin-bottom: -3.5rem !important;
  }

  .mb-sm-n15 {
    margin-bottom: -3.75rem !important;
  }

  .mb-sm-n16 {
    margin-bottom: -4rem !important;
  }

  .mb-sm-n17 {
    margin-bottom: -4.25rem !important;
  }

  .mb-sm-n18 {
    margin-bottom: -4.5rem !important;
  }

  .mb-sm-n19 {
    margin-bottom: -4.75rem !important;
  }

  .mb-sm-n20 {
    margin-bottom: -5rem !important;
  }

  .ms-sm-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-sm-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-sm-n3 {
    margin-left: -0.75rem !important;
  }

  .ms-sm-n4 {
    margin-left: -1rem !important;
  }

  .ms-sm-n5 {
    margin-left: -1.25rem !important;
  }

  .ms-sm-n6 {
    margin-left: -1.5rem !important;
  }

  .ms-sm-n7 {
    margin-left: -1.75rem !important;
  }

  .ms-sm-n8 {
    margin-left: -2rem !important;
  }

  .ms-sm-n9 {
    margin-left: -2.25rem !important;
  }

  .ms-sm-n10 {
    margin-left: -2.5rem !important;
  }

  .ms-sm-n11 {
    margin-left: -2.75rem !important;
  }

  .ms-sm-n12 {
    margin-left: -3rem !important;
  }

  .ms-sm-n13 {
    margin-left: -3.25rem !important;
  }

  .ms-sm-n14 {
    margin-left: -3.5rem !important;
  }

  .ms-sm-n15 {
    margin-left: -3.75rem !important;
  }

  .ms-sm-n16 {
    margin-left: -4rem !important;
  }

  .ms-sm-n17 {
    margin-left: -4.25rem !important;
  }

  .ms-sm-n18 {
    margin-left: -4.5rem !important;
  }

  .ms-sm-n19 {
    margin-left: -4.75rem !important;
  }

  .ms-sm-n20 {
    margin-left: -5rem !important;
  }

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

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

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

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

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

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

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

  .p-sm-7 {
    padding: 1.75rem !important;
  }

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

  .p-sm-9 {
    padding: 2.25rem !important;
  }

  .p-sm-10 {
    padding: 2.5rem !important;
  }

  .p-sm-11 {
    padding: 2.75rem !important;
  }

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

  .p-sm-13 {
    padding: 3.25rem !important;
  }

  .p-sm-14 {
    padding: 3.5rem !important;
  }

  .p-sm-15 {
    padding: 3.75rem !important;
  }

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

  .p-sm-17 {
    padding: 4.25rem !important;
  }

  .p-sm-18 {
    padding: 4.5rem !important;
  }

  .p-sm-19 {
    padding: 4.75rem !important;
  }

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

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

  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-sm-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }

  .px-sm-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-sm-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-sm-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-sm-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }

  .px-sm-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .px-sm-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }

  .px-sm-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-sm-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }

  .px-sm-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-sm-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }

  .px-sm-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }

  .px-sm-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

  .px-sm-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .px-sm-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important;
  }

  .px-sm-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }

  .px-sm-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important;
  }

  .px-sm-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }

  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-sm-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .py-sm-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-sm-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-sm-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-sm-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .py-sm-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-sm-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .py-sm-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-sm-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .py-sm-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-sm-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .py-sm-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .py-sm-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .py-sm-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-sm-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }

  .py-sm-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .py-sm-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }

  .py-sm-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

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

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

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

  .pt-sm-3 {
    padding-top: 0.75rem !important;
  }

  .pt-sm-4 {
    padding-top: 1rem !important;
  }

  .pt-sm-5 {
    padding-top: 1.25rem !important;
  }

  .pt-sm-6 {
    padding-top: 1.5rem !important;
  }

  .pt-sm-7 {
    padding-top: 1.75rem !important;
  }

  .pt-sm-8 {
    padding-top: 2rem !important;
  }

  .pt-sm-9 {
    padding-top: 2.25rem !important;
  }

  .pt-sm-10 {
    padding-top: 2.5rem !important;
  }

  .pt-sm-11 {
    padding-top: 2.75rem !important;
  }

  .pt-sm-12 {
    padding-top: 3rem !important;
  }

  .pt-sm-13 {
    padding-top: 3.25rem !important;
  }

  .pt-sm-14 {
    padding-top: 3.5rem !important;
  }

  .pt-sm-15 {
    padding-top: 3.75rem !important;
  }

  .pt-sm-16 {
    padding-top: 4rem !important;
  }

  .pt-sm-17 {
    padding-top: 4.25rem !important;
  }

  .pt-sm-18 {
    padding-top: 4.5rem !important;
  }

  .pt-sm-19 {
    padding-top: 4.75rem !important;
  }

  .pt-sm-20 {
    padding-top: 5rem !important;
  }

  .pe-sm-0 {
    padding-right: 0 !important;
  }

  .pe-sm-1 {
    padding-right: 0.25rem !important;
  }

  .pe-sm-2 {
    padding-right: 0.5rem !important;
  }

  .pe-sm-3 {
    padding-right: 0.75rem !important;
  }

  .pe-sm-4 {
    padding-right: 1rem !important;
  }

  .pe-sm-5 {
    padding-right: 1.25rem !important;
  }

  .pe-sm-6 {
    padding-right: 1.5rem !important;
  }

  .pe-sm-7 {
    padding-right: 1.75rem !important;
  }

  .pe-sm-8 {
    padding-right: 2rem !important;
  }

  .pe-sm-9 {
    padding-right: 2.25rem !important;
  }

  .pe-sm-10 {
    padding-right: 2.5rem !important;
  }

  .pe-sm-11 {
    padding-right: 2.75rem !important;
  }

  .pe-sm-12 {
    padding-right: 3rem !important;
  }

  .pe-sm-13 {
    padding-right: 3.25rem !important;
  }

  .pe-sm-14 {
    padding-right: 3.5rem !important;
  }

  .pe-sm-15 {
    padding-right: 3.75rem !important;
  }

  .pe-sm-16 {
    padding-right: 4rem !important;
  }

  .pe-sm-17 {
    padding-right: 4.25rem !important;
  }

  .pe-sm-18 {
    padding-right: 4.5rem !important;
  }

  .pe-sm-19 {
    padding-right: 4.75rem !important;
  }

  .pe-sm-20 {
    padding-right: 5rem !important;
  }

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

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

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

  .pb-sm-3 {
    padding-bottom: 0.75rem !important;
  }

  .pb-sm-4 {
    padding-bottom: 1rem !important;
  }

  .pb-sm-5 {
    padding-bottom: 1.25rem !important;
  }

  .pb-sm-6 {
    padding-bottom: 1.5rem !important;
  }

  .pb-sm-7 {
    padding-bottom: 1.75rem !important;
  }

  .pb-sm-8 {
    padding-bottom: 2rem !important;
  }

  .pb-sm-9 {
    padding-bottom: 2.25rem !important;
  }

  .pb-sm-10 {
    padding-bottom: 2.5rem !important;
  }

  .pb-sm-11 {
    padding-bottom: 2.75rem !important;
  }

  .pb-sm-12 {
    padding-bottom: 3rem !important;
  }

  .pb-sm-13 {
    padding-bottom: 3.25rem !important;
  }

  .pb-sm-14 {
    padding-bottom: 3.5rem !important;
  }

  .pb-sm-15 {
    padding-bottom: 3.75rem !important;
  }

  .pb-sm-16 {
    padding-bottom: 4rem !important;
  }

  .pb-sm-17 {
    padding-bottom: 4.25rem !important;
  }

  .pb-sm-18 {
    padding-bottom: 4.5rem !important;
  }

  .pb-sm-19 {
    padding-bottom: 4.75rem !important;
  }

  .pb-sm-20 {
    padding-bottom: 5rem !important;
  }

  .ps-sm-0 {
    padding-left: 0 !important;
  }

  .ps-sm-1 {
    padding-left: 0.25rem !important;
  }

  .ps-sm-2 {
    padding-left: 0.5rem !important;
  }

  .ps-sm-3 {
    padding-left: 0.75rem !important;
  }

  .ps-sm-4 {
    padding-left: 1rem !important;
  }

  .ps-sm-5 {
    padding-left: 1.25rem !important;
  }

  .ps-sm-6 {
    padding-left: 1.5rem !important;
  }

  .ps-sm-7 {
    padding-left: 1.75rem !important;
  }

  .ps-sm-8 {
    padding-left: 2rem !important;
  }

  .ps-sm-9 {
    padding-left: 2.25rem !important;
  }

  .ps-sm-10 {
    padding-left: 2.5rem !important;
  }

  .ps-sm-11 {
    padding-left: 2.75rem !important;
  }

  .ps-sm-12 {
    padding-left: 3rem !important;
  }

  .ps-sm-13 {
    padding-left: 3.25rem !important;
  }

  .ps-sm-14 {
    padding-left: 3.5rem !important;
  }

  .ps-sm-15 {
    padding-left: 3.75rem !important;
  }

  .ps-sm-16 {
    padding-left: 4rem !important;
  }

  .ps-sm-17 {
    padding-left: 4.25rem !important;
  }

  .ps-sm-18 {
    padding-left: 4.5rem !important;
  }

  .ps-sm-19 {
    padding-left: 4.75rem !important;
  }

  .ps-sm-20 {
    padding-left: 5rem !important;
  }

  .fs-sm-1 {
    font-size: calc(1.3rem + 0.6vw) !important;
  }

  .fs-sm-2 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }

  .fs-sm-3 {
    font-size: calc(1.26rem + 0.12vw) !important;
  }

  .fs-sm-4 {
    font-size: 1.25rem !important;
  }

  .fs-sm-5 {
    font-size: 1.15rem !important;
  }

  .fs-sm-6 {
    font-size: 1.075rem !important;
  }

  .fs-sm-7 {
    font-size: 0.95rem !important;
  }

  .fs-sm-8 {
    font-size: 0.85rem !important;
  }

  .fs-sm-9 {
    font-size: 0.75rem !important;
  }

  .fs-sm-10 {
    font-size: 0.5rem !important;
  }

  .fs-sm-base {
    font-size: 1rem !important;
  }

  .fs-sm-fluid {
    font-size: 100% !important;
  }

  .fs-sm-2x {
    font-size: calc(1.325rem + 0.9vw) !important;
  }

  .fs-sm-2qx {
    font-size: calc(1.35rem + 1.2vw) !important;
  }

  .fs-sm-2hx {
    font-size: calc(1.375rem + 1.5vw) !important;
  }

  .fs-sm-2tx {
    font-size: calc(1.4rem + 1.8vw) !important;
  }

  .fs-sm-3x {
    font-size: calc(1.425rem + 2.1vw) !important;
  }

  .fs-sm-3qx {
    font-size: calc(1.45rem + 2.4vw) !important;
  }

  .fs-sm-3hx {
    font-size: calc(1.475rem + 2.7vw) !important;
  }

  .fs-sm-3tx {
    font-size: calc(1.5rem + 3vw) !important;
  }

  .fs-sm-4x {
    font-size: calc(1.525rem + 3.3vw) !important;
  }

  .fs-sm-4qx {
    font-size: calc(1.55rem + 3.6vw) !important;
  }

  .fs-sm-4hx {
    font-size: calc(1.575rem + 3.9vw) !important;
  }

  .fs-sm-4tx {
    font-size: calc(1.6rem + 4.2vw) !important;
  }

  .fs-sm-5x {
    font-size: calc(1.625rem + 4.5vw) !important;
  }

  .fs-sm-5qx {
    font-size: calc(1.65rem + 4.8vw) !important;
  }

  .fs-sm-5hx {
    font-size: calc(1.675rem + 5.1vw) !important;
  }

  .fs-sm-5tx {
    font-size: calc(1.7rem + 5.4vw) !important;
  }

  .text-sm-start {
    text-align: left !important;
  }

  .text-sm-end {
    text-align: right !important;
  }

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

  .min-w-sm-unset {
    min-width: unset !important;
  }

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

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

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

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

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

  .min-w-sm-1px {
    min-width: 1px !important;
  }

  .min-w-sm-2px {
    min-width: 2px !important;
  }

  .min-w-sm-3px {
    min-width: 3px !important;
  }

  .min-w-sm-4px {
    min-width: 4px !important;
  }

  .min-w-sm-5px {
    min-width: 5px !important;
  }

  .min-w-sm-6px {
    min-width: 6px !important;
  }

  .min-w-sm-7px {
    min-width: 7px !important;
  }

  .min-w-sm-8px {
    min-width: 8px !important;
  }

  .min-w-sm-9px {
    min-width: 9px !important;
  }

  .min-w-sm-10px {
    min-width: 10px !important;
  }

  .min-w-sm-15px {
    min-width: 15px !important;
  }

  .min-w-sm-20px {
    min-width: 20px !important;
  }

  .min-w-sm-25px {
    min-width: 25px !important;
  }

  .min-w-sm-30px {
    min-width: 30px !important;
  }

  .min-w-sm-35px {
    min-width: 35px !important;
  }

  .min-w-sm-40px {
    min-width: 40px !important;
  }

  .min-w-sm-45px {
    min-width: 45px !important;
  }

  .min-w-sm-50px {
    min-width: 50px !important;
  }

  .min-w-sm-55px {
    min-width: 55px !important;
  }

  .min-w-sm-60px {
    min-width: 60px !important;
  }

  .min-w-sm-65px {
    min-width: 65px !important;
  }

  .min-w-sm-70px {
    min-width: 70px !important;
  }

  .min-w-sm-75px {
    min-width: 75px !important;
  }

  .min-w-sm-80px {
    min-width: 80px !important;
  }

  .min-w-sm-85px {
    min-width: 85px !important;
  }

  .min-w-sm-90px {
    min-width: 90px !important;
  }

  .min-w-sm-95px {
    min-width: 95px !important;
  }

  .min-w-sm-100px {
    min-width: 100px !important;
  }

  .min-w-sm-125px {
    min-width: 125px !important;
  }

  .min-w-sm-150px {
    min-width: 150px !important;
  }

  .min-w-sm-175px {
    min-width: 175px !important;
  }

  .min-w-sm-200px {
    min-width: 200px !important;
  }

  .min-w-sm-225px {
    min-width: 225px !important;
  }

  .min-w-sm-250px {
    min-width: 250px !important;
  }

  .min-w-sm-275px {
    min-width: 275px !important;
  }

  .min-w-sm-300px {
    min-width: 300px !important;
  }

  .min-w-sm-325px {
    min-width: 325px !important;
  }

  .min-w-sm-350px {
    min-width: 350px !important;
  }

  .min-w-sm-375px {
    min-width: 375px !important;
  }

  .min-w-sm-400px {
    min-width: 400px !important;
  }

  .min-w-sm-425px {
    min-width: 425px !important;
  }

  .min-w-sm-450px {
    min-width: 450px !important;
  }

  .min-w-sm-475px {
    min-width: 475px !important;
  }

  .min-w-sm-500px {
    min-width: 500px !important;
  }

  .min-w-sm-550px {
    min-width: 550px !important;
  }

  .min-w-sm-600px {
    min-width: 600px !important;
  }

  .min-w-sm-650px {
    min-width: 650px !important;
  }

  .min-w-sm-700px {
    min-width: 700px !important;
  }

  .min-w-sm-750px {
    min-width: 750px !important;
  }

  .min-w-sm-800px {
    min-width: 800px !important;
  }

  .min-w-sm-850px {
    min-width: 850px !important;
  }

  .min-w-sm-900px {
    min-width: 900px !important;
  }

  .min-w-sm-950px {
    min-width: 950px !important;
  }

  .min-w-sm-1000px {
    min-width: 1000px !important;
  }

  .min-h-sm-unset {
    min-height: unset !important;
  }

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

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

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

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

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

  .min-h-sm-1px {
    min-height: 1px !important;
  }

  .min-h-sm-2px {
    min-height: 2px !important;
  }

  .min-h-sm-3px {
    min-height: 3px !important;
  }

  .min-h-sm-4px {
    min-height: 4px !important;
  }

  .min-h-sm-5px {
    min-height: 5px !important;
  }

  .min-h-sm-6px {
    min-height: 6px !important;
  }

  .min-h-sm-7px {
    min-height: 7px !important;
  }

  .min-h-sm-8px {
    min-height: 8px !important;
  }

  .min-h-sm-9px {
    min-height: 9px !important;
  }

  .min-h-sm-10px {
    min-height: 10px !important;
  }

  .min-h-sm-15px {
    min-height: 15px !important;
  }

  .min-h-sm-20px {
    min-height: 20px !important;
  }

  .min-h-sm-25px {
    min-height: 25px !important;
  }

  .min-h-sm-30px {
    min-height: 30px !important;
  }

  .min-h-sm-35px {
    min-height: 35px !important;
  }

  .min-h-sm-40px {
    min-height: 40px !important;
  }

  .min-h-sm-45px {
    min-height: 45px !important;
  }

  .min-h-sm-50px {
    min-height: 50px !important;
  }

  .min-h-sm-55px {
    min-height: 55px !important;
  }

  .min-h-sm-60px {
    min-height: 60px !important;
  }

  .min-h-sm-65px {
    min-height: 65px !important;
  }

  .min-h-sm-70px {
    min-height: 70px !important;
  }

  .min-h-sm-75px {
    min-height: 75px !important;
  }

  .min-h-sm-80px {
    min-height: 80px !important;
  }

  .min-h-sm-85px {
    min-height: 85px !important;
  }

  .min-h-sm-90px {
    min-height: 90px !important;
  }

  .min-h-sm-95px {
    min-height: 95px !important;
  }

  .min-h-sm-100px {
    min-height: 100px !important;
  }

  .min-h-sm-125px {
    min-height: 125px !important;
  }

  .min-h-sm-150px {
    min-height: 150px !important;
  }

  .min-h-sm-175px {
    min-height: 175px !important;
  }

  .min-h-sm-200px {
    min-height: 200px !important;
  }

  .min-h-sm-225px {
    min-height: 225px !important;
  }

  .min-h-sm-250px {
    min-height: 250px !important;
  }

  .min-h-sm-275px {
    min-height: 275px !important;
  }

  .min-h-sm-300px {
    min-height: 300px !important;
  }

  .min-h-sm-325px {
    min-height: 325px !important;
  }

  .min-h-sm-350px {
    min-height: 350px !important;
  }

  .min-h-sm-375px {
    min-height: 375px !important;
  }

  .min-h-sm-400px {
    min-height: 400px !important;
  }

  .min-h-sm-425px {
    min-height: 425px !important;
  }

  .min-h-sm-450px {
    min-height: 450px !important;
  }

  .min-h-sm-475px {
    min-height: 475px !important;
  }

  .min-h-sm-500px {
    min-height: 500px !important;
  }

  .min-h-sm-550px {
    min-height: 550px !important;
  }

  .min-h-sm-600px {
    min-height: 600px !important;
  }

  .min-h-sm-650px {
    min-height: 650px !important;
  }

  .min-h-sm-700px {
    min-height: 700px !important;
  }

  .min-h-sm-750px {
    min-height: 750px !important;
  }

  .min-h-sm-800px {
    min-height: 800px !important;
  }

  .min-h-sm-850px {
    min-height: 850px !important;
  }

  .min-h-sm-900px {
    min-height: 900px !important;
  }

  .min-h-sm-950px {
    min-height: 950px !important;
  }

  .min-h-sm-1000px {
    min-height: 1000px !important;
  }
}
@media (min-width: 768px) {
  .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: flex !important;
  }

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

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

  .position-md-static {
    position: static !important;
  }

  .position-md-relative {
    position: relative !important;
  }

  .position-md-absolute {
    position: absolute !important;
  }

  .position-md-fixed {
    position: fixed !important;
  }

  .position-md-sticky {
    position: sticky !important;
  }

  .w-md-unset {
    width: unset !important;
  }

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

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

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

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

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

  .w-md-1px {
    width: 1px !important;
  }

  .w-md-2px {
    width: 2px !important;
  }

  .w-md-3px {
    width: 3px !important;
  }

  .w-md-4px {
    width: 4px !important;
  }

  .w-md-5px {
    width: 5px !important;
  }

  .w-md-6px {
    width: 6px !important;
  }

  .w-md-7px {
    width: 7px !important;
  }

  .w-md-8px {
    width: 8px !important;
  }

  .w-md-9px {
    width: 9px !important;
  }

  .w-md-10px {
    width: 10px !important;
  }

  .w-md-15px {
    width: 15px !important;
  }

  .w-md-20px {
    width: 20px !important;
  }

  .w-md-25px {
    width: 25px !important;
  }

  .w-md-30px {
    width: 30px !important;
  }

  .w-md-35px {
    width: 35px !important;
  }

  .w-md-40px {
    width: 40px !important;
  }

  .w-md-45px {
    width: 45px !important;
  }

  .w-md-50px {
    width: 50px !important;
  }

  .w-md-55px {
    width: 55px !important;
  }

  .w-md-60px {
    width: 60px !important;
  }

  .w-md-65px {
    width: 65px !important;
  }

  .w-md-70px {
    width: 70px !important;
  }

  .w-md-75px {
    width: 75px !important;
  }

  .w-md-80px {
    width: 80px !important;
  }

  .w-md-85px {
    width: 85px !important;
  }

  .w-md-90px {
    width: 90px !important;
  }

  .w-md-95px {
    width: 95px !important;
  }

  .w-md-100px {
    width: 100px !important;
  }

  .w-md-125px {
    width: 125px !important;
  }

  .w-md-150px {
    width: 150px !important;
  }

  .w-md-175px {
    width: 175px !important;
  }

  .w-md-200px {
    width: 200px !important;
  }

  .w-md-225px {
    width: 225px !important;
  }

  .w-md-250px {
    width: 250px !important;
  }

  .w-md-275px {
    width: 275px !important;
  }

  .w-md-300px {
    width: 300px !important;
  }

  .w-md-325px {
    width: 325px !important;
  }

  .w-md-350px {
    width: 350px !important;
  }

  .w-md-375px {
    width: 375px !important;
  }

  .w-md-400px {
    width: 400px !important;
  }

  .w-md-425px {
    width: 425px !important;
  }

  .w-md-450px {
    width: 450px !important;
  }

  .w-md-475px {
    width: 475px !important;
  }

  .w-md-500px {
    width: 500px !important;
  }

  .w-md-550px {
    width: 550px !important;
  }

  .w-md-600px {
    width: 600px !important;
  }

  .w-md-650px {
    width: 650px !important;
  }

  .w-md-700px {
    width: 700px !important;
  }

  .w-md-750px {
    width: 750px !important;
  }

  .w-md-800px {
    width: 800px !important;
  }

  .w-md-850px {
    width: 850px !important;
  }

  .w-md-900px {
    width: 900px !important;
  }

  .w-md-950px {
    width: 950px !important;
  }

  .w-md-1000px {
    width: 1000px !important;
  }

  .mw-md-unset {
    max-width: unset !important;
  }

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

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

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

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

  .mw-md-auto {
    max-width: auto !important;
  }

  .mw-md-1px {
    max-width: 1px !important;
  }

  .mw-md-2px {
    max-width: 2px !important;
  }

  .mw-md-3px {
    max-width: 3px !important;
  }

  .mw-md-4px {
    max-width: 4px !important;
  }

  .mw-md-5px {
    max-width: 5px !important;
  }

  .mw-md-6px {
    max-width: 6px !important;
  }

  .mw-md-7px {
    max-width: 7px !important;
  }

  .mw-md-8px {
    max-width: 8px !important;
  }

  .mw-md-9px {
    max-width: 9px !important;
  }

  .mw-md-10px {
    max-width: 10px !important;
  }

  .mw-md-15px {
    max-width: 15px !important;
  }

  .mw-md-20px {
    max-width: 20px !important;
  }

  .mw-md-25px {
    max-width: 25px !important;
  }

  .mw-md-30px {
    max-width: 30px !important;
  }

  .mw-md-35px {
    max-width: 35px !important;
  }

  .mw-md-40px {
    max-width: 40px !important;
  }

  .mw-md-45px {
    max-width: 45px !important;
  }

  .mw-md-50px {
    max-width: 50px !important;
  }

  .mw-md-55px {
    max-width: 55px !important;
  }

  .mw-md-60px {
    max-width: 60px !important;
  }

  .mw-md-65px {
    max-width: 65px !important;
  }

  .mw-md-70px {
    max-width: 70px !important;
  }

  .mw-md-75px {
    max-width: 75px !important;
  }

  .mw-md-80px {
    max-width: 80px !important;
  }

  .mw-md-85px {
    max-width: 85px !important;
  }

  .mw-md-90px {
    max-width: 90px !important;
  }

  .mw-md-95px {
    max-width: 95px !important;
  }

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

  .mw-md-125px {
    max-width: 125px !important;
  }

  .mw-md-150px {
    max-width: 150px !important;
  }

  .mw-md-175px {
    max-width: 175px !important;
  }

  .mw-md-200px {
    max-width: 200px !important;
  }

  .mw-md-225px {
    max-width: 225px !important;
  }

  .mw-md-250px {
    max-width: 250px !important;
  }

  .mw-md-275px {
    max-width: 275px !important;
  }

  .mw-md-300px {
    max-width: 300px !important;
  }

  .mw-md-325px {
    max-width: 325px !important;
  }

  .mw-md-350px {
    max-width: 350px !important;
  }

  .mw-md-375px {
    max-width: 375px !important;
  }

  .mw-md-400px {
    max-width: 400px !important;
  }

  .mw-md-425px {
    max-width: 425px !important;
  }

  .mw-md-450px {
    max-width: 450px !important;
  }

  .mw-md-475px {
    max-width: 475px !important;
  }

  .mw-md-500px {
    max-width: 500px !important;
  }

  .mw-md-550px {
    max-width: 550px !important;
  }

  .mw-md-600px {
    max-width: 600px !important;
  }

  .mw-md-650px {
    max-width: 650px !important;
  }

  .mw-md-700px {
    max-width: 700px !important;
  }

  .mw-md-750px {
    max-width: 750px !important;
  }

  .mw-md-800px {
    max-width: 800px !important;
  }

  .mw-md-850px {
    max-width: 850px !important;
  }

  .mw-md-900px {
    max-width: 900px !important;
  }

  .mw-md-950px {
    max-width: 950px !important;
  }

  .mw-md-1000px {
    max-width: 1000px !important;
  }

  .h-md-unset {
    height: unset !important;
  }

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

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

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

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

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

  .h-md-1px {
    height: 1px !important;
  }

  .h-md-2px {
    height: 2px !important;
  }

  .h-md-3px {
    height: 3px !important;
  }

  .h-md-4px {
    height: 4px !important;
  }

  .h-md-5px {
    height: 5px !important;
  }

  .h-md-6px {
    height: 6px !important;
  }

  .h-md-7px {
    height: 7px !important;
  }

  .h-md-8px {
    height: 8px !important;
  }

  .h-md-9px {
    height: 9px !important;
  }

  .h-md-10px {
    height: 10px !important;
  }

  .h-md-15px {
    height: 15px !important;
  }

  .h-md-20px {
    height: 20px !important;
  }

  .h-md-25px {
    height: 25px !important;
  }

  .h-md-30px {
    height: 30px !important;
  }

  .h-md-35px {
    height: 35px !important;
  }

  .h-md-40px {
    height: 40px !important;
  }

  .h-md-45px {
    height: 45px !important;
  }

  .h-md-50px {
    height: 50px !important;
  }

  .h-md-55px {
    height: 55px !important;
  }

  .h-md-60px {
    height: 60px !important;
  }

  .h-md-65px {
    height: 65px !important;
  }

  .h-md-70px {
    height: 70px !important;
  }

  .h-md-75px {
    height: 75px !important;
  }

  .h-md-80px {
    height: 80px !important;
  }

  .h-md-85px {
    height: 85px !important;
  }

  .h-md-90px {
    height: 90px !important;
  }

  .h-md-95px {
    height: 95px !important;
  }

  .h-md-100px {
    height: 100px !important;
  }

  .h-md-125px {
    height: 125px !important;
  }

  .h-md-150px {
    height: 150px !important;
  }

  .h-md-175px {
    height: 175px !important;
  }

  .h-md-200px {
    height: 200px !important;
  }

  .h-md-225px {
    height: 225px !important;
  }

  .h-md-250px {
    height: 250px !important;
  }

  .h-md-275px {
    height: 275px !important;
  }

  .h-md-300px {
    height: 300px !important;
  }

  .h-md-325px {
    height: 325px !important;
  }

  .h-md-350px {
    height: 350px !important;
  }

  .h-md-375px {
    height: 375px !important;
  }

  .h-md-400px {
    height: 400px !important;
  }

  .h-md-425px {
    height: 425px !important;
  }

  .h-md-450px {
    height: 450px !important;
  }

  .h-md-475px {
    height: 475px !important;
  }

  .h-md-500px {
    height: 500px !important;
  }

  .h-md-550px {
    height: 550px !important;
  }

  .h-md-600px {
    height: 600px !important;
  }

  .h-md-650px {
    height: 650px !important;
  }

  .h-md-700px {
    height: 700px !important;
  }

  .h-md-750px {
    height: 750px !important;
  }

  .h-md-800px {
    height: 800px !important;
  }

  .h-md-850px {
    height: 850px !important;
  }

  .h-md-900px {
    height: 900px !important;
  }

  .h-md-950px {
    height: 950px !important;
  }

  .h-md-1000px {
    height: 1000px !important;
  }

  .mh-md-unset {
    max-height: unset !important;
  }

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

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

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

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

  .mh-md-auto {
    max-height: auto !important;
  }

  .mh-md-1px {
    max-height: 1px !important;
  }

  .mh-md-2px {
    max-height: 2px !important;
  }

  .mh-md-3px {
    max-height: 3px !important;
  }

  .mh-md-4px {
    max-height: 4px !important;
  }

  .mh-md-5px {
    max-height: 5px !important;
  }

  .mh-md-6px {
    max-height: 6px !important;
  }

  .mh-md-7px {
    max-height: 7px !important;
  }

  .mh-md-8px {
    max-height: 8px !important;
  }

  .mh-md-9px {
    max-height: 9px !important;
  }

  .mh-md-10px {
    max-height: 10px !important;
  }

  .mh-md-15px {
    max-height: 15px !important;
  }

  .mh-md-20px {
    max-height: 20px !important;
  }

  .mh-md-25px {
    max-height: 25px !important;
  }

  .mh-md-30px {
    max-height: 30px !important;
  }

  .mh-md-35px {
    max-height: 35px !important;
  }

  .mh-md-40px {
    max-height: 40px !important;
  }

  .mh-md-45px {
    max-height: 45px !important;
  }

  .mh-md-50px {
    max-height: 50px !important;
  }

  .mh-md-55px {
    max-height: 55px !important;
  }

  .mh-md-60px {
    max-height: 60px !important;
  }

  .mh-md-65px {
    max-height: 65px !important;
  }

  .mh-md-70px {
    max-height: 70px !important;
  }

  .mh-md-75px {
    max-height: 75px !important;
  }

  .mh-md-80px {
    max-height: 80px !important;
  }

  .mh-md-85px {
    max-height: 85px !important;
  }

  .mh-md-90px {
    max-height: 90px !important;
  }

  .mh-md-95px {
    max-height: 95px !important;
  }

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

  .mh-md-125px {
    max-height: 125px !important;
  }

  .mh-md-150px {
    max-height: 150px !important;
  }

  .mh-md-175px {
    max-height: 175px !important;
  }

  .mh-md-200px {
    max-height: 200px !important;
  }

  .mh-md-225px {
    max-height: 225px !important;
  }

  .mh-md-250px {
    max-height: 250px !important;
  }

  .mh-md-275px {
    max-height: 275px !important;
  }

  .mh-md-300px {
    max-height: 300px !important;
  }

  .mh-md-325px {
    max-height: 325px !important;
  }

  .mh-md-350px {
    max-height: 350px !important;
  }

  .mh-md-375px {
    max-height: 375px !important;
  }

  .mh-md-400px {
    max-height: 400px !important;
  }

  .mh-md-425px {
    max-height: 425px !important;
  }

  .mh-md-450px {
    max-height: 450px !important;
  }

  .mh-md-475px {
    max-height: 475px !important;
  }

  .mh-md-500px {
    max-height: 500px !important;
  }

  .mh-md-550px {
    max-height: 550px !important;
  }

  .mh-md-600px {
    max-height: 600px !important;
  }

  .mh-md-650px {
    max-height: 650px !important;
  }

  .mh-md-700px {
    max-height: 700px !important;
  }

  .mh-md-750px {
    max-height: 750px !important;
  }

  .mh-md-800px {
    max-height: 800px !important;
  }

  .mh-md-850px {
    max-height: 850px !important;
  }

  .mh-md-900px {
    max-height: 900px !important;
  }

  .mh-md-950px {
    max-height: 950px !important;
  }

  .mh-md-1000px {
    max-height: 1000px !important;
  }

  .flex-md-fill {
    flex: 1 1 auto !important;
  }

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

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

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

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

  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }

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

  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }

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

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

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

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

  .gap-md-0 {
    gap: 0 !important;
  }

  .gap-md-1 {
    gap: 0.25rem !important;
  }

  .gap-md-2 {
    gap: 0.5rem !important;
  }

  .gap-md-3 {
    gap: 0.75rem !important;
  }

  .gap-md-4 {
    gap: 1rem !important;
  }

  .gap-md-5 {
    gap: 1.25rem !important;
  }

  .gap-md-6 {
    gap: 1.5rem !important;
  }

  .gap-md-7 {
    gap: 1.75rem !important;
  }

  .gap-md-8 {
    gap: 2rem !important;
  }

  .gap-md-9 {
    gap: 2.25rem !important;
  }

  .gap-md-10 {
    gap: 2.5rem !important;
  }

  .gap-md-11 {
    gap: 2.75rem !important;
  }

  .gap-md-12 {
    gap: 3rem !important;
  }

  .gap-md-13 {
    gap: 3.25rem !important;
  }

  .gap-md-14 {
    gap: 3.5rem !important;
  }

  .gap-md-15 {
    gap: 3.75rem !important;
  }

  .gap-md-16 {
    gap: 4rem !important;
  }

  .gap-md-17 {
    gap: 4.25rem !important;
  }

  .gap-md-18 {
    gap: 4.5rem !important;
  }

  .gap-md-19 {
    gap: 4.75rem !important;
  }

  .gap-md-20 {
    gap: 5rem !important;
  }

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

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

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

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

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

  .justify-content-md-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

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

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

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

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

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

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

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

  .align-self-md-auto {
    align-self: auto !important;
  }

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

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

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

  .align-self-md-baseline {
    align-self: baseline !important;
  }

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

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

  .order-md-0 {
    order: 0 !important;
  }

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

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

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

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

  .order-md-5 {
    order: 5 !important;
  }

  .order-md-last {
    order: 6 !important;
  }

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

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

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

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

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

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

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

  .m-md-7 {
    margin: 1.75rem !important;
  }

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

  .m-md-9 {
    margin: 2.25rem !important;
  }

  .m-md-10 {
    margin: 2.5rem !important;
  }

  .m-md-11 {
    margin: 2.75rem !important;
  }

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

  .m-md-13 {
    margin: 3.25rem !important;
  }

  .m-md-14 {
    margin: 3.5rem !important;
  }

  .m-md-15 {
    margin: 3.75rem !important;
  }

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

  .m-md-17 {
    margin: 4.25rem !important;
  }

  .m-md-18 {
    margin: 4.5rem !important;
  }

  .m-md-19 {
    margin: 4.75rem !important;
  }

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

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

  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-md-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }

  .mx-md-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-md-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-md-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-md-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }

  .mx-md-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .mx-md-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }

  .mx-md-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-md-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }

  .mx-md-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-md-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }

  .mx-md-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }

  .mx-md-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

  .mx-md-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .mx-md-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important;
  }

  .mx-md-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }

  .mx-md-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important;
  }

  .mx-md-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !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: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-md-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .my-md-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-md-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-md-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-md-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .my-md-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-md-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .my-md-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-md-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .my-md-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-md-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }

  .my-md-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .my-md-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .my-md-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .my-md-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }

  .my-md-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .my-md-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
  }

  .my-md-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

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

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

  .mt-md-3 {
    margin-top: 0.75rem !important;
  }

  .mt-md-4 {
    margin-top: 1rem !important;
  }

  .mt-md-5 {
    margin-top: 1.25rem !important;
  }

  .mt-md-6 {
    margin-top: 1.5rem !important;
  }

  .mt-md-7 {
    margin-top: 1.75rem !important;
  }

  .mt-md-8 {
    margin-top: 2rem !important;
  }

  .mt-md-9 {
    margin-top: 2.25rem !important;
  }

  .mt-md-10 {
    margin-top: 2.5rem !important;
  }

  .mt-md-11 {
    margin-top: 2.75rem !important;
  }

  .mt-md-12 {
    margin-top: 3rem !important;
  }

  .mt-md-13 {
    margin-top: 3.25rem !important;
  }

  .mt-md-14 {
    margin-top: 3.5rem !important;
  }

  .mt-md-15 {
    margin-top: 3.75rem !important;
  }

  .mt-md-16 {
    margin-top: 4rem !important;
  }

  .mt-md-17 {
    margin-top: 4.25rem !important;
  }

  .mt-md-18 {
    margin-top: 4.5rem !important;
  }

  .mt-md-19 {
    margin-top: 4.75rem !important;
  }

  .mt-md-20 {
    margin-top: 5rem !important;
  }

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

  .me-md-0 {
    margin-right: 0 !important;
  }

  .me-md-1 {
    margin-right: 0.25rem !important;
  }

  .me-md-2 {
    margin-right: 0.5rem !important;
  }

  .me-md-3 {
    margin-right: 0.75rem !important;
  }

  .me-md-4 {
    margin-right: 1rem !important;
  }

  .me-md-5 {
    margin-right: 1.25rem !important;
  }

  .me-md-6 {
    margin-right: 1.5rem !important;
  }

  .me-md-7 {
    margin-right: 1.75rem !important;
  }

  .me-md-8 {
    margin-right: 2rem !important;
  }

  .me-md-9 {
    margin-right: 2.25rem !important;
  }

  .me-md-10 {
    margin-right: 2.5rem !important;
  }

  .me-md-11 {
    margin-right: 2.75rem !important;
  }

  .me-md-12 {
    margin-right: 3rem !important;
  }

  .me-md-13 {
    margin-right: 3.25rem !important;
  }

  .me-md-14 {
    margin-right: 3.5rem !important;
  }

  .me-md-15 {
    margin-right: 3.75rem !important;
  }

  .me-md-16 {
    margin-right: 4rem !important;
  }

  .me-md-17 {
    margin-right: 4.25rem !important;
  }

  .me-md-18 {
    margin-right: 4.5rem !important;
  }

  .me-md-19 {
    margin-right: 4.75rem !important;
  }

  .me-md-20 {
    margin-right: 5rem !important;
  }

  .me-md-auto {
    margin-right: auto !important;
  }

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

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

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

  .mb-md-3 {
    margin-bottom: 0.75rem !important;
  }

  .mb-md-4 {
    margin-bottom: 1rem !important;
  }

  .mb-md-5 {
    margin-bottom: 1.25rem !important;
  }

  .mb-md-6 {
    margin-bottom: 1.5rem !important;
  }

  .mb-md-7 {
    margin-bottom: 1.75rem !important;
  }

  .mb-md-8 {
    margin-bottom: 2rem !important;
  }

  .mb-md-9 {
    margin-bottom: 2.25rem !important;
  }

  .mb-md-10 {
    margin-bottom: 2.5rem !important;
  }

  .mb-md-11 {
    margin-bottom: 2.75rem !important;
  }

  .mb-md-12 {
    margin-bottom: 3rem !important;
  }

  .mb-md-13 {
    margin-bottom: 3.25rem !important;
  }

  .mb-md-14 {
    margin-bottom: 3.5rem !important;
  }

  .mb-md-15 {
    margin-bottom: 3.75rem !important;
  }

  .mb-md-16 {
    margin-bottom: 4rem !important;
  }

  .mb-md-17 {
    margin-bottom: 4.25rem !important;
  }

  .mb-md-18 {
    margin-bottom: 4.5rem !important;
  }

  .mb-md-19 {
    margin-bottom: 4.75rem !important;
  }

  .mb-md-20 {
    margin-bottom: 5rem !important;
  }

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

  .ms-md-0 {
    margin-left: 0 !important;
  }

  .ms-md-1 {
    margin-left: 0.25rem !important;
  }

  .ms-md-2 {
    margin-left: 0.5rem !important;
  }

  .ms-md-3 {
    margin-left: 0.75rem !important;
  }

  .ms-md-4 {
    margin-left: 1rem !important;
  }

  .ms-md-5 {
    margin-left: 1.25rem !important;
  }

  .ms-md-6 {
    margin-left: 1.5rem !important;
  }

  .ms-md-7 {
    margin-left: 1.75rem !important;
  }

  .ms-md-8 {
    margin-left: 2rem !important;
  }

  .ms-md-9 {
    margin-left: 2.25rem !important;
  }

  .ms-md-10 {
    margin-left: 2.5rem !important;
  }

  .ms-md-11 {
    margin-left: 2.75rem !important;
  }

  .ms-md-12 {
    margin-left: 3rem !important;
  }

  .ms-md-13 {
    margin-left: 3.25rem !important;
  }

  .ms-md-14 {
    margin-left: 3.5rem !important;
  }

  .ms-md-15 {
    margin-left: 3.75rem !important;
  }

  .ms-md-16 {
    margin-left: 4rem !important;
  }

  .ms-md-17 {
    margin-left: 4.25rem !important;
  }

  .ms-md-18 {
    margin-left: 4.5rem !important;
  }

  .ms-md-19 {
    margin-left: 4.75rem !important;
  }

  .ms-md-20 {
    margin-left: 5rem !important;
  }

  .ms-md-auto {
    margin-left: auto !important;
  }

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

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

  .m-md-n3 {
    margin: -0.75rem !important;
  }

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

  .m-md-n5 {
    margin: -1.25rem !important;
  }

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

  .m-md-n7 {
    margin: -1.75rem !important;
  }

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

  .m-md-n9 {
    margin: -2.25rem !important;
  }

  .m-md-n10 {
    margin: -2.5rem !important;
  }

  .m-md-n11 {
    margin: -2.75rem !important;
  }

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

  .m-md-n13 {
    margin: -3.25rem !important;
  }

  .m-md-n14 {
    margin: -3.5rem !important;
  }

  .m-md-n15 {
    margin: -3.75rem !important;
  }

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

  .m-md-n17 {
    margin: -4.25rem !important;
  }

  .m-md-n18 {
    margin: -4.5rem !important;
  }

  .m-md-n19 {
    margin: -4.75rem !important;
  }

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

  .mx-md-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-md-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-md-n3 {
    margin-right: -0.75rem !important;
    margin-left: -0.75rem !important;
  }

  .mx-md-n4 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-md-n5 {
    margin-right: -1.25rem !important;
    margin-left: -1.25rem !important;
  }

  .mx-md-n6 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-md-n7 {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important;
  }

  .mx-md-n8 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }

  .mx-md-n9 {
    margin-right: -2.25rem !important;
    margin-left: -2.25rem !important;
  }

  .mx-md-n10 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }

  .mx-md-n11 {
    margin-right: -2.75rem !important;
    margin-left: -2.75rem !important;
  }

  .mx-md-n12 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .mx-md-n13 {
    margin-right: -3.25rem !important;
    margin-left: -3.25rem !important;
  }

  .mx-md-n14 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }

  .mx-md-n15 {
    margin-right: -3.75rem !important;
    margin-left: -3.75rem !important;
  }

  .mx-md-n16 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }

  .mx-md-n17 {
    margin-right: -4.25rem !important;
    margin-left: -4.25rem !important;
  }

  .mx-md-n18 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }

  .mx-md-n19 {
    margin-right: -4.75rem !important;
    margin-left: -4.75rem !important;
  }

  .mx-md-n20 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }

  .my-md-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-md-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-md-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .my-md-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-md-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .my-md-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-md-n7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .my-md-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .my-md-n9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .my-md-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .my-md-n11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .my-md-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .my-md-n13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }

  .my-md-n14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .my-md-n15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }

  .my-md-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .my-md-n17 {
    margin-top: -4.25rem !important;
    margin-bottom: -4.25rem !important;
  }

  .my-md-n18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

  .my-md-n19 {
    margin-top: -4.75rem !important;
    margin-bottom: -4.75rem !important;
  }

  .my-md-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .mt-md-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-md-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-md-n3 {
    margin-top: -0.75rem !important;
  }

  .mt-md-n4 {
    margin-top: -1rem !important;
  }

  .mt-md-n5 {
    margin-top: -1.25rem !important;
  }

  .mt-md-n6 {
    margin-top: -1.5rem !important;
  }

  .mt-md-n7 {
    margin-top: -1.75rem !important;
  }

  .mt-md-n8 {
    margin-top: -2rem !important;
  }

  .mt-md-n9 {
    margin-top: -2.25rem !important;
  }

  .mt-md-n10 {
    margin-top: -2.5rem !important;
  }

  .mt-md-n11 {
    margin-top: -2.75rem !important;
  }

  .mt-md-n12 {
    margin-top: -3rem !important;
  }

  .mt-md-n13 {
    margin-top: -3.25rem !important;
  }

  .mt-md-n14 {
    margin-top: -3.5rem !important;
  }

  .mt-md-n15 {
    margin-top: -3.75rem !important;
  }

  .mt-md-n16 {
    margin-top: -4rem !important;
  }

  .mt-md-n17 {
    margin-top: -4.25rem !important;
  }

  .mt-md-n18 {
    margin-top: -4.5rem !important;
  }

  .mt-md-n19 {
    margin-top: -4.75rem !important;
  }

  .mt-md-n20 {
    margin-top: -5rem !important;
  }

  .me-md-n1 {
    margin-right: -0.25rem !important;
  }

  .me-md-n2 {
    margin-right: -0.5rem !important;
  }

  .me-md-n3 {
    margin-right: -0.75rem !important;
  }

  .me-md-n4 {
    margin-right: -1rem !important;
  }

  .me-md-n5 {
    margin-right: -1.25rem !important;
  }

  .me-md-n6 {
    margin-right: -1.5rem !important;
  }

  .me-md-n7 {
    margin-right: -1.75rem !important;
  }

  .me-md-n8 {
    margin-right: -2rem !important;
  }

  .me-md-n9 {
    margin-right: -2.25rem !important;
  }

  .me-md-n10 {
    margin-right: -2.5rem !important;
  }

  .me-md-n11 {
    margin-right: -2.75rem !important;
  }

  .me-md-n12 {
    margin-right: -3rem !important;
  }

  .me-md-n13 {
    margin-right: -3.25rem !important;
  }

  .me-md-n14 {
    margin-right: -3.5rem !important;
  }

  .me-md-n15 {
    margin-right: -3.75rem !important;
  }

  .me-md-n16 {
    margin-right: -4rem !important;
  }

  .me-md-n17 {
    margin-right: -4.25rem !important;
  }

  .me-md-n18 {
    margin-right: -4.5rem !important;
  }

  .me-md-n19 {
    margin-right: -4.75rem !important;
  }

  .me-md-n20 {
    margin-right: -5rem !important;
  }

  .mb-md-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-md-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-md-n3 {
    margin-bottom: -0.75rem !important;
  }

  .mb-md-n4 {
    margin-bottom: -1rem !important;
  }

  .mb-md-n5 {
    margin-bottom: -1.25rem !important;
  }

  .mb-md-n6 {
    margin-bottom: -1.5rem !important;
  }

  .mb-md-n7 {
    margin-bottom: -1.75rem !important;
  }

  .mb-md-n8 {
    margin-bottom: -2rem !important;
  }

  .mb-md-n9 {
    margin-bottom: -2.25rem !important;
  }

  .mb-md-n10 {
    margin-bottom: -2.5rem !important;
  }

  .mb-md-n11 {
    margin-bottom: -2.75rem !important;
  }

  .mb-md-n12 {
    margin-bottom: -3rem !important;
  }

  .mb-md-n13 {
    margin-bottom: -3.25rem !important;
  }

  .mb-md-n14 {
    margin-bottom: -3.5rem !important;
  }

  .mb-md-n15 {
    margin-bottom: -3.75rem !important;
  }

  .mb-md-n16 {
    margin-bottom: -4rem !important;
  }

  .mb-md-n17 {
    margin-bottom: -4.25rem !important;
  }

  .mb-md-n18 {
    margin-bottom: -4.5rem !important;
  }

  .mb-md-n19 {
    margin-bottom: -4.75rem !important;
  }

  .mb-md-n20 {
    margin-bottom: -5rem !important;
  }

  .ms-md-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-md-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-md-n3 {
    margin-left: -0.75rem !important;
  }

  .ms-md-n4 {
    margin-left: -1rem !important;
  }

  .ms-md-n5 {
    margin-left: -1.25rem !important;
  }

  .ms-md-n6 {
    margin-left: -1.5rem !important;
  }

  .ms-md-n7 {
    margin-left: -1.75rem !important;
  }

  .ms-md-n8 {
    margin-left: -2rem !important;
  }

  .ms-md-n9 {
    margin-left: -2.25rem !important;
  }

  .ms-md-n10 {
    margin-left: -2.5rem !important;
  }

  .ms-md-n11 {
    margin-left: -2.75rem !important;
  }

  .ms-md-n12 {
    margin-left: -3rem !important;
  }

  .ms-md-n13 {
    margin-left: -3.25rem !important;
  }

  .ms-md-n14 {
    margin-left: -3.5rem !important;
  }

  .ms-md-n15 {
    margin-left: -3.75rem !important;
  }

  .ms-md-n16 {
    margin-left: -4rem !important;
  }

  .ms-md-n17 {
    margin-left: -4.25rem !important;
  }

  .ms-md-n18 {
    margin-left: -4.5rem !important;
  }

  .ms-md-n19 {
    margin-left: -4.75rem !important;
  }

  .ms-md-n20 {
    margin-left: -5rem !important;
  }

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

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

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

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

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

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

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

  .p-md-7 {
    padding: 1.75rem !important;
  }

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

  .p-md-9 {
    padding: 2.25rem !important;
  }

  .p-md-10 {
    padding: 2.5rem !important;
  }

  .p-md-11 {
    padding: 2.75rem !important;
  }

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

  .p-md-13 {
    padding: 3.25rem !important;
  }

  .p-md-14 {
    padding: 3.5rem !important;
  }

  .p-md-15 {
    padding: 3.75rem !important;
  }

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

  .p-md-17 {
    padding: 4.25rem !important;
  }

  .p-md-18 {
    padding: 4.5rem !important;
  }

  .p-md-19 {
    padding: 4.75rem !important;
  }

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

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

  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-md-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }

  .px-md-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-md-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-md-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-md-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }

  .px-md-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .px-md-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }

  .px-md-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-md-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }

  .px-md-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-md-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }

  .px-md-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }

  .px-md-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

  .px-md-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .px-md-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important;
  }

  .px-md-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }

  .px-md-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important;
  }

  .px-md-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }

  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-md-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .py-md-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-md-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-md-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-md-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .py-md-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-md-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .py-md-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-md-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .py-md-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-md-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .py-md-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .py-md-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .py-md-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-md-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }

  .py-md-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .py-md-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }

  .py-md-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

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

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

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

  .pt-md-3 {
    padding-top: 0.75rem !important;
  }

  .pt-md-4 {
    padding-top: 1rem !important;
  }

  .pt-md-5 {
    padding-top: 1.25rem !important;
  }

  .pt-md-6 {
    padding-top: 1.5rem !important;
  }

  .pt-md-7 {
    padding-top: 1.75rem !important;
  }

  .pt-md-8 {
    padding-top: 2rem !important;
  }

  .pt-md-9 {
    padding-top: 2.25rem !important;
  }

  .pt-md-10 {
    padding-top: 2.5rem !important;
  }

  .pt-md-11 {
    padding-top: 2.75rem !important;
  }

  .pt-md-12 {
    padding-top: 3rem !important;
  }

  .pt-md-13 {
    padding-top: 3.25rem !important;
  }

  .pt-md-14 {
    padding-top: 3.5rem !important;
  }

  .pt-md-15 {
    padding-top: 3.75rem !important;
  }

  .pt-md-16 {
    padding-top: 4rem !important;
  }

  .pt-md-17 {
    padding-top: 4.25rem !important;
  }

  .pt-md-18 {
    padding-top: 4.5rem !important;
  }

  .pt-md-19 {
    padding-top: 4.75rem !important;
  }

  .pt-md-20 {
    padding-top: 5rem !important;
  }

  .pe-md-0 {
    padding-right: 0 !important;
  }

  .pe-md-1 {
    padding-right: 0.25rem !important;
  }

  .pe-md-2 {
    padding-right: 0.5rem !important;
  }

  .pe-md-3 {
    padding-right: 0.75rem !important;
  }

  .pe-md-4 {
    padding-right: 1rem !important;
  }

  .pe-md-5 {
    padding-right: 1.25rem !important;
  }

  .pe-md-6 {
    padding-right: 1.5rem !important;
  }

  .pe-md-7 {
    padding-right: 1.75rem !important;
  }

  .pe-md-8 {
    padding-right: 2rem !important;
  }

  .pe-md-9 {
    padding-right: 2.25rem !important;
  }

  .pe-md-10 {
    padding-right: 2.5rem !important;
  }

  .pe-md-11 {
    padding-right: 2.75rem !important;
  }

  .pe-md-12 {
    padding-right: 3rem !important;
  }

  .pe-md-13 {
    padding-right: 3.25rem !important;
  }

  .pe-md-14 {
    padding-right: 3.5rem !important;
  }

  .pe-md-15 {
    padding-right: 3.75rem !important;
  }

  .pe-md-16 {
    padding-right: 4rem !important;
  }

  .pe-md-17 {
    padding-right: 4.25rem !important;
  }

  .pe-md-18 {
    padding-right: 4.5rem !important;
  }

  .pe-md-19 {
    padding-right: 4.75rem !important;
  }

  .pe-md-20 {
    padding-right: 5rem !important;
  }

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

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

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

  .pb-md-3 {
    padding-bottom: 0.75rem !important;
  }

  .pb-md-4 {
    padding-bottom: 1rem !important;
  }

  .pb-md-5 {
    padding-bottom: 1.25rem !important;
  }

  .pb-md-6 {
    padding-bottom: 1.5rem !important;
  }

  .pb-md-7 {
    padding-bottom: 1.75rem !important;
  }

  .pb-md-8 {
    padding-bottom: 2rem !important;
  }

  .pb-md-9 {
    padding-bottom: 2.25rem !important;
  }

  .pb-md-10 {
    padding-bottom: 2.5rem !important;
  }

  .pb-md-11 {
    padding-bottom: 2.75rem !important;
  }

  .pb-md-12 {
    padding-bottom: 3rem !important;
  }

  .pb-md-13 {
    padding-bottom: 3.25rem !important;
  }

  .pb-md-14 {
    padding-bottom: 3.5rem !important;
  }

  .pb-md-15 {
    padding-bottom: 3.75rem !important;
  }

  .pb-md-16 {
    padding-bottom: 4rem !important;
  }

  .pb-md-17 {
    padding-bottom: 4.25rem !important;
  }

  .pb-md-18 {
    padding-bottom: 4.5rem !important;
  }

  .pb-md-19 {
    padding-bottom: 4.75rem !important;
  }

  .pb-md-20 {
    padding-bottom: 5rem !important;
  }

  .ps-md-0 {
    padding-left: 0 !important;
  }

  .ps-md-1 {
    padding-left: 0.25rem !important;
  }

  .ps-md-2 {
    padding-left: 0.5rem !important;
  }

  .ps-md-3 {
    padding-left: 0.75rem !important;
  }

  .ps-md-4 {
    padding-left: 1rem !important;
  }

  .ps-md-5 {
    padding-left: 1.25rem !important;
  }

  .ps-md-6 {
    padding-left: 1.5rem !important;
  }

  .ps-md-7 {
    padding-left: 1.75rem !important;
  }

  .ps-md-8 {
    padding-left: 2rem !important;
  }

  .ps-md-9 {
    padding-left: 2.25rem !important;
  }

  .ps-md-10 {
    padding-left: 2.5rem !important;
  }

  .ps-md-11 {
    padding-left: 2.75rem !important;
  }

  .ps-md-12 {
    padding-left: 3rem !important;
  }

  .ps-md-13 {
    padding-left: 3.25rem !important;
  }

  .ps-md-14 {
    padding-left: 3.5rem !important;
  }

  .ps-md-15 {
    padding-left: 3.75rem !important;
  }

  .ps-md-16 {
    padding-left: 4rem !important;
  }

  .ps-md-17 {
    padding-left: 4.25rem !important;
  }

  .ps-md-18 {
    padding-left: 4.5rem !important;
  }

  .ps-md-19 {
    padding-left: 4.75rem !important;
  }

  .ps-md-20 {
    padding-left: 5rem !important;
  }

  .fs-md-1 {
    font-size: calc(1.3rem + 0.6vw) !important;
  }

  .fs-md-2 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }

  .fs-md-3 {
    font-size: calc(1.26rem + 0.12vw) !important;
  }

  .fs-md-4 {
    font-size: 1.25rem !important;
  }

  .fs-md-5 {
    font-size: 1.15rem !important;
  }

  .fs-md-6 {
    font-size: 1.075rem !important;
  }

  .fs-md-7 {
    font-size: 0.95rem !important;
  }

  .fs-md-8 {
    font-size: 0.85rem !important;
  }

  .fs-md-9 {
    font-size: 0.75rem !important;
  }

  .fs-md-10 {
    font-size: 0.5rem !important;
  }

  .fs-md-base {
    font-size: 1rem !important;
  }

  .fs-md-fluid {
    font-size: 100% !important;
  }

  .fs-md-2x {
    font-size: calc(1.325rem + 0.9vw) !important;
  }

  .fs-md-2qx {
    font-size: calc(1.35rem + 1.2vw) !important;
  }

  .fs-md-2hx {
    font-size: calc(1.375rem + 1.5vw) !important;
  }

  .fs-md-2tx {
    font-size: calc(1.4rem + 1.8vw) !important;
  }

  .fs-md-3x {
    font-size: calc(1.425rem + 2.1vw) !important;
  }

  .fs-md-3qx {
    font-size: calc(1.45rem + 2.4vw) !important;
  }

  .fs-md-3hx {
    font-size: calc(1.475rem + 2.7vw) !important;
  }

  .fs-md-3tx {
    font-size: calc(1.5rem + 3vw) !important;
  }

  .fs-md-4x {
    font-size: calc(1.525rem + 3.3vw) !important;
  }

  .fs-md-4qx {
    font-size: calc(1.55rem + 3.6vw) !important;
  }

  .fs-md-4hx {
    font-size: calc(1.575rem + 3.9vw) !important;
  }

  .fs-md-4tx {
    font-size: calc(1.6rem + 4.2vw) !important;
  }

  .fs-md-5x {
    font-size: calc(1.625rem + 4.5vw) !important;
  }

  .fs-md-5qx {
    font-size: calc(1.65rem + 4.8vw) !important;
  }

  .fs-md-5hx {
    font-size: calc(1.675rem + 5.1vw) !important;
  }

  .fs-md-5tx {
    font-size: calc(1.7rem + 5.4vw) !important;
  }

  .text-md-start {
    text-align: left !important;
  }

  .text-md-end {
    text-align: right !important;
  }

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

  .min-w-md-unset {
    min-width: unset !important;
  }

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

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

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

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

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

  .min-w-md-1px {
    min-width: 1px !important;
  }

  .min-w-md-2px {
    min-width: 2px !important;
  }

  .min-w-md-3px {
    min-width: 3px !important;
  }

  .min-w-md-4px {
    min-width: 4px !important;
  }

  .min-w-md-5px {
    min-width: 5px !important;
  }

  .min-w-md-6px {
    min-width: 6px !important;
  }

  .min-w-md-7px {
    min-width: 7px !important;
  }

  .min-w-md-8px {
    min-width: 8px !important;
  }

  .min-w-md-9px {
    min-width: 9px !important;
  }

  .min-w-md-10px {
    min-width: 10px !important;
  }

  .min-w-md-15px {
    min-width: 15px !important;
  }

  .min-w-md-20px {
    min-width: 20px !important;
  }

  .min-w-md-25px {
    min-width: 25px !important;
  }

  .min-w-md-30px {
    min-width: 30px !important;
  }

  .min-w-md-35px {
    min-width: 35px !important;
  }

  .min-w-md-40px {
    min-width: 40px !important;
  }

  .min-w-md-45px {
    min-width: 45px !important;
  }

  .min-w-md-50px {
    min-width: 50px !important;
  }

  .min-w-md-55px {
    min-width: 55px !important;
  }

  .min-w-md-60px {
    min-width: 60px !important;
  }

  .min-w-md-65px {
    min-width: 65px !important;
  }

  .min-w-md-70px {
    min-width: 70px !important;
  }

  .min-w-md-75px {
    min-width: 75px !important;
  }

  .min-w-md-80px {
    min-width: 80px !important;
  }

  .min-w-md-85px {
    min-width: 85px !important;
  }

  .min-w-md-90px {
    min-width: 90px !important;
  }

  .min-w-md-95px {
    min-width: 95px !important;
  }

  .min-w-md-100px {
    min-width: 100px !important;
  }

  .min-w-md-125px {
    min-width: 125px !important;
  }

  .min-w-md-150px {
    min-width: 150px !important;
  }

  .min-w-md-175px {
    min-width: 175px !important;
  }

  .min-w-md-200px {
    min-width: 200px !important;
  }

  .min-w-md-225px {
    min-width: 225px !important;
  }

  .min-w-md-250px {
    min-width: 250px !important;
  }

  .min-w-md-275px {
    min-width: 275px !important;
  }

  .min-w-md-300px {
    min-width: 300px !important;
  }

  .min-w-md-325px {
    min-width: 325px !important;
  }

  .min-w-md-350px {
    min-width: 350px !important;
  }

  .min-w-md-375px {
    min-width: 375px !important;
  }

  .min-w-md-400px {
    min-width: 400px !important;
  }

  .min-w-md-425px {
    min-width: 425px !important;
  }

  .min-w-md-450px {
    min-width: 450px !important;
  }

  .min-w-md-475px {
    min-width: 475px !important;
  }

  .min-w-md-500px {
    min-width: 500px !important;
  }

  .min-w-md-550px {
    min-width: 550px !important;
  }

  .min-w-md-600px {
    min-width: 600px !important;
  }

  .min-w-md-650px {
    min-width: 650px !important;
  }

  .min-w-md-700px {
    min-width: 700px !important;
  }

  .min-w-md-750px {
    min-width: 750px !important;
  }

  .min-w-md-800px {
    min-width: 800px !important;
  }

  .min-w-md-850px {
    min-width: 850px !important;
  }

  .min-w-md-900px {
    min-width: 900px !important;
  }

  .min-w-md-950px {
    min-width: 950px !important;
  }

  .min-w-md-1000px {
    min-width: 1000px !important;
  }

  .min-h-md-unset {
    min-height: unset !important;
  }

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

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

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

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

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

  .min-h-md-1px {
    min-height: 1px !important;
  }

  .min-h-md-2px {
    min-height: 2px !important;
  }

  .min-h-md-3px {
    min-height: 3px !important;
  }

  .min-h-md-4px {
    min-height: 4px !important;
  }

  .min-h-md-5px {
    min-height: 5px !important;
  }

  .min-h-md-6px {
    min-height: 6px !important;
  }

  .min-h-md-7px {
    min-height: 7px !important;
  }

  .min-h-md-8px {
    min-height: 8px !important;
  }

  .min-h-md-9px {
    min-height: 9px !important;
  }

  .min-h-md-10px {
    min-height: 10px !important;
  }

  .min-h-md-15px {
    min-height: 15px !important;
  }

  .min-h-md-20px {
    min-height: 20px !important;
  }

  .min-h-md-25px {
    min-height: 25px !important;
  }

  .min-h-md-30px {
    min-height: 30px !important;
  }

  .min-h-md-35px {
    min-height: 35px !important;
  }

  .min-h-md-40px {
    min-height: 40px !important;
  }

  .min-h-md-45px {
    min-height: 45px !important;
  }

  .min-h-md-50px {
    min-height: 50px !important;
  }

  .min-h-md-55px {
    min-height: 55px !important;
  }

  .min-h-md-60px {
    min-height: 60px !important;
  }

  .min-h-md-65px {
    min-height: 65px !important;
  }

  .min-h-md-70px {
    min-height: 70px !important;
  }

  .min-h-md-75px {
    min-height: 75px !important;
  }

  .min-h-md-80px {
    min-height: 80px !important;
  }

  .min-h-md-85px {
    min-height: 85px !important;
  }

  .min-h-md-90px {
    min-height: 90px !important;
  }

  .min-h-md-95px {
    min-height: 95px !important;
  }

  .min-h-md-100px {
    min-height: 100px !important;
  }

  .min-h-md-125px {
    min-height: 125px !important;
  }

  .min-h-md-150px {
    min-height: 150px !important;
  }

  .min-h-md-175px {
    min-height: 175px !important;
  }

  .min-h-md-200px {
    min-height: 200px !important;
  }

  .min-h-md-225px {
    min-height: 225px !important;
  }

  .min-h-md-250px {
    min-height: 250px !important;
  }

  .min-h-md-275px {
    min-height: 275px !important;
  }

  .min-h-md-300px {
    min-height: 300px !important;
  }

  .min-h-md-325px {
    min-height: 325px !important;
  }

  .min-h-md-350px {
    min-height: 350px !important;
  }

  .min-h-md-375px {
    min-height: 375px !important;
  }

  .min-h-md-400px {
    min-height: 400px !important;
  }

  .min-h-md-425px {
    min-height: 425px !important;
  }

  .min-h-md-450px {
    min-height: 450px !important;
  }

  .min-h-md-475px {
    min-height: 475px !important;
  }

  .min-h-md-500px {
    min-height: 500px !important;
  }

  .min-h-md-550px {
    min-height: 550px !important;
  }

  .min-h-md-600px {
    min-height: 600px !important;
  }

  .min-h-md-650px {
    min-height: 650px !important;
  }

  .min-h-md-700px {
    min-height: 700px !important;
  }

  .min-h-md-750px {
    min-height: 750px !important;
  }

  .min-h-md-800px {
    min-height: 800px !important;
  }

  .min-h-md-850px {
    min-height: 850px !important;
  }

  .min-h-md-900px {
    min-height: 900px !important;
  }

  .min-h-md-950px {
    min-height: 950px !important;
  }

  .min-h-md-1000px {
    min-height: 1000px !important;
  }
}
@media (min-width: 992px) {
  .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: flex !important;
  }

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

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

  .position-lg-static {
    position: static !important;
  }

  .position-lg-relative {
    position: relative !important;
  }

  .position-lg-absolute {
    position: absolute !important;
  }

  .position-lg-fixed {
    position: fixed !important;
  }

  .position-lg-sticky {
    position: sticky !important;
  }

  .w-lg-unset {
    width: unset !important;
  }

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

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

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

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

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

  .w-lg-1px {
    width: 1px !important;
  }

  .w-lg-2px {
    width: 2px !important;
  }

  .w-lg-3px {
    width: 3px !important;
  }

  .w-lg-4px {
    width: 4px !important;
  }

  .w-lg-5px {
    width: 5px !important;
  }

  .w-lg-6px {
    width: 6px !important;
  }

  .w-lg-7px {
    width: 7px !important;
  }

  .w-lg-8px {
    width: 8px !important;
  }

  .w-lg-9px {
    width: 9px !important;
  }

  .w-lg-10px {
    width: 10px !important;
  }

  .w-lg-15px {
    width: 15px !important;
  }

  .w-lg-20px {
    width: 20px !important;
  }

  .w-lg-25px {
    width: 25px !important;
  }

  .w-lg-30px {
    width: 30px !important;
  }

  .w-lg-35px {
    width: 35px !important;
  }

  .w-lg-40px {
    width: 40px !important;
  }

  .w-lg-45px {
    width: 45px !important;
  }

  .w-lg-50px {
    width: 50px !important;
  }

  .w-lg-55px {
    width: 55px !important;
  }

  .w-lg-60px {
    width: 60px !important;
  }

  .w-lg-65px {
    width: 65px !important;
  }

  .w-lg-70px {
    width: 70px !important;
  }

  .w-lg-75px {
    width: 75px !important;
  }

  .w-lg-80px {
    width: 80px !important;
  }

  .w-lg-85px {
    width: 85px !important;
  }

  .w-lg-90px {
    width: 90px !important;
  }

  .w-lg-95px {
    width: 95px !important;
  }

  .w-lg-100px {
    width: 100px !important;
  }

  .w-lg-125px {
    width: 125px !important;
  }

  .w-lg-150px {
    width: 150px !important;
  }

  .w-lg-175px {
    width: 175px !important;
  }

  .w-lg-200px {
    width: 200px !important;
  }

  .w-lg-225px {
    width: 225px !important;
  }

  .w-lg-250px {
    width: 250px !important;
  }

  .w-lg-275px {
    width: 275px !important;
  }

  .w-lg-300px {
    width: 300px !important;
  }

  .w-lg-325px {
    width: 325px !important;
  }

  .w-lg-350px {
    width: 350px !important;
  }

  .w-lg-375px {
    width: 375px !important;
  }

  .w-lg-400px {
    width: 400px !important;
  }

  .w-lg-425px {
    width: 425px !important;
  }

  .w-lg-450px {
    width: 450px !important;
  }

  .w-lg-475px {
    width: 475px !important;
  }

  .w-lg-500px {
    width: 500px !important;
  }

  .w-lg-550px {
    width: 550px !important;
  }

  .w-lg-600px {
    width: 600px !important;
  }

  .w-lg-650px {
    width: 650px !important;
  }

  .w-lg-700px {
    width: 700px !important;
  }

  .w-lg-750px {
    width: 750px !important;
  }

  .w-lg-800px {
    width: 800px !important;
  }

  .w-lg-850px {
    width: 850px !important;
  }

  .w-lg-900px {
    width: 900px !important;
  }

  .w-lg-950px {
    width: 950px !important;
  }

  .w-lg-1000px {
    width: 1000px !important;
  }

  .mw-lg-unset {
    max-width: unset !important;
  }

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

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

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

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

  .mw-lg-auto {
    max-width: auto !important;
  }

  .mw-lg-1px {
    max-width: 1px !important;
  }

  .mw-lg-2px {
    max-width: 2px !important;
  }

  .mw-lg-3px {
    max-width: 3px !important;
  }

  .mw-lg-4px {
    max-width: 4px !important;
  }

  .mw-lg-5px {
    max-width: 5px !important;
  }

  .mw-lg-6px {
    max-width: 6px !important;
  }

  .mw-lg-7px {
    max-width: 7px !important;
  }

  .mw-lg-8px {
    max-width: 8px !important;
  }

  .mw-lg-9px {
    max-width: 9px !important;
  }

  .mw-lg-10px {
    max-width: 10px !important;
  }

  .mw-lg-15px {
    max-width: 15px !important;
  }

  .mw-lg-20px {
    max-width: 20px !important;
  }

  .mw-lg-25px {
    max-width: 25px !important;
  }

  .mw-lg-30px {
    max-width: 30px !important;
  }

  .mw-lg-35px {
    max-width: 35px !important;
  }

  .mw-lg-40px {
    max-width: 40px !important;
  }

  .mw-lg-45px {
    max-width: 45px !important;
  }

  .mw-lg-50px {
    max-width: 50px !important;
  }

  .mw-lg-55px {
    max-width: 55px !important;
  }

  .mw-lg-60px {
    max-width: 60px !important;
  }

  .mw-lg-65px {
    max-width: 65px !important;
  }

  .mw-lg-70px {
    max-width: 70px !important;
  }

  .mw-lg-75px {
    max-width: 75px !important;
  }

  .mw-lg-80px {
    max-width: 80px !important;
  }

  .mw-lg-85px {
    max-width: 85px !important;
  }

  .mw-lg-90px {
    max-width: 90px !important;
  }

  .mw-lg-95px {
    max-width: 95px !important;
  }

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

  .mw-lg-125px {
    max-width: 125px !important;
  }

  .mw-lg-150px {
    max-width: 150px !important;
  }

  .mw-lg-175px {
    max-width: 175px !important;
  }

  .mw-lg-200px {
    max-width: 200px !important;
  }

  .mw-lg-225px {
    max-width: 225px !important;
  }

  .mw-lg-250px {
    max-width: 250px !important;
  }

  .mw-lg-275px {
    max-width: 275px !important;
  }

  .mw-lg-300px {
    max-width: 300px !important;
  }

  .mw-lg-325px {
    max-width: 325px !important;
  }

  .mw-lg-350px {
    max-width: 350px !important;
  }

  .mw-lg-375px {
    max-width: 375px !important;
  }

  .mw-lg-400px {
    max-width: 400px !important;
  }

  .mw-lg-425px {
    max-width: 425px !important;
  }

  .mw-lg-450px {
    max-width: 450px !important;
  }

  .mw-lg-475px {
    max-width: 475px !important;
  }

  .mw-lg-500px {
    max-width: 500px !important;
  }

  .mw-lg-550px {
    max-width: 550px !important;
  }

  .mw-lg-600px {
    max-width: 600px !important;
  }

  .mw-lg-650px {
    max-width: 650px !important;
  }

  .mw-lg-700px {
    max-width: 700px !important;
  }

  .mw-lg-750px {
    max-width: 750px !important;
  }

  .mw-lg-800px {
    max-width: 800px !important;
  }

  .mw-lg-850px {
    max-width: 850px !important;
  }

  .mw-lg-900px {
    max-width: 900px !important;
  }

  .mw-lg-950px {
    max-width: 950px !important;
  }

  .mw-lg-1000px {
    max-width: 1000px !important;
  }

  .h-lg-unset {
    height: unset !important;
  }

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

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

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

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

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

  .h-lg-1px {
    height: 1px !important;
  }

  .h-lg-2px {
    height: 2px !important;
  }

  .h-lg-3px {
    height: 3px !important;
  }

  .h-lg-4px {
    height: 4px !important;
  }

  .h-lg-5px {
    height: 5px !important;
  }

  .h-lg-6px {
    height: 6px !important;
  }

  .h-lg-7px {
    height: 7px !important;
  }

  .h-lg-8px {
    height: 8px !important;
  }

  .h-lg-9px {
    height: 9px !important;
  }

  .h-lg-10px {
    height: 10px !important;
  }

  .h-lg-15px {
    height: 15px !important;
  }

  .h-lg-20px {
    height: 20px !important;
  }

  .h-lg-25px {
    height: 25px !important;
  }

  .h-lg-30px {
    height: 30px !important;
  }

  .h-lg-35px {
    height: 35px !important;
  }

  .h-lg-40px {
    height: 40px !important;
  }

  .h-lg-45px {
    height: 45px !important;
  }

  .h-lg-50px {
    height: 50px !important;
  }

  .h-lg-55px {
    height: 55px !important;
  }

  .h-lg-60px {
    height: 60px !important;
  }

  .h-lg-65px {
    height: 65px !important;
  }

  .h-lg-70px {
    height: 70px !important;
  }

  .h-lg-75px {
    height: 75px !important;
  }

  .h-lg-80px {
    height: 80px !important;
  }

  .h-lg-85px {
    height: 85px !important;
  }

  .h-lg-90px {
    height: 90px !important;
  }

  .h-lg-95px {
    height: 95px !important;
  }

  .h-lg-100px {
    height: 100px !important;
  }

  .h-lg-125px {
    height: 125px !important;
  }

  .h-lg-150px {
    height: 150px !important;
  }

  .h-lg-175px {
    height: 175px !important;
  }

  .h-lg-200px {
    height: 200px !important;
  }

  .h-lg-225px {
    height: 225px !important;
  }

  .h-lg-250px {
    height: 250px !important;
  }

  .h-lg-275px {
    height: 275px !important;
  }

  .h-lg-300px {
    height: 300px !important;
  }

  .h-lg-325px {
    height: 325px !important;
  }

  .h-lg-350px {
    height: 350px !important;
  }

  .h-lg-375px {
    height: 375px !important;
  }

  .h-lg-400px {
    height: 400px !important;
  }

  .h-lg-425px {
    height: 425px !important;
  }

  .h-lg-450px {
    height: 450px !important;
  }

  .h-lg-475px {
    height: 475px !important;
  }

  .h-lg-500px {
    height: 500px !important;
  }

  .h-lg-550px {
    height: 550px !important;
  }

  .h-lg-600px {
    height: 600px !important;
  }

  .h-lg-650px {
    height: 650px !important;
  }

  .h-lg-700px {
    height: 700px !important;
  }

  .h-lg-750px {
    height: 750px !important;
  }

  .h-lg-800px {
    height: 800px !important;
  }

  .h-lg-850px {
    height: 850px !important;
  }

  .h-lg-900px {
    height: 900px !important;
  }

  .h-lg-950px {
    height: 950px !important;
  }

  .h-lg-1000px {
    height: 1000px !important;
  }

  .mh-lg-unset {
    max-height: unset !important;
  }

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

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

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

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

  .mh-lg-auto {
    max-height: auto !important;
  }

  .mh-lg-1px {
    max-height: 1px !important;
  }

  .mh-lg-2px {
    max-height: 2px !important;
  }

  .mh-lg-3px {
    max-height: 3px !important;
  }

  .mh-lg-4px {
    max-height: 4px !important;
  }

  .mh-lg-5px {
    max-height: 5px !important;
  }

  .mh-lg-6px {
    max-height: 6px !important;
  }

  .mh-lg-7px {
    max-height: 7px !important;
  }

  .mh-lg-8px {
    max-height: 8px !important;
  }

  .mh-lg-9px {
    max-height: 9px !important;
  }

  .mh-lg-10px {
    max-height: 10px !important;
  }

  .mh-lg-15px {
    max-height: 15px !important;
  }

  .mh-lg-20px {
    max-height: 20px !important;
  }

  .mh-lg-25px {
    max-height: 25px !important;
  }

  .mh-lg-30px {
    max-height: 30px !important;
  }

  .mh-lg-35px {
    max-height: 35px !important;
  }

  .mh-lg-40px {
    max-height: 40px !important;
  }

  .mh-lg-45px {
    max-height: 45px !important;
  }

  .mh-lg-50px {
    max-height: 50px !important;
  }

  .mh-lg-55px {
    max-height: 55px !important;
  }

  .mh-lg-60px {
    max-height: 60px !important;
  }

  .mh-lg-65px {
    max-height: 65px !important;
  }

  .mh-lg-70px {
    max-height: 70px !important;
  }

  .mh-lg-75px {
    max-height: 75px !important;
  }

  .mh-lg-80px {
    max-height: 80px !important;
  }

  .mh-lg-85px {
    max-height: 85px !important;
  }

  .mh-lg-90px {
    max-height: 90px !important;
  }

  .mh-lg-95px {
    max-height: 95px !important;
  }

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

  .mh-lg-125px {
    max-height: 125px !important;
  }

  .mh-lg-150px {
    max-height: 150px !important;
  }

  .mh-lg-175px {
    max-height: 175px !important;
  }

  .mh-lg-200px {
    max-height: 200px !important;
  }

  .mh-lg-225px {
    max-height: 225px !important;
  }

  .mh-lg-250px {
    max-height: 250px !important;
  }

  .mh-lg-275px {
    max-height: 275px !important;
  }

  .mh-lg-300px {
    max-height: 300px !important;
  }

  .mh-lg-325px {
    max-height: 325px !important;
  }

  .mh-lg-350px {
    max-height: 350px !important;
  }

  .mh-lg-375px {
    max-height: 375px !important;
  }

  .mh-lg-400px {
    max-height: 400px !important;
  }

  .mh-lg-425px {
    max-height: 425px !important;
  }

  .mh-lg-450px {
    max-height: 450px !important;
  }

  .mh-lg-475px {
    max-height: 475px !important;
  }

  .mh-lg-500px {
    max-height: 500px !important;
  }

  .mh-lg-550px {
    max-height: 550px !important;
  }

  .mh-lg-600px {
    max-height: 600px !important;
  }

  .mh-lg-650px {
    max-height: 650px !important;
  }

  .mh-lg-700px {
    max-height: 700px !important;
  }

  .mh-lg-750px {
    max-height: 750px !important;
  }

  .mh-lg-800px {
    max-height: 800px !important;
  }

  .mh-lg-850px {
    max-height: 850px !important;
  }

  .mh-lg-900px {
    max-height: 900px !important;
  }

  .mh-lg-950px {
    max-height: 950px !important;
  }

  .mh-lg-1000px {
    max-height: 1000px !important;
  }

  .flex-lg-fill {
    flex: 1 1 auto !important;
  }

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

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

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

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

  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }

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

  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }

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

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

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

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

  .gap-lg-0 {
    gap: 0 !important;
  }

  .gap-lg-1 {
    gap: 0.25rem !important;
  }

  .gap-lg-2 {
    gap: 0.5rem !important;
  }

  .gap-lg-3 {
    gap: 0.75rem !important;
  }

  .gap-lg-4 {
    gap: 1rem !important;
  }

  .gap-lg-5 {
    gap: 1.25rem !important;
  }

  .gap-lg-6 {
    gap: 1.5rem !important;
  }

  .gap-lg-7 {
    gap: 1.75rem !important;
  }

  .gap-lg-8 {
    gap: 2rem !important;
  }

  .gap-lg-9 {
    gap: 2.25rem !important;
  }

  .gap-lg-10 {
    gap: 2.5rem !important;
  }

  .gap-lg-11 {
    gap: 2.75rem !important;
  }

  .gap-lg-12 {
    gap: 3rem !important;
  }

  .gap-lg-13 {
    gap: 3.25rem !important;
  }

  .gap-lg-14 {
    gap: 3.5rem !important;
  }

  .gap-lg-15 {
    gap: 3.75rem !important;
  }

  .gap-lg-16 {
    gap: 4rem !important;
  }

  .gap-lg-17 {
    gap: 4.25rem !important;
  }

  .gap-lg-18 {
    gap: 4.5rem !important;
  }

  .gap-lg-19 {
    gap: 4.75rem !important;
  }

  .gap-lg-20 {
    gap: 5rem !important;
  }

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

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

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

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

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

  .justify-content-lg-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

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

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

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

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

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

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

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

  .align-self-lg-auto {
    align-self: auto !important;
  }

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

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

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

  .align-self-lg-baseline {
    align-self: baseline !important;
  }

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

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

  .order-lg-0 {
    order: 0 !important;
  }

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

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

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

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

  .order-lg-5 {
    order: 5 !important;
  }

  .order-lg-last {
    order: 6 !important;
  }

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

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

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

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

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

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

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

  .m-lg-7 {
    margin: 1.75rem !important;
  }

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

  .m-lg-9 {
    margin: 2.25rem !important;
  }

  .m-lg-10 {
    margin: 2.5rem !important;
  }

  .m-lg-11 {
    margin: 2.75rem !important;
  }

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

  .m-lg-13 {
    margin: 3.25rem !important;
  }

  .m-lg-14 {
    margin: 3.5rem !important;
  }

  .m-lg-15 {
    margin: 3.75rem !important;
  }

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

  .m-lg-17 {
    margin: 4.25rem !important;
  }

  .m-lg-18 {
    margin: 4.5rem !important;
  }

  .m-lg-19 {
    margin: 4.75rem !important;
  }

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

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

  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-lg-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }

  .mx-lg-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-lg-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-lg-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-lg-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }

  .mx-lg-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .mx-lg-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }

  .mx-lg-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-lg-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }

  .mx-lg-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-lg-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }

  .mx-lg-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }

  .mx-lg-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

  .mx-lg-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .mx-lg-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important;
  }

  .mx-lg-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }

  .mx-lg-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important;
  }

  .mx-lg-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !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: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-lg-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .my-lg-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-lg-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-lg-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-lg-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .my-lg-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-lg-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .my-lg-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-lg-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .my-lg-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-lg-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }

  .my-lg-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .my-lg-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .my-lg-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .my-lg-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }

  .my-lg-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .my-lg-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
  }

  .my-lg-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

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

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

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

  .mt-lg-3 {
    margin-top: 0.75rem !important;
  }

  .mt-lg-4 {
    margin-top: 1rem !important;
  }

  .mt-lg-5 {
    margin-top: 1.25rem !important;
  }

  .mt-lg-6 {
    margin-top: 1.5rem !important;
  }

  .mt-lg-7 {
    margin-top: 1.75rem !important;
  }

  .mt-lg-8 {
    margin-top: 2rem !important;
  }

  .mt-lg-9 {
    margin-top: 2.25rem !important;
  }

  .mt-lg-10 {
    margin-top: 2.5rem !important;
  }

  .mt-lg-11 {
    margin-top: 2.75rem !important;
  }

  .mt-lg-12 {
    margin-top: 3rem !important;
  }

  .mt-lg-13 {
    margin-top: 3.25rem !important;
  }

  .mt-lg-14 {
    margin-top: 3.5rem !important;
  }

  .mt-lg-15 {
    margin-top: 3.75rem !important;
  }

  .mt-lg-16 {
    margin-top: 4rem !important;
  }

  .mt-lg-17 {
    margin-top: 4.25rem !important;
  }

  .mt-lg-18 {
    margin-top: 4.5rem !important;
  }

  .mt-lg-19 {
    margin-top: 4.75rem !important;
  }

  .mt-lg-20 {
    margin-top: 5rem !important;
  }

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

  .me-lg-0 {
    margin-right: 0 !important;
  }

  .me-lg-1 {
    margin-right: 0.25rem !important;
  }

  .me-lg-2 {
    margin-right: 0.5rem !important;
  }

  .me-lg-3 {
    margin-right: 0.75rem !important;
  }

  .me-lg-4 {
    margin-right: 1rem !important;
  }

  .me-lg-5 {
    margin-right: 1.25rem !important;
  }

  .me-lg-6 {
    margin-right: 1.5rem !important;
  }

  .me-lg-7 {
    margin-right: 1.75rem !important;
  }

  .me-lg-8 {
    margin-right: 2rem !important;
  }

  .me-lg-9 {
    margin-right: 2.25rem !important;
  }

  .me-lg-10 {
    margin-right: 2.5rem !important;
  }

  .me-lg-11 {
    margin-right: 2.75rem !important;
  }

  .me-lg-12 {
    margin-right: 3rem !important;
  }

  .me-lg-13 {
    margin-right: 3.25rem !important;
  }

  .me-lg-14 {
    margin-right: 3.5rem !important;
  }

  .me-lg-15 {
    margin-right: 3.75rem !important;
  }

  .me-lg-16 {
    margin-right: 4rem !important;
  }

  .me-lg-17 {
    margin-right: 4.25rem !important;
  }

  .me-lg-18 {
    margin-right: 4.5rem !important;
  }

  .me-lg-19 {
    margin-right: 4.75rem !important;
  }

  .me-lg-20 {
    margin-right: 5rem !important;
  }

  .me-lg-auto {
    margin-right: auto !important;
  }

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

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

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

  .mb-lg-3 {
    margin-bottom: 0.75rem !important;
  }

  .mb-lg-4 {
    margin-bottom: 1rem !important;
  }

  .mb-lg-5 {
    margin-bottom: 1.25rem !important;
  }

  .mb-lg-6 {
    margin-bottom: 1.5rem !important;
  }

  .mb-lg-7 {
    margin-bottom: 1.75rem !important;
  }

  .mb-lg-8 {
    margin-bottom: 2rem !important;
  }

  .mb-lg-9 {
    margin-bottom: 2.25rem !important;
  }

  .mb-lg-10 {
    margin-bottom: 2.5rem !important;
  }

  .mb-lg-11 {
    margin-bottom: 2.75rem !important;
  }

  .mb-lg-12 {
    margin-bottom: 3rem !important;
  }

  .mb-lg-13 {
    margin-bottom: 3.25rem !important;
  }

  .mb-lg-14 {
    margin-bottom: 3.5rem !important;
  }

  .mb-lg-15 {
    margin-bottom: 3.75rem !important;
  }

  .mb-lg-16 {
    margin-bottom: 4rem !important;
  }

  .mb-lg-17 {
    margin-bottom: 4.25rem !important;
  }

  .mb-lg-18 {
    margin-bottom: 4.5rem !important;
  }

  .mb-lg-19 {
    margin-bottom: 4.75rem !important;
  }

  .mb-lg-20 {
    margin-bottom: 5rem !important;
  }

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

  .ms-lg-0 {
    margin-left: 0 !important;
  }

  .ms-lg-1 {
    margin-left: 0.25rem !important;
  }

  .ms-lg-2 {
    margin-left: 0.5rem !important;
  }

  .ms-lg-3 {
    margin-left: 0.75rem !important;
  }

  .ms-lg-4 {
    margin-left: 1rem !important;
  }

  .ms-lg-5 {
    margin-left: 1.25rem !important;
  }

  .ms-lg-6 {
    margin-left: 1.5rem !important;
  }

  .ms-lg-7 {
    margin-left: 1.75rem !important;
  }

  .ms-lg-8 {
    margin-left: 2rem !important;
  }

  .ms-lg-9 {
    margin-left: 2.25rem !important;
  }

  .ms-lg-10 {
    margin-left: 2.5rem !important;
  }

  .ms-lg-11 {
    margin-left: 2.75rem !important;
  }

  .ms-lg-12 {
    margin-left: 3rem !important;
  }

  .ms-lg-13 {
    margin-left: 3.25rem !important;
  }

  .ms-lg-14 {
    margin-left: 3.5rem !important;
  }

  .ms-lg-15 {
    margin-left: 3.75rem !important;
  }

  .ms-lg-16 {
    margin-left: 4rem !important;
  }

  .ms-lg-17 {
    margin-left: 4.25rem !important;
  }

  .ms-lg-18 {
    margin-left: 4.5rem !important;
  }

  .ms-lg-19 {
    margin-left: 4.75rem !important;
  }

  .ms-lg-20 {
    margin-left: 5rem !important;
  }

  .ms-lg-auto {
    margin-left: auto !important;
  }

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

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

  .m-lg-n3 {
    margin: -0.75rem !important;
  }

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

  .m-lg-n5 {
    margin: -1.25rem !important;
  }

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

  .m-lg-n7 {
    margin: -1.75rem !important;
  }

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

  .m-lg-n9 {
    margin: -2.25rem !important;
  }

  .m-lg-n10 {
    margin: -2.5rem !important;
  }

  .m-lg-n11 {
    margin: -2.75rem !important;
  }

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

  .m-lg-n13 {
    margin: -3.25rem !important;
  }

  .m-lg-n14 {
    margin: -3.5rem !important;
  }

  .m-lg-n15 {
    margin: -3.75rem !important;
  }

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

  .m-lg-n17 {
    margin: -4.25rem !important;
  }

  .m-lg-n18 {
    margin: -4.5rem !important;
  }

  .m-lg-n19 {
    margin: -4.75rem !important;
  }

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

  .mx-lg-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-lg-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-lg-n3 {
    margin-right: -0.75rem !important;
    margin-left: -0.75rem !important;
  }

  .mx-lg-n4 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-lg-n5 {
    margin-right: -1.25rem !important;
    margin-left: -1.25rem !important;
  }

  .mx-lg-n6 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-lg-n7 {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important;
  }

  .mx-lg-n8 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }

  .mx-lg-n9 {
    margin-right: -2.25rem !important;
    margin-left: -2.25rem !important;
  }

  .mx-lg-n10 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }

  .mx-lg-n11 {
    margin-right: -2.75rem !important;
    margin-left: -2.75rem !important;
  }

  .mx-lg-n12 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .mx-lg-n13 {
    margin-right: -3.25rem !important;
    margin-left: -3.25rem !important;
  }

  .mx-lg-n14 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }

  .mx-lg-n15 {
    margin-right: -3.75rem !important;
    margin-left: -3.75rem !important;
  }

  .mx-lg-n16 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }

  .mx-lg-n17 {
    margin-right: -4.25rem !important;
    margin-left: -4.25rem !important;
  }

  .mx-lg-n18 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }

  .mx-lg-n19 {
    margin-right: -4.75rem !important;
    margin-left: -4.75rem !important;
  }

  .mx-lg-n20 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }

  .my-lg-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-lg-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-lg-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .my-lg-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-lg-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .my-lg-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-lg-n7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .my-lg-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .my-lg-n9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .my-lg-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .my-lg-n11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .my-lg-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .my-lg-n13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }

  .my-lg-n14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .my-lg-n15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }

  .my-lg-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .my-lg-n17 {
    margin-top: -4.25rem !important;
    margin-bottom: -4.25rem !important;
  }

  .my-lg-n18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

  .my-lg-n19 {
    margin-top: -4.75rem !important;
    margin-bottom: -4.75rem !important;
  }

  .my-lg-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .mt-lg-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-lg-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-lg-n3 {
    margin-top: -0.75rem !important;
  }

  .mt-lg-n4 {
    margin-top: -1rem !important;
  }

  .mt-lg-n5 {
    margin-top: -1.25rem !important;
  }

  .mt-lg-n6 {
    margin-top: -1.5rem !important;
  }

  .mt-lg-n7 {
    margin-top: -1.75rem !important;
  }

  .mt-lg-n8 {
    margin-top: -2rem !important;
  }

  .mt-lg-n9 {
    margin-top: -2.25rem !important;
  }

  .mt-lg-n10 {
    margin-top: -2.5rem !important;
  }

  .mt-lg-n11 {
    margin-top: -2.75rem !important;
  }

  .mt-lg-n12 {
    margin-top: -3rem !important;
  }

  .mt-lg-n13 {
    margin-top: -3.25rem !important;
  }

  .mt-lg-n14 {
    margin-top: -3.5rem !important;
  }

  .mt-lg-n15 {
    margin-top: -3.75rem !important;
  }

  .mt-lg-n16 {
    margin-top: -4rem !important;
  }

  .mt-lg-n17 {
    margin-top: -4.25rem !important;
  }

  .mt-lg-n18 {
    margin-top: -4.5rem !important;
  }

  .mt-lg-n19 {
    margin-top: -4.75rem !important;
  }

  .mt-lg-n20 {
    margin-top: -5rem !important;
  }

  .me-lg-n1 {
    margin-right: -0.25rem !important;
  }

  .me-lg-n2 {
    margin-right: -0.5rem !important;
  }

  .me-lg-n3 {
    margin-right: -0.75rem !important;
  }

  .me-lg-n4 {
    margin-right: -1rem !important;
  }

  .me-lg-n5 {
    margin-right: -1.25rem !important;
  }

  .me-lg-n6 {
    margin-right: -1.5rem !important;
  }

  .me-lg-n7 {
    margin-right: -1.75rem !important;
  }

  .me-lg-n8 {
    margin-right: -2rem !important;
  }

  .me-lg-n9 {
    margin-right: -2.25rem !important;
  }

  .me-lg-n10 {
    margin-right: -2.5rem !important;
  }

  .me-lg-n11 {
    margin-right: -2.75rem !important;
  }

  .me-lg-n12 {
    margin-right: -3rem !important;
  }

  .me-lg-n13 {
    margin-right: -3.25rem !important;
  }

  .me-lg-n14 {
    margin-right: -3.5rem !important;
  }

  .me-lg-n15 {
    margin-right: -3.75rem !important;
  }

  .me-lg-n16 {
    margin-right: -4rem !important;
  }

  .me-lg-n17 {
    margin-right: -4.25rem !important;
  }

  .me-lg-n18 {
    margin-right: -4.5rem !important;
  }

  .me-lg-n19 {
    margin-right: -4.75rem !important;
  }

  .me-lg-n20 {
    margin-right: -5rem !important;
  }

  .mb-lg-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-lg-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-lg-n3 {
    margin-bottom: -0.75rem !important;
  }

  .mb-lg-n4 {
    margin-bottom: -1rem !important;
  }

  .mb-lg-n5 {
    margin-bottom: -1.25rem !important;
  }

  .mb-lg-n6 {
    margin-bottom: -1.5rem !important;
  }

  .mb-lg-n7 {
    margin-bottom: -1.75rem !important;
  }

  .mb-lg-n8 {
    margin-bottom: -2rem !important;
  }

  .mb-lg-n9 {
    margin-bottom: -2.25rem !important;
  }

  .mb-lg-n10 {
    margin-bottom: -2.5rem !important;
  }

  .mb-lg-n11 {
    margin-bottom: -2.75rem !important;
  }

  .mb-lg-n12 {
    margin-bottom: -3rem !important;
  }

  .mb-lg-n13 {
    margin-bottom: -3.25rem !important;
  }

  .mb-lg-n14 {
    margin-bottom: -3.5rem !important;
  }

  .mb-lg-n15 {
    margin-bottom: -3.75rem !important;
  }

  .mb-lg-n16 {
    margin-bottom: -4rem !important;
  }

  .mb-lg-n17 {
    margin-bottom: -4.25rem !important;
  }

  .mb-lg-n18 {
    margin-bottom: -4.5rem !important;
  }

  .mb-lg-n19 {
    margin-bottom: -4.75rem !important;
  }

  .mb-lg-n20 {
    margin-bottom: -5rem !important;
  }

  .ms-lg-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-lg-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-lg-n3 {
    margin-left: -0.75rem !important;
  }

  .ms-lg-n4 {
    margin-left: -1rem !important;
  }

  .ms-lg-n5 {
    margin-left: -1.25rem !important;
  }

  .ms-lg-n6 {
    margin-left: -1.5rem !important;
  }

  .ms-lg-n7 {
    margin-left: -1.75rem !important;
  }

  .ms-lg-n8 {
    margin-left: -2rem !important;
  }

  .ms-lg-n9 {
    margin-left: -2.25rem !important;
  }

  .ms-lg-n10 {
    margin-left: -2.5rem !important;
  }

  .ms-lg-n11 {
    margin-left: -2.75rem !important;
  }

  .ms-lg-n12 {
    margin-left: -3rem !important;
  }

  .ms-lg-n13 {
    margin-left: -3.25rem !important;
  }

  .ms-lg-n14 {
    margin-left: -3.5rem !important;
  }

  .ms-lg-n15 {
    margin-left: -3.75rem !important;
  }

  .ms-lg-n16 {
    margin-left: -4rem !important;
  }

  .ms-lg-n17 {
    margin-left: -4.25rem !important;
  }

  .ms-lg-n18 {
    margin-left: -4.5rem !important;
  }

  .ms-lg-n19 {
    margin-left: -4.75rem !important;
  }

  .ms-lg-n20 {
    margin-left: -5rem !important;
  }

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

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

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

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

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

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

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

  .p-lg-7 {
    padding: 1.75rem !important;
  }

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

  .p-lg-9 {
    padding: 2.25rem !important;
  }

  .p-lg-10 {
    padding: 2.5rem !important;
  }

  .p-lg-11 {
    padding: 2.75rem !important;
  }

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

  .p-lg-13 {
    padding: 3.25rem !important;
  }

  .p-lg-14 {
    padding: 3.5rem !important;
  }

  .p-lg-15 {
    padding: 3.75rem !important;
  }

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

  .p-lg-17 {
    padding: 4.25rem !important;
  }

  .p-lg-18 {
    padding: 4.5rem !important;
  }

  .p-lg-19 {
    padding: 4.75rem !important;
  }

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

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

  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-lg-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }

  .px-lg-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-lg-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-lg-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-lg-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }

  .px-lg-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .px-lg-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }

  .px-lg-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-lg-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }

  .px-lg-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-lg-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }

  .px-lg-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }

  .px-lg-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

  .px-lg-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .px-lg-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important;
  }

  .px-lg-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }

  .px-lg-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important;
  }

  .px-lg-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }

  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-lg-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .py-lg-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-lg-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-lg-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-lg-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .py-lg-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-lg-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .py-lg-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-lg-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .py-lg-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-lg-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .py-lg-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .py-lg-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .py-lg-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-lg-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }

  .py-lg-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .py-lg-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }

  .py-lg-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

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

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

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

  .pt-lg-3 {
    padding-top: 0.75rem !important;
  }

  .pt-lg-4 {
    padding-top: 1rem !important;
  }

  .pt-lg-5 {
    padding-top: 1.25rem !important;
  }

  .pt-lg-6 {
    padding-top: 1.5rem !important;
  }

  .pt-lg-7 {
    padding-top: 1.75rem !important;
  }

  .pt-lg-8 {
    padding-top: 2rem !important;
  }

  .pt-lg-9 {
    padding-top: 2.25rem !important;
  }

  .pt-lg-10 {
    padding-top: 2.5rem !important;
  }

  .pt-lg-11 {
    padding-top: 2.75rem !important;
  }

  .pt-lg-12 {
    padding-top: 3rem !important;
  }

  .pt-lg-13 {
    padding-top: 3.25rem !important;
  }

  .pt-lg-14 {
    padding-top: 3.5rem !important;
  }

  .pt-lg-15 {
    padding-top: 3.75rem !important;
  }

  .pt-lg-16 {
    padding-top: 4rem !important;
  }

  .pt-lg-17 {
    padding-top: 4.25rem !important;
  }

  .pt-lg-18 {
    padding-top: 4.5rem !important;
  }

  .pt-lg-19 {
    padding-top: 4.75rem !important;
  }

  .pt-lg-20 {
    padding-top: 5rem !important;
  }

  .pe-lg-0 {
    padding-right: 0 !important;
  }

  .pe-lg-1 {
    padding-right: 0.25rem !important;
  }

  .pe-lg-2 {
    padding-right: 0.5rem !important;
  }

  .pe-lg-3 {
    padding-right: 0.75rem !important;
  }

  .pe-lg-4 {
    padding-right: 1rem !important;
  }

  .pe-lg-5 {
    padding-right: 1.25rem !important;
  }

  .pe-lg-6 {
    padding-right: 1.5rem !important;
  }

  .pe-lg-7 {
    padding-right: 1.75rem !important;
  }

  .pe-lg-8 {
    padding-right: 2rem !important;
  }

  .pe-lg-9 {
    padding-right: 2.25rem !important;
  }

  .pe-lg-10 {
    padding-right: 2.5rem !important;
  }

  .pe-lg-11 {
    padding-right: 2.75rem !important;
  }

  .pe-lg-12 {
    padding-right: 3rem !important;
  }

  .pe-lg-13 {
    padding-right: 3.25rem !important;
  }

  .pe-lg-14 {
    padding-right: 3.5rem !important;
  }

  .pe-lg-15 {
    padding-right: 3.75rem !important;
  }

  .pe-lg-16 {
    padding-right: 4rem !important;
  }

  .pe-lg-17 {
    padding-right: 4.25rem !important;
  }

  .pe-lg-18 {
    padding-right: 4.5rem !important;
  }

  .pe-lg-19 {
    padding-right: 4.75rem !important;
  }

  .pe-lg-20 {
    padding-right: 5rem !important;
  }

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

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

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

  .pb-lg-3 {
    padding-bottom: 0.75rem !important;
  }

  .pb-lg-4 {
    padding-bottom: 1rem !important;
  }

  .pb-lg-5 {
    padding-bottom: 1.25rem !important;
  }

  .pb-lg-6 {
    padding-bottom: 1.5rem !important;
  }

  .pb-lg-7 {
    padding-bottom: 1.75rem !important;
  }

  .pb-lg-8 {
    padding-bottom: 2rem !important;
  }

  .pb-lg-9 {
    padding-bottom: 2.25rem !important;
  }

  .pb-lg-10 {
    padding-bottom: 2.5rem !important;
  }

  .pb-lg-11 {
    padding-bottom: 2.75rem !important;
  }

  .pb-lg-12 {
    padding-bottom: 3rem !important;
  }

  .pb-lg-13 {
    padding-bottom: 3.25rem !important;
  }

  .pb-lg-14 {
    padding-bottom: 3.5rem !important;
  }

  .pb-lg-15 {
    padding-bottom: 3.75rem !important;
  }

  .pb-lg-16 {
    padding-bottom: 4rem !important;
  }

  .pb-lg-17 {
    padding-bottom: 4.25rem !important;
  }

  .pb-lg-18 {
    padding-bottom: 4.5rem !important;
  }

  .pb-lg-19 {
    padding-bottom: 4.75rem !important;
  }

  .pb-lg-20 {
    padding-bottom: 5rem !important;
  }

  .ps-lg-0 {
    padding-left: 0 !important;
  }

  .ps-lg-1 {
    padding-left: 0.25rem !important;
  }

  .ps-lg-2 {
    padding-left: 0.5rem !important;
  }

  .ps-lg-3 {
    padding-left: 0.75rem !important;
  }

  .ps-lg-4 {
    padding-left: 1rem !important;
  }

  .ps-lg-5 {
    padding-left: 1.25rem !important;
  }

  .ps-lg-6 {
    padding-left: 1.5rem !important;
  }

  .ps-lg-7 {
    padding-left: 1.75rem !important;
  }

  .ps-lg-8 {
    padding-left: 2rem !important;
  }

  .ps-lg-9 {
    padding-left: 2.25rem !important;
  }

  .ps-lg-10 {
    padding-left: 2.5rem !important;
  }

  .ps-lg-11 {
    padding-left: 2.75rem !important;
  }

  .ps-lg-12 {
    padding-left: 3rem !important;
  }

  .ps-lg-13 {
    padding-left: 3.25rem !important;
  }

  .ps-lg-14 {
    padding-left: 3.5rem !important;
  }

  .ps-lg-15 {
    padding-left: 3.75rem !important;
  }

  .ps-lg-16 {
    padding-left: 4rem !important;
  }

  .ps-lg-17 {
    padding-left: 4.25rem !important;
  }

  .ps-lg-18 {
    padding-left: 4.5rem !important;
  }

  .ps-lg-19 {
    padding-left: 4.75rem !important;
  }

  .ps-lg-20 {
    padding-left: 5rem !important;
  }

  .fs-lg-1 {
    font-size: calc(1.3rem + 0.6vw) !important;
  }

  .fs-lg-2 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }

  .fs-lg-3 {
    font-size: calc(1.26rem + 0.12vw) !important;
  }

  .fs-lg-4 {
    font-size: 1.25rem !important;
  }

  .fs-lg-5 {
    font-size: 1.15rem !important;
  }

  .fs-lg-6 {
    font-size: 1.075rem !important;
  }

  .fs-lg-7 {
    font-size: 0.95rem !important;
  }

  .fs-lg-8 {
    font-size: 0.85rem !important;
  }

  .fs-lg-9 {
    font-size: 0.75rem !important;
  }

  .fs-lg-10 {
    font-size: 0.5rem !important;
  }

  .fs-lg-base {
    font-size: 1rem !important;
  }

  .fs-lg-fluid {
    font-size: 100% !important;
  }

  .fs-lg-2x {
    font-size: calc(1.325rem + 0.9vw) !important;
  }

  .fs-lg-2qx {
    font-size: calc(1.35rem + 1.2vw) !important;
  }

  .fs-lg-2hx {
    font-size: calc(1.375rem + 1.5vw) !important;
  }

  .fs-lg-2tx {
    font-size: calc(1.4rem + 1.8vw) !important;
  }

  .fs-lg-3x {
    font-size: calc(1.425rem + 2.1vw) !important;
  }

  .fs-lg-3qx {
    font-size: calc(1.45rem + 2.4vw) !important;
  }

  .fs-lg-3hx {
    font-size: calc(1.475rem + 2.7vw) !important;
  }

  .fs-lg-3tx {
    font-size: calc(1.5rem + 3vw) !important;
  }

  .fs-lg-4x {
    font-size: calc(1.525rem + 3.3vw) !important;
  }

  .fs-lg-4qx {
    font-size: calc(1.55rem + 3.6vw) !important;
  }

  .fs-lg-4hx {
    font-size: calc(1.575rem + 3.9vw) !important;
  }

  .fs-lg-4tx {
    font-size: calc(1.6rem + 4.2vw) !important;
  }

  .fs-lg-5x {
    font-size: calc(1.625rem + 4.5vw) !important;
  }

  .fs-lg-5qx {
    font-size: calc(1.65rem + 4.8vw) !important;
  }

  .fs-lg-5hx {
    font-size: calc(1.675rem + 5.1vw) !important;
  }

  .fs-lg-5tx {
    font-size: calc(1.7rem + 5.4vw) !important;
  }

  .text-lg-start {
    text-align: left !important;
  }

  .text-lg-end {
    text-align: right !important;
  }

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

  .min-w-lg-unset {
    min-width: unset !important;
  }

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

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

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

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

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

  .min-w-lg-1px {
    min-width: 1px !important;
  }

  .min-w-lg-2px {
    min-width: 2px !important;
  }

  .min-w-lg-3px {
    min-width: 3px !important;
  }

  .min-w-lg-4px {
    min-width: 4px !important;
  }

  .min-w-lg-5px {
    min-width: 5px !important;
  }

  .min-w-lg-6px {
    min-width: 6px !important;
  }

  .min-w-lg-7px {
    min-width: 7px !important;
  }

  .min-w-lg-8px {
    min-width: 8px !important;
  }

  .min-w-lg-9px {
    min-width: 9px !important;
  }

  .min-w-lg-10px {
    min-width: 10px !important;
  }

  .min-w-lg-15px {
    min-width: 15px !important;
  }

  .min-w-lg-20px {
    min-width: 20px !important;
  }

  .min-w-lg-25px {
    min-width: 25px !important;
  }

  .min-w-lg-30px {
    min-width: 30px !important;
  }

  .min-w-lg-35px {
    min-width: 35px !important;
  }

  .min-w-lg-40px {
    min-width: 40px !important;
  }

  .min-w-lg-45px {
    min-width: 45px !important;
  }

  .min-w-lg-50px {
    min-width: 50px !important;
  }

  .min-w-lg-55px {
    min-width: 55px !important;
  }

  .min-w-lg-60px {
    min-width: 60px !important;
  }

  .min-w-lg-65px {
    min-width: 65px !important;
  }

  .min-w-lg-70px {
    min-width: 70px !important;
  }

  .min-w-lg-75px {
    min-width: 75px !important;
  }

  .min-w-lg-80px {
    min-width: 80px !important;
  }

  .min-w-lg-85px {
    min-width: 85px !important;
  }

  .min-w-lg-90px {
    min-width: 90px !important;
  }

  .min-w-lg-95px {
    min-width: 95px !important;
  }

  .min-w-lg-100px {
    min-width: 100px !important;
  }

  .min-w-lg-125px {
    min-width: 125px !important;
  }

  .min-w-lg-150px {
    min-width: 150px !important;
  }

  .min-w-lg-175px {
    min-width: 175px !important;
  }

  .min-w-lg-200px {
    min-width: 200px !important;
  }

  .min-w-lg-225px {
    min-width: 225px !important;
  }

  .min-w-lg-250px {
    min-width: 250px !important;
  }

  .min-w-lg-275px {
    min-width: 275px !important;
  }

  .min-w-lg-300px {
    min-width: 300px !important;
  }

  .min-w-lg-325px {
    min-width: 325px !important;
  }

  .min-w-lg-350px {
    min-width: 350px !important;
  }

  .min-w-lg-375px {
    min-width: 375px !important;
  }

  .min-w-lg-400px {
    min-width: 400px !important;
  }

  .min-w-lg-425px {
    min-width: 425px !important;
  }

  .min-w-lg-450px {
    min-width: 450px !important;
  }

  .min-w-lg-475px {
    min-width: 475px !important;
  }

  .min-w-lg-500px {
    min-width: 500px !important;
  }

  .min-w-lg-550px {
    min-width: 550px !important;
  }

  .min-w-lg-600px {
    min-width: 600px !important;
  }

  .min-w-lg-650px {
    min-width: 650px !important;
  }

  .min-w-lg-700px {
    min-width: 700px !important;
  }

  .min-w-lg-750px {
    min-width: 750px !important;
  }

  .min-w-lg-800px {
    min-width: 800px !important;
  }

  .min-w-lg-850px {
    min-width: 850px !important;
  }

  .min-w-lg-900px {
    min-width: 900px !important;
  }

  .min-w-lg-950px {
    min-width: 950px !important;
  }

  .min-w-lg-1000px {
    min-width: 1000px !important;
  }

  .min-h-lg-unset {
    min-height: unset !important;
  }

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

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

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

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

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

  .min-h-lg-1px {
    min-height: 1px !important;
  }

  .min-h-lg-2px {
    min-height: 2px !important;
  }

  .min-h-lg-3px {
    min-height: 3px !important;
  }

  .min-h-lg-4px {
    min-height: 4px !important;
  }

  .min-h-lg-5px {
    min-height: 5px !important;
  }

  .min-h-lg-6px {
    min-height: 6px !important;
  }

  .min-h-lg-7px {
    min-height: 7px !important;
  }

  .min-h-lg-8px {
    min-height: 8px !important;
  }

  .min-h-lg-9px {
    min-height: 9px !important;
  }

  .min-h-lg-10px {
    min-height: 10px !important;
  }

  .min-h-lg-15px {
    min-height: 15px !important;
  }

  .min-h-lg-20px {
    min-height: 20px !important;
  }

  .min-h-lg-25px {
    min-height: 25px !important;
  }

  .min-h-lg-30px {
    min-height: 30px !important;
  }

  .min-h-lg-35px {
    min-height: 35px !important;
  }

  .min-h-lg-40px {
    min-height: 40px !important;
  }

  .min-h-lg-45px {
    min-height: 45px !important;
  }

  .min-h-lg-50px {
    min-height: 50px !important;
  }

  .min-h-lg-55px {
    min-height: 55px !important;
  }

  .min-h-lg-60px {
    min-height: 60px !important;
  }

  .min-h-lg-65px {
    min-height: 65px !important;
  }

  .min-h-lg-70px {
    min-height: 70px !important;
  }

  .min-h-lg-75px {
    min-height: 75px !important;
  }

  .min-h-lg-80px {
    min-height: 80px !important;
  }

  .min-h-lg-85px {
    min-height: 85px !important;
  }

  .min-h-lg-90px {
    min-height: 90px !important;
  }

  .min-h-lg-95px {
    min-height: 95px !important;
  }

  .min-h-lg-100px {
    min-height: 100px !important;
  }

  .min-h-lg-125px {
    min-height: 125px !important;
  }

  .min-h-lg-150px {
    min-height: 150px !important;
  }

  .min-h-lg-175px {
    min-height: 175px !important;
  }

  .min-h-lg-200px {
    min-height: 200px !important;
  }

  .min-h-lg-225px {
    min-height: 225px !important;
  }

  .min-h-lg-250px {
    min-height: 250px !important;
  }

  .min-h-lg-275px {
    min-height: 275px !important;
  }

  .min-h-lg-300px {
    min-height: 300px !important;
  }

  .min-h-lg-325px {
    min-height: 325px !important;
  }

  .min-h-lg-350px {
    min-height: 350px !important;
  }

  .min-h-lg-375px {
    min-height: 375px !important;
  }

  .min-h-lg-400px {
    min-height: 400px !important;
  }

  .min-h-lg-425px {
    min-height: 425px !important;
  }

  .min-h-lg-450px {
    min-height: 450px !important;
  }

  .min-h-lg-475px {
    min-height: 475px !important;
  }

  .min-h-lg-500px {
    min-height: 500px !important;
  }

  .min-h-lg-550px {
    min-height: 550px !important;
  }

  .min-h-lg-600px {
    min-height: 600px !important;
  }

  .min-h-lg-650px {
    min-height: 650px !important;
  }

  .min-h-lg-700px {
    min-height: 700px !important;
  }

  .min-h-lg-750px {
    min-height: 750px !important;
  }

  .min-h-lg-800px {
    min-height: 800px !important;
  }

  .min-h-lg-850px {
    min-height: 850px !important;
  }

  .min-h-lg-900px {
    min-height: 900px !important;
  }

  .min-h-lg-950px {
    min-height: 950px !important;
  }

  .min-h-lg-1000px {
    min-height: 1000px !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: flex !important;
  }

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

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

  .position-xl-static {
    position: static !important;
  }

  .position-xl-relative {
    position: relative !important;
  }

  .position-xl-absolute {
    position: absolute !important;
  }

  .position-xl-fixed {
    position: fixed !important;
  }

  .position-xl-sticky {
    position: sticky !important;
  }

  .w-xl-unset {
    width: unset !important;
  }

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

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

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

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

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

  .w-xl-1px {
    width: 1px !important;
  }

  .w-xl-2px {
    width: 2px !important;
  }

  .w-xl-3px {
    width: 3px !important;
  }

  .w-xl-4px {
    width: 4px !important;
  }

  .w-xl-5px {
    width: 5px !important;
  }

  .w-xl-6px {
    width: 6px !important;
  }

  .w-xl-7px {
    width: 7px !important;
  }

  .w-xl-8px {
    width: 8px !important;
  }

  .w-xl-9px {
    width: 9px !important;
  }

  .w-xl-10px {
    width: 10px !important;
  }

  .w-xl-15px {
    width: 15px !important;
  }

  .w-xl-20px {
    width: 20px !important;
  }

  .w-xl-25px {
    width: 25px !important;
  }

  .w-xl-30px {
    width: 30px !important;
  }

  .w-xl-35px {
    width: 35px !important;
  }

  .w-xl-40px {
    width: 40px !important;
  }

  .w-xl-45px {
    width: 45px !important;
  }

  .w-xl-50px {
    width: 50px !important;
  }

  .w-xl-55px {
    width: 55px !important;
  }

  .w-xl-60px {
    width: 60px !important;
  }

  .w-xl-65px {
    width: 65px !important;
  }

  .w-xl-70px {
    width: 70px !important;
  }

  .w-xl-75px {
    width: 75px !important;
  }

  .w-xl-80px {
    width: 80px !important;
  }

  .w-xl-85px {
    width: 85px !important;
  }

  .w-xl-90px {
    width: 90px !important;
  }

  .w-xl-95px {
    width: 95px !important;
  }

  .w-xl-100px {
    width: 100px !important;
  }

  .w-xl-125px {
    width: 125px !important;
  }

  .w-xl-150px {
    width: 150px !important;
  }

  .w-xl-175px {
    width: 175px !important;
  }

  .w-xl-200px {
    width: 200px !important;
  }

  .w-xl-225px {
    width: 225px !important;
  }

  .w-xl-250px {
    width: 250px !important;
  }

  .w-xl-275px {
    width: 275px !important;
  }

  .w-xl-300px {
    width: 300px !important;
  }

  .w-xl-325px {
    width: 325px !important;
  }

  .w-xl-350px {
    width: 350px !important;
  }

  .w-xl-375px {
    width: 375px !important;
  }

  .w-xl-400px {
    width: 400px !important;
  }

  .w-xl-425px {
    width: 425px !important;
  }

  .w-xl-450px {
    width: 450px !important;
  }

  .w-xl-475px {
    width: 475px !important;
  }

  .w-xl-500px {
    width: 500px !important;
  }

  .w-xl-550px {
    width: 550px !important;
  }

  .w-xl-600px {
    width: 600px !important;
  }

  .w-xl-650px {
    width: 650px !important;
  }

  .w-xl-700px {
    width: 700px !important;
  }

  .w-xl-750px {
    width: 750px !important;
  }

  .w-xl-800px {
    width: 800px !important;
  }

  .w-xl-850px {
    width: 850px !important;
  }

  .w-xl-900px {
    width: 900px !important;
  }

  .w-xl-950px {
    width: 950px !important;
  }

  .w-xl-1000px {
    width: 1000px !important;
  }

  .mw-xl-unset {
    max-width: unset !important;
  }

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

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

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

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

  .mw-xl-auto {
    max-width: auto !important;
  }

  .mw-xl-1px {
    max-width: 1px !important;
  }

  .mw-xl-2px {
    max-width: 2px !important;
  }

  .mw-xl-3px {
    max-width: 3px !important;
  }

  .mw-xl-4px {
    max-width: 4px !important;
  }

  .mw-xl-5px {
    max-width: 5px !important;
  }

  .mw-xl-6px {
    max-width: 6px !important;
  }

  .mw-xl-7px {
    max-width: 7px !important;
  }

  .mw-xl-8px {
    max-width: 8px !important;
  }

  .mw-xl-9px {
    max-width: 9px !important;
  }

  .mw-xl-10px {
    max-width: 10px !important;
  }

  .mw-xl-15px {
    max-width: 15px !important;
  }

  .mw-xl-20px {
    max-width: 20px !important;
  }

  .mw-xl-25px {
    max-width: 25px !important;
  }

  .mw-xl-30px {
    max-width: 30px !important;
  }

  .mw-xl-35px {
    max-width: 35px !important;
  }

  .mw-xl-40px {
    max-width: 40px !important;
  }

  .mw-xl-45px {
    max-width: 45px !important;
  }

  .mw-xl-50px {
    max-width: 50px !important;
  }

  .mw-xl-55px {
    max-width: 55px !important;
  }

  .mw-xl-60px {
    max-width: 60px !important;
  }

  .mw-xl-65px {
    max-width: 65px !important;
  }

  .mw-xl-70px {
    max-width: 70px !important;
  }

  .mw-xl-75px {
    max-width: 75px !important;
  }

  .mw-xl-80px {
    max-width: 80px !important;
  }

  .mw-xl-85px {
    max-width: 85px !important;
  }

  .mw-xl-90px {
    max-width: 90px !important;
  }

  .mw-xl-95px {
    max-width: 95px !important;
  }

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

  .mw-xl-125px {
    max-width: 125px !important;
  }

  .mw-xl-150px {
    max-width: 150px !important;
  }

  .mw-xl-175px {
    max-width: 175px !important;
  }

  .mw-xl-200px {
    max-width: 200px !important;
  }

  .mw-xl-225px {
    max-width: 225px !important;
  }

  .mw-xl-250px {
    max-width: 250px !important;
  }

  .mw-xl-275px {
    max-width: 275px !important;
  }

  .mw-xl-300px {
    max-width: 300px !important;
  }

  .mw-xl-325px {
    max-width: 325px !important;
  }

  .mw-xl-350px {
    max-width: 350px !important;
  }

  .mw-xl-375px {
    max-width: 375px !important;
  }

  .mw-xl-400px {
    max-width: 400px !important;
  }

  .mw-xl-425px {
    max-width: 425px !important;
  }

  .mw-xl-450px {
    max-width: 450px !important;
  }

  .mw-xl-475px {
    max-width: 475px !important;
  }

  .mw-xl-500px {
    max-width: 500px !important;
  }

  .mw-xl-550px {
    max-width: 550px !important;
  }

  .mw-xl-600px {
    max-width: 600px !important;
  }

  .mw-xl-650px {
    max-width: 650px !important;
  }

  .mw-xl-700px {
    max-width: 700px !important;
  }

  .mw-xl-750px {
    max-width: 750px !important;
  }

  .mw-xl-800px {
    max-width: 800px !important;
  }

  .mw-xl-850px {
    max-width: 850px !important;
  }

  .mw-xl-900px {
    max-width: 900px !important;
  }

  .mw-xl-950px {
    max-width: 950px !important;
  }

  .mw-xl-1000px {
    max-width: 1000px !important;
  }

  .h-xl-unset {
    height: unset !important;
  }

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

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

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

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

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

  .h-xl-1px {
    height: 1px !important;
  }

  .h-xl-2px {
    height: 2px !important;
  }

  .h-xl-3px {
    height: 3px !important;
  }

  .h-xl-4px {
    height: 4px !important;
  }

  .h-xl-5px {
    height: 5px !important;
  }

  .h-xl-6px {
    height: 6px !important;
  }

  .h-xl-7px {
    height: 7px !important;
  }

  .h-xl-8px {
    height: 8px !important;
  }

  .h-xl-9px {
    height: 9px !important;
  }

  .h-xl-10px {
    height: 10px !important;
  }

  .h-xl-15px {
    height: 15px !important;
  }

  .h-xl-20px {
    height: 20px !important;
  }

  .h-xl-25px {
    height: 25px !important;
  }

  .h-xl-30px {
    height: 30px !important;
  }

  .h-xl-35px {
    height: 35px !important;
  }

  .h-xl-40px {
    height: 40px !important;
  }

  .h-xl-45px {
    height: 45px !important;
  }

  .h-xl-50px {
    height: 50px !important;
  }

  .h-xl-55px {
    height: 55px !important;
  }

  .h-xl-60px {
    height: 60px !important;
  }

  .h-xl-65px {
    height: 65px !important;
  }

  .h-xl-70px {
    height: 70px !important;
  }

  .h-xl-75px {
    height: 75px !important;
  }

  .h-xl-80px {
    height: 80px !important;
  }

  .h-xl-85px {
    height: 85px !important;
  }

  .h-xl-90px {
    height: 90px !important;
  }

  .h-xl-95px {
    height: 95px !important;
  }

  .h-xl-100px {
    height: 100px !important;
  }

  .h-xl-125px {
    height: 125px !important;
  }

  .h-xl-150px {
    height: 150px !important;
  }

  .h-xl-175px {
    height: 175px !important;
  }

  .h-xl-200px {
    height: 200px !important;
  }

  .h-xl-225px {
    height: 225px !important;
  }

  .h-xl-250px {
    height: 250px !important;
  }

  .h-xl-275px {
    height: 275px !important;
  }

  .h-xl-300px {
    height: 300px !important;
  }

  .h-xl-325px {
    height: 325px !important;
  }

  .h-xl-350px {
    height: 350px !important;
  }

  .h-xl-375px {
    height: 375px !important;
  }

  .h-xl-400px {
    height: 400px !important;
  }

  .h-xl-425px {
    height: 425px !important;
  }

  .h-xl-450px {
    height: 450px !important;
  }

  .h-xl-475px {
    height: 475px !important;
  }

  .h-xl-500px {
    height: 500px !important;
  }

  .h-xl-550px {
    height: 550px !important;
  }

  .h-xl-600px {
    height: 600px !important;
  }

  .h-xl-650px {
    height: 650px !important;
  }

  .h-xl-700px {
    height: 700px !important;
  }

  .h-xl-750px {
    height: 750px !important;
  }

  .h-xl-800px {
    height: 800px !important;
  }

  .h-xl-850px {
    height: 850px !important;
  }

  .h-xl-900px {
    height: 900px !important;
  }

  .h-xl-950px {
    height: 950px !important;
  }

  .h-xl-1000px {
    height: 1000px !important;
  }

  .mh-xl-unset {
    max-height: unset !important;
  }

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

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

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

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

  .mh-xl-auto {
    max-height: auto !important;
  }

  .mh-xl-1px {
    max-height: 1px !important;
  }

  .mh-xl-2px {
    max-height: 2px !important;
  }

  .mh-xl-3px {
    max-height: 3px !important;
  }

  .mh-xl-4px {
    max-height: 4px !important;
  }

  .mh-xl-5px {
    max-height: 5px !important;
  }

  .mh-xl-6px {
    max-height: 6px !important;
  }

  .mh-xl-7px {
    max-height: 7px !important;
  }

  .mh-xl-8px {
    max-height: 8px !important;
  }

  .mh-xl-9px {
    max-height: 9px !important;
  }

  .mh-xl-10px {
    max-height: 10px !important;
  }

  .mh-xl-15px {
    max-height: 15px !important;
  }

  .mh-xl-20px {
    max-height: 20px !important;
  }

  .mh-xl-25px {
    max-height: 25px !important;
  }

  .mh-xl-30px {
    max-height: 30px !important;
  }

  .mh-xl-35px {
    max-height: 35px !important;
  }

  .mh-xl-40px {
    max-height: 40px !important;
  }

  .mh-xl-45px {
    max-height: 45px !important;
  }

  .mh-xl-50px {
    max-height: 50px !important;
  }

  .mh-xl-55px {
    max-height: 55px !important;
  }

  .mh-xl-60px {
    max-height: 60px !important;
  }

  .mh-xl-65px {
    max-height: 65px !important;
  }

  .mh-xl-70px {
    max-height: 70px !important;
  }

  .mh-xl-75px {
    max-height: 75px !important;
  }

  .mh-xl-80px {
    max-height: 80px !important;
  }

  .mh-xl-85px {
    max-height: 85px !important;
  }

  .mh-xl-90px {
    max-height: 90px !important;
  }

  .mh-xl-95px {
    max-height: 95px !important;
  }

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

  .mh-xl-125px {
    max-height: 125px !important;
  }

  .mh-xl-150px {
    max-height: 150px !important;
  }

  .mh-xl-175px {
    max-height: 175px !important;
  }

  .mh-xl-200px {
    max-height: 200px !important;
  }

  .mh-xl-225px {
    max-height: 225px !important;
  }

  .mh-xl-250px {
    max-height: 250px !important;
  }

  .mh-xl-275px {
    max-height: 275px !important;
  }

  .mh-xl-300px {
    max-height: 300px !important;
  }

  .mh-xl-325px {
    max-height: 325px !important;
  }

  .mh-xl-350px {
    max-height: 350px !important;
  }

  .mh-xl-375px {
    max-height: 375px !important;
  }

  .mh-xl-400px {
    max-height: 400px !important;
  }

  .mh-xl-425px {
    max-height: 425px !important;
  }

  .mh-xl-450px {
    max-height: 450px !important;
  }

  .mh-xl-475px {
    max-height: 475px !important;
  }

  .mh-xl-500px {
    max-height: 500px !important;
  }

  .mh-xl-550px {
    max-height: 550px !important;
  }

  .mh-xl-600px {
    max-height: 600px !important;
  }

  .mh-xl-650px {
    max-height: 650px !important;
  }

  .mh-xl-700px {
    max-height: 700px !important;
  }

  .mh-xl-750px {
    max-height: 750px !important;
  }

  .mh-xl-800px {
    max-height: 800px !important;
  }

  .mh-xl-850px {
    max-height: 850px !important;
  }

  .mh-xl-900px {
    max-height: 900px !important;
  }

  .mh-xl-950px {
    max-height: 950px !important;
  }

  .mh-xl-1000px {
    max-height: 1000px !important;
  }

  .flex-xl-fill {
    flex: 1 1 auto !important;
  }

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

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

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

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

  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }

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

  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }

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

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

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

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

  .gap-xl-0 {
    gap: 0 !important;
  }

  .gap-xl-1 {
    gap: 0.25rem !important;
  }

  .gap-xl-2 {
    gap: 0.5rem !important;
  }

  .gap-xl-3 {
    gap: 0.75rem !important;
  }

  .gap-xl-4 {
    gap: 1rem !important;
  }

  .gap-xl-5 {
    gap: 1.25rem !important;
  }

  .gap-xl-6 {
    gap: 1.5rem !important;
  }

  .gap-xl-7 {
    gap: 1.75rem !important;
  }

  .gap-xl-8 {
    gap: 2rem !important;
  }

  .gap-xl-9 {
    gap: 2.25rem !important;
  }

  .gap-xl-10 {
    gap: 2.5rem !important;
  }

  .gap-xl-11 {
    gap: 2.75rem !important;
  }

  .gap-xl-12 {
    gap: 3rem !important;
  }

  .gap-xl-13 {
    gap: 3.25rem !important;
  }

  .gap-xl-14 {
    gap: 3.5rem !important;
  }

  .gap-xl-15 {
    gap: 3.75rem !important;
  }

  .gap-xl-16 {
    gap: 4rem !important;
  }

  .gap-xl-17 {
    gap: 4.25rem !important;
  }

  .gap-xl-18 {
    gap: 4.5rem !important;
  }

  .gap-xl-19 {
    gap: 4.75rem !important;
  }

  .gap-xl-20 {
    gap: 5rem !important;
  }

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

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

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

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

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

  .justify-content-xl-evenly {
    justify-content: space-evenly !important;
  }

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

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

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

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

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

  .align-content-xl-start {
    align-content: flex-start !important;
  }

  .align-content-xl-end {
    align-content: flex-end !important;
  }

  .align-content-xl-center {
    align-content: center !important;
  }

  .align-content-xl-between {
    align-content: space-between !important;
  }

  .align-content-xl-around {
    align-content: space-around !important;
  }

  .align-content-xl-stretch {
    align-content: stretch !important;
  }

  .align-self-xl-auto {
    align-self: auto !important;
  }

  .align-self-xl-start {
    align-self: flex-start !important;
  }

  .align-self-xl-end {
    align-self: flex-end !important;
  }

  .align-self-xl-center {
    align-self: center !important;
  }

  .align-self-xl-baseline {
    align-self: baseline !important;
  }

  .align-self-xl-stretch {
    align-self: stretch !important;
  }

  .order-xl-first {
    order: -1 !important;
  }

  .order-xl-0 {
    order: 0 !important;
  }

  .order-xl-1 {
    order: 1 !important;
  }

  .order-xl-2 {
    order: 2 !important;
  }

  .order-xl-3 {
    order: 3 !important;
  }

  .order-xl-4 {
    order: 4 !important;
  }

  .order-xl-5 {
    order: 5 !important;
  }

  .order-xl-last {
    order: 6 !important;
  }

  .m-xl-0 {
    margin: 0 !important;
  }

  .m-xl-1 {
    margin: 0.25rem !important;
  }

  .m-xl-2 {
    margin: 0.5rem !important;
  }

  .m-xl-3 {
    margin: 0.75rem !important;
  }

  .m-xl-4 {
    margin: 1rem !important;
  }

  .m-xl-5 {
    margin: 1.25rem !important;
  }

  .m-xl-6 {
    margin: 1.5rem !important;
  }

  .m-xl-7 {
    margin: 1.75rem !important;
  }

  .m-xl-8 {
    margin: 2rem !important;
  }

  .m-xl-9 {
    margin: 2.25rem !important;
  }

  .m-xl-10 {
    margin: 2.5rem !important;
  }

  .m-xl-11 {
    margin: 2.75rem !important;
  }

  .m-xl-12 {
    margin: 3rem !important;
  }

  .m-xl-13 {
    margin: 3.25rem !important;
  }

  .m-xl-14 {
    margin: 3.5rem !important;
  }

  .m-xl-15 {
    margin: 3.75rem !important;
  }

  .m-xl-16 {
    margin: 4rem !important;
  }

  .m-xl-17 {
    margin: 4.25rem !important;
  }

  .m-xl-18 {
    margin: 4.5rem !important;
  }

  .m-xl-19 {
    margin: 4.75rem !important;
  }

  .m-xl-20 {
    margin: 5rem !important;
  }

  .m-xl-auto {
    margin: auto !important;
  }

  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xl-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }

  .mx-xl-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xl-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-xl-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xl-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }

  .mx-xl-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .mx-xl-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }

  .mx-xl-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-xl-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }

  .mx-xl-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xl-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }

  .mx-xl-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }

  .mx-xl-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

  .mx-xl-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .mx-xl-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important;
  }

  .mx-xl-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }

  .mx-xl-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important;
  }

  .mx-xl-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !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: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xl-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .my-xl-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xl-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-xl-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xl-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .my-xl-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-xl-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .my-xl-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-xl-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .my-xl-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xl-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }

  .my-xl-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .my-xl-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .my-xl-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .my-xl-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }

  .my-xl-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .my-xl-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
  }

  .my-xl-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xl-0 {
    margin-top: 0 !important;
  }

  .mt-xl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xl-3 {
    margin-top: 0.75rem !important;
  }

  .mt-xl-4 {
    margin-top: 1rem !important;
  }

  .mt-xl-5 {
    margin-top: 1.25rem !important;
  }

  .mt-xl-6 {
    margin-top: 1.5rem !important;
  }

  .mt-xl-7 {
    margin-top: 1.75rem !important;
  }

  .mt-xl-8 {
    margin-top: 2rem !important;
  }

  .mt-xl-9 {
    margin-top: 2.25rem !important;
  }

  .mt-xl-10 {
    margin-top: 2.5rem !important;
  }

  .mt-xl-11 {
    margin-top: 2.75rem !important;
  }

  .mt-xl-12 {
    margin-top: 3rem !important;
  }

  .mt-xl-13 {
    margin-top: 3.25rem !important;
  }

  .mt-xl-14 {
    margin-top: 3.5rem !important;
  }

  .mt-xl-15 {
    margin-top: 3.75rem !important;
  }

  .mt-xl-16 {
    margin-top: 4rem !important;
  }

  .mt-xl-17 {
    margin-top: 4.25rem !important;
  }

  .mt-xl-18 {
    margin-top: 4.5rem !important;
  }

  .mt-xl-19 {
    margin-top: 4.75rem !important;
  }

  .mt-xl-20 {
    margin-top: 5rem !important;
  }

  .mt-xl-auto {
    margin-top: auto !important;
  }

  .me-xl-0 {
    margin-right: 0 !important;
  }

  .me-xl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xl-3 {
    margin-right: 0.75rem !important;
  }

  .me-xl-4 {
    margin-right: 1rem !important;
  }

  .me-xl-5 {
    margin-right: 1.25rem !important;
  }

  .me-xl-6 {
    margin-right: 1.5rem !important;
  }

  .me-xl-7 {
    margin-right: 1.75rem !important;
  }

  .me-xl-8 {
    margin-right: 2rem !important;
  }

  .me-xl-9 {
    margin-right: 2.25rem !important;
  }

  .me-xl-10 {
    margin-right: 2.5rem !important;
  }

  .me-xl-11 {
    margin-right: 2.75rem !important;
  }

  .me-xl-12 {
    margin-right: 3rem !important;
  }

  .me-xl-13 {
    margin-right: 3.25rem !important;
  }

  .me-xl-14 {
    margin-right: 3.5rem !important;
  }

  .me-xl-15 {
    margin-right: 3.75rem !important;
  }

  .me-xl-16 {
    margin-right: 4rem !important;
  }

  .me-xl-17 {
    margin-right: 4.25rem !important;
  }

  .me-xl-18 {
    margin-right: 4.5rem !important;
  }

  .me-xl-19 {
    margin-right: 4.75rem !important;
  }

  .me-xl-20 {
    margin-right: 5rem !important;
  }

  .me-xl-auto {
    margin-right: auto !important;
  }

  .mb-xl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xl-3 {
    margin-bottom: 0.75rem !important;
  }

  .mb-xl-4 {
    margin-bottom: 1rem !important;
  }

  .mb-xl-5 {
    margin-bottom: 1.25rem !important;
  }

  .mb-xl-6 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xl-7 {
    margin-bottom: 1.75rem !important;
  }

  .mb-xl-8 {
    margin-bottom: 2rem !important;
  }

  .mb-xl-9 {
    margin-bottom: 2.25rem !important;
  }

  .mb-xl-10 {
    margin-bottom: 2.5rem !important;
  }

  .mb-xl-11 {
    margin-bottom: 2.75rem !important;
  }

  .mb-xl-12 {
    margin-bottom: 3rem !important;
  }

  .mb-xl-13 {
    margin-bottom: 3.25rem !important;
  }

  .mb-xl-14 {
    margin-bottom: 3.5rem !important;
  }

  .mb-xl-15 {
    margin-bottom: 3.75rem !important;
  }

  .mb-xl-16 {
    margin-bottom: 4rem !important;
  }

  .mb-xl-17 {
    margin-bottom: 4.25rem !important;
  }

  .mb-xl-18 {
    margin-bottom: 4.5rem !important;
  }

  .mb-xl-19 {
    margin-bottom: 4.75rem !important;
  }

  .mb-xl-20 {
    margin-bottom: 5rem !important;
  }

  .mb-xl-auto {
    margin-bottom: auto !important;
  }

  .ms-xl-0 {
    margin-left: 0 !important;
  }

  .ms-xl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xl-3 {
    margin-left: 0.75rem !important;
  }

  .ms-xl-4 {
    margin-left: 1rem !important;
  }

  .ms-xl-5 {
    margin-left: 1.25rem !important;
  }

  .ms-xl-6 {
    margin-left: 1.5rem !important;
  }

  .ms-xl-7 {
    margin-left: 1.75rem !important;
  }

  .ms-xl-8 {
    margin-left: 2rem !important;
  }

  .ms-xl-9 {
    margin-left: 2.25rem !important;
  }

  .ms-xl-10 {
    margin-left: 2.5rem !important;
  }

  .ms-xl-11 {
    margin-left: 2.75rem !important;
  }

  .ms-xl-12 {
    margin-left: 3rem !important;
  }

  .ms-xl-13 {
    margin-left: 3.25rem !important;
  }

  .ms-xl-14 {
    margin-left: 3.5rem !important;
  }

  .ms-xl-15 {
    margin-left: 3.75rem !important;
  }

  .ms-xl-16 {
    margin-left: 4rem !important;
  }

  .ms-xl-17 {
    margin-left: 4.25rem !important;
  }

  .ms-xl-18 {
    margin-left: 4.5rem !important;
  }

  .ms-xl-19 {
    margin-left: 4.75rem !important;
  }

  .ms-xl-20 {
    margin-left: 5rem !important;
  }

  .ms-xl-auto {
    margin-left: auto !important;
  }

  .m-xl-n1 {
    margin: -0.25rem !important;
  }

  .m-xl-n2 {
    margin: -0.5rem !important;
  }

  .m-xl-n3 {
    margin: -0.75rem !important;
  }

  .m-xl-n4 {
    margin: -1rem !important;
  }

  .m-xl-n5 {
    margin: -1.25rem !important;
  }

  .m-xl-n6 {
    margin: -1.5rem !important;
  }

  .m-xl-n7 {
    margin: -1.75rem !important;
  }

  .m-xl-n8 {
    margin: -2rem !important;
  }

  .m-xl-n9 {
    margin: -2.25rem !important;
  }

  .m-xl-n10 {
    margin: -2.5rem !important;
  }

  .m-xl-n11 {
    margin: -2.75rem !important;
  }

  .m-xl-n12 {
    margin: -3rem !important;
  }

  .m-xl-n13 {
    margin: -3.25rem !important;
  }

  .m-xl-n14 {
    margin: -3.5rem !important;
  }

  .m-xl-n15 {
    margin: -3.75rem !important;
  }

  .m-xl-n16 {
    margin: -4rem !important;
  }

  .m-xl-n17 {
    margin: -4.25rem !important;
  }

  .m-xl-n18 {
    margin: -4.5rem !important;
  }

  .m-xl-n19 {
    margin: -4.75rem !important;
  }

  .m-xl-n20 {
    margin: -5rem !important;
  }

  .mx-xl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-xl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-xl-n3 {
    margin-right: -0.75rem !important;
    margin-left: -0.75rem !important;
  }

  .mx-xl-n4 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-xl-n5 {
    margin-right: -1.25rem !important;
    margin-left: -1.25rem !important;
  }

  .mx-xl-n6 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-xl-n7 {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important;
  }

  .mx-xl-n8 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }

  .mx-xl-n9 {
    margin-right: -2.25rem !important;
    margin-left: -2.25rem !important;
  }

  .mx-xl-n10 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }

  .mx-xl-n11 {
    margin-right: -2.75rem !important;
    margin-left: -2.75rem !important;
  }

  .mx-xl-n12 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .mx-xl-n13 {
    margin-right: -3.25rem !important;
    margin-left: -3.25rem !important;
  }

  .mx-xl-n14 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }

  .mx-xl-n15 {
    margin-right: -3.75rem !important;
    margin-left: -3.75rem !important;
  }

  .mx-xl-n16 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }

  .mx-xl-n17 {
    margin-right: -4.25rem !important;
    margin-left: -4.25rem !important;
  }

  .mx-xl-n18 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }

  .mx-xl-n19 {
    margin-right: -4.75rem !important;
    margin-left: -4.75rem !important;
  }

  .mx-xl-n20 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }

  .my-xl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-xl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-xl-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .my-xl-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-xl-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .my-xl-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-xl-n7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .my-xl-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .my-xl-n9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .my-xl-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .my-xl-n11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .my-xl-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .my-xl-n13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }

  .my-xl-n14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .my-xl-n15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }

  .my-xl-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .my-xl-n17 {
    margin-top: -4.25rem !important;
    margin-bottom: -4.25rem !important;
  }

  .my-xl-n18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

  .my-xl-n19 {
    margin-top: -4.75rem !important;
    margin-bottom: -4.75rem !important;
  }

  .my-xl-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .mt-xl-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-xl-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-xl-n3 {
    margin-top: -0.75rem !important;
  }

  .mt-xl-n4 {
    margin-top: -1rem !important;
  }

  .mt-xl-n5 {
    margin-top: -1.25rem !important;
  }

  .mt-xl-n6 {
    margin-top: -1.5rem !important;
  }

  .mt-xl-n7 {
    margin-top: -1.75rem !important;
  }

  .mt-xl-n8 {
    margin-top: -2rem !important;
  }

  .mt-xl-n9 {
    margin-top: -2.25rem !important;
  }

  .mt-xl-n10 {
    margin-top: -2.5rem !important;
  }

  .mt-xl-n11 {
    margin-top: -2.75rem !important;
  }

  .mt-xl-n12 {
    margin-top: -3rem !important;
  }

  .mt-xl-n13 {
    margin-top: -3.25rem !important;
  }

  .mt-xl-n14 {
    margin-top: -3.5rem !important;
  }

  .mt-xl-n15 {
    margin-top: -3.75rem !important;
  }

  .mt-xl-n16 {
    margin-top: -4rem !important;
  }

  .mt-xl-n17 {
    margin-top: -4.25rem !important;
  }

  .mt-xl-n18 {
    margin-top: -4.5rem !important;
  }

  .mt-xl-n19 {
    margin-top: -4.75rem !important;
  }

  .mt-xl-n20 {
    margin-top: -5rem !important;
  }

  .me-xl-n1 {
    margin-right: -0.25rem !important;
  }

  .me-xl-n2 {
    margin-right: -0.5rem !important;
  }

  .me-xl-n3 {
    margin-right: -0.75rem !important;
  }

  .me-xl-n4 {
    margin-right: -1rem !important;
  }

  .me-xl-n5 {
    margin-right: -1.25rem !important;
  }

  .me-xl-n6 {
    margin-right: -1.5rem !important;
  }

  .me-xl-n7 {
    margin-right: -1.75rem !important;
  }

  .me-xl-n8 {
    margin-right: -2rem !important;
  }

  .me-xl-n9 {
    margin-right: -2.25rem !important;
  }

  .me-xl-n10 {
    margin-right: -2.5rem !important;
  }

  .me-xl-n11 {
    margin-right: -2.75rem !important;
  }

  .me-xl-n12 {
    margin-right: -3rem !important;
  }

  .me-xl-n13 {
    margin-right: -3.25rem !important;
  }

  .me-xl-n14 {
    margin-right: -3.5rem !important;
  }

  .me-xl-n15 {
    margin-right: -3.75rem !important;
  }

  .me-xl-n16 {
    margin-right: -4rem !important;
  }

  .me-xl-n17 {
    margin-right: -4.25rem !important;
  }

  .me-xl-n18 {
    margin-right: -4.5rem !important;
  }

  .me-xl-n19 {
    margin-right: -4.75rem !important;
  }

  .me-xl-n20 {
    margin-right: -5rem !important;
  }

  .mb-xl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-xl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-xl-n3 {
    margin-bottom: -0.75rem !important;
  }

  .mb-xl-n4 {
    margin-bottom: -1rem !important;
  }

  .mb-xl-n5 {
    margin-bottom: -1.25rem !important;
  }

  .mb-xl-n6 {
    margin-bottom: -1.5rem !important;
  }

  .mb-xl-n7 {
    margin-bottom: -1.75rem !important;
  }

  .mb-xl-n8 {
    margin-bottom: -2rem !important;
  }

  .mb-xl-n9 {
    margin-bottom: -2.25rem !important;
  }

  .mb-xl-n10 {
    margin-bottom: -2.5rem !important;
  }

  .mb-xl-n11 {
    margin-bottom: -2.75rem !important;
  }

  .mb-xl-n12 {
    margin-bottom: -3rem !important;
  }

  .mb-xl-n13 {
    margin-bottom: -3.25rem !important;
  }

  .mb-xl-n14 {
    margin-bottom: -3.5rem !important;
  }

  .mb-xl-n15 {
    margin-bottom: -3.75rem !important;
  }

  .mb-xl-n16 {
    margin-bottom: -4rem !important;
  }

  .mb-xl-n17 {
    margin-bottom: -4.25rem !important;
  }

  .mb-xl-n18 {
    margin-bottom: -4.5rem !important;
  }

  .mb-xl-n19 {
    margin-bottom: -4.75rem !important;
  }

  .mb-xl-n20 {
    margin-bottom: -5rem !important;
  }

  .ms-xl-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-xl-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-xl-n3 {
    margin-left: -0.75rem !important;
  }

  .ms-xl-n4 {
    margin-left: -1rem !important;
  }

  .ms-xl-n5 {
    margin-left: -1.25rem !important;
  }

  .ms-xl-n6 {
    margin-left: -1.5rem !important;
  }

  .ms-xl-n7 {
    margin-left: -1.75rem !important;
  }

  .ms-xl-n8 {
    margin-left: -2rem !important;
  }

  .ms-xl-n9 {
    margin-left: -2.25rem !important;
  }

  .ms-xl-n10 {
    margin-left: -2.5rem !important;
  }

  .ms-xl-n11 {
    margin-left: -2.75rem !important;
  }

  .ms-xl-n12 {
    margin-left: -3rem !important;
  }

  .ms-xl-n13 {
    margin-left: -3.25rem !important;
  }

  .ms-xl-n14 {
    margin-left: -3.5rem !important;
  }

  .ms-xl-n15 {
    margin-left: -3.75rem !important;
  }

  .ms-xl-n16 {
    margin-left: -4rem !important;
  }

  .ms-xl-n17 {
    margin-left: -4.25rem !important;
  }

  .ms-xl-n18 {
    margin-left: -4.5rem !important;
  }

  .ms-xl-n19 {
    margin-left: -4.75rem !important;
  }

  .ms-xl-n20 {
    margin-left: -5rem !important;
  }

  .p-xl-0 {
    padding: 0 !important;
  }

  .p-xl-1 {
    padding: 0.25rem !important;
  }

  .p-xl-2 {
    padding: 0.5rem !important;
  }

  .p-xl-3 {
    padding: 0.75rem !important;
  }

  .p-xl-4 {
    padding: 1rem !important;
  }

  .p-xl-5 {
    padding: 1.25rem !important;
  }

  .p-xl-6 {
    padding: 1.5rem !important;
  }

  .p-xl-7 {
    padding: 1.75rem !important;
  }

  .p-xl-8 {
    padding: 2rem !important;
  }

  .p-xl-9 {
    padding: 2.25rem !important;
  }

  .p-xl-10 {
    padding: 2.5rem !important;
  }

  .p-xl-11 {
    padding: 2.75rem !important;
  }

  .p-xl-12 {
    padding: 3rem !important;
  }

  .p-xl-13 {
    padding: 3.25rem !important;
  }

  .p-xl-14 {
    padding: 3.5rem !important;
  }

  .p-xl-15 {
    padding: 3.75rem !important;
  }

  .p-xl-16 {
    padding: 4rem !important;
  }

  .p-xl-17 {
    padding: 4.25rem !important;
  }

  .p-xl-18 {
    padding: 4.5rem !important;
  }

  .p-xl-19 {
    padding: 4.75rem !important;
  }

  .p-xl-20 {
    padding: 5rem !important;
  }

  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xl-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }

  .px-xl-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xl-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-xl-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xl-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }

  .px-xl-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .px-xl-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }

  .px-xl-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-xl-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }

  .px-xl-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-xl-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }

  .px-xl-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }

  .px-xl-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

  .px-xl-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .px-xl-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important;
  }

  .px-xl-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }

  .px-xl-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important;
  }

  .px-xl-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }

  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xl-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .py-xl-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xl-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-xl-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xl-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .py-xl-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-xl-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .py-xl-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-xl-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .py-xl-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-xl-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .py-xl-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .py-xl-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .py-xl-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-xl-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }

  .py-xl-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .py-xl-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }

  .py-xl-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .pt-xl-0 {
    padding-top: 0 !important;
  }

  .pt-xl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xl-3 {
    padding-top: 0.75rem !important;
  }

  .pt-xl-4 {
    padding-top: 1rem !important;
  }

  .pt-xl-5 {
    padding-top: 1.25rem !important;
  }

  .pt-xl-6 {
    padding-top: 1.5rem !important;
  }

  .pt-xl-7 {
    padding-top: 1.75rem !important;
  }

  .pt-xl-8 {
    padding-top: 2rem !important;
  }

  .pt-xl-9 {
    padding-top: 2.25rem !important;
  }

  .pt-xl-10 {
    padding-top: 2.5rem !important;
  }

  .pt-xl-11 {
    padding-top: 2.75rem !important;
  }

  .pt-xl-12 {
    padding-top: 3rem !important;
  }

  .pt-xl-13 {
    padding-top: 3.25rem !important;
  }

  .pt-xl-14 {
    padding-top: 3.5rem !important;
  }

  .pt-xl-15 {
    padding-top: 3.75rem !important;
  }

  .pt-xl-16 {
    padding-top: 4rem !important;
  }

  .pt-xl-17 {
    padding-top: 4.25rem !important;
  }

  .pt-xl-18 {
    padding-top: 4.5rem !important;
  }

  .pt-xl-19 {
    padding-top: 4.75rem !important;
  }

  .pt-xl-20 {
    padding-top: 5rem !important;
  }

  .pe-xl-0 {
    padding-right: 0 !important;
  }

  .pe-xl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xl-3 {
    padding-right: 0.75rem !important;
  }

  .pe-xl-4 {
    padding-right: 1rem !important;
  }

  .pe-xl-5 {
    padding-right: 1.25rem !important;
  }

  .pe-xl-6 {
    padding-right: 1.5rem !important;
  }

  .pe-xl-7 {
    padding-right: 1.75rem !important;
  }

  .pe-xl-8 {
    padding-right: 2rem !important;
  }

  .pe-xl-9 {
    padding-right: 2.25rem !important;
  }

  .pe-xl-10 {
    padding-right: 2.5rem !important;
  }

  .pe-xl-11 {
    padding-right: 2.75rem !important;
  }

  .pe-xl-12 {
    padding-right: 3rem !important;
  }

  .pe-xl-13 {
    padding-right: 3.25rem !important;
  }

  .pe-xl-14 {
    padding-right: 3.5rem !important;
  }

  .pe-xl-15 {
    padding-right: 3.75rem !important;
  }

  .pe-xl-16 {
    padding-right: 4rem !important;
  }

  .pe-xl-17 {
    padding-right: 4.25rem !important;
  }

  .pe-xl-18 {
    padding-right: 4.5rem !important;
  }

  .pe-xl-19 {
    padding-right: 4.75rem !important;
  }

  .pe-xl-20 {
    padding-right: 5rem !important;
  }

  .pb-xl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xl-3 {
    padding-bottom: 0.75rem !important;
  }

  .pb-xl-4 {
    padding-bottom: 1rem !important;
  }

  .pb-xl-5 {
    padding-bottom: 1.25rem !important;
  }

  .pb-xl-6 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xl-7 {
    padding-bottom: 1.75rem !important;
  }

  .pb-xl-8 {
    padding-bottom: 2rem !important;
  }

  .pb-xl-9 {
    padding-bottom: 2.25rem !important;
  }

  .pb-xl-10 {
    padding-bottom: 2.5rem !important;
  }

  .pb-xl-11 {
    padding-bottom: 2.75rem !important;
  }

  .pb-xl-12 {
    padding-bottom: 3rem !important;
  }

  .pb-xl-13 {
    padding-bottom: 3.25rem !important;
  }

  .pb-xl-14 {
    padding-bottom: 3.5rem !important;
  }

  .pb-xl-15 {
    padding-bottom: 3.75rem !important;
  }

  .pb-xl-16 {
    padding-bottom: 4rem !important;
  }

  .pb-xl-17 {
    padding-bottom: 4.25rem !important;
  }

  .pb-xl-18 {
    padding-bottom: 4.5rem !important;
  }

  .pb-xl-19 {
    padding-bottom: 4.75rem !important;
  }

  .pb-xl-20 {
    padding-bottom: 5rem !important;
  }

  .ps-xl-0 {
    padding-left: 0 !important;
  }

  .ps-xl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xl-3 {
    padding-left: 0.75rem !important;
  }

  .ps-xl-4 {
    padding-left: 1rem !important;
  }

  .ps-xl-5 {
    padding-left: 1.25rem !important;
  }

  .ps-xl-6 {
    padding-left: 1.5rem !important;
  }

  .ps-xl-7 {
    padding-left: 1.75rem !important;
  }

  .ps-xl-8 {
    padding-left: 2rem !important;
  }

  .ps-xl-9 {
    padding-left: 2.25rem !important;
  }

  .ps-xl-10 {
    padding-left: 2.5rem !important;
  }

  .ps-xl-11 {
    padding-left: 2.75rem !important;
  }

  .ps-xl-12 {
    padding-left: 3rem !important;
  }

  .ps-xl-13 {
    padding-left: 3.25rem !important;
  }

  .ps-xl-14 {
    padding-left: 3.5rem !important;
  }

  .ps-xl-15 {
    padding-left: 3.75rem !important;
  }

  .ps-xl-16 {
    padding-left: 4rem !important;
  }

  .ps-xl-17 {
    padding-left: 4.25rem !important;
  }

  .ps-xl-18 {
    padding-left: 4.5rem !important;
  }

  .ps-xl-19 {
    padding-left: 4.75rem !important;
  }

  .ps-xl-20 {
    padding-left: 5rem !important;
  }

  .fs-xl-1 {
    font-size: calc(1.3rem + 0.6vw) !important;
  }

  .fs-xl-2 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }

  .fs-xl-3 {
    font-size: calc(1.26rem + 0.12vw) !important;
  }

  .fs-xl-4 {
    font-size: 1.25rem !important;
  }

  .fs-xl-5 {
    font-size: 1.15rem !important;
  }

  .fs-xl-6 {
    font-size: 1.075rem !important;
  }

  .fs-xl-7 {
    font-size: 0.95rem !important;
  }

  .fs-xl-8 {
    font-size: 0.85rem !important;
  }

  .fs-xl-9 {
    font-size: 0.75rem !important;
  }

  .fs-xl-10 {
    font-size: 0.5rem !important;
  }

  .fs-xl-base {
    font-size: 1rem !important;
  }

  .fs-xl-fluid {
    font-size: 100% !important;
  }

  .fs-xl-2x {
    font-size: calc(1.325rem + 0.9vw) !important;
  }

  .fs-xl-2qx {
    font-size: calc(1.35rem + 1.2vw) !important;
  }

  .fs-xl-2hx {
    font-size: calc(1.375rem + 1.5vw) !important;
  }

  .fs-xl-2tx {
    font-size: calc(1.4rem + 1.8vw) !important;
  }

  .fs-xl-3x {
    font-size: calc(1.425rem + 2.1vw) !important;
  }

  .fs-xl-3qx {
    font-size: calc(1.45rem + 2.4vw) !important;
  }

  .fs-xl-3hx {
    font-size: calc(1.475rem + 2.7vw) !important;
  }

  .fs-xl-3tx {
    font-size: calc(1.5rem + 3vw) !important;
  }

  .fs-xl-4x {
    font-size: calc(1.525rem + 3.3vw) !important;
  }

  .fs-xl-4qx {
    font-size: calc(1.55rem + 3.6vw) !important;
  }

  .fs-xl-4hx {
    font-size: calc(1.575rem + 3.9vw) !important;
  }

  .fs-xl-4tx {
    font-size: calc(1.6rem + 4.2vw) !important;
  }

  .fs-xl-5x {
    font-size: calc(1.625rem + 4.5vw) !important;
  }

  .fs-xl-5qx {
    font-size: calc(1.65rem + 4.8vw) !important;
  }

  .fs-xl-5hx {
    font-size: calc(1.675rem + 5.1vw) !important;
  }

  .fs-xl-5tx {
    font-size: calc(1.7rem + 5.4vw) !important;
  }

  .text-xl-start {
    text-align: left !important;
  }

  .text-xl-end {
    text-align: right !important;
  }

  .text-xl-center {
    text-align: center !important;
  }

  .min-w-xl-unset {
    min-width: unset !important;
  }

  .min-w-xl-25 {
    min-width: 25% !important;
  }

  .min-w-xl-50 {
    min-width: 50% !important;
  }

  .min-w-xl-75 {
    min-width: 75% !important;
  }

  .min-w-xl-100 {
    min-width: 100% !important;
  }

  .min-w-xl-auto {
    min-width: auto !important;
  }

  .min-w-xl-1px {
    min-width: 1px !important;
  }

  .min-w-xl-2px {
    min-width: 2px !important;
  }

  .min-w-xl-3px {
    min-width: 3px !important;
  }

  .min-w-xl-4px {
    min-width: 4px !important;
  }

  .min-w-xl-5px {
    min-width: 5px !important;
  }

  .min-w-xl-6px {
    min-width: 6px !important;
  }

  .min-w-xl-7px {
    min-width: 7px !important;
  }

  .min-w-xl-8px {
    min-width: 8px !important;
  }

  .min-w-xl-9px {
    min-width: 9px !important;
  }

  .min-w-xl-10px {
    min-width: 10px !important;
  }

  .min-w-xl-15px {
    min-width: 15px !important;
  }

  .min-w-xl-20px {
    min-width: 20px !important;
  }

  .min-w-xl-25px {
    min-width: 25px !important;
  }

  .min-w-xl-30px {
    min-width: 30px !important;
  }

  .min-w-xl-35px {
    min-width: 35px !important;
  }

  .min-w-xl-40px {
    min-width: 40px !important;
  }

  .min-w-xl-45px {
    min-width: 45px !important;
  }

  .min-w-xl-50px {
    min-width: 50px !important;
  }

  .min-w-xl-55px {
    min-width: 55px !important;
  }

  .min-w-xl-60px {
    min-width: 60px !important;
  }

  .min-w-xl-65px {
    min-width: 65px !important;
  }

  .min-w-xl-70px {
    min-width: 70px !important;
  }

  .min-w-xl-75px {
    min-width: 75px !important;
  }

  .min-w-xl-80px {
    min-width: 80px !important;
  }

  .min-w-xl-85px {
    min-width: 85px !important;
  }

  .min-w-xl-90px {
    min-width: 90px !important;
  }

  .min-w-xl-95px {
    min-width: 95px !important;
  }

  .min-w-xl-100px {
    min-width: 100px !important;
  }

  .min-w-xl-125px {
    min-width: 125px !important;
  }

  .min-w-xl-150px {
    min-width: 150px !important;
  }

  .min-w-xl-175px {
    min-width: 175px !important;
  }

  .min-w-xl-200px {
    min-width: 200px !important;
  }

  .min-w-xl-225px {
    min-width: 225px !important;
  }

  .min-w-xl-250px {
    min-width: 250px !important;
  }

  .min-w-xl-275px {
    min-width: 275px !important;
  }

  .min-w-xl-300px {
    min-width: 300px !important;
  }

  .min-w-xl-325px {
    min-width: 325px !important;
  }

  .min-w-xl-350px {
    min-width: 350px !important;
  }

  .min-w-xl-375px {
    min-width: 375px !important;
  }

  .min-w-xl-400px {
    min-width: 400px !important;
  }

  .min-w-xl-425px {
    min-width: 425px !important;
  }

  .min-w-xl-450px {
    min-width: 450px !important;
  }

  .min-w-xl-475px {
    min-width: 475px !important;
  }

  .min-w-xl-500px {
    min-width: 500px !important;
  }

  .min-w-xl-550px {
    min-width: 550px !important;
  }

  .min-w-xl-600px {
    min-width: 600px !important;
  }

  .min-w-xl-650px {
    min-width: 650px !important;
  }

  .min-w-xl-700px {
    min-width: 700px !important;
  }

  .min-w-xl-750px {
    min-width: 750px !important;
  }

  .min-w-xl-800px {
    min-width: 800px !important;
  }

  .min-w-xl-850px {
    min-width: 850px !important;
  }

  .min-w-xl-900px {
    min-width: 900px !important;
  }

  .min-w-xl-950px {
    min-width: 950px !important;
  }

  .min-w-xl-1000px {
    min-width: 1000px !important;
  }

  .min-h-xl-unset {
    min-height: unset !important;
  }

  .min-h-xl-25 {
    min-height: 25% !important;
  }

  .min-h-xl-50 {
    min-height: 50% !important;
  }

  .min-h-xl-75 {
    min-height: 75% !important;
  }

  .min-h-xl-100 {
    min-height: 100% !important;
  }

  .min-h-xl-auto {
    min-height: auto !important;
  }

  .min-h-xl-1px {
    min-height: 1px !important;
  }

  .min-h-xl-2px {
    min-height: 2px !important;
  }

  .min-h-xl-3px {
    min-height: 3px !important;
  }

  .min-h-xl-4px {
    min-height: 4px !important;
  }

  .min-h-xl-5px {
    min-height: 5px !important;
  }

  .min-h-xl-6px {
    min-height: 6px !important;
  }

  .min-h-xl-7px {
    min-height: 7px !important;
  }

  .min-h-xl-8px {
    min-height: 8px !important;
  }

  .min-h-xl-9px {
    min-height: 9px !important;
  }

  .min-h-xl-10px {
    min-height: 10px !important;
  }

  .min-h-xl-15px {
    min-height: 15px !important;
  }

  .min-h-xl-20px {
    min-height: 20px !important;
  }

  .min-h-xl-25px {
    min-height: 25px !important;
  }

  .min-h-xl-30px {
    min-height: 30px !important;
  }

  .min-h-xl-35px {
    min-height: 35px !important;
  }

  .min-h-xl-40px {
    min-height: 40px !important;
  }

  .min-h-xl-45px {
    min-height: 45px !important;
  }

  .min-h-xl-50px {
    min-height: 50px !important;
  }

  .min-h-xl-55px {
    min-height: 55px !important;
  }

  .min-h-xl-60px {
    min-height: 60px !important;
  }

  .min-h-xl-65px {
    min-height: 65px !important;
  }

  .min-h-xl-70px {
    min-height: 70px !important;
  }

  .min-h-xl-75px {
    min-height: 75px !important;
  }

  .min-h-xl-80px {
    min-height: 80px !important;
  }

  .min-h-xl-85px {
    min-height: 85px !important;
  }

  .min-h-xl-90px {
    min-height: 90px !important;
  }

  .min-h-xl-95px {
    min-height: 95px !important;
  }

  .min-h-xl-100px {
    min-height: 100px !important;
  }

  .min-h-xl-125px {
    min-height: 125px !important;
  }

  .min-h-xl-150px {
    min-height: 150px !important;
  }

  .min-h-xl-175px {
    min-height: 175px !important;
  }

  .min-h-xl-200px {
    min-height: 200px !important;
  }

  .min-h-xl-225px {
    min-height: 225px !important;
  }

  .min-h-xl-250px {
    min-height: 250px !important;
  }

  .min-h-xl-275px {
    min-height: 275px !important;
  }

  .min-h-xl-300px {
    min-height: 300px !important;
  }

  .min-h-xl-325px {
    min-height: 325px !important;
  }

  .min-h-xl-350px {
    min-height: 350px !important;
  }

  .min-h-xl-375px {
    min-height: 375px !important;
  }

  .min-h-xl-400px {
    min-height: 400px !important;
  }

  .min-h-xl-425px {
    min-height: 425px !important;
  }

  .min-h-xl-450px {
    min-height: 450px !important;
  }

  .min-h-xl-475px {
    min-height: 475px !important;
  }

  .min-h-xl-500px {
    min-height: 500px !important;
  }

  .min-h-xl-550px {
    min-height: 550px !important;
  }

  .min-h-xl-600px {
    min-height: 600px !important;
  }

  .min-h-xl-650px {
    min-height: 650px !important;
  }

  .min-h-xl-700px {
    min-height: 700px !important;
  }

  .min-h-xl-750px {
    min-height: 750px !important;
  }

  .min-h-xl-800px {
    min-height: 800px !important;
  }

  .min-h-xl-850px {
    min-height: 850px !important;
  }

  .min-h-xl-900px {
    min-height: 900px !important;
  }

  .min-h-xl-950px {
    min-height: 950px !important;
  }

  .min-h-xl-1000px {
    min-height: 1000px !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: flex !important;
  }

  .d-xxl-inline-flex {
    display: inline-flex !important;
  }

  .d-xxl-none {
    display: none !important;
  }

  .position-xxl-static {
    position: static !important;
  }

  .position-xxl-relative {
    position: relative !important;
  }

  .position-xxl-absolute {
    position: absolute !important;
  }

  .position-xxl-fixed {
    position: fixed !important;
  }

  .position-xxl-sticky {
    position: sticky !important;
  }

  .w-xxl-unset {
    width: unset !important;
  }

  .w-xxl-25 {
    width: 25% !important;
  }

  .w-xxl-50 {
    width: 50% !important;
  }

  .w-xxl-75 {
    width: 75% !important;
  }

  .w-xxl-100 {
    width: 100% !important;
  }

  .w-xxl-auto {
    width: auto !important;
  }

  .w-xxl-1px {
    width: 1px !important;
  }

  .w-xxl-2px {
    width: 2px !important;
  }

  .w-xxl-3px {
    width: 3px !important;
  }

  .w-xxl-4px {
    width: 4px !important;
  }

  .w-xxl-5px {
    width: 5px !important;
  }

  .w-xxl-6px {
    width: 6px !important;
  }

  .w-xxl-7px {
    width: 7px !important;
  }

  .w-xxl-8px {
    width: 8px !important;
  }

  .w-xxl-9px {
    width: 9px !important;
  }

  .w-xxl-10px {
    width: 10px !important;
  }

  .w-xxl-15px {
    width: 15px !important;
  }

  .w-xxl-20px {
    width: 20px !important;
  }

  .w-xxl-25px {
    width: 25px !important;
  }

  .w-xxl-30px {
    width: 30px !important;
  }

  .w-xxl-35px {
    width: 35px !important;
  }

  .w-xxl-40px {
    width: 40px !important;
  }

  .w-xxl-45px {
    width: 45px !important;
  }

  .w-xxl-50px {
    width: 50px !important;
  }

  .w-xxl-55px {
    width: 55px !important;
  }

  .w-xxl-60px {
    width: 60px !important;
  }

  .w-xxl-65px {
    width: 65px !important;
  }

  .w-xxl-70px {
    width: 70px !important;
  }

  .w-xxl-75px {
    width: 75px !important;
  }

  .w-xxl-80px {
    width: 80px !important;
  }

  .w-xxl-85px {
    width: 85px !important;
  }

  .w-xxl-90px {
    width: 90px !important;
  }

  .w-xxl-95px {
    width: 95px !important;
  }

  .w-xxl-100px {
    width: 100px !important;
  }

  .w-xxl-125px {
    width: 125px !important;
  }

  .w-xxl-150px {
    width: 150px !important;
  }

  .w-xxl-175px {
    width: 175px !important;
  }

  .w-xxl-200px {
    width: 200px !important;
  }

  .w-xxl-225px {
    width: 225px !important;
  }

  .w-xxl-250px {
    width: 250px !important;
  }

  .w-xxl-275px {
    width: 275px !important;
  }

  .w-xxl-300px {
    width: 300px !important;
  }

  .w-xxl-325px {
    width: 325px !important;
  }

  .w-xxl-350px {
    width: 350px !important;
  }

  .w-xxl-375px {
    width: 375px !important;
  }

  .w-xxl-400px {
    width: 400px !important;
  }

  .w-xxl-425px {
    width: 425px !important;
  }

  .w-xxl-450px {
    width: 450px !important;
  }

  .w-xxl-475px {
    width: 475px !important;
  }

  .w-xxl-500px {
    width: 500px !important;
  }

  .w-xxl-550px {
    width: 550px !important;
  }

  .w-xxl-600px {
    width: 600px !important;
  }

  .w-xxl-650px {
    width: 650px !important;
  }

  .w-xxl-700px {
    width: 700px !important;
  }

  .w-xxl-750px {
    width: 750px !important;
  }

  .w-xxl-800px {
    width: 800px !important;
  }

  .w-xxl-850px {
    width: 850px !important;
  }

  .w-xxl-900px {
    width: 900px !important;
  }

  .w-xxl-950px {
    width: 950px !important;
  }

  .w-xxl-1000px {
    width: 1000px !important;
  }

  .mw-xxl-unset {
    max-width: unset !important;
  }

  .mw-xxl-25 {
    max-width: 25% !important;
  }

  .mw-xxl-50 {
    max-width: 50% !important;
  }

  .mw-xxl-75 {
    max-width: 75% !important;
  }

  .mw-xxl-100 {
    max-width: 100% !important;
  }

  .mw-xxl-auto {
    max-width: auto !important;
  }

  .mw-xxl-1px {
    max-width: 1px !important;
  }

  .mw-xxl-2px {
    max-width: 2px !important;
  }

  .mw-xxl-3px {
    max-width: 3px !important;
  }

  .mw-xxl-4px {
    max-width: 4px !important;
  }

  .mw-xxl-5px {
    max-width: 5px !important;
  }

  .mw-xxl-6px {
    max-width: 6px !important;
  }

  .mw-xxl-7px {
    max-width: 7px !important;
  }

  .mw-xxl-8px {
    max-width: 8px !important;
  }

  .mw-xxl-9px {
    max-width: 9px !important;
  }

  .mw-xxl-10px {
    max-width: 10px !important;
  }

  .mw-xxl-15px {
    max-width: 15px !important;
  }

  .mw-xxl-20px {
    max-width: 20px !important;
  }

  .mw-xxl-25px {
    max-width: 25px !important;
  }

  .mw-xxl-30px {
    max-width: 30px !important;
  }

  .mw-xxl-35px {
    max-width: 35px !important;
  }

  .mw-xxl-40px {
    max-width: 40px !important;
  }

  .mw-xxl-45px {
    max-width: 45px !important;
  }

  .mw-xxl-50px {
    max-width: 50px !important;
  }

  .mw-xxl-55px {
    max-width: 55px !important;
  }

  .mw-xxl-60px {
    max-width: 60px !important;
  }

  .mw-xxl-65px {
    max-width: 65px !important;
  }

  .mw-xxl-70px {
    max-width: 70px !important;
  }

  .mw-xxl-75px {
    max-width: 75px !important;
  }

  .mw-xxl-80px {
    max-width: 80px !important;
  }

  .mw-xxl-85px {
    max-width: 85px !important;
  }

  .mw-xxl-90px {
    max-width: 90px !important;
  }

  .mw-xxl-95px {
    max-width: 95px !important;
  }

  .mw-xxl-100px {
    max-width: 100px !important;
  }

  .mw-xxl-125px {
    max-width: 125px !important;
  }

  .mw-xxl-150px {
    max-width: 150px !important;
  }

  .mw-xxl-175px {
    max-width: 175px !important;
  }

  .mw-xxl-200px {
    max-width: 200px !important;
  }

  .mw-xxl-225px {
    max-width: 225px !important;
  }

  .mw-xxl-250px {
    max-width: 250px !important;
  }

  .mw-xxl-275px {
    max-width: 275px !important;
  }

  .mw-xxl-300px {
    max-width: 300px !important;
  }

  .mw-xxl-325px {
    max-width: 325px !important;
  }

  .mw-xxl-350px {
    max-width: 350px !important;
  }

  .mw-xxl-375px {
    max-width: 375px !important;
  }

  .mw-xxl-400px {
    max-width: 400px !important;
  }

  .mw-xxl-425px {
    max-width: 425px !important;
  }

  .mw-xxl-450px {
    max-width: 450px !important;
  }

  .mw-xxl-475px {
    max-width: 475px !important;
  }

  .mw-xxl-500px {
    max-width: 500px !important;
  }

  .mw-xxl-550px {
    max-width: 550px !important;
  }

  .mw-xxl-600px {
    max-width: 600px !important;
  }

  .mw-xxl-650px {
    max-width: 650px !important;
  }

  .mw-xxl-700px {
    max-width: 700px !important;
  }

  .mw-xxl-750px {
    max-width: 750px !important;
  }

  .mw-xxl-800px {
    max-width: 800px !important;
  }

  .mw-xxl-850px {
    max-width: 850px !important;
  }

  .mw-xxl-900px {
    max-width: 900px !important;
  }

  .mw-xxl-950px {
    max-width: 950px !important;
  }

  .mw-xxl-1000px {
    max-width: 1000px !important;
  }

  .h-xxl-unset {
    height: unset !important;
  }

  .h-xxl-25 {
    height: 25% !important;
  }

  .h-xxl-50 {
    height: 50% !important;
  }

  .h-xxl-75 {
    height: 75% !important;
  }

  .h-xxl-100 {
    height: 100% !important;
  }

  .h-xxl-auto {
    height: auto !important;
  }

  .h-xxl-1px {
    height: 1px !important;
  }

  .h-xxl-2px {
    height: 2px !important;
  }

  .h-xxl-3px {
    height: 3px !important;
  }

  .h-xxl-4px {
    height: 4px !important;
  }

  .h-xxl-5px {
    height: 5px !important;
  }

  .h-xxl-6px {
    height: 6px !important;
  }

  .h-xxl-7px {
    height: 7px !important;
  }

  .h-xxl-8px {
    height: 8px !important;
  }

  .h-xxl-9px {
    height: 9px !important;
  }

  .h-xxl-10px {
    height: 10px !important;
  }

  .h-xxl-15px {
    height: 15px !important;
  }

  .h-xxl-20px {
    height: 20px !important;
  }

  .h-xxl-25px {
    height: 25px !important;
  }

  .h-xxl-30px {
    height: 30px !important;
  }

  .h-xxl-35px {
    height: 35px !important;
  }

  .h-xxl-40px {
    height: 40px !important;
  }

  .h-xxl-45px {
    height: 45px !important;
  }

  .h-xxl-50px {
    height: 50px !important;
  }

  .h-xxl-55px {
    height: 55px !important;
  }

  .h-xxl-60px {
    height: 60px !important;
  }

  .h-xxl-65px {
    height: 65px !important;
  }

  .h-xxl-70px {
    height: 70px !important;
  }

  .h-xxl-75px {
    height: 75px !important;
  }

  .h-xxl-80px {
    height: 80px !important;
  }

  .h-xxl-85px {
    height: 85px !important;
  }

  .h-xxl-90px {
    height: 90px !important;
  }

  .h-xxl-95px {
    height: 95px !important;
  }

  .h-xxl-100px {
    height: 100px !important;
  }

  .h-xxl-125px {
    height: 125px !important;
  }

  .h-xxl-150px {
    height: 150px !important;
  }

  .h-xxl-175px {
    height: 175px !important;
  }

  .h-xxl-200px {
    height: 200px !important;
  }

  .h-xxl-225px {
    height: 225px !important;
  }

  .h-xxl-250px {
    height: 250px !important;
  }

  .h-xxl-275px {
    height: 275px !important;
  }

  .h-xxl-300px {
    height: 300px !important;
  }

  .h-xxl-325px {
    height: 325px !important;
  }

  .h-xxl-350px {
    height: 350px !important;
  }

  .h-xxl-375px {
    height: 375px !important;
  }

  .h-xxl-400px {
    height: 400px !important;
  }

  .h-xxl-425px {
    height: 425px !important;
  }

  .h-xxl-450px {
    height: 450px !important;
  }

  .h-xxl-475px {
    height: 475px !important;
  }

  .h-xxl-500px {
    height: 500px !important;
  }

  .h-xxl-550px {
    height: 550px !important;
  }

  .h-xxl-600px {
    height: 600px !important;
  }

  .h-xxl-650px {
    height: 650px !important;
  }

  .h-xxl-700px {
    height: 700px !important;
  }

  .h-xxl-750px {
    height: 750px !important;
  }

  .h-xxl-800px {
    height: 800px !important;
  }

  .h-xxl-850px {
    height: 850px !important;
  }

  .h-xxl-900px {
    height: 900px !important;
  }

  .h-xxl-950px {
    height: 950px !important;
  }

  .h-xxl-1000px {
    height: 1000px !important;
  }

  .mh-xxl-unset {
    max-height: unset !important;
  }

  .mh-xxl-25 {
    max-height: 25% !important;
  }

  .mh-xxl-50 {
    max-height: 50% !important;
  }

  .mh-xxl-75 {
    max-height: 75% !important;
  }

  .mh-xxl-100 {
    max-height: 100% !important;
  }

  .mh-xxl-auto {
    max-height: auto !important;
  }

  .mh-xxl-1px {
    max-height: 1px !important;
  }

  .mh-xxl-2px {
    max-height: 2px !important;
  }

  .mh-xxl-3px {
    max-height: 3px !important;
  }

  .mh-xxl-4px {
    max-height: 4px !important;
  }

  .mh-xxl-5px {
    max-height: 5px !important;
  }

  .mh-xxl-6px {
    max-height: 6px !important;
  }

  .mh-xxl-7px {
    max-height: 7px !important;
  }

  .mh-xxl-8px {
    max-height: 8px !important;
  }

  .mh-xxl-9px {
    max-height: 9px !important;
  }

  .mh-xxl-10px {
    max-height: 10px !important;
  }

  .mh-xxl-15px {
    max-height: 15px !important;
  }

  .mh-xxl-20px {
    max-height: 20px !important;
  }

  .mh-xxl-25px {
    max-height: 25px !important;
  }

  .mh-xxl-30px {
    max-height: 30px !important;
  }

  .mh-xxl-35px {
    max-height: 35px !important;
  }

  .mh-xxl-40px {
    max-height: 40px !important;
  }

  .mh-xxl-45px {
    max-height: 45px !important;
  }

  .mh-xxl-50px {
    max-height: 50px !important;
  }

  .mh-xxl-55px {
    max-height: 55px !important;
  }

  .mh-xxl-60px {
    max-height: 60px !important;
  }

  .mh-xxl-65px {
    max-height: 65px !important;
  }

  .mh-xxl-70px {
    max-height: 70px !important;
  }

  .mh-xxl-75px {
    max-height: 75px !important;
  }

  .mh-xxl-80px {
    max-height: 80px !important;
  }

  .mh-xxl-85px {
    max-height: 85px !important;
  }

  .mh-xxl-90px {
    max-height: 90px !important;
  }

  .mh-xxl-95px {
    max-height: 95px !important;
  }

  .mh-xxl-100px {
    max-height: 100px !important;
  }

  .mh-xxl-125px {
    max-height: 125px !important;
  }

  .mh-xxl-150px {
    max-height: 150px !important;
  }

  .mh-xxl-175px {
    max-height: 175px !important;
  }

  .mh-xxl-200px {
    max-height: 200px !important;
  }

  .mh-xxl-225px {
    max-height: 225px !important;
  }

  .mh-xxl-250px {
    max-height: 250px !important;
  }

  .mh-xxl-275px {
    max-height: 275px !important;
  }

  .mh-xxl-300px {
    max-height: 300px !important;
  }

  .mh-xxl-325px {
    max-height: 325px !important;
  }

  .mh-xxl-350px {
    max-height: 350px !important;
  }

  .mh-xxl-375px {
    max-height: 375px !important;
  }

  .mh-xxl-400px {
    max-height: 400px !important;
  }

  .mh-xxl-425px {
    max-height: 425px !important;
  }

  .mh-xxl-450px {
    max-height: 450px !important;
  }

  .mh-xxl-475px {
    max-height: 475px !important;
  }

  .mh-xxl-500px {
    max-height: 500px !important;
  }

  .mh-xxl-550px {
    max-height: 550px !important;
  }

  .mh-xxl-600px {
    max-height: 600px !important;
  }

  .mh-xxl-650px {
    max-height: 650px !important;
  }

  .mh-xxl-700px {
    max-height: 700px !important;
  }

  .mh-xxl-750px {
    max-height: 750px !important;
  }

  .mh-xxl-800px {
    max-height: 800px !important;
  }

  .mh-xxl-850px {
    max-height: 850px !important;
  }

  .mh-xxl-900px {
    max-height: 900px !important;
  }

  .mh-xxl-950px {
    max-height: 950px !important;
  }

  .mh-xxl-1000px {
    max-height: 1000px !important;
  }

  .flex-xxl-fill {
    flex: 1 1 auto !important;
  }

  .flex-xxl-row {
    flex-direction: row !important;
  }

  .flex-xxl-column {
    flex-direction: column !important;
  }

  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important;
  }

  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important;
  }

  .flex-xxl-grow-0 {
    flex-grow: 0 !important;
  }

  .flex-xxl-grow-1 {
    flex-grow: 1 !important;
  }

  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important;
  }

  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important;
  }

  .flex-xxl-wrap {
    flex-wrap: wrap !important;
  }

  .flex-xxl-nowrap {
    flex-wrap: nowrap !important;
  }

  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }

  .gap-xxl-0 {
    gap: 0 !important;
  }

  .gap-xxl-1 {
    gap: 0.25rem !important;
  }

  .gap-xxl-2 {
    gap: 0.5rem !important;
  }

  .gap-xxl-3 {
    gap: 0.75rem !important;
  }

  .gap-xxl-4 {
    gap: 1rem !important;
  }

  .gap-xxl-5 {
    gap: 1.25rem !important;
  }

  .gap-xxl-6 {
    gap: 1.5rem !important;
  }

  .gap-xxl-7 {
    gap: 1.75rem !important;
  }

  .gap-xxl-8 {
    gap: 2rem !important;
  }

  .gap-xxl-9 {
    gap: 2.25rem !important;
  }

  .gap-xxl-10 {
    gap: 2.5rem !important;
  }

  .gap-xxl-11 {
    gap: 2.75rem !important;
  }

  .gap-xxl-12 {
    gap: 3rem !important;
  }

  .gap-xxl-13 {
    gap: 3.25rem !important;
  }

  .gap-xxl-14 {
    gap: 3.5rem !important;
  }

  .gap-xxl-15 {
    gap: 3.75rem !important;
  }

  .gap-xxl-16 {
    gap: 4rem !important;
  }

  .gap-xxl-17 {
    gap: 4.25rem !important;
  }

  .gap-xxl-18 {
    gap: 4.5rem !important;
  }

  .gap-xxl-19 {
    gap: 4.75rem !important;
  }

  .gap-xxl-20 {
    gap: 5rem !important;
  }

  .justify-content-xxl-start {
    justify-content: flex-start !important;
  }

  .justify-content-xxl-end {
    justify-content: flex-end !important;
  }

  .justify-content-xxl-center {
    justify-content: center !important;
  }

  .justify-content-xxl-between {
    justify-content: space-between !important;
  }

  .justify-content-xxl-around {
    justify-content: space-around !important;
  }

  .justify-content-xxl-evenly {
    justify-content: space-evenly !important;
  }

  .align-items-xxl-start {
    align-items: flex-start !important;
  }

  .align-items-xxl-end {
    align-items: flex-end !important;
  }

  .align-items-xxl-center {
    align-items: center !important;
  }

  .align-items-xxl-baseline {
    align-items: baseline !important;
  }

  .align-items-xxl-stretch {
    align-items: stretch !important;
  }

  .align-content-xxl-start {
    align-content: flex-start !important;
  }

  .align-content-xxl-end {
    align-content: flex-end !important;
  }

  .align-content-xxl-center {
    align-content: center !important;
  }

  .align-content-xxl-between {
    align-content: space-between !important;
  }

  .align-content-xxl-around {
    align-content: space-around !important;
  }

  .align-content-xxl-stretch {
    align-content: stretch !important;
  }

  .align-self-xxl-auto {
    align-self: auto !important;
  }

  .align-self-xxl-start {
    align-self: flex-start !important;
  }

  .align-self-xxl-end {
    align-self: flex-end !important;
  }

  .align-self-xxl-center {
    align-self: center !important;
  }

  .align-self-xxl-baseline {
    align-self: baseline !important;
  }

  .align-self-xxl-stretch {
    align-self: stretch !important;
  }

  .order-xxl-first {
    order: -1 !important;
  }

  .order-xxl-0 {
    order: 0 !important;
  }

  .order-xxl-1 {
    order: 1 !important;
  }

  .order-xxl-2 {
    order: 2 !important;
  }

  .order-xxl-3 {
    order: 3 !important;
  }

  .order-xxl-4 {
    order: 4 !important;
  }

  .order-xxl-5 {
    order: 5 !important;
  }

  .order-xxl-last {
    order: 6 !important;
  }

  .m-xxl-0 {
    margin: 0 !important;
  }

  .m-xxl-1 {
    margin: 0.25rem !important;
  }

  .m-xxl-2 {
    margin: 0.5rem !important;
  }

  .m-xxl-3 {
    margin: 0.75rem !important;
  }

  .m-xxl-4 {
    margin: 1rem !important;
  }

  .m-xxl-5 {
    margin: 1.25rem !important;
  }

  .m-xxl-6 {
    margin: 1.5rem !important;
  }

  .m-xxl-7 {
    margin: 1.75rem !important;
  }

  .m-xxl-8 {
    margin: 2rem !important;
  }

  .m-xxl-9 {
    margin: 2.25rem !important;
  }

  .m-xxl-10 {
    margin: 2.5rem !important;
  }

  .m-xxl-11 {
    margin: 2.75rem !important;
  }

  .m-xxl-12 {
    margin: 3rem !important;
  }

  .m-xxl-13 {
    margin: 3.25rem !important;
  }

  .m-xxl-14 {
    margin: 3.5rem !important;
  }

  .m-xxl-15 {
    margin: 3.75rem !important;
  }

  .m-xxl-16 {
    margin: 4rem !important;
  }

  .m-xxl-17 {
    margin: 4.25rem !important;
  }

  .m-xxl-18 {
    margin: 4.5rem !important;
  }

  .m-xxl-19 {
    margin: 4.75rem !important;
  }

  .m-xxl-20 {
    margin: 5rem !important;
  }

  .m-xxl-auto {
    margin: auto !important;
  }

  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important;
  }

  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important;
  }

  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important;
  }

  .mx-xxl-3 {
    margin-right: 0.75rem !important;
    margin-left: 0.75rem !important;
  }

  .mx-xxl-4 {
    margin-right: 1rem !important;
    margin-left: 1rem !important;
  }

  .mx-xxl-5 {
    margin-right: 1.25rem !important;
    margin-left: 1.25rem !important;
  }

  .mx-xxl-6 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important;
  }

  .mx-xxl-7 {
    margin-right: 1.75rem !important;
    margin-left: 1.75rem !important;
  }

  .mx-xxl-8 {
    margin-right: 2rem !important;
    margin-left: 2rem !important;
  }

  .mx-xxl-9 {
    margin-right: 2.25rem !important;
    margin-left: 2.25rem !important;
  }

  .mx-xxl-10 {
    margin-right: 2.5rem !important;
    margin-left: 2.5rem !important;
  }

  .mx-xxl-11 {
    margin-right: 2.75rem !important;
    margin-left: 2.75rem !important;
  }

  .mx-xxl-12 {
    margin-right: 3rem !important;
    margin-left: 3rem !important;
  }

  .mx-xxl-13 {
    margin-right: 3.25rem !important;
    margin-left: 3.25rem !important;
  }

  .mx-xxl-14 {
    margin-right: 3.5rem !important;
    margin-left: 3.5rem !important;
  }

  .mx-xxl-15 {
    margin-right: 3.75rem !important;
    margin-left: 3.75rem !important;
  }

  .mx-xxl-16 {
    margin-right: 4rem !important;
    margin-left: 4rem !important;
  }

  .mx-xxl-17 {
    margin-right: 4.25rem !important;
    margin-left: 4.25rem !important;
  }

  .mx-xxl-18 {
    margin-right: 4.5rem !important;
    margin-left: 4.5rem !important;
  }

  .mx-xxl-19 {
    margin-right: 4.75rem !important;
    margin-left: 4.75rem !important;
  }

  .mx-xxl-20 {
    margin-right: 5rem !important;
    margin-left: 5rem !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: 0.25rem !important;
    margin-bottom: 0.25rem !important;
  }

  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }

  .my-xxl-3 {
    margin-top: 0.75rem !important;
    margin-bottom: 0.75rem !important;
  }

  .my-xxl-4 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
  }

  .my-xxl-5 {
    margin-top: 1.25rem !important;
    margin-bottom: 1.25rem !important;
  }

  .my-xxl-6 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important;
  }

  .my-xxl-7 {
    margin-top: 1.75rem !important;
    margin-bottom: 1.75rem !important;
  }

  .my-xxl-8 {
    margin-top: 2rem !important;
    margin-bottom: 2rem !important;
  }

  .my-xxl-9 {
    margin-top: 2.25rem !important;
    margin-bottom: 2.25rem !important;
  }

  .my-xxl-10 {
    margin-top: 2.5rem !important;
    margin-bottom: 2.5rem !important;
  }

  .my-xxl-11 {
    margin-top: 2.75rem !important;
    margin-bottom: 2.75rem !important;
  }

  .my-xxl-12 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important;
  }

  .my-xxl-13 {
    margin-top: 3.25rem !important;
    margin-bottom: 3.25rem !important;
  }

  .my-xxl-14 {
    margin-top: 3.5rem !important;
    margin-bottom: 3.5rem !important;
  }

  .my-xxl-15 {
    margin-top: 3.75rem !important;
    margin-bottom: 3.75rem !important;
  }

  .my-xxl-16 {
    margin-top: 4rem !important;
    margin-bottom: 4rem !important;
  }

  .my-xxl-17 {
    margin-top: 4.25rem !important;
    margin-bottom: 4.25rem !important;
  }

  .my-xxl-18 {
    margin-top: 4.5rem !important;
    margin-bottom: 4.5rem !important;
  }

  .my-xxl-19 {
    margin-top: 4.75rem !important;
    margin-bottom: 4.75rem !important;
  }

  .my-xxl-20 {
    margin-top: 5rem !important;
    margin-bottom: 5rem !important;
  }

  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important;
  }

  .mt-xxl-0 {
    margin-top: 0 !important;
  }

  .mt-xxl-1 {
    margin-top: 0.25rem !important;
  }

  .mt-xxl-2 {
    margin-top: 0.5rem !important;
  }

  .mt-xxl-3 {
    margin-top: 0.75rem !important;
  }

  .mt-xxl-4 {
    margin-top: 1rem !important;
  }

  .mt-xxl-5 {
    margin-top: 1.25rem !important;
  }

  .mt-xxl-6 {
    margin-top: 1.5rem !important;
  }

  .mt-xxl-7 {
    margin-top: 1.75rem !important;
  }

  .mt-xxl-8 {
    margin-top: 2rem !important;
  }

  .mt-xxl-9 {
    margin-top: 2.25rem !important;
  }

  .mt-xxl-10 {
    margin-top: 2.5rem !important;
  }

  .mt-xxl-11 {
    margin-top: 2.75rem !important;
  }

  .mt-xxl-12 {
    margin-top: 3rem !important;
  }

  .mt-xxl-13 {
    margin-top: 3.25rem !important;
  }

  .mt-xxl-14 {
    margin-top: 3.5rem !important;
  }

  .mt-xxl-15 {
    margin-top: 3.75rem !important;
  }

  .mt-xxl-16 {
    margin-top: 4rem !important;
  }

  .mt-xxl-17 {
    margin-top: 4.25rem !important;
  }

  .mt-xxl-18 {
    margin-top: 4.5rem !important;
  }

  .mt-xxl-19 {
    margin-top: 4.75rem !important;
  }

  .mt-xxl-20 {
    margin-top: 5rem !important;
  }

  .mt-xxl-auto {
    margin-top: auto !important;
  }

  .me-xxl-0 {
    margin-right: 0 !important;
  }

  .me-xxl-1 {
    margin-right: 0.25rem !important;
  }

  .me-xxl-2 {
    margin-right: 0.5rem !important;
  }

  .me-xxl-3 {
    margin-right: 0.75rem !important;
  }

  .me-xxl-4 {
    margin-right: 1rem !important;
  }

  .me-xxl-5 {
    margin-right: 1.25rem !important;
  }

  .me-xxl-6 {
    margin-right: 1.5rem !important;
  }

  .me-xxl-7 {
    margin-right: 1.75rem !important;
  }

  .me-xxl-8 {
    margin-right: 2rem !important;
  }

  .me-xxl-9 {
    margin-right: 2.25rem !important;
  }

  .me-xxl-10 {
    margin-right: 2.5rem !important;
  }

  .me-xxl-11 {
    margin-right: 2.75rem !important;
  }

  .me-xxl-12 {
    margin-right: 3rem !important;
  }

  .me-xxl-13 {
    margin-right: 3.25rem !important;
  }

  .me-xxl-14 {
    margin-right: 3.5rem !important;
  }

  .me-xxl-15 {
    margin-right: 3.75rem !important;
  }

  .me-xxl-16 {
    margin-right: 4rem !important;
  }

  .me-xxl-17 {
    margin-right: 4.25rem !important;
  }

  .me-xxl-18 {
    margin-right: 4.5rem !important;
  }

  .me-xxl-19 {
    margin-right: 4.75rem !important;
  }

  .me-xxl-20 {
    margin-right: 5rem !important;
  }

  .me-xxl-auto {
    margin-right: auto !important;
  }

  .mb-xxl-0 {
    margin-bottom: 0 !important;
  }

  .mb-xxl-1 {
    margin-bottom: 0.25rem !important;
  }

  .mb-xxl-2 {
    margin-bottom: 0.5rem !important;
  }

  .mb-xxl-3 {
    margin-bottom: 0.75rem !important;
  }

  .mb-xxl-4 {
    margin-bottom: 1rem !important;
  }

  .mb-xxl-5 {
    margin-bottom: 1.25rem !important;
  }

  .mb-xxl-6 {
    margin-bottom: 1.5rem !important;
  }

  .mb-xxl-7 {
    margin-bottom: 1.75rem !important;
  }

  .mb-xxl-8 {
    margin-bottom: 2rem !important;
  }

  .mb-xxl-9 {
    margin-bottom: 2.25rem !important;
  }

  .mb-xxl-10 {
    margin-bottom: 2.5rem !important;
  }

  .mb-xxl-11 {
    margin-bottom: 2.75rem !important;
  }

  .mb-xxl-12 {
    margin-bottom: 3rem !important;
  }

  .mb-xxl-13 {
    margin-bottom: 3.25rem !important;
  }

  .mb-xxl-14 {
    margin-bottom: 3.5rem !important;
  }

  .mb-xxl-15 {
    margin-bottom: 3.75rem !important;
  }

  .mb-xxl-16 {
    margin-bottom: 4rem !important;
  }

  .mb-xxl-17 {
    margin-bottom: 4.25rem !important;
  }

  .mb-xxl-18 {
    margin-bottom: 4.5rem !important;
  }

  .mb-xxl-19 {
    margin-bottom: 4.75rem !important;
  }

  .mb-xxl-20 {
    margin-bottom: 5rem !important;
  }

  .mb-xxl-auto {
    margin-bottom: auto !important;
  }

  .ms-xxl-0 {
    margin-left: 0 !important;
  }

  .ms-xxl-1 {
    margin-left: 0.25rem !important;
  }

  .ms-xxl-2 {
    margin-left: 0.5rem !important;
  }

  .ms-xxl-3 {
    margin-left: 0.75rem !important;
  }

  .ms-xxl-4 {
    margin-left: 1rem !important;
  }

  .ms-xxl-5 {
    margin-left: 1.25rem !important;
  }

  .ms-xxl-6 {
    margin-left: 1.5rem !important;
  }

  .ms-xxl-7 {
    margin-left: 1.75rem !important;
  }

  .ms-xxl-8 {
    margin-left: 2rem !important;
  }

  .ms-xxl-9 {
    margin-left: 2.25rem !important;
  }

  .ms-xxl-10 {
    margin-left: 2.5rem !important;
  }

  .ms-xxl-11 {
    margin-left: 2.75rem !important;
  }

  .ms-xxl-12 {
    margin-left: 3rem !important;
  }

  .ms-xxl-13 {
    margin-left: 3.25rem !important;
  }

  .ms-xxl-14 {
    margin-left: 3.5rem !important;
  }

  .ms-xxl-15 {
    margin-left: 3.75rem !important;
  }

  .ms-xxl-16 {
    margin-left: 4rem !important;
  }

  .ms-xxl-17 {
    margin-left: 4.25rem !important;
  }

  .ms-xxl-18 {
    margin-left: 4.5rem !important;
  }

  .ms-xxl-19 {
    margin-left: 4.75rem !important;
  }

  .ms-xxl-20 {
    margin-left: 5rem !important;
  }

  .ms-xxl-auto {
    margin-left: auto !important;
  }

  .m-xxl-n1 {
    margin: -0.25rem !important;
  }

  .m-xxl-n2 {
    margin: -0.5rem !important;
  }

  .m-xxl-n3 {
    margin: -0.75rem !important;
  }

  .m-xxl-n4 {
    margin: -1rem !important;
  }

  .m-xxl-n5 {
    margin: -1.25rem !important;
  }

  .m-xxl-n6 {
    margin: -1.5rem !important;
  }

  .m-xxl-n7 {
    margin: -1.75rem !important;
  }

  .m-xxl-n8 {
    margin: -2rem !important;
  }

  .m-xxl-n9 {
    margin: -2.25rem !important;
  }

  .m-xxl-n10 {
    margin: -2.5rem !important;
  }

  .m-xxl-n11 {
    margin: -2.75rem !important;
  }

  .m-xxl-n12 {
    margin: -3rem !important;
  }

  .m-xxl-n13 {
    margin: -3.25rem !important;
  }

  .m-xxl-n14 {
    margin: -3.5rem !important;
  }

  .m-xxl-n15 {
    margin: -3.75rem !important;
  }

  .m-xxl-n16 {
    margin: -4rem !important;
  }

  .m-xxl-n17 {
    margin: -4.25rem !important;
  }

  .m-xxl-n18 {
    margin: -4.5rem !important;
  }

  .m-xxl-n19 {
    margin: -4.75rem !important;
  }

  .m-xxl-n20 {
    margin: -5rem !important;
  }

  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
    margin-left: -0.25rem !important;
  }

  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
    margin-left: -0.5rem !important;
  }

  .mx-xxl-n3 {
    margin-right: -0.75rem !important;
    margin-left: -0.75rem !important;
  }

  .mx-xxl-n4 {
    margin-right: -1rem !important;
    margin-left: -1rem !important;
  }

  .mx-xxl-n5 {
    margin-right: -1.25rem !important;
    margin-left: -1.25rem !important;
  }

  .mx-xxl-n6 {
    margin-right: -1.5rem !important;
    margin-left: -1.5rem !important;
  }

  .mx-xxl-n7 {
    margin-right: -1.75rem !important;
    margin-left: -1.75rem !important;
  }

  .mx-xxl-n8 {
    margin-right: -2rem !important;
    margin-left: -2rem !important;
  }

  .mx-xxl-n9 {
    margin-right: -2.25rem !important;
    margin-left: -2.25rem !important;
  }

  .mx-xxl-n10 {
    margin-right: -2.5rem !important;
    margin-left: -2.5rem !important;
  }

  .mx-xxl-n11 {
    margin-right: -2.75rem !important;
    margin-left: -2.75rem !important;
  }

  .mx-xxl-n12 {
    margin-right: -3rem !important;
    margin-left: -3rem !important;
  }

  .mx-xxl-n13 {
    margin-right: -3.25rem !important;
    margin-left: -3.25rem !important;
  }

  .mx-xxl-n14 {
    margin-right: -3.5rem !important;
    margin-left: -3.5rem !important;
  }

  .mx-xxl-n15 {
    margin-right: -3.75rem !important;
    margin-left: -3.75rem !important;
  }

  .mx-xxl-n16 {
    margin-right: -4rem !important;
    margin-left: -4rem !important;
  }

  .mx-xxl-n17 {
    margin-right: -4.25rem !important;
    margin-left: -4.25rem !important;
  }

  .mx-xxl-n18 {
    margin-right: -4.5rem !important;
    margin-left: -4.5rem !important;
  }

  .mx-xxl-n19 {
    margin-right: -4.75rem !important;
    margin-left: -4.75rem !important;
  }

  .mx-xxl-n20 {
    margin-right: -5rem !important;
    margin-left: -5rem !important;
  }

  .my-xxl-n1 {
    margin-top: -0.25rem !important;
    margin-bottom: -0.25rem !important;
  }

  .my-xxl-n2 {
    margin-top: -0.5rem !important;
    margin-bottom: -0.5rem !important;
  }

  .my-xxl-n3 {
    margin-top: -0.75rem !important;
    margin-bottom: -0.75rem !important;
  }

  .my-xxl-n4 {
    margin-top: -1rem !important;
    margin-bottom: -1rem !important;
  }

  .my-xxl-n5 {
    margin-top: -1.25rem !important;
    margin-bottom: -1.25rem !important;
  }

  .my-xxl-n6 {
    margin-top: -1.5rem !important;
    margin-bottom: -1.5rem !important;
  }

  .my-xxl-n7 {
    margin-top: -1.75rem !important;
    margin-bottom: -1.75rem !important;
  }

  .my-xxl-n8 {
    margin-top: -2rem !important;
    margin-bottom: -2rem !important;
  }

  .my-xxl-n9 {
    margin-top: -2.25rem !important;
    margin-bottom: -2.25rem !important;
  }

  .my-xxl-n10 {
    margin-top: -2.5rem !important;
    margin-bottom: -2.5rem !important;
  }

  .my-xxl-n11 {
    margin-top: -2.75rem !important;
    margin-bottom: -2.75rem !important;
  }

  .my-xxl-n12 {
    margin-top: -3rem !important;
    margin-bottom: -3rem !important;
  }

  .my-xxl-n13 {
    margin-top: -3.25rem !important;
    margin-bottom: -3.25rem !important;
  }

  .my-xxl-n14 {
    margin-top: -3.5rem !important;
    margin-bottom: -3.5rem !important;
  }

  .my-xxl-n15 {
    margin-top: -3.75rem !important;
    margin-bottom: -3.75rem !important;
  }

  .my-xxl-n16 {
    margin-top: -4rem !important;
    margin-bottom: -4rem !important;
  }

  .my-xxl-n17 {
    margin-top: -4.25rem !important;
    margin-bottom: -4.25rem !important;
  }

  .my-xxl-n18 {
    margin-top: -4.5rem !important;
    margin-bottom: -4.5rem !important;
  }

  .my-xxl-n19 {
    margin-top: -4.75rem !important;
    margin-bottom: -4.75rem !important;
  }

  .my-xxl-n20 {
    margin-top: -5rem !important;
    margin-bottom: -5rem !important;
  }

  .mt-xxl-n1 {
    margin-top: -0.25rem !important;
  }

  .mt-xxl-n2 {
    margin-top: -0.5rem !important;
  }

  .mt-xxl-n3 {
    margin-top: -0.75rem !important;
  }

  .mt-xxl-n4 {
    margin-top: -1rem !important;
  }

  .mt-xxl-n5 {
    margin-top: -1.25rem !important;
  }

  .mt-xxl-n6 {
    margin-top: -1.5rem !important;
  }

  .mt-xxl-n7 {
    margin-top: -1.75rem !important;
  }

  .mt-xxl-n8 {
    margin-top: -2rem !important;
  }

  .mt-xxl-n9 {
    margin-top: -2.25rem !important;
  }

  .mt-xxl-n10 {
    margin-top: -2.5rem !important;
  }

  .mt-xxl-n11 {
    margin-top: -2.75rem !important;
  }

  .mt-xxl-n12 {
    margin-top: -3rem !important;
  }

  .mt-xxl-n13 {
    margin-top: -3.25rem !important;
  }

  .mt-xxl-n14 {
    margin-top: -3.5rem !important;
  }

  .mt-xxl-n15 {
    margin-top: -3.75rem !important;
  }

  .mt-xxl-n16 {
    margin-top: -4rem !important;
  }

  .mt-xxl-n17 {
    margin-top: -4.25rem !important;
  }

  .mt-xxl-n18 {
    margin-top: -4.5rem !important;
  }

  .mt-xxl-n19 {
    margin-top: -4.75rem !important;
  }

  .mt-xxl-n20 {
    margin-top: -5rem !important;
  }

  .me-xxl-n1 {
    margin-right: -0.25rem !important;
  }

  .me-xxl-n2 {
    margin-right: -0.5rem !important;
  }

  .me-xxl-n3 {
    margin-right: -0.75rem !important;
  }

  .me-xxl-n4 {
    margin-right: -1rem !important;
  }

  .me-xxl-n5 {
    margin-right: -1.25rem !important;
  }

  .me-xxl-n6 {
    margin-right: -1.5rem !important;
  }

  .me-xxl-n7 {
    margin-right: -1.75rem !important;
  }

  .me-xxl-n8 {
    margin-right: -2rem !important;
  }

  .me-xxl-n9 {
    margin-right: -2.25rem !important;
  }

  .me-xxl-n10 {
    margin-right: -2.5rem !important;
  }

  .me-xxl-n11 {
    margin-right: -2.75rem !important;
  }

  .me-xxl-n12 {
    margin-right: -3rem !important;
  }

  .me-xxl-n13 {
    margin-right: -3.25rem !important;
  }

  .me-xxl-n14 {
    margin-right: -3.5rem !important;
  }

  .me-xxl-n15 {
    margin-right: -3.75rem !important;
  }

  .me-xxl-n16 {
    margin-right: -4rem !important;
  }

  .me-xxl-n17 {
    margin-right: -4.25rem !important;
  }

  .me-xxl-n18 {
    margin-right: -4.5rem !important;
  }

  .me-xxl-n19 {
    margin-right: -4.75rem !important;
  }

  .me-xxl-n20 {
    margin-right: -5rem !important;
  }

  .mb-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }

  .mb-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }

  .mb-xxl-n3 {
    margin-bottom: -0.75rem !important;
  }

  .mb-xxl-n4 {
    margin-bottom: -1rem !important;
  }

  .mb-xxl-n5 {
    margin-bottom: -1.25rem !important;
  }

  .mb-xxl-n6 {
    margin-bottom: -1.5rem !important;
  }

  .mb-xxl-n7 {
    margin-bottom: -1.75rem !important;
  }

  .mb-xxl-n8 {
    margin-bottom: -2rem !important;
  }

  .mb-xxl-n9 {
    margin-bottom: -2.25rem !important;
  }

  .mb-xxl-n10 {
    margin-bottom: -2.5rem !important;
  }

  .mb-xxl-n11 {
    margin-bottom: -2.75rem !important;
  }

  .mb-xxl-n12 {
    margin-bottom: -3rem !important;
  }

  .mb-xxl-n13 {
    margin-bottom: -3.25rem !important;
  }

  .mb-xxl-n14 {
    margin-bottom: -3.5rem !important;
  }

  .mb-xxl-n15 {
    margin-bottom: -3.75rem !important;
  }

  .mb-xxl-n16 {
    margin-bottom: -4rem !important;
  }

  .mb-xxl-n17 {
    margin-bottom: -4.25rem !important;
  }

  .mb-xxl-n18 {
    margin-bottom: -4.5rem !important;
  }

  .mb-xxl-n19 {
    margin-bottom: -4.75rem !important;
  }

  .mb-xxl-n20 {
    margin-bottom: -5rem !important;
  }

  .ms-xxl-n1 {
    margin-left: -0.25rem !important;
  }

  .ms-xxl-n2 {
    margin-left: -0.5rem !important;
  }

  .ms-xxl-n3 {
    margin-left: -0.75rem !important;
  }

  .ms-xxl-n4 {
    margin-left: -1rem !important;
  }

  .ms-xxl-n5 {
    margin-left: -1.25rem !important;
  }

  .ms-xxl-n6 {
    margin-left: -1.5rem !important;
  }

  .ms-xxl-n7 {
    margin-left: -1.75rem !important;
  }

  .ms-xxl-n8 {
    margin-left: -2rem !important;
  }

  .ms-xxl-n9 {
    margin-left: -2.25rem !important;
  }

  .ms-xxl-n10 {
    margin-left: -2.5rem !important;
  }

  .ms-xxl-n11 {
    margin-left: -2.75rem !important;
  }

  .ms-xxl-n12 {
    margin-left: -3rem !important;
  }

  .ms-xxl-n13 {
    margin-left: -3.25rem !important;
  }

  .ms-xxl-n14 {
    margin-left: -3.5rem !important;
  }

  .ms-xxl-n15 {
    margin-left: -3.75rem !important;
  }

  .ms-xxl-n16 {
    margin-left: -4rem !important;
  }

  .ms-xxl-n17 {
    margin-left: -4.25rem !important;
  }

  .ms-xxl-n18 {
    margin-left: -4.5rem !important;
  }

  .ms-xxl-n19 {
    margin-left: -4.75rem !important;
  }

  .ms-xxl-n20 {
    margin-left: -5rem !important;
  }

  .p-xxl-0 {
    padding: 0 !important;
  }

  .p-xxl-1 {
    padding: 0.25rem !important;
  }

  .p-xxl-2 {
    padding: 0.5rem !important;
  }

  .p-xxl-3 {
    padding: 0.75rem !important;
  }

  .p-xxl-4 {
    padding: 1rem !important;
  }

  .p-xxl-5 {
    padding: 1.25rem !important;
  }

  .p-xxl-6 {
    padding: 1.5rem !important;
  }

  .p-xxl-7 {
    padding: 1.75rem !important;
  }

  .p-xxl-8 {
    padding: 2rem !important;
  }

  .p-xxl-9 {
    padding: 2.25rem !important;
  }

  .p-xxl-10 {
    padding: 2.5rem !important;
  }

  .p-xxl-11 {
    padding: 2.75rem !important;
  }

  .p-xxl-12 {
    padding: 3rem !important;
  }

  .p-xxl-13 {
    padding: 3.25rem !important;
  }

  .p-xxl-14 {
    padding: 3.5rem !important;
  }

  .p-xxl-15 {
    padding: 3.75rem !important;
  }

  .p-xxl-16 {
    padding: 4rem !important;
  }

  .p-xxl-17 {
    padding: 4.25rem !important;
  }

  .p-xxl-18 {
    padding: 4.5rem !important;
  }

  .p-xxl-19 {
    padding: 4.75rem !important;
  }

  .p-xxl-20 {
    padding: 5rem !important;
  }

  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important;
  }

  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important;
  }

  .px-xxl-3 {
    padding-right: 0.75rem !important;
    padding-left: 0.75rem !important;
  }

  .px-xxl-4 {
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  .px-xxl-5 {
    padding-right: 1.25rem !important;
    padding-left: 1.25rem !important;
  }

  .px-xxl-6 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important;
  }

  .px-xxl-7 {
    padding-right: 1.75rem !important;
    padding-left: 1.75rem !important;
  }

  .px-xxl-8 {
    padding-right: 2rem !important;
    padding-left: 2rem !important;
  }

  .px-xxl-9 {
    padding-right: 2.25rem !important;
    padding-left: 2.25rem !important;
  }

  .px-xxl-10 {
    padding-right: 2.5rem !important;
    padding-left: 2.5rem !important;
  }

  .px-xxl-11 {
    padding-right: 2.75rem !important;
    padding-left: 2.75rem !important;
  }

  .px-xxl-12 {
    padding-right: 3rem !important;
    padding-left: 3rem !important;
  }

  .px-xxl-13 {
    padding-right: 3.25rem !important;
    padding-left: 3.25rem !important;
  }

  .px-xxl-14 {
    padding-right: 3.5rem !important;
    padding-left: 3.5rem !important;
  }

  .px-xxl-15 {
    padding-right: 3.75rem !important;
    padding-left: 3.75rem !important;
  }

  .px-xxl-16 {
    padding-right: 4rem !important;
    padding-left: 4rem !important;
  }

  .px-xxl-17 {
    padding-right: 4.25rem !important;
    padding-left: 4.25rem !important;
  }

  .px-xxl-18 {
    padding-right: 4.5rem !important;
    padding-left: 4.5rem !important;
  }

  .px-xxl-19 {
    padding-right: 4.75rem !important;
    padding-left: 4.75rem !important;
  }

  .px-xxl-20 {
    padding-right: 5rem !important;
    padding-left: 5rem !important;
  }

  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important;
  }

  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .py-xxl-3 {
    padding-top: 0.75rem !important;
    padding-bottom: 0.75rem !important;
  }

  .py-xxl-4 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important;
  }

  .py-xxl-5 {
    padding-top: 1.25rem !important;
    padding-bottom: 1.25rem !important;
  }

  .py-xxl-6 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .py-xxl-7 {
    padding-top: 1.75rem !important;
    padding-bottom: 1.75rem !important;
  }

  .py-xxl-8 {
    padding-top: 2rem !important;
    padding-bottom: 2rem !important;
  }

  .py-xxl-9 {
    padding-top: 2.25rem !important;
    padding-bottom: 2.25rem !important;
  }

  .py-xxl-10 {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
  }

  .py-xxl-11 {
    padding-top: 2.75rem !important;
    padding-bottom: 2.75rem !important;
  }

  .py-xxl-12 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }

  .py-xxl-13 {
    padding-top: 3.25rem !important;
    padding-bottom: 3.25rem !important;
  }

  .py-xxl-14 {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
  }

  .py-xxl-15 {
    padding-top: 3.75rem !important;
    padding-bottom: 3.75rem !important;
  }

  .py-xxl-16 {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
  }

  .py-xxl-17 {
    padding-top: 4.25rem !important;
    padding-bottom: 4.25rem !important;
  }

  .py-xxl-18 {
    padding-top: 4.5rem !important;
    padding-bottom: 4.5rem !important;
  }

  .py-xxl-19 {
    padding-top: 4.75rem !important;
    padding-bottom: 4.75rem !important;
  }

  .py-xxl-20 {
    padding-top: 5rem !important;
    padding-bottom: 5rem !important;
  }

  .pt-xxl-0 {
    padding-top: 0 !important;
  }

  .pt-xxl-1 {
    padding-top: 0.25rem !important;
  }

  .pt-xxl-2 {
    padding-top: 0.5rem !important;
  }

  .pt-xxl-3 {
    padding-top: 0.75rem !important;
  }

  .pt-xxl-4 {
    padding-top: 1rem !important;
  }

  .pt-xxl-5 {
    padding-top: 1.25rem !important;
  }

  .pt-xxl-6 {
    padding-top: 1.5rem !important;
  }

  .pt-xxl-7 {
    padding-top: 1.75rem !important;
  }

  .pt-xxl-8 {
    padding-top: 2rem !important;
  }

  .pt-xxl-9 {
    padding-top: 2.25rem !important;
  }

  .pt-xxl-10 {
    padding-top: 2.5rem !important;
  }

  .pt-xxl-11 {
    padding-top: 2.75rem !important;
  }

  .pt-xxl-12 {
    padding-top: 3rem !important;
  }

  .pt-xxl-13 {
    padding-top: 3.25rem !important;
  }

  .pt-xxl-14 {
    padding-top: 3.5rem !important;
  }

  .pt-xxl-15 {
    padding-top: 3.75rem !important;
  }

  .pt-xxl-16 {
    padding-top: 4rem !important;
  }

  .pt-xxl-17 {
    padding-top: 4.25rem !important;
  }

  .pt-xxl-18 {
    padding-top: 4.5rem !important;
  }

  .pt-xxl-19 {
    padding-top: 4.75rem !important;
  }

  .pt-xxl-20 {
    padding-top: 5rem !important;
  }

  .pe-xxl-0 {
    padding-right: 0 !important;
  }

  .pe-xxl-1 {
    padding-right: 0.25rem !important;
  }

  .pe-xxl-2 {
    padding-right: 0.5rem !important;
  }

  .pe-xxl-3 {
    padding-right: 0.75rem !important;
  }

  .pe-xxl-4 {
    padding-right: 1rem !important;
  }

  .pe-xxl-5 {
    padding-right: 1.25rem !important;
  }

  .pe-xxl-6 {
    padding-right: 1.5rem !important;
  }

  .pe-xxl-7 {
    padding-right: 1.75rem !important;
  }

  .pe-xxl-8 {
    padding-right: 2rem !important;
  }

  .pe-xxl-9 {
    padding-right: 2.25rem !important;
  }

  .pe-xxl-10 {
    padding-right: 2.5rem !important;
  }

  .pe-xxl-11 {
    padding-right: 2.75rem !important;
  }

  .pe-xxl-12 {
    padding-right: 3rem !important;
  }

  .pe-xxl-13 {
    padding-right: 3.25rem !important;
  }

  .pe-xxl-14 {
    padding-right: 3.5rem !important;
  }

  .pe-xxl-15 {
    padding-right: 3.75rem !important;
  }

  .pe-xxl-16 {
    padding-right: 4rem !important;
  }

  .pe-xxl-17 {
    padding-right: 4.25rem !important;
  }

  .pe-xxl-18 {
    padding-right: 4.5rem !important;
  }

  .pe-xxl-19 {
    padding-right: 4.75rem !important;
  }

  .pe-xxl-20 {
    padding-right: 5rem !important;
  }

  .pb-xxl-0 {
    padding-bottom: 0 !important;
  }

  .pb-xxl-1 {
    padding-bottom: 0.25rem !important;
  }

  .pb-xxl-2 {
    padding-bottom: 0.5rem !important;
  }

  .pb-xxl-3 {
    padding-bottom: 0.75rem !important;
  }

  .pb-xxl-4 {
    padding-bottom: 1rem !important;
  }

  .pb-xxl-5 {
    padding-bottom: 1.25rem !important;
  }

  .pb-xxl-6 {
    padding-bottom: 1.5rem !important;
  }

  .pb-xxl-7 {
    padding-bottom: 1.75rem !important;
  }

  .pb-xxl-8 {
    padding-bottom: 2rem !important;
  }

  .pb-xxl-9 {
    padding-bottom: 2.25rem !important;
  }

  .pb-xxl-10 {
    padding-bottom: 2.5rem !important;
  }

  .pb-xxl-11 {
    padding-bottom: 2.75rem !important;
  }

  .pb-xxl-12 {
    padding-bottom: 3rem !important;
  }

  .pb-xxl-13 {
    padding-bottom: 3.25rem !important;
  }

  .pb-xxl-14 {
    padding-bottom: 3.5rem !important;
  }

  .pb-xxl-15 {
    padding-bottom: 3.75rem !important;
  }

  .pb-xxl-16 {
    padding-bottom: 4rem !important;
  }

  .pb-xxl-17 {
    padding-bottom: 4.25rem !important;
  }

  .pb-xxl-18 {
    padding-bottom: 4.5rem !important;
  }

  .pb-xxl-19 {
    padding-bottom: 4.75rem !important;
  }

  .pb-xxl-20 {
    padding-bottom: 5rem !important;
  }

  .ps-xxl-0 {
    padding-left: 0 !important;
  }

  .ps-xxl-1 {
    padding-left: 0.25rem !important;
  }

  .ps-xxl-2 {
    padding-left: 0.5rem !important;
  }

  .ps-xxl-3 {
    padding-left: 0.75rem !important;
  }

  .ps-xxl-4 {
    padding-left: 1rem !important;
  }

  .ps-xxl-5 {
    padding-left: 1.25rem !important;
  }

  .ps-xxl-6 {
    padding-left: 1.5rem !important;
  }

  .ps-xxl-7 {
    padding-left: 1.75rem !important;
  }

  .ps-xxl-8 {
    padding-left: 2rem !important;
  }

  .ps-xxl-9 {
    padding-left: 2.25rem !important;
  }

  .ps-xxl-10 {
    padding-left: 2.5rem !important;
  }

  .ps-xxl-11 {
    padding-left: 2.75rem !important;
  }

  .ps-xxl-12 {
    padding-left: 3rem !important;
  }

  .ps-xxl-13 {
    padding-left: 3.25rem !important;
  }

  .ps-xxl-14 {
    padding-left: 3.5rem !important;
  }

  .ps-xxl-15 {
    padding-left: 3.75rem !important;
  }

  .ps-xxl-16 {
    padding-left: 4rem !important;
  }

  .ps-xxl-17 {
    padding-left: 4.25rem !important;
  }

  .ps-xxl-18 {
    padding-left: 4.5rem !important;
  }

  .ps-xxl-19 {
    padding-left: 4.75rem !important;
  }

  .ps-xxl-20 {
    padding-left: 5rem !important;
  }

  .fs-xxl-1 {
    font-size: calc(1.3rem + 0.6vw) !important;
  }

  .fs-xxl-2 {
    font-size: calc(1.275rem + 0.3vw) !important;
  }

  .fs-xxl-3 {
    font-size: calc(1.26rem + 0.12vw) !important;
  }

  .fs-xxl-4 {
    font-size: 1.25rem !important;
  }

  .fs-xxl-5 {
    font-size: 1.15rem !important;
  }

  .fs-xxl-6 {
    font-size: 1.075rem !important;
  }

  .fs-xxl-7 {
    font-size: 0.95rem !important;
  }

  .fs-xxl-8 {
    font-size: 0.85rem !important;
  }

  .fs-xxl-9 {
    font-size: 0.75rem !important;
  }

  .fs-xxl-10 {
    font-size: 0.5rem !important;
  }

  .fs-xxl-base {
    font-size: 1rem !important;
  }

  .fs-xxl-fluid {
    font-size: 100% !important;
  }

  .fs-xxl-2x {
    font-size: calc(1.325rem + 0.9vw) !important;
  }

  .fs-xxl-2qx {
    font-size: calc(1.35rem + 1.2vw) !important;
  }

  .fs-xxl-2hx {
    font-size: calc(1.375rem + 1.5vw) !important;
  }

  .fs-xxl-2tx {
    font-size: calc(1.4rem + 1.8vw) !important;
  }

  .fs-xxl-3x {
    font-size: calc(1.425rem + 2.1vw) !important;
  }

  .fs-xxl-3qx {
    font-size: calc(1.45rem + 2.4vw) !important;
  }

  .fs-xxl-3hx {
    font-size: calc(1.475rem + 2.7vw) !important;
  }

  .fs-xxl-3tx {
    font-size: calc(1.5rem + 3vw) !important;
  }

  .fs-xxl-4x {
    font-size: calc(1.525rem + 3.3vw) !important;
  }

  .fs-xxl-4qx {
    font-size: calc(1.55rem + 3.6vw) !important;
  }

  .fs-xxl-4hx {
    font-size: calc(1.575rem + 3.9vw) !important;
  }

  .fs-xxl-4tx {
    font-size: calc(1.6rem + 4.2vw) !important;
  }

  .fs-xxl-5x {
    font-size: calc(1.625rem + 4.5vw) !important;
  }

  .fs-xxl-5qx {
    font-size: calc(1.65rem + 4.8vw) !important;
  }

  .fs-xxl-5hx {
    font-size: calc(1.675rem + 5.1vw) !important;
  }

  .fs-xxl-5tx {
    font-size: calc(1.7rem + 5.4vw) !important;
  }

  .text-xxl-start {
    text-align: left !important;
  }

  .text-xxl-end {
    text-align: right !important;
  }

  .text-xxl-center {
    text-align: center !important;
  }

  .min-w-xxl-unset {
    min-width: unset !important;
  }

  .min-w-xxl-25 {
    min-width: 25% !important;
  }

  .min-w-xxl-50 {
    min-width: 50% !important;
  }

  .min-w-xxl-75 {
    min-width: 75% !important;
  }

  .min-w-xxl-100 {
    min-width: 100% !important;
  }

  .min-w-xxl-auto {
    min-width: auto !important;
  }

  .min-w-xxl-1px {
    min-width: 1px !important;
  }

  .min-w-xxl-2px {
    min-width: 2px !important;
  }

  .min-w-xxl-3px {
    min-width: 3px !important;
  }

  .min-w-xxl-4px {
    min-width: 4px !important;
  }

  .min-w-xxl-5px {
    min-width: 5px !important;
  }

  .min-w-xxl-6px {
    min-width: 6px !important;
  }

  .min-w-xxl-7px {
    min-width: 7px !important;
  }

  .min-w-xxl-8px {
    min-width: 8px !important;
  }

  .min-w-xxl-9px {
    min-width: 9px !important;
  }

  .min-w-xxl-10px {
    min-width: 10px !important;
  }

  .min-w-xxl-15px {
    min-width: 15px !important;
  }

  .min-w-xxl-20px {
    min-width: 20px !important;
  }

  .min-w-xxl-25px {
    min-width: 25px !important;
  }

  .min-w-xxl-30px {
    min-width: 30px !important;
  }

  .min-w-xxl-35px {
    min-width: 35px !important;
  }

  .min-w-xxl-40px {
    min-width: 40px !important;
  }

  .min-w-xxl-45px {
    min-width: 45px !important;
  }

  .min-w-xxl-50px {
    min-width: 50px !important;
  }

  .min-w-xxl-55px {
    min-width: 55px !important;
  }

  .min-w-xxl-60px {
    min-width: 60px !important;
  }

  .min-w-xxl-65px {
    min-width: 65px !important;
  }

  .min-w-xxl-70px {
    min-width: 70px !important;
  }

  .min-w-xxl-75px {
    min-width: 75px !important;
  }

  .min-w-xxl-80px {
    min-width: 80px !important;
  }

  .min-w-xxl-85px {
    min-width: 85px !important;
  }

  .min-w-xxl-90px {
    min-width: 90px !important;
  }

  .min-w-xxl-95px {
    min-width: 95px !important;
  }

  .min-w-xxl-100px {
    min-width: 100px !important;
  }

  .min-w-xxl-125px {
    min-width: 125px !important;
  }

  .min-w-xxl-150px {
    min-width: 150px !important;
  }

  .min-w-xxl-175px {
    min-width: 175px !important;
  }

  .min-w-xxl-200px {
    min-width: 200px !important;
  }

  .min-w-xxl-225px {
    min-width: 225px !important;
  }

  .min-w-xxl-250px {
    min-width: 250px !important;
  }

  .min-w-xxl-275px {
    min-width: 275px !important;
  }

  .min-w-xxl-300px {
    min-width: 300px !important;
  }

  .min-w-xxl-325px {
    min-width: 325px !important;
  }

  .min-w-xxl-350px {
    min-width: 350px !important;
  }

  .min-w-xxl-375px {
    min-width: 375px !important;
  }

  .min-w-xxl-400px {
    min-width: 400px !important;
  }

  .min-w-xxl-425px {
    min-width: 425px !important;
  }

  .min-w-xxl-450px {
    min-width: 450px !important;
  }

  .min-w-xxl-475px {
    min-width: 475px !important;
  }

  .min-w-xxl-500px {
    min-width: 500px !important;
  }

  .min-w-xxl-550px {
    min-width: 550px !important;
  }

  .min-w-xxl-600px {
    min-width: 600px !important;
  }

  .min-w-xxl-650px {
    min-width: 650px !important;
  }

  .min-w-xxl-700px {
    min-width: 700px !important;
  }

  .min-w-xxl-750px {
    min-width: 750px !important;
  }

  .min-w-xxl-800px {
    min-width: 800px !important;
  }

  .min-w-xxl-850px {
    min-width: 850px !important;
  }

  .min-w-xxl-900px {
    min-width: 900px !important;
  }

  .min-w-xxl-950px {
    min-width: 950px !important;
  }

  .min-w-xxl-1000px {
    min-width: 1000px !important;
  }

  .min-h-xxl-unset {
    min-height: unset !important;
  }

  .min-h-xxl-25 {
    min-height: 25% !important;
  }

  .min-h-xxl-50 {
    min-height: 50% !important;
  }

  .min-h-xxl-75 {
    min-height: 75% !important;
  }

  .min-h-xxl-100 {
    min-height: 100% !important;
  }

  .min-h-xxl-auto {
    min-height: auto !important;
  }

  .min-h-xxl-1px {
    min-height: 1px !important;
  }

  .min-h-xxl-2px {
    min-height: 2px !important;
  }

  .min-h-xxl-3px {
    min-height: 3px !important;
  }

  .min-h-xxl-4px {
    min-height: 4px !important;
  }

  .min-h-xxl-5px {
    min-height: 5px !important;
  }

  .min-h-xxl-6px {
    min-height: 6px !important;
  }

  .min-h-xxl-7px {
    min-height: 7px !important;
  }

  .min-h-xxl-8px {
    min-height: 8px !important;
  }

  .min-h-xxl-9px {
    min-height: 9px !important;
  }

  .min-h-xxl-10px {
    min-height: 10px !important;
  }

  .min-h-xxl-15px {
    min-height: 15px !important;
  }

  .min-h-xxl-20px {
    min-height: 20px !important;
  }

  .min-h-xxl-25px {
    min-height: 25px !important;
  }

  .min-h-xxl-30px {
    min-height: 30px !important;
  }

  .min-h-xxl-35px {
    min-height: 35px !important;
  }

  .min-h-xxl-40px {
    min-height: 40px !important;
  }

  .min-h-xxl-45px {
    min-height: 45px !important;
  }

  .min-h-xxl-50px {
    min-height: 50px !important;
  }

  .min-h-xxl-55px {
    min-height: 55px !important;
  }

  .min-h-xxl-60px {
    min-height: 60px !important;
  }

  .min-h-xxl-65px {
    min-height: 65px !important;
  }

  .min-h-xxl-70px {
    min-height: 70px !important;
  }

  .min-h-xxl-75px {
    min-height: 75px !important;
  }

  .min-h-xxl-80px {
    min-height: 80px !important;
  }

  .min-h-xxl-85px {
    min-height: 85px !important;
  }

  .min-h-xxl-90px {
    min-height: 90px !important;
  }

  .min-h-xxl-95px {
    min-height: 95px !important;
  }

  .min-h-xxl-100px {
    min-height: 100px !important;
  }

  .min-h-xxl-125px {
    min-height: 125px !important;
  }

  .min-h-xxl-150px {
    min-height: 150px !important;
  }

  .min-h-xxl-175px {
    min-height: 175px !important;
  }

  .min-h-xxl-200px {
    min-height: 200px !important;
  }

  .min-h-xxl-225px {
    min-height: 225px !important;
  }

  .min-h-xxl-250px {
    min-height: 250px !important;
  }

  .min-h-xxl-275px {
    min-height: 275px !important;
  }

  .min-h-xxl-300px {
    min-height: 300px !important;
  }

  .min-h-xxl-325px {
    min-height: 325px !important;
  }

  .min-h-xxl-350px {
    min-height: 350px !important;
  }

  .min-h-xxl-375px {
    min-height: 375px !important;
  }

  .min-h-xxl-400px {
    min-height: 400px !important;
  }

  .min-h-xxl-425px {
    min-height: 425px !important;
  }

  .min-h-xxl-450px {
    min-height: 450px !important;
  }

  .min-h-xxl-475px {
    min-height: 475px !important;
  }

  .min-h-xxl-500px {
    min-height: 500px !important;
  }

  .min-h-xxl-550px {
    min-height: 550px !important;
  }

  .min-h-xxl-600px {
    min-height: 600px !important;
  }

  .min-h-xxl-650px {
    min-height: 650px !important;
  }

  .min-h-xxl-700px {
    min-height: 700px !important;
  }

  .min-h-xxl-750px {
    min-height: 750px !important;
  }

  .min-h-xxl-800px {
    min-height: 800px !important;
  }

  .min-h-xxl-850px {
    min-height: 850px !important;
  }

  .min-h-xxl-900px {
    min-height: 900px !important;
  }

  .min-h-xxl-950px {
    min-height: 950px !important;
  }

  .min-h-xxl-1000px {
    min-height: 1000px !important;
  }
}
@media (min-width: 1200px) {
  .fs-1 {
    font-size: 1.75rem !important;
  }

  .fs-2 {
    font-size: 1.5rem !important;
  }

  .fs-3 {
    font-size: 1.35rem !important;
  }

  .fs-2x {
    font-size: 2rem !important;
  }

  .fs-2qx {
    font-size: 2.25rem !important;
  }

  .fs-2hx {
    font-size: 2.5rem !important;
  }

  .fs-2tx {
    font-size: 2.75rem !important;
  }

  .fs-3x {
    font-size: 3rem !important;
  }

  .fs-3qx {
    font-size: 3.25rem !important;
  }

  .fs-3hx {
    font-size: 3.5rem !important;
  }

  .fs-3tx {
    font-size: 3.75rem !important;
  }

  .fs-4x {
    font-size: 4rem !important;
  }

  .fs-4qx {
    font-size: 4.25rem !important;
  }

  .fs-4hx {
    font-size: 4.5rem !important;
  }

  .fs-4tx {
    font-size: 4.75rem !important;
  }

  .fs-5x {
    font-size: 5rem !important;
  }

  .fs-5qx {
    font-size: 5.25rem !important;
  }

  .fs-5hx {
    font-size: 5.5rem !important;
  }

  .fs-5tx {
    font-size: 5.75rem !important;
  }

  .fs-sm-1 {
    font-size: 1.75rem !important;
  }

  .fs-sm-2 {
    font-size: 1.5rem !important;
  }

  .fs-sm-3 {
    font-size: 1.35rem !important;
  }

  .fs-sm-2x {
    font-size: 2rem !important;
  }

  .fs-sm-2qx {
    font-size: 2.25rem !important;
  }

  .fs-sm-2hx {
    font-size: 2.5rem !important;
  }

  .fs-sm-2tx {
    font-size: 2.75rem !important;
  }

  .fs-sm-3x {
    font-size: 3rem !important;
  }

  .fs-sm-3qx {
    font-size: 3.25rem !important;
  }

  .fs-sm-3hx {
    font-size: 3.5rem !important;
  }

  .fs-sm-3tx {
    font-size: 3.75rem !important;
  }

  .fs-sm-4x {
    font-size: 4rem !important;
  }

  .fs-sm-4qx {
    font-size: 4.25rem !important;
  }

  .fs-sm-4hx {
    font-size: 4.5rem !important;
  }

  .fs-sm-4tx {
    font-size: 4.75rem !important;
  }

  .fs-sm-5x {
    font-size: 5rem !important;
  }

  .fs-sm-5qx {
    font-size: 5.25rem !important;
  }

  .fs-sm-5hx {
    font-size: 5.5rem !important;
  }

  .fs-sm-5tx {
    font-size: 5.75rem !important;
  }

  .fs-md-1 {
    font-size: 1.75rem !important;
  }

  .fs-md-2 {
    font-size: 1.5rem !important;
  }

  .fs-md-3 {
    font-size: 1.35rem !important;
  }

  .fs-md-2x {
    font-size: 2rem !important;
  }

  .fs-md-2qx {
    font-size: 2.25rem !important;
  }

  .fs-md-2hx {
    font-size: 2.5rem !important;
  }

  .fs-md-2tx {
    font-size: 2.75rem !important;
  }

  .fs-md-3x {
    font-size: 3rem !important;
  }

  .fs-md-3qx {
    font-size: 3.25rem !important;
  }

  .fs-md-3hx {
    font-size: 3.5rem !important;
  }

  .fs-md-3tx {
    font-size: 3.75rem !important;
  }

  .fs-md-4x {
    font-size: 4rem !important;
  }

  .fs-md-4qx {
    font-size: 4.25rem !important;
  }

  .fs-md-4hx {
    font-size: 4.5rem !important;
  }

  .fs-md-4tx {
    font-size: 4.75rem !important;
  }

  .fs-md-5x {
    font-size: 5rem !important;
  }

  .fs-md-5qx {
    font-size: 5.25rem !important;
  }

  .fs-md-5hx {
    font-size: 5.5rem !important;
  }

  .fs-md-5tx {
    font-size: 5.75rem !important;
  }

  .fs-lg-1 {
    font-size: 1.75rem !important;
  }

  .fs-lg-2 {
    font-size: 1.5rem !important;
  }

  .fs-lg-3 {
    font-size: 1.35rem !important;
  }

  .fs-lg-2x {
    font-size: 2rem !important;
  }

  .fs-lg-2qx {
    font-size: 2.25rem !important;
  }

  .fs-lg-2hx {
    font-size: 2.5rem !important;
  }

  .fs-lg-2tx {
    font-size: 2.75rem !important;
  }

  .fs-lg-3x {
    font-size: 3rem !important;
  }

  .fs-lg-3qx {
    font-size: 3.25rem !important;
  }

  .fs-lg-3hx {
    font-size: 3.5rem !important;
  }

  .fs-lg-3tx {
    font-size: 3.75rem !important;
  }

  .fs-lg-4x {
    font-size: 4rem !important;
  }

  .fs-lg-4qx {
    font-size: 4.25rem !important;
  }

  .fs-lg-4hx {
    font-size: 4.5rem !important;
  }

  .fs-lg-4tx {
    font-size: 4.75rem !important;
  }

  .fs-lg-5x {
    font-size: 5rem !important;
  }

  .fs-lg-5qx {
    font-size: 5.25rem !important;
  }

  .fs-lg-5hx {
    font-size: 5.5rem !important;
  }

  .fs-lg-5tx {
    font-size: 5.75rem !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: flex !important;
  }

  .d-print-inline-flex {
    display: inline-flex !important;
  }

  .d-print-none {
    display: none !important;
  }
}
:root {
  --bs-light-primary:#F1FAFF;
  --bs-active-primary:#0095E8;
  --bs-light-success:#E8FFF3;
  --bs-active-success:#47BE7D;
  --bs-light-info:#F8F5FF;
  --bs-active-info:#5014D0;
  --bs-light-warning:#FFF8DD;
  --bs-active-warning:#F1BC00;
  --bs-light-danger:#FFF5F8;
  --bs-active-danger:#D9214E;
  --bs-light-dark:#EFF2F5;
  --bs-active-dark:#131628;
  --bs-gray-100:#F5F8FA;
  --bs-gray-200:#EFF2F5;
  --bs-gray-300:#E4E6EF;
  --bs-gray-400:#B5B5C3;
  --bs-gray-500:#A1A5B7;
  --bs-gray-600:#7E8299;
  --bs-gray-700:#5E6278;
  --bs-gray-800:#3F4254;
  --bs-gray-900:#181C32;
  --bs-xs:0;
  --bs-sm:576px;
  --bs-md:768px;
  --bs-lg:992px;
  --bs-xl:1200px;
  --bs-xxl:1400px;
  --bs-border-color:#EFF2F5;
  --bs-border-dashed-color:#E4E6EF;
}

.bg-white {
  background-color: #ffffff !important;
  --bg-color: 255, 255, 255 !important;
}
.bg-white.hoverable:hover {
  background-color: #F5F8FA !important;
}

.bg-hover-white {
  cursor: pointer;
}
.bg-hover-white:hover {
  --bg-color: 255, 255, 255;
  background-color: #ffffff !important;
}

.bg-active-white.active {
  --bg-color: 255, 255, 255;
  background-color: #ffffff !important;
}

.bg-state-white {
  cursor: pointer;
}
.bg-state-white.active, .bg-state-white:hover {
  --bg-color: 255, 255, 255;
  background-color: #ffffff !important;
}

.bg-light {
  background-color: #F5F8FA !important;
  --bg-color: 245, 248, 250 !important;
}
.bg-light.hoverable:hover {
  background-color: #EFF2F5 !important;
}

.bg-hover-light {
  cursor: pointer;
}
.bg-hover-light:hover {
  --bg-color: 245, 248, 250;
  background-color: #F5F8FA !important;
}

.bg-active-light.active {
  --bg-color: 245, 248, 250;
  background-color: #F5F8FA !important;
}

.bg-state-light {
  cursor: pointer;
}
.bg-state-light.active, .bg-state-light:hover {
  --bg-color: 245, 248, 250;
  background-color: #F5F8FA !important;
}

.bg-light-primary {
  background-color: #F1FAFF !important;
}
.bg-light-primary.hoverable:hover {
  background-color: #d2efff !important;
}

.bg-primary {
  background-color: #009EF7 !important;
  --bg-color: 0, 158, 247 !important;
}
.bg-primary.hoverable:hover {
  background-color: #0095E8 !important;
}

.bg-hover-light-primary {
  cursor: pointer;
}
.bg-hover-light-primary:hover {
  background-color: #F1FAFF !important;
}

.bg-state-light-primary {
  cursor: pointer;
}
.bg-state-light-primary.active, .bg-state-light-primary:hover {
  background-color: #F1FAFF !important;
}

.bg-hover-primary {
  cursor: pointer;
}
.bg-hover-primary:hover {
  --bg-color: 0, 158, 247;
  background-color: #009EF7 !important;
}

.bg-active-primary.active {
  --bg-color: 0, 158, 247;
  background-color: #009EF7 !important;
}

.bg-state-primary {
  cursor: pointer;
}
.bg-state-primary.active, .bg-state-primary:hover {
  --bg-color: 0, 158, 247;
  background-color: #009EF7 !important;
}

.bg-secondary {
  background-color: #E4E6EF !important;
  --bg-color: 228, 230, 239 !important;
}
.bg-secondary.hoverable:hover {
  background-color: #B5B5C3 !important;
}

.bg-hover-secondary {
  cursor: pointer;
}
.bg-hover-secondary:hover {
  --bg-color: 228, 230, 239;
  background-color: #E4E6EF !important;
}

.bg-active-secondary.active {
  --bg-color: 228, 230, 239;
  background-color: #E4E6EF !important;
}

.bg-state-secondary {
  cursor: pointer;
}
.bg-state-secondary.active, .bg-state-secondary:hover {
  --bg-color: 228, 230, 239;
  background-color: #E4E6EF !important;
}

.bg-light-success {
  background-color: #E8FFF3 !important;
}
.bg-light-success.hoverable:hover {
  background-color: #c9ffe3 !important;
}

.bg-success {
  background-color: #50CD89 !important;
  --bg-color: 80, 205, 137 !important;
}
.bg-success.hoverable:hover {
  background-color: #47BE7D !important;
}

.bg-hover-light-success {
  cursor: pointer;
}
.bg-hover-light-success:hover {
  background-color: #E8FFF3 !important;
}

.bg-state-light-success {
  cursor: pointer;
}
.bg-state-light-success.active, .bg-state-light-success:hover {
  background-color: #E8FFF3 !important;
}

.bg-hover-success {
  cursor: pointer;
}
.bg-hover-success:hover {
  --bg-color: 80, 205, 137;
  background-color: #50CD89 !important;
}

.bg-active-success.active {
  --bg-color: 80, 205, 137;
  background-color: #50CD89 !important;
}

.bg-state-success {
  cursor: pointer;
}
.bg-state-success.active, .bg-state-success:hover {
  --bg-color: 80, 205, 137;
  background-color: #50CD89 !important;
}

.bg-light-info {
  background-color: #F8F5FF !important;
}
.bg-light-info.hoverable:hover {
  background-color: #e3d6ff !important;
}

.bg-info {
  background-color: #7239EA !important;
  --bg-color: 114, 57, 234 !important;
}
.bg-info.hoverable:hover {
  background-color: #5014D0 !important;
}

.bg-hover-light-info {
  cursor: pointer;
}
.bg-hover-light-info:hover {
  background-color: #F8F5FF !important;
}

.bg-state-light-info {
  cursor: pointer;
}
.bg-state-light-info.active, .bg-state-light-info:hover {
  background-color: #F8F5FF !important;
}

.bg-hover-info {
  cursor: pointer;
}
.bg-hover-info:hover {
  --bg-color: 114, 57, 234;
  background-color: #7239EA !important;
}

.bg-active-info.active {
  --bg-color: 114, 57, 234;
  background-color: #7239EA !important;
}

.bg-state-info {
  cursor: pointer;
}
.bg-state-info.active, .bg-state-info:hover {
  --bg-color: 114, 57, 234;
  background-color: #7239EA !important;
}

.bg-light-warning {
  background-color: #FFF8DD !important;
}
.bg-light-warning.hoverable:hover {
  background-color: #fff2be !important;
}

.bg-warning {
  background-color: #FFC700 !important;
  --bg-color: 255, 199, 0 !important;
}
.bg-warning.hoverable:hover {
  background-color: #F1BC00 !important;
}

.bg-hover-light-warning {
  cursor: pointer;
}
.bg-hover-light-warning:hover {
  background-color: #FFF8DD !important;
}

.bg-state-light-warning {
  cursor: pointer;
}
.bg-state-light-warning.active, .bg-state-light-warning:hover {
  background-color: #FFF8DD !important;
}

.bg-hover-warning {
  cursor: pointer;
}
.bg-hover-warning:hover {
  --bg-color: 255, 199, 0;
  background-color: #FFC700 !important;
}

.bg-active-warning.active {
  --bg-color: 255, 199, 0;
  background-color: #FFC700 !important;
}

.bg-state-warning {
  cursor: pointer;
}
.bg-state-warning.active, .bg-state-warning:hover {
  --bg-color: 255, 199, 0;
  background-color: #FFC700 !important;
}

.bg-light-danger {
  background-color: #FFF5F8 !important;
}
.bg-light-danger.hoverable:hover {
  background-color: #ffd6e3 !important;
}

.bg-danger {
  background-color: #F1416C !important;
  --bg-color: 241, 65, 108 !important;
}
.bg-danger.hoverable:hover {
  background-color: #D9214E !important;
}

.bg-hover-light-danger {
  cursor: pointer;
}
.bg-hover-light-danger:hover {
  background-color: #FFF5F8 !important;
}

.bg-state-light-danger {
  cursor: pointer;
}
.bg-state-light-danger.active, .bg-state-light-danger:hover {
  background-color: #FFF5F8 !important;
}

.bg-hover-danger {
  cursor: pointer;
}
.bg-hover-danger:hover {
  --bg-color: 241, 65, 108;
  background-color: #F1416C !important;
}

.bg-active-danger.active {
  --bg-color: 241, 65, 108;
  background-color: #F1416C !important;
}

.bg-state-danger {
  cursor: pointer;
}
.bg-state-danger.active, .bg-state-danger:hover {
  --bg-color: 241, 65, 108;
  background-color: #F1416C !important;
}

.bg-light-dark {
  background-color: #EFF2F5 !important;
}
.bg-light-dark.hoverable:hover {
  background-color: #dce3e9 !important;
}

.bg-dark {
  background-color: #181C32 !important;
  --bg-color: 24, 28, 50 !important;
}
.bg-dark.hoverable:hover {
  background-color: #131628 !important;
}

.bg-hover-light-dark {
  cursor: pointer;
}
.bg-hover-light-dark:hover {
  background-color: #EFF2F5 !important;
}

.bg-state-light-dark {
  cursor: pointer;
}
.bg-state-light-dark.active, .bg-state-light-dark:hover {
  background-color: #EFF2F5 !important;
}

.bg-hover-dark {
  cursor: pointer;
}
.bg-hover-dark:hover {
  --bg-color: 24, 28, 50;
  background-color: #181C32 !important;
}

.bg-active-dark.active {
  --bg-color: 24, 28, 50;
  background-color: #181C32 !important;
}

.bg-state-dark {
  cursor: pointer;
}
.bg-state-dark.active, .bg-state-dark:hover {
  --bg-color: 24, 28, 50;
  background-color: #181C32 !important;
}

.bg-gray-100 {
  background-color: #F5F8FA;
}

.bg-gray-200 {
  background-color: #EFF2F5;
}

.bg-gray-300 {
  background-color: #E4E6EF;
}

.bg-gray-400 {
  background-color: #B5B5C3;
}

.bg-gray-500 {
  background-color: #A1A5B7;
}

.bg-gray-600 {
  background-color: #7E8299;
}

.bg-gray-700 {
  background-color: #5E6278;
}

.bg-gray-800 {
  background-color: #3F4254;
}

.bg-gray-900 {
  background-color: #181C32;
}

.bg-opacity-0 {
  background-color: rgba(var(--bg-color), 0) !important;
}

.bg-hover-opacity-0:hover {
  background-color: rgba(var(--bg-color), 0) !important;
}

.bg-active-opacity-0.active {
  background-color: rgba(var(--bg-color), 0) !important;
}

.bg-state-opacity-0 .active, .bg-state-opacity-0:hover {
  background-color: rgba(var(--bg-color), 0) !important;
}

.bg-opacity-5 {
  background-color: rgba(var(--bg-color), 0.05) !important;
}

.bg-hover-opacity-5:hover {
  background-color: rgba(var(--bg-color), 0.05) !important;
}

.bg-active-opacity-5.active {
  background-color: rgba(var(--bg-color), 0.05) !important;
}

.bg-state-opacity-5 .active, .bg-state-opacity-5:hover {
  background-color: rgba(var(--bg-color), 0.05) !important;
}

.bg-opacity-10 {
  background-color: rgba(var(--bg-color), 0.1) !important;
}

.bg-hover-opacity-10:hover {
  background-color: rgba(var(--bg-color), 0.1) !important;
}

.bg-active-opacity-10.active {
  background-color: rgba(var(--bg-color), 0.1) !important;
}

.bg-state-opacity-10 .active, .bg-state-opacity-10:hover {
  background-color: rgba(var(--bg-color), 0.1) !important;
}

.bg-opacity-15 {
  background-color: rgba(var(--bg-color), 0.15) !important;
}

.bg-hover-opacity-15:hover {
  background-color: rgba(var(--bg-color), 0.15) !important;
}

.bg-active-opacity-15.active {
  background-color: rgba(var(--bg-color), 0.15) !important;
}

.bg-state-opacity-15 .active, .bg-state-opacity-15:hover {
  background-color: rgba(var(--bg-color), 0.15) !important;
}

.bg-opacity-20 {
  background-color: rgba(var(--bg-color), 0.2) !important;
}

.bg-hover-opacity-20:hover {
  background-color: rgba(var(--bg-color), 0.2) !important;
}

.bg-active-opacity-20.active {
  background-color: rgba(var(--bg-color), 0.2) !important;
}

.bg-state-opacity-20 .active, .bg-state-opacity-20:hover {
  background-color: rgba(var(--bg-color), 0.2) !important;
}

.bg-opacity-25 {
  background-color: rgba(var(--bg-color), 0.25) !important;
}

.bg-hover-opacity-25:hover {
  background-color: rgba(var(--bg-color), 0.25) !important;
}

.bg-active-opacity-25.active {
  background-color: rgba(var(--bg-color), 0.25) !important;
}

.bg-state-opacity-25 .active, .bg-state-opacity-25:hover {
  background-color: rgba(var(--bg-color), 0.25) !important;
}

.bg-opacity-50 {
  background-color: rgba(var(--bg-color), 0.5) !important;
}

.bg-hover-opacity-50:hover {
  background-color: rgba(var(--bg-color), 0.5) !important;
}

.bg-active-opacity-50.active {
  background-color: rgba(var(--bg-color), 0.5) !important;
}

.bg-state-opacity-50 .active, .bg-state-opacity-50:hover {
  background-color: rgba(var(--bg-color), 0.5) !important;
}

.bg-opacity-75 {
  background-color: rgba(var(--bg-color), 0.75) !important;
}

.bg-hover-opacity-75:hover {
  background-color: rgba(var(--bg-color), 0.75) !important;
}

.bg-active-opacity-75.active {
  background-color: rgba(var(--bg-color), 0.75) !important;
}

.bg-state-opacity-75 .active, .bg-state-opacity-75:hover {
  background-color: rgba(var(--bg-color), 0.75) !important;
}

.bg-opacity-100 {
  background-color: rgba(var(--bg-color), 1) !important;
}

.bg-hover-opacity-100:hover {
  background-color: rgba(var(--bg-color), 1) !important;
}

.bg-active-opacity-100.active {
  background-color: rgba(var(--bg-color), 1) !important;
}

.bg-state-opacity-100 .active, .bg-state-opacity-100:hover {
  background-color: rgba(var(--bg-color), 1) !important;
}

.bg-black {
  background-color: #000000;
}

.bg-body {
  --bg-color: 255, 255, 255;
  background-color: #ffffff;
}

.bg-lighten {
  background-color: rgba(245, 248, 250, 0.5);
}

.bg-hover-lighten {
  cursor: pointer;
}
.bg-hover-lighten:hover {
  background-color: rgba(245, 248, 250, 0.5);
}

.bg-active-lighten.active {
  background-color: rgba(245, 248, 250, 0.5);
}

.bg-state-lighten {
  cursor: pointer;
}
.bg-state-lighten.active, .bg-state-lighten:hover {
  background-color: rgba(245, 248, 250, 0.5);
}

.hoverable {
  cursor: pointer;
  transition: all 0.2s ease;
}
.hoverable:hover {
  transition: all 0.2s ease;
}

.bgi-no-repeat {
  background-repeat: no-repeat;
}

.bgi-position-y-top {
  background-position-y: top;
}

.bgi-position-y-bottom {
  background-position-y: bottom;
}

.bgi-position-y-center {
  background-position-y: center;
}

.bgi-position-x-start {
  background-position-x: left;
}

.bgi-position-x-end {
  background-position-x: right;
}

.bgi-position-x-center {
  background-position-x: center;
}

.bgi-position-top {
  background-position: 0 top;
}

.bgi-position-bottom {
  background-position: 0 bottom;
}

.bgi-position-center {
  background-position: center;
}

.bgi-size-auto {
  background-size: auto;
}

.bgi-size-cover {
  background-size: cover;
}

.bgi-size-contain {
  background-size: contain;
}

.bgi-attachment-fixed {
  background-attachment: fixed;
}

.bgi-attachment-scroll {
  background-attachment: scroll;
}

@media (min-width: 576px) {
  .bgi-size-sm-auto {
    background-size: auto;
  }

  .bgi-size-sm-cover {
    background-size: cover;
  }

  .bgi-size-sm-contain {
    background-size: contain;
  }

  .bgi-attachment-sm-fixed {
    background-attachment: fixed;
  }

  .bgi-attachment-sm-scroll {
    background-attachment: scroll;
  }
}
@media (min-width: 768px) {
  .bgi-size-md-auto {
    background-size: auto;
  }

  .bgi-size-md-cover {
    background-size: cover;
  }

  .bgi-size-md-contain {
    background-size: contain;
  }

  .bgi-attachment-md-fixed {
    background-attachment: fixed;
  }

  .bgi-attachment-md-scroll {
    background-attachment: scroll;
  }
}
@media (min-width: 992px) {
  .bgi-size-lg-auto {
    background-size: auto;
  }

  .bgi-size-lg-cover {
    background-size: cover;
  }

  .bgi-size-lg-contain {
    background-size: contain;
  }

  .bgi-attachment-lg-fixed {
    background-attachment: fixed;
  }

  .bgi-attachment-lg-scroll {
    background-attachment: scroll;
  }
}
@media (min-width: 1200px) {
  .bgi-size-xl-auto {
    background-size: auto;
  }

  .bgi-size-xl-cover {
    background-size: cover;
  }

  .bgi-size-xl-contain {
    background-size: contain;
  }

  .bgi-attachment-xl-fixed {
    background-attachment: fixed;
  }

  .bgi-attachment-xl-scroll {
    background-attachment: scroll;
  }
}
@media (min-width: 1400px) {
  .bgi-size-xxl-auto {
    background-size: auto;
  }

  .bgi-size-xxl-cover {
    background-size: cover;
  }

  .bgi-size-xxl-contain {
    background-size: contain;
  }

  .bgi-attachment-xxl-fixed {
    background-attachment: fixed;
  }

  .bgi-attachment-xxl-scroll {
    background-attachment: scroll;
  }
}
.border-active:not(.active):not(:active):not(:hover):not(:focus) {
  border-color: transparent !important;
}

.border-hover:not(:hover):not(:focus):not(.active):not(:active) {
  cursor: pointer;
  border-color: transparent !important;
}

.border-gray-100 {
  border-color: #F5F8FA !important;
}

.border-gray-200 {
  border-color: #EFF2F5 !important;
}

.border-gray-300 {
  border-color: #E4E6EF !important;
}

.border-gray-400 {
  border-color: #B5B5C3 !important;
}

.border-gray-500 {
  border-color: #A1A5B7 !important;
}

.border-gray-600 {
  border-color: #7E8299 !important;
}

.border-gray-700 {
  border-color: #5E6278 !important;
}

.border-gray-800 {
  border-color: #3F4254 !important;
}

.border-gray-900 {
  border-color: #181C32 !important;
}

.border-hover-white:hover {
  border-color: #ffffff !important;
}

.border-active-white.active {
  border-color: #ffffff !important;
}

.border-hover-light:hover {
  border-color: #F5F8FA !important;
}

.border-active-light.active {
  border-color: #F5F8FA !important;
}

.border-hover-primary:hover {
  border-color: #009EF7 !important;
}

.border-active-primary.active {
  border-color: #009EF7 !important;
}

.border-hover-secondary:hover {
  border-color: #E4E6EF !important;
}

.border-active-secondary.active {
  border-color: #E4E6EF !important;
}

.border-hover-success:hover {
  border-color: #50CD89 !important;
}

.border-active-success.active {
  border-color: #50CD89 !important;
}

.border-hover-info:hover {
  border-color: #7239EA !important;
}

.border-active-info.active {
  border-color: #7239EA !important;
}

.border-hover-warning:hover {
  border-color: #FFC700 !important;
}

.border-active-warning.active {
  border-color: #FFC700 !important;
}

.border-hover-danger:hover {
  border-color: #F1416C !important;
}

.border-active-danger.active {
  border-color: #F1416C !important;
}

.border-hover-dark:hover {
  border-color: #181C32 !important;
}

.border-active-dark.active {
  border-color: #181C32 !important;
}

.border-hover-transparent:hover {
  border-color: transparent !important;
}

.border-dashed {
  border-style: dashed !important;
  border-color: #E4E6EF;
}

.border-top-dashed {
  border-top-style: dashed !important;
}

.border-bottom-dashed {
  border-bottom-style: dashed !important;
}

.border-start-dashed {
  border-left-style: dashed !important;
}

.border-end-dashed {
  border-right-style: dashed !important;
}

.border-dotted {
  border-style: dotted !important;
}

.border-top-dotted {
  border-top-style: dotted !important;
}

.border-bottom-dotted {
  border-bottom-style: dotted !important;
}

.border-start-dotted {
  border-left-style: dotted !important;
}

.border-end-dotted {
  border-right-style: dotted !important;
}

.border-transparent {
  border-color: transparent !important;
}

.border-body {
  border-color: #ffffff !important;
}

.rounded-top-0 {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.rounded-bottom-0 {
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-start-0 {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

.rounded-end-0 {
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.flex-root {
  flex: 1;
}

.flex-column-auto {
  flex: none;
}

.flex-column-fluid {
  flex: 1 0 auto;
}

.flex-row-auto {
  flex: 0 0 auto;
}

.flex-row-fluid {
  flex: 1 auto;
  min-width: 0;
}

.flex-center {
  justify-content: center;
  align-items: center;
}

.flex-stack {
  justify-content: space-between;
  align-items: center;
}

@media (min-width: 576px) {
  .flex-sm-root {
    flex: 1;
  }

  .flex-sm-column-auto {
    flex: none;
  }

  .flex-sm-column-fluid {
    flex: 1 0 auto;
  }

  .flex-sm-row-auto {
    flex: 0 0 auto;
  }

  .flex-sm-row-fluid {
    flex: 1 auto;
    min-width: 0;
  }

  .flex-sm-center {
    justify-content: center;
    align-items: center;
  }

  .flex-sm-stack {
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .flex-md-root {
    flex: 1;
  }

  .flex-md-column-auto {
    flex: none;
  }

  .flex-md-column-fluid {
    flex: 1 0 auto;
  }

  .flex-md-row-auto {
    flex: 0 0 auto;
  }

  .flex-md-row-fluid {
    flex: 1 auto;
    min-width: 0;
  }

  .flex-md-center {
    justify-content: center;
    align-items: center;
  }

  .flex-md-stack {
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 992px) {
  .flex-lg-root {
    flex: 1;
  }

  .flex-lg-column-auto {
    flex: none;
  }

  .flex-lg-column-fluid {
    flex: 1 0 auto;
  }

  .flex-lg-row-auto {
    flex: 0 0 auto;
  }

  .flex-lg-row-fluid {
    flex: 1 auto;
    min-width: 0;
  }

  .flex-lg-center {
    justify-content: center;
    align-items: center;
  }

  .flex-lg-stack {
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1200px) {
  .flex-xl-root {
    flex: 1;
  }

  .flex-xl-column-auto {
    flex: none;
  }

  .flex-xl-column-fluid {
    flex: 1 0 auto;
  }

  .flex-xl-row-auto {
    flex: 0 0 auto;
  }

  .flex-xl-row-fluid {
    flex: 1 auto;
    min-width: 0;
  }

  .flex-xl-center {
    justify-content: center;
    align-items: center;
  }

  .flex-xl-stack {
    justify-content: space-between;
    align-items: center;
  }
}
@media (min-width: 1400px) {
  .flex-xxl-root {
    flex: 1;
  }

  .flex-xxl-column-auto {
    flex: none;
  }

  .flex-xxl-column-fluid {
    flex: 1 0 auto;
  }

  .flex-xxl-row-auto {
    flex: 0 0 auto;
  }

  .flex-xxl-row-fluid {
    flex: 1 auto;
    min-width: 0;
  }

  .flex-xxl-center {
    justify-content: center;
    align-items: center;
  }

  .flex-xxl-stack {
    justify-content: space-between;
    align-items: center;
  }
}
.flex-equal {
  flex-grow: 1;
  flex-basis: 0;
  flex-shrink: 0;
}

.shadow-xs {
  box-shadow: 0 0.1rem 0.75rem 0.25rem rgba(0, 0, 0, 0.05);
}

.text-white {
  color: #ffffff !important;
}

.text-inverse-white {
  color: #7E8299 !important;
}

.text-hover-white {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-white i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-white:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #ffffff !important;
}
.text-hover-white:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #ffffff !important;
}
.text-hover-white:hover .svg-icon {
  color: #ffffff !important;
}

.text-hover-inverse-white {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-white i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-white:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #7E8299 !important;
}
.text-hover-inverse-white:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #7E8299 !important;
}
.text-hover-inverse-white:hover .svg-icon {
  color: #7E8299 !important;
}

.text-active-white {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-white i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-white.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #ffffff !important;
}
.text-active-white.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #ffffff !important;
}
.text-active-white.active .svg-icon {
  color: #ffffff !important;
}

.text-active-inverse-white {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-white i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-white.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #7E8299 !important;
}
.text-active-inverse-white.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #7E8299 !important;
}
.text-active-inverse-white.active .svg-icon {
  color: #7E8299 !important;
}

.text-primary {
  color: #009EF7 !important;
}

.text-inverse-primary {
  color: #FFFFFF !important;
}

.text-light-primary {
  color: #F1FAFF !important;
}

.text-hover-primary {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-primary i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-primary:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7 !important;
}
.text-hover-primary:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7 !important;
}
.text-hover-primary:hover .svg-icon {
  color: #009EF7 !important;
}

.text-hover-inverse-primary {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-primary i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-primary:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-hover-inverse-primary:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-hover-inverse-primary:hover .svg-icon {
  color: #FFFFFF !important;
}

.text-active-primary {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-primary i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-primary.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7 !important;
}
.text-active-primary.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7 !important;
}
.text-active-primary.active .svg-icon {
  color: #009EF7 !important;
}

.text-active-inverse-primary {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-primary i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-primary.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-active-inverse-primary.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-active-inverse-primary.active .svg-icon {
  color: #FFFFFF !important;
}

.text-secondary {
  color: #E4E6EF !important;
}

.text-inverse-secondary {
  color: #3F4254 !important;
}

.text-hover-secondary {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-secondary i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-secondary:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #E4E6EF !important;
}
.text-hover-secondary:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #E4E6EF !important;
}
.text-hover-secondary:hover .svg-icon {
  color: #E4E6EF !important;
}

.text-hover-inverse-secondary {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-secondary i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-secondary:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #3F4254 !important;
}
.text-hover-inverse-secondary:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #3F4254 !important;
}
.text-hover-inverse-secondary:hover .svg-icon {
  color: #3F4254 !important;
}

.text-active-secondary {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-secondary i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-secondary.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #E4E6EF !important;
}
.text-active-secondary.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #E4E6EF !important;
}
.text-active-secondary.active .svg-icon {
  color: #E4E6EF !important;
}

.text-active-inverse-secondary {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-secondary i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-secondary.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #3F4254 !important;
}
.text-active-inverse-secondary.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #3F4254 !important;
}
.text-active-inverse-secondary.active .svg-icon {
  color: #3F4254 !important;
}

.text-light {
  color: #F5F8FA !important;
}

.text-inverse-light {
  color: #7E8299 !important;
}

.text-hover-light {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-light i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-light:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #F5F8FA !important;
}
.text-hover-light:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #F5F8FA !important;
}
.text-hover-light:hover .svg-icon {
  color: #F5F8FA !important;
}

.text-hover-inverse-light {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-light i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-light:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #7E8299 !important;
}
.text-hover-inverse-light:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #7E8299 !important;
}
.text-hover-inverse-light:hover .svg-icon {
  color: #7E8299 !important;
}

.text-active-light {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-light i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-light.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #F5F8FA !important;
}
.text-active-light.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #F5F8FA !important;
}
.text-active-light.active .svg-icon {
  color: #F5F8FA !important;
}

.text-active-inverse-light {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-light i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-light.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #7E8299 !important;
}
.text-active-inverse-light.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #7E8299 !important;
}
.text-active-inverse-light.active .svg-icon {
  color: #7E8299 !important;
}

.text-success {
  color: #50CD89 !important;
}

.text-inverse-success {
  color: #FFFFFF !important;
}

.text-light-success {
  color: #E8FFF3 !important;
}

.text-hover-success {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-success i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-success:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #50CD89 !important;
}
.text-hover-success:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #50CD89 !important;
}
.text-hover-success:hover .svg-icon {
  color: #50CD89 !important;
}

.text-hover-inverse-success {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-success i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-success:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-hover-inverse-success:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-hover-inverse-success:hover .svg-icon {
  color: #FFFFFF !important;
}

.text-active-success {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-success i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-success.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #50CD89 !important;
}
.text-active-success.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #50CD89 !important;
}
.text-active-success.active .svg-icon {
  color: #50CD89 !important;
}

.text-active-inverse-success {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-success i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-success.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-active-inverse-success.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-active-inverse-success.active .svg-icon {
  color: #FFFFFF !important;
}

.text-info {
  color: #7239EA !important;
}

.text-inverse-info {
  color: #FFFFFF !important;
}

.text-light-info {
  color: #F8F5FF !important;
}

.text-hover-info {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-info i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-info:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #7239EA !important;
}
.text-hover-info:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #7239EA !important;
}
.text-hover-info:hover .svg-icon {
  color: #7239EA !important;
}

.text-hover-inverse-info {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-info i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-info:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-hover-inverse-info:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-hover-inverse-info:hover .svg-icon {
  color: #FFFFFF !important;
}

.text-active-info {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-info i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-info.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #7239EA !important;
}
.text-active-info.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #7239EA !important;
}
.text-active-info.active .svg-icon {
  color: #7239EA !important;
}

.text-active-inverse-info {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-info i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-info.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-active-inverse-info.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-active-inverse-info.active .svg-icon {
  color: #FFFFFF !important;
}

.text-warning {
  color: #FFC700 !important;
}

.text-inverse-warning {
  color: #FFFFFF !important;
}

.text-light-warning {
  color: #FFF8DD !important;
}

.text-hover-warning {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-warning i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-warning:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFC700 !important;
}
.text-hover-warning:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFC700 !important;
}
.text-hover-warning:hover .svg-icon {
  color: #FFC700 !important;
}

.text-hover-inverse-warning {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-warning i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-warning:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-hover-inverse-warning:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-hover-inverse-warning:hover .svg-icon {
  color: #FFFFFF !important;
}

.text-active-warning {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-warning i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-warning.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFC700 !important;
}
.text-active-warning.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFC700 !important;
}
.text-active-warning.active .svg-icon {
  color: #FFC700 !important;
}

.text-active-inverse-warning {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-warning i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-warning.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-active-inverse-warning.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-active-inverse-warning.active .svg-icon {
  color: #FFFFFF !important;
}

.text-danger {
  color: #F1416C !important;
}

.text-inverse-danger {
  color: #FFFFFF !important;
}

.text-light-danger {
  color: #FFF5F8 !important;
}

.text-hover-danger {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-danger i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-danger:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #F1416C !important;
}
.text-hover-danger:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #F1416C !important;
}
.text-hover-danger:hover .svg-icon {
  color: #F1416C !important;
}

.text-hover-inverse-danger {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-danger i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-danger:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-hover-inverse-danger:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-hover-inverse-danger:hover .svg-icon {
  color: #FFFFFF !important;
}

.text-active-danger {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-danger i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-danger.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #F1416C !important;
}
.text-active-danger.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #F1416C !important;
}
.text-active-danger.active .svg-icon {
  color: #F1416C !important;
}

.text-active-inverse-danger {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-danger i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-danger.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-active-inverse-danger.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #FFFFFF !important;
}
.text-active-inverse-danger.active .svg-icon {
  color: #FFFFFF !important;
}

.text-dark {
  color: #181C32 !important;
}

.text-inverse-dark {
  color: #ffffff !important;
}

.text-light-dark {
  color: #EFF2F5 !important;
}

.text-hover-dark {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-dark i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-dark:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #181C32 !important;
}
.text-hover-dark:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #181C32 !important;
}
.text-hover-dark:hover .svg-icon {
  color: #181C32 !important;
}

.text-hover-inverse-dark {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-dark i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-inverse-dark:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #ffffff !important;
}
.text-hover-inverse-dark:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #ffffff !important;
}
.text-hover-inverse-dark:hover .svg-icon {
  color: #ffffff !important;
}

.text-active-dark {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-dark i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-dark.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #181C32 !important;
}
.text-active-dark.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #181C32 !important;
}
.text-active-dark.active .svg-icon {
  color: #181C32 !important;
}

.text-active-inverse-dark {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-dark i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-inverse-dark.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #ffffff !important;
}
.text-active-inverse-dark.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #ffffff !important;
}
.text-active-inverse-dark.active .svg-icon {
  color: #ffffff !important;
}

.text-muted {
  color: #A1A5B7 !important;
}

.text-hover-muted {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-muted i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-muted:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #A1A5B7 !important;
}
.text-hover-muted:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #A1A5B7 !important;
}
.text-hover-muted:hover .svg-icon {
  color: #A1A5B7 !important;
}

.text-active-muted {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-muted i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-muted.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #A1A5B7 !important;
}
.text-active-muted.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #A1A5B7 !important;
}
.text-active-muted.active .svg-icon {
  color: #A1A5B7 !important;
}

.text-gray-100 {
  color: #F5F8FA !important;
}

.text-hover-gray-100 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-100 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-100:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #F5F8FA !important;
}
.text-hover-gray-100:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #F5F8FA !important;
}
.text-hover-gray-100:hover .svg-icon {
  color: #F5F8FA !important;
}

.text-active-gray-100 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-100 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-100.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #F5F8FA !important;
}
.text-active-gray-100.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #F5F8FA !important;
}
.text-active-gray-100.active .svg-icon {
  color: #F5F8FA !important;
}

.text-gray-200 {
  color: #EFF2F5 !important;
}

.text-hover-gray-200 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-200 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-200:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #EFF2F5 !important;
}
.text-hover-gray-200:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #EFF2F5 !important;
}
.text-hover-gray-200:hover .svg-icon {
  color: #EFF2F5 !important;
}

.text-active-gray-200 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-200 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-200.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #EFF2F5 !important;
}
.text-active-gray-200.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #EFF2F5 !important;
}
.text-active-gray-200.active .svg-icon {
  color: #EFF2F5 !important;
}

.text-gray-300 {
  color: #E4E6EF !important;
}

.text-hover-gray-300 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-300 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-300:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #E4E6EF !important;
}
.text-hover-gray-300:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #E4E6EF !important;
}
.text-hover-gray-300:hover .svg-icon {
  color: #E4E6EF !important;
}

.text-active-gray-300 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-300 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-300.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #E4E6EF !important;
}
.text-active-gray-300.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #E4E6EF !important;
}
.text-active-gray-300.active .svg-icon {
  color: #E4E6EF !important;
}

.text-gray-400 {
  color: #B5B5C3 !important;
}

.text-hover-gray-400 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-400 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-400:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #B5B5C3 !important;
}
.text-hover-gray-400:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #B5B5C3 !important;
}
.text-hover-gray-400:hover .svg-icon {
  color: #B5B5C3 !important;
}

.text-active-gray-400 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-400 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-400.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #B5B5C3 !important;
}
.text-active-gray-400.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #B5B5C3 !important;
}
.text-active-gray-400.active .svg-icon {
  color: #B5B5C3 !important;
}

.text-gray-500 {
  color: #A1A5B7 !important;
}

.text-hover-gray-500 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-500 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-500:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #A1A5B7 !important;
}
.text-hover-gray-500:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #A1A5B7 !important;
}
.text-hover-gray-500:hover .svg-icon {
  color: #A1A5B7 !important;
}

.text-active-gray-500 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-500 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-500.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #A1A5B7 !important;
}
.text-active-gray-500.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #A1A5B7 !important;
}
.text-active-gray-500.active .svg-icon {
  color: #A1A5B7 !important;
}

.text-gray-600 {
  color: #7E8299 !important;
}

.text-hover-gray-600 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-600 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-600:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #7E8299 !important;
}
.text-hover-gray-600:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #7E8299 !important;
}
.text-hover-gray-600:hover .svg-icon {
  color: #7E8299 !important;
}

.text-active-gray-600 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-600 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-600.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #7E8299 !important;
}
.text-active-gray-600.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #7E8299 !important;
}
.text-active-gray-600.active .svg-icon {
  color: #7E8299 !important;
}

.text-gray-700 {
  color: #5E6278 !important;
}

.text-hover-gray-700 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-700 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-700:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #5E6278 !important;
}
.text-hover-gray-700:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #5E6278 !important;
}
.text-hover-gray-700:hover .svg-icon {
  color: #5E6278 !important;
}

.text-active-gray-700 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-700 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-700.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #5E6278 !important;
}
.text-active-gray-700.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #5E6278 !important;
}
.text-active-gray-700.active .svg-icon {
  color: #5E6278 !important;
}

.text-gray-800 {
  color: #3F4254 !important;
}

.text-hover-gray-800 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-800 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-800:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #3F4254 !important;
}
.text-hover-gray-800:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #3F4254 !important;
}
.text-hover-gray-800:hover .svg-icon {
  color: #3F4254 !important;
}

.text-active-gray-800 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-800 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-800.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #3F4254 !important;
}
.text-active-gray-800.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #3F4254 !important;
}
.text-active-gray-800.active .svg-icon {
  color: #3F4254 !important;
}

.text-gray-900 {
  color: #181C32 !important;
}

.text-hover-gray-900 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-900 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-hover-gray-900:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #181C32 !important;
}
.text-hover-gray-900:hover i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #181C32 !important;
}
.text-hover-gray-900:hover .svg-icon {
  color: #181C32 !important;
}

.text-active-gray-900 {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-900 i {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.text-active-gray-900.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #181C32 !important;
}
.text-active-gray-900.active i {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #181C32 !important;
}
.text-active-gray-900.active .svg-icon {
  color: #181C32 !important;
}

.fw-boldest {
  font-weight: 700 !important;
}

.text-transparent {
  color: transparent;
}

.cursor-pointer {
  cursor: pointer;
}

.cursor-default {
  cursor: default;
}

.cursor-move {
  cursor: move;
}

i {
  line-height: 1;
  font-size: 1rem;
  color: #A1A5B7;
}

a {
  transition: color 0.2s ease, background-color 0.2s ease;
}
a:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
}

.opacity-active-0.active {
  opacity: 0 !important;
}

.opacity-state-0:hover, .opacity-state-0.active {
  opacity: 0 !important;
}

.opacity-active-5.active {
  opacity: 0.05 !important;
}

.opacity-state-5:hover, .opacity-state-5.active {
  opacity: 0.05 !important;
}

.opacity-active-10.active {
  opacity: 0.1 !important;
}

.opacity-state-10:hover, .opacity-state-10.active {
  opacity: 0.1 !important;
}

.opacity-active-15.active {
  opacity: 0.15 !important;
}

.opacity-state-15:hover, .opacity-state-15.active {
  opacity: 0.15 !important;
}

.opacity-active-20.active {
  opacity: 0.2 !important;
}

.opacity-state-20:hover, .opacity-state-20.active {
  opacity: 0.2 !important;
}

.opacity-active-25.active {
  opacity: 0.25 !important;
}

.opacity-state-25:hover, .opacity-state-25.active {
  opacity: 0.25 !important;
}

.opacity-active-50.active {
  opacity: 0.5 !important;
}

.opacity-state-50:hover, .opacity-state-50.active {
  opacity: 0.5 !important;
}

.opacity-active-75.active {
  opacity: 0.75 !important;
}

.opacity-state-75:hover, .opacity-state-75.active {
  opacity: 0.75 !important;
}

.opacity-active-100.active {
  opacity: 1 !important;
}

.opacity-state-100:hover, .opacity-state-100.active {
  opacity: 1 !important;
}

.transform-90 {
  transform: rotate(90deg);
  transform-origin: right top;
}

.animation {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes animationSlideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animation-slide-in-down {
  animation-name: animationSlideInDown;
}

@keyframes animationSlideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animation-slide-in-up {
  animation-name: animationSlideInUp;
}

@keyframes animationFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animation-fade-in {
  animation-name: animationFadeIn;
}

@keyframes animationFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animation-fade-out {
  animation-name: animationFadeOut;
}

.animation-blink {
  animation: animationBlink 1s steps(5, start) infinite;
}

@keyframes animationBlink {
  to {
    visibility: hidden;
  }
}
.nav-line-tabs {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #EFF2F5;
}
.nav-line-tabs .nav-item {
  margin-bottom: -1px;
}
.nav-line-tabs .nav-item .nav-link {
  color: #A1A5B7;
  border: 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, background-color 0.2s ease;
  padding: 0.5rem 0;
  margin: 0 1rem;
}
.nav-line-tabs .nav-item:first-child .nav-link {
  margin-left: 0;
}
.nav-line-tabs .nav-item:last-child .nav-link {
  margin-right: 0;
}
.nav-line-tabs .nav-item .nav-link.active,
.nav-line-tabs .nav-item.show .nav-link,
.nav-line-tabs .nav-item .nav-link:hover:not(.disabled) {
  background-color: transparent;
  border: 0;
  border-bottom: 1px solid #009EF7;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav-line-tabs.nav-line-tabs-2x {
  border-bottom-width: 2px;
}
.nav-line-tabs.nav-line-tabs-2x .nav-item {
  margin-bottom: -2px;
}
.nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link {
  border-bottom-width: 2px;
}
.nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link.active,
.nav-line-tabs.nav-line-tabs-2x .nav-item.show .nav-link,
.nav-line-tabs.nav-line-tabs-2x .nav-item .nav-link:hover:not(.disabled) {
  border-bottom-width: 2px;
}

.nav-pills .nav-item {
  margin-right: 0.5rem;
}
.nav-pills .nav-item:last-child {
  margin-right: 0;
}

.nav-stretch {
  align-items: stretch;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.nav-stretch .nav-item {
  display: flex;
  align-items: stretch;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
.nav-stretch .nav-link {
  display: flex;
  align-items: center;
}

.nav-group {
  padding: 0.35rem;
  border-radius: 0.475rem;
  background-color: #F5F8FA;
}
.nav-group.nav-group-outline {
  background-color: transparent;
  border: 1px solid #EFF2F5;
}
.nav-group.nav-group-fluid {
  display: flex;
}
.nav-group.nav-group-fluid > label,
.nav-group.nav-group-fluid > .btn {
  position: relative;
  flex-shrink: 0;
  flex-grow: 1;
  flex-basis: 0;
}
.nav-group.nav-group-fluid > label {
  margin-right: 0.1rem;
}
.nav-group.nav-group-fluid > label > .btn {
  width: 100%;
}
.nav-group.nav-group-fluid > label:last-child {
  margin-right: 0;
}

.nav.nav-pills.nav-pills-custom .show > .nav-link,
.nav.nav-pills.nav-pills-custom .nav-link {
  border: 1px dashed #E4E6EF;
  border-radius: 12px;
}
.nav.nav-pills.nav-pills-custom .show > .nav-link .nav-icon img,
.nav.nav-pills.nav-pills-custom .nav-link .nav-icon img {
  width: 30px;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav.nav-pills.nav-pills-custom .show > .nav-link .nav-icon img.default,
.nav.nav-pills.nav-pills-custom .nav-link .nav-icon img.default {
  display: inline-block;
}
.nav.nav-pills.nav-pills-custom .show > .nav-link .nav-icon img.active,
.nav.nav-pills.nav-pills-custom .nav-link .nav-icon img.active {
  display: none;
}
.nav.nav-pills.nav-pills-custom .show > .nav-link.active,
.nav.nav-pills.nav-pills-custom .nav-link.active {
  background-color: transparent;
  border: 1px solid #E4E6EF;
  transition-duration: 1ms;
  position: relative;
}
.nav.nav-pills.nav-pills-custom .show > .nav-link.active .nav-text,
.nav.nav-pills.nav-pills-custom .nav-link.active .nav-text {
  color: #3F4254 !important;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.nav.nav-pills.nav-pills-custom .show > .nav-link.active .bullet-custom,
.nav.nav-pills.nav-pills-custom .nav-link.active .bullet-custom {
  display: block;
}
.nav.nav-pills.nav-pills-custom .show > .nav-link .bullet-custom,
.nav.nav-pills.nav-pills-custom .nav-link .bullet-custom {
  display: none;
}
.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:not(:active) span:nth-child(1) {
  color: #B5B5C3;
}
.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:not(:active) span:nth-child(2) {
  color: #3F4254;
}
.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:hover span:nth-child(1) {
  color: white !important;
}
.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link:hover span:nth-child(2) {
  color: white !important;
}
.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link.active span:nth-child(1) {
  color: white !important;
}
.nav.nav-pills.nav-pills-custom.nav-pills-active-custom .nav-item .nav-link.active span:nth-child(2) {
  color: white !important;
}

.pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0;
}
.pagination.pagination-circle .page-link {
  border-radius: 50%;
}
.pagination.pagination-outline .page-link {
  border: 1px solid #EFF2F5;
}
.pagination.pagination-outline .page-item:hover .page-link, .pagination.pagination-outline .page-item.active .page-link {
  border-color: #F1FAFF;
}

.page-item {
  margin-right: 0.5rem;
  /*rtl:options:{"autoRename":false}*/
  /*rtl:end:ignore*/
}
.page-item:last-child {
  margin-right: 0;
}
.page-item .page-link {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 0.475rem;
  height: 2.5rem;
  min-width: 2.5rem;
  font-weight: 500;
  font-size: 1.075rem;
  /*rtl:options:{"autoRename":false}*/
  /*rtl:end:ignore*/
  /*rtl:options:{"autoRename":false}*/
}
.page-item .page-link i {
  font-size: 0.85rem;
}
.page-item .page-link .previous,
.page-item .page-link .next {
  display: block;
  height: 0.875rem;
  width: 0.875rem;
  /*rtl:raw:transform: rotateZ(-180deg);*/
}
.page-item .page-link .previous {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%235E6278'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
}
.page-item .page-link .next {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%235E6278'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
}
.page-item.next .page-link, .page-item.previous .page-link {
  background-color: #ffffff;
  color: #5E6278;
}
.page-item.next .page-link i, .page-item.previous .page-link i {
  color: #5E6278;
}
.page-item:focus .page-link {
  color: #009EF7;
  /*rtl:options:{"autoRename":false}*/
}
.page-item:focus .page-link i {
  color: #009EF7;
}
.page-item:focus .page-link .previous {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
}
.page-item:focus .page-link .next {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
}
.page-item:hover:not(.offset) .page-link {
  color: #009EF7;
  /*rtl:options:{"autoRename":false}*/
}
.page-item:hover:not(.offset) .page-link i {
  color: #009EF7;
}
.page-item:hover:not(.offset) .page-link .previous {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
}
.page-item:hover:not(.offset) .page-link .next {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
}
.page-item.active .page-link {
  color: #FFFFFF;
  /*rtl:options:{"autoRename":false}*/
}
.page-item.active .page-link i {
  color: #FFFFFF;
}
.page-item.active .page-link .previous {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
}
.page-item.active .page-link .next {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
}
.page-item.disabled .page-link {
  color: #B5B5C3;
  /*rtl:options:{"autoRename":false}*/
}
.page-item.disabled .page-link i {
  color: #B5B5C3;
}
.page-item.disabled .page-link .previous {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23B5B5C3'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
}
.page-item.disabled .page-link .next {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23B5B5C3'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .page-item {
    margin-right: 0.25rem;
  }
  .page-item:last-child {
    margin-right: 0;
  }
}
.separator {
  display: block;
  height: 0;
  border-bottom: 1px solid #EFF2F5;
}
.separator.separator-dotted {
  border-bottom-style: dotted;
  border-bottom-color: #E4E6EF;
}
.separator.separator-dashed {
  border-bottom-style: dashed;
  border-bottom-color: #E4E6EF;
}
.separator.separator-content {
  display: flex;
  align-items: center;
  border-bottom: 0;
  text-align: center;
}
.separator.separator-content::before, .separator.separator-content::after {
  content: " ";
  width: 50%;
  border-bottom: 1px solid #EFF2F5;
}
.separator.separator-content::before {
  margin-right: 1.25rem;
}
.separator.separator-content::after {
  margin-left: 1.25rem;
}
.separator.separator-content.separator-dotted::before, .separator.separator-content.separator-dotted::after {
  border-bottom-style: dotted;
  border-bottom-color: #E4E6EF;
}
.separator.separator-content.separator-dashed::before, .separator.separator-content.separator-dashed::after {
  border-bottom-style: dashed;
  border-bottom-color: #E4E6EF;
}
.separator.separator-content.border-white::before, .separator.separator-content.border-white::after {
  border-color: #ffffff !important;
}
.separator.separator-content.border-light::before, .separator.separator-content.border-light::after {
  border-color: #F5F8FA !important;
}
.separator.separator-content.border-primary::before, .separator.separator-content.border-primary::after {
  border-color: #009EF7 !important;
}
.separator.separator-content.border-secondary::before, .separator.separator-content.border-secondary::after {
  border-color: #E4E6EF !important;
}
.separator.separator-content.border-success::before, .separator.separator-content.border-success::after {
  border-color: #50CD89 !important;
}
.separator.separator-content.border-info::before, .separator.separator-content.border-info::after {
  border-color: #7239EA !important;
}
.separator.separator-content.border-warning::before, .separator.separator-content.border-warning::after {
  border-color: #FFC700 !important;
}
.separator.separator-content.border-danger::before, .separator.separator-content.border-danger::after {
  border-color: #F1416C !important;
}
.separator.separator-content.border-dark::before, .separator.separator-content.border-dark::after {
  border-color: #181C32 !important;
}

.carousel.carousel-custom .carousel-indicators {
  align-items: center;
  position: static;
  z-index: auto;
  margin: 0;
  padding: 0;
  list-style: none;
}
.carousel.carousel-custom .carousel-indicators li {
  transform: none;
  opacity: 1;
}
.carousel.carousel-custom .carousel-indicators li.active {
  transform: none;
  opacity: 1;
}
.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li {
  border-radius: 0;
  background-color: transparent;
  height: 13px;
  width: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li:after {
  display: inline-block;
  content: " ";
  border-radius: 50%;
  transition: all 0.3s ease;
  background-color: #EFF2F5;
  height: 9px;
  width: 9px;
}
.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li.active {
  background-color: transparent;
}
.carousel.carousel-custom .carousel-indicators.carousel-indicators-dots li.active:after {
  transition: all 0.3s ease;
  height: 13px;
  width: 13px;
  background-color: #B5B5C3;
}
.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li {
  transition: all 0.3s ease;
  background-color: transparent;
  border-radius: 6px;
  height: 6px;
  width: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li:after {
  display: inline-block;
  content: " ";
  transition: all 0.3s ease;
  background-color: #B5B5C3;
  border-radius: 6px;
  height: 6px;
  width: 6px;
}
.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li.active {
  transition: all 0.3s ease;
  background-color: transparent;
  height: 6px;
  width: 16px;
}
.carousel.carousel-custom .carousel-indicators.carousel-indicators-bullet li.active:after {
  transition: all 0.3s ease;
  height: 6px;
  width: 16px;
  background-color: #7E8299;
}
.carousel.carousel-custom .carousel-indicators-active-white li.active:after {
  background-color: #ffffff !important;
}
.carousel.carousel-custom .carousel-indicators-active-light li.active:after {
  background-color: #F5F8FA !important;
}
.carousel.carousel-custom .carousel-indicators-active-primary li.active:after {
  background-color: #009EF7 !important;
}
.carousel.carousel-custom .carousel-indicators-active-secondary li.active:after {
  background-color: #E4E6EF !important;
}
.carousel.carousel-custom .carousel-indicators-active-success li.active:after {
  background-color: #50CD89 !important;
}
.carousel.carousel-custom .carousel-indicators-active-info li.active:after {
  background-color: #7239EA !important;
}
.carousel.carousel-custom .carousel-indicators-active-warning li.active:after {
  background-color: #FFC700 !important;
}
.carousel.carousel-custom .carousel-indicators-active-danger li.active:after {
  background-color: #F1416C !important;
}
.carousel.carousel-custom .carousel-indicators-active-dark li.active:after {
  background-color: #181C32 !important;
}
.carousel.carousel-custom.carousel-stretch {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.carousel.carousel-custom.carousel-stretch .carousel-inner {
  flex-grow: 1;
}
.carousel.carousel-custom.carousel-stretch .carousel-item {
  height: 100%;
}
.carousel.carousel-custom.carousel-stretch .carousel-wrapper {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.menu-group {
  display: flex;
}

.menu,
.menu-wrapper {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-inner {
  padding: 0;
  margin: 0;
  list-style: none;
}

.menu-sub {
  display: none;
  padding: 0;
  margin: 0;
  list-style: none;
  flex-direction: column;
}

.menu-item {
  display: block;
  padding: 0;
}
.menu-item .menu-link {
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 0;
  flex: 0 0 100%;
  padding: 0.65rem 1rem;
  transition: none;
  outline: none !important;
}
.menu-item .menu-link .menu-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  margin-right: 0.5rem;
}
.menu-item .menu-link .menu-icon .svg-icon {
  line-height: 1;
}
.menu-item .menu-link .menu-bullet {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  margin-right: 0.5rem;
}
.menu-item .menu-link .menu-title {
  display: flex;
  align-items: center;
  flex-grow: 1;
}
.menu-item .menu-link .menu-badge {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 0.5rem;
}
.menu-item .menu-link .menu-arrow {
  display: flex;
  align-items: stretch;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  margin-left: 0.5rem;
  width: 0.8rem;
  height: 0.8rem;
}
.menu-item .menu-link .menu-arrow:after {
  display: block;
  width: 100%;
  content: " ";
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}
.menu-item .menu-content {
  padding: 0.65rem 1rem;
}

.menu-item.show .menu-link .menu-arrow:after {
  backface-visibility: hidden;
  transition: transform 0.3s ease;
}

.menu-center {
  justify-content: center;
}

.menu-item.menu-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, .menu-item.menu-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
  /*rtl:ignore*/
  transform: rotateZ(90deg);
  transition: transform 0.3s ease;
}
[direction=rtl] .menu-item.menu-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, [direction=rtl] .menu-item.menu-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
  /*rtl:ignore*/
  transform: rotateZ(-90deg);
}

.menu-sub-dropdown {
  display: none;
  border-radius: 0.475rem;
  background-color: #ffffff;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  z-index: 107;
}
.show.menu-dropdown > .menu-sub-dropdown, .menu-sub-dropdown.menu.show, .menu-sub-dropdown.show[data-popper-placement] {
  display: flex;
  animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-up 0.3s ease 1;
}
.show.menu-dropdown > .menu-sub-dropdown[data-popper-placement=top], .show.menu-dropdown > .menu-sub-dropdown[data-popper-placement=top-start], .show.menu-dropdown > .menu-sub-dropdown[data-popper-placement=top-end], .menu-sub-dropdown.menu.show[data-popper-placement=top], .menu-sub-dropdown.menu.show[data-popper-placement=top-start], .menu-sub-dropdown.menu.show[data-popper-placement=top-end], .menu-sub-dropdown.show[data-popper-placement][data-popper-placement=top], .menu-sub-dropdown.show[data-popper-placement][data-popper-placement=top-start], .menu-sub-dropdown.show[data-popper-placement][data-popper-placement=top-end] {
  animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-down 0.3s ease 1;
}

.menu-sub-accordion {
  display: none;
}
.show:not(.menu-dropdown) > .menu-sub-accordion, .menu-sub-accordion.show {
  display: flex;
}

.menu-inline {
  display: flex;
}

.menu-fit > .menu-item > .menu-content,
.menu-fit > .menu-item > .menu-link {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.menu-column {
  flex-direction: column;
  width: 100%;
}

.menu-row {
  flex-direction: row;
}
.menu-row > .menu-item {
  display: flex;
  align-items: center;
}
.menu-row > .menu-item > .menu-link .menu-arrow:after {
  /*rtl:ignore*/
  transform: rotateZ(90deg);
  transition: transform 0.3s ease;
}
[direction=rtl] .menu-row > .menu-item > .menu-link .menu-arrow:after {
  /*rtl:ignore*/
  transform: rotateZ(-90deg);
}

.menu-rounded .menu-link {
  border-radius: 0.475rem;
}

.menu-pill .menu-link {
  border-radius: 50px;
}

.menu-rounded-0 .menu-link {
  border-radius: 0 !important;
}

@media (min-width: 576px) {
  .menu-item.menu-sm-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, .menu-item.menu-sm-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-item.menu-sm-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, [direction=rtl] .menu-item.menu-sm-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-sub-sm-dropdown {
    display: none;
    border-radius: 0.475rem;
    background-color: #ffffff;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    z-index: 107;
  }
  .show.menu-dropdown > .menu-sub-sm-dropdown, .menu-sub-sm-dropdown.menu.show, .menu-sub-sm-dropdown.show[data-popper-placement] {
    display: flex;
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-up 0.3s ease 1;
  }
  .show.menu-dropdown > .menu-sub-sm-dropdown[data-popper-placement=top], .show.menu-dropdown > .menu-sub-sm-dropdown[data-popper-placement=top-start], .show.menu-dropdown > .menu-sub-sm-dropdown[data-popper-placement=top-end], .menu-sub-sm-dropdown.menu.show[data-popper-placement=top], .menu-sub-sm-dropdown.menu.show[data-popper-placement=top-start], .menu-sub-sm-dropdown.menu.show[data-popper-placement=top-end], .menu-sub-sm-dropdown.show[data-popper-placement][data-popper-placement=top], .menu-sub-sm-dropdown.show[data-popper-placement][data-popper-placement=top-start], .menu-sub-sm-dropdown.show[data-popper-placement][data-popper-placement=top-end] {
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-down 0.3s ease 1;
  }

  .menu-sub-sm-accordion {
    display: none;
  }
  .show:not(.menu-dropdown) > .menu-sub-sm-accordion, .menu-sub-sm-accordion.show {
    display: flex;
  }

  .menu-sm-inline {
    display: flex;
  }

  .menu-sm-fit > .menu-item > .menu-content,
.menu-sm-fit > .menu-item > .menu-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .menu-sm-column {
    flex-direction: column;
    width: 100%;
  }

  .menu-sm-row {
    flex-direction: row;
  }
  .menu-sm-row > .menu-item {
    display: flex;
    align-items: center;
  }
  .menu-sm-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-sm-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-sm-rounded .menu-link {
    border-radius: 0.475rem;
  }

  .menu-sm-pill .menu-link {
    border-radius: 50px;
  }

  .menu-sm-rounded-0 .menu-link {
    border-radius: 0 !important;
  }
}
@media (min-width: 768px) {
  .menu-item.menu-md-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, .menu-item.menu-md-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-item.menu-md-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, [direction=rtl] .menu-item.menu-md-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-sub-md-dropdown {
    display: none;
    border-radius: 0.475rem;
    background-color: #ffffff;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    z-index: 107;
  }
  .show.menu-dropdown > .menu-sub-md-dropdown, .menu-sub-md-dropdown.menu.show, .menu-sub-md-dropdown.show[data-popper-placement] {
    display: flex;
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-up 0.3s ease 1;
  }
  .show.menu-dropdown > .menu-sub-md-dropdown[data-popper-placement=top], .show.menu-dropdown > .menu-sub-md-dropdown[data-popper-placement=top-start], .show.menu-dropdown > .menu-sub-md-dropdown[data-popper-placement=top-end], .menu-sub-md-dropdown.menu.show[data-popper-placement=top], .menu-sub-md-dropdown.menu.show[data-popper-placement=top-start], .menu-sub-md-dropdown.menu.show[data-popper-placement=top-end], .menu-sub-md-dropdown.show[data-popper-placement][data-popper-placement=top], .menu-sub-md-dropdown.show[data-popper-placement][data-popper-placement=top-start], .menu-sub-md-dropdown.show[data-popper-placement][data-popper-placement=top-end] {
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-down 0.3s ease 1;
  }

  .menu-sub-md-accordion {
    display: none;
  }
  .show:not(.menu-dropdown) > .menu-sub-md-accordion, .menu-sub-md-accordion.show {
    display: flex;
  }

  .menu-md-inline {
    display: flex;
  }

  .menu-md-fit > .menu-item > .menu-content,
.menu-md-fit > .menu-item > .menu-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .menu-md-column {
    flex-direction: column;
    width: 100%;
  }

  .menu-md-row {
    flex-direction: row;
  }
  .menu-md-row > .menu-item {
    display: flex;
    align-items: center;
  }
  .menu-md-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-md-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-md-rounded .menu-link {
    border-radius: 0.475rem;
  }

  .menu-md-pill .menu-link {
    border-radius: 50px;
  }

  .menu-md-rounded-0 .menu-link {
    border-radius: 0 !important;
  }
}
@media (min-width: 992px) {
  .menu-item.menu-lg-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, .menu-item.menu-lg-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-item.menu-lg-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, [direction=rtl] .menu-item.menu-lg-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-sub-lg-dropdown {
    display: none;
    border-radius: 0.475rem;
    background-color: #ffffff;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    z-index: 107;
  }
  .show.menu-dropdown > .menu-sub-lg-dropdown, .menu-sub-lg-dropdown.menu.show, .menu-sub-lg-dropdown.show[data-popper-placement] {
    display: flex;
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-up 0.3s ease 1;
  }
  .show.menu-dropdown > .menu-sub-lg-dropdown[data-popper-placement=top], .show.menu-dropdown > .menu-sub-lg-dropdown[data-popper-placement=top-start], .show.menu-dropdown > .menu-sub-lg-dropdown[data-popper-placement=top-end], .menu-sub-lg-dropdown.menu.show[data-popper-placement=top], .menu-sub-lg-dropdown.menu.show[data-popper-placement=top-start], .menu-sub-lg-dropdown.menu.show[data-popper-placement=top-end], .menu-sub-lg-dropdown.show[data-popper-placement][data-popper-placement=top], .menu-sub-lg-dropdown.show[data-popper-placement][data-popper-placement=top-start], .menu-sub-lg-dropdown.show[data-popper-placement][data-popper-placement=top-end] {
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-down 0.3s ease 1;
  }

  .menu-sub-lg-accordion {
    display: none;
  }
  .show:not(.menu-dropdown) > .menu-sub-lg-accordion, .menu-sub-lg-accordion.show {
    display: flex;
  }

  .menu-lg-inline {
    display: flex;
  }

  .menu-lg-fit > .menu-item > .menu-content,
.menu-lg-fit > .menu-item > .menu-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .menu-lg-column {
    flex-direction: column;
    width: 100%;
  }

  .menu-lg-row {
    flex-direction: row;
  }
  .menu-lg-row > .menu-item {
    display: flex;
    align-items: center;
  }
  .menu-lg-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-lg-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-lg-rounded .menu-link {
    border-radius: 0.475rem;
  }

  .menu-lg-pill .menu-link {
    border-radius: 50px;
  }

  .menu-lg-rounded-0 .menu-link {
    border-radius: 0 !important;
  }
}
@media (min-width: 1200px) {
  .menu-item.menu-xl-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, .menu-item.menu-xl-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-item.menu-xl-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, [direction=rtl] .menu-item.menu-xl-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-sub-xl-dropdown {
    display: none;
    border-radius: 0.475rem;
    background-color: #ffffff;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    z-index: 107;
  }
  .show.menu-dropdown > .menu-sub-xl-dropdown, .menu-sub-xl-dropdown.menu.show, .menu-sub-xl-dropdown.show[data-popper-placement] {
    display: flex;
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-up 0.3s ease 1;
  }
  .show.menu-dropdown > .menu-sub-xl-dropdown[data-popper-placement=top], .show.menu-dropdown > .menu-sub-xl-dropdown[data-popper-placement=top-start], .show.menu-dropdown > .menu-sub-xl-dropdown[data-popper-placement=top-end], .menu-sub-xl-dropdown.menu.show[data-popper-placement=top], .menu-sub-xl-dropdown.menu.show[data-popper-placement=top-start], .menu-sub-xl-dropdown.menu.show[data-popper-placement=top-end], .menu-sub-xl-dropdown.show[data-popper-placement][data-popper-placement=top], .menu-sub-xl-dropdown.show[data-popper-placement][data-popper-placement=top-start], .menu-sub-xl-dropdown.show[data-popper-placement][data-popper-placement=top-end] {
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-down 0.3s ease 1;
  }

  .menu-sub-xl-accordion {
    display: none;
  }
  .show:not(.menu-dropdown) > .menu-sub-xl-accordion, .menu-sub-xl-accordion.show {
    display: flex;
  }

  .menu-xl-inline {
    display: flex;
  }

  .menu-xl-fit > .menu-item > .menu-content,
.menu-xl-fit > .menu-item > .menu-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .menu-xl-column {
    flex-direction: column;
    width: 100%;
  }

  .menu-xl-row {
    flex-direction: row;
  }
  .menu-xl-row > .menu-item {
    display: flex;
    align-items: center;
  }
  .menu-xl-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-xl-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-xl-rounded .menu-link {
    border-radius: 0.475rem;
  }

  .menu-xl-pill .menu-link {
    border-radius: 50px;
  }

  .menu-xl-rounded-0 .menu-link {
    border-radius: 0 !important;
  }
}
@media (min-width: 1400px) {
  .menu-item.menu-xxl-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, .menu-item.menu-xxl-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-item.menu-xxl-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, [direction=rtl] .menu-item.menu-xxl-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-sub-xxl-dropdown {
    display: none;
    border-radius: 0.475rem;
    background-color: #ffffff;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    z-index: 107;
  }
  .show.menu-dropdown > .menu-sub-xxl-dropdown, .menu-sub-xxl-dropdown.menu.show, .menu-sub-xxl-dropdown.show[data-popper-placement] {
    display: flex;
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-up 0.3s ease 1;
  }
  .show.menu-dropdown > .menu-sub-xxl-dropdown[data-popper-placement=top], .show.menu-dropdown > .menu-sub-xxl-dropdown[data-popper-placement=top-start], .show.menu-dropdown > .menu-sub-xxl-dropdown[data-popper-placement=top-end], .menu-sub-xxl-dropdown.menu.show[data-popper-placement=top], .menu-sub-xxl-dropdown.menu.show[data-popper-placement=top-start], .menu-sub-xxl-dropdown.menu.show[data-popper-placement=top-end], .menu-sub-xxl-dropdown.show[data-popper-placement][data-popper-placement=top], .menu-sub-xxl-dropdown.show[data-popper-placement][data-popper-placement=top-start], .menu-sub-xxl-dropdown.show[data-popper-placement][data-popper-placement=top-end] {
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-down 0.3s ease 1;
  }

  .menu-sub-xxl-accordion {
    display: none;
  }
  .show:not(.menu-dropdown) > .menu-sub-xxl-accordion, .menu-sub-xxl-accordion.show {
    display: flex;
  }

  .menu-xxl-inline {
    display: flex;
  }

  .menu-xxl-fit > .menu-item > .menu-content,
.menu-xxl-fit > .menu-item > .menu-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .menu-xxl-column {
    flex-direction: column;
    width: 100%;
  }

  .menu-xxl-row {
    flex-direction: row;
  }
  .menu-xxl-row > .menu-item {
    display: flex;
    align-items: center;
  }
  .menu-xxl-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-xxl-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-xxl-rounded .menu-link {
    border-radius: 0.475rem;
  }

  .menu-xxl-pill .menu-link {
    border-radius: 50px;
  }

  .menu-xxl-rounded-0 .menu-link {
    border-radius: 0 !important;
  }
}
@media (max-width: 575.98px) {
  .menu-item.menu-sm-down-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, .menu-item.menu-sm-down-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-item.menu-sm-down-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, [direction=rtl] .menu-item.menu-sm-down-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-sub-sm-down-dropdown {
    display: none;
    border-radius: 0.475rem;
    background-color: #ffffff;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    z-index: 107;
  }
  .show.menu-dropdown > .menu-sub-sm-down-dropdown, .menu-sub-sm-down-dropdown.menu.show, .menu-sub-sm-down-dropdown.show[data-popper-placement] {
    display: flex;
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-up 0.3s ease 1;
  }
  .show.menu-dropdown > .menu-sub-sm-down-dropdown[data-popper-placement=top], .show.menu-dropdown > .menu-sub-sm-down-dropdown[data-popper-placement=top-start], .show.menu-dropdown > .menu-sub-sm-down-dropdown[data-popper-placement=top-end], .menu-sub-sm-down-dropdown.menu.show[data-popper-placement=top], .menu-sub-sm-down-dropdown.menu.show[data-popper-placement=top-start], .menu-sub-sm-down-dropdown.menu.show[data-popper-placement=top-end], .menu-sub-sm-down-dropdown.show[data-popper-placement][data-popper-placement=top], .menu-sub-sm-down-dropdown.show[data-popper-placement][data-popper-placement=top-start], .menu-sub-sm-down-dropdown.show[data-popper-placement][data-popper-placement=top-end] {
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-down 0.3s ease 1;
  }

  .menu-sub-sm-down-accordion {
    display: none;
  }
  .show:not(.menu-dropdown) > .menu-sub-sm-down-accordion, .menu-sub-sm-down-accordion.show {
    display: flex;
  }

  .menu-sm-down-inline {
    display: flex;
  }

  .menu-sm-down-fit > .menu-item > .menu-content,
.menu-sm-down-fit > .menu-item > .menu-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .menu-sm-down-column {
    flex-direction: column;
    width: 100%;
  }

  .menu-sm-down-row {
    flex-direction: row;
  }
  .menu-sm-down-row > .menu-item {
    display: flex;
    align-items: center;
  }
  .menu-sm-down-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-sm-down-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-sm-down-rounded .menu-link {
    border-radius: 0.475rem;
  }

  .menu-sm-down-pill .menu-link {
    border-radius: 50px;
  }

  .menu-sm-down-rounded-0 .menu-link {
    border-radius: 0 !important;
  }
}
@media (max-width: 767.98px) {
  .menu-item.menu-md-down-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, .menu-item.menu-md-down-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-item.menu-md-down-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, [direction=rtl] .menu-item.menu-md-down-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-sub-md-down-dropdown {
    display: none;
    border-radius: 0.475rem;
    background-color: #ffffff;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    z-index: 107;
  }
  .show.menu-dropdown > .menu-sub-md-down-dropdown, .menu-sub-md-down-dropdown.menu.show, .menu-sub-md-down-dropdown.show[data-popper-placement] {
    display: flex;
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-up 0.3s ease 1;
  }
  .show.menu-dropdown > .menu-sub-md-down-dropdown[data-popper-placement=top], .show.menu-dropdown > .menu-sub-md-down-dropdown[data-popper-placement=top-start], .show.menu-dropdown > .menu-sub-md-down-dropdown[data-popper-placement=top-end], .menu-sub-md-down-dropdown.menu.show[data-popper-placement=top], .menu-sub-md-down-dropdown.menu.show[data-popper-placement=top-start], .menu-sub-md-down-dropdown.menu.show[data-popper-placement=top-end], .menu-sub-md-down-dropdown.show[data-popper-placement][data-popper-placement=top], .menu-sub-md-down-dropdown.show[data-popper-placement][data-popper-placement=top-start], .menu-sub-md-down-dropdown.show[data-popper-placement][data-popper-placement=top-end] {
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-down 0.3s ease 1;
  }

  .menu-sub-md-down-accordion {
    display: none;
  }
  .show:not(.menu-dropdown) > .menu-sub-md-down-accordion, .menu-sub-md-down-accordion.show {
    display: flex;
  }

  .menu-md-down-inline {
    display: flex;
  }

  .menu-md-down-fit > .menu-item > .menu-content,
.menu-md-down-fit > .menu-item > .menu-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .menu-md-down-column {
    flex-direction: column;
    width: 100%;
  }

  .menu-md-down-row {
    flex-direction: row;
  }
  .menu-md-down-row > .menu-item {
    display: flex;
    align-items: center;
  }
  .menu-md-down-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-md-down-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-md-down-rounded .menu-link {
    border-radius: 0.475rem;
  }

  .menu-md-down-pill .menu-link {
    border-radius: 50px;
  }

  .menu-md-down-rounded-0 .menu-link {
    border-radius: 0 !important;
  }
}
@media (max-width: 991.98px) {
  .menu-item.menu-lg-down-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, .menu-item.menu-lg-down-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-item.menu-lg-down-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, [direction=rtl] .menu-item.menu-lg-down-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-sub-lg-down-dropdown {
    display: none;
    border-radius: 0.475rem;
    background-color: #ffffff;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    z-index: 107;
  }
  .show.menu-dropdown > .menu-sub-lg-down-dropdown, .menu-sub-lg-down-dropdown.menu.show, .menu-sub-lg-down-dropdown.show[data-popper-placement] {
    display: flex;
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-up 0.3s ease 1;
  }
  .show.menu-dropdown > .menu-sub-lg-down-dropdown[data-popper-placement=top], .show.menu-dropdown > .menu-sub-lg-down-dropdown[data-popper-placement=top-start], .show.menu-dropdown > .menu-sub-lg-down-dropdown[data-popper-placement=top-end], .menu-sub-lg-down-dropdown.menu.show[data-popper-placement=top], .menu-sub-lg-down-dropdown.menu.show[data-popper-placement=top-start], .menu-sub-lg-down-dropdown.menu.show[data-popper-placement=top-end], .menu-sub-lg-down-dropdown.show[data-popper-placement][data-popper-placement=top], .menu-sub-lg-down-dropdown.show[data-popper-placement][data-popper-placement=top-start], .menu-sub-lg-down-dropdown.show[data-popper-placement][data-popper-placement=top-end] {
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-down 0.3s ease 1;
  }

  .menu-sub-lg-down-accordion {
    display: none;
  }
  .show:not(.menu-dropdown) > .menu-sub-lg-down-accordion, .menu-sub-lg-down-accordion.show {
    display: flex;
  }

  .menu-lg-down-inline {
    display: flex;
  }

  .menu-lg-down-fit > .menu-item > .menu-content,
.menu-lg-down-fit > .menu-item > .menu-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .menu-lg-down-column {
    flex-direction: column;
    width: 100%;
  }

  .menu-lg-down-row {
    flex-direction: row;
  }
  .menu-lg-down-row > .menu-item {
    display: flex;
    align-items: center;
  }
  .menu-lg-down-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-lg-down-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-lg-down-rounded .menu-link {
    border-radius: 0.475rem;
  }

  .menu-lg-down-pill .menu-link {
    border-radius: 50px;
  }

  .menu-lg-down-rounded-0 .menu-link {
    border-radius: 0 !important;
  }
}
@media (max-width: 1199.98px) {
  .menu-item.menu-xl-down-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, .menu-item.menu-xl-down-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-item.menu-xl-down-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, [direction=rtl] .menu-item.menu-xl-down-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-sub-xl-down-dropdown {
    display: none;
    border-radius: 0.475rem;
    background-color: #ffffff;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    z-index: 107;
  }
  .show.menu-dropdown > .menu-sub-xl-down-dropdown, .menu-sub-xl-down-dropdown.menu.show, .menu-sub-xl-down-dropdown.show[data-popper-placement] {
    display: flex;
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-up 0.3s ease 1;
  }
  .show.menu-dropdown > .menu-sub-xl-down-dropdown[data-popper-placement=top], .show.menu-dropdown > .menu-sub-xl-down-dropdown[data-popper-placement=top-start], .show.menu-dropdown > .menu-sub-xl-down-dropdown[data-popper-placement=top-end], .menu-sub-xl-down-dropdown.menu.show[data-popper-placement=top], .menu-sub-xl-down-dropdown.menu.show[data-popper-placement=top-start], .menu-sub-xl-down-dropdown.menu.show[data-popper-placement=top-end], .menu-sub-xl-down-dropdown.show[data-popper-placement][data-popper-placement=top], .menu-sub-xl-down-dropdown.show[data-popper-placement][data-popper-placement=top-start], .menu-sub-xl-down-dropdown.show[data-popper-placement][data-popper-placement=top-end] {
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-down 0.3s ease 1;
  }

  .menu-sub-xl-down-accordion {
    display: none;
  }
  .show:not(.menu-dropdown) > .menu-sub-xl-down-accordion, .menu-sub-xl-down-accordion.show {
    display: flex;
  }

  .menu-xl-down-inline {
    display: flex;
  }

  .menu-xl-down-fit > .menu-item > .menu-content,
.menu-xl-down-fit > .menu-item > .menu-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .menu-xl-down-column {
    flex-direction: column;
    width: 100%;
  }

  .menu-xl-down-row {
    flex-direction: row;
  }
  .menu-xl-down-row > .menu-item {
    display: flex;
    align-items: center;
  }
  .menu-xl-down-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-xl-down-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-xl-down-rounded .menu-link {
    border-radius: 0.475rem;
  }

  .menu-xl-down-pill .menu-link {
    border-radius: 50px;
  }

  .menu-xl-down-rounded-0 .menu-link {
    border-radius: 0 !important;
  }
}
@media (max-width: 1399.98px) {
  .menu-item.menu-xxl-down-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, .menu-item.menu-xxl-down-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-item.menu-xxl-down-accordion.showing:not(.menu-dropdown) > .menu-link .menu-arrow:after, [direction=rtl] .menu-item.menu-xxl-down-accordion.show:not(.hiding):not(.menu-dropdown) > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-sub-xxl-down-dropdown {
    display: none;
    border-radius: 0.475rem;
    background-color: #ffffff;
    box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
    z-index: 107;
  }
  .show.menu-dropdown > .menu-sub-xxl-down-dropdown, .menu-sub-xxl-down-dropdown.menu.show, .menu-sub-xxl-down-dropdown.show[data-popper-placement] {
    display: flex;
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-up 0.3s ease 1;
  }
  .show.menu-dropdown > .menu-sub-xxl-down-dropdown[data-popper-placement=top], .show.menu-dropdown > .menu-sub-xxl-down-dropdown[data-popper-placement=top-start], .show.menu-dropdown > .menu-sub-xxl-down-dropdown[data-popper-placement=top-end], .menu-sub-xxl-down-dropdown.menu.show[data-popper-placement=top], .menu-sub-xxl-down-dropdown.menu.show[data-popper-placement=top-start], .menu-sub-xxl-down-dropdown.menu.show[data-popper-placement=top-end], .menu-sub-xxl-down-dropdown.show[data-popper-placement][data-popper-placement=top], .menu-sub-xxl-down-dropdown.show[data-popper-placement][data-popper-placement=top-start], .menu-sub-xxl-down-dropdown.show[data-popper-placement][data-popper-placement=top-end] {
    animation: menu-sub-dropdown-animation-fade-in 0.3s ease 1, menu-sub-dropdown-animation-move-down 0.3s ease 1;
  }

  .menu-sub-xxl-down-accordion {
    display: none;
  }
  .show:not(.menu-dropdown) > .menu-sub-xxl-down-accordion, .menu-sub-xxl-down-accordion.show {
    display: flex;
  }

  .menu-xxl-down-inline {
    display: flex;
  }

  .menu-xxl-down-fit > .menu-item > .menu-content,
.menu-xxl-down-fit > .menu-item > .menu-link {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .menu-xxl-down-column {
    flex-direction: column;
    width: 100%;
  }

  .menu-xxl-down-row {
    flex-direction: row;
  }
  .menu-xxl-down-row > .menu-item {
    display: flex;
    align-items: center;
  }
  .menu-xxl-down-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(90deg);
    transition: transform 0.3s ease;
  }
  [direction=rtl] .menu-xxl-down-row > .menu-item > .menu-link .menu-arrow:after {
    /*rtl:ignore*/
    transform: rotateZ(-90deg);
  }

  .menu-xxl-down-rounded .menu-link {
    border-radius: 0.475rem;
  }

  .menu-xxl-down-pill .menu-link {
    border-radius: 50px;
  }

  .menu-xxl-down-rounded-0 .menu-link {
    border-radius: 0 !important;
  }
}
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(1rem + 1rem);
}
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(2rem + 1rem);
}
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(3rem + 1rem);
}
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(4rem + 1rem);
}
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: 1rem;
  padding-right: 0;
}
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(2rem);
  padding-right: 0;
}
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(3rem);
  padding-right: 0;
}
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(4rem);
  padding-right: 0;
}

@keyframes menu-sub-dropdown-animation-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes menu-sub-dropdown-animation-move-up {
  from {
    margin-top: 0.75rem;
  }
  to {
    margin-top: 0;
  }
}
@keyframes menu-sub-dropdown-animation-move-down {
  from {
    margin-bottom: 0.75rem;
  }
  to {
    margin-bottom: 0;
  }
}
.menu-white .menu-item .menu-link {
  color: #ffffff;
}
.menu-white .menu-item .menu-link .menu-title {
  color: #ffffff;
}
.menu-white .menu-item .menu-link .menu-icon,
.menu-white .menu-item .menu-link .menu-icon .svg-icon,
.menu-white .menu-item .menu-link .menu-icon i {
  color: #ffffff;
}
.menu-white .menu-item .menu-link .menu-bullet .bullet {
  background-color: #ffffff;
}
.menu-white .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-white .menu-item .menu-link {
  color: #ffffff;
}
.menu-title-white .menu-item .menu-link .menu-title {
  color: #ffffff;
}

.menu-icon-white .menu-item .menu-link .menu-icon,
.menu-icon-white .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-white .menu-item .menu-link .menu-icon i {
  color: #ffffff;
}

.menu-bullet-white .menu-item .menu-link .menu-bullet .bullet {
  background-color: #ffffff;
}

.menu-arrow-white .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-primary .menu-item .menu-link {
  color: #009EF7;
}
.menu-primary .menu-item .menu-link .menu-title {
  color: #009EF7;
}
.menu-primary .menu-item .menu-link .menu-icon,
.menu-primary .menu-item .menu-link .menu-icon .svg-icon,
.menu-primary .menu-item .menu-link .menu-icon i {
  color: #009EF7;
}
.menu-primary .menu-item .menu-link .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-primary .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-primary .menu-item .menu-link {
  color: #009EF7;
}
.menu-title-primary .menu-item .menu-link .menu-title {
  color: #009EF7;
}

.menu-icon-primary .menu-item .menu-link .menu-icon,
.menu-icon-primary .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-primary .menu-item .menu-link .menu-icon i {
  color: #009EF7;
}

.menu-bullet-primary .menu-item .menu-link .menu-bullet .bullet {
  background-color: #009EF7;
}

.menu-arrow-primary .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-secondary .menu-item .menu-link {
  color: #E4E6EF;
}
.menu-secondary .menu-item .menu-link .menu-title {
  color: #E4E6EF;
}
.menu-secondary .menu-item .menu-link .menu-icon,
.menu-secondary .menu-item .menu-link .menu-icon .svg-icon,
.menu-secondary .menu-item .menu-link .menu-icon i {
  color: #E4E6EF;
}
.menu-secondary .menu-item .menu-link .menu-bullet .bullet {
  background-color: #E4E6EF;
}
.menu-secondary .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-secondary .menu-item .menu-link {
  color: #E4E6EF;
}
.menu-title-secondary .menu-item .menu-link .menu-title {
  color: #E4E6EF;
}

.menu-icon-secondary .menu-item .menu-link .menu-icon,
.menu-icon-secondary .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-secondary .menu-item .menu-link .menu-icon i {
  color: #E4E6EF;
}

.menu-bullet-secondary .menu-item .menu-link .menu-bullet .bullet {
  background-color: #E4E6EF;
}

.menu-arrow-secondary .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-light .menu-item .menu-link {
  color: #F5F8FA;
}
.menu-light .menu-item .menu-link .menu-title {
  color: #F5F8FA;
}
.menu-light .menu-item .menu-link .menu-icon,
.menu-light .menu-item .menu-link .menu-icon .svg-icon,
.menu-light .menu-item .menu-link .menu-icon i {
  color: #F5F8FA;
}
.menu-light .menu-item .menu-link .menu-bullet .bullet {
  background-color: #F5F8FA;
}
.menu-light .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-light .menu-item .menu-link {
  color: #F5F8FA;
}
.menu-title-light .menu-item .menu-link .menu-title {
  color: #F5F8FA;
}

.menu-icon-light .menu-item .menu-link .menu-icon,
.menu-icon-light .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-light .menu-item .menu-link .menu-icon i {
  color: #F5F8FA;
}

.menu-bullet-light .menu-item .menu-link .menu-bullet .bullet {
  background-color: #F5F8FA;
}

.menu-arrow-light .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-success .menu-item .menu-link {
  color: #50CD89;
}
.menu-success .menu-item .menu-link .menu-title {
  color: #50CD89;
}
.menu-success .menu-item .menu-link .menu-icon,
.menu-success .menu-item .menu-link .menu-icon .svg-icon,
.menu-success .menu-item .menu-link .menu-icon i {
  color: #50CD89;
}
.menu-success .menu-item .menu-link .menu-bullet .bullet {
  background-color: #50CD89;
}
.menu-success .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2350CD89'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2350CD89'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-success .menu-item .menu-link {
  color: #50CD89;
}
.menu-title-success .menu-item .menu-link .menu-title {
  color: #50CD89;
}

.menu-icon-success .menu-item .menu-link .menu-icon,
.menu-icon-success .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-success .menu-item .menu-link .menu-icon i {
  color: #50CD89;
}

.menu-bullet-success .menu-item .menu-link .menu-bullet .bullet {
  background-color: #50CD89;
}

.menu-arrow-success .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2350CD89'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%2350CD89'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-info .menu-item .menu-link {
  color: #7239EA;
}
.menu-info .menu-item .menu-link .menu-title {
  color: #7239EA;
}
.menu-info .menu-item .menu-link .menu-icon,
.menu-info .menu-item .menu-link .menu-icon .svg-icon,
.menu-info .menu-item .menu-link .menu-icon i {
  color: #7239EA;
}
.menu-info .menu-item .menu-link .menu-bullet .bullet {
  background-color: #7239EA;
}
.menu-info .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237239EA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237239EA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-info .menu-item .menu-link {
  color: #7239EA;
}
.menu-title-info .menu-item .menu-link .menu-title {
  color: #7239EA;
}

.menu-icon-info .menu-item .menu-link .menu-icon,
.menu-icon-info .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-info .menu-item .menu-link .menu-icon i {
  color: #7239EA;
}

.menu-bullet-info .menu-item .menu-link .menu-bullet .bullet {
  background-color: #7239EA;
}

.menu-arrow-info .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237239EA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237239EA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-warning .menu-item .menu-link {
  color: #FFC700;
}
.menu-warning .menu-item .menu-link .menu-title {
  color: #FFC700;
}
.menu-warning .menu-item .menu-link .menu-icon,
.menu-warning .menu-item .menu-link .menu-icon .svg-icon,
.menu-warning .menu-item .menu-link .menu-icon i {
  color: #FFC700;
}
.menu-warning .menu-item .menu-link .menu-bullet .bullet {
  background-color: #FFC700;
}
.menu-warning .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFC700'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFC700'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-warning .menu-item .menu-link {
  color: #FFC700;
}
.menu-title-warning .menu-item .menu-link .menu-title {
  color: #FFC700;
}

.menu-icon-warning .menu-item .menu-link .menu-icon,
.menu-icon-warning .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-warning .menu-item .menu-link .menu-icon i {
  color: #FFC700;
}

.menu-bullet-warning .menu-item .menu-link .menu-bullet .bullet {
  background-color: #FFC700;
}

.menu-arrow-warning .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFC700'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFC700'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-danger .menu-item .menu-link {
  color: #F1416C;
}
.menu-danger .menu-item .menu-link .menu-title {
  color: #F1416C;
}
.menu-danger .menu-item .menu-link .menu-icon,
.menu-danger .menu-item .menu-link .menu-icon .svg-icon,
.menu-danger .menu-item .menu-link .menu-icon i {
  color: #F1416C;
}
.menu-danger .menu-item .menu-link .menu-bullet .bullet {
  background-color: #F1416C;
}
.menu-danger .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F1416C'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F1416C'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-danger .menu-item .menu-link {
  color: #F1416C;
}
.menu-title-danger .menu-item .menu-link .menu-title {
  color: #F1416C;
}

.menu-icon-danger .menu-item .menu-link .menu-icon,
.menu-icon-danger .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-danger .menu-item .menu-link .menu-icon i {
  color: #F1416C;
}

.menu-bullet-danger .menu-item .menu-link .menu-bullet .bullet {
  background-color: #F1416C;
}

.menu-arrow-danger .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F1416C'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F1416C'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-dark .menu-item .menu-link {
  color: #181C32;
}
.menu-dark .menu-item .menu-link .menu-title {
  color: #181C32;
}
.menu-dark .menu-item .menu-link .menu-icon,
.menu-dark .menu-item .menu-link .menu-icon .svg-icon,
.menu-dark .menu-item .menu-link .menu-icon i {
  color: #181C32;
}
.menu-dark .menu-item .menu-link .menu-bullet .bullet {
  background-color: #181C32;
}
.menu-dark .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-dark .menu-item .menu-link {
  color: #181C32;
}
.menu-title-dark .menu-item .menu-link .menu-title {
  color: #181C32;
}

.menu-icon-dark .menu-item .menu-link .menu-icon,
.menu-icon-dark .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-dark .menu-item .menu-link .menu-icon i {
  color: #181C32;
}

.menu-bullet-dark .menu-item .menu-link .menu-bullet .bullet {
  background-color: #181C32;
}

.menu-arrow-dark .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-muted .menu-item .menu-link {
  color: #A1A5B7;
}
.menu-muted .menu-item .menu-link .menu-title {
  color: #A1A5B7;
}
.menu-muted .menu-item .menu-link .menu-icon,
.menu-muted .menu-item .menu-link .menu-icon .svg-icon,
.menu-muted .menu-item .menu-link .menu-icon i {
  color: #A1A5B7;
}
.menu-muted .menu-item .menu-link .menu-bullet .bullet {
  background-color: #A1A5B7;
}
.menu-muted .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-muted .menu-item .menu-link {
  color: #A1A5B7;
}
.menu-title-muted .menu-item .menu-link .menu-title {
  color: #A1A5B7;
}

.menu-icon-muted .menu-item .menu-link .menu-icon,
.menu-icon-muted .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-muted .menu-item .menu-link .menu-icon i {
  color: #A1A5B7;
}

.menu-bullet-muted .menu-item .menu-link .menu-bullet .bullet {
  background-color: #A1A5B7;
}

.menu-arrow-muted .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-gray-100 .menu-item .menu-link {
  color: #F5F8FA;
}
.menu-gray-100 .menu-item .menu-link .menu-title {
  color: #F5F8FA;
}
.menu-gray-100 .menu-item .menu-link .menu-icon,
.menu-gray-100 .menu-item .menu-link .menu-icon .svg-icon,
.menu-gray-100 .menu-item .menu-link .menu-icon i {
  color: #F5F8FA;
}
.menu-gray-100 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #F5F8FA;
}
.menu-gray-100 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-gray-100 .menu-item .menu-link {
  color: #F5F8FA;
}
.menu-title-gray-100 .menu-item .menu-link .menu-title {
  color: #F5F8FA;
}

.menu-icon-gray-100 .menu-item .menu-link .menu-icon,
.menu-icon-gray-100 .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-gray-100 .menu-item .menu-link .menu-icon i {
  color: #F5F8FA;
}

.menu-bullet-gray-100 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #F5F8FA;
}

.menu-arrow-gray-100 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23F5F8FA'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-gray-200 .menu-item .menu-link {
  color: #EFF2F5;
}
.menu-gray-200 .menu-item .menu-link .menu-title {
  color: #EFF2F5;
}
.menu-gray-200 .menu-item .menu-link .menu-icon,
.menu-gray-200 .menu-item .menu-link .menu-icon .svg-icon,
.menu-gray-200 .menu-item .menu-link .menu-icon i {
  color: #EFF2F5;
}
.menu-gray-200 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #EFF2F5;
}
.menu-gray-200 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23EFF2F5'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23EFF2F5'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-gray-200 .menu-item .menu-link {
  color: #EFF2F5;
}
.menu-title-gray-200 .menu-item .menu-link .menu-title {
  color: #EFF2F5;
}

.menu-icon-gray-200 .menu-item .menu-link .menu-icon,
.menu-icon-gray-200 .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-gray-200 .menu-item .menu-link .menu-icon i {
  color: #EFF2F5;
}

.menu-bullet-gray-200 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #EFF2F5;
}

.menu-arrow-gray-200 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23EFF2F5'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23EFF2F5'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-gray-300 .menu-item .menu-link {
  color: #E4E6EF;
}
.menu-gray-300 .menu-item .menu-link .menu-title {
  color: #E4E6EF;
}
.menu-gray-300 .menu-item .menu-link .menu-icon,
.menu-gray-300 .menu-item .menu-link .menu-icon .svg-icon,
.menu-gray-300 .menu-item .menu-link .menu-icon i {
  color: #E4E6EF;
}
.menu-gray-300 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #E4E6EF;
}
.menu-gray-300 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-gray-300 .menu-item .menu-link {
  color: #E4E6EF;
}
.menu-title-gray-300 .menu-item .menu-link .menu-title {
  color: #E4E6EF;
}

.menu-icon-gray-300 .menu-item .menu-link .menu-icon,
.menu-icon-gray-300 .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-gray-300 .menu-item .menu-link .menu-icon i {
  color: #E4E6EF;
}

.menu-bullet-gray-300 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #E4E6EF;
}

.menu-arrow-gray-300 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23E4E6EF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-gray-400 .menu-item .menu-link {
  color: #B5B5C3;
}
.menu-gray-400 .menu-item .menu-link .menu-title {
  color: #B5B5C3;
}
.menu-gray-400 .menu-item .menu-link .menu-icon,
.menu-gray-400 .menu-item .menu-link .menu-icon .svg-icon,
.menu-gray-400 .menu-item .menu-link .menu-icon i {
  color: #B5B5C3;
}
.menu-gray-400 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #B5B5C3;
}
.menu-gray-400 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23B5B5C3'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23B5B5C3'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-gray-400 .menu-item .menu-link {
  color: #B5B5C3;
}
.menu-title-gray-400 .menu-item .menu-link .menu-title {
  color: #B5B5C3;
}

.menu-icon-gray-400 .menu-item .menu-link .menu-icon,
.menu-icon-gray-400 .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-gray-400 .menu-item .menu-link .menu-icon i {
  color: #B5B5C3;
}

.menu-bullet-gray-400 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #B5B5C3;
}

.menu-arrow-gray-400 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23B5B5C3'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23B5B5C3'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-gray-500 .menu-item .menu-link {
  color: #A1A5B7;
}
.menu-gray-500 .menu-item .menu-link .menu-title {
  color: #A1A5B7;
}
.menu-gray-500 .menu-item .menu-link .menu-icon,
.menu-gray-500 .menu-item .menu-link .menu-icon .svg-icon,
.menu-gray-500 .menu-item .menu-link .menu-icon i {
  color: #A1A5B7;
}
.menu-gray-500 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #A1A5B7;
}
.menu-gray-500 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-gray-500 .menu-item .menu-link {
  color: #A1A5B7;
}
.menu-title-gray-500 .menu-item .menu-link .menu-title {
  color: #A1A5B7;
}

.menu-icon-gray-500 .menu-item .menu-link .menu-icon,
.menu-icon-gray-500 .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-gray-500 .menu-item .menu-link .menu-icon i {
  color: #A1A5B7;
}

.menu-bullet-gray-500 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #A1A5B7;
}

.menu-arrow-gray-500 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-gray-600 .menu-item .menu-link {
  color: #7E8299;
}
.menu-gray-600 .menu-item .menu-link .menu-title {
  color: #7E8299;
}
.menu-gray-600 .menu-item .menu-link .menu-icon,
.menu-gray-600 .menu-item .menu-link .menu-icon .svg-icon,
.menu-gray-600 .menu-item .menu-link .menu-icon i {
  color: #7E8299;
}
.menu-gray-600 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #7E8299;
}
.menu-gray-600 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237E8299'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237E8299'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-gray-600 .menu-item .menu-link {
  color: #7E8299;
}
.menu-title-gray-600 .menu-item .menu-link .menu-title {
  color: #7E8299;
}

.menu-icon-gray-600 .menu-item .menu-link .menu-icon,
.menu-icon-gray-600 .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-gray-600 .menu-item .menu-link .menu-icon i {
  color: #7E8299;
}

.menu-bullet-gray-600 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #7E8299;
}

.menu-arrow-gray-600 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237E8299'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%237E8299'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-gray-700 .menu-item .menu-link {
  color: #5E6278;
}
.menu-gray-700 .menu-item .menu-link .menu-title {
  color: #5E6278;
}
.menu-gray-700 .menu-item .menu-link .menu-icon,
.menu-gray-700 .menu-item .menu-link .menu-icon .svg-icon,
.menu-gray-700 .menu-item .menu-link .menu-icon i {
  color: #5E6278;
}
.menu-gray-700 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #5E6278;
}
.menu-gray-700 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%235E6278'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%235E6278'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-gray-700 .menu-item .menu-link {
  color: #5E6278;
}
.menu-title-gray-700 .menu-item .menu-link .menu-title {
  color: #5E6278;
}

.menu-icon-gray-700 .menu-item .menu-link .menu-icon,
.menu-icon-gray-700 .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-gray-700 .menu-item .menu-link .menu-icon i {
  color: #5E6278;
}

.menu-bullet-gray-700 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #5E6278;
}

.menu-arrow-gray-700 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%235E6278'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%235E6278'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-gray-800 .menu-item .menu-link {
  color: #3F4254;
}
.menu-gray-800 .menu-item .menu-link .menu-title {
  color: #3F4254;
}
.menu-gray-800 .menu-item .menu-link .menu-icon,
.menu-gray-800 .menu-item .menu-link .menu-icon .svg-icon,
.menu-gray-800 .menu-item .menu-link .menu-icon i {
  color: #3F4254;
}
.menu-gray-800 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #3F4254;
}
.menu-gray-800 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233F4254'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233F4254'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-gray-800 .menu-item .menu-link {
  color: #3F4254;
}
.menu-title-gray-800 .menu-item .menu-link .menu-title {
  color: #3F4254;
}

.menu-icon-gray-800 .menu-item .menu-link .menu-icon,
.menu-icon-gray-800 .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-gray-800 .menu-item .menu-link .menu-icon i {
  color: #3F4254;
}

.menu-bullet-gray-800 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #3F4254;
}

.menu-arrow-gray-800 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233F4254'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%233F4254'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-gray-900 .menu-item .menu-link {
  color: #181C32;
}
.menu-gray-900 .menu-item .menu-link .menu-title {
  color: #181C32;
}
.menu-gray-900 .menu-item .menu-link .menu-icon,
.menu-gray-900 .menu-item .menu-link .menu-icon .svg-icon,
.menu-gray-900 .menu-item .menu-link .menu-icon i {
  color: #181C32;
}
.menu-gray-900 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #181C32;
}
.menu-gray-900 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-title-gray-900 .menu-item .menu-link {
  color: #181C32;
}
.menu-title-gray-900 .menu-item .menu-link .menu-title {
  color: #181C32;
}

.menu-icon-gray-900 .menu-item .menu-link .menu-icon,
.menu-icon-gray-900 .menu-item .menu-link .menu-icon .svg-icon,
.menu-icon-gray-900 .menu-item .menu-link .menu-icon i {
  color: #181C32;
}

.menu-bullet-gray-900 .menu-item .menu-link .menu-bullet .bullet {
  background-color: #181C32;
}

.menu-arrow-gray-900 .menu-item .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23181C32'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-hover-bg .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), .menu-hover-bg .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: rgba(245, 248, 250, 0.8);
}

.menu-here-bg .menu-item.here > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: rgba(245, 248, 250, 0.8);
}

.menu-show-bg .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: rgba(245, 248, 250, 0.8);
}

.menu-active-bg .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: rgba(245, 248, 250, 0.8);
}

.menu-state-bg .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), .menu-state-bg .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: rgba(245, 248, 250, 0.8);
}
.menu-state-bg .menu-item.here > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: rgba(245, 248, 250, 0.8);
}
.menu-state-bg .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: rgba(245, 248, 250, 0.8);
}
.menu-state-bg .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: rgba(245, 248, 250, 0.8);
}

.menu-hover-bg-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), .menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #009EF7;
  color: #FFFFFF;
}
.menu-hover-bg-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-title, .menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title {
  color: #FFFFFF;
}
.menu-hover-bg-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon,
.menu-hover-bg-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
.menu-hover-bg-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, .menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,
.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
.menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i {
  color: #FFFFFF;
}
.menu-hover-bg-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, .menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet {
  background-color: #FFFFFF;
}
.menu-hover-bg-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, .menu-hover-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-show-bg-primary .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #009EF7;
  color: #FFFFFF;
}
.menu-show-bg-primary .menu-item.show > .menu-link .menu-title {
  color: #FFFFFF;
}
.menu-show-bg-primary .menu-item.show > .menu-link .menu-icon,
.menu-show-bg-primary .menu-item.show > .menu-link .menu-icon .svg-icon,
.menu-show-bg-primary .menu-item.show > .menu-link .menu-icon i {
  color: #FFFFFF;
}
.menu-show-bg-primary .menu-item.show > .menu-link .menu-bullet .bullet {
  background-color: #FFFFFF;
}
.menu-show-bg-primary .menu-item.show > .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-here-bg-primary .menu-item.here > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #009EF7;
  color: #FFFFFF;
}
.menu-here-bg-primary .menu-item.here > .menu-link .menu-title {
  color: #FFFFFF;
}
.menu-here-bg-primary .menu-item.here > .menu-link .menu-icon,
.menu-here-bg-primary .menu-item.here > .menu-link .menu-icon .svg-icon,
.menu-here-bg-primary .menu-item.here > .menu-link .menu-icon i {
  color: #FFFFFF;
}
.menu-here-bg-primary .menu-item.here > .menu-link .menu-bullet .bullet {
  background-color: #FFFFFF;
}
.menu-here-bg-primary .menu-item.here > .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-active-bg-primary .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #009EF7;
  color: #FFFFFF;
}
.menu-active-bg-primary .menu-item .menu-link.active .menu-title {
  color: #FFFFFF;
}
.menu-active-bg-primary .menu-item .menu-link.active .menu-icon,
.menu-active-bg-primary .menu-item .menu-link.active .menu-icon .svg-icon,
.menu-active-bg-primary .menu-item .menu-link.active .menu-icon i {
  color: #FFFFFF;
}
.menu-active-bg-primary .menu-item .menu-link.active .menu-bullet .bullet {
  background-color: #FFFFFF;
}
.menu-active-bg-primary .menu-item .menu-link.active .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-state-bg-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), .menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #009EF7;
  color: #FFFFFF;
}
.menu-state-bg-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-title, .menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title {
  color: #FFFFFF;
}
.menu-state-bg-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon,
.menu-state-bg-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
.menu-state-bg-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, .menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,
.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
.menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i {
  color: #FFFFFF;
}
.menu-state-bg-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, .menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet {
  background-color: #FFFFFF;
}
.menu-state-bg-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, .menu-state-bg-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}
.menu-state-bg-primary .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #009EF7;
  color: #FFFFFF;
}
.menu-state-bg-primary .menu-item.show > .menu-link .menu-title {
  color: #FFFFFF;
}
.menu-state-bg-primary .menu-item.show > .menu-link .menu-icon,
.menu-state-bg-primary .menu-item.show > .menu-link .menu-icon .svg-icon,
.menu-state-bg-primary .menu-item.show > .menu-link .menu-icon i {
  color: #FFFFFF;
}
.menu-state-bg-primary .menu-item.show > .menu-link .menu-bullet .bullet {
  background-color: #FFFFFF;
}
.menu-state-bg-primary .menu-item.show > .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}
.menu-state-bg-primary .menu-item.here > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #009EF7;
  color: #FFFFFF;
}
.menu-state-bg-primary .menu-item.here > .menu-link .menu-title {
  color: #FFFFFF;
}
.menu-state-bg-primary .menu-item.here > .menu-link .menu-icon,
.menu-state-bg-primary .menu-item.here > .menu-link .menu-icon .svg-icon,
.menu-state-bg-primary .menu-item.here > .menu-link .menu-icon i {
  color: #FFFFFF;
}
.menu-state-bg-primary .menu-item.here > .menu-link .menu-bullet .bullet {
  background-color: #FFFFFF;
}
.menu-state-bg-primary .menu-item.here > .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}
.menu-state-bg-primary .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #009EF7;
  color: #FFFFFF;
}
.menu-state-bg-primary .menu-item .menu-link.active .menu-title {
  color: #FFFFFF;
}
.menu-state-bg-primary .menu-item .menu-link.active .menu-icon,
.menu-state-bg-primary .menu-item .menu-link.active .menu-icon .svg-icon,
.menu-state-bg-primary .menu-item .menu-link.active .menu-icon i {
  color: #FFFFFF;
}
.menu-state-bg-primary .menu-item .menu-link.active .menu-bullet .bullet {
  background-color: #FFFFFF;
}
.menu-state-bg-primary .menu-item .menu-link.active .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23FFFFFF'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-show-bg-light-primary .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #F1FAFF;
  color: #009EF7;
}
.menu-show-bg-light-primary .menu-item.show > .menu-link .menu-title {
  color: #009EF7;
}
.menu-show-bg-light-primary .menu-item.show > .menu-link .menu-icon,
.menu-show-bg-light-primary .menu-item.show > .menu-link .menu-icon .svg-icon,
.menu-show-bg-light-primary .menu-item.show > .menu-link .menu-icon i {
  color: #009EF7;
}
.menu-show-bg-light-primary .menu-item.show > .menu-link .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-show-bg-light-primary .menu-item.show > .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-here-bg-light-primary .menu-item.here > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #F1FAFF;
  color: #009EF7;
}
.menu-here-bg-light-primary .menu-item.here > .menu-link .menu-title {
  color: #009EF7;
}
.menu-here-bg-light-primary .menu-item.here > .menu-link .menu-icon,
.menu-here-bg-light-primary .menu-item.here > .menu-link .menu-icon .svg-icon,
.menu-here-bg-light-primary .menu-item.here > .menu-link .menu-icon i {
  color: #009EF7;
}
.menu-here-bg-light-primary .menu-item.here > .menu-link .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-here-bg-light-primary .menu-item.here > .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-hover-bg-light-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), .menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #F1FAFF;
  color: #009EF7;
}
.menu-hover-bg-light-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-title, .menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title {
  color: #009EF7;
}
.menu-hover-bg-light-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon,
.menu-hover-bg-light-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
.menu-hover-bg-light-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, .menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,
.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
.menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i {
  color: #009EF7;
}
.menu-hover-bg-light-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, .menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-hover-bg-light-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, .menu-hover-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-active-bg-light-primary .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #F1FAFF;
  color: #009EF7;
}
.menu-active-bg-light-primary .menu-item .menu-link.active .menu-title {
  color: #009EF7;
}
.menu-active-bg-light-primary .menu-item .menu-link.active .menu-icon,
.menu-active-bg-light-primary .menu-item .menu-link.active .menu-icon .svg-icon,
.menu-active-bg-light-primary .menu-item .menu-link.active .menu-icon i {
  color: #009EF7;
}
.menu-active-bg-light-primary .menu-item .menu-link.active .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-active-bg-light-primary .menu-item .menu-link.active .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-state-bg-light-primary .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #F1FAFF;
  color: #009EF7;
}
.menu-state-bg-light-primary .menu-item.show > .menu-link .menu-title {
  color: #009EF7;
}
.menu-state-bg-light-primary .menu-item.show > .menu-link .menu-icon,
.menu-state-bg-light-primary .menu-item.show > .menu-link .menu-icon .svg-icon,
.menu-state-bg-light-primary .menu-item.show > .menu-link .menu-icon i {
  color: #009EF7;
}
.menu-state-bg-light-primary .menu-item.show > .menu-link .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-state-bg-light-primary .menu-item.show > .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}
.menu-state-bg-light-primary .menu-item.here > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #F1FAFF;
  color: #009EF7;
}
.menu-state-bg-light-primary .menu-item.here > .menu-link .menu-title {
  color: #009EF7;
}
.menu-state-bg-light-primary .menu-item.here > .menu-link .menu-icon,
.menu-state-bg-light-primary .menu-item.here > .menu-link .menu-icon .svg-icon,
.menu-state-bg-light-primary .menu-item.here > .menu-link .menu-icon i {
  color: #009EF7;
}
.menu-state-bg-light-primary .menu-item.here > .menu-link .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-state-bg-light-primary .menu-item.here > .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}
.menu-state-bg-light-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), .menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #F1FAFF;
  color: #009EF7;
}
.menu-state-bg-light-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-title, .menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title {
  color: #009EF7;
}
.menu-state-bg-light-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon,
.menu-state-bg-light-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
.menu-state-bg-light-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, .menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,
.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
.menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i {
  color: #009EF7;
}
.menu-state-bg-light-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, .menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-state-bg-light-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, .menu-state-bg-light-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}
.menu-state-bg-light-primary .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #F1FAFF;
  color: #009EF7;
}
.menu-state-bg-light-primary .menu-item .menu-link.active .menu-title {
  color: #009EF7;
}
.menu-state-bg-light-primary .menu-item .menu-link.active .menu-icon,
.menu-state-bg-light-primary .menu-item .menu-link.active .menu-icon .svg-icon,
.menu-state-bg-light-primary .menu-item .menu-link.active .menu-icon i {
  color: #009EF7;
}
.menu-state-bg-light-primary .menu-item .menu-link.active .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-state-bg-light-primary .menu-item .menu-link.active .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-hover-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), .menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7;
}
.menu-hover-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-title, .menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title {
  color: #009EF7;
}
.menu-hover-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon,
.menu-hover-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
.menu-hover-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, .menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,
.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
.menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i {
  color: #009EF7;
}
.menu-hover-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, .menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-hover-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, .menu-hover-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-show-primary .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7;
}
.menu-show-primary .menu-item.show > .menu-link .menu-title {
  color: #009EF7;
}
.menu-show-primary .menu-item.show > .menu-link .menu-icon,
.menu-show-primary .menu-item.show > .menu-link .menu-icon .svg-icon,
.menu-show-primary .menu-item.show > .menu-link .menu-icon i {
  color: #009EF7;
}
.menu-show-primary .menu-item.show > .menu-link .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-show-primary .menu-item.show > .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-here-primary .menu-item.here > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7;
}
.menu-here-primary .menu-item.here > .menu-link .menu-title {
  color: #009EF7;
}
.menu-here-primary .menu-item.here > .menu-link .menu-icon,
.menu-here-primary .menu-item.here > .menu-link .menu-icon .svg-icon,
.menu-here-primary .menu-item.here > .menu-link .menu-icon i {
  color: #009EF7;
}
.menu-here-primary .menu-item.here > .menu-link .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-here-primary .menu-item.here > .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-active-primary .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7;
}
.menu-active-primary .menu-item .menu-link.active .menu-title {
  color: #009EF7;
}
.menu-active-primary .menu-item .menu-link.active .menu-icon,
.menu-active-primary .menu-item .menu-link.active .menu-icon .svg-icon,
.menu-active-primary .menu-item .menu-link.active .menu-icon i {
  color: #009EF7;
}
.menu-active-primary .menu-item .menu-link.active .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-active-primary .menu-item .menu-link.active .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-state-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), .menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7;
}
.menu-state-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-title, .menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title {
  color: #009EF7;
}
.menu-state-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon,
.menu-state-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
.menu-state-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, .menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,
.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
.menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i {
  color: #009EF7;
}
.menu-state-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, .menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-state-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, .menu-state-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}
.menu-state-primary .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7;
}
.menu-state-primary .menu-item.show > .menu-link .menu-title {
  color: #009EF7;
}
.menu-state-primary .menu-item.show > .menu-link .menu-icon,
.menu-state-primary .menu-item.show > .menu-link .menu-icon .svg-icon,
.menu-state-primary .menu-item.show > .menu-link .menu-icon i {
  color: #009EF7;
}
.menu-state-primary .menu-item.show > .menu-link .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-state-primary .menu-item.show > .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}
.menu-state-primary .menu-item.here > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7;
}
.menu-state-primary .menu-item.here > .menu-link .menu-title {
  color: #009EF7;
}
.menu-state-primary .menu-item.here > .menu-link .menu-icon,
.menu-state-primary .menu-item.here > .menu-link .menu-icon .svg-icon,
.menu-state-primary .menu-item.here > .menu-link .menu-icon i {
  color: #009EF7;
}
.menu-state-primary .menu-item.here > .menu-link .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-state-primary .menu-item.here > .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}
.menu-state-primary .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7;
}
.menu-state-primary .menu-item .menu-link.active .menu-title {
  color: #009EF7;
}
.menu-state-primary .menu-item .menu-link.active .menu-icon,
.menu-state-primary .menu-item .menu-link.active .menu-icon .svg-icon,
.menu-state-primary .menu-item .menu-link.active .menu-icon i {
  color: #009EF7;
}
.menu-state-primary .menu-item .menu-link.active .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-state-primary .menu-item .menu-link.active .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-hover-title-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), .menu-hover-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7;
}
.menu-hover-title-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-title, .menu-hover-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title {
  color: #009EF7;
}

.menu-here-title-primary .menu-item.here > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7;
}
.menu-here-title-primary .menu-item.here > .menu-link .menu-title {
  color: #009EF7;
}

.menu-show-title-primary .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7;
}
.menu-show-title-primary .menu-item.show > .menu-link .menu-title {
  color: #009EF7;
}

.menu-active-title-primary .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7;
}
.menu-active-title-primary .menu-item .menu-link.active .menu-title {
  color: #009EF7;
}

.menu-state-title-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), .menu-state-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7;
}
.menu-state-title-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-title, .menu-state-title-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title {
  color: #009EF7;
}
.menu-state-title-primary .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7;
}
.menu-state-title-primary .menu-item.show > .menu-link .menu-title {
  color: #009EF7;
}
.menu-state-title-primary .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
  color: #009EF7;
}
.menu-state-title-primary .menu-item .menu-link.active .menu-title {
  color: #009EF7;
}

.menu-hover-icon-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), .menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-hover-icon-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon,
.menu-hover-icon-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
.menu-hover-icon-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, .menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,
.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
.menu-hover-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i {
  color: #009EF7;
}

.menu-here-icon-primary .menu-item.here > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-here-icon-primary .menu-item.here > .menu-link .menu-icon,
.menu-here-icon-primary .menu-item.here > .menu-link .menu-icon .svg-icon,
.menu-here-icon-primary .menu-item.here > .menu-link .menu-icon i {
  color: #009EF7;
}

.menu-show-icon-primary .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-show-icon-primary .menu-item.show > .menu-link .menu-icon,
.menu-show-icon-primary .menu-item.show > .menu-link .menu-icon .svg-icon,
.menu-show-icon-primary .menu-item.show > .menu-link .menu-icon i {
  color: #009EF7;
}

.menu-active-icon-primary .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-active-icon-primary .menu-item .menu-link.active .menu-icon,
.menu-active-icon-primary .menu-item .menu-link.active .menu-icon .svg-icon,
.menu-active-icon-primary .menu-item .menu-link.active .menu-icon i {
  color: #009EF7;
}

.menu-state-icon-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), .menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-state-icon-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon,
.menu-state-icon-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
.menu-state-icon-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, .menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,
.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
.menu-state-icon-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i {
  color: #009EF7;
}
.menu-state-icon-primary .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-state-icon-primary .menu-item.show > .menu-link .menu-icon,
.menu-state-icon-primary .menu-item.show > .menu-link .menu-icon .svg-icon,
.menu-state-icon-primary .menu-item.show > .menu-link .menu-icon i {
  color: #009EF7;
}
.menu-state-icon-primary .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-state-icon-primary .menu-item .menu-link.active .menu-icon,
.menu-state-icon-primary .menu-item .menu-link.active .menu-icon .svg-icon,
.menu-state-icon-primary .menu-item .menu-link.active .menu-icon i {
  color: #009EF7;
}

.menu-hover-bullet-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), .menu-hover-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-hover-bullet-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, .menu-hover-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet {
  background-color: #009EF7;
}

.menu-show-bullet-primary .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-show-bullet-primary .menu-item.show > .menu-link .menu-bullet .bullet {
  background-color: #009EF7;
}

.menu-here-bullet-primary .menu-item.here > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-here-bullet-primary .menu-item.here > .menu-link .menu-bullet .bullet {
  background-color: #009EF7;
}

.menu-active-bullet-primary .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-active-bullet-primary .menu-item .menu-link.active .menu-bullet .bullet {
  background-color: #009EF7;
}

.menu-state-bullet-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), .menu-state-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-state-bullet-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, .menu-state-bullet-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-state-bullet-primary .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-state-bullet-primary .menu-item.show > .menu-link .menu-bullet .bullet {
  background-color: #009EF7;
}
.menu-state-bullet-primary .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-state-bullet-primary .menu-item .menu-link.active .menu-bullet .bullet {
  background-color: #009EF7;
}

.menu-hover-arrow-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), .menu-hover-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-hover-arrow-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, .menu-hover-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-here-arrow-primary .menu-item.here > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-here-arrow-primary .menu-item.here > .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-show-arrow-primary .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-show-arrow-primary .menu-item.show > .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-active-arrow-primary .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-active-arrow-primary .menu-item .menu-link.active .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.menu-state-arrow-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), .menu-state-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-state-arrow-primary .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, .menu-state-arrow-primary .menu-item:not(.here) .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}
.menu-state-arrow-primary .menu-item.show > .menu-link {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-state-arrow-primary .menu-item.show > .menu-link .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}
.menu-state-arrow-primary .menu-item .menu-link.active {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.menu-state-arrow-primary .menu-item .menu-link.active .menu-arrow:after {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
  /*rtl:begin:remove*/
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23009EF7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
  /*rtl:end:remove*/
}

.anchor {
  display: flex;
  align-items: center;
}
.anchor a {
  position: relative;
  display: none;
  align-items: center;
  justify-content: flex-start;
  height: 1em;
  width: 1.25em;
  margin-left: -1.25em;
  font-weight: 500;
  font-size: 0.8em;
  color: #A1A5B7;
  transition: all 0.2s ease;
}
.anchor a:before {
  content: "#";
}
.anchor:hover a {
  display: flex;
}
.anchor:hover a:hover {
  color: #009EF7;
  transition: all 0.2s ease;
}

.card {
  border: 0;
  box-shadow: 0px 0px 20px 0px rgba(76, 87, 125, 0.02);
}
.card .card-header {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  min-height: 70px;
  padding: 0 2.25rem;
  background-color: transparent;
  border-bottom: 1px solid #EFF2F5;
}
.card .card-header .card-title {
  display: flex;
  align-items: center;
  margin: 0.5rem;
  margin-left: 0;
}
.card .card-header .card-title.flex-column {
  align-items: flex-start;
  justify-content: center;
}
.card .card-header .card-title .card-icon {
  margin-right: 0.75rem;
  line-height: 0;
}
.card .card-header .card-title .card-icon i {
  font-size: 1.25rem;
  color: #7E8299;
  line-height: 0;
}
.card .card-header .card-title .card-icon i:after, .card .card-header .card-title .card-icon i:before {
  line-height: 0;
}
.card .card-header .card-title .card-icon .svg-icon {
  color: #7E8299;
}
.card .card-header .card-title .card-icon .svg-icon svg {
  height: 24px;
  width: 24px;
}
.card .card-header .card-title,
.card .card-header .card-title .card-label {
  font-weight: 500;
  font-size: 1.275rem;
  color: #181C32;
}
.card .card-header .card-title .card-label {
  margin: 0 0.75rem 0 0;
  flex-wrap: wrap;
}
.card .card-header .card-title small, .card .card-header .card-title .small {
  color: #A1A5B7;
  font-size: 1rem;
}
.card .card-header .card-title h1, .card .card-header .card-title .h1, .card .card-header .card-title h2, .card .card-header .card-title .h2, .card .card-header .card-title h3, .card .card-header .card-title .h3, .card .card-header .card-title h4, .card .card-header .card-title .h4, .card .card-header .card-title h5, .card .card-header .card-title .h5, .card .card-header .card-title h6, .card .card-header .card-title .h6 {
  margin-bottom: 0;
}
.card .card-header .card-toolbar {
  display: flex;
  align-items: center;
  margin: 0.5rem 0;
  flex-wrap: wrap;
}
.card .card-body {
  padding: 2rem 2.25rem;
}
.card .card-footer {
  padding: 2rem 2.25rem;
  background-color: transparent;
  border-top: 1px solid #EFF2F5;
}
.card .card-scroll {
  position: relative;
  overflow: auto;
}
.card.card-px-0 .card-header,
.card.card-px-0 .card-body,
.card.card-px-0 .card-footer {
  padding-left: 0;
  padding-right: 0;
}
.card.card-py-0 .card-header,
.card.card-py-0 .card-body,
.card.card-py-0 .card-footer {
  padding-top: 0;
  padding-bottom: 0;
}
.card.card-p-0 .card-header,
.card.card-p-0 .card-body,
.card.card-p-0 .card-footer {
  padding: 0;
}
.card.card-dashed {
  box-shadow: none;
  border: 1px dashed #E4E6EF;
}
.card.card-dashed > .card-header {
  border-bottom: 1px dashed #E4E6EF;
}
.card.card-dashed > .card-footer {
  border-top: 1px dashed #E4E6EF;
}
.card.card-bordered {
  box-shadow: none;
  border: 1px solid #EFF2F5;
}
.card.card-flush > .card-header {
  border-bottom: 0;
}
.card.card-flush > .card-footer {
  border-top: 0;
}
.card.card-shadow {
  box-shadow: 0px 0px 20px 0px rgba(76, 87, 125, 0.02);
  border: 0;
}

.card.card-stretch {
  height: calc(100% - var(--bs-gutter-y));
}
.card.card-stretch-75 {
  height: calc(75% - var(--bs-gutter-y));
}
.card.card-stretch-50 {
  height: calc(50% - var(--bs-gutter-y));
}
.card.card-stretch-33 {
  height: calc(33.333% - var(--bs-gutter-y));
}
.card.card-stretch-25 {
  height: calc(25% - var(--bs-gutter-y));
}
.card .card-header-stretch {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  align-items: stretch;
}
.card .card-header-stretch .card-toolbar {
  margin: 0;
  align-items: stretch;
}
@media (min-width: 576px) {
  .card.card-sm-stretch {
    height: calc(100% - var(--bs-gutter-y));
  }
  .card.card-sm-stretch-75 {
    height: calc(75% - var(--bs-gutter-y));
  }
  .card.card-sm-stretch-50 {
    height: calc(50% - var(--bs-gutter-y));
  }
  .card.card-sm-stretch-33 {
    height: calc(33.333% - var(--bs-gutter-y));
  }
  .card.card-sm-stretch-25 {
    height: calc(25% - var(--bs-gutter-y));
  }
  .card .card-header-sm-stretch {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: stretch;
  }
  .card .card-header-sm-stretch .card-toolbar {
    margin: 0;
    align-items: stretch;
  }
}
@media (min-width: 768px) {
  .card.card-md-stretch {
    height: calc(100% - var(--bs-gutter-y));
  }
  .card.card-md-stretch-75 {
    height: calc(75% - var(--bs-gutter-y));
  }
  .card.card-md-stretch-50 {
    height: calc(50% - var(--bs-gutter-y));
  }
  .card.card-md-stretch-33 {
    height: calc(33.333% - var(--bs-gutter-y));
  }
  .card.card-md-stretch-25 {
    height: calc(25% - var(--bs-gutter-y));
  }
  .card .card-header-md-stretch {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: stretch;
  }
  .card .card-header-md-stretch .card-toolbar {
    margin: 0;
    align-items: stretch;
  }
}
@media (min-width: 992px) {
  .card.card-lg-stretch {
    height: calc(100% - var(--bs-gutter-y));
  }
  .card.card-lg-stretch-75 {
    height: calc(75% - var(--bs-gutter-y));
  }
  .card.card-lg-stretch-50 {
    height: calc(50% - var(--bs-gutter-y));
  }
  .card.card-lg-stretch-33 {
    height: calc(33.333% - var(--bs-gutter-y));
  }
  .card.card-lg-stretch-25 {
    height: calc(25% - var(--bs-gutter-y));
  }
  .card .card-header-lg-stretch {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: stretch;
  }
  .card .card-header-lg-stretch .card-toolbar {
    margin: 0;
    align-items: stretch;
  }
}
@media (min-width: 1200px) {
  .card.card-xl-stretch {
    height: calc(100% - var(--bs-gutter-y));
  }
  .card.card-xl-stretch-75 {
    height: calc(75% - var(--bs-gutter-y));
  }
  .card.card-xl-stretch-50 {
    height: calc(50% - var(--bs-gutter-y));
  }
  .card.card-xl-stretch-33 {
    height: calc(33.333% - var(--bs-gutter-y));
  }
  .card.card-xl-stretch-25 {
    height: calc(25% - var(--bs-gutter-y));
  }
  .card .card-header-xl-stretch {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: stretch;
  }
  .card .card-header-xl-stretch .card-toolbar {
    margin: 0;
    align-items: stretch;
  }
}
@media (min-width: 1400px) {
  .card.card-xxl-stretch {
    height: calc(100% - var(--bs-gutter-y));
  }
  .card.card-xxl-stretch-75 {
    height: calc(75% - var(--bs-gutter-y));
  }
  .card.card-xxl-stretch-50 {
    height: calc(50% - var(--bs-gutter-y));
  }
  .card.card-xxl-stretch-33 {
    height: calc(33.333% - var(--bs-gutter-y));
  }
  .card.card-xxl-stretch-25 {
    height: calc(25% - var(--bs-gutter-y));
  }
  .card .card-header-xxl-stretch {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    align-items: stretch;
  }
  .card .card-header-xxl-stretch .card-toolbar {
    margin: 0;
    align-items: stretch;
  }
}

.card-p {
  padding: 2rem 2.25rem !important;
}

.card-px {
  padding-left: 2.25rem !important;
  padding-right: 2.25rem !important;
}

.card-shadow {
  box-shadow: 0px 0px 20px 0px rgba(76, 87, 125, 0.02);
}

.card-py {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.card-rounded {
  border-radius: 0.625rem;
}

.card-rounded-start {
  border-top-left-radius: 0.625rem;
  border-bottom-left-radius: 0.625rem;
}

.card-rounded-end {
  border-top-right-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}

.card-rounded-top {
  border-top-left-radius: 0.625rem;
  border-top-right-radius: 0.625rem;
}

.card-rounded-bottom {
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}

@media (max-width: 767.98px) {
  .card > .card-header:not(.flex-nowrap) {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  background-color: transparent;
  padding: 0;
  margin: 0;
}
.breadcrumb .breadcrumb-item {
  display: flex;
  align-items: center;
  padding-left: 0;
  padding-right: 0.5rem;
}
.breadcrumb .breadcrumb-item:last-child {
  padding-right: 0;
}
.breadcrumb .breadcrumb-item:after {
  content: "/";
  padding-left: 0.5rem;
}
.breadcrumb .breadcrumb-item:before {
  display: none;
}
.breadcrumb .breadcrumb-item:last-child:after {
  display: none;
}

.breadcrumb-line .breadcrumb-item:after {
  content: "-";
}

.breadcrumb-dot .breadcrumb-item:after {
  content: "•";
}

.breadcrumb-separatorless .breadcrumb-item:after {
  display: none;
}

.btn {
  outline: none !important;
}
.btn:not(.btn-shadow):not(.shadow):not(.shadow-sm):not(.shadow-lg) {
  box-shadow: none !important;
}
.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon) {
  border: 0;
  padding: calc(0.75rem + 1px) calc(1.5rem + 1px);
}
.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon).btn-lg, .btn-group-lg > .btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon) {
  padding: calc(0.825rem + 1px) calc(1.75rem + 1px);
}
.btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon).btn-sm, .btn-group-sm > .btn:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush):not(.btn-icon) {
  padding: calc(0.55rem + 1px) calc(1.25rem + 1px);
}
.btn.btn-link {
  border: 0;
  border-radius: 0;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-decoration: none;
  font-weight: 500;
}
.btn.btn-outline-dashed {
  border: 1px dashed #E4E6EF;
}
.btn.btn-outline-default {
  border: 1px solid #E4E6EF;
}
.btn.btn-flush {
  appearance: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
  cursor: pointer;
  background-color: transparent;
  outline: none !important;
  margin: 0;
  padding: 0;
}
.btn.btn-flex {
  display: inline-flex;
  align-items: center;
}
.btn.btn-trim-start {
  justify-content: flex-start !important;
  padding-left: 0 !important;
}
.btn.btn-trim-end {
  justify-content: flex-end !important;
  padding-right: 0 !important;
}

.btn i {
  display: inline-flex;
  font-size: 1rem;
  padding-right: 0.35rem;
  vertical-align: middle;
  line-height: 0;
}
.btn .svg-icon {
  flex-shrink: 0;
  line-height: 0;
  margin-right: 0.5rem;
}
.btn.btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: calc(1.5em + 1.5rem + 2px);
  width: calc(1.5em + 1.5rem + 2px);
}
.btn.btn-icon:not(.btn-outline):not(.btn-dashed):not(.border-hover):not(.border-active):not(.btn-flush) {
  border: 0;
}
.btn.btn-icon.btn-sm, .btn-group-sm > .btn.btn-icon {
  height: calc(1.5em + 1.1rem + 2px);
  width: calc(1.5em + 1.1rem + 2px);
}
.btn.btn-icon.btn-lg, .btn-group-lg > .btn.btn-icon {
  height: calc(1.5em + 1.65rem + 2px);
  width: calc(1.5em + 1.65rem + 2px);
}
.btn.btn-icon.btn-circle {
  border-radius: 50%;
}
.btn.btn-icon i,
.btn.btn-icon .svg-icon {
  padding: 0;
  margin: 0;
  line-height: 1;
}

.btn.btn-hover-rise {
  transition: transform 0.3s ease;
}
.btn.btn-hover-rise:hover {
  transform: translateY(-10%);
  transition: transform 0.3s ease;
}

.btn.btn-hover-scale {
  transition: transform 0.3s ease;
}
.btn.btn-hover-scale:hover {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.btn.btn-hover-rotate-end {
  transition: transform 0.3s ease;
}
.btn.btn-hover-rotate-end:hover {
  transform: rotate(4deg);
  transition: transform 0.3s ease;
}

.btn.btn-hover-rotate-start {
  transition: transform 0.3s ease;
}
.btn.btn-hover-rotate-start:hover {
  transform: rotate(-4deg);
  transition: transform 0.3s ease;
}

.btn.btn-white {
  color: #7E8299;
  border-color: #ffffff;
  background-color: #ffffff;
}
.btn.btn-white i,
.btn.btn-white .svg-icon {
  color: #7E8299;
}
.btn.btn-white.dropdown-toggle:after {
  color: #7E8299;
}
.btn-check:checked + .btn.btn-white, .btn-check:active + .btn.btn-white, .btn.btn-white:focus:not(.btn-active), .btn.btn-white:hover:not(.btn-active), .btn.btn-white:active:not(.btn-active), .btn.btn-white.active, .btn.btn-white.show, .show > .btn.btn-white {
  color: #7E8299;
  border-color: #F5F8FA;
  background-color: #F5F8FA !important;
}
.btn-check:checked + .btn.btn-white i,
.btn-check:checked + .btn.btn-white .svg-icon, .btn-check:active + .btn.btn-white i,
.btn-check:active + .btn.btn-white .svg-icon, .btn.btn-white:focus:not(.btn-active) i,
.btn.btn-white:focus:not(.btn-active) .svg-icon, .btn.btn-white:hover:not(.btn-active) i,
.btn.btn-white:hover:not(.btn-active) .svg-icon, .btn.btn-white:active:not(.btn-active) i,
.btn.btn-white:active:not(.btn-active) .svg-icon, .btn.btn-white.active i,
.btn.btn-white.active .svg-icon, .btn.btn-white.show i,
.btn.btn-white.show .svg-icon, .show > .btn.btn-white i,
.show > .btn.btn-white .svg-icon {
  color: #7E8299;
}
.btn-check:checked + .btn.btn-white.dropdown-toggle:after, .btn-check:active + .btn.btn-white.dropdown-toggle:after, .btn.btn-white:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-white:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-white:active:not(.btn-active).dropdown-toggle:after, .btn.btn-white.active.dropdown-toggle:after, .btn.btn-white.show.dropdown-toggle:after, .show > .btn.btn-white.dropdown-toggle:after {
  color: #7E8299;
}

.btn.btn-bg-white {
  border-color: #ffffff;
  background-color: #ffffff;
}
.btn-check:checked + .btn.btn-active-white, .btn-check:active + .btn.btn-active-white, .btn.btn-active-white:focus:not(.btn-active), .btn.btn-active-white:hover:not(.btn-active), .btn.btn-active-white:active:not(.btn-active), .btn.btn-active-white.active, .btn.btn-active-white.show, .show > .btn.btn-active-white {
  color: #7E8299;
  border-color: #ffffff;
  background-color: #ffffff !important;
}
.btn-check:checked + .btn.btn-active-white i,
.btn-check:checked + .btn.btn-active-white .svg-icon, .btn-check:active + .btn.btn-active-white i,
.btn-check:active + .btn.btn-active-white .svg-icon, .btn.btn-active-white:focus:not(.btn-active) i,
.btn.btn-active-white:focus:not(.btn-active) .svg-icon, .btn.btn-active-white:hover:not(.btn-active) i,
.btn.btn-active-white:hover:not(.btn-active) .svg-icon, .btn.btn-active-white:active:not(.btn-active) i,
.btn.btn-active-white:active:not(.btn-active) .svg-icon, .btn.btn-active-white.active i,
.btn.btn-active-white.active .svg-icon, .btn.btn-active-white.show i,
.btn.btn-active-white.show .svg-icon, .show > .btn.btn-active-white i,
.show > .btn.btn-active-white .svg-icon {
  color: #7E8299;
}
.btn-check:checked + .btn.btn-active-white.dropdown-toggle:after, .btn-check:active + .btn.btn-active-white.dropdown-toggle:after, .btn.btn-active-white:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-white:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-white:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-white.active.dropdown-toggle:after, .btn.btn-active-white.show.dropdown-toggle:after, .show > .btn.btn-active-white.dropdown-toggle:after {
  color: #7E8299;
}

.btn.btn-light {
  color: #7E8299;
  border-color: #F5F8FA;
  background-color: #F5F8FA;
}
.btn.btn-light i,
.btn.btn-light .svg-icon {
  color: #7E8299;
}
.btn.btn-light.dropdown-toggle:after {
  color: #7E8299;
}
.btn-check:checked + .btn.btn-light, .btn-check:active + .btn.btn-light, .btn.btn-light:focus:not(.btn-active), .btn.btn-light:hover:not(.btn-active), .btn.btn-light:active:not(.btn-active), .btn.btn-light.active, .btn.btn-light.show, .show > .btn.btn-light {
  color: #7E8299;
  border-color: #EFF2F5;
  background-color: #EFF2F5 !important;
}
.btn-check:checked + .btn.btn-light i,
.btn-check:checked + .btn.btn-light .svg-icon, .btn-check:active + .btn.btn-light i,
.btn-check:active + .btn.btn-light .svg-icon, .btn.btn-light:focus:not(.btn-active) i,
.btn.btn-light:focus:not(.btn-active) .svg-icon, .btn.btn-light:hover:not(.btn-active) i,
.btn.btn-light:hover:not(.btn-active) .svg-icon, .btn.btn-light:active:not(.btn-active) i,
.btn.btn-light:active:not(.btn-active) .svg-icon, .btn.btn-light.active i,
.btn.btn-light.active .svg-icon, .btn.btn-light.show i,
.btn.btn-light.show .svg-icon, .show > .btn.btn-light i,
.show > .btn.btn-light .svg-icon {
  color: #7E8299;
}
.btn-check:checked + .btn.btn-light.dropdown-toggle:after, .btn-check:active + .btn.btn-light.dropdown-toggle:after, .btn.btn-light:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-light:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-light:active:not(.btn-active).dropdown-toggle:after, .btn.btn-light.active.dropdown-toggle:after, .btn.btn-light.show.dropdown-toggle:after, .show > .btn.btn-light.dropdown-toggle:after {
  color: #7E8299;
}

.btn.btn-bg-light {
  border-color: #F5F8FA;
  background-color: #F5F8FA;
}
.btn-check:checked + .btn.btn-active-light, .btn-check:active + .btn.btn-active-light, .btn.btn-active-light:focus:not(.btn-active), .btn.btn-active-light:hover:not(.btn-active), .btn.btn-active-light:active:not(.btn-active), .btn.btn-active-light.active, .btn.btn-active-light.show, .show > .btn.btn-active-light {
  color: #7E8299;
  border-color: #F5F8FA;
  background-color: #F5F8FA !important;
}
.btn-check:checked + .btn.btn-active-light i,
.btn-check:checked + .btn.btn-active-light .svg-icon, .btn-check:active + .btn.btn-active-light i,
.btn-check:active + .btn.btn-active-light .svg-icon, .btn.btn-active-light:focus:not(.btn-active) i,
.btn.btn-active-light:focus:not(.btn-active) .svg-icon, .btn.btn-active-light:hover:not(.btn-active) i,
.btn.btn-active-light:hover:not(.btn-active) .svg-icon, .btn.btn-active-light:active:not(.btn-active) i,
.btn.btn-active-light:active:not(.btn-active) .svg-icon, .btn.btn-active-light.active i,
.btn.btn-active-light.active .svg-icon, .btn.btn-active-light.show i,
.btn.btn-active-light.show .svg-icon, .show > .btn.btn-active-light i,
.show > .btn.btn-active-light .svg-icon {
  color: #7E8299;
}
.btn-check:checked + .btn.btn-active-light.dropdown-toggle:after, .btn-check:active + .btn.btn-active-light.dropdown-toggle:after, .btn.btn-active-light:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light.active.dropdown-toggle:after, .btn.btn-active-light.show.dropdown-toggle:after, .show > .btn.btn-active-light.dropdown-toggle:after {
  color: #7E8299;
}

.btn.btn-primary {
  color: #FFFFFF;
  border-color: #009EF7;
  background-color: #009EF7;
}
.btn.btn-primary i,
.btn.btn-primary .svg-icon {
  color: #FFFFFF;
}
.btn.btn-primary.dropdown-toggle:after {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-primary, .btn-check:active + .btn.btn-primary, .btn.btn-primary:focus:not(.btn-active), .btn.btn-primary:hover:not(.btn-active), .btn.btn-primary:active:not(.btn-active), .btn.btn-primary.active, .btn.btn-primary.show, .show > .btn.btn-primary {
  color: #FFFFFF;
  border-color: #0095E8;
  background-color: #0095E8 !important;
}
.btn-check:checked + .btn.btn-primary i,
.btn-check:checked + .btn.btn-primary .svg-icon, .btn-check:active + .btn.btn-primary i,
.btn-check:active + .btn.btn-primary .svg-icon, .btn.btn-primary:focus:not(.btn-active) i,
.btn.btn-primary:focus:not(.btn-active) .svg-icon, .btn.btn-primary:hover:not(.btn-active) i,
.btn.btn-primary:hover:not(.btn-active) .svg-icon, .btn.btn-primary:active:not(.btn-active) i,
.btn.btn-primary:active:not(.btn-active) .svg-icon, .btn.btn-primary.active i,
.btn.btn-primary.active .svg-icon, .btn.btn-primary.show i,
.btn.btn-primary.show .svg-icon, .show > .btn.btn-primary i,
.show > .btn.btn-primary .svg-icon {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-primary.dropdown-toggle:after, .btn-check:active + .btn.btn-primary.dropdown-toggle:after, .btn.btn-primary:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-primary:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-primary:active:not(.btn-active).dropdown-toggle:after, .btn.btn-primary.active.dropdown-toggle:after, .btn.btn-primary.show.dropdown-toggle:after, .show > .btn.btn-primary.dropdown-toggle:after {
  color: #FFFFFF;
}

.btn.btn-light-primary {
  color: #009EF7;
  border-color: #F1FAFF;
  background-color: #F1FAFF;
}
.btn.btn-light-primary i,
.btn.btn-light-primary .svg-icon {
  color: #009EF7;
}
.btn.btn-light-primary.dropdown-toggle:after {
  color: #009EF7;
}
.btn-check:checked + .btn.btn-light-primary, .btn-check:active + .btn.btn-light-primary, .btn.btn-light-primary:focus:not(.btn-active), .btn.btn-light-primary:hover:not(.btn-active), .btn.btn-light-primary:active:not(.btn-active), .btn.btn-light-primary.active, .btn.btn-light-primary.show, .show > .btn.btn-light-primary {
  color: #FFFFFF;
  border-color: #009EF7;
  background-color: #009EF7 !important;
}
.btn-check:checked + .btn.btn-light-primary i,
.btn-check:checked + .btn.btn-light-primary .svg-icon, .btn-check:active + .btn.btn-light-primary i,
.btn-check:active + .btn.btn-light-primary .svg-icon, .btn.btn-light-primary:focus:not(.btn-active) i,
.btn.btn-light-primary:focus:not(.btn-active) .svg-icon, .btn.btn-light-primary:hover:not(.btn-active) i,
.btn.btn-light-primary:hover:not(.btn-active) .svg-icon, .btn.btn-light-primary:active:not(.btn-active) i,
.btn.btn-light-primary:active:not(.btn-active) .svg-icon, .btn.btn-light-primary.active i,
.btn.btn-light-primary.active .svg-icon, .btn.btn-light-primary.show i,
.btn.btn-light-primary.show .svg-icon, .show > .btn.btn-light-primary i,
.show > .btn.btn-light-primary .svg-icon {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-light-primary.dropdown-toggle:after, .btn-check:active + .btn.btn-light-primary.dropdown-toggle:after, .btn.btn-light-primary:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-light-primary:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-light-primary:active:not(.btn-active).dropdown-toggle:after, .btn.btn-light-primary.active.dropdown-toggle:after, .btn.btn-light-primary.show.dropdown-toggle:after, .show > .btn.btn-light-primary.dropdown-toggle:after {
  color: #FFFFFF;
}

.btn.btn-bg-primary {
  border-color: #009EF7;
  background-color: #009EF7;
}
.btn-check:checked + .btn.btn-active-primary, .btn-check:active + .btn.btn-active-primary, .btn.btn-active-primary:focus:not(.btn-active), .btn.btn-active-primary:hover:not(.btn-active), .btn.btn-active-primary:active:not(.btn-active), .btn.btn-active-primary.active, .btn.btn-active-primary.show, .show > .btn.btn-active-primary {
  color: #FFFFFF;
  border-color: #009EF7;
  background-color: #009EF7 !important;
}
.btn-check:checked + .btn.btn-active-primary i,
.btn-check:checked + .btn.btn-active-primary .svg-icon, .btn-check:active + .btn.btn-active-primary i,
.btn-check:active + .btn.btn-active-primary .svg-icon, .btn.btn-active-primary:focus:not(.btn-active) i,
.btn.btn-active-primary:focus:not(.btn-active) .svg-icon, .btn.btn-active-primary:hover:not(.btn-active) i,
.btn.btn-active-primary:hover:not(.btn-active) .svg-icon, .btn.btn-active-primary:active:not(.btn-active) i,
.btn.btn-active-primary:active:not(.btn-active) .svg-icon, .btn.btn-active-primary.active i,
.btn.btn-active-primary.active .svg-icon, .btn.btn-active-primary.show i,
.btn.btn-active-primary.show .svg-icon, .show > .btn.btn-active-primary i,
.show > .btn.btn-active-primary .svg-icon {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-active-primary.dropdown-toggle:after, .btn-check:active + .btn.btn-active-primary.dropdown-toggle:after, .btn.btn-active-primary:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-primary:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-primary:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-primary.active.dropdown-toggle:after, .btn.btn-active-primary.show.dropdown-toggle:after, .show > .btn.btn-active-primary.dropdown-toggle:after {
  color: #FFFFFF;
}

.btn-check:checked + .btn.btn-active-light-primary, .btn-check:active + .btn.btn-active-light-primary, .btn.btn-active-light-primary:focus:not(.btn-active), .btn.btn-active-light-primary:hover:not(.btn-active), .btn.btn-active-light-primary:active:not(.btn-active), .btn.btn-active-light-primary.active, .btn.btn-active-light-primary.show, .show > .btn.btn-active-light-primary {
  color: #009EF7;
  border-color: #F1FAFF;
  background-color: #F1FAFF !important;
}
.btn-check:checked + .btn.btn-active-light-primary i,
.btn-check:checked + .btn.btn-active-light-primary .svg-icon, .btn-check:active + .btn.btn-active-light-primary i,
.btn-check:active + .btn.btn-active-light-primary .svg-icon, .btn.btn-active-light-primary:focus:not(.btn-active) i,
.btn.btn-active-light-primary:focus:not(.btn-active) .svg-icon, .btn.btn-active-light-primary:hover:not(.btn-active) i,
.btn.btn-active-light-primary:hover:not(.btn-active) .svg-icon, .btn.btn-active-light-primary:active:not(.btn-active) i,
.btn.btn-active-light-primary:active:not(.btn-active) .svg-icon, .btn.btn-active-light-primary.active i,
.btn.btn-active-light-primary.active .svg-icon, .btn.btn-active-light-primary.show i,
.btn.btn-active-light-primary.show .svg-icon, .show > .btn.btn-active-light-primary i,
.show > .btn.btn-active-light-primary .svg-icon {
  color: #009EF7;
}
.btn-check:checked + .btn.btn-active-light-primary.dropdown-toggle:after, .btn-check:active + .btn.btn-active-light-primary.dropdown-toggle:after, .btn.btn-active-light-primary:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-primary:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-primary:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-primary.active.dropdown-toggle:after, .btn.btn-active-light-primary.show.dropdown-toggle:after, .show > .btn.btn-active-light-primary.dropdown-toggle:after {
  color: #009EF7;
}
.btn.btn-active-light-primary.btn-outline:not(.btn-outline-default) {
  border-color: #009EF7 !important;
}

.btn.btn-secondary {
  color: #3F4254;
  border-color: #E4E6EF;
  background-color: #E4E6EF;
}
.btn.btn-secondary i,
.btn.btn-secondary .svg-icon {
  color: #3F4254;
}
.btn.btn-secondary.dropdown-toggle:after {
  color: #3F4254;
}
.btn-check:checked + .btn.btn-secondary, .btn-check:active + .btn.btn-secondary, .btn.btn-secondary:focus:not(.btn-active), .btn.btn-secondary:hover:not(.btn-active), .btn.btn-secondary:active:not(.btn-active), .btn.btn-secondary.active, .btn.btn-secondary.show, .show > .btn.btn-secondary {
  color: #3F4254;
  border-color: #B5B5C3;
  background-color: #B5B5C3 !important;
}
.btn-check:checked + .btn.btn-secondary i,
.btn-check:checked + .btn.btn-secondary .svg-icon, .btn-check:active + .btn.btn-secondary i,
.btn-check:active + .btn.btn-secondary .svg-icon, .btn.btn-secondary:focus:not(.btn-active) i,
.btn.btn-secondary:focus:not(.btn-active) .svg-icon, .btn.btn-secondary:hover:not(.btn-active) i,
.btn.btn-secondary:hover:not(.btn-active) .svg-icon, .btn.btn-secondary:active:not(.btn-active) i,
.btn.btn-secondary:active:not(.btn-active) .svg-icon, .btn.btn-secondary.active i,
.btn.btn-secondary.active .svg-icon, .btn.btn-secondary.show i,
.btn.btn-secondary.show .svg-icon, .show > .btn.btn-secondary i,
.show > .btn.btn-secondary .svg-icon {
  color: #3F4254;
}
.btn-check:checked + .btn.btn-secondary.dropdown-toggle:after, .btn-check:active + .btn.btn-secondary.dropdown-toggle:after, .btn.btn-secondary:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-secondary:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-secondary:active:not(.btn-active).dropdown-toggle:after, .btn.btn-secondary.active.dropdown-toggle:after, .btn.btn-secondary.show.dropdown-toggle:after, .show > .btn.btn-secondary.dropdown-toggle:after {
  color: #3F4254;
}

.btn.btn-bg-secondary {
  border-color: #E4E6EF;
  background-color: #E4E6EF;
}
.btn-check:checked + .btn.btn-active-secondary, .btn-check:active + .btn.btn-active-secondary, .btn.btn-active-secondary:focus:not(.btn-active), .btn.btn-active-secondary:hover:not(.btn-active), .btn.btn-active-secondary:active:not(.btn-active), .btn.btn-active-secondary.active, .btn.btn-active-secondary.show, .show > .btn.btn-active-secondary {
  color: #3F4254;
  border-color: #E4E6EF;
  background-color: #E4E6EF !important;
}
.btn-check:checked + .btn.btn-active-secondary i,
.btn-check:checked + .btn.btn-active-secondary .svg-icon, .btn-check:active + .btn.btn-active-secondary i,
.btn-check:active + .btn.btn-active-secondary .svg-icon, .btn.btn-active-secondary:focus:not(.btn-active) i,
.btn.btn-active-secondary:focus:not(.btn-active) .svg-icon, .btn.btn-active-secondary:hover:not(.btn-active) i,
.btn.btn-active-secondary:hover:not(.btn-active) .svg-icon, .btn.btn-active-secondary:active:not(.btn-active) i,
.btn.btn-active-secondary:active:not(.btn-active) .svg-icon, .btn.btn-active-secondary.active i,
.btn.btn-active-secondary.active .svg-icon, .btn.btn-active-secondary.show i,
.btn.btn-active-secondary.show .svg-icon, .show > .btn.btn-active-secondary i,
.show > .btn.btn-active-secondary .svg-icon {
  color: #3F4254;
}
.btn-check:checked + .btn.btn-active-secondary.dropdown-toggle:after, .btn-check:active + .btn.btn-active-secondary.dropdown-toggle:after, .btn.btn-active-secondary:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-secondary:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-secondary:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-secondary.active.dropdown-toggle:after, .btn.btn-active-secondary.show.dropdown-toggle:after, .show > .btn.btn-active-secondary.dropdown-toggle:after {
  color: #3F4254;
}

.btn.btn-success {
  color: #FFFFFF;
  border-color: #50CD89;
  background-color: #50CD89;
}
.btn.btn-success i,
.btn.btn-success .svg-icon {
  color: #FFFFFF;
}
.btn.btn-success.dropdown-toggle:after {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-success, .btn-check:active + .btn.btn-success, .btn.btn-success:focus:not(.btn-active), .btn.btn-success:hover:not(.btn-active), .btn.btn-success:active:not(.btn-active), .btn.btn-success.active, .btn.btn-success.show, .show > .btn.btn-success {
  color: #FFFFFF;
  border-color: #47BE7D;
  background-color: #47BE7D !important;
}
.btn-check:checked + .btn.btn-success i,
.btn-check:checked + .btn.btn-success .svg-icon, .btn-check:active + .btn.btn-success i,
.btn-check:active + .btn.btn-success .svg-icon, .btn.btn-success:focus:not(.btn-active) i,
.btn.btn-success:focus:not(.btn-active) .svg-icon, .btn.btn-success:hover:not(.btn-active) i,
.btn.btn-success:hover:not(.btn-active) .svg-icon, .btn.btn-success:active:not(.btn-active) i,
.btn.btn-success:active:not(.btn-active) .svg-icon, .btn.btn-success.active i,
.btn.btn-success.active .svg-icon, .btn.btn-success.show i,
.btn.btn-success.show .svg-icon, .show > .btn.btn-success i,
.show > .btn.btn-success .svg-icon {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-success.dropdown-toggle:after, .btn-check:active + .btn.btn-success.dropdown-toggle:after, .btn.btn-success:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-success:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-success:active:not(.btn-active).dropdown-toggle:after, .btn.btn-success.active.dropdown-toggle:after, .btn.btn-success.show.dropdown-toggle:after, .show > .btn.btn-success.dropdown-toggle:after {
  color: #FFFFFF;
}

.btn.btn-light-success {
  color: #50CD89;
  border-color: #E8FFF3;
  background-color: #E8FFF3;
}
.btn.btn-light-success i,
.btn.btn-light-success .svg-icon {
  color: #50CD89;
}
.btn.btn-light-success.dropdown-toggle:after {
  color: #50CD89;
}
.btn-check:checked + .btn.btn-light-success, .btn-check:active + .btn.btn-light-success, .btn.btn-light-success:focus:not(.btn-active), .btn.btn-light-success:hover:not(.btn-active), .btn.btn-light-success:active:not(.btn-active), .btn.btn-light-success.active, .btn.btn-light-success.show, .show > .btn.btn-light-success {
  color: #FFFFFF;
  border-color: #50CD89;
  background-color: #50CD89 !important;
}
.btn-check:checked + .btn.btn-light-success i,
.btn-check:checked + .btn.btn-light-success .svg-icon, .btn-check:active + .btn.btn-light-success i,
.btn-check:active + .btn.btn-light-success .svg-icon, .btn.btn-light-success:focus:not(.btn-active) i,
.btn.btn-light-success:focus:not(.btn-active) .svg-icon, .btn.btn-light-success:hover:not(.btn-active) i,
.btn.btn-light-success:hover:not(.btn-active) .svg-icon, .btn.btn-light-success:active:not(.btn-active) i,
.btn.btn-light-success:active:not(.btn-active) .svg-icon, .btn.btn-light-success.active i,
.btn.btn-light-success.active .svg-icon, .btn.btn-light-success.show i,
.btn.btn-light-success.show .svg-icon, .show > .btn.btn-light-success i,
.show > .btn.btn-light-success .svg-icon {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-light-success.dropdown-toggle:after, .btn-check:active + .btn.btn-light-success.dropdown-toggle:after, .btn.btn-light-success:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-light-success:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-light-success:active:not(.btn-active).dropdown-toggle:after, .btn.btn-light-success.active.dropdown-toggle:after, .btn.btn-light-success.show.dropdown-toggle:after, .show > .btn.btn-light-success.dropdown-toggle:after {
  color: #FFFFFF;
}

.btn.btn-bg-success {
  border-color: #50CD89;
  background-color: #50CD89;
}
.btn-check:checked + .btn.btn-active-success, .btn-check:active + .btn.btn-active-success, .btn.btn-active-success:focus:not(.btn-active), .btn.btn-active-success:hover:not(.btn-active), .btn.btn-active-success:active:not(.btn-active), .btn.btn-active-success.active, .btn.btn-active-success.show, .show > .btn.btn-active-success {
  color: #FFFFFF;
  border-color: #50CD89;
  background-color: #50CD89 !important;
}
.btn-check:checked + .btn.btn-active-success i,
.btn-check:checked + .btn.btn-active-success .svg-icon, .btn-check:active + .btn.btn-active-success i,
.btn-check:active + .btn.btn-active-success .svg-icon, .btn.btn-active-success:focus:not(.btn-active) i,
.btn.btn-active-success:focus:not(.btn-active) .svg-icon, .btn.btn-active-success:hover:not(.btn-active) i,
.btn.btn-active-success:hover:not(.btn-active) .svg-icon, .btn.btn-active-success:active:not(.btn-active) i,
.btn.btn-active-success:active:not(.btn-active) .svg-icon, .btn.btn-active-success.active i,
.btn.btn-active-success.active .svg-icon, .btn.btn-active-success.show i,
.btn.btn-active-success.show .svg-icon, .show > .btn.btn-active-success i,
.show > .btn.btn-active-success .svg-icon {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-active-success.dropdown-toggle:after, .btn-check:active + .btn.btn-active-success.dropdown-toggle:after, .btn.btn-active-success:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-success:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-success:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-success.active.dropdown-toggle:after, .btn.btn-active-success.show.dropdown-toggle:after, .show > .btn.btn-active-success.dropdown-toggle:after {
  color: #FFFFFF;
}

.btn-check:checked + .btn.btn-active-light-success, .btn-check:active + .btn.btn-active-light-success, .btn.btn-active-light-success:focus:not(.btn-active), .btn.btn-active-light-success:hover:not(.btn-active), .btn.btn-active-light-success:active:not(.btn-active), .btn.btn-active-light-success.active, .btn.btn-active-light-success.show, .show > .btn.btn-active-light-success {
  color: #50CD89;
  border-color: #E8FFF3;
  background-color: #E8FFF3 !important;
}
.btn-check:checked + .btn.btn-active-light-success i,
.btn-check:checked + .btn.btn-active-light-success .svg-icon, .btn-check:active + .btn.btn-active-light-success i,
.btn-check:active + .btn.btn-active-light-success .svg-icon, .btn.btn-active-light-success:focus:not(.btn-active) i,
.btn.btn-active-light-success:focus:not(.btn-active) .svg-icon, .btn.btn-active-light-success:hover:not(.btn-active) i,
.btn.btn-active-light-success:hover:not(.btn-active) .svg-icon, .btn.btn-active-light-success:active:not(.btn-active) i,
.btn.btn-active-light-success:active:not(.btn-active) .svg-icon, .btn.btn-active-light-success.active i,
.btn.btn-active-light-success.active .svg-icon, .btn.btn-active-light-success.show i,
.btn.btn-active-light-success.show .svg-icon, .show > .btn.btn-active-light-success i,
.show > .btn.btn-active-light-success .svg-icon {
  color: #50CD89;
}
.btn-check:checked + .btn.btn-active-light-success.dropdown-toggle:after, .btn-check:active + .btn.btn-active-light-success.dropdown-toggle:after, .btn.btn-active-light-success:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-success:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-success:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-success.active.dropdown-toggle:after, .btn.btn-active-light-success.show.dropdown-toggle:after, .show > .btn.btn-active-light-success.dropdown-toggle:after {
  color: #50CD89;
}
.btn.btn-active-light-success.btn-outline:not(.btn-outline-default) {
  border-color: #50CD89 !important;
}

.btn.btn-info {
  color: #FFFFFF;
  border-color: #7239EA;
  background-color: #7239EA;
}
.btn.btn-info i,
.btn.btn-info .svg-icon {
  color: #FFFFFF;
}
.btn.btn-info.dropdown-toggle:after {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-info, .btn-check:active + .btn.btn-info, .btn.btn-info:focus:not(.btn-active), .btn.btn-info:hover:not(.btn-active), .btn.btn-info:active:not(.btn-active), .btn.btn-info.active, .btn.btn-info.show, .show > .btn.btn-info {
  color: #FFFFFF;
  border-color: #5014D0;
  background-color: #5014D0 !important;
}
.btn-check:checked + .btn.btn-info i,
.btn-check:checked + .btn.btn-info .svg-icon, .btn-check:active + .btn.btn-info i,
.btn-check:active + .btn.btn-info .svg-icon, .btn.btn-info:focus:not(.btn-active) i,
.btn.btn-info:focus:not(.btn-active) .svg-icon, .btn.btn-info:hover:not(.btn-active) i,
.btn.btn-info:hover:not(.btn-active) .svg-icon, .btn.btn-info:active:not(.btn-active) i,
.btn.btn-info:active:not(.btn-active) .svg-icon, .btn.btn-info.active i,
.btn.btn-info.active .svg-icon, .btn.btn-info.show i,
.btn.btn-info.show .svg-icon, .show > .btn.btn-info i,
.show > .btn.btn-info .svg-icon {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-info.dropdown-toggle:after, .btn-check:active + .btn.btn-info.dropdown-toggle:after, .btn.btn-info:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-info:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-info:active:not(.btn-active).dropdown-toggle:after, .btn.btn-info.active.dropdown-toggle:after, .btn.btn-info.show.dropdown-toggle:after, .show > .btn.btn-info.dropdown-toggle:after {
  color: #FFFFFF;
}

.btn.btn-light-info {
  color: #7239EA;
  border-color: #F8F5FF;
  background-color: #F8F5FF;
}
.btn.btn-light-info i,
.btn.btn-light-info .svg-icon {
  color: #7239EA;
}
.btn.btn-light-info.dropdown-toggle:after {
  color: #7239EA;
}
.btn-check:checked + .btn.btn-light-info, .btn-check:active + .btn.btn-light-info, .btn.btn-light-info:focus:not(.btn-active), .btn.btn-light-info:hover:not(.btn-active), .btn.btn-light-info:active:not(.btn-active), .btn.btn-light-info.active, .btn.btn-light-info.show, .show > .btn.btn-light-info {
  color: #FFFFFF;
  border-color: #7239EA;
  background-color: #7239EA !important;
}
.btn-check:checked + .btn.btn-light-info i,
.btn-check:checked + .btn.btn-light-info .svg-icon, .btn-check:active + .btn.btn-light-info i,
.btn-check:active + .btn.btn-light-info .svg-icon, .btn.btn-light-info:focus:not(.btn-active) i,
.btn.btn-light-info:focus:not(.btn-active) .svg-icon, .btn.btn-light-info:hover:not(.btn-active) i,
.btn.btn-light-info:hover:not(.btn-active) .svg-icon, .btn.btn-light-info:active:not(.btn-active) i,
.btn.btn-light-info:active:not(.btn-active) .svg-icon, .btn.btn-light-info.active i,
.btn.btn-light-info.active .svg-icon, .btn.btn-light-info.show i,
.btn.btn-light-info.show .svg-icon, .show > .btn.btn-light-info i,
.show > .btn.btn-light-info .svg-icon {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-light-info.dropdown-toggle:after, .btn-check:active + .btn.btn-light-info.dropdown-toggle:after, .btn.btn-light-info:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-light-info:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-light-info:active:not(.btn-active).dropdown-toggle:after, .btn.btn-light-info.active.dropdown-toggle:after, .btn.btn-light-info.show.dropdown-toggle:after, .show > .btn.btn-light-info.dropdown-toggle:after {
  color: #FFFFFF;
}

.btn.btn-bg-info {
  border-color: #7239EA;
  background-color: #7239EA;
}
.btn-check:checked + .btn.btn-active-info, .btn-check:active + .btn.btn-active-info, .btn.btn-active-info:focus:not(.btn-active), .btn.btn-active-info:hover:not(.btn-active), .btn.btn-active-info:active:not(.btn-active), .btn.btn-active-info.active, .btn.btn-active-info.show, .show > .btn.btn-active-info {
  color: #FFFFFF;
  border-color: #7239EA;
  background-color: #7239EA !important;
}
.btn-check:checked + .btn.btn-active-info i,
.btn-check:checked + .btn.btn-active-info .svg-icon, .btn-check:active + .btn.btn-active-info i,
.btn-check:active + .btn.btn-active-info .svg-icon, .btn.btn-active-info:focus:not(.btn-active) i,
.btn.btn-active-info:focus:not(.btn-active) .svg-icon, .btn.btn-active-info:hover:not(.btn-active) i,
.btn.btn-active-info:hover:not(.btn-active) .svg-icon, .btn.btn-active-info:active:not(.btn-active) i,
.btn.btn-active-info:active:not(.btn-active) .svg-icon, .btn.btn-active-info.active i,
.btn.btn-active-info.active .svg-icon, .btn.btn-active-info.show i,
.btn.btn-active-info.show .svg-icon, .show > .btn.btn-active-info i,
.show > .btn.btn-active-info .svg-icon {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-active-info.dropdown-toggle:after, .btn-check:active + .btn.btn-active-info.dropdown-toggle:after, .btn.btn-active-info:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-info:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-info:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-info.active.dropdown-toggle:after, .btn.btn-active-info.show.dropdown-toggle:after, .show > .btn.btn-active-info.dropdown-toggle:after {
  color: #FFFFFF;
}

.btn-check:checked + .btn.btn-active-light-info, .btn-check:active + .btn.btn-active-light-info, .btn.btn-active-light-info:focus:not(.btn-active), .btn.btn-active-light-info:hover:not(.btn-active), .btn.btn-active-light-info:active:not(.btn-active), .btn.btn-active-light-info.active, .btn.btn-active-light-info.show, .show > .btn.btn-active-light-info {
  color: #7239EA;
  border-color: #F8F5FF;
  background-color: #F8F5FF !important;
}
.btn-check:checked + .btn.btn-active-light-info i,
.btn-check:checked + .btn.btn-active-light-info .svg-icon, .btn-check:active + .btn.btn-active-light-info i,
.btn-check:active + .btn.btn-active-light-info .svg-icon, .btn.btn-active-light-info:focus:not(.btn-active) i,
.btn.btn-active-light-info:focus:not(.btn-active) .svg-icon, .btn.btn-active-light-info:hover:not(.btn-active) i,
.btn.btn-active-light-info:hover:not(.btn-active) .svg-icon, .btn.btn-active-light-info:active:not(.btn-active) i,
.btn.btn-active-light-info:active:not(.btn-active) .svg-icon, .btn.btn-active-light-info.active i,
.btn.btn-active-light-info.active .svg-icon, .btn.btn-active-light-info.show i,
.btn.btn-active-light-info.show .svg-icon, .show > .btn.btn-active-light-info i,
.show > .btn.btn-active-light-info .svg-icon {
  color: #7239EA;
}
.btn-check:checked + .btn.btn-active-light-info.dropdown-toggle:after, .btn-check:active + .btn.btn-active-light-info.dropdown-toggle:after, .btn.btn-active-light-info:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-info:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-info:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-info.active.dropdown-toggle:after, .btn.btn-active-light-info.show.dropdown-toggle:after, .show > .btn.btn-active-light-info.dropdown-toggle:after {
  color: #7239EA;
}
.btn.btn-active-light-info.btn-outline:not(.btn-outline-default) {
  border-color: #7239EA !important;
}

.btn.btn-warning {
  color: #FFFFFF;
  border-color: #FFC700;
  background-color: #FFC700;
}
.btn.btn-warning i,
.btn.btn-warning .svg-icon {
  color: #FFFFFF;
}
.btn.btn-warning.dropdown-toggle:after {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-warning, .btn-check:active + .btn.btn-warning, .btn.btn-warning:focus:not(.btn-active), .btn.btn-warning:hover:not(.btn-active), .btn.btn-warning:active:not(.btn-active), .btn.btn-warning.active, .btn.btn-warning.show, .show > .btn.btn-warning {
  color: #FFFFFF;
  border-color: #F1BC00;
  background-color: #F1BC00 !important;
}
.btn-check:checked + .btn.btn-warning i,
.btn-check:checked + .btn.btn-warning .svg-icon, .btn-check:active + .btn.btn-warning i,
.btn-check:active + .btn.btn-warning .svg-icon, .btn.btn-warning:focus:not(.btn-active) i,
.btn.btn-warning:focus:not(.btn-active) .svg-icon, .btn.btn-warning:hover:not(.btn-active) i,
.btn.btn-warning:hover:not(.btn-active) .svg-icon, .btn.btn-warning:active:not(.btn-active) i,
.btn.btn-warning:active:not(.btn-active) .svg-icon, .btn.btn-warning.active i,
.btn.btn-warning.active .svg-icon, .btn.btn-warning.show i,
.btn.btn-warning.show .svg-icon, .show > .btn.btn-warning i,
.show > .btn.btn-warning .svg-icon {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-warning.dropdown-toggle:after, .btn-check:active + .btn.btn-warning.dropdown-toggle:after, .btn.btn-warning:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-warning:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-warning:active:not(.btn-active).dropdown-toggle:after, .btn.btn-warning.active.dropdown-toggle:after, .btn.btn-warning.show.dropdown-toggle:after, .show > .btn.btn-warning.dropdown-toggle:after {
  color: #FFFFFF;
}

.btn.btn-light-warning {
  color: #FFC700;
  border-color: #FFF8DD;
  background-color: #FFF8DD;
}
.btn.btn-light-warning i,
.btn.btn-light-warning .svg-icon {
  color: #FFC700;
}
.btn.btn-light-warning.dropdown-toggle:after {
  color: #FFC700;
}
.btn-check:checked + .btn.btn-light-warning, .btn-check:active + .btn.btn-light-warning, .btn.btn-light-warning:focus:not(.btn-active), .btn.btn-light-warning:hover:not(.btn-active), .btn.btn-light-warning:active:not(.btn-active), .btn.btn-light-warning.active, .btn.btn-light-warning.show, .show > .btn.btn-light-warning {
  color: #FFFFFF;
  border-color: #FFC700;
  background-color: #FFC700 !important;
}
.btn-check:checked + .btn.btn-light-warning i,
.btn-check:checked + .btn.btn-light-warning .svg-icon, .btn-check:active + .btn.btn-light-warning i,
.btn-check:active + .btn.btn-light-warning .svg-icon, .btn.btn-light-warning:focus:not(.btn-active) i,
.btn.btn-light-warning:focus:not(.btn-active) .svg-icon, .btn.btn-light-warning:hover:not(.btn-active) i,
.btn.btn-light-warning:hover:not(.btn-active) .svg-icon, .btn.btn-light-warning:active:not(.btn-active) i,
.btn.btn-light-warning:active:not(.btn-active) .svg-icon, .btn.btn-light-warning.active i,
.btn.btn-light-warning.active .svg-icon, .btn.btn-light-warning.show i,
.btn.btn-light-warning.show .svg-icon, .show > .btn.btn-light-warning i,
.show > .btn.btn-light-warning .svg-icon {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-light-warning.dropdown-toggle:after, .btn-check:active + .btn.btn-light-warning.dropdown-toggle:after, .btn.btn-light-warning:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-light-warning:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-light-warning:active:not(.btn-active).dropdown-toggle:after, .btn.btn-light-warning.active.dropdown-toggle:after, .btn.btn-light-warning.show.dropdown-toggle:after, .show > .btn.btn-light-warning.dropdown-toggle:after {
  color: #FFFFFF;
}

.btn.btn-bg-warning {
  border-color: #FFC700;
  background-color: #FFC700;
}
.btn-check:checked + .btn.btn-active-warning, .btn-check:active + .btn.btn-active-warning, .btn.btn-active-warning:focus:not(.btn-active), .btn.btn-active-warning:hover:not(.btn-active), .btn.btn-active-warning:active:not(.btn-active), .btn.btn-active-warning.active, .btn.btn-active-warning.show, .show > .btn.btn-active-warning {
  color: #FFFFFF;
  border-color: #FFC700;
  background-color: #FFC700 !important;
}
.btn-check:checked + .btn.btn-active-warning i,
.btn-check:checked + .btn.btn-active-warning .svg-icon, .btn-check:active + .btn.btn-active-warning i,
.btn-check:active + .btn.btn-active-warning .svg-icon, .btn.btn-active-warning:focus:not(.btn-active) i,
.btn.btn-active-warning:focus:not(.btn-active) .svg-icon, .btn.btn-active-warning:hover:not(.btn-active) i,
.btn.btn-active-warning:hover:not(.btn-active) .svg-icon, .btn.btn-active-warning:active:not(.btn-active) i,
.btn.btn-active-warning:active:not(.btn-active) .svg-icon, .btn.btn-active-warning.active i,
.btn.btn-active-warning.active .svg-icon, .btn.btn-active-warning.show i,
.btn.btn-active-warning.show .svg-icon, .show > .btn.btn-active-warning i,
.show > .btn.btn-active-warning .svg-icon {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-active-warning.dropdown-toggle:after, .btn-check:active + .btn.btn-active-warning.dropdown-toggle:after, .btn.btn-active-warning:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-warning:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-warning:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-warning.active.dropdown-toggle:after, .btn.btn-active-warning.show.dropdown-toggle:after, .show > .btn.btn-active-warning.dropdown-toggle:after {
  color: #FFFFFF;
}

.btn-check:checked + .btn.btn-active-light-warning, .btn-check:active + .btn.btn-active-light-warning, .btn.btn-active-light-warning:focus:not(.btn-active), .btn.btn-active-light-warning:hover:not(.btn-active), .btn.btn-active-light-warning:active:not(.btn-active), .btn.btn-active-light-warning.active, .btn.btn-active-light-warning.show, .show > .btn.btn-active-light-warning {
  color: #FFC700;
  border-color: #FFF8DD;
  background-color: #FFF8DD !important;
}
.btn-check:checked + .btn.btn-active-light-warning i,
.btn-check:checked + .btn.btn-active-light-warning .svg-icon, .btn-check:active + .btn.btn-active-light-warning i,
.btn-check:active + .btn.btn-active-light-warning .svg-icon, .btn.btn-active-light-warning:focus:not(.btn-active) i,
.btn.btn-active-light-warning:focus:not(.btn-active) .svg-icon, .btn.btn-active-light-warning:hover:not(.btn-active) i,
.btn.btn-active-light-warning:hover:not(.btn-active) .svg-icon, .btn.btn-active-light-warning:active:not(.btn-active) i,
.btn.btn-active-light-warning:active:not(.btn-active) .svg-icon, .btn.btn-active-light-warning.active i,
.btn.btn-active-light-warning.active .svg-icon, .btn.btn-active-light-warning.show i,
.btn.btn-active-light-warning.show .svg-icon, .show > .btn.btn-active-light-warning i,
.show > .btn.btn-active-light-warning .svg-icon {
  color: #FFC700;
}
.btn-check:checked + .btn.btn-active-light-warning.dropdown-toggle:after, .btn-check:active + .btn.btn-active-light-warning.dropdown-toggle:after, .btn.btn-active-light-warning:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-warning:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-warning:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-warning.active.dropdown-toggle:after, .btn.btn-active-light-warning.show.dropdown-toggle:after, .show > .btn.btn-active-light-warning.dropdown-toggle:after {
  color: #FFC700;
}
.btn.btn-active-light-warning.btn-outline:not(.btn-outline-default) {
  border-color: #FFC700 !important;
}

.btn.btn-danger {
  color: #FFFFFF;
  border-color: #F1416C;
  background-color: #F1416C;
}
.btn.btn-danger i,
.btn.btn-danger .svg-icon {
  color: #FFFFFF;
}
.btn.btn-danger.dropdown-toggle:after {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-danger, .btn-check:active + .btn.btn-danger, .btn.btn-danger:focus:not(.btn-active), .btn.btn-danger:hover:not(.btn-active), .btn.btn-danger:active:not(.btn-active), .btn.btn-danger.active, .btn.btn-danger.show, .show > .btn.btn-danger {
  color: #FFFFFF;
  border-color: #D9214E;
  background-color: #D9214E !important;
}
.btn-check:checked + .btn.btn-danger i,
.btn-check:checked + .btn.btn-danger .svg-icon, .btn-check:active + .btn.btn-danger i,
.btn-check:active + .btn.btn-danger .svg-icon, .btn.btn-danger:focus:not(.btn-active) i,
.btn.btn-danger:focus:not(.btn-active) .svg-icon, .btn.btn-danger:hover:not(.btn-active) i,
.btn.btn-danger:hover:not(.btn-active) .svg-icon, .btn.btn-danger:active:not(.btn-active) i,
.btn.btn-danger:active:not(.btn-active) .svg-icon, .btn.btn-danger.active i,
.btn.btn-danger.active .svg-icon, .btn.btn-danger.show i,
.btn.btn-danger.show .svg-icon, .show > .btn.btn-danger i,
.show > .btn.btn-danger .svg-icon {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-danger.dropdown-toggle:after, .btn-check:active + .btn.btn-danger.dropdown-toggle:after, .btn.btn-danger:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-danger:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-danger:active:not(.btn-active).dropdown-toggle:after, .btn.btn-danger.active.dropdown-toggle:after, .btn.btn-danger.show.dropdown-toggle:after, .show > .btn.btn-danger.dropdown-toggle:after {
  color: #FFFFFF;
}

.btn.btn-light-danger {
  color: #F1416C;
  border-color: #FFF5F8;
  background-color: #FFF5F8;
}
.btn.btn-light-danger i,
.btn.btn-light-danger .svg-icon {
  color: #F1416C;
}
.btn.btn-light-danger.dropdown-toggle:after {
  color: #F1416C;
}
.btn-check:checked + .btn.btn-light-danger, .btn-check:active + .btn.btn-light-danger, .btn.btn-light-danger:focus:not(.btn-active), .btn.btn-light-danger:hover:not(.btn-active), .btn.btn-light-danger:active:not(.btn-active), .btn.btn-light-danger.active, .btn.btn-light-danger.show, .show > .btn.btn-light-danger {
  color: #FFFFFF;
  border-color: #F1416C;
  background-color: #F1416C !important;
}
.btn-check:checked + .btn.btn-light-danger i,
.btn-check:checked + .btn.btn-light-danger .svg-icon, .btn-check:active + .btn.btn-light-danger i,
.btn-check:active + .btn.btn-light-danger .svg-icon, .btn.btn-light-danger:focus:not(.btn-active) i,
.btn.btn-light-danger:focus:not(.btn-active) .svg-icon, .btn.btn-light-danger:hover:not(.btn-active) i,
.btn.btn-light-danger:hover:not(.btn-active) .svg-icon, .btn.btn-light-danger:active:not(.btn-active) i,
.btn.btn-light-danger:active:not(.btn-active) .svg-icon, .btn.btn-light-danger.active i,
.btn.btn-light-danger.active .svg-icon, .btn.btn-light-danger.show i,
.btn.btn-light-danger.show .svg-icon, .show > .btn.btn-light-danger i,
.show > .btn.btn-light-danger .svg-icon {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-light-danger.dropdown-toggle:after, .btn-check:active + .btn.btn-light-danger.dropdown-toggle:after, .btn.btn-light-danger:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-light-danger:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-light-danger:active:not(.btn-active).dropdown-toggle:after, .btn.btn-light-danger.active.dropdown-toggle:after, .btn.btn-light-danger.show.dropdown-toggle:after, .show > .btn.btn-light-danger.dropdown-toggle:after {
  color: #FFFFFF;
}

.btn.btn-bg-danger {
  border-color: #F1416C;
  background-color: #F1416C;
}
.btn-check:checked + .btn.btn-active-danger, .btn-check:active + .btn.btn-active-danger, .btn.btn-active-danger:focus:not(.btn-active), .btn.btn-active-danger:hover:not(.btn-active), .btn.btn-active-danger:active:not(.btn-active), .btn.btn-active-danger.active, .btn.btn-active-danger.show, .show > .btn.btn-active-danger {
  color: #FFFFFF;
  border-color: #F1416C;
  background-color: #F1416C !important;
}
.btn-check:checked + .btn.btn-active-danger i,
.btn-check:checked + .btn.btn-active-danger .svg-icon, .btn-check:active + .btn.btn-active-danger i,
.btn-check:active + .btn.btn-active-danger .svg-icon, .btn.btn-active-danger:focus:not(.btn-active) i,
.btn.btn-active-danger:focus:not(.btn-active) .svg-icon, .btn.btn-active-danger:hover:not(.btn-active) i,
.btn.btn-active-danger:hover:not(.btn-active) .svg-icon, .btn.btn-active-danger:active:not(.btn-active) i,
.btn.btn-active-danger:active:not(.btn-active) .svg-icon, .btn.btn-active-danger.active i,
.btn.btn-active-danger.active .svg-icon, .btn.btn-active-danger.show i,
.btn.btn-active-danger.show .svg-icon, .show > .btn.btn-active-danger i,
.show > .btn.btn-active-danger .svg-icon {
  color: #FFFFFF;
}
.btn-check:checked + .btn.btn-active-danger.dropdown-toggle:after, .btn-check:active + .btn.btn-active-danger.dropdown-toggle:after, .btn.btn-active-danger:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-danger:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-danger:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-danger.active.dropdown-toggle:after, .btn.btn-active-danger.show.dropdown-toggle:after, .show > .btn.btn-active-danger.dropdown-toggle:after {
  color: #FFFFFF;
}

.btn-check:checked + .btn.btn-active-light-danger, .btn-check:active + .btn.btn-active-light-danger, .btn.btn-active-light-danger:focus:not(.btn-active), .btn.btn-active-light-danger:hover:not(.btn-active), .btn.btn-active-light-danger:active:not(.btn-active), .btn.btn-active-light-danger.active, .btn.btn-active-light-danger.show, .show > .btn.btn-active-light-danger {
  color: #F1416C;
  border-color: #FFF5F8;
  background-color: #FFF5F8 !important;
}
.btn-check:checked + .btn.btn-active-light-danger i,
.btn-check:checked + .btn.btn-active-light-danger .svg-icon, .btn-check:active + .btn.btn-active-light-danger i,
.btn-check:active + .btn.btn-active-light-danger .svg-icon, .btn.btn-active-light-danger:focus:not(.btn-active) i,
.btn.btn-active-light-danger:focus:not(.btn-active) .svg-icon, .btn.btn-active-light-danger:hover:not(.btn-active) i,
.btn.btn-active-light-danger:hover:not(.btn-active) .svg-icon, .btn.btn-active-light-danger:active:not(.btn-active) i,
.btn.btn-active-light-danger:active:not(.btn-active) .svg-icon, .btn.btn-active-light-danger.active i,
.btn.btn-active-light-danger.active .svg-icon, .btn.btn-active-light-danger.show i,
.btn.btn-active-light-danger.show .svg-icon, .show > .btn.btn-active-light-danger i,
.show > .btn.btn-active-light-danger .svg-icon {
  color: #F1416C;
}
.btn-check:checked + .btn.btn-active-light-danger.dropdown-toggle:after, .btn-check:active + .btn.btn-active-light-danger.dropdown-toggle:after, .btn.btn-active-light-danger:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-danger:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-danger:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-danger.active.dropdown-toggle:after, .btn.btn-active-light-danger.show.dropdown-toggle:after, .show > .btn.btn-active-light-danger.dropdown-toggle:after {
  color: #F1416C;
}
.btn.btn-active-light-danger.btn-outline:not(.btn-outline-default) {
  border-color: #F1416C !important;
}

.btn.btn-dark {
  color: #ffffff;
  border-color: #181C32;
  background-color: #181C32;
}
.btn.btn-dark i,
.btn.btn-dark .svg-icon {
  color: #ffffff;
}
.btn.btn-dark.dropdown-toggle:after {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-dark, .btn-check:active + .btn.btn-dark, .btn.btn-dark:focus:not(.btn-active), .btn.btn-dark:hover:not(.btn-active), .btn.btn-dark:active:not(.btn-active), .btn.btn-dark.active, .btn.btn-dark.show, .show > .btn.btn-dark {
  color: #ffffff;
  border-color: #131628;
  background-color: #131628 !important;
}
.btn-check:checked + .btn.btn-dark i,
.btn-check:checked + .btn.btn-dark .svg-icon, .btn-check:active + .btn.btn-dark i,
.btn-check:active + .btn.btn-dark .svg-icon, .btn.btn-dark:focus:not(.btn-active) i,
.btn.btn-dark:focus:not(.btn-active) .svg-icon, .btn.btn-dark:hover:not(.btn-active) i,
.btn.btn-dark:hover:not(.btn-active) .svg-icon, .btn.btn-dark:active:not(.btn-active) i,
.btn.btn-dark:active:not(.btn-active) .svg-icon, .btn.btn-dark.active i,
.btn.btn-dark.active .svg-icon, .btn.btn-dark.show i,
.btn.btn-dark.show .svg-icon, .show > .btn.btn-dark i,
.show > .btn.btn-dark .svg-icon {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-dark.dropdown-toggle:after, .btn-check:active + .btn.btn-dark.dropdown-toggle:after, .btn.btn-dark:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-dark:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-dark:active:not(.btn-active).dropdown-toggle:after, .btn.btn-dark.active.dropdown-toggle:after, .btn.btn-dark.show.dropdown-toggle:after, .show > .btn.btn-dark.dropdown-toggle:after {
  color: #ffffff;
}

.btn.btn-light-dark {
  color: #181C32;
  border-color: #EFF2F5;
  background-color: #EFF2F5;
}
.btn.btn-light-dark i,
.btn.btn-light-dark .svg-icon {
  color: #181C32;
}
.btn.btn-light-dark.dropdown-toggle:after {
  color: #181C32;
}
.btn-check:checked + .btn.btn-light-dark, .btn-check:active + .btn.btn-light-dark, .btn.btn-light-dark:focus:not(.btn-active), .btn.btn-light-dark:hover:not(.btn-active), .btn.btn-light-dark:active:not(.btn-active), .btn.btn-light-dark.active, .btn.btn-light-dark.show, .show > .btn.btn-light-dark {
  color: #ffffff;
  border-color: #181C32;
  background-color: #181C32 !important;
}
.btn-check:checked + .btn.btn-light-dark i,
.btn-check:checked + .btn.btn-light-dark .svg-icon, .btn-check:active + .btn.btn-light-dark i,
.btn-check:active + .btn.btn-light-dark .svg-icon, .btn.btn-light-dark:focus:not(.btn-active) i,
.btn.btn-light-dark:focus:not(.btn-active) .svg-icon, .btn.btn-light-dark:hover:not(.btn-active) i,
.btn.btn-light-dark:hover:not(.btn-active) .svg-icon, .btn.btn-light-dark:active:not(.btn-active) i,
.btn.btn-light-dark:active:not(.btn-active) .svg-icon, .btn.btn-light-dark.active i,
.btn.btn-light-dark.active .svg-icon, .btn.btn-light-dark.show i,
.btn.btn-light-dark.show .svg-icon, .show > .btn.btn-light-dark i,
.show > .btn.btn-light-dark .svg-icon {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-light-dark.dropdown-toggle:after, .btn-check:active + .btn.btn-light-dark.dropdown-toggle:after, .btn.btn-light-dark:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-light-dark:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-light-dark:active:not(.btn-active).dropdown-toggle:after, .btn.btn-light-dark.active.dropdown-toggle:after, .btn.btn-light-dark.show.dropdown-toggle:after, .show > .btn.btn-light-dark.dropdown-toggle:after {
  color: #ffffff;
}

.btn.btn-bg-dark {
  border-color: #181C32;
  background-color: #181C32;
}
.btn-check:checked + .btn.btn-active-dark, .btn-check:active + .btn.btn-active-dark, .btn.btn-active-dark:focus:not(.btn-active), .btn.btn-active-dark:hover:not(.btn-active), .btn.btn-active-dark:active:not(.btn-active), .btn.btn-active-dark.active, .btn.btn-active-dark.show, .show > .btn.btn-active-dark {
  color: #ffffff;
  border-color: #181C32;
  background-color: #181C32 !important;
}
.btn-check:checked + .btn.btn-active-dark i,
.btn-check:checked + .btn.btn-active-dark .svg-icon, .btn-check:active + .btn.btn-active-dark i,
.btn-check:active + .btn.btn-active-dark .svg-icon, .btn.btn-active-dark:focus:not(.btn-active) i,
.btn.btn-active-dark:focus:not(.btn-active) .svg-icon, .btn.btn-active-dark:hover:not(.btn-active) i,
.btn.btn-active-dark:hover:not(.btn-active) .svg-icon, .btn.btn-active-dark:active:not(.btn-active) i,
.btn.btn-active-dark:active:not(.btn-active) .svg-icon, .btn.btn-active-dark.active i,
.btn.btn-active-dark.active .svg-icon, .btn.btn-active-dark.show i,
.btn.btn-active-dark.show .svg-icon, .show > .btn.btn-active-dark i,
.show > .btn.btn-active-dark .svg-icon {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-active-dark.dropdown-toggle:after, .btn-check:active + .btn.btn-active-dark.dropdown-toggle:after, .btn.btn-active-dark:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-dark:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-dark:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-dark.active.dropdown-toggle:after, .btn.btn-active-dark.show.dropdown-toggle:after, .show > .btn.btn-active-dark.dropdown-toggle:after {
  color: #ffffff;
}

.btn-check:checked + .btn.btn-active-light-dark, .btn-check:active + .btn.btn-active-light-dark, .btn.btn-active-light-dark:focus:not(.btn-active), .btn.btn-active-light-dark:hover:not(.btn-active), .btn.btn-active-light-dark:active:not(.btn-active), .btn.btn-active-light-dark.active, .btn.btn-active-light-dark.show, .show > .btn.btn-active-light-dark {
  color: #181C32;
  border-color: #EFF2F5;
  background-color: #EFF2F5 !important;
}
.btn-check:checked + .btn.btn-active-light-dark i,
.btn-check:checked + .btn.btn-active-light-dark .svg-icon, .btn-check:active + .btn.btn-active-light-dark i,
.btn-check:active + .btn.btn-active-light-dark .svg-icon, .btn.btn-active-light-dark:focus:not(.btn-active) i,
.btn.btn-active-light-dark:focus:not(.btn-active) .svg-icon, .btn.btn-active-light-dark:hover:not(.btn-active) i,
.btn.btn-active-light-dark:hover:not(.btn-active) .svg-icon, .btn.btn-active-light-dark:active:not(.btn-active) i,
.btn.btn-active-light-dark:active:not(.btn-active) .svg-icon, .btn.btn-active-light-dark.active i,
.btn.btn-active-light-dark.active .svg-icon, .btn.btn-active-light-dark.show i,
.btn.btn-active-light-dark.show .svg-icon, .show > .btn.btn-active-light-dark i,
.show > .btn.btn-active-light-dark .svg-icon {
  color: #181C32;
}
.btn-check:checked + .btn.btn-active-light-dark.dropdown-toggle:after, .btn-check:active + .btn.btn-active-light-dark.dropdown-toggle:after, .btn.btn-active-light-dark:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-dark:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-dark:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-light-dark.active.dropdown-toggle:after, .btn.btn-active-light-dark.show.dropdown-toggle:after, .show > .btn.btn-active-light-dark.dropdown-toggle:after {
  color: #181C32;
}
.btn.btn-active-light-dark.btn-outline:not(.btn-outline-default) {
  border-color: #181C32 !important;
}

.btn.btn-color-white {
  color: #ffffff;
}
.btn.btn-color-white i,
.btn.btn-color-white .svg-icon {
  color: #ffffff;
}
.btn.btn-color-white.dropdown-toggle:after {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-active-color-white, .btn-check:active + .btn.btn-active-color-white, .btn.btn-active-color-white:focus:not(.btn-active), .btn.btn-active-color-white:hover:not(.btn-active), .btn.btn-active-color-white:active:not(.btn-active), .btn.btn-active-color-white.active, .btn.btn-active-color-white.show, .show > .btn.btn-active-color-white {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-active-color-white i,
.btn-check:checked + .btn.btn-active-color-white .svg-icon, .btn-check:active + .btn.btn-active-color-white i,
.btn-check:active + .btn.btn-active-color-white .svg-icon, .btn.btn-active-color-white:focus:not(.btn-active) i,
.btn.btn-active-color-white:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-white:hover:not(.btn-active) i,
.btn.btn-active-color-white:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-white:active:not(.btn-active) i,
.btn.btn-active-color-white:active:not(.btn-active) .svg-icon, .btn.btn-active-color-white.active i,
.btn.btn-active-color-white.active .svg-icon, .btn.btn-active-color-white.show i,
.btn.btn-active-color-white.show .svg-icon, .show > .btn.btn-active-color-white i,
.show > .btn.btn-active-color-white .svg-icon {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-active-color-white.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-white.dropdown-toggle:after, .btn.btn-active-color-white:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-white:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-white:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-white.active.dropdown-toggle:after, .btn.btn-active-color-white.show.dropdown-toggle:after, .show > .btn.btn-active-color-white.dropdown-toggle:after {
  color: #ffffff;
}

.btn.btn-icon-white i,
.btn.btn-icon-white .svg-icon {
  color: #ffffff;
}
.btn.btn-icon-white.dropdown-toggle:after {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-active-icon-white i,
.btn-check:checked + .btn.btn-active-icon-white .svg-icon, .btn-check:active + .btn.btn-active-icon-white i,
.btn-check:active + .btn.btn-active-icon-white .svg-icon, .btn.btn-active-icon-white:focus:not(.btn-active) i,
.btn.btn-active-icon-white:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-white:hover:not(.btn-active) i,
.btn.btn-active-icon-white:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-white:active:not(.btn-active) i,
.btn.btn-active-icon-white:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-white.active i,
.btn.btn-active-icon-white.active .svg-icon, .btn.btn-active-icon-white.show i,
.btn.btn-active-icon-white.show .svg-icon, .show > .btn.btn-active-icon-white i,
.show > .btn.btn-active-icon-white .svg-icon {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-active-icon-white.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-white.dropdown-toggle:after, .btn.btn-active-icon-white:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-white:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-white:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-white.active.dropdown-toggle:after, .btn.btn-active-icon-white.show.dropdown-toggle:after, .show > .btn.btn-active-icon-white.dropdown-toggle:after {
  color: #ffffff;
}

.btn.btn-text-white {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-active-text-white, .btn-check:active + .btn.btn-active-text-white, .btn.btn-active-text-white:focus:not(.btn-active), .btn.btn-active-text-white:hover:not(.btn-active), .btn.btn-active-text-white:active:not(.btn-active), .btn.btn-active-text-white.active, .btn.btn-active-text-white.show, .show > .btn.btn-active-text-white {
  color: #ffffff;
}

.btn.btn-color-primary {
  color: #009EF7;
}
.btn.btn-color-primary i,
.btn.btn-color-primary .svg-icon {
  color: #009EF7;
}
.btn.btn-color-primary.dropdown-toggle:after {
  color: #009EF7;
}
.btn-check:checked + .btn.btn-active-color-primary, .btn-check:active + .btn.btn-active-color-primary, .btn.btn-active-color-primary:focus:not(.btn-active), .btn.btn-active-color-primary:hover:not(.btn-active), .btn.btn-active-color-primary:active:not(.btn-active), .btn.btn-active-color-primary.active, .btn.btn-active-color-primary.show, .show > .btn.btn-active-color-primary {
  color: #009EF7;
}
.btn-check:checked + .btn.btn-active-color-primary i,
.btn-check:checked + .btn.btn-active-color-primary .svg-icon, .btn-check:active + .btn.btn-active-color-primary i,
.btn-check:active + .btn.btn-active-color-primary .svg-icon, .btn.btn-active-color-primary:focus:not(.btn-active) i,
.btn.btn-active-color-primary:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-primary:hover:not(.btn-active) i,
.btn.btn-active-color-primary:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-primary:active:not(.btn-active) i,
.btn.btn-active-color-primary:active:not(.btn-active) .svg-icon, .btn.btn-active-color-primary.active i,
.btn.btn-active-color-primary.active .svg-icon, .btn.btn-active-color-primary.show i,
.btn.btn-active-color-primary.show .svg-icon, .show > .btn.btn-active-color-primary i,
.show > .btn.btn-active-color-primary .svg-icon {
  color: #009EF7;
}
.btn-check:checked + .btn.btn-active-color-primary.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-primary.dropdown-toggle:after, .btn.btn-active-color-primary:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-primary:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-primary:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-primary.active.dropdown-toggle:after, .btn.btn-active-color-primary.show.dropdown-toggle:after, .show > .btn.btn-active-color-primary.dropdown-toggle:after {
  color: #009EF7;
}

.btn.btn-icon-primary i,
.btn.btn-icon-primary .svg-icon {
  color: #009EF7;
}
.btn.btn-icon-primary.dropdown-toggle:after {
  color: #009EF7;
}
.btn-check:checked + .btn.btn-active-icon-primary i,
.btn-check:checked + .btn.btn-active-icon-primary .svg-icon, .btn-check:active + .btn.btn-active-icon-primary i,
.btn-check:active + .btn.btn-active-icon-primary .svg-icon, .btn.btn-active-icon-primary:focus:not(.btn-active) i,
.btn.btn-active-icon-primary:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-primary:hover:not(.btn-active) i,
.btn.btn-active-icon-primary:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-primary:active:not(.btn-active) i,
.btn.btn-active-icon-primary:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-primary.active i,
.btn.btn-active-icon-primary.active .svg-icon, .btn.btn-active-icon-primary.show i,
.btn.btn-active-icon-primary.show .svg-icon, .show > .btn.btn-active-icon-primary i,
.show > .btn.btn-active-icon-primary .svg-icon {
  color: #009EF7;
}
.btn-check:checked + .btn.btn-active-icon-primary.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-primary.dropdown-toggle:after, .btn.btn-active-icon-primary:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-primary:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-primary:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-primary.active.dropdown-toggle:after, .btn.btn-active-icon-primary.show.dropdown-toggle:after, .show > .btn.btn-active-icon-primary.dropdown-toggle:after {
  color: #009EF7;
}

.btn.btn-text-primary {
  color: #009EF7;
}
.btn-check:checked + .btn.btn-active-text-primary, .btn-check:active + .btn.btn-active-text-primary, .btn.btn-active-text-primary:focus:not(.btn-active), .btn.btn-active-text-primary:hover:not(.btn-active), .btn.btn-active-text-primary:active:not(.btn-active), .btn.btn-active-text-primary.active, .btn.btn-active-text-primary.show, .show > .btn.btn-active-text-primary {
  color: #009EF7;
}

.btn.btn-color-secondary {
  color: #E4E6EF;
}
.btn.btn-color-secondary i,
.btn.btn-color-secondary .svg-icon {
  color: #E4E6EF;
}
.btn.btn-color-secondary.dropdown-toggle:after {
  color: #E4E6EF;
}
.btn-check:checked + .btn.btn-active-color-secondary, .btn-check:active + .btn.btn-active-color-secondary, .btn.btn-active-color-secondary:focus:not(.btn-active), .btn.btn-active-color-secondary:hover:not(.btn-active), .btn.btn-active-color-secondary:active:not(.btn-active), .btn.btn-active-color-secondary.active, .btn.btn-active-color-secondary.show, .show > .btn.btn-active-color-secondary {
  color: #E4E6EF;
}
.btn-check:checked + .btn.btn-active-color-secondary i,
.btn-check:checked + .btn.btn-active-color-secondary .svg-icon, .btn-check:active + .btn.btn-active-color-secondary i,
.btn-check:active + .btn.btn-active-color-secondary .svg-icon, .btn.btn-active-color-secondary:focus:not(.btn-active) i,
.btn.btn-active-color-secondary:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-secondary:hover:not(.btn-active) i,
.btn.btn-active-color-secondary:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-secondary:active:not(.btn-active) i,
.btn.btn-active-color-secondary:active:not(.btn-active) .svg-icon, .btn.btn-active-color-secondary.active i,
.btn.btn-active-color-secondary.active .svg-icon, .btn.btn-active-color-secondary.show i,
.btn.btn-active-color-secondary.show .svg-icon, .show > .btn.btn-active-color-secondary i,
.show > .btn.btn-active-color-secondary .svg-icon {
  color: #E4E6EF;
}
.btn-check:checked + .btn.btn-active-color-secondary.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-secondary.dropdown-toggle:after, .btn.btn-active-color-secondary:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-secondary:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-secondary:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-secondary.active.dropdown-toggle:after, .btn.btn-active-color-secondary.show.dropdown-toggle:after, .show > .btn.btn-active-color-secondary.dropdown-toggle:after {
  color: #E4E6EF;
}

.btn.btn-icon-secondary i,
.btn.btn-icon-secondary .svg-icon {
  color: #E4E6EF;
}
.btn.btn-icon-secondary.dropdown-toggle:after {
  color: #E4E6EF;
}
.btn-check:checked + .btn.btn-active-icon-secondary i,
.btn-check:checked + .btn.btn-active-icon-secondary .svg-icon, .btn-check:active + .btn.btn-active-icon-secondary i,
.btn-check:active + .btn.btn-active-icon-secondary .svg-icon, .btn.btn-active-icon-secondary:focus:not(.btn-active) i,
.btn.btn-active-icon-secondary:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-secondary:hover:not(.btn-active) i,
.btn.btn-active-icon-secondary:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-secondary:active:not(.btn-active) i,
.btn.btn-active-icon-secondary:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-secondary.active i,
.btn.btn-active-icon-secondary.active .svg-icon, .btn.btn-active-icon-secondary.show i,
.btn.btn-active-icon-secondary.show .svg-icon, .show > .btn.btn-active-icon-secondary i,
.show > .btn.btn-active-icon-secondary .svg-icon {
  color: #E4E6EF;
}
.btn-check:checked + .btn.btn-active-icon-secondary.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-secondary.dropdown-toggle:after, .btn.btn-active-icon-secondary:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-secondary:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-secondary:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-secondary.active.dropdown-toggle:after, .btn.btn-active-icon-secondary.show.dropdown-toggle:after, .show > .btn.btn-active-icon-secondary.dropdown-toggle:after {
  color: #E4E6EF;
}

.btn.btn-text-secondary {
  color: #E4E6EF;
}
.btn-check:checked + .btn.btn-active-text-secondary, .btn-check:active + .btn.btn-active-text-secondary, .btn.btn-active-text-secondary:focus:not(.btn-active), .btn.btn-active-text-secondary:hover:not(.btn-active), .btn.btn-active-text-secondary:active:not(.btn-active), .btn.btn-active-text-secondary.active, .btn.btn-active-text-secondary.show, .show > .btn.btn-active-text-secondary {
  color: #E4E6EF;
}

.btn.btn-color-light {
  color: #F5F8FA;
}
.btn.btn-color-light i,
.btn.btn-color-light .svg-icon {
  color: #F5F8FA;
}
.btn.btn-color-light.dropdown-toggle:after {
  color: #F5F8FA;
}
.btn-check:checked + .btn.btn-active-color-light, .btn-check:active + .btn.btn-active-color-light, .btn.btn-active-color-light:focus:not(.btn-active), .btn.btn-active-color-light:hover:not(.btn-active), .btn.btn-active-color-light:active:not(.btn-active), .btn.btn-active-color-light.active, .btn.btn-active-color-light.show, .show > .btn.btn-active-color-light {
  color: #F5F8FA;
}
.btn-check:checked + .btn.btn-active-color-light i,
.btn-check:checked + .btn.btn-active-color-light .svg-icon, .btn-check:active + .btn.btn-active-color-light i,
.btn-check:active + .btn.btn-active-color-light .svg-icon, .btn.btn-active-color-light:focus:not(.btn-active) i,
.btn.btn-active-color-light:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-light:hover:not(.btn-active) i,
.btn.btn-active-color-light:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-light:active:not(.btn-active) i,
.btn.btn-active-color-light:active:not(.btn-active) .svg-icon, .btn.btn-active-color-light.active i,
.btn.btn-active-color-light.active .svg-icon, .btn.btn-active-color-light.show i,
.btn.btn-active-color-light.show .svg-icon, .show > .btn.btn-active-color-light i,
.show > .btn.btn-active-color-light .svg-icon {
  color: #F5F8FA;
}
.btn-check:checked + .btn.btn-active-color-light.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-light.dropdown-toggle:after, .btn.btn-active-color-light:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-light:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-light:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-light.active.dropdown-toggle:after, .btn.btn-active-color-light.show.dropdown-toggle:after, .show > .btn.btn-active-color-light.dropdown-toggle:after {
  color: #F5F8FA;
}

.btn.btn-icon-light i,
.btn.btn-icon-light .svg-icon {
  color: #F5F8FA;
}
.btn.btn-icon-light.dropdown-toggle:after {
  color: #F5F8FA;
}
.btn-check:checked + .btn.btn-active-icon-light i,
.btn-check:checked + .btn.btn-active-icon-light .svg-icon, .btn-check:active + .btn.btn-active-icon-light i,
.btn-check:active + .btn.btn-active-icon-light .svg-icon, .btn.btn-active-icon-light:focus:not(.btn-active) i,
.btn.btn-active-icon-light:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-light:hover:not(.btn-active) i,
.btn.btn-active-icon-light:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-light:active:not(.btn-active) i,
.btn.btn-active-icon-light:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-light.active i,
.btn.btn-active-icon-light.active .svg-icon, .btn.btn-active-icon-light.show i,
.btn.btn-active-icon-light.show .svg-icon, .show > .btn.btn-active-icon-light i,
.show > .btn.btn-active-icon-light .svg-icon {
  color: #F5F8FA;
}
.btn-check:checked + .btn.btn-active-icon-light.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-light.dropdown-toggle:after, .btn.btn-active-icon-light:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-light:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-light:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-light.active.dropdown-toggle:after, .btn.btn-active-icon-light.show.dropdown-toggle:after, .show > .btn.btn-active-icon-light.dropdown-toggle:after {
  color: #F5F8FA;
}

.btn.btn-text-light {
  color: #F5F8FA;
}
.btn-check:checked + .btn.btn-active-text-light, .btn-check:active + .btn.btn-active-text-light, .btn.btn-active-text-light:focus:not(.btn-active), .btn.btn-active-text-light:hover:not(.btn-active), .btn.btn-active-text-light:active:not(.btn-active), .btn.btn-active-text-light.active, .btn.btn-active-text-light.show, .show > .btn.btn-active-text-light {
  color: #F5F8FA;
}

.btn.btn-color-success {
  color: #50CD89;
}
.btn.btn-color-success i,
.btn.btn-color-success .svg-icon {
  color: #50CD89;
}
.btn.btn-color-success.dropdown-toggle:after {
  color: #50CD89;
}
.btn-check:checked + .btn.btn-active-color-success, .btn-check:active + .btn.btn-active-color-success, .btn.btn-active-color-success:focus:not(.btn-active), .btn.btn-active-color-success:hover:not(.btn-active), .btn.btn-active-color-success:active:not(.btn-active), .btn.btn-active-color-success.active, .btn.btn-active-color-success.show, .show > .btn.btn-active-color-success {
  color: #50CD89;
}
.btn-check:checked + .btn.btn-active-color-success i,
.btn-check:checked + .btn.btn-active-color-success .svg-icon, .btn-check:active + .btn.btn-active-color-success i,
.btn-check:active + .btn.btn-active-color-success .svg-icon, .btn.btn-active-color-success:focus:not(.btn-active) i,
.btn.btn-active-color-success:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-success:hover:not(.btn-active) i,
.btn.btn-active-color-success:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-success:active:not(.btn-active) i,
.btn.btn-active-color-success:active:not(.btn-active) .svg-icon, .btn.btn-active-color-success.active i,
.btn.btn-active-color-success.active .svg-icon, .btn.btn-active-color-success.show i,
.btn.btn-active-color-success.show .svg-icon, .show > .btn.btn-active-color-success i,
.show > .btn.btn-active-color-success .svg-icon {
  color: #50CD89;
}
.btn-check:checked + .btn.btn-active-color-success.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-success.dropdown-toggle:after, .btn.btn-active-color-success:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-success:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-success:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-success.active.dropdown-toggle:after, .btn.btn-active-color-success.show.dropdown-toggle:after, .show > .btn.btn-active-color-success.dropdown-toggle:after {
  color: #50CD89;
}

.btn.btn-icon-success i,
.btn.btn-icon-success .svg-icon {
  color: #50CD89;
}
.btn.btn-icon-success.dropdown-toggle:after {
  color: #50CD89;
}
.btn-check:checked + .btn.btn-active-icon-success i,
.btn-check:checked + .btn.btn-active-icon-success .svg-icon, .btn-check:active + .btn.btn-active-icon-success i,
.btn-check:active + .btn.btn-active-icon-success .svg-icon, .btn.btn-active-icon-success:focus:not(.btn-active) i,
.btn.btn-active-icon-success:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-success:hover:not(.btn-active) i,
.btn.btn-active-icon-success:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-success:active:not(.btn-active) i,
.btn.btn-active-icon-success:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-success.active i,
.btn.btn-active-icon-success.active .svg-icon, .btn.btn-active-icon-success.show i,
.btn.btn-active-icon-success.show .svg-icon, .show > .btn.btn-active-icon-success i,
.show > .btn.btn-active-icon-success .svg-icon {
  color: #50CD89;
}
.btn-check:checked + .btn.btn-active-icon-success.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-success.dropdown-toggle:after, .btn.btn-active-icon-success:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-success:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-success:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-success.active.dropdown-toggle:after, .btn.btn-active-icon-success.show.dropdown-toggle:after, .show > .btn.btn-active-icon-success.dropdown-toggle:after {
  color: #50CD89;
}

.btn.btn-text-success {
  color: #50CD89;
}
.btn-check:checked + .btn.btn-active-text-success, .btn-check:active + .btn.btn-active-text-success, .btn.btn-active-text-success:focus:not(.btn-active), .btn.btn-active-text-success:hover:not(.btn-active), .btn.btn-active-text-success:active:not(.btn-active), .btn.btn-active-text-success.active, .btn.btn-active-text-success.show, .show > .btn.btn-active-text-success {
  color: #50CD89;
}

.btn.btn-color-info {
  color: #7239EA;
}
.btn.btn-color-info i,
.btn.btn-color-info .svg-icon {
  color: #7239EA;
}
.btn.btn-color-info.dropdown-toggle:after {
  color: #7239EA;
}
.btn-check:checked + .btn.btn-active-color-info, .btn-check:active + .btn.btn-active-color-info, .btn.btn-active-color-info:focus:not(.btn-active), .btn.btn-active-color-info:hover:not(.btn-active), .btn.btn-active-color-info:active:not(.btn-active), .btn.btn-active-color-info.active, .btn.btn-active-color-info.show, .show > .btn.btn-active-color-info {
  color: #7239EA;
}
.btn-check:checked + .btn.btn-active-color-info i,
.btn-check:checked + .btn.btn-active-color-info .svg-icon, .btn-check:active + .btn.btn-active-color-info i,
.btn-check:active + .btn.btn-active-color-info .svg-icon, .btn.btn-active-color-info:focus:not(.btn-active) i,
.btn.btn-active-color-info:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-info:hover:not(.btn-active) i,
.btn.btn-active-color-info:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-info:active:not(.btn-active) i,
.btn.btn-active-color-info:active:not(.btn-active) .svg-icon, .btn.btn-active-color-info.active i,
.btn.btn-active-color-info.active .svg-icon, .btn.btn-active-color-info.show i,
.btn.btn-active-color-info.show .svg-icon, .show > .btn.btn-active-color-info i,
.show > .btn.btn-active-color-info .svg-icon {
  color: #7239EA;
}
.btn-check:checked + .btn.btn-active-color-info.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-info.dropdown-toggle:after, .btn.btn-active-color-info:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-info:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-info:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-info.active.dropdown-toggle:after, .btn.btn-active-color-info.show.dropdown-toggle:after, .show > .btn.btn-active-color-info.dropdown-toggle:after {
  color: #7239EA;
}

.btn.btn-icon-info i,
.btn.btn-icon-info .svg-icon {
  color: #7239EA;
}
.btn.btn-icon-info.dropdown-toggle:after {
  color: #7239EA;
}
.btn-check:checked + .btn.btn-active-icon-info i,
.btn-check:checked + .btn.btn-active-icon-info .svg-icon, .btn-check:active + .btn.btn-active-icon-info i,
.btn-check:active + .btn.btn-active-icon-info .svg-icon, .btn.btn-active-icon-info:focus:not(.btn-active) i,
.btn.btn-active-icon-info:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-info:hover:not(.btn-active) i,
.btn.btn-active-icon-info:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-info:active:not(.btn-active) i,
.btn.btn-active-icon-info:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-info.active i,
.btn.btn-active-icon-info.active .svg-icon, .btn.btn-active-icon-info.show i,
.btn.btn-active-icon-info.show .svg-icon, .show > .btn.btn-active-icon-info i,
.show > .btn.btn-active-icon-info .svg-icon {
  color: #7239EA;
}
.btn-check:checked + .btn.btn-active-icon-info.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-info.dropdown-toggle:after, .btn.btn-active-icon-info:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-info:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-info:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-info.active.dropdown-toggle:after, .btn.btn-active-icon-info.show.dropdown-toggle:after, .show > .btn.btn-active-icon-info.dropdown-toggle:after {
  color: #7239EA;
}

.btn.btn-text-info {
  color: #7239EA;
}
.btn-check:checked + .btn.btn-active-text-info, .btn-check:active + .btn.btn-active-text-info, .btn.btn-active-text-info:focus:not(.btn-active), .btn.btn-active-text-info:hover:not(.btn-active), .btn.btn-active-text-info:active:not(.btn-active), .btn.btn-active-text-info.active, .btn.btn-active-text-info.show, .show > .btn.btn-active-text-info {
  color: #7239EA;
}

.btn.btn-color-warning {
  color: #FFC700;
}
.btn.btn-color-warning i,
.btn.btn-color-warning .svg-icon {
  color: #FFC700;
}
.btn.btn-color-warning.dropdown-toggle:after {
  color: #FFC700;
}
.btn-check:checked + .btn.btn-active-color-warning, .btn-check:active + .btn.btn-active-color-warning, .btn.btn-active-color-warning:focus:not(.btn-active), .btn.btn-active-color-warning:hover:not(.btn-active), .btn.btn-active-color-warning:active:not(.btn-active), .btn.btn-active-color-warning.active, .btn.btn-active-color-warning.show, .show > .btn.btn-active-color-warning {
  color: #FFC700;
}
.btn-check:checked + .btn.btn-active-color-warning i,
.btn-check:checked + .btn.btn-active-color-warning .svg-icon, .btn-check:active + .btn.btn-active-color-warning i,
.btn-check:active + .btn.btn-active-color-warning .svg-icon, .btn.btn-active-color-warning:focus:not(.btn-active) i,
.btn.btn-active-color-warning:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-warning:hover:not(.btn-active) i,
.btn.btn-active-color-warning:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-warning:active:not(.btn-active) i,
.btn.btn-active-color-warning:active:not(.btn-active) .svg-icon, .btn.btn-active-color-warning.active i,
.btn.btn-active-color-warning.active .svg-icon, .btn.btn-active-color-warning.show i,
.btn.btn-active-color-warning.show .svg-icon, .show > .btn.btn-active-color-warning i,
.show > .btn.btn-active-color-warning .svg-icon {
  color: #FFC700;
}
.btn-check:checked + .btn.btn-active-color-warning.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-warning.dropdown-toggle:after, .btn.btn-active-color-warning:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-warning:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-warning:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-warning.active.dropdown-toggle:after, .btn.btn-active-color-warning.show.dropdown-toggle:after, .show > .btn.btn-active-color-warning.dropdown-toggle:after {
  color: #FFC700;
}

.btn.btn-icon-warning i,
.btn.btn-icon-warning .svg-icon {
  color: #FFC700;
}
.btn.btn-icon-warning.dropdown-toggle:after {
  color: #FFC700;
}
.btn-check:checked + .btn.btn-active-icon-warning i,
.btn-check:checked + .btn.btn-active-icon-warning .svg-icon, .btn-check:active + .btn.btn-active-icon-warning i,
.btn-check:active + .btn.btn-active-icon-warning .svg-icon, .btn.btn-active-icon-warning:focus:not(.btn-active) i,
.btn.btn-active-icon-warning:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-warning:hover:not(.btn-active) i,
.btn.btn-active-icon-warning:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-warning:active:not(.btn-active) i,
.btn.btn-active-icon-warning:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-warning.active i,
.btn.btn-active-icon-warning.active .svg-icon, .btn.btn-active-icon-warning.show i,
.btn.btn-active-icon-warning.show .svg-icon, .show > .btn.btn-active-icon-warning i,
.show > .btn.btn-active-icon-warning .svg-icon {
  color: #FFC700;
}
.btn-check:checked + .btn.btn-active-icon-warning.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-warning.dropdown-toggle:after, .btn.btn-active-icon-warning:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-warning:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-warning:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-warning.active.dropdown-toggle:after, .btn.btn-active-icon-warning.show.dropdown-toggle:after, .show > .btn.btn-active-icon-warning.dropdown-toggle:after {
  color: #FFC700;
}

.btn.btn-text-warning {
  color: #FFC700;
}
.btn-check:checked + .btn.btn-active-text-warning, .btn-check:active + .btn.btn-active-text-warning, .btn.btn-active-text-warning:focus:not(.btn-active), .btn.btn-active-text-warning:hover:not(.btn-active), .btn.btn-active-text-warning:active:not(.btn-active), .btn.btn-active-text-warning.active, .btn.btn-active-text-warning.show, .show > .btn.btn-active-text-warning {
  color: #FFC700;
}

.btn.btn-color-danger {
  color: #F1416C;
}
.btn.btn-color-danger i,
.btn.btn-color-danger .svg-icon {
  color: #F1416C;
}
.btn.btn-color-danger.dropdown-toggle:after {
  color: #F1416C;
}
.btn-check:checked + .btn.btn-active-color-danger, .btn-check:active + .btn.btn-active-color-danger, .btn.btn-active-color-danger:focus:not(.btn-active), .btn.btn-active-color-danger:hover:not(.btn-active), .btn.btn-active-color-danger:active:not(.btn-active), .btn.btn-active-color-danger.active, .btn.btn-active-color-danger.show, .show > .btn.btn-active-color-danger {
  color: #F1416C;
}
.btn-check:checked + .btn.btn-active-color-danger i,
.btn-check:checked + .btn.btn-active-color-danger .svg-icon, .btn-check:active + .btn.btn-active-color-danger i,
.btn-check:active + .btn.btn-active-color-danger .svg-icon, .btn.btn-active-color-danger:focus:not(.btn-active) i,
.btn.btn-active-color-danger:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-danger:hover:not(.btn-active) i,
.btn.btn-active-color-danger:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-danger:active:not(.btn-active) i,
.btn.btn-active-color-danger:active:not(.btn-active) .svg-icon, .btn.btn-active-color-danger.active i,
.btn.btn-active-color-danger.active .svg-icon, .btn.btn-active-color-danger.show i,
.btn.btn-active-color-danger.show .svg-icon, .show > .btn.btn-active-color-danger i,
.show > .btn.btn-active-color-danger .svg-icon {
  color: #F1416C;
}
.btn-check:checked + .btn.btn-active-color-danger.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-danger.dropdown-toggle:after, .btn.btn-active-color-danger:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-danger:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-danger:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-danger.active.dropdown-toggle:after, .btn.btn-active-color-danger.show.dropdown-toggle:after, .show > .btn.btn-active-color-danger.dropdown-toggle:after {
  color: #F1416C;
}

.btn.btn-icon-danger i,
.btn.btn-icon-danger .svg-icon {
  color: #F1416C;
}
.btn.btn-icon-danger.dropdown-toggle:after {
  color: #F1416C;
}
.btn-check:checked + .btn.btn-active-icon-danger i,
.btn-check:checked + .btn.btn-active-icon-danger .svg-icon, .btn-check:active + .btn.btn-active-icon-danger i,
.btn-check:active + .btn.btn-active-icon-danger .svg-icon, .btn.btn-active-icon-danger:focus:not(.btn-active) i,
.btn.btn-active-icon-danger:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-danger:hover:not(.btn-active) i,
.btn.btn-active-icon-danger:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-danger:active:not(.btn-active) i,
.btn.btn-active-icon-danger:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-danger.active i,
.btn.btn-active-icon-danger.active .svg-icon, .btn.btn-active-icon-danger.show i,
.btn.btn-active-icon-danger.show .svg-icon, .show > .btn.btn-active-icon-danger i,
.show > .btn.btn-active-icon-danger .svg-icon {
  color: #F1416C;
}
.btn-check:checked + .btn.btn-active-icon-danger.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-danger.dropdown-toggle:after, .btn.btn-active-icon-danger:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-danger:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-danger:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-danger.active.dropdown-toggle:after, .btn.btn-active-icon-danger.show.dropdown-toggle:after, .show > .btn.btn-active-icon-danger.dropdown-toggle:after {
  color: #F1416C;
}

.btn.btn-text-danger {
  color: #F1416C;
}
.btn-check:checked + .btn.btn-active-text-danger, .btn-check:active + .btn.btn-active-text-danger, .btn.btn-active-text-danger:focus:not(.btn-active), .btn.btn-active-text-danger:hover:not(.btn-active), .btn.btn-active-text-danger:active:not(.btn-active), .btn.btn-active-text-danger.active, .btn.btn-active-text-danger.show, .show > .btn.btn-active-text-danger {
  color: #F1416C;
}

.btn.btn-color-dark {
  color: #181C32;
}
.btn.btn-color-dark i,
.btn.btn-color-dark .svg-icon {
  color: #181C32;
}
.btn.btn-color-dark.dropdown-toggle:after {
  color: #181C32;
}
.btn-check:checked + .btn.btn-active-color-dark, .btn-check:active + .btn.btn-active-color-dark, .btn.btn-active-color-dark:focus:not(.btn-active), .btn.btn-active-color-dark:hover:not(.btn-active), .btn.btn-active-color-dark:active:not(.btn-active), .btn.btn-active-color-dark.active, .btn.btn-active-color-dark.show, .show > .btn.btn-active-color-dark {
  color: #181C32;
}
.btn-check:checked + .btn.btn-active-color-dark i,
.btn-check:checked + .btn.btn-active-color-dark .svg-icon, .btn-check:active + .btn.btn-active-color-dark i,
.btn-check:active + .btn.btn-active-color-dark .svg-icon, .btn.btn-active-color-dark:focus:not(.btn-active) i,
.btn.btn-active-color-dark:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-dark:hover:not(.btn-active) i,
.btn.btn-active-color-dark:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-dark:active:not(.btn-active) i,
.btn.btn-active-color-dark:active:not(.btn-active) .svg-icon, .btn.btn-active-color-dark.active i,
.btn.btn-active-color-dark.active .svg-icon, .btn.btn-active-color-dark.show i,
.btn.btn-active-color-dark.show .svg-icon, .show > .btn.btn-active-color-dark i,
.show > .btn.btn-active-color-dark .svg-icon {
  color: #181C32;
}
.btn-check:checked + .btn.btn-active-color-dark.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-dark.dropdown-toggle:after, .btn.btn-active-color-dark:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-dark:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-dark:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-dark.active.dropdown-toggle:after, .btn.btn-active-color-dark.show.dropdown-toggle:after, .show > .btn.btn-active-color-dark.dropdown-toggle:after {
  color: #181C32;
}

.btn.btn-icon-dark i,
.btn.btn-icon-dark .svg-icon {
  color: #181C32;
}
.btn.btn-icon-dark.dropdown-toggle:after {
  color: #181C32;
}
.btn-check:checked + .btn.btn-active-icon-dark i,
.btn-check:checked + .btn.btn-active-icon-dark .svg-icon, .btn-check:active + .btn.btn-active-icon-dark i,
.btn-check:active + .btn.btn-active-icon-dark .svg-icon, .btn.btn-active-icon-dark:focus:not(.btn-active) i,
.btn.btn-active-icon-dark:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-dark:hover:not(.btn-active) i,
.btn.btn-active-icon-dark:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-dark:active:not(.btn-active) i,
.btn.btn-active-icon-dark:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-dark.active i,
.btn.btn-active-icon-dark.active .svg-icon, .btn.btn-active-icon-dark.show i,
.btn.btn-active-icon-dark.show .svg-icon, .show > .btn.btn-active-icon-dark i,
.show > .btn.btn-active-icon-dark .svg-icon {
  color: #181C32;
}
.btn-check:checked + .btn.btn-active-icon-dark.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-dark.dropdown-toggle:after, .btn.btn-active-icon-dark:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-dark:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-dark:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-dark.active.dropdown-toggle:after, .btn.btn-active-icon-dark.show.dropdown-toggle:after, .show > .btn.btn-active-icon-dark.dropdown-toggle:after {
  color: #181C32;
}

.btn.btn-text-dark {
  color: #181C32;
}
.btn-check:checked + .btn.btn-active-text-dark, .btn-check:active + .btn.btn-active-text-dark, .btn.btn-active-text-dark:focus:not(.btn-active), .btn.btn-active-text-dark:hover:not(.btn-active), .btn.btn-active-text-dark:active:not(.btn-active), .btn.btn-active-text-dark.active, .btn.btn-active-text-dark.show, .show > .btn.btn-active-text-dark {
  color: #181C32;
}

.btn.btn-color-muted {
  color: #A1A5B7;
}
.btn.btn-color-muted i,
.btn.btn-color-muted .svg-icon {
  color: #A1A5B7;
}
.btn.btn-color-muted.dropdown-toggle:after {
  color: #A1A5B7;
}
.btn-check:checked + .btn.btn-active-color-muted, .btn-check:active + .btn.btn-active-color-muted, .btn.btn-active-color-muted:focus:not(.btn-active), .btn.btn-active-color-muted:hover:not(.btn-active), .btn.btn-active-color-muted:active:not(.btn-active), .btn.btn-active-color-muted.active, .btn.btn-active-color-muted.show, .show > .btn.btn-active-color-muted {
  color: #A1A5B7;
}
.btn-check:checked + .btn.btn-active-color-muted i,
.btn-check:checked + .btn.btn-active-color-muted .svg-icon, .btn-check:active + .btn.btn-active-color-muted i,
.btn-check:active + .btn.btn-active-color-muted .svg-icon, .btn.btn-active-color-muted:focus:not(.btn-active) i,
.btn.btn-active-color-muted:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-muted:hover:not(.btn-active) i,
.btn.btn-active-color-muted:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-muted:active:not(.btn-active) i,
.btn.btn-active-color-muted:active:not(.btn-active) .svg-icon, .btn.btn-active-color-muted.active i,
.btn.btn-active-color-muted.active .svg-icon, .btn.btn-active-color-muted.show i,
.btn.btn-active-color-muted.show .svg-icon, .show > .btn.btn-active-color-muted i,
.show > .btn.btn-active-color-muted .svg-icon {
  color: #A1A5B7;
}
.btn-check:checked + .btn.btn-active-color-muted.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-muted.dropdown-toggle:after, .btn.btn-active-color-muted:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-muted:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-muted:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-muted.active.dropdown-toggle:after, .btn.btn-active-color-muted.show.dropdown-toggle:after, .show > .btn.btn-active-color-muted.dropdown-toggle:after {
  color: #A1A5B7;
}

.btn.btn-icon-muted i,
.btn.btn-icon-muted .svg-icon {
  color: #A1A5B7;
}
.btn.btn-icon-muted.dropdown-toggle:after {
  color: #A1A5B7;
}
.btn-check:checked + .btn.btn-active-icon-muted i,
.btn-check:checked + .btn.btn-active-icon-muted .svg-icon, .btn-check:active + .btn.btn-active-icon-muted i,
.btn-check:active + .btn.btn-active-icon-muted .svg-icon, .btn.btn-active-icon-muted:focus:not(.btn-active) i,
.btn.btn-active-icon-muted:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-muted:hover:not(.btn-active) i,
.btn.btn-active-icon-muted:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-muted:active:not(.btn-active) i,
.btn.btn-active-icon-muted:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-muted.active i,
.btn.btn-active-icon-muted.active .svg-icon, .btn.btn-active-icon-muted.show i,
.btn.btn-active-icon-muted.show .svg-icon, .show > .btn.btn-active-icon-muted i,
.show > .btn.btn-active-icon-muted .svg-icon {
  color: #A1A5B7;
}
.btn-check:checked + .btn.btn-active-icon-muted.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-muted.dropdown-toggle:after, .btn.btn-active-icon-muted:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-muted:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-muted:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-muted.active.dropdown-toggle:after, .btn.btn-active-icon-muted.show.dropdown-toggle:after, .show > .btn.btn-active-icon-muted.dropdown-toggle:after {
  color: #A1A5B7;
}

.btn.btn-text-muted {
  color: #A1A5B7;
}
.btn-check:checked + .btn.btn-active-text-muted, .btn-check:active + .btn.btn-active-text-muted, .btn.btn-active-text-muted:focus:not(.btn-active), .btn.btn-active-text-muted:hover:not(.btn-active), .btn.btn-active-text-muted:active:not(.btn-active), .btn.btn-active-text-muted.active, .btn.btn-active-text-muted.show, .show > .btn.btn-active-text-muted {
  color: #A1A5B7;
}

.btn.btn-color-gray-100 {
  color: #F5F8FA;
}
.btn.btn-color-gray-100 i,
.btn.btn-color-gray-100 .svg-icon {
  color: #F5F8FA;
}
.btn.btn-color-gray-100.dropdown-toggle:after {
  color: #F5F8FA;
}
.btn-check:checked + .btn.btn-active-color-gray-100, .btn-check:active + .btn.btn-active-color-gray-100, .btn.btn-active-color-gray-100:focus:not(.btn-active), .btn.btn-active-color-gray-100:hover:not(.btn-active), .btn.btn-active-color-gray-100:active:not(.btn-active), .btn.btn-active-color-gray-100.active, .btn.btn-active-color-gray-100.show, .show > .btn.btn-active-color-gray-100 {
  color: #F5F8FA;
}
.btn-check:checked + .btn.btn-active-color-gray-100 i,
.btn-check:checked + .btn.btn-active-color-gray-100 .svg-icon, .btn-check:active + .btn.btn-active-color-gray-100 i,
.btn-check:active + .btn.btn-active-color-gray-100 .svg-icon, .btn.btn-active-color-gray-100:focus:not(.btn-active) i,
.btn.btn-active-color-gray-100:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-100:hover:not(.btn-active) i,
.btn.btn-active-color-gray-100:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-100:active:not(.btn-active) i,
.btn.btn-active-color-gray-100:active:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-100.active i,
.btn.btn-active-color-gray-100.active .svg-icon, .btn.btn-active-color-gray-100.show i,
.btn.btn-active-color-gray-100.show .svg-icon, .show > .btn.btn-active-color-gray-100 i,
.show > .btn.btn-active-color-gray-100 .svg-icon {
  color: #F5F8FA;
}
.btn-check:checked + .btn.btn-active-color-gray-100.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-gray-100.dropdown-toggle:after, .btn.btn-active-color-gray-100:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-100:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-100:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-100.active.dropdown-toggle:after, .btn.btn-active-color-gray-100.show.dropdown-toggle:after, .show > .btn.btn-active-color-gray-100.dropdown-toggle:after {
  color: #F5F8FA;
}

.btn.btn-icon-gray-100 i,
.btn.btn-icon-gray-100 .svg-icon {
  color: #F5F8FA;
}
.btn.btn-icon-gray-100.dropdown-toggle:after {
  color: #F5F8FA;
}
.btn-check:checked + .btn.btn-active-icon-gray-100 i,
.btn-check:checked + .btn.btn-active-icon-gray-100 .svg-icon, .btn-check:active + .btn.btn-active-icon-gray-100 i,
.btn-check:active + .btn.btn-active-icon-gray-100 .svg-icon, .btn.btn-active-icon-gray-100:focus:not(.btn-active) i,
.btn.btn-active-icon-gray-100:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-100:hover:not(.btn-active) i,
.btn.btn-active-icon-gray-100:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-100:active:not(.btn-active) i,
.btn.btn-active-icon-gray-100:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-100.active i,
.btn.btn-active-icon-gray-100.active .svg-icon, .btn.btn-active-icon-gray-100.show i,
.btn.btn-active-icon-gray-100.show .svg-icon, .show > .btn.btn-active-icon-gray-100 i,
.show > .btn.btn-active-icon-gray-100 .svg-icon {
  color: #F5F8FA;
}
.btn-check:checked + .btn.btn-active-icon-gray-100.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-gray-100.dropdown-toggle:after, .btn.btn-active-icon-gray-100:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-100:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-100:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-100.active.dropdown-toggle:after, .btn.btn-active-icon-gray-100.show.dropdown-toggle:after, .show > .btn.btn-active-icon-gray-100.dropdown-toggle:after {
  color: #F5F8FA;
}

.btn.btn-text-gray-100 {
  color: #F5F8FA;
}
.btn-check:checked + .btn.btn-active-text-gray-100, .btn-check:active + .btn.btn-active-text-gray-100, .btn.btn-active-text-gray-100:focus:not(.btn-active), .btn.btn-active-text-gray-100:hover:not(.btn-active), .btn.btn-active-text-gray-100:active:not(.btn-active), .btn.btn-active-text-gray-100.active, .btn.btn-active-text-gray-100.show, .show > .btn.btn-active-text-gray-100 {
  color: #F5F8FA;
}

.btn.btn-color-gray-200 {
  color: #EFF2F5;
}
.btn.btn-color-gray-200 i,
.btn.btn-color-gray-200 .svg-icon {
  color: #EFF2F5;
}
.btn.btn-color-gray-200.dropdown-toggle:after {
  color: #EFF2F5;
}
.btn-check:checked + .btn.btn-active-color-gray-200, .btn-check:active + .btn.btn-active-color-gray-200, .btn.btn-active-color-gray-200:focus:not(.btn-active), .btn.btn-active-color-gray-200:hover:not(.btn-active), .btn.btn-active-color-gray-200:active:not(.btn-active), .btn.btn-active-color-gray-200.active, .btn.btn-active-color-gray-200.show, .show > .btn.btn-active-color-gray-200 {
  color: #EFF2F5;
}
.btn-check:checked + .btn.btn-active-color-gray-200 i,
.btn-check:checked + .btn.btn-active-color-gray-200 .svg-icon, .btn-check:active + .btn.btn-active-color-gray-200 i,
.btn-check:active + .btn.btn-active-color-gray-200 .svg-icon, .btn.btn-active-color-gray-200:focus:not(.btn-active) i,
.btn.btn-active-color-gray-200:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-200:hover:not(.btn-active) i,
.btn.btn-active-color-gray-200:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-200:active:not(.btn-active) i,
.btn.btn-active-color-gray-200:active:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-200.active i,
.btn.btn-active-color-gray-200.active .svg-icon, .btn.btn-active-color-gray-200.show i,
.btn.btn-active-color-gray-200.show .svg-icon, .show > .btn.btn-active-color-gray-200 i,
.show > .btn.btn-active-color-gray-200 .svg-icon {
  color: #EFF2F5;
}
.btn-check:checked + .btn.btn-active-color-gray-200.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-gray-200.dropdown-toggle:after, .btn.btn-active-color-gray-200:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-200:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-200:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-200.active.dropdown-toggle:after, .btn.btn-active-color-gray-200.show.dropdown-toggle:after, .show > .btn.btn-active-color-gray-200.dropdown-toggle:after {
  color: #EFF2F5;
}

.btn.btn-icon-gray-200 i,
.btn.btn-icon-gray-200 .svg-icon {
  color: #EFF2F5;
}
.btn.btn-icon-gray-200.dropdown-toggle:after {
  color: #EFF2F5;
}
.btn-check:checked + .btn.btn-active-icon-gray-200 i,
.btn-check:checked + .btn.btn-active-icon-gray-200 .svg-icon, .btn-check:active + .btn.btn-active-icon-gray-200 i,
.btn-check:active + .btn.btn-active-icon-gray-200 .svg-icon, .btn.btn-active-icon-gray-200:focus:not(.btn-active) i,
.btn.btn-active-icon-gray-200:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-200:hover:not(.btn-active) i,
.btn.btn-active-icon-gray-200:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-200:active:not(.btn-active) i,
.btn.btn-active-icon-gray-200:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-200.active i,
.btn.btn-active-icon-gray-200.active .svg-icon, .btn.btn-active-icon-gray-200.show i,
.btn.btn-active-icon-gray-200.show .svg-icon, .show > .btn.btn-active-icon-gray-200 i,
.show > .btn.btn-active-icon-gray-200 .svg-icon {
  color: #EFF2F5;
}
.btn-check:checked + .btn.btn-active-icon-gray-200.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-gray-200.dropdown-toggle:after, .btn.btn-active-icon-gray-200:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-200:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-200:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-200.active.dropdown-toggle:after, .btn.btn-active-icon-gray-200.show.dropdown-toggle:after, .show > .btn.btn-active-icon-gray-200.dropdown-toggle:after {
  color: #EFF2F5;
}

.btn.btn-text-gray-200 {
  color: #EFF2F5;
}
.btn-check:checked + .btn.btn-active-text-gray-200, .btn-check:active + .btn.btn-active-text-gray-200, .btn.btn-active-text-gray-200:focus:not(.btn-active), .btn.btn-active-text-gray-200:hover:not(.btn-active), .btn.btn-active-text-gray-200:active:not(.btn-active), .btn.btn-active-text-gray-200.active, .btn.btn-active-text-gray-200.show, .show > .btn.btn-active-text-gray-200 {
  color: #EFF2F5;
}

.btn.btn-color-gray-300 {
  color: #E4E6EF;
}
.btn.btn-color-gray-300 i,
.btn.btn-color-gray-300 .svg-icon {
  color: #E4E6EF;
}
.btn.btn-color-gray-300.dropdown-toggle:after {
  color: #E4E6EF;
}
.btn-check:checked + .btn.btn-active-color-gray-300, .btn-check:active + .btn.btn-active-color-gray-300, .btn.btn-active-color-gray-300:focus:not(.btn-active), .btn.btn-active-color-gray-300:hover:not(.btn-active), .btn.btn-active-color-gray-300:active:not(.btn-active), .btn.btn-active-color-gray-300.active, .btn.btn-active-color-gray-300.show, .show > .btn.btn-active-color-gray-300 {
  color: #E4E6EF;
}
.btn-check:checked + .btn.btn-active-color-gray-300 i,
.btn-check:checked + .btn.btn-active-color-gray-300 .svg-icon, .btn-check:active + .btn.btn-active-color-gray-300 i,
.btn-check:active + .btn.btn-active-color-gray-300 .svg-icon, .btn.btn-active-color-gray-300:focus:not(.btn-active) i,
.btn.btn-active-color-gray-300:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-300:hover:not(.btn-active) i,
.btn.btn-active-color-gray-300:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-300:active:not(.btn-active) i,
.btn.btn-active-color-gray-300:active:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-300.active i,
.btn.btn-active-color-gray-300.active .svg-icon, .btn.btn-active-color-gray-300.show i,
.btn.btn-active-color-gray-300.show .svg-icon, .show > .btn.btn-active-color-gray-300 i,
.show > .btn.btn-active-color-gray-300 .svg-icon {
  color: #E4E6EF;
}
.btn-check:checked + .btn.btn-active-color-gray-300.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-gray-300.dropdown-toggle:after, .btn.btn-active-color-gray-300:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-300:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-300:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-300.active.dropdown-toggle:after, .btn.btn-active-color-gray-300.show.dropdown-toggle:after, .show > .btn.btn-active-color-gray-300.dropdown-toggle:after {
  color: #E4E6EF;
}

.btn.btn-icon-gray-300 i,
.btn.btn-icon-gray-300 .svg-icon {
  color: #E4E6EF;
}
.btn.btn-icon-gray-300.dropdown-toggle:after {
  color: #E4E6EF;
}
.btn-check:checked + .btn.btn-active-icon-gray-300 i,
.btn-check:checked + .btn.btn-active-icon-gray-300 .svg-icon, .btn-check:active + .btn.btn-active-icon-gray-300 i,
.btn-check:active + .btn.btn-active-icon-gray-300 .svg-icon, .btn.btn-active-icon-gray-300:focus:not(.btn-active) i,
.btn.btn-active-icon-gray-300:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-300:hover:not(.btn-active) i,
.btn.btn-active-icon-gray-300:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-300:active:not(.btn-active) i,
.btn.btn-active-icon-gray-300:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-300.active i,
.btn.btn-active-icon-gray-300.active .svg-icon, .btn.btn-active-icon-gray-300.show i,
.btn.btn-active-icon-gray-300.show .svg-icon, .show > .btn.btn-active-icon-gray-300 i,
.show > .btn.btn-active-icon-gray-300 .svg-icon {
  color: #E4E6EF;
}
.btn-check:checked + .btn.btn-active-icon-gray-300.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-gray-300.dropdown-toggle:after, .btn.btn-active-icon-gray-300:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-300:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-300:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-300.active.dropdown-toggle:after, .btn.btn-active-icon-gray-300.show.dropdown-toggle:after, .show > .btn.btn-active-icon-gray-300.dropdown-toggle:after {
  color: #E4E6EF;
}

.btn.btn-text-gray-300 {
  color: #E4E6EF;
}
.btn-check:checked + .btn.btn-active-text-gray-300, .btn-check:active + .btn.btn-active-text-gray-300, .btn.btn-active-text-gray-300:focus:not(.btn-active), .btn.btn-active-text-gray-300:hover:not(.btn-active), .btn.btn-active-text-gray-300:active:not(.btn-active), .btn.btn-active-text-gray-300.active, .btn.btn-active-text-gray-300.show, .show > .btn.btn-active-text-gray-300 {
  color: #E4E6EF;
}

.btn.btn-color-gray-400 {
  color: #B5B5C3;
}
.btn.btn-color-gray-400 i,
.btn.btn-color-gray-400 .svg-icon {
  color: #B5B5C3;
}
.btn.btn-color-gray-400.dropdown-toggle:after {
  color: #B5B5C3;
}
.btn-check:checked + .btn.btn-active-color-gray-400, .btn-check:active + .btn.btn-active-color-gray-400, .btn.btn-active-color-gray-400:focus:not(.btn-active), .btn.btn-active-color-gray-400:hover:not(.btn-active), .btn.btn-active-color-gray-400:active:not(.btn-active), .btn.btn-active-color-gray-400.active, .btn.btn-active-color-gray-400.show, .show > .btn.btn-active-color-gray-400 {
  color: #B5B5C3;
}
.btn-check:checked + .btn.btn-active-color-gray-400 i,
.btn-check:checked + .btn.btn-active-color-gray-400 .svg-icon, .btn-check:active + .btn.btn-active-color-gray-400 i,
.btn-check:active + .btn.btn-active-color-gray-400 .svg-icon, .btn.btn-active-color-gray-400:focus:not(.btn-active) i,
.btn.btn-active-color-gray-400:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-400:hover:not(.btn-active) i,
.btn.btn-active-color-gray-400:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-400:active:not(.btn-active) i,
.btn.btn-active-color-gray-400:active:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-400.active i,
.btn.btn-active-color-gray-400.active .svg-icon, .btn.btn-active-color-gray-400.show i,
.btn.btn-active-color-gray-400.show .svg-icon, .show > .btn.btn-active-color-gray-400 i,
.show > .btn.btn-active-color-gray-400 .svg-icon {
  color: #B5B5C3;
}
.btn-check:checked + .btn.btn-active-color-gray-400.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-gray-400.dropdown-toggle:after, .btn.btn-active-color-gray-400:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-400:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-400:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-400.active.dropdown-toggle:after, .btn.btn-active-color-gray-400.show.dropdown-toggle:after, .show > .btn.btn-active-color-gray-400.dropdown-toggle:after {
  color: #B5B5C3;
}

.btn.btn-icon-gray-400 i,
.btn.btn-icon-gray-400 .svg-icon {
  color: #B5B5C3;
}
.btn.btn-icon-gray-400.dropdown-toggle:after {
  color: #B5B5C3;
}
.btn-check:checked + .btn.btn-active-icon-gray-400 i,
.btn-check:checked + .btn.btn-active-icon-gray-400 .svg-icon, .btn-check:active + .btn.btn-active-icon-gray-400 i,
.btn-check:active + .btn.btn-active-icon-gray-400 .svg-icon, .btn.btn-active-icon-gray-400:focus:not(.btn-active) i,
.btn.btn-active-icon-gray-400:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-400:hover:not(.btn-active) i,
.btn.btn-active-icon-gray-400:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-400:active:not(.btn-active) i,
.btn.btn-active-icon-gray-400:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-400.active i,
.btn.btn-active-icon-gray-400.active .svg-icon, .btn.btn-active-icon-gray-400.show i,
.btn.btn-active-icon-gray-400.show .svg-icon, .show > .btn.btn-active-icon-gray-400 i,
.show > .btn.btn-active-icon-gray-400 .svg-icon {
  color: #B5B5C3;
}
.btn-check:checked + .btn.btn-active-icon-gray-400.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-gray-400.dropdown-toggle:after, .btn.btn-active-icon-gray-400:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-400:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-400:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-400.active.dropdown-toggle:after, .btn.btn-active-icon-gray-400.show.dropdown-toggle:after, .show > .btn.btn-active-icon-gray-400.dropdown-toggle:after {
  color: #B5B5C3;
}

.btn.btn-text-gray-400 {
  color: #B5B5C3;
}
.btn-check:checked + .btn.btn-active-text-gray-400, .btn-check:active + .btn.btn-active-text-gray-400, .btn.btn-active-text-gray-400:focus:not(.btn-active), .btn.btn-active-text-gray-400:hover:not(.btn-active), .btn.btn-active-text-gray-400:active:not(.btn-active), .btn.btn-active-text-gray-400.active, .btn.btn-active-text-gray-400.show, .show > .btn.btn-active-text-gray-400 {
  color: #B5B5C3;
}

.btn.btn-color-gray-500 {
  color: #A1A5B7;
}
.btn.btn-color-gray-500 i,
.btn.btn-color-gray-500 .svg-icon {
  color: #A1A5B7;
}
.btn.btn-color-gray-500.dropdown-toggle:after {
  color: #A1A5B7;
}
.btn-check:checked + .btn.btn-active-color-gray-500, .btn-check:active + .btn.btn-active-color-gray-500, .btn.btn-active-color-gray-500:focus:not(.btn-active), .btn.btn-active-color-gray-500:hover:not(.btn-active), .btn.btn-active-color-gray-500:active:not(.btn-active), .btn.btn-active-color-gray-500.active, .btn.btn-active-color-gray-500.show, .show > .btn.btn-active-color-gray-500 {
  color: #A1A5B7;
}
.btn-check:checked + .btn.btn-active-color-gray-500 i,
.btn-check:checked + .btn.btn-active-color-gray-500 .svg-icon, .btn-check:active + .btn.btn-active-color-gray-500 i,
.btn-check:active + .btn.btn-active-color-gray-500 .svg-icon, .btn.btn-active-color-gray-500:focus:not(.btn-active) i,
.btn.btn-active-color-gray-500:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-500:hover:not(.btn-active) i,
.btn.btn-active-color-gray-500:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-500:active:not(.btn-active) i,
.btn.btn-active-color-gray-500:active:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-500.active i,
.btn.btn-active-color-gray-500.active .svg-icon, .btn.btn-active-color-gray-500.show i,
.btn.btn-active-color-gray-500.show .svg-icon, .show > .btn.btn-active-color-gray-500 i,
.show > .btn.btn-active-color-gray-500 .svg-icon {
  color: #A1A5B7;
}
.btn-check:checked + .btn.btn-active-color-gray-500.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-gray-500.dropdown-toggle:after, .btn.btn-active-color-gray-500:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-500:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-500:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-500.active.dropdown-toggle:after, .btn.btn-active-color-gray-500.show.dropdown-toggle:after, .show > .btn.btn-active-color-gray-500.dropdown-toggle:after {
  color: #A1A5B7;
}

.btn.btn-icon-gray-500 i,
.btn.btn-icon-gray-500 .svg-icon {
  color: #A1A5B7;
}
.btn.btn-icon-gray-500.dropdown-toggle:after {
  color: #A1A5B7;
}
.btn-check:checked + .btn.btn-active-icon-gray-500 i,
.btn-check:checked + .btn.btn-active-icon-gray-500 .svg-icon, .btn-check:active + .btn.btn-active-icon-gray-500 i,
.btn-check:active + .btn.btn-active-icon-gray-500 .svg-icon, .btn.btn-active-icon-gray-500:focus:not(.btn-active) i,
.btn.btn-active-icon-gray-500:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-500:hover:not(.btn-active) i,
.btn.btn-active-icon-gray-500:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-500:active:not(.btn-active) i,
.btn.btn-active-icon-gray-500:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-500.active i,
.btn.btn-active-icon-gray-500.active .svg-icon, .btn.btn-active-icon-gray-500.show i,
.btn.btn-active-icon-gray-500.show .svg-icon, .show > .btn.btn-active-icon-gray-500 i,
.show > .btn.btn-active-icon-gray-500 .svg-icon {
  color: #A1A5B7;
}
.btn-check:checked + .btn.btn-active-icon-gray-500.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-gray-500.dropdown-toggle:after, .btn.btn-active-icon-gray-500:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-500:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-500:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-500.active.dropdown-toggle:after, .btn.btn-active-icon-gray-500.show.dropdown-toggle:after, .show > .btn.btn-active-icon-gray-500.dropdown-toggle:after {
  color: #A1A5B7;
}

.btn.btn-text-gray-500 {
  color: #A1A5B7;
}
.btn-check:checked + .btn.btn-active-text-gray-500, .btn-check:active + .btn.btn-active-text-gray-500, .btn.btn-active-text-gray-500:focus:not(.btn-active), .btn.btn-active-text-gray-500:hover:not(.btn-active), .btn.btn-active-text-gray-500:active:not(.btn-active), .btn.btn-active-text-gray-500.active, .btn.btn-active-text-gray-500.show, .show > .btn.btn-active-text-gray-500 {
  color: #A1A5B7;
}

.btn.btn-color-gray-600 {
  color: #7E8299;
}
.btn.btn-color-gray-600 i,
.btn.btn-color-gray-600 .svg-icon {
  color: #7E8299;
}
.btn.btn-color-gray-600.dropdown-toggle:after {
  color: #7E8299;
}
.btn-check:checked + .btn.btn-active-color-gray-600, .btn-check:active + .btn.btn-active-color-gray-600, .btn.btn-active-color-gray-600:focus:not(.btn-active), .btn.btn-active-color-gray-600:hover:not(.btn-active), .btn.btn-active-color-gray-600:active:not(.btn-active), .btn.btn-active-color-gray-600.active, .btn.btn-active-color-gray-600.show, .show > .btn.btn-active-color-gray-600 {
  color: #7E8299;
}
.btn-check:checked + .btn.btn-active-color-gray-600 i,
.btn-check:checked + .btn.btn-active-color-gray-600 .svg-icon, .btn-check:active + .btn.btn-active-color-gray-600 i,
.btn-check:active + .btn.btn-active-color-gray-600 .svg-icon, .btn.btn-active-color-gray-600:focus:not(.btn-active) i,
.btn.btn-active-color-gray-600:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-600:hover:not(.btn-active) i,
.btn.btn-active-color-gray-600:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-600:active:not(.btn-active) i,
.btn.btn-active-color-gray-600:active:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-600.active i,
.btn.btn-active-color-gray-600.active .svg-icon, .btn.btn-active-color-gray-600.show i,
.btn.btn-active-color-gray-600.show .svg-icon, .show > .btn.btn-active-color-gray-600 i,
.show > .btn.btn-active-color-gray-600 .svg-icon {
  color: #7E8299;
}
.btn-check:checked + .btn.btn-active-color-gray-600.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-gray-600.dropdown-toggle:after, .btn.btn-active-color-gray-600:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-600:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-600:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-600.active.dropdown-toggle:after, .btn.btn-active-color-gray-600.show.dropdown-toggle:after, .show > .btn.btn-active-color-gray-600.dropdown-toggle:after {
  color: #7E8299;
}

.btn.btn-icon-gray-600 i,
.btn.btn-icon-gray-600 .svg-icon {
  color: #7E8299;
}
.btn.btn-icon-gray-600.dropdown-toggle:after {
  color: #7E8299;
}
.btn-check:checked + .btn.btn-active-icon-gray-600 i,
.btn-check:checked + .btn.btn-active-icon-gray-600 .svg-icon, .btn-check:active + .btn.btn-active-icon-gray-600 i,
.btn-check:active + .btn.btn-active-icon-gray-600 .svg-icon, .btn.btn-active-icon-gray-600:focus:not(.btn-active) i,
.btn.btn-active-icon-gray-600:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-600:hover:not(.btn-active) i,
.btn.btn-active-icon-gray-600:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-600:active:not(.btn-active) i,
.btn.btn-active-icon-gray-600:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-600.active i,
.btn.btn-active-icon-gray-600.active .svg-icon, .btn.btn-active-icon-gray-600.show i,
.btn.btn-active-icon-gray-600.show .svg-icon, .show > .btn.btn-active-icon-gray-600 i,
.show > .btn.btn-active-icon-gray-600 .svg-icon {
  color: #7E8299;
}
.btn-check:checked + .btn.btn-active-icon-gray-600.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-gray-600.dropdown-toggle:after, .btn.btn-active-icon-gray-600:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-600:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-600:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-600.active.dropdown-toggle:after, .btn.btn-active-icon-gray-600.show.dropdown-toggle:after, .show > .btn.btn-active-icon-gray-600.dropdown-toggle:after {
  color: #7E8299;
}

.btn.btn-text-gray-600 {
  color: #7E8299;
}
.btn-check:checked + .btn.btn-active-text-gray-600, .btn-check:active + .btn.btn-active-text-gray-600, .btn.btn-active-text-gray-600:focus:not(.btn-active), .btn.btn-active-text-gray-600:hover:not(.btn-active), .btn.btn-active-text-gray-600:active:not(.btn-active), .btn.btn-active-text-gray-600.active, .btn.btn-active-text-gray-600.show, .show > .btn.btn-active-text-gray-600 {
  color: #7E8299;
}

.btn.btn-color-gray-700 {
  color: #5E6278;
}
.btn.btn-color-gray-700 i,
.btn.btn-color-gray-700 .svg-icon {
  color: #5E6278;
}
.btn.btn-color-gray-700.dropdown-toggle:after {
  color: #5E6278;
}
.btn-check:checked + .btn.btn-active-color-gray-700, .btn-check:active + .btn.btn-active-color-gray-700, .btn.btn-active-color-gray-700:focus:not(.btn-active), .btn.btn-active-color-gray-700:hover:not(.btn-active), .btn.btn-active-color-gray-700:active:not(.btn-active), .btn.btn-active-color-gray-700.active, .btn.btn-active-color-gray-700.show, .show > .btn.btn-active-color-gray-700 {
  color: #5E6278;
}
.btn-check:checked + .btn.btn-active-color-gray-700 i,
.btn-check:checked + .btn.btn-active-color-gray-700 .svg-icon, .btn-check:active + .btn.btn-active-color-gray-700 i,
.btn-check:active + .btn.btn-active-color-gray-700 .svg-icon, .btn.btn-active-color-gray-700:focus:not(.btn-active) i,
.btn.btn-active-color-gray-700:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-700:hover:not(.btn-active) i,
.btn.btn-active-color-gray-700:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-700:active:not(.btn-active) i,
.btn.btn-active-color-gray-700:active:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-700.active i,
.btn.btn-active-color-gray-700.active .svg-icon, .btn.btn-active-color-gray-700.show i,
.btn.btn-active-color-gray-700.show .svg-icon, .show > .btn.btn-active-color-gray-700 i,
.show > .btn.btn-active-color-gray-700 .svg-icon {
  color: #5E6278;
}
.btn-check:checked + .btn.btn-active-color-gray-700.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-gray-700.dropdown-toggle:after, .btn.btn-active-color-gray-700:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-700:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-700:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-700.active.dropdown-toggle:after, .btn.btn-active-color-gray-700.show.dropdown-toggle:after, .show > .btn.btn-active-color-gray-700.dropdown-toggle:after {
  color: #5E6278;
}

.btn.btn-icon-gray-700 i,
.btn.btn-icon-gray-700 .svg-icon {
  color: #5E6278;
}
.btn.btn-icon-gray-700.dropdown-toggle:after {
  color: #5E6278;
}
.btn-check:checked + .btn.btn-active-icon-gray-700 i,
.btn-check:checked + .btn.btn-active-icon-gray-700 .svg-icon, .btn-check:active + .btn.btn-active-icon-gray-700 i,
.btn-check:active + .btn.btn-active-icon-gray-700 .svg-icon, .btn.btn-active-icon-gray-700:focus:not(.btn-active) i,
.btn.btn-active-icon-gray-700:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-700:hover:not(.btn-active) i,
.btn.btn-active-icon-gray-700:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-700:active:not(.btn-active) i,
.btn.btn-active-icon-gray-700:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-700.active i,
.btn.btn-active-icon-gray-700.active .svg-icon, .btn.btn-active-icon-gray-700.show i,
.btn.btn-active-icon-gray-700.show .svg-icon, .show > .btn.btn-active-icon-gray-700 i,
.show > .btn.btn-active-icon-gray-700 .svg-icon {
  color: #5E6278;
}
.btn-check:checked + .btn.btn-active-icon-gray-700.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-gray-700.dropdown-toggle:after, .btn.btn-active-icon-gray-700:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-700:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-700:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-700.active.dropdown-toggle:after, .btn.btn-active-icon-gray-700.show.dropdown-toggle:after, .show > .btn.btn-active-icon-gray-700.dropdown-toggle:after {
  color: #5E6278;
}

.btn.btn-text-gray-700 {
  color: #5E6278;
}
.btn-check:checked + .btn.btn-active-text-gray-700, .btn-check:active + .btn.btn-active-text-gray-700, .btn.btn-active-text-gray-700:focus:not(.btn-active), .btn.btn-active-text-gray-700:hover:not(.btn-active), .btn.btn-active-text-gray-700:active:not(.btn-active), .btn.btn-active-text-gray-700.active, .btn.btn-active-text-gray-700.show, .show > .btn.btn-active-text-gray-700 {
  color: #5E6278;
}

.btn.btn-color-gray-800 {
  color: #3F4254;
}
.btn.btn-color-gray-800 i,
.btn.btn-color-gray-800 .svg-icon {
  color: #3F4254;
}
.btn.btn-color-gray-800.dropdown-toggle:after {
  color: #3F4254;
}
.btn-check:checked + .btn.btn-active-color-gray-800, .btn-check:active + .btn.btn-active-color-gray-800, .btn.btn-active-color-gray-800:focus:not(.btn-active), .btn.btn-active-color-gray-800:hover:not(.btn-active), .btn.btn-active-color-gray-800:active:not(.btn-active), .btn.btn-active-color-gray-800.active, .btn.btn-active-color-gray-800.show, .show > .btn.btn-active-color-gray-800 {
  color: #3F4254;
}
.btn-check:checked + .btn.btn-active-color-gray-800 i,
.btn-check:checked + .btn.btn-active-color-gray-800 .svg-icon, .btn-check:active + .btn.btn-active-color-gray-800 i,
.btn-check:active + .btn.btn-active-color-gray-800 .svg-icon, .btn.btn-active-color-gray-800:focus:not(.btn-active) i,
.btn.btn-active-color-gray-800:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-800:hover:not(.btn-active) i,
.btn.btn-active-color-gray-800:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-800:active:not(.btn-active) i,
.btn.btn-active-color-gray-800:active:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-800.active i,
.btn.btn-active-color-gray-800.active .svg-icon, .btn.btn-active-color-gray-800.show i,
.btn.btn-active-color-gray-800.show .svg-icon, .show > .btn.btn-active-color-gray-800 i,
.show > .btn.btn-active-color-gray-800 .svg-icon {
  color: #3F4254;
}
.btn-check:checked + .btn.btn-active-color-gray-800.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-gray-800.dropdown-toggle:after, .btn.btn-active-color-gray-800:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-800:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-800:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-800.active.dropdown-toggle:after, .btn.btn-active-color-gray-800.show.dropdown-toggle:after, .show > .btn.btn-active-color-gray-800.dropdown-toggle:after {
  color: #3F4254;
}

.btn.btn-icon-gray-800 i,
.btn.btn-icon-gray-800 .svg-icon {
  color: #3F4254;
}
.btn.btn-icon-gray-800.dropdown-toggle:after {
  color: #3F4254;
}
.btn-check:checked + .btn.btn-active-icon-gray-800 i,
.btn-check:checked + .btn.btn-active-icon-gray-800 .svg-icon, .btn-check:active + .btn.btn-active-icon-gray-800 i,
.btn-check:active + .btn.btn-active-icon-gray-800 .svg-icon, .btn.btn-active-icon-gray-800:focus:not(.btn-active) i,
.btn.btn-active-icon-gray-800:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-800:hover:not(.btn-active) i,
.btn.btn-active-icon-gray-800:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-800:active:not(.btn-active) i,
.btn.btn-active-icon-gray-800:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-800.active i,
.btn.btn-active-icon-gray-800.active .svg-icon, .btn.btn-active-icon-gray-800.show i,
.btn.btn-active-icon-gray-800.show .svg-icon, .show > .btn.btn-active-icon-gray-800 i,
.show > .btn.btn-active-icon-gray-800 .svg-icon {
  color: #3F4254;
}
.btn-check:checked + .btn.btn-active-icon-gray-800.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-gray-800.dropdown-toggle:after, .btn.btn-active-icon-gray-800:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-800:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-800:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-800.active.dropdown-toggle:after, .btn.btn-active-icon-gray-800.show.dropdown-toggle:after, .show > .btn.btn-active-icon-gray-800.dropdown-toggle:after {
  color: #3F4254;
}

.btn.btn-text-gray-800 {
  color: #3F4254;
}
.btn-check:checked + .btn.btn-active-text-gray-800, .btn-check:active + .btn.btn-active-text-gray-800, .btn.btn-active-text-gray-800:focus:not(.btn-active), .btn.btn-active-text-gray-800:hover:not(.btn-active), .btn.btn-active-text-gray-800:active:not(.btn-active), .btn.btn-active-text-gray-800.active, .btn.btn-active-text-gray-800.show, .show > .btn.btn-active-text-gray-800 {
  color: #3F4254;
}

.btn.btn-color-gray-900 {
  color: #181C32;
}
.btn.btn-color-gray-900 i,
.btn.btn-color-gray-900 .svg-icon {
  color: #181C32;
}
.btn.btn-color-gray-900.dropdown-toggle:after {
  color: #181C32;
}
.btn-check:checked + .btn.btn-active-color-gray-900, .btn-check:active + .btn.btn-active-color-gray-900, .btn.btn-active-color-gray-900:focus:not(.btn-active), .btn.btn-active-color-gray-900:hover:not(.btn-active), .btn.btn-active-color-gray-900:active:not(.btn-active), .btn.btn-active-color-gray-900.active, .btn.btn-active-color-gray-900.show, .show > .btn.btn-active-color-gray-900 {
  color: #181C32;
}
.btn-check:checked + .btn.btn-active-color-gray-900 i,
.btn-check:checked + .btn.btn-active-color-gray-900 .svg-icon, .btn-check:active + .btn.btn-active-color-gray-900 i,
.btn-check:active + .btn.btn-active-color-gray-900 .svg-icon, .btn.btn-active-color-gray-900:focus:not(.btn-active) i,
.btn.btn-active-color-gray-900:focus:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-900:hover:not(.btn-active) i,
.btn.btn-active-color-gray-900:hover:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-900:active:not(.btn-active) i,
.btn.btn-active-color-gray-900:active:not(.btn-active) .svg-icon, .btn.btn-active-color-gray-900.active i,
.btn.btn-active-color-gray-900.active .svg-icon, .btn.btn-active-color-gray-900.show i,
.btn.btn-active-color-gray-900.show .svg-icon, .show > .btn.btn-active-color-gray-900 i,
.show > .btn.btn-active-color-gray-900 .svg-icon {
  color: #181C32;
}
.btn-check:checked + .btn.btn-active-color-gray-900.dropdown-toggle:after, .btn-check:active + .btn.btn-active-color-gray-900.dropdown-toggle:after, .btn.btn-active-color-gray-900:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-900:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-900:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-color-gray-900.active.dropdown-toggle:after, .btn.btn-active-color-gray-900.show.dropdown-toggle:after, .show > .btn.btn-active-color-gray-900.dropdown-toggle:after {
  color: #181C32;
}

.btn.btn-icon-gray-900 i,
.btn.btn-icon-gray-900 .svg-icon {
  color: #181C32;
}
.btn.btn-icon-gray-900.dropdown-toggle:after {
  color: #181C32;
}
.btn-check:checked + .btn.btn-active-icon-gray-900 i,
.btn-check:checked + .btn.btn-active-icon-gray-900 .svg-icon, .btn-check:active + .btn.btn-active-icon-gray-900 i,
.btn-check:active + .btn.btn-active-icon-gray-900 .svg-icon, .btn.btn-active-icon-gray-900:focus:not(.btn-active) i,
.btn.btn-active-icon-gray-900:focus:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-900:hover:not(.btn-active) i,
.btn.btn-active-icon-gray-900:hover:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-900:active:not(.btn-active) i,
.btn.btn-active-icon-gray-900:active:not(.btn-active) .svg-icon, .btn.btn-active-icon-gray-900.active i,
.btn.btn-active-icon-gray-900.active .svg-icon, .btn.btn-active-icon-gray-900.show i,
.btn.btn-active-icon-gray-900.show .svg-icon, .show > .btn.btn-active-icon-gray-900 i,
.show > .btn.btn-active-icon-gray-900 .svg-icon {
  color: #181C32;
}
.btn-check:checked + .btn.btn-active-icon-gray-900.dropdown-toggle:after, .btn-check:active + .btn.btn-active-icon-gray-900.dropdown-toggle:after, .btn.btn-active-icon-gray-900:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-900:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-900:active:not(.btn-active).dropdown-toggle:after, .btn.btn-active-icon-gray-900.active.dropdown-toggle:after, .btn.btn-active-icon-gray-900.show.dropdown-toggle:after, .show > .btn.btn-active-icon-gray-900.dropdown-toggle:after {
  color: #181C32;
}

.btn.btn-text-gray-900 {
  color: #181C32;
}
.btn-check:checked + .btn.btn-active-text-gray-900, .btn-check:active + .btn.btn-active-text-gray-900, .btn.btn-active-text-gray-900:focus:not(.btn-active), .btn.btn-active-text-gray-900:hover:not(.btn-active), .btn.btn-active-text-gray-900:active:not(.btn-active), .btn.btn-active-text-gray-900.active, .btn.btn-active-text-gray-900.show, .show > .btn.btn-active-text-gray-900 {
  color: #181C32;
}

.btn.btn-facebook {
  color: #ffffff;
  border-color: #3b5998;
  background-color: #3b5998;
}
.btn.btn-facebook i,
.btn.btn-facebook .svg-icon {
  color: #ffffff;
}
.btn.btn-facebook.dropdown-toggle:after {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-facebook, .btn-check:active + .btn.btn-facebook, .btn.btn-facebook:focus:not(.btn-active), .btn.btn-facebook:hover:not(.btn-active), .btn.btn-facebook:active:not(.btn-active), .btn.btn-facebook.active, .btn.btn-facebook.show, .show > .btn.btn-facebook {
  border-color: #30497c;
  background-color: #30497c !important;
}

.btn.btn-light-facebook {
  color: #3b5998;
  border-color: rgba(59, 89, 152, 0.1);
  background-color: rgba(59, 89, 152, 0.1);
}
.btn.btn-light-facebook i,
.btn.btn-light-facebook .svg-icon {
  color: #3b5998;
}
.btn.btn-light-facebook.dropdown-toggle:after {
  color: #3b5998;
}
.btn-check:checked + .btn.btn-light-facebook, .btn-check:active + .btn.btn-light-facebook, .btn.btn-light-facebook:focus:not(.btn-active), .btn.btn-light-facebook:hover:not(.btn-active), .btn.btn-light-facebook:active:not(.btn-active), .btn.btn-light-facebook.active, .btn.btn-light-facebook.show, .show > .btn.btn-light-facebook {
  color: #ffffff;
  border-color: #3b5998;
  background-color: #3b5998 !important;
}
.btn-check:checked + .btn.btn-light-facebook i,
.btn-check:checked + .btn.btn-light-facebook .svg-icon, .btn-check:active + .btn.btn-light-facebook i,
.btn-check:active + .btn.btn-light-facebook .svg-icon, .btn.btn-light-facebook:focus:not(.btn-active) i,
.btn.btn-light-facebook:focus:not(.btn-active) .svg-icon, .btn.btn-light-facebook:hover:not(.btn-active) i,
.btn.btn-light-facebook:hover:not(.btn-active) .svg-icon, .btn.btn-light-facebook:active:not(.btn-active) i,
.btn.btn-light-facebook:active:not(.btn-active) .svg-icon, .btn.btn-light-facebook.active i,
.btn.btn-light-facebook.active .svg-icon, .btn.btn-light-facebook.show i,
.btn.btn-light-facebook.show .svg-icon, .show > .btn.btn-light-facebook i,
.show > .btn.btn-light-facebook .svg-icon {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-light-facebook.dropdown-toggle:after, .btn-check:active + .btn.btn-light-facebook.dropdown-toggle:after, .btn.btn-light-facebook:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-light-facebook:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-light-facebook:active:not(.btn-active).dropdown-toggle:after, .btn.btn-light-facebook.active.dropdown-toggle:after, .btn.btn-light-facebook.show.dropdown-toggle:after, .show > .btn.btn-light-facebook.dropdown-toggle:after {
  color: #ffffff;
}

.btn.btn-google {
  color: #ffffff;
  border-color: #dd4b39;
  background-color: #dd4b39;
}
.btn.btn-google i,
.btn.btn-google .svg-icon {
  color: #ffffff;
}
.btn.btn-google.dropdown-toggle:after {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-google, .btn-check:active + .btn.btn-google, .btn.btn-google:focus:not(.btn-active), .btn.btn-google:hover:not(.btn-active), .btn.btn-google:active:not(.btn-active), .btn.btn-google.active, .btn.btn-google.show, .show > .btn.btn-google {
  border-color: #cd3623;
  background-color: #cd3623 !important;
}

.btn.btn-light-google {
  color: #dd4b39;
  border-color: rgba(221, 75, 57, 0.1);
  background-color: rgba(221, 75, 57, 0.1);
}
.btn.btn-light-google i,
.btn.btn-light-google .svg-icon {
  color: #dd4b39;
}
.btn.btn-light-google.dropdown-toggle:after {
  color: #dd4b39;
}
.btn-check:checked + .btn.btn-light-google, .btn-check:active + .btn.btn-light-google, .btn.btn-light-google:focus:not(.btn-active), .btn.btn-light-google:hover:not(.btn-active), .btn.btn-light-google:active:not(.btn-active), .btn.btn-light-google.active, .btn.btn-light-google.show, .show > .btn.btn-light-google {
  color: #ffffff;
  border-color: #dd4b39;
  background-color: #dd4b39 !important;
}
.btn-check:checked + .btn.btn-light-google i,
.btn-check:checked + .btn.btn-light-google .svg-icon, .btn-check:active + .btn.btn-light-google i,
.btn-check:active + .btn.btn-light-google .svg-icon, .btn.btn-light-google:focus:not(.btn-active) i,
.btn.btn-light-google:focus:not(.btn-active) .svg-icon, .btn.btn-light-google:hover:not(.btn-active) i,
.btn.btn-light-google:hover:not(.btn-active) .svg-icon, .btn.btn-light-google:active:not(.btn-active) i,
.btn.btn-light-google:active:not(.btn-active) .svg-icon, .btn.btn-light-google.active i,
.btn.btn-light-google.active .svg-icon, .btn.btn-light-google.show i,
.btn.btn-light-google.show .svg-icon, .show > .btn.btn-light-google i,
.show > .btn.btn-light-google .svg-icon {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-light-google.dropdown-toggle:after, .btn-check:active + .btn.btn-light-google.dropdown-toggle:after, .btn.btn-light-google:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-light-google:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-light-google:active:not(.btn-active).dropdown-toggle:after, .btn.btn-light-google.active.dropdown-toggle:after, .btn.btn-light-google.show.dropdown-toggle:after, .show > .btn.btn-light-google.dropdown-toggle:after {
  color: #ffffff;
}

.btn.btn-twitter {
  color: #ffffff;
  border-color: #1da1f2;
  background-color: #1da1f2;
}
.btn.btn-twitter i,
.btn.btn-twitter .svg-icon {
  color: #ffffff;
}
.btn.btn-twitter.dropdown-toggle:after {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-twitter, .btn-check:active + .btn.btn-twitter, .btn.btn-twitter:focus:not(.btn-active), .btn.btn-twitter:hover:not(.btn-active), .btn.btn-twitter:active:not(.btn-active), .btn.btn-twitter.active, .btn.btn-twitter.show, .show > .btn.btn-twitter {
  border-color: #0d8ddc;
  background-color: #0d8ddc !important;
}

.btn.btn-light-twitter {
  color: #1da1f2;
  border-color: rgba(29, 161, 242, 0.1);
  background-color: rgba(29, 161, 242, 0.1);
}
.btn.btn-light-twitter i,
.btn.btn-light-twitter .svg-icon {
  color: #1da1f2;
}
.btn.btn-light-twitter.dropdown-toggle:after {
  color: #1da1f2;
}
.btn-check:checked + .btn.btn-light-twitter, .btn-check:active + .btn.btn-light-twitter, .btn.btn-light-twitter:focus:not(.btn-active), .btn.btn-light-twitter:hover:not(.btn-active), .btn.btn-light-twitter:active:not(.btn-active), .btn.btn-light-twitter.active, .btn.btn-light-twitter.show, .show > .btn.btn-light-twitter {
  color: #ffffff;
  border-color: #1da1f2;
  background-color: #1da1f2 !important;
}
.btn-check:checked + .btn.btn-light-twitter i,
.btn-check:checked + .btn.btn-light-twitter .svg-icon, .btn-check:active + .btn.btn-light-twitter i,
.btn-check:active + .btn.btn-light-twitter .svg-icon, .btn.btn-light-twitter:focus:not(.btn-active) i,
.btn.btn-light-twitter:focus:not(.btn-active) .svg-icon, .btn.btn-light-twitter:hover:not(.btn-active) i,
.btn.btn-light-twitter:hover:not(.btn-active) .svg-icon, .btn.btn-light-twitter:active:not(.btn-active) i,
.btn.btn-light-twitter:active:not(.btn-active) .svg-icon, .btn.btn-light-twitter.active i,
.btn.btn-light-twitter.active .svg-icon, .btn.btn-light-twitter.show i,
.btn.btn-light-twitter.show .svg-icon, .show > .btn.btn-light-twitter i,
.show > .btn.btn-light-twitter .svg-icon {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-light-twitter.dropdown-toggle:after, .btn-check:active + .btn.btn-light-twitter.dropdown-toggle:after, .btn.btn-light-twitter:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-light-twitter:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-light-twitter:active:not(.btn-active).dropdown-toggle:after, .btn.btn-light-twitter.active.dropdown-toggle:after, .btn.btn-light-twitter.show.dropdown-toggle:after, .show > .btn.btn-light-twitter.dropdown-toggle:after {
  color: #ffffff;
}

.btn.btn-instagram {
  color: #ffffff;
  border-color: #e1306c;
  background-color: #e1306c;
}
.btn.btn-instagram i,
.btn.btn-instagram .svg-icon {
  color: #ffffff;
}
.btn.btn-instagram.dropdown-toggle:after {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-instagram, .btn-check:active + .btn.btn-instagram, .btn.btn-instagram:focus:not(.btn-active), .btn.btn-instagram:hover:not(.btn-active), .btn.btn-instagram:active:not(.btn-active), .btn.btn-instagram.active, .btn.btn-instagram.show, .show > .btn.btn-instagram {
  border-color: #cd1e59;
  background-color: #cd1e59 !important;
}

.btn.btn-light-instagram {
  color: #e1306c;
  border-color: rgba(225, 48, 108, 0.1);
  background-color: rgba(225, 48, 108, 0.1);
}
.btn.btn-light-instagram i,
.btn.btn-light-instagram .svg-icon {
  color: #e1306c;
}
.btn.btn-light-instagram.dropdown-toggle:after {
  color: #e1306c;
}
.btn-check:checked + .btn.btn-light-instagram, .btn-check:active + .btn.btn-light-instagram, .btn.btn-light-instagram:focus:not(.btn-active), .btn.btn-light-instagram:hover:not(.btn-active), .btn.btn-light-instagram:active:not(.btn-active), .btn.btn-light-instagram.active, .btn.btn-light-instagram.show, .show > .btn.btn-light-instagram {
  color: #ffffff;
  border-color: #e1306c;
  background-color: #e1306c !important;
}
.btn-check:checked + .btn.btn-light-instagram i,
.btn-check:checked + .btn.btn-light-instagram .svg-icon, .btn-check:active + .btn.btn-light-instagram i,
.btn-check:active + .btn.btn-light-instagram .svg-icon, .btn.btn-light-instagram:focus:not(.btn-active) i,
.btn.btn-light-instagram:focus:not(.btn-active) .svg-icon, .btn.btn-light-instagram:hover:not(.btn-active) i,
.btn.btn-light-instagram:hover:not(.btn-active) .svg-icon, .btn.btn-light-instagram:active:not(.btn-active) i,
.btn.btn-light-instagram:active:not(.btn-active) .svg-icon, .btn.btn-light-instagram.active i,
.btn.btn-light-instagram.active .svg-icon, .btn.btn-light-instagram.show i,
.btn.btn-light-instagram.show .svg-icon, .show > .btn.btn-light-instagram i,
.show > .btn.btn-light-instagram .svg-icon {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-light-instagram.dropdown-toggle:after, .btn-check:active + .btn.btn-light-instagram.dropdown-toggle:after, .btn.btn-light-instagram:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-light-instagram:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-light-instagram:active:not(.btn-active).dropdown-toggle:after, .btn.btn-light-instagram.active.dropdown-toggle:after, .btn.btn-light-instagram.show.dropdown-toggle:after, .show > .btn.btn-light-instagram.dropdown-toggle:after {
  color: #ffffff;
}

.btn.btn-youtube {
  color: #ffffff;
  border-color: #ff0000;
  background-color: #ff0000;
}
.btn.btn-youtube i,
.btn.btn-youtube .svg-icon {
  color: #ffffff;
}
.btn.btn-youtube.dropdown-toggle:after {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-youtube, .btn-check:active + .btn.btn-youtube, .btn.btn-youtube:focus:not(.btn-active), .btn.btn-youtube:hover:not(.btn-active), .btn.btn-youtube:active:not(.btn-active), .btn.btn-youtube.active, .btn.btn-youtube.show, .show > .btn.btn-youtube {
  border-color: #d90000;
  background-color: #d90000 !important;
}

.btn.btn-light-youtube {
  color: #ff0000;
  border-color: rgba(255, 0, 0, 0.1);
  background-color: rgba(255, 0, 0, 0.1);
}
.btn.btn-light-youtube i,
.btn.btn-light-youtube .svg-icon {
  color: #ff0000;
}
.btn.btn-light-youtube.dropdown-toggle:after {
  color: #ff0000;
}
.btn-check:checked + .btn.btn-light-youtube, .btn-check:active + .btn.btn-light-youtube, .btn.btn-light-youtube:focus:not(.btn-active), .btn.btn-light-youtube:hover:not(.btn-active), .btn.btn-light-youtube:active:not(.btn-active), .btn.btn-light-youtube.active, .btn.btn-light-youtube.show, .show > .btn.btn-light-youtube {
  color: #ffffff;
  border-color: #ff0000;
  background-color: #ff0000 !important;
}
.btn-check:checked + .btn.btn-light-youtube i,
.btn-check:checked + .btn.btn-light-youtube .svg-icon, .btn-check:active + .btn.btn-light-youtube i,
.btn-check:active + .btn.btn-light-youtube .svg-icon, .btn.btn-light-youtube:focus:not(.btn-active) i,
.btn.btn-light-youtube:focus:not(.btn-active) .svg-icon, .btn.btn-light-youtube:hover:not(.btn-active) i,
.btn.btn-light-youtube:hover:not(.btn-active) .svg-icon, .btn.btn-light-youtube:active:not(.btn-active) i,
.btn.btn-light-youtube:active:not(.btn-active) .svg-icon, .btn.btn-light-youtube.active i,
.btn.btn-light-youtube.active .svg-icon, .btn.btn-light-youtube.show i,
.btn.btn-light-youtube.show .svg-icon, .show > .btn.btn-light-youtube i,
.show > .btn.btn-light-youtube .svg-icon {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-light-youtube.dropdown-toggle:after, .btn-check:active + .btn.btn-light-youtube.dropdown-toggle:after, .btn.btn-light-youtube:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-light-youtube:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-light-youtube:active:not(.btn-active).dropdown-toggle:after, .btn.btn-light-youtube.active.dropdown-toggle:after, .btn.btn-light-youtube.show.dropdown-toggle:after, .show > .btn.btn-light-youtube.dropdown-toggle:after {
  color: #ffffff;
}

.btn.btn-linkedin {
  color: #ffffff;
  border-color: #0077b5;
  background-color: #0077b5;
}
.btn.btn-linkedin i,
.btn.btn-linkedin .svg-icon {
  color: #ffffff;
}
.btn.btn-linkedin.dropdown-toggle:after {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-linkedin, .btn-check:active + .btn.btn-linkedin, .btn.btn-linkedin:focus:not(.btn-active), .btn.btn-linkedin:hover:not(.btn-active), .btn.btn-linkedin:active:not(.btn-active), .btn.btn-linkedin.active, .btn.btn-linkedin.show, .show > .btn.btn-linkedin {
  border-color: #005e8f;
  background-color: #005e8f !important;
}

.btn.btn-light-linkedin {
  color: #0077b5;
  border-color: rgba(0, 119, 181, 0.1);
  background-color: rgba(0, 119, 181, 0.1);
}
.btn.btn-light-linkedin i,
.btn.btn-light-linkedin .svg-icon {
  color: #0077b5;
}
.btn.btn-light-linkedin.dropdown-toggle:after {
  color: #0077b5;
}
.btn-check:checked + .btn.btn-light-linkedin, .btn-check:active + .btn.btn-light-linkedin, .btn.btn-light-linkedin:focus:not(.btn-active), .btn.btn-light-linkedin:hover:not(.btn-active), .btn.btn-light-linkedin:active:not(.btn-active), .btn.btn-light-linkedin.active, .btn.btn-light-linkedin.show, .show > .btn.btn-light-linkedin {
  color: #ffffff;
  border-color: #0077b5;
  background-color: #0077b5 !important;
}
.btn-check:checked + .btn.btn-light-linkedin i,
.btn-check:checked + .btn.btn-light-linkedin .svg-icon, .btn-check:active + .btn.btn-light-linkedin i,
.btn-check:active + .btn.btn-light-linkedin .svg-icon, .btn.btn-light-linkedin:focus:not(.btn-active) i,
.btn.btn-light-linkedin:focus:not(.btn-active) .svg-icon, .btn.btn-light-linkedin:hover:not(.btn-active) i,
.btn.btn-light-linkedin:hover:not(.btn-active) .svg-icon, .btn.btn-light-linkedin:active:not(.btn-active) i,
.btn.btn-light-linkedin:active:not(.btn-active) .svg-icon, .btn.btn-light-linkedin.active i,
.btn.btn-light-linkedin.active .svg-icon, .btn.btn-light-linkedin.show i,
.btn.btn-light-linkedin.show .svg-icon, .show > .btn.btn-light-linkedin i,
.show > .btn.btn-light-linkedin .svg-icon {
  color: #ffffff;
}
.btn-check:checked + .btn.btn-light-linkedin.dropdown-toggle:after, .btn-check:active + .btn.btn-light-linkedin.dropdown-toggle:after, .btn.btn-light-linkedin:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-light-linkedin:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-light-linkedin:active:not(.btn-active).dropdown-toggle:after, .btn.btn-light-linkedin.active.dropdown-toggle:after, .btn.btn-light-linkedin.show.dropdown-toggle:after, .show > .btn.btn-light-linkedin.dropdown-toggle:after {
  color: #ffffff;
}

.btn.btn-outline.btn-outline-dashed {
  border-width: 1px;
  border-style: dashed;
}
.btn-check:checked + .btn.btn-outline.btn-outline-dashed, .btn-check:active + .btn.btn-outline.btn-outline-dashed, .btn.btn-outline.btn-outline-dashed:focus:not(.btn-active), .btn.btn-outline.btn-outline-dashed:hover:not(.btn-active), .btn.btn-outline.btn-outline-dashed:active:not(.btn-active), .btn.btn-outline.btn-outline-dashed.active, .btn.btn-outline.btn-outline-dashed.show, .show > .btn.btn-outline.btn-outline-dashed {
  border-color: #009EF7;
}

.btn.btn-outline.btn-outline-dashed.btn-outline-default {
  border-width: 1px;
  border-style: dashed;
  color: #7E8299;
  border-color: #E4E6EF;
}
.btn.btn-outline.btn-outline-dashed.btn-outline-default i,
.btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon {
  color: #7E8299;
}
.btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after {
  color: #7E8299;
}
.btn-check:checked + .btn.btn-outline.btn-outline-dashed.btn-outline-default, .btn-check:active + .btn.btn-outline.btn-outline-dashed.btn-outline-default, .btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active), .btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active), .btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active), .btn.btn-outline.btn-outline-dashed.btn-outline-default.active, .btn.btn-outline.btn-outline-dashed.btn-outline-default.show, .show > .btn.btn-outline.btn-outline-dashed.btn-outline-default {
  color: #009EF7;
  border-color: #009EF7;
  background-color: #F1FAFF !important;
}
.btn-check:checked + .btn.btn-outline.btn-outline-dashed.btn-outline-default i,
.btn-check:checked + .btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon, .btn-check:active + .btn.btn-outline.btn-outline-dashed.btn-outline-default i,
.btn-check:active + .btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon, .btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active) i,
.btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active) .svg-icon, .btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active) i,
.btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active) .svg-icon, .btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active) i,
.btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active) .svg-icon, .btn.btn-outline.btn-outline-dashed.btn-outline-default.active i,
.btn.btn-outline.btn-outline-dashed.btn-outline-default.active .svg-icon, .btn.btn-outline.btn-outline-dashed.btn-outline-default.show i,
.btn.btn-outline.btn-outline-dashed.btn-outline-default.show .svg-icon, .show > .btn.btn-outline.btn-outline-dashed.btn-outline-default i,
.show > .btn.btn-outline.btn-outline-dashed.btn-outline-default .svg-icon {
  color: #009EF7;
}
.btn-check:checked + .btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after, .btn-check:active + .btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after, .btn.btn-outline.btn-outline-dashed.btn-outline-default:focus:not(.btn-active).dropdown-toggle:after, .btn.btn-outline.btn-outline-dashed.btn-outline-default:hover:not(.btn-active).dropdown-toggle:after, .btn.btn-outline.btn-outline-dashed.btn-outline-default:active:not(.btn-active).dropdown-toggle:after, .btn.btn-outline.btn-outline-dashed.btn-outline-default.active.dropdown-toggle:after, .btn.btn-outline.btn-outline-dashed.btn-outline-default.show.dropdown-toggle:after, .show > .btn.btn-outline.btn-outline-dashed.btn-outline-default.dropdown-toggle:after {
  color: #009EF7;
}

code:not([class*=language-]) {
  font-weight: 400;
  color: #b93993;
  line-height: inherit;
  font-size: inherit;
  background-color: #F1F3F8;
  padding: 0.1rem 0.4rem;
  margin: 0 0.5rem;
  box-shadow: 0px 3px 9px rgba(0, 0, 0, 0.08);
  border-radius: 0.3rem;
}

.form-control {
  box-shadow: none !important;
}
.dropdown.show > .form-control {
  color: #5E6278;
  background-color: #ffffff;
  border-color: #B5B5C3;
}
.form-control[readonly] {
  background-color: #ffffff;
}
.form-control.form-control-solid {
  background-color: #F5F8FA;
  border-color: #F5F8FA;
  color: #5E6278;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.form-control.form-control-solid::placeholder {
  color: #A1A5B7;
}
.form-control.form-control-solid::-moz-placeholder {
  color: #A1A5B7;
  opacity: 1;
}
.dropdown.show > .form-control.form-control-solid, .form-control.form-control-solid:active, .form-control.form-control-solid.active, .form-control.form-control-solid:focus, .form-control.form-control-solid.focus {
  background-color: #eef3f7;
  border-color: #eef3f7;
  color: #5E6278;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.form-control.form-control-transparent {
  background-color: transparent;
  border-color: transparent;
}
.dropdown.show > .form-control.form-control-transparent, .form-control.form-control-transparent:active, .form-control.form-control-transparent.active, .form-control.form-control-transparent:focus, .form-control.form-control-transparent.focus {
  background-color: transparent;
  border-color: transparent;
}
.form-control.form-control-flush {
  border: 0;
  background-color: transparent;
  outline: none !important;
  box-shadow: none;
  border-radius: 0;
}

.placeholder-gray-500::placeholder {
  color: #A1A5B7;
}
.placeholder-gray-500::-moz-placeholder {
  color: #A1A5B7;
  opacity: 1;
}

.placeholder-white::placeholder {
  color: #ffffff;
}
.placeholder-white::-moz-placeholder {
  color: #ffffff;
  opacity: 1;
}

.resize-none {
  resize: none;
}

.form-control-solid-bg {
  background-color: #F5F8FA;
}

.form-select {
  box-shadow: none !important;
}
.form-select.form-select-solid {
  background-color: #F5F8FA;
  border-color: #F5F8FA;
  color: #5E6278;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.form-select.form-select-solid::placeholder {
  color: #A1A5B7;
}
.form-select.form-select-solid::-moz-placeholder {
  color: #A1A5B7;
  opacity: 1;
}
.dropdown.show > .form-select.form-select-solid, .form-select.form-select-solid:active, .form-select.form-select-solid.active, .form-select.form-select-solid:focus, .form-select.form-select-solid.focus {
  background-color: #eef3f7;
  border-color: #eef3f7 !important;
  color: #5E6278;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.form-select.form-select-transparent {
  background-color: transparent;
  border-color: transparent;
  color: #5E6278;
}
.form-select.form-select-transparent::placeholder {
  color: #A1A5B7;
}
.form-select.form-select-transparent::-moz-placeholder {
  color: #A1A5B7;
  opacity: 1;
}
.dropdown.show > .form-select.form-select-transparent, .form-select.form-select-transparent:active, .form-select.form-select-transparent.active, .form-select.form-select-transparent:focus, .form-select.form-select-transparent.focus {
  background-color: transparent;
  border-color: transparent !important;
  color: #5E6278;
}

.form-check .form-check-label {
  cursor: pointer;
}
.form-check .form-check-input {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-check.form-check-custom {
  display: flex;
  align-items: center;
  padding-left: 0;
  margin: 0;
}
.form-check.form-check-custom .form-check-input {
  margin: 0;
  float: none;
  flex-shrink: 0;
}
.form-check.form-check-custom .form-check-label {
  margin-left: 0.55rem;
}
.form-check:not(.form-switch) .form-check-input[type=checkbox] {
  background-size: 60% 60%;
}
.form-check.form-check-solid .form-check-input {
  border: 0;
  background-color: #EFF2F5;
}
.form-check.form-check-solid .form-check-input:active, .form-check.form-check-solid .form-check-input:focus {
  filter: none;
  background-color: #EFF2F5;
}
.form-check.form-check-solid .form-check-input:checked {
  background-color: #009EF7;
}
.form-check.form-check-success .form-check-input:checked {
  background-color: #50CD89;
}
.form-check.form-check-danger .form-check-input:checked {
  background-color: #F1416C;
}
.form-check.form-check-warning .form-check-input:checked {
  background-color: #FFC700;
}

.form-check.form-check-custom.form-check-sm .form-check-input {
  height: 1.5rem;
  width: 1.5rem;
}
.form-check.form-check-custom.form-check-lg .form-check-input {
  height: 2.25rem;
  width: 2.25rem;
}

.form-switch.form-check-solid .form-check-input {
  height: 2.25rem;
  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='%23ffffff'/%3e%3c/svg%3e");
  border-radius: 3.25rem;
}
.form-switch.form-check-solid .form-check-input:checked {
  filter: none;
  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='%23FFFFFF'/%3e%3c/svg%3e");
}
.form-switch.form-check-solid.form-switch-sm .form-check-input {
  height: 1.5rem;
  width: 2.5rem;
}
.form-switch.form-check-solid.form-switch-lg .form-check-input {
  height: 2.75rem;
  width: 3.75rem;
}

.form-floating .form-control.form-control-solid::placeholder {
  color: transparent;
}

.input-group.input-group-solid {
  border-radius: 0.475rem;
}
.input-group.input-group-solid.input-group-sm {
  border-radius: 0.325rem;
}
.input-group.input-group-solid.input-group-lg {
  border-radius: 0.625rem;
}
.input-group.input-group-solid .input-group-text {
  background-color: #F5F8FA;
  border-color: #F5F8FA;
}
.input-group.input-group-solid .input-group-text + .form-control {
  border-left-color: #E4E6EF;
}
.input-group.input-group-solid .form-control {
  background-color: #F5F8FA;
  border-color: #F5F8FA;
}
.input-group.input-group-solid .form-control + .input-group-text {
  border-left-color: #E4E6EF;
}

.required:after {
  content: "*";
  position: relative;
  font-size: inherit;
  color: #F1416C;
  padding-left: 0.25rem;
  font-weight: bold;
}

.modal .modal-header {
  align-items: center;
  justify-content: space-between;
  border-top-left-radius: 0.475rem;
  border-top-right-radius: 0.475rem;
}
.modal .modal-header h1, .modal .modal-header .h1, .modal .modal-header h2, .modal .modal-header .h2, .modal .modal-header h3, .modal .modal-header .h3, .modal .modal-header h4, .modal .modal-header .h4, .modal .modal-header h5, .modal .modal-header .h5, .modal .modal-header h6, .modal .modal-header .h6 {
  margin-bottom: 0;
}
.modal .modal-dialog {
  outline: none !important;
}

.modal-rounded {
  border-radius: 0.475rem !important;
}

.progress-vertical {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
.progress-vertical .progress {
  height: 100%;
  border-radius: 0.475rem;
  display: flex;
  align-items: flex-end;
  margin-right: 1rem;
}
.progress-vertical .progress:last-child {
  margin-right: 0;
}
.progress-vertical .progress .progress-bar {
  width: 8px;
  border-radius: 0.475rem;
}

.table > :not(:first-child) {
  border-color: transparent;
  border-width: 0;
  border-style: none;
}
.table > :not(:last-child) > :last-child > * {
  border-bottom-color: inherit;
}
.table tr, .table th, .table td {
  border-color: inherit;
  border-width: inherit;
  border-style: inherit;
  text-transform: inherit;
  font-weight: inherit;
  font-size: inherit;
  color: inherit;
  height: inherit;
  min-height: inherit;
}
.table tr:first-child, .table th:first-child, .table td:first-child {
  padding-left: 0;
}
.table tr:last-child, .table th:last-child, .table td:last-child {
  padding-right: 0;
}
.table tfoot tr:last-child,
.table tbody tr:last-child {
  border-bottom: 0 !important;
}
.table tfoot tr:last-child th, .table tfoot tr:last-child td,
.table tbody tr:last-child th,
.table tbody tr:last-child td {
  border-bottom: 0 !important;
}
.table tfoot th, .table tfoot td {
  border-top: inherit;
}
.table.table-rounded {
  border-radius: 0.475rem;
  border-spacing: 0;
  border-collapse: separate;
}
.table.table-flush tr, .table.table-flush th, .table.table-flush td {
  padding: inherit;
}
.table.table-row-bordered tr {
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #EFF2F5;
}
.table.table-row-bordered tfoot th, .table.table-row-bordered tfoot td {
  border-top-width: 1px !important;
}
.table.table-row-dashed tr {
  border-bottom-width: 1px;
  border-bottom-style: dashed;
  border-bottom-color: #EFF2F5;
}
.table.table-row-dashed tfoot th, .table.table-row-dashed tfoot td {
  border-top-width: 1px !important;
}
.table.table-row-gray-100 tr {
  border-bottom-color: #F5F8FA;
}
.table.table-row-gray-200 tr {
  border-bottom-color: #EFF2F5;
}
.table.table-row-gray-300 tr {
  border-bottom-color: #E4E6EF;
}
.table.table-row-gray-400 tr {
  border-bottom-color: #B5B5C3;
}
.table.table-row-gray-500 tr {
  border-bottom-color: #A1A5B7;
}
.table.table-row-gray-600 tr {
  border-bottom-color: #7E8299;
}
.table.table-row-gray-700 tr {
  border-bottom-color: #5E6278;
}
.table.table-row-gray-800 tr {
  border-bottom-color: #3F4254;
}
.table.table-row-gray-900 tr {
  border-bottom-color: #181C32;
}

.table-sort:after {
  opacity: 0;
}

.table-sort,
.table-sort-asc,
.table-sort-desc {
  vertical-align: middle;
}
.table-sort:after,
.table-sort-asc:after,
.table-sort-desc:after {
  position: relative;
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  content: " ";
  bottom: auto;
  right: auto;
  left: auto;
  margin-left: 0.5rem;
}

.table-sort-asc:after {
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 8' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.42111 2.06463C4.22088 1.96161 3.9637 1.9809 3.78597 2.12863L0.177181 5.12847C-0.046034 5.31402 -0.0602611 5.63049 0.145404 5.83532C0.351069 6.04015 0.698744 6.05578 0.921959 5.87023L4.14137 3.19406L7.06417 5.84414C7.27904 6.03896 7.62686 6.03835 7.84105 5.84278C8.05524 5.64721 8.05469 5.33073 7.83982 5.13591L4.54449 2.14806C4.50704 2.1141 4.46541 2.08629 4.42111 2.06463Z'/%3e%3c/svg%3e");
}

.table-sort-desc:after {
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 8' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.42111 5.93537C4.22088 6.03839 3.9637 6.0191 3.78597 5.87137L0.177181 2.87153C-0.046034 2.68598 -0.060261 2.36951 0.145404 2.16468C0.351069 1.95985 0.698744 1.94422 0.921959 2.12977L4.14137 4.80594L7.06417 2.15586C7.27904 1.96104 7.62686 1.96165 7.84105 2.15722C8.05524 2.35279 8.05469 2.66927 7.83982 2.86409L4.54449 5.85194C4.50704 5.8859 4.46541 5.91371 4.42111 5.93537Z'/%3e%3c/svg%3e");
}

.table-loading-message {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 0.475rem;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  background-color: #ffffff;
  color: #7E8299;
  font-weight: 500;
  margin: 0 !important;
  width: auto;
  padding: 1rem 2rem !important;
  transform: translateX(-50%) translateY(-50%);
}

.table-loading {
  position: relative;
}
.table-loading .table-loading-message {
  display: block;
}

.table.g-0 th, .table.g-0 td {
  padding: 0rem;
}
.table.g-0 th.dtr-control, .table.g-0 td.dtr-control {
  padding-left: 0rem !important;
}

.table.gy-0 th, .table.gy-0 td {
  padding-top: 0rem;
  padding-bottom: 0rem;
}

.table.gx-0 th, .table.gx-0 td {
  padding-left: 0rem;
  padding-right: 0rem;
}
.table.gx-0 th.dtr-control, .table.gx-0 td.dtr-control {
  padding-left: 0rem !important;
}

.table.gs-0 th:first-child, .table.gs-0 td:first-child {
  padding-left: 0rem;
}
.table.gs-0 th:last-child, .table.gs-0 td:last-child {
  padding-right: 0rem;
}
.table.gs-0 th.dtr-control:first-child, .table.gs-0 td.dtr-control:first-child {
  padding-left: 0rem !important;
}

.table.g-1 th, .table.g-1 td {
  padding: 0.25rem;
}
.table.g-1 th.dtr-control, .table.g-1 td.dtr-control {
  padding-left: 0.25rem !important;
}

.table.gy-1 th, .table.gy-1 td {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.table.gx-1 th, .table.gx-1 td {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.table.gx-1 th.dtr-control, .table.gx-1 td.dtr-control {
  padding-left: 0.25rem !important;
}

.table.gs-1 th:first-child, .table.gs-1 td:first-child {
  padding-left: 0.25rem;
}
.table.gs-1 th:last-child, .table.gs-1 td:last-child {
  padding-right: 0.25rem;
}
.table.gs-1 th.dtr-control:first-child, .table.gs-1 td.dtr-control:first-child {
  padding-left: 0.25rem !important;
}

.table.g-2 th, .table.g-2 td {
  padding: 0.5rem;
}
.table.g-2 th.dtr-control, .table.g-2 td.dtr-control {
  padding-left: 0.5rem !important;
}

.table.gy-2 th, .table.gy-2 td {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.table.gx-2 th, .table.gx-2 td {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.table.gx-2 th.dtr-control, .table.gx-2 td.dtr-control {
  padding-left: 0.5rem !important;
}

.table.gs-2 th:first-child, .table.gs-2 td:first-child {
  padding-left: 0.5rem;
}
.table.gs-2 th:last-child, .table.gs-2 td:last-child {
  padding-right: 0.5rem;
}
.table.gs-2 th.dtr-control:first-child, .table.gs-2 td.dtr-control:first-child {
  padding-left: 0.5rem !important;
}

.table.g-3 th, .table.g-3 td {
  padding: 0.75rem;
}
.table.g-3 th.dtr-control, .table.g-3 td.dtr-control {
  padding-left: 0.75rem !important;
}

.table.gy-3 th, .table.gy-3 td {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.table.gx-3 th, .table.gx-3 td {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.table.gx-3 th.dtr-control, .table.gx-3 td.dtr-control {
  padding-left: 0.75rem !important;
}

.table.gs-3 th:first-child, .table.gs-3 td:first-child {
  padding-left: 0.75rem;
}
.table.gs-3 th:last-child, .table.gs-3 td:last-child {
  padding-right: 0.75rem;
}
.table.gs-3 th.dtr-control:first-child, .table.gs-3 td.dtr-control:first-child {
  padding-left: 0.75rem !important;
}

.table.g-4 th, .table.g-4 td {
  padding: 1rem;
}
.table.g-4 th.dtr-control, .table.g-4 td.dtr-control {
  padding-left: 1rem !important;
}

.table.gy-4 th, .table.gy-4 td {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.table.gx-4 th, .table.gx-4 td {
  padding-left: 1rem;
  padding-right: 1rem;
}
.table.gx-4 th.dtr-control, .table.gx-4 td.dtr-control {
  padding-left: 1rem !important;
}

.table.gs-4 th:first-child, .table.gs-4 td:first-child {
  padding-left: 1rem;
}
.table.gs-4 th:last-child, .table.gs-4 td:last-child {
  padding-right: 1rem;
}
.table.gs-4 th.dtr-control:first-child, .table.gs-4 td.dtr-control:first-child {
  padding-left: 1rem !important;
}

.table.g-5 th, .table.g-5 td {
  padding: 1.25rem;
}
.table.g-5 th.dtr-control, .table.g-5 td.dtr-control {
  padding-left: 1.25rem !important;
}

.table.gy-5 th, .table.gy-5 td {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.table.gx-5 th, .table.gx-5 td {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.table.gx-5 th.dtr-control, .table.gx-5 td.dtr-control {
  padding-left: 1.25rem !important;
}

.table.gs-5 th:first-child, .table.gs-5 td:first-child {
  padding-left: 1.25rem;
}
.table.gs-5 th:last-child, .table.gs-5 td:last-child {
  padding-right: 1.25rem;
}
.table.gs-5 th.dtr-control:first-child, .table.gs-5 td.dtr-control:first-child {
  padding-left: 1.25rem !important;
}

.table.g-6 th, .table.g-6 td {
  padding: 1.5rem;
}
.table.g-6 th.dtr-control, .table.g-6 td.dtr-control {
  padding-left: 1.5rem !important;
}

.table.gy-6 th, .table.gy-6 td {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.table.gx-6 th, .table.gx-6 td {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.table.gx-6 th.dtr-control, .table.gx-6 td.dtr-control {
  padding-left: 1.5rem !important;
}

.table.gs-6 th:first-child, .table.gs-6 td:first-child {
  padding-left: 1.5rem;
}
.table.gs-6 th:last-child, .table.gs-6 td:last-child {
  padding-right: 1.5rem;
}
.table.gs-6 th.dtr-control:first-child, .table.gs-6 td.dtr-control:first-child {
  padding-left: 1.5rem !important;
}

.table.g-7 th, .table.g-7 td {
  padding: 1.75rem;
}
.table.g-7 th.dtr-control, .table.g-7 td.dtr-control {
  padding-left: 1.75rem !important;
}

.table.gy-7 th, .table.gy-7 td {
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}

.table.gx-7 th, .table.gx-7 td {
  padding-left: 1.75rem;
  padding-right: 1.75rem;
}
.table.gx-7 th.dtr-control, .table.gx-7 td.dtr-control {
  padding-left: 1.75rem !important;
}

.table.gs-7 th:first-child, .table.gs-7 td:first-child {
  padding-left: 1.75rem;
}
.table.gs-7 th:last-child, .table.gs-7 td:last-child {
  padding-right: 1.75rem;
}
.table.gs-7 th.dtr-control:first-child, .table.gs-7 td.dtr-control:first-child {
  padding-left: 1.75rem !important;
}

.table.g-8 th, .table.g-8 td {
  padding: 2rem;
}
.table.g-8 th.dtr-control, .table.g-8 td.dtr-control {
  padding-left: 2rem !important;
}

.table.gy-8 th, .table.gy-8 td {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.table.gx-8 th, .table.gx-8 td {
  padding-left: 2rem;
  padding-right: 2rem;
}
.table.gx-8 th.dtr-control, .table.gx-8 td.dtr-control {
  padding-left: 2rem !important;
}

.table.gs-8 th:first-child, .table.gs-8 td:first-child {
  padding-left: 2rem;
}
.table.gs-8 th:last-child, .table.gs-8 td:last-child {
  padding-right: 2rem;
}
.table.gs-8 th.dtr-control:first-child, .table.gs-8 td.dtr-control:first-child {
  padding-left: 2rem !important;
}

.table.g-9 th, .table.g-9 td {
  padding: 2.25rem;
}
.table.g-9 th.dtr-control, .table.g-9 td.dtr-control {
  padding-left: 2.25rem !important;
}

.table.gy-9 th, .table.gy-9 td {
  padding-top: 2.25rem;
  padding-bottom: 2.25rem;
}

.table.gx-9 th, .table.gx-9 td {
  padding-left: 2.25rem;
  padding-right: 2.25rem;
}
.table.gx-9 th.dtr-control, .table.gx-9 td.dtr-control {
  padding-left: 2.25rem !important;
}

.table.gs-9 th:first-child, .table.gs-9 td:first-child {
  padding-left: 2.25rem;
}
.table.gs-9 th:last-child, .table.gs-9 td:last-child {
  padding-right: 2.25rem;
}
.table.gs-9 th.dtr-control:first-child, .table.gs-9 td.dtr-control:first-child {
  padding-left: 2.25rem !important;
}

.table.g-10 th, .table.g-10 td {
  padding: 2.5rem;
}
.table.g-10 th.dtr-control, .table.g-10 td.dtr-control {
  padding-left: 2.5rem !important;
}

.table.gy-10 th, .table.gy-10 td {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.table.gx-10 th, .table.gx-10 td {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}
.table.gx-10 th.dtr-control, .table.gx-10 td.dtr-control {
  padding-left: 2.5rem !important;
}

.table.gs-10 th:first-child, .table.gs-10 td:first-child {
  padding-left: 2.5rem;
}
.table.gs-10 th:last-child, .table.gs-10 td:last-child {
  padding-right: 2.5rem;
}
.table.gs-10 th.dtr-control:first-child, .table.gs-10 td.dtr-control:first-child {
  padding-left: 2.5rem !important;
}

@media (min-width: 576px) {
  .table.g-sm-0 th, .table.g-sm-0 td {
    padding: 0rem;
  }
  .table.g-sm-0 th.dtr-control, .table.g-sm-0 td.dtr-control {
    padding-left: 0rem !important;
  }

  .table.gy-sm-0 th, .table.gy-sm-0 td {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

  .table.gx-sm-0 th, .table.gx-sm-0 td {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .table.gx-sm-0 th.dtr-control, .table.gx-sm-0 td.dtr-control {
    padding-left: 0rem !important;
  }

  .table.gs-sm-0 th:first-child, .table.gs-sm-0 td:first-child {
    padding-left: 0rem;
  }
  .table.gs-sm-0 th:last-child, .table.gs-sm-0 td:last-child {
    padding-right: 0rem;
  }
  .table.gs-sm-0 th.dtr-control:first-child, .table.gs-sm-0 td.dtr-control:first-child {
    padding-left: 0rem !important;
  }

  .table.g-sm-1 th, .table.g-sm-1 td {
    padding: 0.25rem;
  }
  .table.g-sm-1 th.dtr-control, .table.g-sm-1 td.dtr-control {
    padding-left: 0.25rem !important;
  }

  .table.gy-sm-1 th, .table.gy-sm-1 td {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .table.gx-sm-1 th, .table.gx-sm-1 td {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .table.gx-sm-1 th.dtr-control, .table.gx-sm-1 td.dtr-control {
    padding-left: 0.25rem !important;
  }

  .table.gs-sm-1 th:first-child, .table.gs-sm-1 td:first-child {
    padding-left: 0.25rem;
  }
  .table.gs-sm-1 th:last-child, .table.gs-sm-1 td:last-child {
    padding-right: 0.25rem;
  }
  .table.gs-sm-1 th.dtr-control:first-child, .table.gs-sm-1 td.dtr-control:first-child {
    padding-left: 0.25rem !important;
  }

  .table.g-sm-2 th, .table.g-sm-2 td {
    padding: 0.5rem;
  }
  .table.g-sm-2 th.dtr-control, .table.g-sm-2 td.dtr-control {
    padding-left: 0.5rem !important;
  }

  .table.gy-sm-2 th, .table.gy-sm-2 td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .table.gx-sm-2 th, .table.gx-sm-2 td {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .table.gx-sm-2 th.dtr-control, .table.gx-sm-2 td.dtr-control {
    padding-left: 0.5rem !important;
  }

  .table.gs-sm-2 th:first-child, .table.gs-sm-2 td:first-child {
    padding-left: 0.5rem;
  }
  .table.gs-sm-2 th:last-child, .table.gs-sm-2 td:last-child {
    padding-right: 0.5rem;
  }
  .table.gs-sm-2 th.dtr-control:first-child, .table.gs-sm-2 td.dtr-control:first-child {
    padding-left: 0.5rem !important;
  }

  .table.g-sm-3 th, .table.g-sm-3 td {
    padding: 0.75rem;
  }
  .table.g-sm-3 th.dtr-control, .table.g-sm-3 td.dtr-control {
    padding-left: 0.75rem !important;
  }

  .table.gy-sm-3 th, .table.gy-sm-3 td {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .table.gx-sm-3 th, .table.gx-sm-3 td {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .table.gx-sm-3 th.dtr-control, .table.gx-sm-3 td.dtr-control {
    padding-left: 0.75rem !important;
  }

  .table.gs-sm-3 th:first-child, .table.gs-sm-3 td:first-child {
    padding-left: 0.75rem;
  }
  .table.gs-sm-3 th:last-child, .table.gs-sm-3 td:last-child {
    padding-right: 0.75rem;
  }
  .table.gs-sm-3 th.dtr-control:first-child, .table.gs-sm-3 td.dtr-control:first-child {
    padding-left: 0.75rem !important;
  }

  .table.g-sm-4 th, .table.g-sm-4 td {
    padding: 1rem;
  }
  .table.g-sm-4 th.dtr-control, .table.g-sm-4 td.dtr-control {
    padding-left: 1rem !important;
  }

  .table.gy-sm-4 th, .table.gy-sm-4 td {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .table.gx-sm-4 th, .table.gx-sm-4 td {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .table.gx-sm-4 th.dtr-control, .table.gx-sm-4 td.dtr-control {
    padding-left: 1rem !important;
  }

  .table.gs-sm-4 th:first-child, .table.gs-sm-4 td:first-child {
    padding-left: 1rem;
  }
  .table.gs-sm-4 th:last-child, .table.gs-sm-4 td:last-child {
    padding-right: 1rem;
  }
  .table.gs-sm-4 th.dtr-control:first-child, .table.gs-sm-4 td.dtr-control:first-child {
    padding-left: 1rem !important;
  }

  .table.g-sm-5 th, .table.g-sm-5 td {
    padding: 1.25rem;
  }
  .table.g-sm-5 th.dtr-control, .table.g-sm-5 td.dtr-control {
    padding-left: 1.25rem !important;
  }

  .table.gy-sm-5 th, .table.gy-sm-5 td {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .table.gx-sm-5 th, .table.gx-sm-5 td {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .table.gx-sm-5 th.dtr-control, .table.gx-sm-5 td.dtr-control {
    padding-left: 1.25rem !important;
  }

  .table.gs-sm-5 th:first-child, .table.gs-sm-5 td:first-child {
    padding-left: 1.25rem;
  }
  .table.gs-sm-5 th:last-child, .table.gs-sm-5 td:last-child {
    padding-right: 1.25rem;
  }
  .table.gs-sm-5 th.dtr-control:first-child, .table.gs-sm-5 td.dtr-control:first-child {
    padding-left: 1.25rem !important;
  }

  .table.g-sm-6 th, .table.g-sm-6 td {
    padding: 1.5rem;
  }
  .table.g-sm-6 th.dtr-control, .table.g-sm-6 td.dtr-control {
    padding-left: 1.5rem !important;
  }

  .table.gy-sm-6 th, .table.gy-sm-6 td {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .table.gx-sm-6 th, .table.gx-sm-6 td {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .table.gx-sm-6 th.dtr-control, .table.gx-sm-6 td.dtr-control {
    padding-left: 1.5rem !important;
  }

  .table.gs-sm-6 th:first-child, .table.gs-sm-6 td:first-child {
    padding-left: 1.5rem;
  }
  .table.gs-sm-6 th:last-child, .table.gs-sm-6 td:last-child {
    padding-right: 1.5rem;
  }
  .table.gs-sm-6 th.dtr-control:first-child, .table.gs-sm-6 td.dtr-control:first-child {
    padding-left: 1.5rem !important;
  }

  .table.g-sm-7 th, .table.g-sm-7 td {
    padding: 1.75rem;
  }
  .table.g-sm-7 th.dtr-control, .table.g-sm-7 td.dtr-control {
    padding-left: 1.75rem !important;
  }

  .table.gy-sm-7 th, .table.gy-sm-7 td {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .table.gx-sm-7 th, .table.gx-sm-7 td {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .table.gx-sm-7 th.dtr-control, .table.gx-sm-7 td.dtr-control {
    padding-left: 1.75rem !important;
  }

  .table.gs-sm-7 th:first-child, .table.gs-sm-7 td:first-child {
    padding-left: 1.75rem;
  }
  .table.gs-sm-7 th:last-child, .table.gs-sm-7 td:last-child {
    padding-right: 1.75rem;
  }
  .table.gs-sm-7 th.dtr-control:first-child, .table.gs-sm-7 td.dtr-control:first-child {
    padding-left: 1.75rem !important;
  }

  .table.g-sm-8 th, .table.g-sm-8 td {
    padding: 2rem;
  }
  .table.g-sm-8 th.dtr-control, .table.g-sm-8 td.dtr-control {
    padding-left: 2rem !important;
  }

  .table.gy-sm-8 th, .table.gy-sm-8 td {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .table.gx-sm-8 th, .table.gx-sm-8 td {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .table.gx-sm-8 th.dtr-control, .table.gx-sm-8 td.dtr-control {
    padding-left: 2rem !important;
  }

  .table.gs-sm-8 th:first-child, .table.gs-sm-8 td:first-child {
    padding-left: 2rem;
  }
  .table.gs-sm-8 th:last-child, .table.gs-sm-8 td:last-child {
    padding-right: 2rem;
  }
  .table.gs-sm-8 th.dtr-control:first-child, .table.gs-sm-8 td.dtr-control:first-child {
    padding-left: 2rem !important;
  }

  .table.g-sm-9 th, .table.g-sm-9 td {
    padding: 2.25rem;
  }
  .table.g-sm-9 th.dtr-control, .table.g-sm-9 td.dtr-control {
    padding-left: 2.25rem !important;
  }

  .table.gy-sm-9 th, .table.gy-sm-9 td {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .table.gx-sm-9 th, .table.gx-sm-9 td {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  .table.gx-sm-9 th.dtr-control, .table.gx-sm-9 td.dtr-control {
    padding-left: 2.25rem !important;
  }

  .table.gs-sm-9 th:first-child, .table.gs-sm-9 td:first-child {
    padding-left: 2.25rem;
  }
  .table.gs-sm-9 th:last-child, .table.gs-sm-9 td:last-child {
    padding-right: 2.25rem;
  }
  .table.gs-sm-9 th.dtr-control:first-child, .table.gs-sm-9 td.dtr-control:first-child {
    padding-left: 2.25rem !important;
  }

  .table.g-sm-10 th, .table.g-sm-10 td {
    padding: 2.5rem;
  }
  .table.g-sm-10 th.dtr-control, .table.g-sm-10 td.dtr-control {
    padding-left: 2.5rem !important;
  }

  .table.gy-sm-10 th, .table.gy-sm-10 td {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .table.gx-sm-10 th, .table.gx-sm-10 td {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .table.gx-sm-10 th.dtr-control, .table.gx-sm-10 td.dtr-control {
    padding-left: 2.5rem !important;
  }

  .table.gs-sm-10 th:first-child, .table.gs-sm-10 td:first-child {
    padding-left: 2.5rem;
  }
  .table.gs-sm-10 th:last-child, .table.gs-sm-10 td:last-child {
    padding-right: 2.5rem;
  }
  .table.gs-sm-10 th.dtr-control:first-child, .table.gs-sm-10 td.dtr-control:first-child {
    padding-left: 2.5rem !important;
  }
}
@media (min-width: 768px) {
  .table.g-md-0 th, .table.g-md-0 td {
    padding: 0rem;
  }
  .table.g-md-0 th.dtr-control, .table.g-md-0 td.dtr-control {
    padding-left: 0rem !important;
  }

  .table.gy-md-0 th, .table.gy-md-0 td {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

  .table.gx-md-0 th, .table.gx-md-0 td {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .table.gx-md-0 th.dtr-control, .table.gx-md-0 td.dtr-control {
    padding-left: 0rem !important;
  }

  .table.gs-md-0 th:first-child, .table.gs-md-0 td:first-child {
    padding-left: 0rem;
  }
  .table.gs-md-0 th:last-child, .table.gs-md-0 td:last-child {
    padding-right: 0rem;
  }
  .table.gs-md-0 th.dtr-control:first-child, .table.gs-md-0 td.dtr-control:first-child {
    padding-left: 0rem !important;
  }

  .table.g-md-1 th, .table.g-md-1 td {
    padding: 0.25rem;
  }
  .table.g-md-1 th.dtr-control, .table.g-md-1 td.dtr-control {
    padding-left: 0.25rem !important;
  }

  .table.gy-md-1 th, .table.gy-md-1 td {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .table.gx-md-1 th, .table.gx-md-1 td {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .table.gx-md-1 th.dtr-control, .table.gx-md-1 td.dtr-control {
    padding-left: 0.25rem !important;
  }

  .table.gs-md-1 th:first-child, .table.gs-md-1 td:first-child {
    padding-left: 0.25rem;
  }
  .table.gs-md-1 th:last-child, .table.gs-md-1 td:last-child {
    padding-right: 0.25rem;
  }
  .table.gs-md-1 th.dtr-control:first-child, .table.gs-md-1 td.dtr-control:first-child {
    padding-left: 0.25rem !important;
  }

  .table.g-md-2 th, .table.g-md-2 td {
    padding: 0.5rem;
  }
  .table.g-md-2 th.dtr-control, .table.g-md-2 td.dtr-control {
    padding-left: 0.5rem !important;
  }

  .table.gy-md-2 th, .table.gy-md-2 td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .table.gx-md-2 th, .table.gx-md-2 td {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .table.gx-md-2 th.dtr-control, .table.gx-md-2 td.dtr-control {
    padding-left: 0.5rem !important;
  }

  .table.gs-md-2 th:first-child, .table.gs-md-2 td:first-child {
    padding-left: 0.5rem;
  }
  .table.gs-md-2 th:last-child, .table.gs-md-2 td:last-child {
    padding-right: 0.5rem;
  }
  .table.gs-md-2 th.dtr-control:first-child, .table.gs-md-2 td.dtr-control:first-child {
    padding-left: 0.5rem !important;
  }

  .table.g-md-3 th, .table.g-md-3 td {
    padding: 0.75rem;
  }
  .table.g-md-3 th.dtr-control, .table.g-md-3 td.dtr-control {
    padding-left: 0.75rem !important;
  }

  .table.gy-md-3 th, .table.gy-md-3 td {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .table.gx-md-3 th, .table.gx-md-3 td {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .table.gx-md-3 th.dtr-control, .table.gx-md-3 td.dtr-control {
    padding-left: 0.75rem !important;
  }

  .table.gs-md-3 th:first-child, .table.gs-md-3 td:first-child {
    padding-left: 0.75rem;
  }
  .table.gs-md-3 th:last-child, .table.gs-md-3 td:last-child {
    padding-right: 0.75rem;
  }
  .table.gs-md-3 th.dtr-control:first-child, .table.gs-md-3 td.dtr-control:first-child {
    padding-left: 0.75rem !important;
  }

  .table.g-md-4 th, .table.g-md-4 td {
    padding: 1rem;
  }
  .table.g-md-4 th.dtr-control, .table.g-md-4 td.dtr-control {
    padding-left: 1rem !important;
  }

  .table.gy-md-4 th, .table.gy-md-4 td {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .table.gx-md-4 th, .table.gx-md-4 td {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .table.gx-md-4 th.dtr-control, .table.gx-md-4 td.dtr-control {
    padding-left: 1rem !important;
  }

  .table.gs-md-4 th:first-child, .table.gs-md-4 td:first-child {
    padding-left: 1rem;
  }
  .table.gs-md-4 th:last-child, .table.gs-md-4 td:last-child {
    padding-right: 1rem;
  }
  .table.gs-md-4 th.dtr-control:first-child, .table.gs-md-4 td.dtr-control:first-child {
    padding-left: 1rem !important;
  }

  .table.g-md-5 th, .table.g-md-5 td {
    padding: 1.25rem;
  }
  .table.g-md-5 th.dtr-control, .table.g-md-5 td.dtr-control {
    padding-left: 1.25rem !important;
  }

  .table.gy-md-5 th, .table.gy-md-5 td {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .table.gx-md-5 th, .table.gx-md-5 td {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .table.gx-md-5 th.dtr-control, .table.gx-md-5 td.dtr-control {
    padding-left: 1.25rem !important;
  }

  .table.gs-md-5 th:first-child, .table.gs-md-5 td:first-child {
    padding-left: 1.25rem;
  }
  .table.gs-md-5 th:last-child, .table.gs-md-5 td:last-child {
    padding-right: 1.25rem;
  }
  .table.gs-md-5 th.dtr-control:first-child, .table.gs-md-5 td.dtr-control:first-child {
    padding-left: 1.25rem !important;
  }

  .table.g-md-6 th, .table.g-md-6 td {
    padding: 1.5rem;
  }
  .table.g-md-6 th.dtr-control, .table.g-md-6 td.dtr-control {
    padding-left: 1.5rem !important;
  }

  .table.gy-md-6 th, .table.gy-md-6 td {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .table.gx-md-6 th, .table.gx-md-6 td {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .table.gx-md-6 th.dtr-control, .table.gx-md-6 td.dtr-control {
    padding-left: 1.5rem !important;
  }

  .table.gs-md-6 th:first-child, .table.gs-md-6 td:first-child {
    padding-left: 1.5rem;
  }
  .table.gs-md-6 th:last-child, .table.gs-md-6 td:last-child {
    padding-right: 1.5rem;
  }
  .table.gs-md-6 th.dtr-control:first-child, .table.gs-md-6 td.dtr-control:first-child {
    padding-left: 1.5rem !important;
  }

  .table.g-md-7 th, .table.g-md-7 td {
    padding: 1.75rem;
  }
  .table.g-md-7 th.dtr-control, .table.g-md-7 td.dtr-control {
    padding-left: 1.75rem !important;
  }

  .table.gy-md-7 th, .table.gy-md-7 td {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .table.gx-md-7 th, .table.gx-md-7 td {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .table.gx-md-7 th.dtr-control, .table.gx-md-7 td.dtr-control {
    padding-left: 1.75rem !important;
  }

  .table.gs-md-7 th:first-child, .table.gs-md-7 td:first-child {
    padding-left: 1.75rem;
  }
  .table.gs-md-7 th:last-child, .table.gs-md-7 td:last-child {
    padding-right: 1.75rem;
  }
  .table.gs-md-7 th.dtr-control:first-child, .table.gs-md-7 td.dtr-control:first-child {
    padding-left: 1.75rem !important;
  }

  .table.g-md-8 th, .table.g-md-8 td {
    padding: 2rem;
  }
  .table.g-md-8 th.dtr-control, .table.g-md-8 td.dtr-control {
    padding-left: 2rem !important;
  }

  .table.gy-md-8 th, .table.gy-md-8 td {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .table.gx-md-8 th, .table.gx-md-8 td {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .table.gx-md-8 th.dtr-control, .table.gx-md-8 td.dtr-control {
    padding-left: 2rem !important;
  }

  .table.gs-md-8 th:first-child, .table.gs-md-8 td:first-child {
    padding-left: 2rem;
  }
  .table.gs-md-8 th:last-child, .table.gs-md-8 td:last-child {
    padding-right: 2rem;
  }
  .table.gs-md-8 th.dtr-control:first-child, .table.gs-md-8 td.dtr-control:first-child {
    padding-left: 2rem !important;
  }

  .table.g-md-9 th, .table.g-md-9 td {
    padding: 2.25rem;
  }
  .table.g-md-9 th.dtr-control, .table.g-md-9 td.dtr-control {
    padding-left: 2.25rem !important;
  }

  .table.gy-md-9 th, .table.gy-md-9 td {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .table.gx-md-9 th, .table.gx-md-9 td {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  .table.gx-md-9 th.dtr-control, .table.gx-md-9 td.dtr-control {
    padding-left: 2.25rem !important;
  }

  .table.gs-md-9 th:first-child, .table.gs-md-9 td:first-child {
    padding-left: 2.25rem;
  }
  .table.gs-md-9 th:last-child, .table.gs-md-9 td:last-child {
    padding-right: 2.25rem;
  }
  .table.gs-md-9 th.dtr-control:first-child, .table.gs-md-9 td.dtr-control:first-child {
    padding-left: 2.25rem !important;
  }

  .table.g-md-10 th, .table.g-md-10 td {
    padding: 2.5rem;
  }
  .table.g-md-10 th.dtr-control, .table.g-md-10 td.dtr-control {
    padding-left: 2.5rem !important;
  }

  .table.gy-md-10 th, .table.gy-md-10 td {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .table.gx-md-10 th, .table.gx-md-10 td {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .table.gx-md-10 th.dtr-control, .table.gx-md-10 td.dtr-control {
    padding-left: 2.5rem !important;
  }

  .table.gs-md-10 th:first-child, .table.gs-md-10 td:first-child {
    padding-left: 2.5rem;
  }
  .table.gs-md-10 th:last-child, .table.gs-md-10 td:last-child {
    padding-right: 2.5rem;
  }
  .table.gs-md-10 th.dtr-control:first-child, .table.gs-md-10 td.dtr-control:first-child {
    padding-left: 2.5rem !important;
  }
}
@media (min-width: 992px) {
  .table.g-lg-0 th, .table.g-lg-0 td {
    padding: 0rem;
  }
  .table.g-lg-0 th.dtr-control, .table.g-lg-0 td.dtr-control {
    padding-left: 0rem !important;
  }

  .table.gy-lg-0 th, .table.gy-lg-0 td {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

  .table.gx-lg-0 th, .table.gx-lg-0 td {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .table.gx-lg-0 th.dtr-control, .table.gx-lg-0 td.dtr-control {
    padding-left: 0rem !important;
  }

  .table.gs-lg-0 th:first-child, .table.gs-lg-0 td:first-child {
    padding-left: 0rem;
  }
  .table.gs-lg-0 th:last-child, .table.gs-lg-0 td:last-child {
    padding-right: 0rem;
  }
  .table.gs-lg-0 th.dtr-control:first-child, .table.gs-lg-0 td.dtr-control:first-child {
    padding-left: 0rem !important;
  }

  .table.g-lg-1 th, .table.g-lg-1 td {
    padding: 0.25rem;
  }
  .table.g-lg-1 th.dtr-control, .table.g-lg-1 td.dtr-control {
    padding-left: 0.25rem !important;
  }

  .table.gy-lg-1 th, .table.gy-lg-1 td {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .table.gx-lg-1 th, .table.gx-lg-1 td {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .table.gx-lg-1 th.dtr-control, .table.gx-lg-1 td.dtr-control {
    padding-left: 0.25rem !important;
  }

  .table.gs-lg-1 th:first-child, .table.gs-lg-1 td:first-child {
    padding-left: 0.25rem;
  }
  .table.gs-lg-1 th:last-child, .table.gs-lg-1 td:last-child {
    padding-right: 0.25rem;
  }
  .table.gs-lg-1 th.dtr-control:first-child, .table.gs-lg-1 td.dtr-control:first-child {
    padding-left: 0.25rem !important;
  }

  .table.g-lg-2 th, .table.g-lg-2 td {
    padding: 0.5rem;
  }
  .table.g-lg-2 th.dtr-control, .table.g-lg-2 td.dtr-control {
    padding-left: 0.5rem !important;
  }

  .table.gy-lg-2 th, .table.gy-lg-2 td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .table.gx-lg-2 th, .table.gx-lg-2 td {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .table.gx-lg-2 th.dtr-control, .table.gx-lg-2 td.dtr-control {
    padding-left: 0.5rem !important;
  }

  .table.gs-lg-2 th:first-child, .table.gs-lg-2 td:first-child {
    padding-left: 0.5rem;
  }
  .table.gs-lg-2 th:last-child, .table.gs-lg-2 td:last-child {
    padding-right: 0.5rem;
  }
  .table.gs-lg-2 th.dtr-control:first-child, .table.gs-lg-2 td.dtr-control:first-child {
    padding-left: 0.5rem !important;
  }

  .table.g-lg-3 th, .table.g-lg-3 td {
    padding: 0.75rem;
  }
  .table.g-lg-3 th.dtr-control, .table.g-lg-3 td.dtr-control {
    padding-left: 0.75rem !important;
  }

  .table.gy-lg-3 th, .table.gy-lg-3 td {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .table.gx-lg-3 th, .table.gx-lg-3 td {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .table.gx-lg-3 th.dtr-control, .table.gx-lg-3 td.dtr-control {
    padding-left: 0.75rem !important;
  }

  .table.gs-lg-3 th:first-child, .table.gs-lg-3 td:first-child {
    padding-left: 0.75rem;
  }
  .table.gs-lg-3 th:last-child, .table.gs-lg-3 td:last-child {
    padding-right: 0.75rem;
  }
  .table.gs-lg-3 th.dtr-control:first-child, .table.gs-lg-3 td.dtr-control:first-child {
    padding-left: 0.75rem !important;
  }

  .table.g-lg-4 th, .table.g-lg-4 td {
    padding: 1rem;
  }
  .table.g-lg-4 th.dtr-control, .table.g-lg-4 td.dtr-control {
    padding-left: 1rem !important;
  }

  .table.gy-lg-4 th, .table.gy-lg-4 td {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .table.gx-lg-4 th, .table.gx-lg-4 td {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .table.gx-lg-4 th.dtr-control, .table.gx-lg-4 td.dtr-control {
    padding-left: 1rem !important;
  }

  .table.gs-lg-4 th:first-child, .table.gs-lg-4 td:first-child {
    padding-left: 1rem;
  }
  .table.gs-lg-4 th:last-child, .table.gs-lg-4 td:last-child {
    padding-right: 1rem;
  }
  .table.gs-lg-4 th.dtr-control:first-child, .table.gs-lg-4 td.dtr-control:first-child {
    padding-left: 1rem !important;
  }

  .table.g-lg-5 th, .table.g-lg-5 td {
    padding: 1.25rem;
  }
  .table.g-lg-5 th.dtr-control, .table.g-lg-5 td.dtr-control {
    padding-left: 1.25rem !important;
  }

  .table.gy-lg-5 th, .table.gy-lg-5 td {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .table.gx-lg-5 th, .table.gx-lg-5 td {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .table.gx-lg-5 th.dtr-control, .table.gx-lg-5 td.dtr-control {
    padding-left: 1.25rem !important;
  }

  .table.gs-lg-5 th:first-child, .table.gs-lg-5 td:first-child {
    padding-left: 1.25rem;
  }
  .table.gs-lg-5 th:last-child, .table.gs-lg-5 td:last-child {
    padding-right: 1.25rem;
  }
  .table.gs-lg-5 th.dtr-control:first-child, .table.gs-lg-5 td.dtr-control:first-child {
    padding-left: 1.25rem !important;
  }

  .table.g-lg-6 th, .table.g-lg-6 td {
    padding: 1.5rem;
  }
  .table.g-lg-6 th.dtr-control, .table.g-lg-6 td.dtr-control {
    padding-left: 1.5rem !important;
  }

  .table.gy-lg-6 th, .table.gy-lg-6 td {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .table.gx-lg-6 th, .table.gx-lg-6 td {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .table.gx-lg-6 th.dtr-control, .table.gx-lg-6 td.dtr-control {
    padding-left: 1.5rem !important;
  }

  .table.gs-lg-6 th:first-child, .table.gs-lg-6 td:first-child {
    padding-left: 1.5rem;
  }
  .table.gs-lg-6 th:last-child, .table.gs-lg-6 td:last-child {
    padding-right: 1.5rem;
  }
  .table.gs-lg-6 th.dtr-control:first-child, .table.gs-lg-6 td.dtr-control:first-child {
    padding-left: 1.5rem !important;
  }

  .table.g-lg-7 th, .table.g-lg-7 td {
    padding: 1.75rem;
  }
  .table.g-lg-7 th.dtr-control, .table.g-lg-7 td.dtr-control {
    padding-left: 1.75rem !important;
  }

  .table.gy-lg-7 th, .table.gy-lg-7 td {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .table.gx-lg-7 th, .table.gx-lg-7 td {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .table.gx-lg-7 th.dtr-control, .table.gx-lg-7 td.dtr-control {
    padding-left: 1.75rem !important;
  }

  .table.gs-lg-7 th:first-child, .table.gs-lg-7 td:first-child {
    padding-left: 1.75rem;
  }
  .table.gs-lg-7 th:last-child, .table.gs-lg-7 td:last-child {
    padding-right: 1.75rem;
  }
  .table.gs-lg-7 th.dtr-control:first-child, .table.gs-lg-7 td.dtr-control:first-child {
    padding-left: 1.75rem !important;
  }

  .table.g-lg-8 th, .table.g-lg-8 td {
    padding: 2rem;
  }
  .table.g-lg-8 th.dtr-control, .table.g-lg-8 td.dtr-control {
    padding-left: 2rem !important;
  }

  .table.gy-lg-8 th, .table.gy-lg-8 td {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .table.gx-lg-8 th, .table.gx-lg-8 td {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .table.gx-lg-8 th.dtr-control, .table.gx-lg-8 td.dtr-control {
    padding-left: 2rem !important;
  }

  .table.gs-lg-8 th:first-child, .table.gs-lg-8 td:first-child {
    padding-left: 2rem;
  }
  .table.gs-lg-8 th:last-child, .table.gs-lg-8 td:last-child {
    padding-right: 2rem;
  }
  .table.gs-lg-8 th.dtr-control:first-child, .table.gs-lg-8 td.dtr-control:first-child {
    padding-left: 2rem !important;
  }

  .table.g-lg-9 th, .table.g-lg-9 td {
    padding: 2.25rem;
  }
  .table.g-lg-9 th.dtr-control, .table.g-lg-9 td.dtr-control {
    padding-left: 2.25rem !important;
  }

  .table.gy-lg-9 th, .table.gy-lg-9 td {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .table.gx-lg-9 th, .table.gx-lg-9 td {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  .table.gx-lg-9 th.dtr-control, .table.gx-lg-9 td.dtr-control {
    padding-left: 2.25rem !important;
  }

  .table.gs-lg-9 th:first-child, .table.gs-lg-9 td:first-child {
    padding-left: 2.25rem;
  }
  .table.gs-lg-9 th:last-child, .table.gs-lg-9 td:last-child {
    padding-right: 2.25rem;
  }
  .table.gs-lg-9 th.dtr-control:first-child, .table.gs-lg-9 td.dtr-control:first-child {
    padding-left: 2.25rem !important;
  }

  .table.g-lg-10 th, .table.g-lg-10 td {
    padding: 2.5rem;
  }
  .table.g-lg-10 th.dtr-control, .table.g-lg-10 td.dtr-control {
    padding-left: 2.5rem !important;
  }

  .table.gy-lg-10 th, .table.gy-lg-10 td {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .table.gx-lg-10 th, .table.gx-lg-10 td {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .table.gx-lg-10 th.dtr-control, .table.gx-lg-10 td.dtr-control {
    padding-left: 2.5rem !important;
  }

  .table.gs-lg-10 th:first-child, .table.gs-lg-10 td:first-child {
    padding-left: 2.5rem;
  }
  .table.gs-lg-10 th:last-child, .table.gs-lg-10 td:last-child {
    padding-right: 2.5rem;
  }
  .table.gs-lg-10 th.dtr-control:first-child, .table.gs-lg-10 td.dtr-control:first-child {
    padding-left: 2.5rem !important;
  }
}
@media (min-width: 1200px) {
  .table.g-xl-0 th, .table.g-xl-0 td {
    padding: 0rem;
  }
  .table.g-xl-0 th.dtr-control, .table.g-xl-0 td.dtr-control {
    padding-left: 0rem !important;
  }

  .table.gy-xl-0 th, .table.gy-xl-0 td {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

  .table.gx-xl-0 th, .table.gx-xl-0 td {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .table.gx-xl-0 th.dtr-control, .table.gx-xl-0 td.dtr-control {
    padding-left: 0rem !important;
  }

  .table.gs-xl-0 th:first-child, .table.gs-xl-0 td:first-child {
    padding-left: 0rem;
  }
  .table.gs-xl-0 th:last-child, .table.gs-xl-0 td:last-child {
    padding-right: 0rem;
  }
  .table.gs-xl-0 th.dtr-control:first-child, .table.gs-xl-0 td.dtr-control:first-child {
    padding-left: 0rem !important;
  }

  .table.g-xl-1 th, .table.g-xl-1 td {
    padding: 0.25rem;
  }
  .table.g-xl-1 th.dtr-control, .table.g-xl-1 td.dtr-control {
    padding-left: 0.25rem !important;
  }

  .table.gy-xl-1 th, .table.gy-xl-1 td {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .table.gx-xl-1 th, .table.gx-xl-1 td {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .table.gx-xl-1 th.dtr-control, .table.gx-xl-1 td.dtr-control {
    padding-left: 0.25rem !important;
  }

  .table.gs-xl-1 th:first-child, .table.gs-xl-1 td:first-child {
    padding-left: 0.25rem;
  }
  .table.gs-xl-1 th:last-child, .table.gs-xl-1 td:last-child {
    padding-right: 0.25rem;
  }
  .table.gs-xl-1 th.dtr-control:first-child, .table.gs-xl-1 td.dtr-control:first-child {
    padding-left: 0.25rem !important;
  }

  .table.g-xl-2 th, .table.g-xl-2 td {
    padding: 0.5rem;
  }
  .table.g-xl-2 th.dtr-control, .table.g-xl-2 td.dtr-control {
    padding-left: 0.5rem !important;
  }

  .table.gy-xl-2 th, .table.gy-xl-2 td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .table.gx-xl-2 th, .table.gx-xl-2 td {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .table.gx-xl-2 th.dtr-control, .table.gx-xl-2 td.dtr-control {
    padding-left: 0.5rem !important;
  }

  .table.gs-xl-2 th:first-child, .table.gs-xl-2 td:first-child {
    padding-left: 0.5rem;
  }
  .table.gs-xl-2 th:last-child, .table.gs-xl-2 td:last-child {
    padding-right: 0.5rem;
  }
  .table.gs-xl-2 th.dtr-control:first-child, .table.gs-xl-2 td.dtr-control:first-child {
    padding-left: 0.5rem !important;
  }

  .table.g-xl-3 th, .table.g-xl-3 td {
    padding: 0.75rem;
  }
  .table.g-xl-3 th.dtr-control, .table.g-xl-3 td.dtr-control {
    padding-left: 0.75rem !important;
  }

  .table.gy-xl-3 th, .table.gy-xl-3 td {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .table.gx-xl-3 th, .table.gx-xl-3 td {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .table.gx-xl-3 th.dtr-control, .table.gx-xl-3 td.dtr-control {
    padding-left: 0.75rem !important;
  }

  .table.gs-xl-3 th:first-child, .table.gs-xl-3 td:first-child {
    padding-left: 0.75rem;
  }
  .table.gs-xl-3 th:last-child, .table.gs-xl-3 td:last-child {
    padding-right: 0.75rem;
  }
  .table.gs-xl-3 th.dtr-control:first-child, .table.gs-xl-3 td.dtr-control:first-child {
    padding-left: 0.75rem !important;
  }

  .table.g-xl-4 th, .table.g-xl-4 td {
    padding: 1rem;
  }
  .table.g-xl-4 th.dtr-control, .table.g-xl-4 td.dtr-control {
    padding-left: 1rem !important;
  }

  .table.gy-xl-4 th, .table.gy-xl-4 td {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .table.gx-xl-4 th, .table.gx-xl-4 td {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .table.gx-xl-4 th.dtr-control, .table.gx-xl-4 td.dtr-control {
    padding-left: 1rem !important;
  }

  .table.gs-xl-4 th:first-child, .table.gs-xl-4 td:first-child {
    padding-left: 1rem;
  }
  .table.gs-xl-4 th:last-child, .table.gs-xl-4 td:last-child {
    padding-right: 1rem;
  }
  .table.gs-xl-4 th.dtr-control:first-child, .table.gs-xl-4 td.dtr-control:first-child {
    padding-left: 1rem !important;
  }

  .table.g-xl-5 th, .table.g-xl-5 td {
    padding: 1.25rem;
  }
  .table.g-xl-5 th.dtr-control, .table.g-xl-5 td.dtr-control {
    padding-left: 1.25rem !important;
  }

  .table.gy-xl-5 th, .table.gy-xl-5 td {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .table.gx-xl-5 th, .table.gx-xl-5 td {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .table.gx-xl-5 th.dtr-control, .table.gx-xl-5 td.dtr-control {
    padding-left: 1.25rem !important;
  }

  .table.gs-xl-5 th:first-child, .table.gs-xl-5 td:first-child {
    padding-left: 1.25rem;
  }
  .table.gs-xl-5 th:last-child, .table.gs-xl-5 td:last-child {
    padding-right: 1.25rem;
  }
  .table.gs-xl-5 th.dtr-control:first-child, .table.gs-xl-5 td.dtr-control:first-child {
    padding-left: 1.25rem !important;
  }

  .table.g-xl-6 th, .table.g-xl-6 td {
    padding: 1.5rem;
  }
  .table.g-xl-6 th.dtr-control, .table.g-xl-6 td.dtr-control {
    padding-left: 1.5rem !important;
  }

  .table.gy-xl-6 th, .table.gy-xl-6 td {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .table.gx-xl-6 th, .table.gx-xl-6 td {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .table.gx-xl-6 th.dtr-control, .table.gx-xl-6 td.dtr-control {
    padding-left: 1.5rem !important;
  }

  .table.gs-xl-6 th:first-child, .table.gs-xl-6 td:first-child {
    padding-left: 1.5rem;
  }
  .table.gs-xl-6 th:last-child, .table.gs-xl-6 td:last-child {
    padding-right: 1.5rem;
  }
  .table.gs-xl-6 th.dtr-control:first-child, .table.gs-xl-6 td.dtr-control:first-child {
    padding-left: 1.5rem !important;
  }

  .table.g-xl-7 th, .table.g-xl-7 td {
    padding: 1.75rem;
  }
  .table.g-xl-7 th.dtr-control, .table.g-xl-7 td.dtr-control {
    padding-left: 1.75rem !important;
  }

  .table.gy-xl-7 th, .table.gy-xl-7 td {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .table.gx-xl-7 th, .table.gx-xl-7 td {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .table.gx-xl-7 th.dtr-control, .table.gx-xl-7 td.dtr-control {
    padding-left: 1.75rem !important;
  }

  .table.gs-xl-7 th:first-child, .table.gs-xl-7 td:first-child {
    padding-left: 1.75rem;
  }
  .table.gs-xl-7 th:last-child, .table.gs-xl-7 td:last-child {
    padding-right: 1.75rem;
  }
  .table.gs-xl-7 th.dtr-control:first-child, .table.gs-xl-7 td.dtr-control:first-child {
    padding-left: 1.75rem !important;
  }

  .table.g-xl-8 th, .table.g-xl-8 td {
    padding: 2rem;
  }
  .table.g-xl-8 th.dtr-control, .table.g-xl-8 td.dtr-control {
    padding-left: 2rem !important;
  }

  .table.gy-xl-8 th, .table.gy-xl-8 td {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .table.gx-xl-8 th, .table.gx-xl-8 td {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .table.gx-xl-8 th.dtr-control, .table.gx-xl-8 td.dtr-control {
    padding-left: 2rem !important;
  }

  .table.gs-xl-8 th:first-child, .table.gs-xl-8 td:first-child {
    padding-left: 2rem;
  }
  .table.gs-xl-8 th:last-child, .table.gs-xl-8 td:last-child {
    padding-right: 2rem;
  }
  .table.gs-xl-8 th.dtr-control:first-child, .table.gs-xl-8 td.dtr-control:first-child {
    padding-left: 2rem !important;
  }

  .table.g-xl-9 th, .table.g-xl-9 td {
    padding: 2.25rem;
  }
  .table.g-xl-9 th.dtr-control, .table.g-xl-9 td.dtr-control {
    padding-left: 2.25rem !important;
  }

  .table.gy-xl-9 th, .table.gy-xl-9 td {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .table.gx-xl-9 th, .table.gx-xl-9 td {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  .table.gx-xl-9 th.dtr-control, .table.gx-xl-9 td.dtr-control {
    padding-left: 2.25rem !important;
  }

  .table.gs-xl-9 th:first-child, .table.gs-xl-9 td:first-child {
    padding-left: 2.25rem;
  }
  .table.gs-xl-9 th:last-child, .table.gs-xl-9 td:last-child {
    padding-right: 2.25rem;
  }
  .table.gs-xl-9 th.dtr-control:first-child, .table.gs-xl-9 td.dtr-control:first-child {
    padding-left: 2.25rem !important;
  }

  .table.g-xl-10 th, .table.g-xl-10 td {
    padding: 2.5rem;
  }
  .table.g-xl-10 th.dtr-control, .table.g-xl-10 td.dtr-control {
    padding-left: 2.5rem !important;
  }

  .table.gy-xl-10 th, .table.gy-xl-10 td {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .table.gx-xl-10 th, .table.gx-xl-10 td {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .table.gx-xl-10 th.dtr-control, .table.gx-xl-10 td.dtr-control {
    padding-left: 2.5rem !important;
  }

  .table.gs-xl-10 th:first-child, .table.gs-xl-10 td:first-child {
    padding-left: 2.5rem;
  }
  .table.gs-xl-10 th:last-child, .table.gs-xl-10 td:last-child {
    padding-right: 2.5rem;
  }
  .table.gs-xl-10 th.dtr-control:first-child, .table.gs-xl-10 td.dtr-control:first-child {
    padding-left: 2.5rem !important;
  }
}
@media (min-width: 1400px) {
  .table.g-xxl-0 th, .table.g-xxl-0 td {
    padding: 0rem;
  }
  .table.g-xxl-0 th.dtr-control, .table.g-xxl-0 td.dtr-control {
    padding-left: 0rem !important;
  }

  .table.gy-xxl-0 th, .table.gy-xxl-0 td {
    padding-top: 0rem;
    padding-bottom: 0rem;
  }

  .table.gx-xxl-0 th, .table.gx-xxl-0 td {
    padding-left: 0rem;
    padding-right: 0rem;
  }
  .table.gx-xxl-0 th.dtr-control, .table.gx-xxl-0 td.dtr-control {
    padding-left: 0rem !important;
  }

  .table.gs-xxl-0 th:first-child, .table.gs-xxl-0 td:first-child {
    padding-left: 0rem;
  }
  .table.gs-xxl-0 th:last-child, .table.gs-xxl-0 td:last-child {
    padding-right: 0rem;
  }
  .table.gs-xxl-0 th.dtr-control:first-child, .table.gs-xxl-0 td.dtr-control:first-child {
    padding-left: 0rem !important;
  }

  .table.g-xxl-1 th, .table.g-xxl-1 td {
    padding: 0.25rem;
  }
  .table.g-xxl-1 th.dtr-control, .table.g-xxl-1 td.dtr-control {
    padding-left: 0.25rem !important;
  }

  .table.gy-xxl-1 th, .table.gy-xxl-1 td {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
  }

  .table.gx-xxl-1 th, .table.gx-xxl-1 td {
    padding-left: 0.25rem;
    padding-right: 0.25rem;
  }
  .table.gx-xxl-1 th.dtr-control, .table.gx-xxl-1 td.dtr-control {
    padding-left: 0.25rem !important;
  }

  .table.gs-xxl-1 th:first-child, .table.gs-xxl-1 td:first-child {
    padding-left: 0.25rem;
  }
  .table.gs-xxl-1 th:last-child, .table.gs-xxl-1 td:last-child {
    padding-right: 0.25rem;
  }
  .table.gs-xxl-1 th.dtr-control:first-child, .table.gs-xxl-1 td.dtr-control:first-child {
    padding-left: 0.25rem !important;
  }

  .table.g-xxl-2 th, .table.g-xxl-2 td {
    padding: 0.5rem;
  }
  .table.g-xxl-2 th.dtr-control, .table.g-xxl-2 td.dtr-control {
    padding-left: 0.5rem !important;
  }

  .table.gy-xxl-2 th, .table.gy-xxl-2 td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .table.gx-xxl-2 th, .table.gx-xxl-2 td {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .table.gx-xxl-2 th.dtr-control, .table.gx-xxl-2 td.dtr-control {
    padding-left: 0.5rem !important;
  }

  .table.gs-xxl-2 th:first-child, .table.gs-xxl-2 td:first-child {
    padding-left: 0.5rem;
  }
  .table.gs-xxl-2 th:last-child, .table.gs-xxl-2 td:last-child {
    padding-right: 0.5rem;
  }
  .table.gs-xxl-2 th.dtr-control:first-child, .table.gs-xxl-2 td.dtr-control:first-child {
    padding-left: 0.5rem !important;
  }

  .table.g-xxl-3 th, .table.g-xxl-3 td {
    padding: 0.75rem;
  }
  .table.g-xxl-3 th.dtr-control, .table.g-xxl-3 td.dtr-control {
    padding-left: 0.75rem !important;
  }

  .table.gy-xxl-3 th, .table.gy-xxl-3 td {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
  }

  .table.gx-xxl-3 th, .table.gx-xxl-3 td {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  .table.gx-xxl-3 th.dtr-control, .table.gx-xxl-3 td.dtr-control {
    padding-left: 0.75rem !important;
  }

  .table.gs-xxl-3 th:first-child, .table.gs-xxl-3 td:first-child {
    padding-left: 0.75rem;
  }
  .table.gs-xxl-3 th:last-child, .table.gs-xxl-3 td:last-child {
    padding-right: 0.75rem;
  }
  .table.gs-xxl-3 th.dtr-control:first-child, .table.gs-xxl-3 td.dtr-control:first-child {
    padding-left: 0.75rem !important;
  }

  .table.g-xxl-4 th, .table.g-xxl-4 td {
    padding: 1rem;
  }
  .table.g-xxl-4 th.dtr-control, .table.g-xxl-4 td.dtr-control {
    padding-left: 1rem !important;
  }

  .table.gy-xxl-4 th, .table.gy-xxl-4 td {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .table.gx-xxl-4 th, .table.gx-xxl-4 td {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .table.gx-xxl-4 th.dtr-control, .table.gx-xxl-4 td.dtr-control {
    padding-left: 1rem !important;
  }

  .table.gs-xxl-4 th:first-child, .table.gs-xxl-4 td:first-child {
    padding-left: 1rem;
  }
  .table.gs-xxl-4 th:last-child, .table.gs-xxl-4 td:last-child {
    padding-right: 1rem;
  }
  .table.gs-xxl-4 th.dtr-control:first-child, .table.gs-xxl-4 td.dtr-control:first-child {
    padding-left: 1rem !important;
  }

  .table.g-xxl-5 th, .table.g-xxl-5 td {
    padding: 1.25rem;
  }
  .table.g-xxl-5 th.dtr-control, .table.g-xxl-5 td.dtr-control {
    padding-left: 1.25rem !important;
  }

  .table.gy-xxl-5 th, .table.gy-xxl-5 td {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .table.gx-xxl-5 th, .table.gx-xxl-5 td {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .table.gx-xxl-5 th.dtr-control, .table.gx-xxl-5 td.dtr-control {
    padding-left: 1.25rem !important;
  }

  .table.gs-xxl-5 th:first-child, .table.gs-xxl-5 td:first-child {
    padding-left: 1.25rem;
  }
  .table.gs-xxl-5 th:last-child, .table.gs-xxl-5 td:last-child {
    padding-right: 1.25rem;
  }
  .table.gs-xxl-5 th.dtr-control:first-child, .table.gs-xxl-5 td.dtr-control:first-child {
    padding-left: 1.25rem !important;
  }

  .table.g-xxl-6 th, .table.g-xxl-6 td {
    padding: 1.5rem;
  }
  .table.g-xxl-6 th.dtr-control, .table.g-xxl-6 td.dtr-control {
    padding-left: 1.5rem !important;
  }

  .table.gy-xxl-6 th, .table.gy-xxl-6 td {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }

  .table.gx-xxl-6 th, .table.gx-xxl-6 td {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .table.gx-xxl-6 th.dtr-control, .table.gx-xxl-6 td.dtr-control {
    padding-left: 1.5rem !important;
  }

  .table.gs-xxl-6 th:first-child, .table.gs-xxl-6 td:first-child {
    padding-left: 1.5rem;
  }
  .table.gs-xxl-6 th:last-child, .table.gs-xxl-6 td:last-child {
    padding-right: 1.5rem;
  }
  .table.gs-xxl-6 th.dtr-control:first-child, .table.gs-xxl-6 td.dtr-control:first-child {
    padding-left: 1.5rem !important;
  }

  .table.g-xxl-7 th, .table.g-xxl-7 td {
    padding: 1.75rem;
  }
  .table.g-xxl-7 th.dtr-control, .table.g-xxl-7 td.dtr-control {
    padding-left: 1.75rem !important;
  }

  .table.gy-xxl-7 th, .table.gy-xxl-7 td {
    padding-top: 1.75rem;
    padding-bottom: 1.75rem;
  }

  .table.gx-xxl-7 th, .table.gx-xxl-7 td {
    padding-left: 1.75rem;
    padding-right: 1.75rem;
  }
  .table.gx-xxl-7 th.dtr-control, .table.gx-xxl-7 td.dtr-control {
    padding-left: 1.75rem !important;
  }

  .table.gs-xxl-7 th:first-child, .table.gs-xxl-7 td:first-child {
    padding-left: 1.75rem;
  }
  .table.gs-xxl-7 th:last-child, .table.gs-xxl-7 td:last-child {
    padding-right: 1.75rem;
  }
  .table.gs-xxl-7 th.dtr-control:first-child, .table.gs-xxl-7 td.dtr-control:first-child {
    padding-left: 1.75rem !important;
  }

  .table.g-xxl-8 th, .table.g-xxl-8 td {
    padding: 2rem;
  }
  .table.g-xxl-8 th.dtr-control, .table.g-xxl-8 td.dtr-control {
    padding-left: 2rem !important;
  }

  .table.gy-xxl-8 th, .table.gy-xxl-8 td {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .table.gx-xxl-8 th, .table.gx-xxl-8 td {
    padding-left: 2rem;
    padding-right: 2rem;
  }
  .table.gx-xxl-8 th.dtr-control, .table.gx-xxl-8 td.dtr-control {
    padding-left: 2rem !important;
  }

  .table.gs-xxl-8 th:first-child, .table.gs-xxl-8 td:first-child {
    padding-left: 2rem;
  }
  .table.gs-xxl-8 th:last-child, .table.gs-xxl-8 td:last-child {
    padding-right: 2rem;
  }
  .table.gs-xxl-8 th.dtr-control:first-child, .table.gs-xxl-8 td.dtr-control:first-child {
    padding-left: 2rem !important;
  }

  .table.g-xxl-9 th, .table.g-xxl-9 td {
    padding: 2.25rem;
  }
  .table.g-xxl-9 th.dtr-control, .table.g-xxl-9 td.dtr-control {
    padding-left: 2.25rem !important;
  }

  .table.gy-xxl-9 th, .table.gy-xxl-9 td {
    padding-top: 2.25rem;
    padding-bottom: 2.25rem;
  }

  .table.gx-xxl-9 th, .table.gx-xxl-9 td {
    padding-left: 2.25rem;
    padding-right: 2.25rem;
  }
  .table.gx-xxl-9 th.dtr-control, .table.gx-xxl-9 td.dtr-control {
    padding-left: 2.25rem !important;
  }

  .table.gs-xxl-9 th:first-child, .table.gs-xxl-9 td:first-child {
    padding-left: 2.25rem;
  }
  .table.gs-xxl-9 th:last-child, .table.gs-xxl-9 td:last-child {
    padding-right: 2.25rem;
  }
  .table.gs-xxl-9 th.dtr-control:first-child, .table.gs-xxl-9 td.dtr-control:first-child {
    padding-left: 2.25rem !important;
  }

  .table.g-xxl-10 th, .table.g-xxl-10 td {
    padding: 2.5rem;
  }
  .table.g-xxl-10 th.dtr-control, .table.g-xxl-10 td.dtr-control {
    padding-left: 2.5rem !important;
  }

  .table.gy-xxl-10 th, .table.gy-xxl-10 td {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }

  .table.gx-xxl-10 th, .table.gx-xxl-10 td {
    padding-left: 2.5rem;
    padding-right: 2.5rem;
  }
  .table.gx-xxl-10 th.dtr-control, .table.gx-xxl-10 td.dtr-control {
    padding-left: 2.5rem !important;
  }

  .table.gs-xxl-10 th:first-child, .table.gs-xxl-10 td:first-child {
    padding-left: 2.5rem;
  }
  .table.gs-xxl-10 th:last-child, .table.gs-xxl-10 td:last-child {
    padding-right: 2.5rem;
  }
  .table.gs-xxl-10 th.dtr-control:first-child, .table.gs-xxl-10 td.dtr-control:first-child {
    padding-left: 2.5rem !important;
  }
}
.popover .popover-header {
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid #F5F8FA;
}
.popover .popover-dismiss {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  height: 1.5rem;
  width: 1.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23A1A5B7'%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");
  background-size: 45%;
}
.popover .popover-dismiss:hover {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23009EF7'%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");
}
.popover .popover-dismiss + .popover-header {
  padding-right: 2.75rem;
}

.popover-dark {
  background-color: #181C32;
  border: 0;
}
.popover-dark .popover-header {
  background-color: #181C32;
  color: #EFF2F5;
  border-bottom-color: #3F4254;
}
.popover-dark .popover-body {
  color: #B5B5C3;
}
.popover-dark.bs-popover-top > .popover-arrow::before, .popover-dark.bs-popover-auto[data-popper-placement^=top] > .popover-arrow::before {
  border-top-color: #F5F8FA;
}
.popover-dark.bs-popover-top > .popover-arrow::after, .popover-dark.bs-popover-auto[data-popper-placement^=top] > .popover-arrow::after {
  border-top-color: #181C32;
}
.popover-dark.bs-popover-end > .popover-arrow::before, .popover-dark.bs-popover-auto[data-popper-placement^=right] > .popover-arrow::before {
  border-right-color: #F5F8FA;
}
.popover-dark.bs-popover-end > .popover-arrow::after, .popover-dark.bs-popover-auto[data-popper-placement^=right] > .popover-arrow::after {
  border-right-color: #181C32;
}
.popover-dark.bs-popover-bottom > .popover-arrow::before, .popover-dark.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::before {
  border-bottom-color: #F5F8FA;
}
.popover-dark.bs-popover-bottom > .popover-arrow::after, .popover-dark.bs-popover-auto[data-popper-placement^=bottom] > .popover-arrow::after {
  border-bottom-color: #181C32;
}
.popover-dark.bs-popover-bottom .popover-header::before, .popover-dark.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before {
  border-bottom-color: #181C32;
}
.popover-dark.bs-popover-start > .popover-arrow::before, .popover-dark.bs-popover-auto[data-popper-placement^=left] > .popover-arrow::before {
  border-left-color: #F5F8FA;
}
.popover-dark.bs-popover-start > .popover-arrow::after, .popover-dark.bs-popover-auto[data-popper-placement^=left] > .popover-arrow::after {
  border-left-color: #181C32;
}

.tooltip .tooltip-inner {
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
}
.tooltip.tooltop-auto-width .tooltip-inner {
  white-space: nowrap;
  max-width: none;
}
.tooltip.tooltip-dark .tooltip-inner {
  color: #ffffff;
  background-color: #181C32;
}
.tooltip.tooltip-dark.bs-tooltip-top .tooltip-arrow::before, .tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before {
  border-top-color: #181C32;
}
.tooltip.tooltip-dark.bs-tooltip-end .tooltip-arrow::before, .tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before {
  border-right-color: #181C32;
}
.tooltip.tooltip-dark.bs-tooltip-bottom .tooltip-arrow::before, .tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before {
  border-bottom-color: #181C32;
}
.tooltip.tooltip-dark.bs-tooltip-start .tooltip-arrow::before, .tooltip.tooltip-dark.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before {
  border-left-color: #181C32;
}

.accordion .accordion-header {
  cursor: pointer;
}
.accordion.accordion-icon-toggle .accordion-icon {
  display: flex;
  flex-shrink: 0;
  transition: all 0.2s ease;
  transform: rotate(90deg);
  align-items: center;
  justify-content: center;
}
.accordion.accordion-icon-toggle .accordion-icon i,
.accordion.accordion-icon-toggle .accordion-icon .svg-icon {
  color: #009EF7;
}
.accordion.accordion-icon-toggle .collapsed .accordion-icon {
  transition: all 0.2s ease;
  transform: rotate(0);
}
.accordion.accordion-icon-toggle .collapsed .accordion-icon i,
.accordion.accordion-icon-toggle .collapsed .accordion-icon .svg-icon {
  color: #A1A5B7;
}
.accordion.accordion-borderless .accordion-item {
  border: 0;
}
.accordion.accordion-flush .accordion-item {
  background-color: transparent;
  border: 0;
  border-radius: 0;
  padding-left: 0;
  padding-right: 0;
}

.feedback {
  display: none;
}

.feedback-popup {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  position: fixed;
  z-index: 1000;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  background-color: #ffffff;
  border-radius: 0.475rem;
  padding: 1rem 1.25rem;
}

.feedback-top-center {
  display: flex;
  transition: top 0.6s ease;
  left: 50%;
  transform: translateX(-50%);
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.feedback-top-center.feedback-shown {
  top: 0px;
  transition: top 0.6s ease;
}

.image-input {
  position: relative;
  display: inline-block;
  border-radius: 0.475rem;
  background-repeat: no-repeat;
  background-size: cover;
}
.image-input:not(.image-input-empty) {
  background-image: none !important;
}
.image-input .image-input-wrapper {
  width: 120px;
  height: 120px;
  border-radius: 0.475rem;
  background-repeat: no-repeat;
  background-size: cover;
}
.image-input [data-kt-image-input-action] {
  cursor: pointer;
  position: absolute;
  transform: translate(-50%, -50%);
}
.image-input [data-kt-image-input-action=change] {
  left: 100%;
  top: 0;
}
.image-input [data-kt-image-input-action=change] input {
  width: 0 !important;
  height: 0 !important;
  overflow: hidden;
  opacity: 0;
}
.image-input [data-kt-image-input-action=cancel],
.image-input [data-kt-image-input-action=remove] {
  position: absolute;
  left: 100%;
  top: 100%;
}
.image-input [data-kt-image-input-action=cancel] {
  display: none;
}
.image-input.image-input-changed [data-kt-image-input-action=cancel] {
  display: flex;
}
.image-input.image-input-changed [data-kt-image-input-action=remove] {
  display: none;
}
.image-input.image-input-empty [data-kt-image-input-action=remove],
.image-input.image-input-empty [data-kt-image-input-action=cancel] {
  display: none;
}
.image-input.image-input-circle {
  border-radius: 50%;
}
.image-input.image-input-circle .image-input-wrapper {
  border-radius: 50%;
}
.image-input.image-input-circle [data-kt-image-input-action=change] {
  left: 100%;
  top: 0;
  transform: translate(-100%, 0%);
}
.image-input.image-input-circle [data-kt-image-input-action=cancel],
.image-input.image-input-circle [data-kt-image-input-action=remove] {
  left: 100%;
  top: 100%;
  transform: translate(-100%, -100%);
}
.image-input.image-input-outline .image-input-wrapper {
  border: 3px solid #ffffff;
  box-shadow: 0 0.1rem 1rem 0.25rem rgba(0, 0, 0, 0.05);
}

.symbol {
  display: inline-block;
  flex-shrink: 0;
  position: relative;
  border-radius: 0.475rem;
}
.symbol .symbol-label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  color: #3F4254;
  background-color: #F5F8FA;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 0.475rem;
}
.symbol .symbol-badge {
  position: absolute;
  border: 2px solid #ffffff;
  border-radius: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) !important;
}
.symbol > img {
  width: 100%;
  flex-shrink: 0;
  display: inline-block;
  border-radius: 0.475rem;
}
.symbol.symbol-square,
.symbol.symbol-square > img,
.symbol.symbol-square .symbol-label {
  border-radius: 0 !important;
}
.symbol.symbol-circle,
.symbol.symbol-circle > img,
.symbol.symbol-circle .symbol-label {
  border-radius: 50%;
}
.symbol > img {
  width: 50px;
  height: 50px;
}
.symbol .symbol-label {
  width: 50px;
  height: 50px;
}
.symbol.symbol-fixed .symbol-label {
  width: 50px;
  height: 50px;
}
.symbol.symbol-fixed > img {
  width: 50px;
  height: 50px;
  max-width: none;
}
.symbol.symbol-2by3 .symbol-label {
  height: 50px;
  width: 75px;
}
.symbol.symbol-2by3 > img {
  height: 50px;
  width: 75px;
  max-width: none;
}
.symbol.symbol-20px > img {
  width: 20px;
  height: 20px;
}
.symbol.symbol-20px .symbol-label {
  width: 20px;
  height: 20px;
}
.symbol.symbol-20px.symbol-fixed .symbol-label {
  width: 20px;
  height: 20px;
}
.symbol.symbol-20px.symbol-fixed > img {
  width: 20px;
  height: 20px;
  max-width: none;
}
.symbol.symbol-20px.symbol-2by3 .symbol-label {
  height: 20px;
  width: 30px;
}
.symbol.symbol-20px.symbol-2by3 > img {
  height: 20px;
  width: 30px;
  max-width: none;
}
.symbol.symbol-25px > img {
  width: 25px;
  height: 25px;
}
.symbol.symbol-25px .symbol-label {
  width: 25px;
  height: 25px;
}
.symbol.symbol-25px.symbol-fixed .symbol-label {
  width: 25px;
  height: 25px;
}
.symbol.symbol-25px.symbol-fixed > img {
  width: 25px;
  height: 25px;
  max-width: none;
}
.symbol.symbol-25px.symbol-2by3 .symbol-label {
  height: 25px;
  width: 37.5px;
}
.symbol.symbol-25px.symbol-2by3 > img {
  height: 25px;
  width: 37.5px;
  max-width: none;
}
.symbol.symbol-30px > img {
  width: 30px;
  height: 30px;
}
.symbol.symbol-30px .symbol-label {
  width: 30px;
  height: 30px;
}
.symbol.symbol-30px.symbol-fixed .symbol-label {
  width: 30px;
  height: 30px;
}
.symbol.symbol-30px.symbol-fixed > img {
  width: 30px;
  height: 30px;
  max-width: none;
}
.symbol.symbol-30px.symbol-2by3 .symbol-label {
  height: 30px;
  width: 45px;
}
.symbol.symbol-30px.symbol-2by3 > img {
  height: 30px;
  width: 45px;
  max-width: none;
}
.symbol.symbol-35px > img {
  width: 35px;
  height: 35px;
}
.symbol.symbol-35px .symbol-label {
  width: 35px;
  height: 35px;
}
.symbol.symbol-35px.symbol-fixed .symbol-label {
  width: 35px;
  height: 35px;
}
.symbol.symbol-35px.symbol-fixed > img {
  width: 35px;
  height: 35px;
  max-width: none;
}
.symbol.symbol-35px.symbol-2by3 .symbol-label {
  height: 35px;
  width: 52.5px;
}
.symbol.symbol-35px.symbol-2by3 > img {
  height: 35px;
  width: 52.5px;
  max-width: none;
}
.symbol.symbol-40px > img {
  width: 40px;
  height: 40px;
}
.symbol.symbol-40px .symbol-label {
  width: 40px;
  height: 40px;
}
.symbol.symbol-40px.symbol-fixed .symbol-label {
  width: 40px;
  height: 40px;
}
.symbol.symbol-40px.symbol-fixed > img {
  width: 40px;
  height: 40px;
  max-width: none;
}
.symbol.symbol-40px.symbol-2by3 .symbol-label {
  height: 40px;
  width: 60px;
}
.symbol.symbol-40px.symbol-2by3 > img {
  height: 40px;
  width: 60px;
  max-width: none;
}
.symbol.symbol-45px > img {
  width: 45px;
  height: 45px;
}
.symbol.symbol-45px .symbol-label {
  width: 45px;
  height: 45px;
}
.symbol.symbol-45px.symbol-fixed .symbol-label {
  width: 45px;
  height: 45px;
}
.symbol.symbol-45px.symbol-fixed > img {
  width: 45px;
  height: 45px;
  max-width: none;
}
.symbol.symbol-45px.symbol-2by3 .symbol-label {
  height: 45px;
  width: 67.5px;
}
.symbol.symbol-45px.symbol-2by3 > img {
  height: 45px;
  width: 67.5px;
  max-width: none;
}
.symbol.symbol-50px > img {
  width: 50px;
  height: 50px;
}
.symbol.symbol-50px .symbol-label {
  width: 50px;
  height: 50px;
}
.symbol.symbol-50px.symbol-fixed .symbol-label {
  width: 50px;
  height: 50px;
}
.symbol.symbol-50px.symbol-fixed > img {
  width: 50px;
  height: 50px;
  max-width: none;
}
.symbol.symbol-50px.symbol-2by3 .symbol-label {
  height: 50px;
  width: 75px;
}
.symbol.symbol-50px.symbol-2by3 > img {
  height: 50px;
  width: 75px;
  max-width: none;
}
.symbol.symbol-55px > img {
  width: 55px;
  height: 55px;
}
.symbol.symbol-55px .symbol-label {
  width: 55px;
  height: 55px;
}
.symbol.symbol-55px.symbol-fixed .symbol-label {
  width: 55px;
  height: 55px;
}
.symbol.symbol-55px.symbol-fixed > img {
  width: 55px;
  height: 55px;
  max-width: none;
}
.symbol.symbol-55px.symbol-2by3 .symbol-label {
  height: 55px;
  width: 82.5px;
}
.symbol.symbol-55px.symbol-2by3 > img {
  height: 55px;
  width: 82.5px;
  max-width: none;
}
.symbol.symbol-60px > img {
  width: 60px;
  height: 60px;
}
.symbol.symbol-60px .symbol-label {
  width: 60px;
  height: 60px;
}
.symbol.symbol-60px.symbol-fixed .symbol-label {
  width: 60px;
  height: 60px;
}
.symbol.symbol-60px.symbol-fixed > img {
  width: 60px;
  height: 60px;
  max-width: none;
}
.symbol.symbol-60px.symbol-2by3 .symbol-label {
  height: 60px;
  width: 90px;
}
.symbol.symbol-60px.symbol-2by3 > img {
  height: 60px;
  width: 90px;
  max-width: none;
}
.symbol.symbol-65px > img {
  width: 65px;
  height: 65px;
}
.symbol.symbol-65px .symbol-label {
  width: 65px;
  height: 65px;
}
.symbol.symbol-65px.symbol-fixed .symbol-label {
  width: 65px;
  height: 65px;
}
.symbol.symbol-65px.symbol-fixed > img {
  width: 65px;
  height: 65px;
  max-width: none;
}
.symbol.symbol-65px.symbol-2by3 .symbol-label {
  height: 65px;
  width: 97.5px;
}
.symbol.symbol-65px.symbol-2by3 > img {
  height: 65px;
  width: 97.5px;
  max-width: none;
}
.symbol.symbol-70px > img {
  width: 70px;
  height: 70px;
}
.symbol.symbol-70px .symbol-label {
  width: 70px;
  height: 70px;
}
.symbol.symbol-70px.symbol-fixed .symbol-label {
  width: 70px;
  height: 70px;
}
.symbol.symbol-70px.symbol-fixed > img {
  width: 70px;
  height: 70px;
  max-width: none;
}
.symbol.symbol-70px.symbol-2by3 .symbol-label {
  height: 70px;
  width: 105px;
}
.symbol.symbol-70px.symbol-2by3 > img {
  height: 70px;
  width: 105px;
  max-width: none;
}
.symbol.symbol-75px > img {
  width: 75px;
  height: 75px;
}
.symbol.symbol-75px .symbol-label {
  width: 75px;
  height: 75px;
}
.symbol.symbol-75px.symbol-fixed .symbol-label {
  width: 75px;
  height: 75px;
}
.symbol.symbol-75px.symbol-fixed > img {
  width: 75px;
  height: 75px;
  max-width: none;
}
.symbol.symbol-75px.symbol-2by3 .symbol-label {
  height: 75px;
  width: 112.5px;
}
.symbol.symbol-75px.symbol-2by3 > img {
  height: 75px;
  width: 112.5px;
  max-width: none;
}
.symbol.symbol-100px > img {
  width: 100px;
  height: 100px;
}
.symbol.symbol-100px .symbol-label {
  width: 100px;
  height: 100px;
}
.symbol.symbol-100px.symbol-fixed .symbol-label {
  width: 100px;
  height: 100px;
}
.symbol.symbol-100px.symbol-fixed > img {
  width: 100px;
  height: 100px;
  max-width: none;
}
.symbol.symbol-100px.symbol-2by3 .symbol-label {
  height: 100px;
  width: 150px;
}
.symbol.symbol-100px.symbol-2by3 > img {
  height: 100px;
  width: 150px;
  max-width: none;
}
.symbol.symbol-125px > img {
  width: 125px;
  height: 125px;
}
.symbol.symbol-125px .symbol-label {
  width: 125px;
  height: 125px;
}
.symbol.symbol-125px.symbol-fixed .symbol-label {
  width: 125px;
  height: 125px;
}
.symbol.symbol-125px.symbol-fixed > img {
  width: 125px;
  height: 125px;
  max-width: none;
}
.symbol.symbol-125px.symbol-2by3 .symbol-label {
  height: 125px;
  width: 187.5px;
}
.symbol.symbol-125px.symbol-2by3 > img {
  height: 125px;
  width: 187.5px;
  max-width: none;
}
.symbol.symbol-150px > img {
  width: 150px;
  height: 150px;
}
.symbol.symbol-150px .symbol-label {
  width: 150px;
  height: 150px;
}
.symbol.symbol-150px.symbol-fixed .symbol-label {
  width: 150px;
  height: 150px;
}
.symbol.symbol-150px.symbol-fixed > img {
  width: 150px;
  height: 150px;
  max-width: none;
}
.symbol.symbol-150px.symbol-2by3 .symbol-label {
  height: 150px;
  width: 225px;
}
.symbol.symbol-150px.symbol-2by3 > img {
  height: 150px;
  width: 225px;
  max-width: none;
}
.symbol.symbol-160px > img {
  width: 160px;
  height: 160px;
}
.symbol.symbol-160px .symbol-label {
  width: 160px;
  height: 160px;
}
.symbol.symbol-160px.symbol-fixed .symbol-label {
  width: 160px;
  height: 160px;
}
.symbol.symbol-160px.symbol-fixed > img {
  width: 160px;
  height: 160px;
  max-width: none;
}
.symbol.symbol-160px.symbol-2by3 .symbol-label {
  height: 160px;
  width: 240px;
}
.symbol.symbol-160px.symbol-2by3 > img {
  height: 160px;
  width: 240px;
  max-width: none;
}
.symbol.symbol-175px > img {
  width: 175px;
  height: 175px;
}
.symbol.symbol-175px .symbol-label {
  width: 175px;
  height: 175px;
}
.symbol.symbol-175px.symbol-fixed .symbol-label {
  width: 175px;
  height: 175px;
}
.symbol.symbol-175px.symbol-fixed > img {
  width: 175px;
  height: 175px;
  max-width: none;
}
.symbol.symbol-175px.symbol-2by3 .symbol-label {
  height: 175px;
  width: 262.5px;
}
.symbol.symbol-175px.symbol-2by3 > img {
  height: 175px;
  width: 262.5px;
  max-width: none;
}
.symbol.symbol-200px > img {
  width: 200px;
  height: 200px;
}
.symbol.symbol-200px .symbol-label {
  width: 200px;
  height: 200px;
}
.symbol.symbol-200px.symbol-fixed .symbol-label {
  width: 200px;
  height: 200px;
}
.symbol.symbol-200px.symbol-fixed > img {
  width: 200px;
  height: 200px;
  max-width: none;
}
.symbol.symbol-200px.symbol-2by3 .symbol-label {
  height: 200px;
  width: 300px;
}
.symbol.symbol-200px.symbol-2by3 > img {
  height: 200px;
  width: 300px;
  max-width: none;
}
@media (min-width: 576px) {
  .symbol.symbol-sm-20px > img {
    width: 20px;
    height: 20px;
  }
  .symbol.symbol-sm-20px .symbol-label {
    width: 20px;
    height: 20px;
  }
  .symbol.symbol-sm-20px.symbol-fixed .symbol-label {
    width: 20px;
    height: 20px;
  }
  .symbol.symbol-sm-20px.symbol-fixed > img {
    width: 20px;
    height: 20px;
    max-width: none;
  }
  .symbol.symbol-sm-20px.symbol-2by3 .symbol-label {
    height: 20px;
    width: 30px;
  }
  .symbol.symbol-sm-20px.symbol-2by3 > img {
    height: 20px;
    width: 30px;
    max-width: none;
  }
  .symbol.symbol-sm-25px > img {
    width: 25px;
    height: 25px;
  }
  .symbol.symbol-sm-25px .symbol-label {
    width: 25px;
    height: 25px;
  }
  .symbol.symbol-sm-25px.symbol-fixed .symbol-label {
    width: 25px;
    height: 25px;
  }
  .symbol.symbol-sm-25px.symbol-fixed > img {
    width: 25px;
    height: 25px;
    max-width: none;
  }
  .symbol.symbol-sm-25px.symbol-2by3 .symbol-label {
    height: 25px;
    width: 37.5px;
  }
  .symbol.symbol-sm-25px.symbol-2by3 > img {
    height: 25px;
    width: 37.5px;
    max-width: none;
  }
  .symbol.symbol-sm-30px > img {
    width: 30px;
    height: 30px;
  }
  .symbol.symbol-sm-30px .symbol-label {
    width: 30px;
    height: 30px;
  }
  .symbol.symbol-sm-30px.symbol-fixed .symbol-label {
    width: 30px;
    height: 30px;
  }
  .symbol.symbol-sm-30px.symbol-fixed > img {
    width: 30px;
    height: 30px;
    max-width: none;
  }
  .symbol.symbol-sm-30px.symbol-2by3 .symbol-label {
    height: 30px;
    width: 45px;
  }
  .symbol.symbol-sm-30px.symbol-2by3 > img {
    height: 30px;
    width: 45px;
    max-width: none;
  }
  .symbol.symbol-sm-35px > img {
    width: 35px;
    height: 35px;
  }
  .symbol.symbol-sm-35px .symbol-label {
    width: 35px;
    height: 35px;
  }
  .symbol.symbol-sm-35px.symbol-fixed .symbol-label {
    width: 35px;
    height: 35px;
  }
  .symbol.symbol-sm-35px.symbol-fixed > img {
    width: 35px;
    height: 35px;
    max-width: none;
  }
  .symbol.symbol-sm-35px.symbol-2by3 .symbol-label {
    height: 35px;
    width: 52.5px;
  }
  .symbol.symbol-sm-35px.symbol-2by3 > img {
    height: 35px;
    width: 52.5px;
    max-width: none;
  }
  .symbol.symbol-sm-40px > img {
    width: 40px;
    height: 40px;
  }
  .symbol.symbol-sm-40px .symbol-label {
    width: 40px;
    height: 40px;
  }
  .symbol.symbol-sm-40px.symbol-fixed .symbol-label {
    width: 40px;
    height: 40px;
  }
  .symbol.symbol-sm-40px.symbol-fixed > img {
    width: 40px;
    height: 40px;
    max-width: none;
  }
  .symbol.symbol-sm-40px.symbol-2by3 .symbol-label {
    height: 40px;
    width: 60px;
  }
  .symbol.symbol-sm-40px.symbol-2by3 > img {
    height: 40px;
    width: 60px;
    max-width: none;
  }
  .symbol.symbol-sm-45px > img {
    width: 45px;
    height: 45px;
  }
  .symbol.symbol-sm-45px .symbol-label {
    width: 45px;
    height: 45px;
  }
  .symbol.symbol-sm-45px.symbol-fixed .symbol-label {
    width: 45px;
    height: 45px;
  }
  .symbol.symbol-sm-45px.symbol-fixed > img {
    width: 45px;
    height: 45px;
    max-width: none;
  }
  .symbol.symbol-sm-45px.symbol-2by3 .symbol-label {
    height: 45px;
    width: 67.5px;
  }
  .symbol.symbol-sm-45px.symbol-2by3 > img {
    height: 45px;
    width: 67.5px;
    max-width: none;
  }
  .symbol.symbol-sm-50px > img {
    width: 50px;
    height: 50px;
  }
  .symbol.symbol-sm-50px .symbol-label {
    width: 50px;
    height: 50px;
  }
  .symbol.symbol-sm-50px.symbol-fixed .symbol-label {
    width: 50px;
    height: 50px;
  }
  .symbol.symbol-sm-50px.symbol-fixed > img {
    width: 50px;
    height: 50px;
    max-width: none;
  }
  .symbol.symbol-sm-50px.symbol-2by3 .symbol-label {
    height: 50px;
    width: 75px;
  }
  .symbol.symbol-sm-50px.symbol-2by3 > img {
    height: 50px;
    width: 75px;
    max-width: none;
  }
  .symbol.symbol-sm-55px > img {
    width: 55px;
    height: 55px;
  }
  .symbol.symbol-sm-55px .symbol-label {
    width: 55px;
    height: 55px;
  }
  .symbol.symbol-sm-55px.symbol-fixed .symbol-label {
    width: 55px;
    height: 55px;
  }
  .symbol.symbol-sm-55px.symbol-fixed > img {
    width: 55px;
    height: 55px;
    max-width: none;
  }
  .symbol.symbol-sm-55px.symbol-2by3 .symbol-label {
    height: 55px;
    width: 82.5px;
  }
  .symbol.symbol-sm-55px.symbol-2by3 > img {
    height: 55px;
    width: 82.5px;
    max-width: none;
  }
  .symbol.symbol-sm-60px > img {
    width: 60px;
    height: 60px;
  }
  .symbol.symbol-sm-60px .symbol-label {
    width: 60px;
    height: 60px;
  }
  .symbol.symbol-sm-60px.symbol-fixed .symbol-label {
    width: 60px;
    height: 60px;
  }
  .symbol.symbol-sm-60px.symbol-fixed > img {
    width: 60px;
    height: 60px;
    max-width: none;
  }
  .symbol.symbol-sm-60px.symbol-2by3 .symbol-label {
    height: 60px;
    width: 90px;
  }
  .symbol.symbol-sm-60px.symbol-2by3 > img {
    height: 60px;
    width: 90px;
    max-width: none;
  }
  .symbol.symbol-sm-65px > img {
    width: 65px;
    height: 65px;
  }
  .symbol.symbol-sm-65px .symbol-label {
    width: 65px;
    height: 65px;
  }
  .symbol.symbol-sm-65px.symbol-fixed .symbol-label {
    width: 65px;
    height: 65px;
  }
  .symbol.symbol-sm-65px.symbol-fixed > img {
    width: 65px;
    height: 65px;
    max-width: none;
  }
  .symbol.symbol-sm-65px.symbol-2by3 .symbol-label {
    height: 65px;
    width: 97.5px;
  }
  .symbol.symbol-sm-65px.symbol-2by3 > img {
    height: 65px;
    width: 97.5px;
    max-width: none;
  }
  .symbol.symbol-sm-70px > img {
    width: 70px;
    height: 70px;
  }
  .symbol.symbol-sm-70px .symbol-label {
    width: 70px;
    height: 70px;
  }
  .symbol.symbol-sm-70px.symbol-fixed .symbol-label {
    width: 70px;
    height: 70px;
  }
  .symbol.symbol-sm-70px.symbol-fixed > img {
    width: 70px;
    height: 70px;
    max-width: none;
  }
  .symbol.symbol-sm-70px.symbol-2by3 .symbol-label {
    height: 70px;
    width: 105px;
  }
  .symbol.symbol-sm-70px.symbol-2by3 > img {
    height: 70px;
    width: 105px;
    max-width: none;
  }
  .symbol.symbol-sm-75px > img {
    width: 75px;
    height: 75px;
  }
  .symbol.symbol-sm-75px .symbol-label {
    width: 75px;
    height: 75px;
  }
  .symbol.symbol-sm-75px.symbol-fixed .symbol-label {
    width: 75px;
    height: 75px;
  }
  .symbol.symbol-sm-75px.symbol-fixed > img {
    width: 75px;
    height: 75px;
    max-width: none;
  }
  .symbol.symbol-sm-75px.symbol-2by3 .symbol-label {
    height: 75px;
    width: 112.5px;
  }
  .symbol.symbol-sm-75px.symbol-2by3 > img {
    height: 75px;
    width: 112.5px;
    max-width: none;
  }
  .symbol.symbol-sm-100px > img {
    width: 100px;
    height: 100px;
  }
  .symbol.symbol-sm-100px .symbol-label {
    width: 100px;
    height: 100px;
  }
  .symbol.symbol-sm-100px.symbol-fixed .symbol-label {
    width: 100px;
    height: 100px;
  }
  .symbol.symbol-sm-100px.symbol-fixed > img {
    width: 100px;
    height: 100px;
    max-width: none;
  }
  .symbol.symbol-sm-100px.symbol-2by3 .symbol-label {
    height: 100px;
    width: 150px;
  }
  .symbol.symbol-sm-100px.symbol-2by3 > img {
    height: 100px;
    width: 150px;
    max-width: none;
  }
  .symbol.symbol-sm-125px > img {
    width: 125px;
    height: 125px;
  }
  .symbol.symbol-sm-125px .symbol-label {
    width: 125px;
    height: 125px;
  }
  .symbol.symbol-sm-125px.symbol-fixed .symbol-label {
    width: 125px;
    height: 125px;
  }
  .symbol.symbol-sm-125px.symbol-fixed > img {
    width: 125px;
    height: 125px;
    max-width: none;
  }
  .symbol.symbol-sm-125px.symbol-2by3 .symbol-label {
    height: 125px;
    width: 187.5px;
  }
  .symbol.symbol-sm-125px.symbol-2by3 > img {
    height: 125px;
    width: 187.5px;
    max-width: none;
  }
  .symbol.symbol-sm-150px > img {
    width: 150px;
    height: 150px;
  }
  .symbol.symbol-sm-150px .symbol-label {
    width: 150px;
    height: 150px;
  }
  .symbol.symbol-sm-150px.symbol-fixed .symbol-label {
    width: 150px;
    height: 150px;
  }
  .symbol.symbol-sm-150px.symbol-fixed > img {
    width: 150px;
    height: 150px;
    max-width: none;
  }
  .symbol.symbol-sm-150px.symbol-2by3 .symbol-label {
    height: 150px;
    width: 225px;
  }
  .symbol.symbol-sm-150px.symbol-2by3 > img {
    height: 150px;
    width: 225px;
    max-width: none;
  }
  .symbol.symbol-sm-160px > img {
    width: 160px;
    height: 160px;
  }
  .symbol.symbol-sm-160px .symbol-label {
    width: 160px;
    height: 160px;
  }
  .symbol.symbol-sm-160px.symbol-fixed .symbol-label {
    width: 160px;
    height: 160px;
  }
  .symbol.symbol-sm-160px.symbol-fixed > img {
    width: 160px;
    height: 160px;
    max-width: none;
  }
  .symbol.symbol-sm-160px.symbol-2by3 .symbol-label {
    height: 160px;
    width: 240px;
  }
  .symbol.symbol-sm-160px.symbol-2by3 > img {
    height: 160px;
    width: 240px;
    max-width: none;
  }
  .symbol.symbol-sm-175px > img {
    width: 175px;
    height: 175px;
  }
  .symbol.symbol-sm-175px .symbol-label {
    width: 175px;
    height: 175px;
  }
  .symbol.symbol-sm-175px.symbol-fixed .symbol-label {
    width: 175px;
    height: 175px;
  }
  .symbol.symbol-sm-175px.symbol-fixed > img {
    width: 175px;
    height: 175px;
    max-width: none;
  }
  .symbol.symbol-sm-175px.symbol-2by3 .symbol-label {
    height: 175px;
    width: 262.5px;
  }
  .symbol.symbol-sm-175px.symbol-2by3 > img {
    height: 175px;
    width: 262.5px;
    max-width: none;
  }
  .symbol.symbol-sm-200px > img {
    width: 200px;
    height: 200px;
  }
  .symbol.symbol-sm-200px .symbol-label {
    width: 200px;
    height: 200px;
  }
  .symbol.symbol-sm-200px.symbol-fixed .symbol-label {
    width: 200px;
    height: 200px;
  }
  .symbol.symbol-sm-200px.symbol-fixed > img {
    width: 200px;
    height: 200px;
    max-width: none;
  }
  .symbol.symbol-sm-200px.symbol-2by3 .symbol-label {
    height: 200px;
    width: 300px;
  }
  .symbol.symbol-sm-200px.symbol-2by3 > img {
    height: 200px;
    width: 300px;
    max-width: none;
  }
}
@media (min-width: 768px) {
  .symbol.symbol-md-20px > img {
    width: 20px;
    height: 20px;
  }
  .symbol.symbol-md-20px .symbol-label {
    width: 20px;
    height: 20px;
  }
  .symbol.symbol-md-20px.symbol-fixed .symbol-label {
    width: 20px;
    height: 20px;
  }
  .symbol.symbol-md-20px.symbol-fixed > img {
    width: 20px;
    height: 20px;
    max-width: none;
  }
  .symbol.symbol-md-20px.symbol-2by3 .symbol-label {
    height: 20px;
    width: 30px;
  }
  .symbol.symbol-md-20px.symbol-2by3 > img {
    height: 20px;
    width: 30px;
    max-width: none;
  }
  .symbol.symbol-md-25px > img {
    width: 25px;
    height: 25px;
  }
  .symbol.symbol-md-25px .symbol-label {
    width: 25px;
    height: 25px;
  }
  .symbol.symbol-md-25px.symbol-fixed .symbol-label {
    width: 25px;
    height: 25px;
  }
  .symbol.symbol-md-25px.symbol-fixed > img {
    width: 25px;
    height: 25px;
    max-width: none;
  }
  .symbol.symbol-md-25px.symbol-2by3 .symbol-label {
    height: 25px;
    width: 37.5px;
  }
  .symbol.symbol-md-25px.symbol-2by3 > img {
    height: 25px;
    width: 37.5px;
    max-width: none;
  }
  .symbol.symbol-md-30px > img {
    width: 30px;
    height: 30px;
  }
  .symbol.symbol-md-30px .symbol-label {
    width: 30px;
    height: 30px;
  }
  .symbol.symbol-md-30px.symbol-fixed .symbol-label {
    width: 30px;
    height: 30px;
  }
  .symbol.symbol-md-30px.symbol-fixed > img {
    width: 30px;
    height: 30px;
    max-width: none;
  }
  .symbol.symbol-md-30px.symbol-2by3 .symbol-label {
    height: 30px;
    width: 45px;
  }
  .symbol.symbol-md-30px.symbol-2by3 > img {
    height: 30px;
    width: 45px;
    max-width: none;
  }
  .symbol.symbol-md-35px > img {
    width: 35px;
    height: 35px;
  }
  .symbol.symbol-md-35px .symbol-label {
    width: 35px;
    height: 35px;
  }
  .symbol.symbol-md-35px.symbol-fixed .symbol-label {
    width: 35px;
    height: 35px;
  }
  .symbol.symbol-md-35px.symbol-fixed > img {
    width: 35px;
    height: 35px;
    max-width: none;
  }
  .symbol.symbol-md-35px.symbol-2by3 .symbol-label {
    height: 35px;
    width: 52.5px;
  }
  .symbol.symbol-md-35px.symbol-2by3 > img {
    height: 35px;
    width: 52.5px;
    max-width: none;
  }
  .symbol.symbol-md-40px > img {
    width: 40px;
    height: 40px;
  }
  .symbol.symbol-md-40px .symbol-label {
    width: 40px;
    height: 40px;
  }
  .symbol.symbol-md-40px.symbol-fixed .symbol-label {
    width: 40px;
    height: 40px;
  }
  .symbol.symbol-md-40px.symbol-fixed > img {
    width: 40px;
    height: 40px;
    max-width: none;
  }
  .symbol.symbol-md-40px.symbol-2by3 .symbol-label {
    height: 40px;
    width: 60px;
  }
  .symbol.symbol-md-40px.symbol-2by3 > img {
    height: 40px;
    width: 60px;
    max-width: none;
  }
  .symbol.symbol-md-45px > img {
    width: 45px;
    height: 45px;
  }
  .symbol.symbol-md-45px .symbol-label {
    width: 45px;
    height: 45px;
  }
  .symbol.symbol-md-45px.symbol-fixed .symbol-label {
    width: 45px;
    height: 45px;
  }
  .symbol.symbol-md-45px.symbol-fixed > img {
    width: 45px;
    height: 45px;
    max-width: none;
  }
  .symbol.symbol-md-45px.symbol-2by3 .symbol-label {
    height: 45px;
    width: 67.5px;
  }
  .symbol.symbol-md-45px.symbol-2by3 > img {
    height: 45px;
    width: 67.5px;
    max-width: none;
  }
  .symbol.symbol-md-50px > img {
    width: 50px;
    height: 50px;
  }
  .symbol.symbol-md-50px .symbol-label {
    width: 50px;
    height: 50px;
  }
  .symbol.symbol-md-50px.symbol-fixed .symbol-label {
    width: 50px;
    height: 50px;
  }
  .symbol.symbol-md-50px.symbol-fixed > img {
    width: 50px;
    height: 50px;
    max-width: none;
  }
  .symbol.symbol-md-50px.symbol-2by3 .symbol-label {
    height: 50px;
    width: 75px;
  }
  .symbol.symbol-md-50px.symbol-2by3 > img {
    height: 50px;
    width: 75px;
    max-width: none;
  }
  .symbol.symbol-md-55px > img {
    width: 55px;
    height: 55px;
  }
  .symbol.symbol-md-55px .symbol-label {
    width: 55px;
    height: 55px;
  }
  .symbol.symbol-md-55px.symbol-fixed .symbol-label {
    width: 55px;
    height: 55px;
  }
  .symbol.symbol-md-55px.symbol-fixed > img {
    width: 55px;
    height: 55px;
    max-width: none;
  }
  .symbol.symbol-md-55px.symbol-2by3 .symbol-label {
    height: 55px;
    width: 82.5px;
  }
  .symbol.symbol-md-55px.symbol-2by3 > img {
    height: 55px;
    width: 82.5px;
    max-width: none;
  }
  .symbol.symbol-md-60px > img {
    width: 60px;
    height: 60px;
  }
  .symbol.symbol-md-60px .symbol-label {
    width: 60px;
    height: 60px;
  }
  .symbol.symbol-md-60px.symbol-fixed .symbol-label {
    width: 60px;
    height: 60px;
  }
  .symbol.symbol-md-60px.symbol-fixed > img {
    width: 60px;
    height: 60px;
    max-width: none;
  }
  .symbol.symbol-md-60px.symbol-2by3 .symbol-label {
    height: 60px;
    width: 90px;
  }
  .symbol.symbol-md-60px.symbol-2by3 > img {
    height: 60px;
    width: 90px;
    max-width: none;
  }
  .symbol.symbol-md-65px > img {
    width: 65px;
    height: 65px;
  }
  .symbol.symbol-md-65px .symbol-label {
    width: 65px;
    height: 65px;
  }
  .symbol.symbol-md-65px.symbol-fixed .symbol-label {
    width: 65px;
    height: 65px;
  }
  .symbol.symbol-md-65px.symbol-fixed > img {
    width: 65px;
    height: 65px;
    max-width: none;
  }
  .symbol.symbol-md-65px.symbol-2by3 .symbol-label {
    height: 65px;
    width: 97.5px;
  }
  .symbol.symbol-md-65px.symbol-2by3 > img {
    height: 65px;
    width: 97.5px;
    max-width: none;
  }
  .symbol.symbol-md-70px > img {
    width: 70px;
    height: 70px;
  }
  .symbol.symbol-md-70px .symbol-label {
    width: 70px;
    height: 70px;
  }
  .symbol.symbol-md-70px.symbol-fixed .symbol-label {
    width: 70px;
    height: 70px;
  }
  .symbol.symbol-md-70px.symbol-fixed > img {
    width: 70px;
    height: 70px;
    max-width: none;
  }
  .symbol.symbol-md-70px.symbol-2by3 .symbol-label {
    height: 70px;
    width: 105px;
  }
  .symbol.symbol-md-70px.symbol-2by3 > img {
    height: 70px;
    width: 105px;
    max-width: none;
  }
  .symbol.symbol-md-75px > img {
    width: 75px;
    height: 75px;
  }
  .symbol.symbol-md-75px .symbol-label {
    width: 75px;
    height: 75px;
  }
  .symbol.symbol-md-75px.symbol-fixed .symbol-label {
    width: 75px;
    height: 75px;
  }
  .symbol.symbol-md-75px.symbol-fixed > img {
    width: 75px;
    height: 75px;
    max-width: none;
  }
  .symbol.symbol-md-75px.symbol-2by3 .symbol-label {
    height: 75px;
    width: 112.5px;
  }
  .symbol.symbol-md-75px.symbol-2by3 > img {
    height: 75px;
    width: 112.5px;
    max-width: none;
  }
  .symbol.symbol-md-100px > img {
    width: 100px;
    height: 100px;
  }
  .symbol.symbol-md-100px .symbol-label {
    width: 100px;
    height: 100px;
  }
  .symbol.symbol-md-100px.symbol-fixed .symbol-label {
    width: 100px;
    height: 100px;
  }
  .symbol.symbol-md-100px.symbol-fixed > img {
    width: 100px;
    height: 100px;
    max-width: none;
  }
  .symbol.symbol-md-100px.symbol-2by3 .symbol-label {
    height: 100px;
    width: 150px;
  }
  .symbol.symbol-md-100px.symbol-2by3 > img {
    height: 100px;
    width: 150px;
    max-width: none;
  }
  .symbol.symbol-md-125px > img {
    width: 125px;
    height: 125px;
  }
  .symbol.symbol-md-125px .symbol-label {
    width: 125px;
    height: 125px;
  }
  .symbol.symbol-md-125px.symbol-fixed .symbol-label {
    width: 125px;
    height: 125px;
  }
  .symbol.symbol-md-125px.symbol-fixed > img {
    width: 125px;
    height: 125px;
    max-width: none;
  }
  .symbol.symbol-md-125px.symbol-2by3 .symbol-label {
    height: 125px;
    width: 187.5px;
  }
  .symbol.symbol-md-125px.symbol-2by3 > img {
    height: 125px;
    width: 187.5px;
    max-width: none;
  }
  .symbol.symbol-md-150px > img {
    width: 150px;
    height: 150px;
  }
  .symbol.symbol-md-150px .symbol-label {
    width: 150px;
    height: 150px;
  }
  .symbol.symbol-md-150px.symbol-fixed .symbol-label {
    width: 150px;
    height: 150px;
  }
  .symbol.symbol-md-150px.symbol-fixed > img {
    width: 150px;
    height: 150px;
    max-width: none;
  }
  .symbol.symbol-md-150px.symbol-2by3 .symbol-label {
    height: 150px;
    width: 225px;
  }
  .symbol.symbol-md-150px.symbol-2by3 > img {
    height: 150px;
    width: 225px;
    max-width: none;
  }
  .symbol.symbol-md-160px > img {
    width: 160px;
    height: 160px;
  }
  .symbol.symbol-md-160px .symbol-label {
    width: 160px;
    height: 160px;
  }
  .symbol.symbol-md-160px.symbol-fixed .symbol-label {
    width: 160px;
    height: 160px;
  }
  .symbol.symbol-md-160px.symbol-fixed > img {
    width: 160px;
    height: 160px;
    max-width: none;
  }
  .symbol.symbol-md-160px.symbol-2by3 .symbol-label {
    height: 160px;
    width: 240px;
  }
  .symbol.symbol-md-160px.symbol-2by3 > img {
    height: 160px;
    width: 240px;
    max-width: none;
  }
  .symbol.symbol-md-175px > img {
    width: 175px;
    height: 175px;
  }
  .symbol.symbol-md-175px .symbol-label {
    width: 175px;
    height: 175px;
  }
  .symbol.symbol-md-175px.symbol-fixed .symbol-label {
    width: 175px;
    height: 175px;
  }
  .symbol.symbol-md-175px.symbol-fixed > img {
    width: 175px;
    height: 175px;
    max-width: none;
  }
  .symbol.symbol-md-175px.symbol-2by3 .symbol-label {
    height: 175px;
    width: 262.5px;
  }
  .symbol.symbol-md-175px.symbol-2by3 > img {
    height: 175px;
    width: 262.5px;
    max-width: none;
  }
  .symbol.symbol-md-200px > img {
    width: 200px;
    height: 200px;
  }
  .symbol.symbol-md-200px .symbol-label {
    width: 200px;
    height: 200px;
  }
  .symbol.symbol-md-200px.symbol-fixed .symbol-label {
    width: 200px;
    height: 200px;
  }
  .symbol.symbol-md-200px.symbol-fixed > img {
    width: 200px;
    height: 200px;
    max-width: none;
  }
  .symbol.symbol-md-200px.symbol-2by3 .symbol-label {
    height: 200px;
    width: 300px;
  }
  .symbol.symbol-md-200px.symbol-2by3 > img {
    height: 200px;
    width: 300px;
    max-width: none;
  }
}
@media (min-width: 992px) {
  .symbol.symbol-lg-20px > img {
    width: 20px;
    height: 20px;
  }
  .symbol.symbol-lg-20px .symbol-label {
    width: 20px;
    height: 20px;
  }
  .symbol.symbol-lg-20px.symbol-fixed .symbol-label {
    width: 20px;
    height: 20px;
  }
  .symbol.symbol-lg-20px.symbol-fixed > img {
    width: 20px;
    height: 20px;
    max-width: none;
  }
  .symbol.symbol-lg-20px.symbol-2by3 .symbol-label {
    height: 20px;
    width: 30px;
  }
  .symbol.symbol-lg-20px.symbol-2by3 > img {
    height: 20px;
    width: 30px;
    max-width: none;
  }
  .symbol.symbol-lg-25px > img {
    width: 25px;
    height: 25px;
  }
  .symbol.symbol-lg-25px .symbol-label {
    width: 25px;
    height: 25px;
  }
  .symbol.symbol-lg-25px.symbol-fixed .symbol-label {
    width: 25px;
    height: 25px;
  }
  .symbol.symbol-lg-25px.symbol-fixed > img {
    width: 25px;
    height: 25px;
    max-width: none;
  }
  .symbol.symbol-lg-25px.symbol-2by3 .symbol-label {
    height: 25px;
    width: 37.5px;
  }
  .symbol.symbol-lg-25px.symbol-2by3 > img {
    height: 25px;
    width: 37.5px;
    max-width: none;
  }
  .symbol.symbol-lg-30px > img {
    width: 30px;
    height: 30px;
  }
  .symbol.symbol-lg-30px .symbol-label {
    width: 30px;
    height: 30px;
  }
  .symbol.symbol-lg-30px.symbol-fixed .symbol-label {
    width: 30px;
    height: 30px;
  }
  .symbol.symbol-lg-30px.symbol-fixed > img {
    width: 30px;
    height: 30px;
    max-width: none;
  }
  .symbol.symbol-lg-30px.symbol-2by3 .symbol-label {
    height: 30px;
    width: 45px;
  }
  .symbol.symbol-lg-30px.symbol-2by3 > img {
    height: 30px;
    width: 45px;
    max-width: none;
  }
  .symbol.symbol-lg-35px > img {
    width: 35px;
    height: 35px;
  }
  .symbol.symbol-lg-35px .symbol-label {
    width: 35px;
    height: 35px;
  }
  .symbol.symbol-lg-35px.symbol-fixed .symbol-label {
    width: 35px;
    height: 35px;
  }
  .symbol.symbol-lg-35px.symbol-fixed > img {
    width: 35px;
    height: 35px;
    max-width: none;
  }
  .symbol.symbol-lg-35px.symbol-2by3 .symbol-label {
    height: 35px;
    width: 52.5px;
  }
  .symbol.symbol-lg-35px.symbol-2by3 > img {
    height: 35px;
    width: 52.5px;
    max-width: none;
  }
  .symbol.symbol-lg-40px > img {
    width: 40px;
    height: 40px;
  }
  .symbol.symbol-lg-40px .symbol-label {
    width: 40px;
    height: 40px;
  }
  .symbol.symbol-lg-40px.symbol-fixed .symbol-label {
    width: 40px;
    height: 40px;
  }
  .symbol.symbol-lg-40px.symbol-fixed > img {
    width: 40px;
    height: 40px;
    max-width: none;
  }
  .symbol.symbol-lg-40px.symbol-2by3 .symbol-label {
    height: 40px;
    width: 60px;
  }
  .symbol.symbol-lg-40px.symbol-2by3 > img {
    height: 40px;
    width: 60px;
    max-width: none;
  }
  .symbol.symbol-lg-45px > img {
    width: 45px;
    height: 45px;
  }
  .symbol.symbol-lg-45px .symbol-label {
    width: 45px;
    height: 45px;
  }
  .symbol.symbol-lg-45px.symbol-fixed .symbol-label {
    width: 45px;
    height: 45px;
  }
  .symbol.symbol-lg-45px.symbol-fixed > img {
    width: 45px;
    height: 45px;
    max-width: none;
  }
  .symbol.symbol-lg-45px.symbol-2by3 .symbol-label {
    height: 45px;
    width: 67.5px;
  }
  .symbol.symbol-lg-45px.symbol-2by3 > img {
    height: 45px;
    width: 67.5px;
    max-width: none;
  }
  .symbol.symbol-lg-50px > img {
    width: 50px;
    height: 50px;
  }
  .symbol.symbol-lg-50px .symbol-label {
    width: 50px;
    height: 50px;
  }
  .symbol.symbol-lg-50px.symbol-fixed .symbol-label {
    width: 50px;
    height: 50px;
  }
  .symbol.symbol-lg-50px.symbol-fixed > img {
    width: 50px;
    height: 50px;
    max-width: none;
  }
  .symbol.symbol-lg-50px.symbol-2by3 .symbol-label {
    height: 50px;
    width: 75px;
  }
  .symbol.symbol-lg-50px.symbol-2by3 > img {
    height: 50px;
    width: 75px;
    max-width: none;
  }
  .symbol.symbol-lg-55px > img {
    width: 55px;
    height: 55px;
  }
  .symbol.symbol-lg-55px .symbol-label {
    width: 55px;
    height: 55px;
  }
  .symbol.symbol-lg-55px.symbol-fixed .symbol-label {
    width: 55px;
    height: 55px;
  }
  .symbol.symbol-lg-55px.symbol-fixed > img {
    width: 55px;
    height: 55px;
    max-width: none;
  }
  .symbol.symbol-lg-55px.symbol-2by3 .symbol-label {
    height: 55px;
    width: 82.5px;
  }
  .symbol.symbol-lg-55px.symbol-2by3 > img {
    height: 55px;
    width: 82.5px;
    max-width: none;
  }
  .symbol.symbol-lg-60px > img {
    width: 60px;
    height: 60px;
  }
  .symbol.symbol-lg-60px .symbol-label {
    width: 60px;
    height: 60px;
  }
  .symbol.symbol-lg-60px.symbol-fixed .symbol-label {
    width: 60px;
    height: 60px;
  }
  .symbol.symbol-lg-60px.symbol-fixed > img {
    width: 60px;
    height: 60px;
    max-width: none;
  }
  .symbol.symbol-lg-60px.symbol-2by3 .symbol-label {
    height: 60px;
    width: 90px;
  }
  .symbol.symbol-lg-60px.symbol-2by3 > img {
    height: 60px;
    width: 90px;
    max-width: none;
  }
  .symbol.symbol-lg-65px > img {
    width: 65px;
    height: 65px;
  }
  .symbol.symbol-lg-65px .symbol-label {
    width: 65px;
    height: 65px;
  }
  .symbol.symbol-lg-65px.symbol-fixed .symbol-label {
    width: 65px;
    height: 65px;
  }
  .symbol.symbol-lg-65px.symbol-fixed > img {
    width: 65px;
    height: 65px;
    max-width: none;
  }
  .symbol.symbol-lg-65px.symbol-2by3 .symbol-label {
    height: 65px;
    width: 97.5px;
  }
  .symbol.symbol-lg-65px.symbol-2by3 > img {
    height: 65px;
    width: 97.5px;
    max-width: none;
  }
  .symbol.symbol-lg-70px > img {
    width: 70px;
    height: 70px;
  }
  .symbol.symbol-lg-70px .symbol-label {
    width: 70px;
    height: 70px;
  }
  .symbol.symbol-lg-70px.symbol-fixed .symbol-label {
    width: 70px;
    height: 70px;
  }
  .symbol.symbol-lg-70px.symbol-fixed > img {
    width: 70px;
    height: 70px;
    max-width: none;
  }
  .symbol.symbol-lg-70px.symbol-2by3 .symbol-label {
    height: 70px;
    width: 105px;
  }
  .symbol.symbol-lg-70px.symbol-2by3 > img {
    height: 70px;
    width: 105px;
    max-width: none;
  }
  .symbol.symbol-lg-75px > img {
    width: 75px;
    height: 75px;
  }
  .symbol.symbol-lg-75px .symbol-label {
    width: 75px;
    height: 75px;
  }
  .symbol.symbol-lg-75px.symbol-fixed .symbol-label {
    width: 75px;
    height: 75px;
  }
  .symbol.symbol-lg-75px.symbol-fixed > img {
    width: 75px;
    height: 75px;
    max-width: none;
  }
  .symbol.symbol-lg-75px.symbol-2by3 .symbol-label {
    height: 75px;
    width: 112.5px;
  }
  .symbol.symbol-lg-75px.symbol-2by3 > img {
    height: 75px;
    width: 112.5px;
    max-width: none;
  }
  .symbol.symbol-lg-100px > img {
    width: 100px;
    height: 100px;
  }
  .symbol.symbol-lg-100px .symbol-label {
    width: 100px;
    height: 100px;
  }
  .symbol.symbol-lg-100px.symbol-fixed .symbol-label {
    width: 100px;
    height: 100px;
  }
  .symbol.symbol-lg-100px.symbol-fixed > img {
    width: 100px;
    height: 100px;
    max-width: none;
  }
  .symbol.symbol-lg-100px.symbol-2by3 .symbol-label {
    height: 100px;
    width: 150px;
  }
  .symbol.symbol-lg-100px.symbol-2by3 > img {
    height: 100px;
    width: 150px;
    max-width: none;
  }
  .symbol.symbol-lg-125px > img {
    width: 125px;
    height: 125px;
  }
  .symbol.symbol-lg-125px .symbol-label {
    width: 125px;
    height: 125px;
  }
  .symbol.symbol-lg-125px.symbol-fixed .symbol-label {
    width: 125px;
    height: 125px;
  }
  .symbol.symbol-lg-125px.symbol-fixed > img {
    width: 125px;
    height: 125px;
    max-width: none;
  }
  .symbol.symbol-lg-125px.symbol-2by3 .symbol-label {
    height: 125px;
    width: 187.5px;
  }
  .symbol.symbol-lg-125px.symbol-2by3 > img {
    height: 125px;
    width: 187.5px;
    max-width: none;
  }
  .symbol.symbol-lg-150px > img {
    width: 150px;
    height: 150px;
  }
  .symbol.symbol-lg-150px .symbol-label {
    width: 150px;
    height: 150px;
  }
  .symbol.symbol-lg-150px.symbol-fixed .symbol-label {
    width: 150px;
    height: 150px;
  }
  .symbol.symbol-lg-150px.symbol-fixed > img {
    width: 150px;
    height: 150px;
    max-width: none;
  }
  .symbol.symbol-lg-150px.symbol-2by3 .symbol-label {
    height: 150px;
    width: 225px;
  }
  .symbol.symbol-lg-150px.symbol-2by3 > img {
    height: 150px;
    width: 225px;
    max-width: none;
  }
  .symbol.symbol-lg-160px > img {
    width: 160px;
    height: 160px;
  }
  .symbol.symbol-lg-160px .symbol-label {
    width: 160px;
    height: 160px;
  }
  .symbol.symbol-lg-160px.symbol-fixed .symbol-label {
    width: 160px;
    height: 160px;
  }
  .symbol.symbol-lg-160px.symbol-fixed > img {
    width: 160px;
    height: 160px;
    max-width: none;
  }
  .symbol.symbol-lg-160px.symbol-2by3 .symbol-label {
    height: 160px;
    width: 240px;
  }
  .symbol.symbol-lg-160px.symbol-2by3 > img {
    height: 160px;
    width: 240px;
    max-width: none;
  }
  .symbol.symbol-lg-175px > img {
    width: 175px;
    height: 175px;
  }
  .symbol.symbol-lg-175px .symbol-label {
    width: 175px;
    height: 175px;
  }
  .symbol.symbol-lg-175px.symbol-fixed .symbol-label {
    width: 175px;
    height: 175px;
  }
  .symbol.symbol-lg-175px.symbol-fixed > img {
    width: 175px;
    height: 175px;
    max-width: none;
  }
  .symbol.symbol-lg-175px.symbol-2by3 .symbol-label {
    height: 175px;
    width: 262.5px;
  }
  .symbol.symbol-lg-175px.symbol-2by3 > img {
    height: 175px;
    width: 262.5px;
    max-width: none;
  }
  .symbol.symbol-lg-200px > img {
    width: 200px;
    height: 200px;
  }
  .symbol.symbol-lg-200px .symbol-label {
    width: 200px;
    height: 200px;
  }
  .symbol.symbol-lg-200px.symbol-fixed .symbol-label {
    width: 200px;
    height: 200px;
  }
  .symbol.symbol-lg-200px.symbol-fixed > img {
    width: 200px;
    height: 200px;
    max-width: none;
  }
  .symbol.symbol-lg-200px.symbol-2by3 .symbol-label {
    height: 200px;
    width: 300px;
  }
  .symbol.symbol-lg-200px.symbol-2by3 > img {
    height: 200px;
    width: 300px;
    max-width: none;
  }
}
@media (min-width: 1200px) {
  .symbol.symbol-xl-20px > img {
    width: 20px;
    height: 20px;
  }
  .symbol.symbol-xl-20px .symbol-label {
    width: 20px;
    height: 20px;
  }
  .symbol.symbol-xl-20px.symbol-fixed .symbol-label {
    width: 20px;
    height: 20px;
  }
  .symbol.symbol-xl-20px.symbol-fixed > img {
    width: 20px;
    height: 20px;
    max-width: none;
  }
  .symbol.symbol-xl-20px.symbol-2by3 .symbol-label {
    height: 20px;
    width: 30px;
  }
  .symbol.symbol-xl-20px.symbol-2by3 > img {
    height: 20px;
    width: 30px;
    max-width: none;
  }
  .symbol.symbol-xl-25px > img {
    width: 25px;
    height: 25px;
  }
  .symbol.symbol-xl-25px .symbol-label {
    width: 25px;
    height: 25px;
  }
  .symbol.symbol-xl-25px.symbol-fixed .symbol-label {
    width: 25px;
    height: 25px;
  }
  .symbol.symbol-xl-25px.symbol-fixed > img {
    width: 25px;
    height: 25px;
    max-width: none;
  }
  .symbol.symbol-xl-25px.symbol-2by3 .symbol-label {
    height: 25px;
    width: 37.5px;
  }
  .symbol.symbol-xl-25px.symbol-2by3 > img {
    height: 25px;
    width: 37.5px;
    max-width: none;
  }
  .symbol.symbol-xl-30px > img {
    width: 30px;
    height: 30px;
  }
  .symbol.symbol-xl-30px .symbol-label {
    width: 30px;
    height: 30px;
  }
  .symbol.symbol-xl-30px.symbol-fixed .symbol-label {
    width: 30px;
    height: 30px;
  }
  .symbol.symbol-xl-30px.symbol-fixed > img {
    width: 30px;
    height: 30px;
    max-width: none;
  }
  .symbol.symbol-xl-30px.symbol-2by3 .symbol-label {
    height: 30px;
    width: 45px;
  }
  .symbol.symbol-xl-30px.symbol-2by3 > img {
    height: 30px;
    width: 45px;
    max-width: none;
  }
  .symbol.symbol-xl-35px > img {
    width: 35px;
    height: 35px;
  }
  .symbol.symbol-xl-35px .symbol-label {
    width: 35px;
    height: 35px;
  }
  .symbol.symbol-xl-35px.symbol-fixed .symbol-label {
    width: 35px;
    height: 35px;
  }
  .symbol.symbol-xl-35px.symbol-fixed > img {
    width: 35px;
    height: 35px;
    max-width: none;
  }
  .symbol.symbol-xl-35px.symbol-2by3 .symbol-label {
    height: 35px;
    width: 52.5px;
  }
  .symbol.symbol-xl-35px.symbol-2by3 > img {
    height: 35px;
    width: 52.5px;
    max-width: none;
  }
  .symbol.symbol-xl-40px > img {
    width: 40px;
    height: 40px;
  }
  .symbol.symbol-xl-40px .symbol-label {
    width: 40px;
    height: 40px;
  }
  .symbol.symbol-xl-40px.symbol-fixed .symbol-label {
    width: 40px;
    height: 40px;
  }
  .symbol.symbol-xl-40px.symbol-fixed > img {
    width: 40px;
    height: 40px;
    max-width: none;
  }
  .symbol.symbol-xl-40px.symbol-2by3 .symbol-label {
    height: 40px;
    width: 60px;
  }
  .symbol.symbol-xl-40px.symbol-2by3 > img {
    height: 40px;
    width: 60px;
    max-width: none;
  }
  .symbol.symbol-xl-45px > img {
    width: 45px;
    height: 45px;
  }
  .symbol.symbol-xl-45px .symbol-label {
    width: 45px;
    height: 45px;
  }
  .symbol.symbol-xl-45px.symbol-fixed .symbol-label {
    width: 45px;
    height: 45px;
  }
  .symbol.symbol-xl-45px.symbol-fixed > img {
    width: 45px;
    height: 45px;
    max-width: none;
  }
  .symbol.symbol-xl-45px.symbol-2by3 .symbol-label {
    height: 45px;
    width: 67.5px;
  }
  .symbol.symbol-xl-45px.symbol-2by3 > img {
    height: 45px;
    width: 67.5px;
    max-width: none;
  }
  .symbol.symbol-xl-50px > img {
    width: 50px;
    height: 50px;
  }
  .symbol.symbol-xl-50px .symbol-label {
    width: 50px;
    height: 50px;
  }
  .symbol.symbol-xl-50px.symbol-fixed .symbol-label {
    width: 50px;
    height: 50px;
  }
  .symbol.symbol-xl-50px.symbol-fixed > img {
    width: 50px;
    height: 50px;
    max-width: none;
  }
  .symbol.symbol-xl-50px.symbol-2by3 .symbol-label {
    height: 50px;
    width: 75px;
  }
  .symbol.symbol-xl-50px.symbol-2by3 > img {
    height: 50px;
    width: 75px;
    max-width: none;
  }
  .symbol.symbol-xl-55px > img {
    width: 55px;
    height: 55px;
  }
  .symbol.symbol-xl-55px .symbol-label {
    width: 55px;
    height: 55px;
  }
  .symbol.symbol-xl-55px.symbol-fixed .symbol-label {
    width: 55px;
    height: 55px;
  }
  .symbol.symbol-xl-55px.symbol-fixed > img {
    width: 55px;
    height: 55px;
    max-width: none;
  }
  .symbol.symbol-xl-55px.symbol-2by3 .symbol-label {
    height: 55px;
    width: 82.5px;
  }
  .symbol.symbol-xl-55px.symbol-2by3 > img {
    height: 55px;
    width: 82.5px;
    max-width: none;
  }
  .symbol.symbol-xl-60px > img {
    width: 60px;
    height: 60px;
  }
  .symbol.symbol-xl-60px .symbol-label {
    width: 60px;
    height: 60px;
  }
  .symbol.symbol-xl-60px.symbol-fixed .symbol-label {
    width: 60px;
    height: 60px;
  }
  .symbol.symbol-xl-60px.symbol-fixed > img {
    width: 60px;
    height: 60px;
    max-width: none;
  }
  .symbol.symbol-xl-60px.symbol-2by3 .symbol-label {
    height: 60px;
    width: 90px;
  }
  .symbol.symbol-xl-60px.symbol-2by3 > img {
    height: 60px;
    width: 90px;
    max-width: none;
  }
  .symbol.symbol-xl-65px > img {
    width: 65px;
    height: 65px;
  }
  .symbol.symbol-xl-65px .symbol-label {
    width: 65px;
    height: 65px;
  }
  .symbol.symbol-xl-65px.symbol-fixed .symbol-label {
    width: 65px;
    height: 65px;
  }
  .symbol.symbol-xl-65px.symbol-fixed > img {
    width: 65px;
    height: 65px;
    max-width: none;
  }
  .symbol.symbol-xl-65px.symbol-2by3 .symbol-label {
    height: 65px;
    width: 97.5px;
  }
  .symbol.symbol-xl-65px.symbol-2by3 > img {
    height: 65px;
    width: 97.5px;
    max-width: none;
  }
  .symbol.symbol-xl-70px > img {
    width: 70px;
    height: 70px;
  }
  .symbol.symbol-xl-70px .symbol-label {
    width: 70px;
    height: 70px;
  }
  .symbol.symbol-xl-70px.symbol-fixed .symbol-label {
    width: 70px;
    height: 70px;
  }
  .symbol.symbol-xl-70px.symbol-fixed > img {
    width: 70px;
    height: 70px;
    max-width: none;
  }
  .symbol.symbol-xl-70px.symbol-2by3 .symbol-label {
    height: 70px;
    width: 105px;
  }
  .symbol.symbol-xl-70px.symbol-2by3 > img {
    height: 70px;
    width: 105px;
    max-width: none;
  }
  .symbol.symbol-xl-75px > img {
    width: 75px;
    height: 75px;
  }
  .symbol.symbol-xl-75px .symbol-label {
    width: 75px;
    height: 75px;
  }
  .symbol.symbol-xl-75px.symbol-fixed .symbol-label {
    width: 75px;
    height: 75px;
  }
  .symbol.symbol-xl-75px.symbol-fixed > img {
    width: 75px;
    height: 75px;
    max-width: none;
  }
  .symbol.symbol-xl-75px.symbol-2by3 .symbol-label {
    height: 75px;
    width: 112.5px;
  }
  .symbol.symbol-xl-75px.symbol-2by3 > img {
    height: 75px;
    width: 112.5px;
    max-width: none;
  }
  .symbol.symbol-xl-100px > img {
    width: 100px;
    height: 100px;
  }
  .symbol.symbol-xl-100px .symbol-label {
    width: 100px;
    height: 100px;
  }
  .symbol.symbol-xl-100px.symbol-fixed .symbol-label {
    width: 100px;
    height: 100px;
  }
  .symbol.symbol-xl-100px.symbol-fixed > img {
    width: 100px;
    height: 100px;
    max-width: none;
  }
  .symbol.symbol-xl-100px.symbol-2by3 .symbol-label {
    height: 100px;
    width: 150px;
  }
  .symbol.symbol-xl-100px.symbol-2by3 > img {
    height: 100px;
    width: 150px;
    max-width: none;
  }
  .symbol.symbol-xl-125px > img {
    width: 125px;
    height: 125px;
  }
  .symbol.symbol-xl-125px .symbol-label {
    width: 125px;
    height: 125px;
  }
  .symbol.symbol-xl-125px.symbol-fixed .symbol-label {
    width: 125px;
    height: 125px;
  }
  .symbol.symbol-xl-125px.symbol-fixed > img {
    width: 125px;
    height: 125px;
    max-width: none;
  }
  .symbol.symbol-xl-125px.symbol-2by3 .symbol-label {
    height: 125px;
    width: 187.5px;
  }
  .symbol.symbol-xl-125px.symbol-2by3 > img {
    height: 125px;
    width: 187.5px;
    max-width: none;
  }
  .symbol.symbol-xl-150px > img {
    width: 150px;
    height: 150px;
  }
  .symbol.symbol-xl-150px .symbol-label {
    width: 150px;
    height: 150px;
  }
  .symbol.symbol-xl-150px.symbol-fixed .symbol-label {
    width: 150px;
    height: 150px;
  }
  .symbol.symbol-xl-150px.symbol-fixed > img {
    width: 150px;
    height: 150px;
    max-width: none;
  }
  .symbol.symbol-xl-150px.symbol-2by3 .symbol-label {
    height: 150px;
    width: 225px;
  }
  .symbol.symbol-xl-150px.symbol-2by3 > img {
    height: 150px;
    width: 225px;
    max-width: none;
  }
  .symbol.symbol-xl-160px > img {
    width: 160px;
    height: 160px;
  }
  .symbol.symbol-xl-160px .symbol-label {
    width: 160px;
    height: 160px;
  }
  .symbol.symbol-xl-160px.symbol-fixed .symbol-label {
    width: 160px;
    height: 160px;
  }
  .symbol.symbol-xl-160px.symbol-fixed > img {
    width: 160px;
    height: 160px;
    max-width: none;
  }
  .symbol.symbol-xl-160px.symbol-2by3 .symbol-label {
    height: 160px;
    width: 240px;
  }
  .symbol.symbol-xl-160px.symbol-2by3 > img {
    height: 160px;
    width: 240px;
    max-width: none;
  }
  .symbol.symbol-xl-175px > img {
    width: 175px;
    height: 175px;
  }
  .symbol.symbol-xl-175px .symbol-label {
    width: 175px;
    height: 175px;
  }
  .symbol.symbol-xl-175px.symbol-fixed .symbol-label {
    width: 175px;
    height: 175px;
  }
  .symbol.symbol-xl-175px.symbol-fixed > img {
    width: 175px;
    height: 175px;
    max-width: none;
  }
  .symbol.symbol-xl-175px.symbol-2by3 .symbol-label {
    height: 175px;
    width: 262.5px;
  }
  .symbol.symbol-xl-175px.symbol-2by3 > img {
    height: 175px;
    width: 262.5px;
    max-width: none;
  }
  .symbol.symbol-xl-200px > img {
    width: 200px;
    height: 200px;
  }
  .symbol.symbol-xl-200px .symbol-label {
    width: 200px;
    height: 200px;
  }
  .symbol.symbol-xl-200px.symbol-fixed .symbol-label {
    width: 200px;
    height: 200px;
  }
  .symbol.symbol-xl-200px.symbol-fixed > img {
    width: 200px;
    height: 200px;
    max-width: none;
  }
  .symbol.symbol-xl-200px.symbol-2by3 .symbol-label {
    height: 200px;
    width: 300px;
  }
  .symbol.symbol-xl-200px.symbol-2by3 > img {
    height: 200px;
    width: 300px;
    max-width: none;
  }
}
@media (min-width: 1400px) {
  .symbol.symbol-xxl-20px > img {
    width: 20px;
    height: 20px;
  }
  .symbol.symbol-xxl-20px .symbol-label {
    width: 20px;
    height: 20px;
  }
  .symbol.symbol-xxl-20px.symbol-fixed .symbol-label {
    width: 20px;
    height: 20px;
  }
  .symbol.symbol-xxl-20px.symbol-fixed > img {
    width: 20px;
    height: 20px;
    max-width: none;
  }
  .symbol.symbol-xxl-20px.symbol-2by3 .symbol-label {
    height: 20px;
    width: 30px;
  }
  .symbol.symbol-xxl-20px.symbol-2by3 > img {
    height: 20px;
    width: 30px;
    max-width: none;
  }
  .symbol.symbol-xxl-25px > img {
    width: 25px;
    height: 25px;
  }
  .symbol.symbol-xxl-25px .symbol-label {
    width: 25px;
    height: 25px;
  }
  .symbol.symbol-xxl-25px.symbol-fixed .symbol-label {
    width: 25px;
    height: 25px;
  }
  .symbol.symbol-xxl-25px.symbol-fixed > img {
    width: 25px;
    height: 25px;
    max-width: none;
  }
  .symbol.symbol-xxl-25px.symbol-2by3 .symbol-label {
    height: 25px;
    width: 37.5px;
  }
  .symbol.symbol-xxl-25px.symbol-2by3 > img {
    height: 25px;
    width: 37.5px;
    max-width: none;
  }
  .symbol.symbol-xxl-30px > img {
    width: 30px;
    height: 30px;
  }
  .symbol.symbol-xxl-30px .symbol-label {
    width: 30px;
    height: 30px;
  }
  .symbol.symbol-xxl-30px.symbol-fixed .symbol-label {
    width: 30px;
    height: 30px;
  }
  .symbol.symbol-xxl-30px.symbol-fixed > img {
    width: 30px;
    height: 30px;
    max-width: none;
  }
  .symbol.symbol-xxl-30px.symbol-2by3 .symbol-label {
    height: 30px;
    width: 45px;
  }
  .symbol.symbol-xxl-30px.symbol-2by3 > img {
    height: 30px;
    width: 45px;
    max-width: none;
  }
  .symbol.symbol-xxl-35px > img {
    width: 35px;
    height: 35px;
  }
  .symbol.symbol-xxl-35px .symbol-label {
    width: 35px;
    height: 35px;
  }
  .symbol.symbol-xxl-35px.symbol-fixed .symbol-label {
    width: 35px;
    height: 35px;
  }
  .symbol.symbol-xxl-35px.symbol-fixed > img {
    width: 35px;
    height: 35px;
    max-width: none;
  }
  .symbol.symbol-xxl-35px.symbol-2by3 .symbol-label {
    height: 35px;
    width: 52.5px;
  }
  .symbol.symbol-xxl-35px.symbol-2by3 > img {
    height: 35px;
    width: 52.5px;
    max-width: none;
  }
  .symbol.symbol-xxl-40px > img {
    width: 40px;
    height: 40px;
  }
  .symbol.symbol-xxl-40px .symbol-label {
    width: 40px;
    height: 40px;
  }
  .symbol.symbol-xxl-40px.symbol-fixed .symbol-label {
    width: 40px;
    height: 40px;
  }
  .symbol.symbol-xxl-40px.symbol-fixed > img {
    width: 40px;
    height: 40px;
    max-width: none;
  }
  .symbol.symbol-xxl-40px.symbol-2by3 .symbol-label {
    height: 40px;
    width: 60px;
  }
  .symbol.symbol-xxl-40px.symbol-2by3 > img {
    height: 40px;
    width: 60px;
    max-width: none;
  }
  .symbol.symbol-xxl-45px > img {
    width: 45px;
    height: 45px;
  }
  .symbol.symbol-xxl-45px .symbol-label {
    width: 45px;
    height: 45px;
  }
  .symbol.symbol-xxl-45px.symbol-fixed .symbol-label {
    width: 45px;
    height: 45px;
  }
  .symbol.symbol-xxl-45px.symbol-fixed > img {
    width: 45px;
    height: 45px;
    max-width: none;
  }
  .symbol.symbol-xxl-45px.symbol-2by3 .symbol-label {
    height: 45px;
    width: 67.5px;
  }
  .symbol.symbol-xxl-45px.symbol-2by3 > img {
    height: 45px;
    width: 67.5px;
    max-width: none;
  }
  .symbol.symbol-xxl-50px > img {
    width: 50px;
    height: 50px;
  }
  .symbol.symbol-xxl-50px .symbol-label {
    width: 50px;
    height: 50px;
  }
  .symbol.symbol-xxl-50px.symbol-fixed .symbol-label {
    width: 50px;
    height: 50px;
  }
  .symbol.symbol-xxl-50px.symbol-fixed > img {
    width: 50px;
    height: 50px;
    max-width: none;
  }
  .symbol.symbol-xxl-50px.symbol-2by3 .symbol-label {
    height: 50px;
    width: 75px;
  }
  .symbol.symbol-xxl-50px.symbol-2by3 > img {
    height: 50px;
    width: 75px;
    max-width: none;
  }
  .symbol.symbol-xxl-55px > img {
    width: 55px;
    height: 55px;
  }
  .symbol.symbol-xxl-55px .symbol-label {
    width: 55px;
    height: 55px;
  }
  .symbol.symbol-xxl-55px.symbol-fixed .symbol-label {
    width: 55px;
    height: 55px;
  }
  .symbol.symbol-xxl-55px.symbol-fixed > img {
    width: 55px;
    height: 55px;
    max-width: none;
  }
  .symbol.symbol-xxl-55px.symbol-2by3 .symbol-label {
    height: 55px;
    width: 82.5px;
  }
  .symbol.symbol-xxl-55px.symbol-2by3 > img {
    height: 55px;
    width: 82.5px;
    max-width: none;
  }
  .symbol.symbol-xxl-60px > img {
    width: 60px;
    height: 60px;
  }
  .symbol.symbol-xxl-60px .symbol-label {
    width: 60px;
    height: 60px;
  }
  .symbol.symbol-xxl-60px.symbol-fixed .symbol-label {
    width: 60px;
    height: 60px;
  }
  .symbol.symbol-xxl-60px.symbol-fixed > img {
    width: 60px;
    height: 60px;
    max-width: none;
  }
  .symbol.symbol-xxl-60px.symbol-2by3 .symbol-label {
    height: 60px;
    width: 90px;
  }
  .symbol.symbol-xxl-60px.symbol-2by3 > img {
    height: 60px;
    width: 90px;
    max-width: none;
  }
  .symbol.symbol-xxl-65px > img {
    width: 65px;
    height: 65px;
  }
  .symbol.symbol-xxl-65px .symbol-label {
    width: 65px;
    height: 65px;
  }
  .symbol.symbol-xxl-65px.symbol-fixed .symbol-label {
    width: 65px;
    height: 65px;
  }
  .symbol.symbol-xxl-65px.symbol-fixed > img {
    width: 65px;
    height: 65px;
    max-width: none;
  }
  .symbol.symbol-xxl-65px.symbol-2by3 .symbol-label {
    height: 65px;
    width: 97.5px;
  }
  .symbol.symbol-xxl-65px.symbol-2by3 > img {
    height: 65px;
    width: 97.5px;
    max-width: none;
  }
  .symbol.symbol-xxl-70px > img {
    width: 70px;
    height: 70px;
  }
  .symbol.symbol-xxl-70px .symbol-label {
    width: 70px;
    height: 70px;
  }
  .symbol.symbol-xxl-70px.symbol-fixed .symbol-label {
    width: 70px;
    height: 70px;
  }
  .symbol.symbol-xxl-70px.symbol-fixed > img {
    width: 70px;
    height: 70px;
    max-width: none;
  }
  .symbol.symbol-xxl-70px.symbol-2by3 .symbol-label {
    height: 70px;
    width: 105px;
  }
  .symbol.symbol-xxl-70px.symbol-2by3 > img {
    height: 70px;
    width: 105px;
    max-width: none;
  }
  .symbol.symbol-xxl-75px > img {
    width: 75px;
    height: 75px;
  }
  .symbol.symbol-xxl-75px .symbol-label {
    width: 75px;
    height: 75px;
  }
  .symbol.symbol-xxl-75px.symbol-fixed .symbol-label {
    width: 75px;
    height: 75px;
  }
  .symbol.symbol-xxl-75px.symbol-fixed > img {
    width: 75px;
    height: 75px;
    max-width: none;
  }
  .symbol.symbol-xxl-75px.symbol-2by3 .symbol-label {
    height: 75px;
    width: 112.5px;
  }
  .symbol.symbol-xxl-75px.symbol-2by3 > img {
    height: 75px;
    width: 112.5px;
    max-width: none;
  }
  .symbol.symbol-xxl-100px > img {
    width: 100px;
    height: 100px;
  }
  .symbol.symbol-xxl-100px .symbol-label {
    width: 100px;
    height: 100px;
  }
  .symbol.symbol-xxl-100px.symbol-fixed .symbol-label {
    width: 100px;
    height: 100px;
  }
  .symbol.symbol-xxl-100px.symbol-fixed > img {
    width: 100px;
    height: 100px;
    max-width: none;
  }
  .symbol.symbol-xxl-100px.symbol-2by3 .symbol-label {
    height: 100px;
    width: 150px;
  }
  .symbol.symbol-xxl-100px.symbol-2by3 > img {
    height: 100px;
    width: 150px;
    max-width: none;
  }
  .symbol.symbol-xxl-125px > img {
    width: 125px;
    height: 125px;
  }
  .symbol.symbol-xxl-125px .symbol-label {
    width: 125px;
    height: 125px;
  }
  .symbol.symbol-xxl-125px.symbol-fixed .symbol-label {
    width: 125px;
    height: 125px;
  }
  .symbol.symbol-xxl-125px.symbol-fixed > img {
    width: 125px;
    height: 125px;
    max-width: none;
  }
  .symbol.symbol-xxl-125px.symbol-2by3 .symbol-label {
    height: 125px;
    width: 187.5px;
  }
  .symbol.symbol-xxl-125px.symbol-2by3 > img {
    height: 125px;
    width: 187.5px;
    max-width: none;
  }
  .symbol.symbol-xxl-150px > img {
    width: 150px;
    height: 150px;
  }
  .symbol.symbol-xxl-150px .symbol-label {
    width: 150px;
    height: 150px;
  }
  .symbol.symbol-xxl-150px.symbol-fixed .symbol-label {
    width: 150px;
    height: 150px;
  }
  .symbol.symbol-xxl-150px.symbol-fixed > img {
    width: 150px;
    height: 150px;
    max-width: none;
  }
  .symbol.symbol-xxl-150px.symbol-2by3 .symbol-label {
    height: 150px;
    width: 225px;
  }
  .symbol.symbol-xxl-150px.symbol-2by3 > img {
    height: 150px;
    width: 225px;
    max-width: none;
  }
  .symbol.symbol-xxl-160px > img {
    width: 160px;
    height: 160px;
  }
  .symbol.symbol-xxl-160px .symbol-label {
    width: 160px;
    height: 160px;
  }
  .symbol.symbol-xxl-160px.symbol-fixed .symbol-label {
    width: 160px;
    height: 160px;
  }
  .symbol.symbol-xxl-160px.symbol-fixed > img {
    width: 160px;
    height: 160px;
    max-width: none;
  }
  .symbol.symbol-xxl-160px.symbol-2by3 .symbol-label {
    height: 160px;
    width: 240px;
  }
  .symbol.symbol-xxl-160px.symbol-2by3 > img {
    height: 160px;
    width: 240px;
    max-width: none;
  }
  .symbol.symbol-xxl-175px > img {
    width: 175px;
    height: 175px;
  }
  .symbol.symbol-xxl-175px .symbol-label {
    width: 175px;
    height: 175px;
  }
  .symbol.symbol-xxl-175px.symbol-fixed .symbol-label {
    width: 175px;
    height: 175px;
  }
  .symbol.symbol-xxl-175px.symbol-fixed > img {
    width: 175px;
    height: 175px;
    max-width: none;
  }
  .symbol.symbol-xxl-175px.symbol-2by3 .symbol-label {
    height: 175px;
    width: 262.5px;
  }
  .symbol.symbol-xxl-175px.symbol-2by3 > img {
    height: 175px;
    width: 262.5px;
    max-width: none;
  }
  .symbol.symbol-xxl-200px > img {
    width: 200px;
    height: 200px;
  }
  .symbol.symbol-xxl-200px .symbol-label {
    width: 200px;
    height: 200px;
  }
  .symbol.symbol-xxl-200px.symbol-fixed .symbol-label {
    width: 200px;
    height: 200px;
  }
  .symbol.symbol-xxl-200px.symbol-fixed > img {
    width: 200px;
    height: 200px;
    max-width: none;
  }
  .symbol.symbol-xxl-200px.symbol-2by3 .symbol-label {
    height: 200px;
    width: 300px;
  }
  .symbol.symbol-xxl-200px.symbol-2by3 > img {
    height: 200px;
    width: 300px;
    max-width: none;
  }
}

.symbol-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 10px;
}
.symbol-group .symbol {
  position: relative;
  z-index: 0;
  margin-left: -10px;
  border: 2px solid #ffffff;
  transition: all 0.3s ease;
}
.symbol-group .symbol:hover {
  transition: all 0.3s ease;
  z-index: 1;
}
.symbol-group.symbol-hover .symbol {
  cursor: pointer;
}

.pulse {
  position: relative;
}
.pulse.pulse-white .pulse-ring {
  border-color: #ffffff;
}
.pulse.pulse-light .pulse-ring {
  border-color: #F5F8FA;
}
.pulse.pulse-primary .pulse-ring {
  border-color: #009EF7;
}
.pulse.pulse-secondary .pulse-ring {
  border-color: #E4E6EF;
}
.pulse.pulse-success .pulse-ring {
  border-color: #50CD89;
}
.pulse.pulse-info .pulse-ring {
  border-color: #7239EA;
}
.pulse.pulse-warning .pulse-ring {
  border-color: #FFC700;
}
.pulse.pulse-danger .pulse-ring {
  border-color: #F1416C;
}
.pulse.pulse-dark .pulse-ring {
  border-color: #181C32;
}

.pulse-ring {
  display: block;
  border-radius: 40px;
  height: 40px;
  width: 40px;
  position: absolute;
  animation: animation-pulse 3.5s ease-out;
  animation-iteration-count: infinite;
  opacity: 0;
  border-width: 3px;
  border-style: solid;
  border-color: #A1A5B7;
}

@keyframes animation-pulse {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  60% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  65% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
.page-loading * {
  transition: none !important;
}

.page-loader {
  background: #ffffff;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: none;
}
.page-loading .page-loader {
  display: flex;
  justify-content: center;
  align-items: center;
}

.scrolltop {
  position: fixed;
  display: none;
  cursor: pointer;
  z-index: 100;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  bottom: 40px;
  right: 20px;
  background-color: #009EF7;
  box-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, 0.075);
  opacity: 0;
  transition: color 0.2s ease, background-color 0.2s ease;
  border-radius: 0.475rem;
}
.scrolltop .svg-icon {
  color: #ffffff;
}
.scrolltop .svg-icon svg {
  height: 24px;
  width: 24px;
}
.scrolltop > i {
  font-size: 1.3rem;
  color: #ffffff;
}
.scrolltop:hover {
  background-color: #009EF7;
}
.scrolltop:hover > i {
  color: #ffffff;
}
.scrolltop:hover .svg-icon {
  color: #ffffff;
}
[data-kt-scrolltop=on] .scrolltop {
  opacity: 0.3;
  animation: animation-scrolltop 0.4s ease-out 1;
  display: flex;
}
[data-kt-scrolltop=on] .scrolltop:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
  opacity: 1;
}
@media (max-width: 991.98px) {
  .scrolltop {
    bottom: 30px;
    right: 15px;
    width: 30px;
    height: 30px;
  }
}

@keyframes animation-scrolltop {
  from {
    margin-bottom: -15px;
  }
  to {
    margin-bottom: 0;
  }
}
.svg-icon {
  line-height: 1;
  color: #A1A5B7;
}
.svg-icon svg {
  height: 1.15rem;
  width: 1.15rem;
}
.svg-icon.svg-icon-white {
  color: #ffffff;
}
.svg-icon.svg-icon-primary {
  color: #009EF7;
}
.svg-icon.svg-icon-secondary {
  color: #E4E6EF;
}
.svg-icon.svg-icon-light {
  color: #F5F8FA;
}
.svg-icon.svg-icon-success {
  color: #50CD89;
}
.svg-icon.svg-icon-info {
  color: #7239EA;
}
.svg-icon.svg-icon-warning {
  color: #FFC700;
}
.svg-icon.svg-icon-danger {
  color: #F1416C;
}
.svg-icon.svg-icon-dark {
  color: #181C32;
}
.svg-icon.svg-icon-muted {
  color: #A1A5B7;
}
.svg-icon.svg-icon-gray-100 {
  color: #F5F8FA;
}
.svg-icon.svg-icon-gray-200 {
  color: #EFF2F5;
}
.svg-icon.svg-icon-gray-300 {
  color: #E4E6EF;
}
.svg-icon.svg-icon-gray-400 {
  color: #B5B5C3;
}
.svg-icon.svg-icon-gray-500 {
  color: #A1A5B7;
}
.svg-icon.svg-icon-gray-600 {
  color: #7E8299;
}
.svg-icon.svg-icon-gray-700 {
  color: #5E6278;
}
.svg-icon.svg-icon-gray-800 {
  color: #3F4254;
}
.svg-icon.svg-icon-gray-900 {
  color: #181C32;
}
.svg-icon.svg-icon-1 svg {
  height: 1.75rem !important;
  width: 1.75rem !important;
}
.svg-icon.svg-icon-2 svg {
  height: 1.5rem !important;
  width: 1.5rem !important;
}
.svg-icon.svg-icon-3 svg {
  height: 1.35rem !important;
  width: 1.35rem !important;
}
.svg-icon.svg-icon-4 svg {
  height: 1.25rem !important;
  width: 1.25rem !important;
}
.svg-icon.svg-icon-5 svg {
  height: 1.15rem !important;
  width: 1.15rem !important;
}
.svg-icon.svg-icon-6 svg {
  height: 1.075rem !important;
  width: 1.075rem !important;
}
.svg-icon.svg-icon-7 svg {
  height: 0.95rem !important;
  width: 0.95rem !important;
}
.svg-icon.svg-icon-8 svg {
  height: 0.85rem !important;
  width: 0.85rem !important;
}
.svg-icon.svg-icon-9 svg {
  height: 0.75rem !important;
  width: 0.75rem !important;
}
.svg-icon.svg-icon-10 svg {
  height: 0.5rem !important;
  width: 0.5rem !important;
}
.svg-icon.svg-icon-base svg {
  height: 1rem !important;
  width: 1rem !important;
}
.svg-icon.svg-icon-fluid svg {
  height: 100% !important;
  width: 100% !important;
}
.svg-icon.svg-icon-2x svg {
  height: 2rem !important;
  width: 2rem !important;
}
.svg-icon.svg-icon-2qx svg {
  height: 2.25rem !important;
  width: 2.25rem !important;
}
.svg-icon.svg-icon-2hx svg {
  height: 2.5rem !important;
  width: 2.5rem !important;
}
.svg-icon.svg-icon-2tx svg {
  height: 2.75rem !important;
  width: 2.75rem !important;
}
.svg-icon.svg-icon-3x svg {
  height: 3rem !important;
  width: 3rem !important;
}
.svg-icon.svg-icon-3qx svg {
  height: 3.25rem !important;
  width: 3.25rem !important;
}
.svg-icon.svg-icon-3hx svg {
  height: 3.5rem !important;
  width: 3.5rem !important;
}
.svg-icon.svg-icon-3tx svg {
  height: 3.75rem !important;
  width: 3.75rem !important;
}
.svg-icon.svg-icon-4x svg {
  height: 4rem !important;
  width: 4rem !important;
}
.svg-icon.svg-icon-4qx svg {
  height: 4.25rem !important;
  width: 4.25rem !important;
}
.svg-icon.svg-icon-4hx svg {
  height: 4.5rem !important;
  width: 4.5rem !important;
}
.svg-icon.svg-icon-4tx svg {
  height: 4.75rem !important;
  width: 4.75rem !important;
}
.svg-icon.svg-icon-5x svg {
  height: 5rem !important;
  width: 5rem !important;
}
.svg-icon.svg-icon-5qx svg {
  height: 5.25rem !important;
  width: 5.25rem !important;
}
.svg-icon.svg-icon-5hx svg {
  height: 5.5rem !important;
  width: 5.5rem !important;
}
.svg-icon.svg-icon-5tx svg {
  height: 5.75rem !important;
  width: 5.75rem !important;
}
@media (min-width: 576px) {
  .svg-icon.svg-icon-sm-1 svg {
    height: 1.75rem !important;
    width: 1.75rem !important;
  }
  .svg-icon.svg-icon-sm-2 svg {
    height: 1.5rem !important;
    width: 1.5rem !important;
  }
  .svg-icon.svg-icon-sm-3 svg {
    height: 1.35rem !important;
    width: 1.35rem !important;
  }
  .svg-icon.svg-icon-sm-4 svg {
    height: 1.25rem !important;
    width: 1.25rem !important;
  }
  .svg-icon.svg-icon-sm-5 svg {
    height: 1.15rem !important;
    width: 1.15rem !important;
  }
  .svg-icon.svg-icon-sm-6 svg {
    height: 1.075rem !important;
    width: 1.075rem !important;
  }
  .svg-icon.svg-icon-sm-7 svg {
    height: 0.95rem !important;
    width: 0.95rem !important;
  }
  .svg-icon.svg-icon-sm-8 svg {
    height: 0.85rem !important;
    width: 0.85rem !important;
  }
  .svg-icon.svg-icon-sm-9 svg {
    height: 0.75rem !important;
    width: 0.75rem !important;
  }
  .svg-icon.svg-icon-sm-10 svg {
    height: 0.5rem !important;
    width: 0.5rem !important;
  }
  .svg-icon.svg-icon-sm-base svg {
    height: 1rem !important;
    width: 1rem !important;
  }
  .svg-icon.svg-icon-sm-fluid svg {
    height: 100% !important;
    width: 100% !important;
  }
  .svg-icon.svg-icon-sm-2x svg {
    height: 2rem !important;
    width: 2rem !important;
  }
  .svg-icon.svg-icon-sm-2qx svg {
    height: 2.25rem !important;
    width: 2.25rem !important;
  }
  .svg-icon.svg-icon-sm-2hx svg {
    height: 2.5rem !important;
    width: 2.5rem !important;
  }
  .svg-icon.svg-icon-sm-2tx svg {
    height: 2.75rem !important;
    width: 2.75rem !important;
  }
  .svg-icon.svg-icon-sm-3x svg {
    height: 3rem !important;
    width: 3rem !important;
  }
  .svg-icon.svg-icon-sm-3qx svg {
    height: 3.25rem !important;
    width: 3.25rem !important;
  }
  .svg-icon.svg-icon-sm-3hx svg {
    height: 3.5rem !important;
    width: 3.5rem !important;
  }
  .svg-icon.svg-icon-sm-3tx svg {
    height: 3.75rem !important;
    width: 3.75rem !important;
  }
  .svg-icon.svg-icon-sm-4x svg {
    height: 4rem !important;
    width: 4rem !important;
  }
  .svg-icon.svg-icon-sm-4qx svg {
    height: 4.25rem !important;
    width: 4.25rem !important;
  }
  .svg-icon.svg-icon-sm-4hx svg {
    height: 4.5rem !important;
    width: 4.5rem !important;
  }
  .svg-icon.svg-icon-sm-4tx svg {
    height: 4.75rem !important;
    width: 4.75rem !important;
  }
  .svg-icon.svg-icon-sm-5x svg {
    height: 5rem !important;
    width: 5rem !important;
  }
  .svg-icon.svg-icon-sm-5qx svg {
    height: 5.25rem !important;
    width: 5.25rem !important;
  }
  .svg-icon.svg-icon-sm-5hx svg {
    height: 5.5rem !important;
    width: 5.5rem !important;
  }
  .svg-icon.svg-icon-sm-5tx svg {
    height: 5.75rem !important;
    width: 5.75rem !important;
  }
}
@media (min-width: 768px) {
  .svg-icon.svg-icon-md-1 svg {
    height: 1.75rem !important;
    width: 1.75rem !important;
  }
  .svg-icon.svg-icon-md-2 svg {
    height: 1.5rem !important;
    width: 1.5rem !important;
  }
  .svg-icon.svg-icon-md-3 svg {
    height: 1.35rem !important;
    width: 1.35rem !important;
  }
  .svg-icon.svg-icon-md-4 svg {
    height: 1.25rem !important;
    width: 1.25rem !important;
  }
  .svg-icon.svg-icon-md-5 svg {
    height: 1.15rem !important;
    width: 1.15rem !important;
  }
  .svg-icon.svg-icon-md-6 svg {
    height: 1.075rem !important;
    width: 1.075rem !important;
  }
  .svg-icon.svg-icon-md-7 svg {
    height: 0.95rem !important;
    width: 0.95rem !important;
  }
  .svg-icon.svg-icon-md-8 svg {
    height: 0.85rem !important;
    width: 0.85rem !important;
  }
  .svg-icon.svg-icon-md-9 svg {
    height: 0.75rem !important;
    width: 0.75rem !important;
  }
  .svg-icon.svg-icon-md-10 svg {
    height: 0.5rem !important;
    width: 0.5rem !important;
  }
  .svg-icon.svg-icon-md-base svg {
    height: 1rem !important;
    width: 1rem !important;
  }
  .svg-icon.svg-icon-md-fluid svg {
    height: 100% !important;
    width: 100% !important;
  }
  .svg-icon.svg-icon-md-2x svg {
    height: 2rem !important;
    width: 2rem !important;
  }
  .svg-icon.svg-icon-md-2qx svg {
    height: 2.25rem !important;
    width: 2.25rem !important;
  }
  .svg-icon.svg-icon-md-2hx svg {
    height: 2.5rem !important;
    width: 2.5rem !important;
  }
  .svg-icon.svg-icon-md-2tx svg {
    height: 2.75rem !important;
    width: 2.75rem !important;
  }
  .svg-icon.svg-icon-md-3x svg {
    height: 3rem !important;
    width: 3rem !important;
  }
  .svg-icon.svg-icon-md-3qx svg {
    height: 3.25rem !important;
    width: 3.25rem !important;
  }
  .svg-icon.svg-icon-md-3hx svg {
    height: 3.5rem !important;
    width: 3.5rem !important;
  }
  .svg-icon.svg-icon-md-3tx svg {
    height: 3.75rem !important;
    width: 3.75rem !important;
  }
  .svg-icon.svg-icon-md-4x svg {
    height: 4rem !important;
    width: 4rem !important;
  }
  .svg-icon.svg-icon-md-4qx svg {
    height: 4.25rem !important;
    width: 4.25rem !important;
  }
  .svg-icon.svg-icon-md-4hx svg {
    height: 4.5rem !important;
    width: 4.5rem !important;
  }
  .svg-icon.svg-icon-md-4tx svg {
    height: 4.75rem !important;
    width: 4.75rem !important;
  }
  .svg-icon.svg-icon-md-5x svg {
    height: 5rem !important;
    width: 5rem !important;
  }
  .svg-icon.svg-icon-md-5qx svg {
    height: 5.25rem !important;
    width: 5.25rem !important;
  }
  .svg-icon.svg-icon-md-5hx svg {
    height: 5.5rem !important;
    width: 5.5rem !important;
  }
  .svg-icon.svg-icon-md-5tx svg {
    height: 5.75rem !important;
    width: 5.75rem !important;
  }
}
@media (min-width: 992px) {
  .svg-icon.svg-icon-lg-1 svg {
    height: 1.75rem !important;
    width: 1.75rem !important;
  }
  .svg-icon.svg-icon-lg-2 svg {
    height: 1.5rem !important;
    width: 1.5rem !important;
  }
  .svg-icon.svg-icon-lg-3 svg {
    height: 1.35rem !important;
    width: 1.35rem !important;
  }
  .svg-icon.svg-icon-lg-4 svg {
    height: 1.25rem !important;
    width: 1.25rem !important;
  }
  .svg-icon.svg-icon-lg-5 svg {
    height: 1.15rem !important;
    width: 1.15rem !important;
  }
  .svg-icon.svg-icon-lg-6 svg {
    height: 1.075rem !important;
    width: 1.075rem !important;
  }
  .svg-icon.svg-icon-lg-7 svg {
    height: 0.95rem !important;
    width: 0.95rem !important;
  }
  .svg-icon.svg-icon-lg-8 svg {
    height: 0.85rem !important;
    width: 0.85rem !important;
  }
  .svg-icon.svg-icon-lg-9 svg {
    height: 0.75rem !important;
    width: 0.75rem !important;
  }
  .svg-icon.svg-icon-lg-10 svg {
    height: 0.5rem !important;
    width: 0.5rem !important;
  }
  .svg-icon.svg-icon-lg-base svg {
    height: 1rem !important;
    width: 1rem !important;
  }
  .svg-icon.svg-icon-lg-fluid svg {
    height: 100% !important;
    width: 100% !important;
  }
  .svg-icon.svg-icon-lg-2x svg {
    height: 2rem !important;
    width: 2rem !important;
  }
  .svg-icon.svg-icon-lg-2qx svg {
    height: 2.25rem !important;
    width: 2.25rem !important;
  }
  .svg-icon.svg-icon-lg-2hx svg {
    height: 2.5rem !important;
    width: 2.5rem !important;
  }
  .svg-icon.svg-icon-lg-2tx svg {
    height: 2.75rem !important;
    width: 2.75rem !important;
  }
  .svg-icon.svg-icon-lg-3x svg {
    height: 3rem !important;
    width: 3rem !important;
  }
  .svg-icon.svg-icon-lg-3qx svg {
    height: 3.25rem !important;
    width: 3.25rem !important;
  }
  .svg-icon.svg-icon-lg-3hx svg {
    height: 3.5rem !important;
    width: 3.5rem !important;
  }
  .svg-icon.svg-icon-lg-3tx svg {
    height: 3.75rem !important;
    width: 3.75rem !important;
  }
  .svg-icon.svg-icon-lg-4x svg {
    height: 4rem !important;
    width: 4rem !important;
  }
  .svg-icon.svg-icon-lg-4qx svg {
    height: 4.25rem !important;
    width: 4.25rem !important;
  }
  .svg-icon.svg-icon-lg-4hx svg {
    height: 4.5rem !important;
    width: 4.5rem !important;
  }
  .svg-icon.svg-icon-lg-4tx svg {
    height: 4.75rem !important;
    width: 4.75rem !important;
  }
  .svg-icon.svg-icon-lg-5x svg {
    height: 5rem !important;
    width: 5rem !important;
  }
  .svg-icon.svg-icon-lg-5qx svg {
    height: 5.25rem !important;
    width: 5.25rem !important;
  }
  .svg-icon.svg-icon-lg-5hx svg {
    height: 5.5rem !important;
    width: 5.5rem !important;
  }
  .svg-icon.svg-icon-lg-5tx svg {
    height: 5.75rem !important;
    width: 5.75rem !important;
  }
}
@media (min-width: 1200px) {
  .svg-icon.svg-icon-xl-1 svg {
    height: 1.75rem !important;
    width: 1.75rem !important;
  }
  .svg-icon.svg-icon-xl-2 svg {
    height: 1.5rem !important;
    width: 1.5rem !important;
  }
  .svg-icon.svg-icon-xl-3 svg {
    height: 1.35rem !important;
    width: 1.35rem !important;
  }
  .svg-icon.svg-icon-xl-4 svg {
    height: 1.25rem !important;
    width: 1.25rem !important;
  }
  .svg-icon.svg-icon-xl-5 svg {
    height: 1.15rem !important;
    width: 1.15rem !important;
  }
  .svg-icon.svg-icon-xl-6 svg {
    height: 1.075rem !important;
    width: 1.075rem !important;
  }
  .svg-icon.svg-icon-xl-7 svg {
    height: 0.95rem !important;
    width: 0.95rem !important;
  }
  .svg-icon.svg-icon-xl-8 svg {
    height: 0.85rem !important;
    width: 0.85rem !important;
  }
  .svg-icon.svg-icon-xl-9 svg {
    height: 0.75rem !important;
    width: 0.75rem !important;
  }
  .svg-icon.svg-icon-xl-10 svg {
    height: 0.5rem !important;
    width: 0.5rem !important;
  }
  .svg-icon.svg-icon-xl-base svg {
    height: 1rem !important;
    width: 1rem !important;
  }
  .svg-icon.svg-icon-xl-fluid svg {
    height: 100% !important;
    width: 100% !important;
  }
  .svg-icon.svg-icon-xl-2x svg {
    height: 2rem !important;
    width: 2rem !important;
  }
  .svg-icon.svg-icon-xl-2qx svg {
    height: 2.25rem !important;
    width: 2.25rem !important;
  }
  .svg-icon.svg-icon-xl-2hx svg {
    height: 2.5rem !important;
    width: 2.5rem !important;
  }
  .svg-icon.svg-icon-xl-2tx svg {
    height: 2.75rem !important;
    width: 2.75rem !important;
  }
  .svg-icon.svg-icon-xl-3x svg {
    height: 3rem !important;
    width: 3rem !important;
  }
  .svg-icon.svg-icon-xl-3qx svg {
    height: 3.25rem !important;
    width: 3.25rem !important;
  }
  .svg-icon.svg-icon-xl-3hx svg {
    height: 3.5rem !important;
    width: 3.5rem !important;
  }
  .svg-icon.svg-icon-xl-3tx svg {
    height: 3.75rem !important;
    width: 3.75rem !important;
  }
  .svg-icon.svg-icon-xl-4x svg {
    height: 4rem !important;
    width: 4rem !important;
  }
  .svg-icon.svg-icon-xl-4qx svg {
    height: 4.25rem !important;
    width: 4.25rem !important;
  }
  .svg-icon.svg-icon-xl-4hx svg {
    height: 4.5rem !important;
    width: 4.5rem !important;
  }
  .svg-icon.svg-icon-xl-4tx svg {
    height: 4.75rem !important;
    width: 4.75rem !important;
  }
  .svg-icon.svg-icon-xl-5x svg {
    height: 5rem !important;
    width: 5rem !important;
  }
  .svg-icon.svg-icon-xl-5qx svg {
    height: 5.25rem !important;
    width: 5.25rem !important;
  }
  .svg-icon.svg-icon-xl-5hx svg {
    height: 5.5rem !important;
    width: 5.5rem !important;
  }
  .svg-icon.svg-icon-xl-5tx svg {
    height: 5.75rem !important;
    width: 5.75rem !important;
  }
}
@media (min-width: 1400px) {
  .svg-icon.svg-icon-xxl-1 svg {
    height: 1.75rem !important;
    width: 1.75rem !important;
  }
  .svg-icon.svg-icon-xxl-2 svg {
    height: 1.5rem !important;
    width: 1.5rem !important;
  }
  .svg-icon.svg-icon-xxl-3 svg {
    height: 1.35rem !important;
    width: 1.35rem !important;
  }
  .svg-icon.svg-icon-xxl-4 svg {
    height: 1.25rem !important;
    width: 1.25rem !important;
  }
  .svg-icon.svg-icon-xxl-5 svg {
    height: 1.15rem !important;
    width: 1.15rem !important;
  }
  .svg-icon.svg-icon-xxl-6 svg {
    height: 1.075rem !important;
    width: 1.075rem !important;
  }
  .svg-icon.svg-icon-xxl-7 svg {
    height: 0.95rem !important;
    width: 0.95rem !important;
  }
  .svg-icon.svg-icon-xxl-8 svg {
    height: 0.85rem !important;
    width: 0.85rem !important;
  }
  .svg-icon.svg-icon-xxl-9 svg {
    height: 0.75rem !important;
    width: 0.75rem !important;
  }
  .svg-icon.svg-icon-xxl-10 svg {
    height: 0.5rem !important;
    width: 0.5rem !important;
  }
  .svg-icon.svg-icon-xxl-base svg {
    height: 1rem !important;
    width: 1rem !important;
  }
  .svg-icon.svg-icon-xxl-fluid svg {
    height: 100% !important;
    width: 100% !important;
  }
  .svg-icon.svg-icon-xxl-2x svg {
    height: 2rem !important;
    width: 2rem !important;
  }
  .svg-icon.svg-icon-xxl-2qx svg {
    height: 2.25rem !important;
    width: 2.25rem !important;
  }
  .svg-icon.svg-icon-xxl-2hx svg {
    height: 2.5rem !important;
    width: 2.5rem !important;
  }
  .svg-icon.svg-icon-xxl-2tx svg {
    height: 2.75rem !important;
    width: 2.75rem !important;
  }
  .svg-icon.svg-icon-xxl-3x svg {
    height: 3rem !important;
    width: 3rem !important;
  }
  .svg-icon.svg-icon-xxl-3qx svg {
    height: 3.25rem !important;
    width: 3.25rem !important;
  }
  .svg-icon.svg-icon-xxl-3hx svg {
    height: 3.5rem !important;
    width: 3.5rem !important;
  }
  .svg-icon.svg-icon-xxl-3tx svg {
    height: 3.75rem !important;
    width: 3.75rem !important;
  }
  .svg-icon.svg-icon-xxl-4x svg {
    height: 4rem !important;
    width: 4rem !important;
  }
  .svg-icon.svg-icon-xxl-4qx svg {
    height: 4.25rem !important;
    width: 4.25rem !important;
  }
  .svg-icon.svg-icon-xxl-4hx svg {
    height: 4.5rem !important;
    width: 4.5rem !important;
  }
  .svg-icon.svg-icon-xxl-4tx svg {
    height: 4.75rem !important;
    width: 4.75rem !important;
  }
  .svg-icon.svg-icon-xxl-5x svg {
    height: 5rem !important;
    width: 5rem !important;
  }
  .svg-icon.svg-icon-xxl-5qx svg {
    height: 5.25rem !important;
    width: 5.25rem !important;
  }
  .svg-icon.svg-icon-xxl-5hx svg {
    height: 5.5rem !important;
    width: 5.5rem !important;
  }
  .svg-icon.svg-icon-xxl-5tx svg {
    height: 5.75rem !important;
    width: 5.75rem !important;
  }
}

.fixed-top {
  position: fixed;
  z-index: 101;
  top: 0;
  left: 0;
  right: 0;
}

@media (min-width: 576px) {
  .fixed-top-sm {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    right: 0;
  }
}
@media (min-width: 768px) {
  .fixed-top-md {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    right: 0;
  }
}
@media (min-width: 992px) {
  .fixed-top-lg {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    right: 0;
  }
}
@media (min-width: 1200px) {
  .fixed-top-xl {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    right: 0;
  }
}
@media (min-width: 1400px) {
  .fixed-top-xxl {
    position: fixed;
    z-index: 101;
    top: 0;
    left: 0;
    right: 0;
  }
}
.timeline .timeline-item {
  position: relative;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: flex-start;
}
.timeline .timeline-item:last-child .timeline-line {
  bottom: 100%;
}
.timeline .timeline-line {
  display: block;
  content: " ";
  justify-content: center;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  bottom: 0;
  transform: translate(50%);
  border-left-width: 1px;
  border-left-style: dashed;
  border-left-color: #E4E6EF;
}
.timeline .timeline-icon {
  z-index: 1;
  flex-shrink: 0;
  margin-right: 1rem;
}
.timeline .timeline-content {
  width: 100%;
  overflow: auto;
  margin-bottom: 1.5rem;
}
.timeline.timeline-center .timeline-item {
  align-items: center;
}
.timeline.timeline-center .timeline-item:first-child .timeline-line {
  top: 50%;
}
.timeline.timeline-center .timeline-item:last-child .timeline-line {
  bottom: 50%;
}

.timeline-label {
  position: relative;
}
.timeline-label:before {
  content: "";
  position: absolute;
  left: 51px;
  width: 3px;
  top: 0;
  bottom: 0;
  background-color: #EFF2F5;
}
.timeline-label .timeline-item {
  display: flex;
  align-items: flex-start;
  position: relative;
  margin-bottom: 1.7rem;
}
.timeline-label .timeline-item:last-child {
  margin-bottom: 0;
}
.timeline-label .timeline-label {
  width: 50px;
  flex-shrink: 0;
  position: relative;
  color: #3F4254;
}
.timeline-label .timeline-badge {
  flex-shrink: 0;
  background: #ffffff;
  width: 1rem;
  height: 1rem;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  position: relative;
  margin-top: 1px;
  margin-left: -0.5rem;
  padding: 3px !important;
  border: 6px solid #ffffff !important;
}
.timeline-label .timeline-badge span {
  display: block;
  border-radius: 100%;
  width: 6px;
  height: 6px;
  background-color: #EFF2F5;
}
.timeline-label .timeline-content {
  flex-grow: 1;
}

.overlay {
  position: relative;
}
.overlay .overlay-layer {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
}
.overlay.overlay-show .overlay-layer, .overlay.overlay-block .overlay-layer, .overlay:hover .overlay-layer {
  transition: all 0.3s ease;
  opacity: 1;
}
.overlay.overlay-block {
  cursor: wait;
}

.bullet {
  display: inline-block;
  background-color: #B5B5C3;
  border-radius: 6px;
  width: 8px;
  height: 4px;
  flex-shrink: 0;
}

.bullet-dot {
  width: 4px;
  height: 4px;
  border-radius: 100% !important;
}

.bullet-vertical {
  width: 4px;
  height: 8px;
}

.bullet-line {
  width: 5px;
  height: 1px;
  border-radius: 0;
}

.drawer {
  display: flex !important;
  overflow: auto;
  z-index: 110;
  position: fixed;
  top: 0;
  bottom: 0;
  background-color: #ffffff;
  transition: transform 0.3s ease-in-out;
}
.drawer.drawer-start {
  left: 0;
  transform: translateX(-100%);
}
.drawer.drawer-end {
  right: 0;
  transform: translateX(100%);
}
.drawer.drawer-on {
  transform: none;
  box-shadow: 0px 1px 9px -3px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease-in-out;
}

.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  z-index: 109;
  background-color: rgba(0, 0, 0, 0.2);
  animation: animation-drawer-fade-in 0.3s ease-in-out 1;
}

[data-kt-drawer=true] {
  display: none;
}

@keyframes animation-drawer-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@media (max-width: 991.98px) {
  body[data-kt-drawer=on] {
    overflow: hidden;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
}
.badge.badge-circle, .badge.badge-square {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.75rem;
  min-width: 1.75rem;
  padding: 0 0.1rem;
  line-height: 0;
}
.badge.badge-circle {
  border-radius: 50%;
  padding: 0;
  min-width: unset;
  width: 1.75rem;
}
.badge.badge-sm {
  min-width: 1.5rem;
  font-size: 0.8rem;
}
.badge.badge-sm.badge-square {
  height: 1.5rem;
}
.badge.badge-sm.badge-circle {
  width: 1.5rem;
  height: 1.5rem;
}
.badge.badge-lg {
  min-width: 2rem;
  font-size: 1rem;
}
.badge.badge-lg.badge-square {
  height: 2rem;
}
.badge.badge-lg.badge-circle {
  width: 2rem;
  height: 2rem;
}

.badge-white {
  color: #7E8299;
  background-color: #ffffff;
}

.badge-light-white {
  color: #ffffff;
}

.badge-light {
  color: #7E8299;
  background-color: #F5F8FA;
}

.badge-light-light {
  color: #F5F8FA;
}

.badge-primary {
  color: #FFFFFF;
  background-color: #009EF7;
}

.badge-light-primary {
  color: #009EF7;
  background-color: #F1FAFF;
}

.badge-secondary {
  color: #3F4254;
  background-color: #E4E6EF;
}

.badge-light-secondary {
  color: #E4E6EF;
}

.badge-success {
  color: #FFFFFF;
  background-color: #50CD89;
}

.badge-light-success {
  color: #50CD89;
  background-color: #E8FFF3;
}

.badge-info {
  color: #FFFFFF;
  background-color: #7239EA;
}

.badge-light-info {
  color: #7239EA;
  background-color: #F8F5FF;
}

.badge-warning {
  color: #FFFFFF;
  background-color: #FFC700;
}

.badge-light-warning {
  color: #FFC700;
  background-color: #FFF8DD;
}

.badge-danger {
  color: #FFFFFF;
  background-color: #F1416C;
}

.badge-light-danger {
  color: #F1416C;
  background-color: #FFF5F8;
}

.badge-dark {
  color: #ffffff;
  background-color: #181C32;
}

.badge-light-dark {
  color: #181C32;
  background-color: #EFF2F5;
}

.indicator-progress {
  display: none;
}
[data-kt-indicator=on] > .indicator-progress {
  display: inline-block;
}

[data-kt-indicator=on] > .indicator-label {
  display: none;
}

.rotate {
  display: inline-flex;
  align-items: center;
}

.rotate-90 {
  transition: transform 0.3s ease;
  backface-visibility: hidden;
}
.collapsible:not(.collapsed) > .rotate-90, .show > .rotate-90, .active > .rotate-90 {
  transform: rotateZ(90deg);
  transition: transform 0.3s ease;
}
[direction=rtl] .collapsible:not(.collapsed) > .rotate-90, [direction=rtl] .show > .rotate-90, [direction=rtl] .active > .rotate-90 {
  transform: rotateZ(-90deg);
}

.rotate-n90 {
  transition: transform 0.3s ease;
  backface-visibility: hidden;
}
.collapsible:not(.collapsed) > .rotate-n90, .show > .rotate-n90, .active > .rotate-n90 {
  transform: rotateZ(-90deg);
  transition: transform 0.3s ease;
}
[direction=rtl] .collapsible:not(.collapsed) > .rotate-n90, [direction=rtl] .show > .rotate-n90, [direction=rtl] .active > .rotate-n90 {
  transform: rotateZ(90deg);
}

.rotate-180 {
  transition: transform 0.3s ease;
  backface-visibility: hidden;
}
.collapsible:not(.collapsed) > .rotate-180, .show > .rotate-180, .active > .rotate-180 {
  transform: rotateZ(180deg);
  transition: transform 0.3s ease;
}
[direction=rtl] .collapsible:not(.collapsed) > .rotate-180, [direction=rtl] .show > .rotate-180, [direction=rtl] .active > .rotate-180 {
  transform: rotateZ(-180deg);
}

.rotate-n180 {
  transition: transform 0.3s ease;
  backface-visibility: hidden;
}
.collapsible:not(.collapsed) > .rotate-n180, .show > .rotate-n180, .active > .rotate-n180 {
  transform: rotateZ(-180deg);
  transition: transform 0.3s ease;
}
[direction=rtl] .collapsible:not(.collapsed) > .rotate-n180, [direction=rtl] .show > .rotate-n180, [direction=rtl] .active > .rotate-n180 {
  transform: rotateZ(180deg);
}

.rotate-270 {
  transition: transform 0.3s ease;
  backface-visibility: hidden;
}
.collapsible:not(.collapsed) > .rotate-270, .show > .rotate-270, .active > .rotate-270 {
  transform: rotateZ(270deg);
  transition: transform 0.3s ease;
}
[direction=rtl] .collapsible:not(.collapsed) > .rotate-270, [direction=rtl] .show > .rotate-270, [direction=rtl] .active > .rotate-270 {
  transform: rotateZ(-270deg);
}

.rotate-n270 {
  transition: transform 0.3s ease;
  backface-visibility: hidden;
}
.collapsible:not(.collapsed) > .rotate-n270, .show > .rotate-n270, .active > .rotate-n270 {
  transform: rotateZ(-270deg);
  transition: transform 0.3s ease;
}
[direction=rtl] .collapsible:not(.collapsed) > .rotate-n270, [direction=rtl] .show > .rotate-n270, [direction=rtl] .active > .rotate-n270 {
  transform: rotateZ(270deg);
}

@media (min-width: 992px) {
  main,
span,
ol,
ul,
pre,
div {
    scrollbar-width: thin;
    scrollbar-color: #EFF2F5 transparent;
  }
  main::-webkit-scrollbar,
span::-webkit-scrollbar,
ol::-webkit-scrollbar,
ul::-webkit-scrollbar,
pre::-webkit-scrollbar,
div::-webkit-scrollbar {
    width: 0.4rem;
    height: 0.4rem;
  }
  main::-webkit-scrollbar-thumb,
span::-webkit-scrollbar-thumb,
ol::-webkit-scrollbar-thumb,
ul::-webkit-scrollbar-thumb,
pre::-webkit-scrollbar-thumb,
div::-webkit-scrollbar-thumb {
    background-color: #EFF2F5;
  }
  main:hover,
span:hover,
ol:hover,
ul:hover,
pre:hover,
div:hover {
    scrollbar-color: #e9edf1 transparent;
  }
  main:hover::-webkit-scrollbar-thumb,
span:hover::-webkit-scrollbar-thumb,
ol:hover::-webkit-scrollbar-thumb,
ul:hover::-webkit-scrollbar-thumb,
pre:hover::-webkit-scrollbar-thumb,
div:hover::-webkit-scrollbar-thumb {
    background-color: #e9edf1;
  }
}
.scroll {
  overflow: scroll;
  position: relative;
}
@media (max-width: 991.98px) {
  .scroll {
    overflow: auto;
  }
}

.scroll-x {
  overflow-x: scroll;
  position: relative;
}
@media (max-width: 991.98px) {
  .scroll-x {
    overflow-x: auto;
  }
}

.scroll-y {
  overflow-y: scroll;
  position: relative;
}
@media (max-width: 991.98px) {
  .scroll-y {
    overflow-y: auto;
  }
}

.hover-scroll {
  position: relative;
}
@media (min-width: 992px) {
  .hover-scroll {
    overflow: hidden;
    border-right: 0.4rem solid transparent;
    border-bottom: 0.4rem solid transparent;
    margin-right: -0.4rem;
    margin-bottom: -0.4rem;
  }
  .hover-scroll:hover {
    overflow: scroll;
    border-right: 0;
    border-bottom: 0;
  }
  @-moz-document url-prefix() {
    .hover-scroll {
      overflow: scroll;
      position: relative;
      border-right: 0;
      border-bottom: 0;
    }
  }
}
@media (max-width: 991.98px) {
  .hover-scroll {
    overflow: auto;
  }
}

.hover-scroll-y {
  position: relative;
}
@media (min-width: 992px) {
  .hover-scroll-y {
    overflow-y: hidden;
    border-right: 0.4rem solid transparent;
    margin-right: -0.4rem;
  }
  .hover-scroll-y:hover {
    overflow-y: scroll;
    border-right: 0;
  }
  @-moz-document url-prefix() {
    .hover-scroll-y {
      overflow-y: scroll;
      position: relative;
      border-right: 0;
    }
  }
}
@media (max-width: 991.98px) {
  .hover-scroll-y {
    overflow-y: auto;
  }
}

.hover-scroll-x {
  position: relative;
}
@media (min-width: 992px) {
  .hover-scroll-x {
    overflow-x: hidden;
    border-bottom: 0.4rem solid transparent;
  }
  .hover-scroll-x:hover {
    overflow-x: scroll;
    border-bottom: 0;
  }
  @-moz-document url-prefix() {
    .hover-scroll-x {
      overflow-x: scroll;
      position: relative;
      border-bottom: 0;
    }
  }
}
@media (max-width: 991.98px) {
  .hover-scroll-x {
    overflow-x: auto;
  }
}

.hover-scroll-overlay-y {
  overflow-y: hidden;
  position: relative;
  --scrollbar-space: 0.5rem;
}
.hover-scroll-overlay-y::-webkit-scrollbar {
  width: calc(0.4rem + var(--scrollbar-space));
}
.hover-scroll-overlay-y::-webkit-scrollbar-thumb {
  background-clip: content-box;
  border-right: var(--scrollbar-space) solid transparent;
}
.hover-scroll-overlay-y:hover {
  overflow-y: overlay;
}
@-moz-document url-prefix() {
  .hover-scroll-overlay-y {
    overflow-y: scroll;
    position: relative;
  }
}

.scroll-ps {
  padding-left: 0.4rem !important;
}

.scroll-ms {
  margin-left: 0.4rem !important;
}

.scroll-pe {
  padding-right: 0.4rem !important;
}

.scroll-me {
  margin-right: 0.4rem !important;
}

.scroll-px {
  padding-left: 0.4rem !important;
  padding-right: 0.4rem !important;
}

.scroll-mx {
  margin-left: 0.4rem !important;
  margin-right: 0.4rem !important;
}

.rating {
  display: flex;
  align-items: center;
}

.rating-input {
  position: absolute !important;
  left: -9999px !important;
}
.rating-input[disabled] {
  display: none;
}

.rating-label {
  padding: 0;
  margin: 0;
}
.rating-label > i, .rating-label > .svg-icon {
  line-height: 1;
  color: #B5B5C3;
}

label.rating-label {
  cursor: pointer;
}

div.rating-label.checked > i, div.rating-label.checked > .svg-icon,
label.rating-label > i,
label.rating-label > .svg-icon {
  color: #FFAD0F;
}

.rating-input:checked ~ .rating-label > i, .rating-input:checked ~ .rating-label > .svg-icon {
  color: #B5B5C3;
}

.rating:hover label.rating-label > i, .rating:hover label.rating-label > .svg-icon {
  color: #FFAD0F;
}

label.rating-label:hover ~ .rating-label {
  color: #B5B5C3;
}
label.rating-label:hover ~ .rating-label > i, label.rating-label:hover ~ .rating-label > .svg-icon {
  color: #B5B5C3;
}

.stepper [data-kt-stepper-element=info],
.stepper [data-kt-stepper-element=content] {
  display: none;
}
.stepper [data-kt-stepper-element=info].current,
.stepper [data-kt-stepper-element=content].current {
  display: flex;
}
.stepper .stepper-item[data-kt-stepper-action=step] {
  cursor: pointer;
}
.stepper [data-kt-stepper-action=previous] {
  display: none;
}
.stepper [data-kt-stepper-action=next] {
  display: inline-block;
}
.stepper [data-kt-stepper-action=submit] {
  display: none;
}
.stepper.first [data-kt-stepper-action=previous] {
  display: none;
}
.stepper.first [data-kt-stepper-action=next] {
  display: inline-block;
}
.stepper.first [data-kt-stepper-action=submit] {
  display: none;
}
.stepper.between [data-kt-stepper-action=previous] {
  display: inline-block;
}
.stepper.between [data-kt-stepper-action=next] {
  display: inline-block;
}
.stepper.between [data-kt-stepper-action=submit] {
  display: none;
}
.stepper.last [data-kt-stepper-action=previous] {
  display: inline-block;
}
.stepper.last [data-kt-stepper-action=next] {
  display: none;
}
.stepper.last [data-kt-stepper-action=submit] {
  display: inline-block;
}
.stepper.last [data-kt-stepper-action=submit].btn-flex {
  display: flex;
}

.stepper.stepper-pills .stepper-nav {
  display: flex;
}
.stepper.stepper-pills .stepper-item {
  display: flex;
  align-items: center;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.stepper.stepper-pills .stepper-item .stepper-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, background-color 0.2s ease;
  width: 40px;
  height: 40px;
  border-radius: 0.475rem;
  background-color: #F1FAFF;
  margin-right: 1.5rem;
}
.stepper.stepper-pills .stepper-item .stepper-icon .stepper-check {
  display: none;
  font-size: 1rem;
}
.stepper.stepper-pills .stepper-item .stepper-icon .stepper-number {
  font-weight: 600;
  color: #009EF7 !important;
  font-size: 1.25rem;
}
.stepper.stepper-pills .stepper-item .stepper-label {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.stepper.stepper-pills .stepper-item .stepper-label .stepper-title {
  color: #3F4254;
  font-weight: 600;
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}
.stepper.stepper-pills .stepper-item .stepper-label .stepper-desc {
  color: #A1A5B7;
}
.stepper.stepper-pills .stepper-item.current {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.stepper.stepper-pills .stepper-item.current .stepper-icon {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #009EF7;
}
.stepper.stepper-pills .stepper-item.current .stepper-icon .stepper-check {
  color: #009EF7;
  display: none;
}
.stepper.stepper-pills .stepper-item.current .stepper-icon .stepper-number {
  color: #ffffff !important;
  font-size: 1.35rem;
}
.stepper.stepper-pills .stepper-item.current .stepper-label .stepper-title {
  color: #7E8299;
}
.stepper.stepper-pills .stepper-item.current .stepper-label .stepper-desc {
  color: #B5B5C3;
}
.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon, .stepper.stepper-pills .stepper-item.completed .stepper-icon {
  transition: color 0.2s ease, background-color 0.2s ease;
  background-color: #F1FAFF;
}
.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon .stepper-check, .stepper.stepper-pills .stepper-item.completed .stepper-icon .stepper-check {
  color: #009EF7 !important;
  display: inline-block;
}
.stepper.stepper-pills .stepper-item.current:last-child .stepper-icon .stepper-number, .stepper.stepper-pills .stepper-item.completed .stepper-icon .stepper-number {
  display: none;
}
.stepper.stepper-pills .stepper-item.current:last-child .stepper-label .stepper-title, .stepper.stepper-pills .stepper-item.completed .stepper-label .stepper-title {
  color: #A1A5B7;
}
.stepper.stepper-pills .stepper-item.current:last-child .stepper-label .stepper-desc, .stepper.stepper-pills .stepper-item.completed .stepper-label .stepper-desc {
  color: #B5B5C3;
}
.stepper.stepper-pills.stepper-column .stepper-nav {
  flex-direction: column;
}
.stepper.stepper-pills.stepper-column .stepper-item {
  position: relative;
  padding: 0;
  margin: 0;
  padding-bottom: 2.5rem;
}
.stepper.stepper-pills.stepper-column .stepper-icon {
  z-index: 1;
}
.stepper.stepper-pills.stepper-column .stepper-line {
  display: block;
  content: " ";
  justify-content: center;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 40px;
  transform: translate(50%);
  border-left-width: 1px;
  border-left-style: dashed;
  border-left-color: #E4E6EF;
}
.stepper.stepper-pills.stepper-column .stepper-item:first-child .stepper-line {
  top: 50%;
}
.stepper.stepper-pills.stepper-column .stepper-item:last-child .stepper-line {
  bottom: 50%;
}

.stepper.stepper-links .stepper-nav {
  display: flex;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.stepper.stepper-links .stepper-nav .stepper-item {
  position: relative;
  flex-shrink: 0;
  margin: 1rem 1.5rem;
}
.stepper.stepper-links .stepper-nav .stepper-item:after {
  content: " ";
  position: absolute;
  top: 2.3rem;
  left: 0;
  height: 2px;
  width: 100%;
  background-color: transparent;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.stepper.stepper-links .stepper-nav .stepper-item .stepper-title {
  color: #181C32;
  font-weight: 600;
  font-size: 1.25rem;
}
.stepper.stepper-links .stepper-nav .stepper-item.current {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.stepper.stepper-links .stepper-nav .stepper-item.current .stepper-title {
  color: #009EF7;
}
.stepper.stepper-links .stepper-nav .stepper-item.current:after {
  background-color: #009EF7;
}
.stepper.stepper-links .stepper-nav .stepper-item.completed .stepper-title {
  color: #B5B5C3;
}

.toggle.collapsible:not(.collapsed) .toggle-off, .toggle.active .toggle-off {
  display: none;
}
.toggle.collapsible.collapsed .toggle-on, .toggle:not(.collapsible):not(.active) .toggle-on {
  display: none;
}

.xehagon {
  clip-path: polygon(45% 1.3397459622%, 46.5797985667% 0.6030737921%, 48.2635182233% 0.1519224699%, 50% 0%, 51.7364817767% 0.1519224699%, 53.4202014333% 0.6030737921%, 55% 1.3397459622%, 89.6410161514% 21.3397459622%, 91.0688922482% 22.3395555688%, 92.3014605826% 23.5721239031%, 93.3012701892% 25%, 94.0379423592% 26.5797985667%, 94.4890936815% 28.2635182233%, 94.6410161514% 30%, 94.6410161514% 70%, 94.4890936815% 71.7364817767%, 94.0379423592% 73.4202014333%, 93.3012701892% 75%, 92.3014605826% 76.4278760969%, 91.0688922482% 77.6604444312%, 89.6410161514% 78.6602540378%, 55% 98.6602540378%, 53.4202014333% 99.3969262079%, 51.7364817767% 99.8480775301%, 50% 100%, 48.2635182233% 99.8480775301%, 46.5797985667% 99.3969262079%, 45% 98.6602540378%, 10.3589838486% 78.6602540378%, 8.9311077518% 77.6604444312%, 7.6985394174% 76.4278760969%, 6.6987298108% 75%, 5.9620576408% 73.4202014333%, 5.5109063185% 71.7364817767%, 5.3589838486% 70%, 5.3589838486% 30%, 5.5109063185% 28.2635182233%, 5.9620576408% 26.5797985667%, 6.6987298108% 25%, 7.6985394174% 23.5721239031%, 8.9311077518% 22.3395555688%, 10.3589838486% 21.3397459622%);
}

.octagon {
  clip-path: polygon(46.1731656763% 0.7612046749%, 47.411809549% 0.3407417371%, 48.6947380778% 0.0855513863%, 50% 0%, 51.3052619222% 0.0855513863%, 52.588190451% 0.3407417371%, 53.8268343237% 0.7612046749%, 82.1111055711% 12.4769334274%, 83.2842712475% 13.0554747147%, 84.3718855375% 13.7821953496%, 85.3553390593% 14.6446609407%, 86.2178046504% 15.6281144625%, 86.9445252853% 16.7157287525%, 87.5230665726% 17.8888944289%, 99.2387953251% 46.1731656763%, 99.6592582629% 47.411809549%, 99.9144486137% 48.6947380778%, 100% 50%, 99.9144486137% 51.3052619222%, 99.6592582629% 52.588190451%, 99.2387953251% 53.8268343237%, 87.5230665726% 82.1111055711%, 86.9445252853% 83.2842712475%, 86.2178046504% 84.3718855375%, 85.3553390593% 85.3553390593%, 84.3718855375% 86.2178046504%, 83.2842712475% 86.9445252853%, 82.1111055711% 87.5230665726%, 53.8268343237% 99.2387953251%, 52.588190451% 99.6592582629%, 51.3052619222% 99.9144486137%, 50% 100%, 48.6947380778% 99.9144486137%, 47.411809549% 99.6592582629%, 46.1731656763% 99.2387953251%, 17.8888944289% 87.5230665726%, 16.7157287525% 86.9445252853%, 15.6281144625% 86.2178046504%, 14.6446609407% 85.3553390593%, 13.7821953496% 84.3718855375%, 13.0554747147% 83.2842712475%, 12.4769334274% 82.1111055711%, 0.7612046749% 53.8268343237%, 0.3407417371% 52.588190451%, 0.0855513863% 51.3052619222%, 0% 50%, 0.0855513863% 48.6947380778%, 0.3407417371% 47.411809549%, 0.7612046749% 46.1731656763%, 12.4769334274% 17.8888944289%, 13.0554747147% 16.7157287525%, 13.7821953496% 15.6281144625%, 14.6446609407% 14.6446609407%, 15.6281144625% 13.7821953496%, 16.7157287525% 13.0554747147%, 17.8888944289% 12.4769334274%);
}

.ribbon {
  position: relative;
}
.ribbon .ribbon-label {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px 10px;
  position: absolute;
  z-index: 1;
  background-color: #009EF7;
  box-shadow: 0px -1px 5px 0px rgba(0, 0, 0, 0.1);
  color: #FFFFFF;
  top: 50%;
  right: 0;
  transform: translateX(5px) translateY(-50%);
}
.ribbon .ribbon-label > .ribbon-inner {
  z-index: -1;
  position: absolute;
  padding: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.ribbon .ribbon-label:after {
  border-color: #003c5e;
}
.ribbon-vertical .ribbon-label {
  padding: 5px 10px;
  min-width: 36px;
  min-height: 46px;
  text-align: center;
}
.ribbon.ribbon-top .ribbon-label {
  top: 0;
  transform: translateX(-15px) translateY(-4px);
  border-bottom-right-radius: 0.475rem;
  border-bottom-left-radius: 0.475rem;
}
.ribbon.ribbon-bottom .ribbon-label {
  border-top-right-radius: 0.475rem;
  border-top-left-radius: 0.475rem;
}
.ribbon.ribbon-start .ribbon-label {
  top: 50%;
  left: 0;
  right: auto;
  transform: translateX(-5px) translateY(-50%);
  border-top-right-radius: 0.475rem;
  border-bottom-right-radius: 0.475rem;
}
.ribbon.ribbon-end .ribbon-label {
  border-top-left-radius: 0.475rem;
  border-bottom-left-radius: 0.475rem;
}

.ribbon.ribbon-clip.ribbon-start .ribbon-label {
  left: -5px;
}
.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner {
  border-top-right-radius: 0.475rem;
  border-bottom-right-radius: 0.475rem;
}
.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner:before, .ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-color: transparent !important;
  bottom: -10px;
}
.ribbon.ribbon-clip.ribbon-start .ribbon-label .ribbon-inner:before {
  border-width: 0 10px 10px 0;
  border-right-color: #181C32 !important;
  left: 0;
}
.ribbon.ribbon-clip.ribbon-end .ribbon-label {
  right: -5px;
}
.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner {
  border-top-left-radius: 0.475rem;
  border-bottom-left-radius: 0.475rem;
}
.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner:before, .ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner:after {
  content: "";
  position: absolute;
  border-style: solid;
  border-color: transparent !important;
  bottom: -10px;
}
.ribbon.ribbon-clip.ribbon-end .ribbon-label .ribbon-inner:before {
  border-width: 0 0 10px 10px;
  border-left-color: #181C32 !important;
  right: 0;
}

.ribbon.ribbon-triangle {
  position: absolute;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.ribbon.ribbon-triangle.ribbon-top-start {
  top: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  border-bottom: solid 2rem transparent !important;
  border-left: solid 2rem red;
  border-right: solid 2rem transparent !important;
  border-top: solid 2rem red;
}
.ribbon.ribbon-triangle.ribbon-top-end {
  top: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  border-bottom: solid 2rem transparent !important;
  border-left: solid 2rem transparent !important;
  border-right: solid 2rem red;
  border-top: solid 2rem red;
}
.ribbon.ribbon-triangle.ribbon-bottom-start {
  bottom: 0;
  left: 0;
  width: 4rem;
  height: 4rem;
  border-bottom: solid 2rem red;
  border-left: solid 2rem red;
  border-right: solid 2rem transparent !important;
  border-top: solid 2rem transparent !important;
}
.ribbon.ribbon-triangle.ribbon-bottom-end {
  bottom: 0;
  right: 0;
  width: 4rem;
  height: 4rem;
  border-bottom: solid 2rem red;
  border-right: solid 2rem red;
  border-left: solid 2rem transparent !important;
  border-top: solid 2rem transparent !important;
}

.blockui {
  position: relative;
}
.blockui .blockui-overlay {
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.05);
}
.blockui .blockui-overlay .spinner-border {
  height: 1.35rem;
  width: 1.35rem;
}
.blockui .blockui-message {
  display: flex;
  align-items: center;
  border-radius: 0.475rem;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  background-color: #ffffff;
  color: #7E8299;
  font-weight: 500;
  margin: 0 !important;
  width: auto;
  padding: 0.85rem 1.75rem !important;
}
.blockui .blockui-message .spinner-border {
  margin-right: 0.65rem;
}

.explore-btn-toggle {
  color: #7E8299;
  background-color: #ffffff;
}
.explore-btn-toggle:hover, .explore-btn-toggle:focus, .explore-btn-toggle:active {
  color: #ffffff;
  background-color: #00B2FF;
}

.explore-btn-dismiss {
  border: 0;
}
.explore-btn-dismiss:hover i,
.explore-btn-dismiss:hover .svg-icon {
  color: #00B2FF;
}

.explore-btn-primary {
  border: 0;
  color: #ffffff;
  background-color: #00B2FF;
}
.explore-btn-primary:hover {
  color: #ffffff;
  background-color: #0098DA;
}

.explore-btn-secondary {
  border: 0;
  color: #7E8299;
  background-color: #F5F8FA;
}
.explore-btn-secondary:hover {
  color: #3F4254;
  background-color: #EFF2F5;
}

.explore-btn-outline {
  border: 1px dashed #E4E6EF !important;
}
.explore-btn-outline:hover, .explore-btn-outline.active {
  border: 1px dashed #50CD89 !important;
  background-color: #E8FFF3;
}

.explore-link {
  color: #00B2FF;
}
.explore-link:hover {
  color: #0098DA;
}

.explore-link-hover:hover {
  color: #00B2FF !important;
}

.explore-icon-success {
  color: #50CD89;
}

.explore-icon-danger {
  color: #F1416C;
}

.explore-label-free {
  color: #ffffff;
  background-color: #FFC700;
}

.explore-label-pro {
  color: #ffffff;
  background-color: #50CD89;
}

.cookiealert {
  background: inherit;
  color: inherit;
}

@media print {
  .print-content-only {
    padding: 0 !important;
    background: none !important;
  }
  .print-content-only .wrapper,
.print-content-only .page,
.print-content-only .page-title .content,
.print-content-only .container,
.print-content-only .container-xxl,
.print-content-only .container-fluid,
.print-content-only .container-sm,
.print-content-only .container-md,
.print-content-only .container-lg,
.print-content-only .container-xl {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .print-content-only .aside,
.print-content-only .sidebar,
.print-content-only .scrolltop,
.print-content-only .header,
.print-content-only .footer,
.print-content-only .toolbar,
.print-content-only .drawer,
.print-content-only .btn {
    display: none !important;
  }
}
@media (min-width: 992px) {
  .container-custom {
    padding-left: 2rem !important;
    padding-right: 2rem !important;
  }
}
@media (max-width: 991.98px) {
  .container-custom {
    max-width: none;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
  }
}
.landing-dark-bg {
  background-color: #2B3A8D;
}

.landing-dark-color {
  color: #2B3A8D;
}

.landing-dark-border {
  border: 1px dashed #2C3F5B;
}

.landing-dark-separator {
  border-top: 1px dashed #2C3F5B;
}

.landing-curve {
  position: relative;
}
.landing-curve svg {
  position: relative;
  top: 0;
  display: block;
}

.landing-header {
  display: flex;
  align-items: center;
  height: 100px;
}
.landing-header .logo-default {
  display: block;
}
.landing-header .logo-sticky {
  display: none;
}
.landing-header .menu .menu-link.active {
  color: #ffffff;
}
[data-kt-sticky-landing-header=on] .landing-header .menu .menu-link.active {
  color: #009EF7;
  background-color: rgba(239, 242, 245, 0.4);
}
[data-kt-sticky-landing-header=on] .landing-header {
  padding: 0;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
  background-color: #ffffff;
  box-shadow: 0px 10px 30px 0px rgba(82, 63, 105, 0.05);
  height: 70px;
}
[data-kt-sticky-landing-header=on] .landing-header .logo-sticky {
  display: block;
}
[data-kt-sticky-landing-header=on] .landing-header .logo-default {
  display: none;
}

body[data-kt-sticky-landing-header=on] {
  padding-top: 100px;
}

@media (max-width: 991.98px) {
  .landing-header {
    height: 70px;
  }
  .landing-header .landing-menu-wrapper {
    position: relative;
    overflow: auto;
  }
  [data-kt-sticky-landing-header=on] .landing-header {
    height: 70px;
  }
  .landing-header .menu .menu-link.active {
    color: #009EF7;
    background-color: rgba(239, 242, 245, 0.4);
  }

  body[data-kt-sticky-landing-header=on] {
    padding-top: 70px;
  }
}
html {
  font-family: sans-serif;
  text-size-adjust: 100%;
}

html,
body {
  height: 100%;
  margin: 0px;
  padding: 0px;
  font-size: 13px !important;
  font-weight: 400;
  font-family: Poppins, Helvetica, "sans-serif";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 991.98px) {
  html,
body {
    font-size: 13px !important;
  }
}
@media (max-width: 767.98px) {
  html,
body {
    font-size: 12px !important;
  }
}
html a:hover,
html a:active,
html a:focus,
body a:hover,
body a:active,
body a:focus {
  text-decoration: none !important;
}

body {
  display: flex;
  flex-direction: column;
  color: #181C32;
}

router-outlet {
  display: none;
}

canvas {
  user-select: none;
}

@media print {
  .print-content-only {
    padding: 0 !important;
    background: none !important;
  }
  .print-content-only .wrapper,
.print-content-only .page,
.print-content-only .page-title .content,
.print-content-only .container,
.print-content-only .container-xxl,
.print-content-only .container-fluid,
.print-content-only .container-sm,
.print-content-only .container-md,
.print-content-only .container-lg,
.print-content-only .container-xl {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .print-content-only .aside,
.print-content-only .sidebar,
.print-content-only .scrolltop,
.print-content-only .header,
.print-content-only .footer,
.print-content-only .toolbar,
.print-content-only .drawer,
.print-content-only .btn {
    display: none !important;
  }
}
body {
  background-color: #F5F8FA;
  background-repeat: no-repeat;
  background-position: center top;
  /*background-size: 100% get($page-bg-image-height, desktop);*/
}
body.page-bg-image-lg {
  background-size: 100% 530px;
}

.text-page-bg {
  color: #F5F8FA;
}

.nav-custom .nav-link {
  color: #ffffff !important;
  opacity: 0.7;
}
.nav-custom .nav-link.active {
  opacity: 1;
  border-bottom: 2px solid #ffffff !important;
}
.nav-custom .nav-link:hover {
  opacity: 1;
  border-bottom-color: transparent !important;
}

@media (min-width: 992px) {
  .container,
.container-xxl,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
    padding: 0 30px;
  }

  .wrapper {
    transition: padding-left ease, margin-right ease;
  }
  .header-fixed[data-kt-sticky-header=on] .wrapper {
    padding-top: 80px;
  }
}
@media (max-width: 991.98px) {
  body {
    background-size: 100% 200px;
  }
  body.page-bg-image-lg {
    background-size: 100% 450px;
  }

  .container,
.container-xxl,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
    max-width: none;
    padding: 0 15px;
  }

  .header-tablet-and-mobile-fixed[data-kt-sticky-header=on] .wrapper {
    padding-top: 65px;
  }
}
@media (min-width: 992px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    position: relative;
    z-index: 2;
    height: 80px;
    transition: left ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header .header-logo {
    padding: 0;
    display: flex;
    align-items: center;
  }
  .header .header-logo .logo-default {
    display: inline-block;
  }
  .header .header-logo .logo-sticky {
    display: none;
  }
  .header .header-menu {
    display: flex;
  }
  .header-fixed[data-kt-sticky-header=on] .header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 97;
    background-color: #ffffff;
    box-shadow: 0px 10px 30px 0px rgba(82, 63, 105, 0.08);
    height: 65px;
    border-bottom: 0;
    padding: 0;
  }
  .header-fixed[data-kt-sticky-header=on] .header .header-logo .logo-default {
    display: none;
  }
  .header-fixed[data-kt-sticky-header=on] .header .header-logo .logo-sticky {
    display: inline-block;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item > .menu-link {
    color: #fff;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item > .menu-link .menu-title {
    color: #fff;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item > .menu-link .menu-icon,
body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item > .menu-link .menu-icon .svg-icon,
body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item > .menu-link .menu-icon i {
    color: #4A4B68;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item > .menu-link .menu-bullet .bullet {
    background-color: #9899ac;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item > .menu-link .menu-arrow:after {
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23494B69'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
    /*rtl:begin:remove*/
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23494B69'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
    /*rtl:end:remove*/
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here), body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item:not(.here) > .menu-link:hover:not(.disabled):not(.active):not(.here) {
    transition: color 0.2s ease, background-color 0.2s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-title, body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item:not(.here) > .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-title {
    color: #ffffff;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon,
body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-icon i, body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item:not(.here) > .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon,
body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item:not(.here) > .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon .svg-icon,
body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item:not(.here) > .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-icon i {
    color: #ffffff;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-bullet .bullet, body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item:not(.here) > .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-bullet .bullet {
    background-color: #ffffff;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.hover:not(.here) > .menu-link:not(.disabled):not(.active):not(.here) .menu-arrow:after, body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item:not(.here) > .menu-link:hover:not(.disabled):not(.active):not(.here) .menu-arrow:after {
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
    /*rtl:begin:remove*/
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
    /*rtl:end:remove*/
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.here > .menu-link {
    transition: color 0.2s ease, background-color 0.2s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.here > .menu-link .menu-title {
    color: #ffffff;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.here > .menu-link .menu-icon,
body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.here > .menu-link .menu-icon .svg-icon,
body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.here > .menu-link .menu-icon i {
    color: #ffffff;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.here > .menu-link .menu-bullet .bullet {
    background-color: #ffffff;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.here > .menu-link .menu-arrow:after {
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
    /*rtl:begin:remove*/
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
    /*rtl:end:remove*/
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.show > .menu-link {
    transition: color 0.2s ease, background-color 0.2s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.show > .menu-link .menu-title {
    color: #ffffff;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.show > .menu-link .menu-icon,
body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.show > .menu-link .menu-icon .svg-icon,
body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.show > .menu-link .menu-icon i {
    color: #ffffff;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.show > .menu-link .menu-bullet .bullet {
    background-color: #ffffff;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item.show > .menu-link .menu-arrow:after {
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
    /*rtl:begin:remove*/
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
    /*rtl:end:remove*/
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item > .menu-link.active {
    transition: color 0.2s ease, background-color 0.2s ease;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item > .menu-link.active .menu-title {
    color: #ffffff;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item > .menu-link.active .menu-icon,
body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item > .menu-link.active .menu-icon .svg-icon,
body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item > .menu-link.active .menu-icon i {
    color: #F1416C;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item > .menu-link.active .menu-bullet .bullet {
    background-color: #F1416C;
  }
  body:not([data-kt-sticky-header=on]) .header .header-menu .menu > .menu-item > .menu-link.active .menu-arrow:after {
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M2.06463 4.42111C1.96161 4.22088 1.9809 3.9637 2.12863 3.78597L5.12847 0.177181C5.31402 -0.046034 5.63049 -0.060261 5.83532 0.145404C6.04015 0.351069 6.05578 0.698744 5.87023 0.921959L3.19406 4.14137L5.84414 7.06417C6.03896 7.27904 6.03835 7.62686 5.84278 7.84105C5.64721 8.05524 5.33073 8.05469 5.13591 7.83982L2.14806 4.54449C2.1141 4.50704 2.08629 4.46541 2.06463 4.42111Z'/%3e%3c/svg%3e");
    /*rtl:begin:remove*/
    background-repeat: no-repeat;
    background-position: center;
    background-color: transparent;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 9' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M5.93537 4.57889C6.03839 4.77912 6.0191 5.0363 5.87137 5.21403L2.87153 8.82282C2.68598 9.04603 2.36951 9.06026 2.16468 8.8546C1.95985 8.64893 1.94422 8.30126 2.12977 8.07804L4.80594 4.85863L2.15586 1.93583C1.96104 1.72096 1.96165 1.37314 2.15722 1.15895C2.35279 0.944757 2.66927 0.945311 2.86409 1.16018L5.85194 4.45551C5.8859 4.49296 5.91371 4.53459 5.93537 4.57889Z'/%3e%3c/svg%3e");
    /*rtl:end:remove*/
  }
}
@media (max-width: 991.98px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    height: 65px;
    position: relative;
    z-index: 3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header .header-logo .logo-default {
    display: inline-block;
  }
  .header .header-logo .logo-sticky {
    display: none;
  }
  .header-tablet-and-mobile-fixed[data-kt-sticky-header=on] .header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 97;
    height: 65px;
    min-height: 65px;
    background-color: #ffffff;
    box-shadow: 0px 10px 30px 0px rgba(82, 63, 105, 0.08);
    border-bottom: 0;
  }
  .header-tablet-and-mobile-fixed[data-kt-sticky-header=on] .header .header-logo .logo-default {
    display: none;
  }
  .header-tablet-and-mobile-fixed[data-kt-sticky-header=on] .header .header-logo .logo-sticky {
    display: inline-block;
  }
  .header .header-menu {
    display: none;
    z-index: 96;
  }
}
body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom i,
body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom .svg-icon {
  color: #fff;
}
body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom.dropdown-toggle:after {
  color: #fff;
}
.btn-check:checked + body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom, .btn-check:active + body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom, body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom:focus:not(.btn-active), body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom:hover:not(.btn-active), body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom:active:not(.btn-active), body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom.active, body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom.show, .show > body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom {
  background-color: rgba(255, 255, 255, 0.1) !important;
}
.btn-check:checked + body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom i,
.btn-check:checked + body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom .svg-icon, .btn-check:active + body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom i,
.btn-check:active + body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom .svg-icon, body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom:focus:not(.btn-active) i,
body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom:focus:not(.btn-active) .svg-icon, body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom:hover:not(.btn-active) i,
body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom:hover:not(.btn-active) .svg-icon, body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom:active:not(.btn-active) i,
body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom:active:not(.btn-active) .svg-icon, body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom.active i,
body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom.active .svg-icon, body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom.show i,
body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom.show .svg-icon, .show > body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom i,
.show > body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom .svg-icon {
  color: #fff;
}
.btn-check:checked + body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom.dropdown-toggle:after, .btn-check:active + body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom.dropdown-toggle:after, body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom:focus:not(.btn-active).dropdown-toggle:after, body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom:hover:not(.btn-active).dropdown-toggle:after, body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom:active:not(.btn-active).dropdown-toggle:after, body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom.active.dropdown-toggle:after, body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom.show.dropdown-toggle:after, .show > body:not([data-kt-sticky-header=on]) .topbar .btn.btn-custom.dropdown-toggle:after {
  color: #fff;
}
body:not([data-kt-sticky-header=on]) .topbar .active.show > .btn.btn-custom {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.1) !important;
}
body:not([data-kt-sticky-header=on]) .topbar .active.show > .btn.btn-custom i,
body:not([data-kt-sticky-header=on]) .topbar .active.show > .btn.btn-custom .svg-icon {
  color: #ffffff;
}

.toolbar {
  display: flex;
  align-items: center;
}
.toolbar .btn.btn-custom {
  background-color: rgba(255, 255, 255, 0.1);
}

.aside {
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  padding: 0;
}

@media (min-width: 992px) {
  .aside {
    width: 265px;
    transition: width ease;
  }
  .aside .aside-menu {
    width: 265px;
  }

  .aside-enabled[data-kt-sticky-aside-sticky=on] .content {
    padding-left: 295px;
  }
}
@media (max-width: 991.98px) {
  .aside {
    box-shadow: none;
    border-radius: 0;
    display: none;
  }
}
.aside-menu .menu .menu-item .menu-link,
.aside-menu .menu .menu-item .menu-content {
  padding-left: 25px;
  padding-right: 25px;
}
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(0.75rem + 25px);
}
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(1.5rem + 25px);
}
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(2.25rem + 25px);
}
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(3rem + 25px);
}
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: 0.75rem;
  padding-right: 0;
}
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(1.5rem);
  padding-right: 0;
}
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(2.25rem);
  padding-right: 0;
}
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(3rem);
  padding-right: 0;
}
.aside-menu .menu-item {
  padding: 0;
}
.aside-menu .menu-item .menu-title {
  font-weight: 500;
}
.aside-menu .menu-item .menu-link {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.aside-menu .menu-item .menu-icon {
  justify-content: flex-start;
}

@media (min-width: 992px) {
  .content {
    padding: 0;
  }
  .aside-enabled .content {
    padding-left: 30px;
  }
}
@media (max-width: 991.98px) {
  .content {
    padding: 15px 0;
  }
}
@media print {
  .print-content-only {
    padding: 0 !important;
    background: none !important;
  }
  .print-content-only .docs-wrapper,
.print-content-only .docs-page,
.print-content-only .docs-page-title .docs-content,
.print-content-only .container,
.print-content-only .container-fluid,
.print-content-only .container-sm,
.print-content-only .container-md,
.print-content-only .container-lg,
.print-content-only .container-xl,
.print-content-only .container-xxl {
    background: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  .print-content-only .docs-aside, .print-content-only docs- .scrolltop,
.print-content-only .docs-header,
.print-content-only .drawer,
.print-content-only .btn {
    display: none !important;
  }
}
.docs-wrapper {
  background-color: #F5F8FA;
}

@media (min-width: 992px) {
  .container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    padding: 0 30px;
  }

  .docs-wrapper {
    padding-left: 265px;
  }
}
@media (max-width: 991.98px) {
  .container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
    max-width: none;
    padding: 0 15px;
  }
}
@media (min-width: 992px) {
  .docs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
@media (max-width: 991.98px) {
  .docs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .docs-header .docs-page-title[data-kt-swapper=true] {
    display: none !important;
  }
}
.docs-aside {
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 28px 0 rgba(82, 63, 105, 0.025);
  background-color: #ffffff;
  padding: 0;
}

@media (min-width: 992px) {
  .docs-aside {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 101;
    overflow: hidden;
    width: 265px;
  }
  .docs-aside .docs-aside-logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
  }
  .docs-aside .docs-aside-menu {
    width: 265px;
  }
}
@media (max-width: 991.98px) {
  .docs-aside {
    display: none;
  }
  .docs-aside .docs-aside-logo {
    display: none;
  }
}
.docs-aside-menu .menu .menu-item .menu-link,
.docs-aside-menu .menu .menu-item .menu-content {
  padding-left: 25px;
  padding-right: 25px;
}
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(0.75rem + 25px);
}
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(1.5rem + 25px);
}
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(2.25rem + 25px);
}
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(3rem + 25px);
}
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: 0.75rem;
  padding-right: 0;
}
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(1.5rem);
  padding-right: 0;
}
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(2.25rem);
  padding-right: 0;
}
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-item > .menu-link,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-content,
.menu-fit .docs-aside-menu .menu .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-sub:not([data-popper-placement]) > .menu-inner > .menu-item > .menu-link {
  padding-left: calc(3rem);
  padding-right: 0;
}
.docs-aside-menu .menu-item {
  padding: 0;
}
.docs-aside-menu .menu-item .menu-link {
  font-weight: 500;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.docs-aside-menu .menu-item .menu-icon {
  justify-content: flex-start;
}

.card.card-docs {
  background-color: #ffffff;
  border: 0;
}

body:not(.bg-body) {
  background-image: url(data:image/jpeg;base64,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);
  background-repeat: repeat-x;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .sheFont {
  font-family: SheFont, Helvetica, Arial;
  font-weight: 600;
  font-feature-settings: "liga" 1;
}

.bg-blue {
  background-color: #2B3A8D;
}

.text-grad {
  background: rgb(52, 94, 136);
  background: -moz-linear-gradient(90deg, rgb(52, 94, 136) 0%, rgb(91, 217, 245) 50%, rgb(52, 94, 136) 100%);
  background: -webkit-linear-gradient(90deg, rgb(52, 94, 136) 0%, rgb(91, 217, 245) 50%, rgb(52, 94, 136) 100%);
  background: linear-gradient(90deg, rgb(52, 94, 136) 0%, rgb(91, 217, 245) 50%, rgb(52, 94, 136) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#2b3a8d", endColorstr="#2b3a8d", GradientType=1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-grad {
  background: rgb(52, 94, 136);
  background: -moz-linear-gradient(90deg, rgb(52, 94, 136) 0%, rgb(91, 217, 245) 100%);
  background: -webkit-linear-gradient(90deg, rgb(52, 94, 136) 0%, rgb(91, 217, 245) 100%);
  background: linear-gradient(90deg, rgb(52, 94, 136) 0%, rgb(91, 217, 245) 100%);
}

.text-grad-danger {
  background: rgb(187, 45, 59);
  background: -moz-linear-gradient(90deg, rgb(187, 45, 59) 0%, rgb(247, 132, 143) 50%, rgb(187, 45, 59) 100%);
  background: -webkit-linear-gradient(90deg, rgb(187, 45, 59) 0%, rgb(247, 132, 143) 50%, rgb(187, 45, 59) 100%);
  background: linear-gradient(90deg, rgb(187, 45, 59) 0%, rgb(247, 132, 143) 50%, rgb(187, 45, 59) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#bb2d3b", endColorstr="#bb2d3b", GradientType=1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-grad-danger {
  background: rgb(187, 45, 59);
  background: -moz-linear-gradient(90deg, rgb(187, 45, 59) 0%, rgb(247, 132, 143) 100%);
  background: -webkit-linear-gradient(90deg, rgb(187, 45, 59) 0%, rgb(247, 132, 143) 100%);
  background: linear-gradient(90deg, rgb(187, 45, 59) 0%, rgb(247, 132, 143) 100%);
}

.text-grad-success {
  background: #29ffc6;
  background: -moz-linear-gradient(90deg, #29ffc6 0%, #11a37c 50%, #29ffc6 100%);
  background: -webkit-linear-gradient(90deg, #29ffc6 0%, #11a37c 50%, #29ffc6 100%);
  background: linear-gradient(90deg, #29ffc6 0%, #11a37c 50%, #29ffc6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-grad-success {
  background: #29ffc6;
  background: -moz-linear-gradient(90deg, #11a37c 0%, #29ffc6 100%);
  background: -webkit-linear-gradient(90deg, #11a37c 0%, #29ffc6 100%);
  background: linear-gradient(90deg, #11a37c 0%, #29ffc6 100%);
}

.text-grad-rainbow {
  background: #FFFFFF;
  background: -moz-linear-gradient(90deg, #ce55b0, #f34dac 12%, #f48e66 27%, #f0b832 38%, #b2ce37 54%, #63d7af 70%, #1cc2df 84%, #0580e6 94%, #ce55b0);
  background: -webkit-linear-gradient(90deg, #ce55b0, #f34dac 12%, #f48e66 27%, #f0b832 38%, #b2ce37 54%, #63d7af 70%, #1cc2df 84%, #0580e6 94%, #ce55b0);
  background: linear-gradient(90deg, #ce55b0, #f34dac 12%, #f48e66 27%, #f0b832 38%, #b2ce37 54%, #63d7af 70%, #1cc2df 84%, #0580e6 94%, #ce55b0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-grad-rainbow {
  background: #FFFFFF;
  background: -moz-linear-gradient(90deg, #ce55b0, #f34dac 12%, #f48e66 27%, #f0b832 38%, #b2ce37 54%, #63d7af 70%, #1cc2df 84%, #0580e6 94%, #ce55b0);
  background: -webkit-linear-gradient(90deg, #ce55b0, #f34dac 12%, #f48e66 27%, #f0b832 38%, #b2ce37 54%, #63d7af 70%, #1cc2df 84%, #0580e6 94%, #ce55b0);
  background: linear-gradient(90deg, #ce55b0, #f34dac 12%, #f48e66 27%, #f0b832 38%, #b2ce37 54%, #63d7af 70%, #1cc2df 84%, #0580e6 94%, #ce55b0);
}

.text-grad-white {
  background: rgb(255, 255, 255);
  background: -moz-linear-gradient(90deg, rgb(255, 255, 255) 20%, rgb(200, 200, 200) 50%, rgb(255, 255, 255) 80%);
  background: -webkit-linear-gradient(90deg, rgb(255, 255, 255) 20%, rgb(200, 200, 200) 50%, rgb(255, 255, 255) 80%);
  background: linear-gradient(90deg, rgb(255, 255, 255) 20%, rgb(200, 200, 200) 50%, rgb(255, 255, 255) 80%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ffffff", endColorstr="#ffffff", GradientType=1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bg-grad-blueToPink-135 {
  background: rgb(54, 124, 223);
  background: -moz-linear-gradient(146deg, rgb(54, 124, 223) 0%, rgb(205, 92, 169) 100%);
  background: -webkit-linear-gradient(146deg, rgb(54, 124, 223) 0%, rgb(205, 92, 169) 100%);
  background: linear-gradient(146deg, rgb(54, 124, 223) 0%, rgb(205, 92, 169) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#367cdf", endColorstr="#cd5ca9", GradientType=1);
}

.bg-grad-pinkToOrange-135 {
  background: rgb(205, 92, 169);
  background: -moz-linear-gradient(146deg, rgb(205, 92, 169) 0%, rgb(231, 168, 90) 100%);
  background: -webkit-linear-gradient(146deg, rgb(205, 92, 169) 0%, rgb(231, 168, 90) 100%);
  background: linear-gradient(146deg, rgb(205, 92, 169) 0%, rgb(231, 168, 90) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#cd5ca9", endColorstr="#e7a85a", GradientType=1);
}

.bg-grad-greenToBlue-135 {
  background: rgb(146, 211, 145);
  background: -moz-linear-gradient(146deg, rgb(146, 211, 145) 0%, rgb(67, 147, 222) 100%);
  background: -webkit-linear-gradient(146deg, rgb(146, 211, 145) 0%, rgb(67, 147, 222) 100%);
  background: linear-gradient(146deg, rgb(146, 211, 145) 0%, rgb(67, 147, 222) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#92d391", endColorstr="#4393de", GradientType=1);
}

.bg-grad-greenToAzur-135 {
  background: rgb(180, 204, 80);
  background: -moz-linear-gradient(146deg, rgb(180, 204, 80) 0%, rgb(102, 198, 204) 100%);
  background: -webkit-linear-gradient(146deg, rgb(180, 204, 80) 0%, rgb(102, 198, 204) 100%);
  background: linear-gradient(146deg, rgb(180, 204, 80) 0%, rgb(102, 198, 204) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b4cc50", endColorstr="#66c6cc", GradientType=1);
}

.bg-illu-cloud {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAABwgAAAH0CAYAAAApE3neAAAAAXNSR0IArs4c6QAAAAlwSFlzAAAOxAAADsQBlSsOGwAABHFpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0n77u/JyBpZD0nVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkJz8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0nYWRvYmU6bnM6bWV0YS8nPgo8cmRmOlJERiB4bWxuczpyZGY9J2h0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMnPgoKIDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PScnCiAgeG1sbnM6QXR0cmliPSdodHRwOi8vbnMuYXR0cmlidXRpb24uY29tL2Fkcy8xLjAvJz4KICA8QXR0cmliOkFkcz4KICAgPHJkZjpTZXE+CiAgICA8cmRmOmxpIHJkZjpwYXJzZVR5cGU9J1Jlc291cmNlJz4KICAgICA8QXR0cmliOkNyZWF0ZWQ+MjAyMi0wNy0wNzwvQXR0cmliOkNyZWF0ZWQ+CiAgICAgPEF0dHJpYjpFeHRJZD41YjE2ZmRkYS0yOGY3LTQ5NWUtYmRhMi1mMWI2OTAyZmQ0YTA8L0F0dHJpYjpFeHRJZD4KICAgICA8QXR0cmliOkZiSWQ+NTI1MjY1OTE0MTc5NTgwPC9BdHRyaWI6RmJJZD4KICAgICA8QXR0cmliOlRvdWNoVHlwZT4yPC9BdHRyaWI6VG91Y2hUeXBlPgogICAgPC9yZGY6bGk+CiAgIDwvcmRmOlNlcT4KICA8L0F0dHJpYjpBZHM+CiA8L3JkZjpEZXNjcmlwdGlvbj4KCiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0nJwogIHhtbG5zOmRjPSdodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyc+CiAgPGRjOnRpdGxlPgogICA8cmRmOkFsdD4KICAgIDxyZGY6bGkgeG1sOmxhbmc9J3gtZGVmYXVsdCc+U0hFX0ZPTkQgSE9NRTwvcmRmOmxpPgogICA8L3JkZjpBbHQ+CiAgPC9kYzp0aXRsZT4KIDwvcmRmOkRlc2NyaXB0aW9uPgoKIDxyZGY6RGVz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);
}

.text-shadow {
  text-shadow: 1px 1px 2px rgb(150, 150, 150);
}

.box-shadow {
  box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.3);
}

.text-bold-400 {
  font-weight: 400;
}

.text-bold-700 {
  font-weight: 700;
}

.text-bold-900 {
  font-weight: 900;
}

.file-upload {
  display: block;
  text-align: center;
  font-size: 12px;
}

.show-on-sidebare-only {
  display: none;
}

.drawer-on .show-on-sidebare-only {
  display: block;
}

.drawer.drawer-on {
  background: rgb(213, 234, 247);
  background: -moz-linear-gradient(180deg, rgb(213, 234, 247) 60%, rgb(32, 188, 239) 100%);
  background: -webkit-linear-gradient(180deg, rgb(213, 234, 247) 60%, rgb(32, 188, 239) 100%);
  background: linear-gradient(180deg, rgb(213, 234, 247) 60%, rgb(32, 188, 239) 100%);
  -webkit-box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
  box-shadow: -10px 0 20px -10px rgba(0, 0, 0, 0.1);
}
.drawer.drawer-on a.menu-link {
  font-weight: bold;
  color: #0b0e18;
}

.file-upload .file-select {
  display: block;
  border: 1px solid #0086ce;
  border-radius: 5px;
  color: #0086ce;
  cursor: pointer;
  height: 40px;
  line-height: 40px;
  text-align: left;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
}

.file-upload .file-select .file-select-button {
  background: #dce4ec;
  padding-left: 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  width: 37px;
  vertical-align: top;
}

.file-upload .file-select .file-select-name {
  line-height: 40px;
  height: 40px;
  display: inline-block;
  padding: 0 10px;
  width: calc(100% - 41px);
  overflow: hidden;
  text-overflow: ellipsis;
}

.file-upload .file-select:hover {
  border-color: #0086ce;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.file-upload .file-select:hover .file-select-button {
  background: #0086ce;
  color: #FFFFFF;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.file-upload.active .file-select {
  border-color: #0086ce;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.file-upload.active .file-select .file-select-button {
  background: #0086ce;
  color: #FFFFFF;
  transition: all 0.2s ease-in-out;
  -moz-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
}

.file-upload .file-select input[type=file] {
  z-index: 100;
  cursor: pointer;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  filter: alpha(opacity=0);
}

.file-upload .file-select.file-select-disabled {
  opacity: 0.65;
}

.file-upload .file-select.file-select-disabled:hover {
  cursor: default;
  display: block;
  border: 2px solid #dce4ec;
  color: #34495e;
  height: 40px;
  line-height: 40px;
  margin-top: 5px;
  text-align: left;
  background: #FFFFFF;
  overflow: hidden;
  position: relative;
}

.file-upload .file-select.file-select-disabled:hover .file-select-button {
  background: #dce4ec;
  color: #666666;
  padding: 0 10px;
  display: inline-block;
  height: 40px;
  line-height: 40px;
}

.file-upload .file-select.file-select-disabled:hover .file-select-name {
  line-height: 40px;
  display: inline-block;
  padding: 0 10px;
}

.badge-user-ref {
  color: #2698d5;
  border-radius: 5px;
  border: 2px solid #2698d5;
  padding: 10px;
  background: #FFFFFF;
  letter-spacing: 1px;
  font-size: 14px;
  font-family: "Courier New", Courier, monospace;
}
.badge-user-ref span {
  letter-spacing: normal;
  font-weight: 100;
}

.user-optimisation {
  display: block;
  width: 260px;
  text-align: center;
  margin: 0 auto;
}
.user-optimisation .title {
  color: #FFF;
  text-transform: uppercase;
  font-size: 12px;
  display: inline-flex;
  margin-bottom: 15px;
}
.user-optimisation .steper {
  list-style: none;
  display: flex;
  padding: 0;
}
.user-optimisation .steper li {
  display: inline-block;
  list-style: none;
  width: 50px;
  height: 10px;
  margin-right: 5px;
  position: relative;
}
.user-optimisation .steper li:nth-child(1) {
  background: #CCECFE;
}
.user-optimisation .steper li:nth-child(2) {
  background: #BFE7FD;
}
.user-optimisation .steper li:nth-child(3) {
  background: #7FCEFB;
}
.user-optimisation .steper li:nth-child(4) {
  background: #40B6F9;
}
.user-optimisation .steper li:nth-child(5) {
  background: #009EF7;
  margin-right: 0;
}
.user-optimisation .steper li.passed:before {
  content: "\f058";
  font-family: "Font Awesome 6 Pro";
  font-weight: 300;
  color: #0086ce;
  background: #FFFFFF;
  font-size: 20px;
  height: 30px;
  width: 30px;
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 10px;
}

/*Shape*/
.pricingtable {
  width: 33.33%;
  background: white;
  margin: 5px 0;
  float: left;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -webkit-box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.3);
  box-shadow: 2px 2px 9px rgba(0, 0, 0, 0.3);
  /*Top Bar*/
  /*Features*/
  /*Dividing Line*/
  /*Price*/
  /*Button*/
  /*Scaled Version*/
}
.pricingtable.solo {
  float: none !important;
  margin: 5px auto !important;
  padding-bottom: 20px;
}
.pricingtable .top {
  width: 100%;
  height: 90px;
  padding: 20px 0;
  background: #2B3A8D;
  -webkit-border-radius: 10px 10px 0 0;
  -moz-border-radius: 10px 10px 0 0;
  border-radius: 10px 10px 0 0;
}
.pricingtable .top h2, .pricingtable .top .h2 {
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  line-height: 50px;
  font-size: 24px;
}
.pricingtable ul {
  list-style-type: none;
  font-size: 14px;
  margin: 20px 10px 0 10px;
  padding: 0;
}
.pricingtable ul li {
  text-align: center;
  font-weight: 400;
}
.pricingtable hr {
  border: 0;
  background-color: #BCBEC0;
  color: #BCBEC0;
  height: 1px;
  width: 100%;
  margin: 20px 0 0 30px;
}
.pricingtable h1, .pricingtable .h1 {
  text-align: center;
  font-weight: 900;
  font-size: 50px;
  margin: 20px 0 0 0;
  color: #2698d5;
}
.pricingtable h1 sup, .pricingtable .h1 sup {
  font-size: 35px;
}
.pricingtable p {
  text-align: center;
  font: 500 14px/1 Helvetica, Verdana, sans-serif;
  color: #BCBEC0;
}
.pricingtable a {
  display: block;
  height: 40px;
  width: 150px;
  color: #fff;
  margin: 25px 0 0 50px;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  font: 500 16px/40px Helvetica, Verdana, sans-serif;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  /*Gradient*/
  background: #9dcc55;
  /* Old browsers */
  background: -moz-linear-gradient(top, #9dcc55 0%, #96c23d 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #9dcc55), color-stop(100%, #96c23d));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #9dcc55 0%, #96c23d 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #9dcc55 0%, #96c23d 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #9dcc55 0%, #96c23d 100%);
  /* IE10+ */
  background: linear-gradient(top, #9dcc55 0%, #96c23d 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#9dcc55", endColorstr="#96c23d", GradientType=0);
  /* IE6-9 */
}
.pricingtable a:hover {
  background: #b2e560;
  /* Old browsers */
  background: -moz-linear-gradient(top, #b2e560 0%, #96c23d 100%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b2e560), color-stop(100%, #96c23d));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #b2e560 0%, #96c23d 100%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #b2e560 0%, #96c23d 100%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #b2e560 0%, #96c23d 100%);
  /* IE10+ */
  background: linear-gradient(top, #b2e560 0%, #96c23d 100%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b2e560", endColorstr="#96c23d", GradientType=0);
  /* IE6-9 */
}
.pricingtable.featured-1 {
  -webkit-transform: scale(1.01, 1.1);
  -moz-transform: scale(1.01, 1.1);
  -o-transform: scale(1.01, 1.1);
  -ms-transform: scale(1.01, 1.1);
  transform: scale(1.01, 1.1);
}
.pricingtable.featured-2 {
  -webkit-transform: scale(1.02, 1.2);
  -moz-transform: scale(1.02, 1.2);
  -o-transform: scale(1.02, 1.2);
  -ms-transform: scale(1.02, 1.2);
  transform: scale(1.02, 1.2);
}

.qty {
  text-align: center;
  /* Firefox */
}
.qty .count {
  color: #2698d5;
  display: inline-block;
  vertical-align: top;
  font-size: 25px;
  font-weight: 700;
  line-height: 30px;
  padding: 0 2px;
  min-width: 35px;
  text-align: center;
}
.qty .plus {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  color: white;
  width: 30px;
  height: 30px;
  font: 30px/1 Arial, sans-serif;
  text-align: center;
  border-radius: 5px;
  background: #2698d5;
}
.qty .minus {
  cursor: pointer;
  display: inline-block;
  vertical-align: top;
  color: white;
  width: 30px;
  height: 30px;
  font: 30px/1 Arial, sans-serif;
  text-align: center;
  border-radius: 5px;
  background-clip: padding-box;
  background: #2698d5;
}
.qty .minus:hover {
  background-color: #31d2f2 !important;
}
.qty .plus:hover {
  background-color: #31d2f2 !important;
}
.qty input {
  border: 0;
  width: 100px;
}
.qty input[type=number] {
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button,
.qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.qty input:disabled {
  background-color: white;
}

.space-text {
  background: #e8e8e8;
  border-radius: 10px;
  display: inline-block;
  height: 15px;
  min-width: 100px;
  margin-right: 5px;
}

.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  position: relative;
  height: 0;
}

.video-responsive iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}

@media (max-width: 560px) {
  .video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
  }

  .video-responsive iframe {
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    position: absolute;
  }
}
.social_angels_schema {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAA4QAAAMKCAYAAADd9IqTAAAACXBIWXMAAC4jAAAuIwF4pT92AAAa+mlUWHRYTUw6Y29tLmFkb2JlLnhtcAAAAAAAPD94cGFja2V0IGJlZ2luPSLvu78iIGlkPSJXNU0wTXBDZWhpSHpyZVN6TlRjemtjOWQiPz4gPHg6eG1wbWV0YSB4bWxuczp4PSJhZG9iZTpuczptZXRhLyIgeDp4bXB0az0iQWRvYmUgWE1QIENvcmUgNy4xLWMwMDAgNzkuZWRhMmIzZmFjLCAyMDIxLzExLzE3LTE3OjIzOjE5ICAgICAgICAiPiA8cmRmOlJERiB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiPiA8cmRmOkRlc2NyaXB0aW9uIHJkZjphYm91dD0iIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtbG5zOnhtcE1NPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvbW0vIiB4bWxuczpzdFJlZj0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL3NUeXBlL1Jlc291cmNlUmVmIyIgeG1sbnM6c3RFdnQ9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZUV2ZW50IyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczpwZGY9Imh0dHA6Ly9ucy5hZG9iZS5jb20vcGRmLzEuMy8iIHhtbG5zOkV4dGVuc2lzRm9udFNlbnNlPSJodHRwOi8vd3d3LmV4dGVuc2lzLmNvbS9tZXRhL0ZvbnRTZW5zZS8iIHhtbG5zOnBob3Rvc2hvcD0iaHR0cDovL25zLmFkb2JlLmNvbS9waG90b3Nob3AvMS4wLyIgeG1wOkNyZWF0ZURhdGU9IjIwMjEtMTItMDhUMTk6Mzg6MDgrMDE6MDAiIHhtcDpNZXRhZGF0YURhdGU9IjIwMjItMDQtMDVUMTY6MjY6MjQrMDI6MDAiIHhtcDpNb2RpZnlEYXRlPSIyMDIyLTA0LTA1VDE2OjI2OjI0KzAyOjAwIiB4bXA6Q3JlYXRvclRvb2w9IkFkb2JlIEluRGVzaWduIDE3LjAgKE1hY2ludG9zaCkiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6YzIxNmU1Y2QtMzg5Ny00Y2JhLTlmNWItNzJmMmEwNTBmYTRlIiB4bXBNTTpPcmlnaW5hbERvY3VtZW50SUQ9InhtcC5kaWQ6Rjk3RjExNzQwNzIwNjgxMTkyQjBFRTY4QTk2ODAyMzMiIHhtcE1NOkRvY3VtZW50SUQ9ImFkb2JlOmRvY2lkOnBob3Rvc2hvcDo5N2Y5NzU0ZC0xMWMxLTM0NDEtYjQ0Yi0wZTYyNzhlYzRmOGIiIHhtcE1NOlJlbmRpdGlvbkNsYXNzPSJwcm9vZjpwZGYiIGRjOmZvcm1hdD0iaW1hZ2UvcG5nIiBwZGY6UHJvZHVjZXI9IkFkb2JlIFBERiBMaWJyYXJ5IDE2LjAuMyIgcGRmOlRyYXBwZWQ9IkZhbHNlIiBwaG90b3Nob3A6Q29sb3JNb2RlPSIzIj4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6ZTcyZDk5OGEtNjUzMi00YzZiLWJmZjctMTcyZjI2MzA4ZmIwIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOmU3MmQ5OThhLTY1MzItNGM2Yi1iZmY3LTE3MmYyNjMwOGZiMCIgc3RSZWY6b3JpZ2luYWxEb2N1bWVudElEPSJ4bXAuZGlkOkY5N0YxMTc0MDcyMDY4MTE5MkIwRUU2OEE5NjgwMjMzIiBzdFJlZjpyZW5kaXRpb25DbGFzcz0icHJvb2Y6cGRmIi8+IDx4bXBNTTpIaXN0b3J5PiA8cmRmOlNlcT4gPHJkZjpsaSBzdEV2dDphY3Rpb249ImNvbnZlcnRlZCIgc3RFdnQ6cGFyYW1ldGVycz0iZnJvbSBhcHBsaWNhdGlvbi94LWluZGVzaWduIHRvIGFwcGxpY2F0aW9uL3BkZiIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgSW5EZXNpZ24gMTcuMCAoTWFjaW50b3NoKSIgc3RFdnQ6Y2hhbmdlZD0iLyIgc3RFdnQ6d2hlbj0iMjAyMS0xMi0wOFQxOTozODowOCswMTowMCIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iY29udmVydGVkIiBzdEV2dDpwYXJhbWV0ZXJzPSJmcm9tIGFwcGxpY2F0aW9uL3BkZiB0byBhcHBsaWNhdGlvbi92bmQuYWRvYmUucGhvdG9zaG9wIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJzYXZlZCIgc3RFdnQ6aW5zdGFuY2VJRD0ieG1wLmlpZDplNzJkOTk4YS02NTMyLTRjNmItYmZmNy0xNzJmMjYzMDhmYjAiIHN0RXZ0OndoZW49IjIwMjItMDQtMDVUMTY6MjY6MjQrMDI6MDAiIHN0RXZ0OnNvZnR3YXJlQWdlbnQ9IkFkb2JlIFBob3Rvc2hvcCAyMy4xIChNYWNpbnRvc2gpIiBzdEV2dDpjaGFuZ2VkPSIvIi8+IDxyZGY6bGkgc3RFdnQ6YWN0aW9uPSJjb252ZXJ0ZWQiIHN0RXZ0OnBhcmFtZXRlcnM9ImZyb20gYXBwbGljYXRpb24vcGRmIHRvIGltYWdlL3BuZyIvPiA8cmRmOmxpIHN0RXZ0OmFjdGlvbj0iZGVyaXZlZCIgc3RFdnQ6cGFyYW1ldGVycz0iY29udmVydGVkIGZyb20gYXBwbGljYXRpb24vdm5kLmFkb2JlLnBob3Rvc2hvcCB0byBpbWFnZS9wbmciLz4gPHJkZjpsaSBzdEV2dDphY3Rpb249InNhdmVkIiBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOmMyMTZlNWNkLTM4OTctNGNiYS05ZjViLTcyZjJhMDUwZmE0ZSIgc3RFdnQ6d2hlbj0iMjAyMi0wNC0wNVQxNjoyNjoyNCswMjowMCIgc3RFdnQ6c29mdHdhcmVBZ2VudD0iQWRvYmUgUGhvdG9zaG9wIDIzLjEgKE1hY2ludG9zaCkiIHN0RXZ0OmNoYW5nZWQ9Ii8iLz4gPC9yZGY6U2VxPiA8L3htcE1NOkhpc3Rvcnk+IDxFeHRlbnNpc0ZvbnRTZW5zZTpzbHVnPiA8cmRmOkJhZz4gPHJkZjpsaSBFeHRlbnNpc0ZvbnRTZW5zZTpDaGVja3N1bT0iMjE2OTYxMTYwMyIgRXh0ZW5zaXNGb250U2Vuc2U6UG9zdFNjcmlwdE5hbWU9IkFyaWFsTVQiIEV4dGVuc2lzRm9udFNlbnNlOkZvdW5kcnk9Ik1vbm90eXBlIFR5cG9ncmFwaHkiIEV4dGVuc2lzRm9udFNlbnNlOlZlcnNpb249IjUuMDEuMiIgRXh0ZW5zaXNGb250U2Vuc2U6T3V0bGluZUZpbGVTaXplPSIwIiBFeHRlbnNpc0ZvbnRTZW5zZTpGYW1pbHk9IkFyaWFsIiBFeHRlbnNpc0ZvbnRTZW5zZTpGb250U2Vuc2VfMS4yX0NoZWNrc3VtPSIyMTY5NjExNjAzIiBFeHRlbnNpc0ZvbnRTZW5zZTpGb250S2luZD0iT3BlblR5cGUgLSBUVCIgRXh0ZW5zaXNGb250U2Vuc2U6S2VybmluZ0NoZWNrc3VtPSIwIi8+IDxyZGY6bGkgRXh0ZW5zaXNGb250U2Vuc2U6Q2hlY2tzdW09IjE1NTIyNjEyNzEiIEV4dGVuc2lzRm9udFNlbnNlOlBvc3RTY3JpcHROYW1lPSJBcmlhbC1Cb2xkTVQiIEV4dGVuc2lzRm9udFNlbnNlOkZvdW5kcnk9Ik1vbm90eXBlIFR5cG9ncmFwaHkiIEV4dGVuc2lzRm9udFNlbnNlOlZlcnNpb249IjUuMDEuMiIgRXh0ZW5zaXNGb250U2Vuc2U6T3V0bGluZUZpbGVTaXplPSIwIiBFeHRlbnNpc0ZvbnRTZW5zZTpGYW1pbHk9IkFyaWFsIiBFeHRlbnNpc0ZvbnRTZW5zZTpGb250U2Vuc2VfMS4yX0NoZWNrc3VtPSIxNTUyMjYxMjcxIiBFeHRlbnNpc0ZvbnRTZW5zZTpGb250S2luZD0iT3BlblR5cGUgLSBUVCIgRXh0ZW5zaXNGb250U2Vuc2U6S2VybmluZ0NoZWNrc3VtPSIwIi8+IDxyZGY6bGkgRXh0ZW5zaXNGb250U2Vuc2U6Q2hlY2tzdW09IjM0NzI3MzY0MzkiIEV4dGVuc2lzRm9udFNlbnNlOlBvc3RTY3JpcHROYW1lPSJBcmlhbC1JdGFsaWNNVCIgRXh0ZW5zaXNGb250U2Vuc2U6Rm91bmRyeT0iTW9ub3R5cGUgVHlwb2dyYXBoeSIgRXh0ZW5zaXNGb250U2Vuc2U6VmVyc2lvbj0iNS4wNiIgRXh0ZW5zaXNGb250U2Vuc2U6T3V0bGluZUZpbGVTaXplPSIwIiBFeHRlbnNpc0ZvbnRTZW5zZTpGYW1pbHk9IkFyaWFsIiBFeHRlbnNpc0ZvbnRTZW5zZTpGb250U2Vuc2VfMS4yX0NoZWNrc3VtPSIzNDcyNzM2NDM5IiBFeHRlbnNpc0ZvbnRTZW5zZTpGb250S2luZD0iT3BlblR5cGUgLSBUVCIgRXh0ZW5zaXNGb250U2Vuc2U6S2VybmluZ0NoZWNrc3VtPSIwIi8+IDxyZGY6bGkgRXh0ZW5zaXNGb250U2Vuc2U6Q2hlY2tzdW09IjM3MzQ3NjUwNzQiIEV4dGVuc2lzRm9udFNlbnNlOlBvc3RTY3JpcHROYW1lPSJaYXBmRGluZ2JhdHNJVEMiIEV4dGVuc2lzRm9udFNlbnNlOkZvdW5kcnk9IkdhbGFwYWdvcyBEZXNpZ24gR3JvdXAiIEV4dGVuc2lzRm9udFNlbnNlOlZlcnNpb249IjYuMSIgRXh0ZW5zaXNGb250U2Vuc2U6T3V0bGluZUZpbGVTaXplPSIwIiBFeHRlbnNpc0ZvbnRTZW5zZTpGYW1pbHk9IlphcGYgRGluZ2JhdHMiIEV4dGVuc2lzRm9udFNlbnNlOkZvbnRTZW5zZV8xLjJfQ2hlY2tzdW09IjM3MzQ3NjUwNzQiIEV4dGVuc2lzRm9udFNlbnNlOkZvbnRLaW5kPSJUcnVlVHlwZSIgRXh0ZW5zaXNGb250U2Vuc2U6S2VybmluZ0NoZWNrc3VtPSIwIi8+IDxyZGY6bGkgRXh0ZW5zaXNGb250U2Vuc2U6Q2hlY2tzdW09Ijk5MDM5NzM5NyIgRXh0ZW5zaXNGb250U2Vuc2U6UG9zdFNjcmlwdE5hbWU9IkFyaWFsTmFycm93IiBFeHRlbnNpc0ZvbnRTZW5zZTpGb3VuZHJ5PSJNb25vdHlwZSBUeXBvZ3JhcGh5IiBFeHRlbnNpc0ZvbnRTZW5zZTpWZXJzaW9uPSIyLjM4LjEiIEV4dGVuc2lzRm9udFNlbnNlOk91dGxpbmVGaWxlU2l6ZT0iMCIgRXh0ZW5zaXNGb250U2Vuc2U6RmFtaWx5PSJBcmlhbCBOYXJyb3ciIEV4dGVuc2lzRm9udFNlbnNlOkZvbnRTZW5zZV8xLjJfQ2hlY2tzdW09Ijk5MDM5NzM5NyIgRXh0ZW5zaXNGb250U2Vuc2U6Rm9udEtpbmQ9Ik9wZW5UeXBlIC0gVFQiIEV4dGVuc2lzRm9udFNlbnNlOktlcm5pbmdDaGVja3N1bT0iMCIvPiA8cmRmOmxpIEV4dGVuc2lzRm9udFNlbnNlOkNoZWNrc3VtPSIzOTgyNDM0NjQiIEV4dGVuc2lzRm9udFNlbnNlOlBvc3RTY3JpcHROYW1lPSJBcmlhbE5hcnJvdy1Cb2xkIiBFeHRlbnNpc0ZvbnRTZW5zZTpGb3VuZHJ5PSJNb25vdHlwZSBUeXBvZ3JhcGh5IiBFeHRlbnNpc0ZvbnRTZW5zZTpWZXJzaW9uPSIyLjM4LjEiIEV4dGVuc2lzRm9udFNlbnNlOk91dGxpbmVGaWxlU2l6ZT0iMCIgRXh0ZW5zaXNGb250U2Vuc2U6RmFtaWx5PSJBcmlhbCBOYXJyb3ciIEV4dGVuc2lzRm9udFNlbnNlOkZvbnRTZW5zZV8xLjJfQ2hlY2tzdW09IjM5ODI0MzQ2NCIgRXh0ZW5zaXNGb250U2Vuc2U6Rm9udEtpbmQ9Ik9wZW5UeXBlIC0gVFQiIEV4dGVuc2lzRm9udFNlbnNlOktlcm5pbmdDaGVja3N1bT0iMCIvPiA8cmRmOmxpIEV4dGVuc2lzRm9udFNlbnNlOkNoZWNrc3VtPSIyMzc4MzMxNzEwIiBFeHRlbnNpc0ZvbnRTZW5zZTpQb3N0U2NyaXB0TmFtZT0iV2luZ2RpbmdzLVJlZ3VsYXIiIEV4dGVuc2lzRm9udFNlbnNlOkZvdW5kcnk9Ik1pY3Jvc29mdCIgRXh0ZW5zaXNGb250U2Vuc2U6VmVyc2lvbj0iNS4wMyIgRXh0ZW5zaXNGb250U2Vuc2U6T3V0bGluZUZpbGVTaXplPSIwIiBFeHRlbnNpc0ZvbnRTZW5zZTpGYW1pbHk9IldpbmdkaW5ncyIgRXh0ZW5zaXNGb250U2Vuc2U6Rm9udFNlbnNlXzEuMl9DaGVja3N1bT0iMjM3ODMzMTcxMCIgRXh0ZW5zaXNGb250U2Vuc2U6Rm9udEtpbmQ9Ik9wZW5UeXBlIC0gVFQiIEV4dGVuc2lzRm9udFNlbnNlOktlcm5pbmdDaGVja3N1bT0iMCIvPiA8cmRmOmxpIEV4dGVuc2lzRm9udFNlbnNlOkNoZWNrc3VtPSIyMTY4ODk2NjU1IiBFeHRlbnNpc0ZvbnRTZW5zZTpQb3N0U2NyaXB0TmFtZT0iTWluaW9uUHJvLVJlZ3VsYXIiIEV4dGVuc2lzRm9udFNlbnNlOkZvdW5kcnk9IkFkb2JlIFN5c3RlbXMiIEV4dGVuc2lzRm9udFNlbnNlOlZlcnNpb249IjIuMTEyIiBFeHRlbnNpc0ZvbnRTZW5zZTpPdXRsaW5lRmlsZVNpemU9IjAiIEV4dGVuc2lzRm9udFNlbnNlOkZhbWlseT0iTWluaW9uIFBybyIgRXh0ZW5zaXNGb250U2Vuc2U6Rm9udFNlbnNlXzEuMl9DaGVja3N1bT0iMjE2ODg5NjY1NSIgRXh0ZW5zaXNGb250U2Vuc2U6Rm9udEtpbmQ9Ik9wZW5UeXBlIC0gUFMiIEV4dGVuc2lzRm9udFNlbnNlOktlcm5pbmdDaGVja3N1bT0iMCIvPiA8cmRmOmxpIEV4dGVuc2lzRm9udFNlbnNlOkNoZWNrc3VtPSIzMDEyNjYwMzYiIEV4dGVuc2lzRm9udFNlbnNlOlBvc3RTY3JpcHROYW1lPSJDb3VyaWVyU2Fucy1SZWd1bGFyIiBFeHRlbnNpc0ZvbnRTZW5zZTpGb3VuZHJ5PSJGb250b2dyYXBoZXIiIEV4dGVuc2lzRm9udFNlbnNlOlZlcnNpb249IjAwMS4wMDAiIEV4dGVuc2lzRm9udFNlbnNlOk91dGxpbmVGaWxlU2l6ZT0iMzgzNTciIEV4dGVuc2lzRm9udFNlbnNlOkZhbWlseT0iQ291cmllclNhbnMtUmVndWxhciIgRXh0ZW5zaXNGb250U2Vuc2U6Rm9udFNlbnNlXzEuMl9DaGVja3N1bT0iMzAxMjY2MDM2IiBFeHRlbnNpc0ZvbnRTZW5zZTpGb250S2luZD0iUG9zdFNjcmlwdCIgRXh0ZW5zaXNGb250U2Vuc2U6S2VybmluZ0NoZWNrc3VtPSIyNDkyOTgiLz4gPHJkZjpsaSBFeHRlbnNpc0ZvbnRTZW5zZTpDaGVja3N1bT0iMTE2OTc2MjQzMiIgRXh0ZW5zaXNGb250U2Vuc2U6UG9zdFNjcmlwdE5hbWU9IkRJTi1CbGFjayIgRXh0ZW5zaXNGb250U2Vuc2U6Rm91bmRyeT0iRm9udCBTaG9wIEludGVybmF0aW9uYWwiIEV4dGVuc2lzRm9udFNlbnNlOlZlcnNpb249IjAwMS4wMDAiIEV4dGVuc2lzRm9udFNlbnNlOk91dGxpbmVGaWxlU2l6ZT0iMzQ5MjciIEV4dGVuc2lzRm9udFNlbnNlOkZhbWlseT0iRElOIiBFeHRlbnNpc0ZvbnRTZW5zZTpGb250U2Vuc2VfMS4yX0NoZWNrc3VtPSIxMTY5NzYyNDMyIiBFeHRlbnNpc0ZvbnRTZW5zZTpGb250S2luZD0iUG9zdFNjcmlwdCIgRXh0ZW5zaXNGb250U2Vuc2U6S2VybmluZ0NoZWNrc3VtPSI0MzMzMzciLz4gPHJkZjpsaSBFeHRlbnNpc0ZvbnRTZW5zZTpDaGVja3N1bT0iMzcyMDMyODYxOSIgRXh0ZW5zaXNGb250U2Vuc2U6UG9zdFNjcmlwdE5hbWU9IkRJTi1Cb2xkIiBFeHRlbnNpc0ZvbnRTZW5zZTpGb3VuZHJ5PSJGb250IFNob3AgSW50ZXJuYXRpb25hbCIgRXh0ZW5zaXNGb250U2Vuc2U6VmVyc2lvbj0iMDAxLjAwMCIgRXh0ZW5zaXNGb250U2Vuc2U6T3V0bGluZUZpbGVTaXplPSIzNDg2NSIgRXh0ZW5zaXNGb250U2Vuc2U6RmFtaWx5PSJESU4iIEV4dGVuc2lzRm9udFNlbnNlOkZvbnRTZW5zZV8xLjJfQ2hlY2tzdW09IjM3MjAzMjg2MTkiIEV4dGVuc2lzRm9udFNlbnNlOkZvbnRLaW5kPSJQb3N0U2NyaXB0IiBFeHRlbnNpc0ZvbnRTZW5zZTpLZXJuaW5nQ2hlY2tzdW09IjQ5MjIxOSIvPiA8L3JkZjpCYWc+IDwvRXh0ZW5zaXNGb250U2Vuc2U6c2x1Zz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz6wEHvrAAJpBElEQVR42uzddXhb593G8a/ITGFmbqiUMiVlZqata7cyt+vatSszrN3K69p1xfUtMzMlKTdN0zBz4pgtOu8fz6NYlmXHIMmSfX+uSzmSIsvyYx3r3Of3gMtxHERERERERKTzcasJREREREREFAhFREREREREgVBEREREREQ6Om/sHa4HZqhVREQknWQDe9ltCPBgTmh67XWfve6NuR59O/I1kc++tcA6e18Q8NttDVAddakEyoBaoMJeNPheRETSU1mQfccU8MZePSirDhHGhcvlInreGJfL1XQgFBERScNA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);
  width: 900px;
  height: 778px;
  margin: 0 auto;
  position: relative;
}
.social_angels_schema .blocText {
  position: absolute;
}
.social_angels_schema .bloc01 {
  top: 290px;
  left: 280px;
  font-weight: 100;
  width: 340px;
  text-align: center;
}
.social_angels_schema .bloc02 {
  top: 400px;
  left: -180px;
  font-weight: 100;
  width: 180px;
  text-align: left;
}
.social_angels_schema .bloc03 {
  top: 400px;
  left: 910px;
  font-weight: 100;
  width: 180px;
  text-align: left;
}
.social_angels_schema .bloc04 {
  top: 770px;
  left: 320px;
  font-weight: 100;
  width: 270px;
  text-align: left;
}

body {
  counter-reset: numeroteur;
}
body .box-dashed {
  counter-increment: numeroteur;
}
body .box-dashed .numerotation:after {
  content: counter(numeroteur);
}

#kt_landing_menu_toggle.btn-icon .fa-2x {
  font-size: 2.5rem !important;
}

.form-check .form-check:first-child {
  padding: 0;
}

.margin-n30 {
  margin-left: -30px;
  margin-right: -30px;
}

#menu-user-profile {
  width: 100%;
  border-top: 5px solid #F5F8FA;
  padding: 0;
  margin-top: 20px;
}
#menu-user-profile ul {
  margin: 0 auto;
  padding: 0;
  height: 50px;
  font-size: 0px;
}
#menu-user-profile ul:hover li {
  width: 8.75%;
}
#menu-user-profile ul.shortize:hover li {
  width: 11.9047619048%;
}
#menu-user-profile ul.shortize li {
  width: 14.2857142857%;
}
#menu-user-profile ul.shortize li:hover {
  width: 28.5714285714%;
}
#menu-user-profile ul li {
  display: inline-block;
  float: left;
  width: 10%;
  -moz-transition: all 0.1s;
  -o-transition: all 0.1s;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
  text-align: center;
  border-right: 5px solid #F5F8FA;
  position: relative;
}
#menu-user-profile ul li:after {
  background: linear-gradient(90deg, #ce55b0, #f34dac 17%, #f48e66 32%, #f0b832 43%, #b2ce37 59%, #63d7af 75%, #1cc2df 89%, #0580e6);
  height: 2px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
}
#menu-user-profile ul li:last-child {
  border-right: none;
  border-radius: 0px 0px 0.625rem 0px;
  overflow: hidden;
}
#menu-user-profile ul li:first-child {
  border-left: none;
  border-radius: 0px 0px 0px 0.625rem;
  overflow: hidden;
}
#menu-user-profile ul li:hover {
  background: rgb(43, 58, 141);
  width: 20%;
  box-shadow: inset 10px 10px 10px -10px rgba(77, 170, 221, 0.3), inset -10px 10px 10px -10px rgba(77, 170, 221, 0.3);
  color: #FFF;
}
#menu-user-profile ul li:hover a {
  color: #FFF;
}
#menu-user-profile ul li:hover a i {
  color: #FFF;
}
#menu-user-profile ul li:hover a div {
  color: #FFF;
  display: block;
}
#menu-user-profile ul li a {
  display: block;
  padding-top: 5px;
  height: 50px;
  text-decoration: none;
  font-size: 16px;
  color: rgb(43, 58, 141);
}
#menu-user-profile ul li a i {
  color: rgb(43, 58, 141);
  font-size: 18px;
}
#menu-user-profile ul li a:visited {
  color: rgb(43, 58, 141);
}
#menu-user-profile ul li div {
  margin-top: 0;
  font-weight: 300;
  font-size: 13px;
  display: none;
}

.thumb_wrap {
  width: 80px;
  height: 80px;
  line-height: 80px;
  vertical-align: middle;
  border-radius: 3px;
  border: 2px solid #2B3A8D;
  background: rgba(43, 58, 141, 0.2);
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
  text-align: center;
  box-sizing: content-box;
  padding: 5px;
  position: relative;
}
.thumb_wrap a {
  cursor: pointer;
  display: inline-block;
  width: 20px;
  height: 20px;
  position: absolute;
  top: -10px;
  right: -10px;
}
.thumb_wrap a i {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 30px;
  color: #dc3545;
}
.thumb_wrap img, .thumb_wrap i {
  vertical-align: middle;
  max-height: 80px;
  max-width: 80px;
}
.thumb_wrap i {
  color: #2B3A8D;
}

.browse-input {
  padding: 0;
}

.button {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  padding-right: 30px;
  padding-left: 70px;
  position: relative;
  background-color: rgb(0, 0, 0);
  color: rgb(255, 255, 255);
  text-decoration: none;
  text-transform: none;
  letter-spacing: 1px;
  margin-bottom: 14px;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
}

.button.disabled {
  background: #7c7c7c !important;
  color: #fff;
}

.button:hover {
  text-decoration: none;
  color: #fff;
  text-shadow: none;
}

.button p {
  font-size: 18px;
}

.button span {
  position: absolute;
  left: 0;
  width: 50px;
  font-size: 30px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-bottom-left-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-bottomleft: 5px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-right: 1px solid rgba(0, 0, 0, 0.15);
  text-decoration: none;
  text-align: center;
}

.button.twitter {
  background: #00acee;
}

.button.facebook {
  background: #3b5998;
}

.button.tiktok {
  background: #25f4ee;
  background: linear-gradient(45deg, #25f4ee, #000000, #FE2C55);
}

.button.instagram {
  background: #d6249f;
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
}

.button.linkedin {
  background: #0A66C2;
}

.border-gradient:after {
  content: "";
  background: -moz-linear-gradient(90deg, #ce55b0, #f34dac 12%, #f48e66 27%, #f0b832 38%, #b2ce37 54%, #63d7af 70%, #1cc2df 84%, #0580e6 94%, #ce55b0);
  background: -webkit-linear-gradient(90deg, #ce55b0, #f34dac 12%, #f48e66 27%, #f0b832 38%, #b2ce37 54%, #63d7af 70%, #1cc2df 84%, #0580e6 94%, #ce55b0);
  background: linear-gradient(90deg, #ce55b0, #f34dac 12%, #f48e66 27%, #f0b832 38%, #b2ce37 54%, #63d7af 70%, #1cc2df 84%, #0580e6 94%, #ce55b0);
  display: block;
  height: 4px;
  width: 100%;
  position: absolute;
  bottom: 0;
}

.select_service .btn-check:not(:checked) + label {
  background: #7e8299;
}
.select_service label.btn {
  border-right: 3px solid #b1b4c2 !important;
}
.select_service label.btn:last-child {
  border-right: none !important;
}

.she-tab-nav {
  display: flex;
  padding-left: 50px;
}
.she-tab-nav a {
  background: #FFF;
  color: #009ef7;
  padding: calc(0.75rem + 1px) calc(1.5rem + 1px);
  margin-right: 5px;
  margin-bottom: 5px;
  border-top: 1px solid #e4e6ef;
  border-left: 1px solid #e4e6ef;
  border-right: 1px solid #e4e6ef;
  font-size: 14px;
  font-weight: 600;
}
.she-tab-nav a:hover {
  background: #009ef7;
  color: #FFF;
}
.she-tab-nav a:first-child {
  border-radius: 0.625rem 0 0 0;
}
.she-tab-nav a:last-child {
  border-radius: 0 0.625rem 0 0;
}

.footer-my .row div {
  line-height: 2;
}

.cadre-sa {
  border: 2px solid #0995D3;
  border-radius: 15px;
  text-align: center;
  padding: 100px 15px 15px 15px;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 14px;
}
.cadre-sa p {
  color: #0995D3;
}
.cadre-sa .picto-sa-top {
  position: absolute;
  top: -60%;
  width: 200px;
  margin-left: auto;
  margin-right: auto;
  left: 0;
  right: 0;
  text-align: center;
}

/*[ FONT SIZE ]
///////////////////////////////////////////////////////////
*/
.fs-9 {
  font-size: 9px !important;
}

.fs-10 {
  font-size: 10px !important;
}

.fs-11 {
  font-size: 11px !important;
}

.fs-12 {
  font-size: 12px !important;
}

.fs-13 {
  font-size: 13px !important;
}

.fs-14 {
  font-size: 14px !important;
}

.fs-15 {
  font-size: 15px !important;
}

.fs-16 {
  font-size: 16px !important;
}

.fs-17 {
  font-size: 17px !important;
}

.fs-18 {
  font-size: 18px !important;
}

.fs-19 {
  font-size: 19px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.fs-21 {
  font-size: 21px !important;
}

.fs-22 {
  font-size: 22px !important;
}

.fs-23 {
  font-size: 23px !important;
}

.fs-24 {
  font-size: 24px !important;
}

.fs-25 {
  font-size: 25px !important;
}

.fs-26 {
  font-size: 26px !important;
}

.fs-27 {
  font-size: 27px !important;
}

.fs-28 {
  font-size: 28px !important;
}

.fs-29 {
  font-size: 29px !important;
}

.fs-30 {
  font-size: 30px !important;
}

.fs-31 {
  font-size: 31px !important;
}

.fs-32 {
  font-size: 32px !important;
}

.fs-33 {
  font-size: 33px !important;
}

.fs-34 {
  font-size: 34px !important;
}

.fs-35 {
  font-size: 35px !important;
}

.fs-36 {
  font-size: 36px !important;
}

.fs-37 {
  font-size: 37px !important;
}

.fs-38 {
  font-size: 38px !important;
}

.fs-39 {
  font-size: 39px !important;
}

.fs-40 {
  font-size: 40px !important;
}

.fs-41 {
  font-size: 41px !important;
}

.fs-42 {
  font-size: 42px !important;
}

.fs-43 {
  font-size: 43px !important;
}

.fs-44 {
  font-size: 44px !important;
}

.fs-45 {
  font-size: 45px !important;
}

.fs-46 {
  font-size: 46px !important;
}

.fs-47 {
  font-size: 47px !important;
}

.fs-48 {
  font-size: 48px !important;
}

.fs-49 {
  font-size: 49px !important;
}

.fs-50 {
  font-size: 50px !important;
}

.fs-51 {
  font-size: 51px !important;
}

.fs-52 {
  font-size: 52px !important;
}

.fs-53 {
  font-size: 53px !important;
}

.fs-54 {
  font-size: 54px !important;
}

.fs-55 {
  font-size: 55px !important;
}

.fs-56 {
  font-size: 56px !important;
}

.fs-57 {
  font-size: 57px !important;
}

.fs-58 {
  font-size: 58px !important;
}

.fs-59 {
  font-size: 59px !important;
}

.fs-60 {
  font-size: 60px !important;
}

.fs-61 {
  font-size: 61px !important;
}

.fs-62 {
  font-size: 62px !important;
}

.fs-63 {
  font-size: 63px !important;
}

.fs-64 {
  font-size: 64px !important;
}

.fs-65 {
  font-size: 65px !important;
}

.fs-66 {
  font-size: 66px !important;
}

.fs-67 {
  font-size: 67px !important;
}

.fs-68 {
  font-size: 68px !important;
}

.fs-69 {
  font-size: 69px !important;
}

.fs-70 {
  font-size: 70px !important;
}

.fs-71 {
  font-size: 71px !important;
}

.fs-72 {
  font-size: 72px !important;
}

.fs-73 {
  font-size: 73px !important;
}

.fs-74 {
  font-size: 74px !important;
}

.fs-75 {
  font-size: 75px !important;
}

.fs-76 {
  font-size: 76px !important;
}

.fs-77 {
  font-size: 77px !important;
}

.fs-78 {
  font-size: 78px !important;
}

.fs-79 {
  font-size: 79px !important;
}

.fs-80 {
  font-size: 80px !important;
}

.fs-81 {
  font-size: 81px !important;
}

.fs-82 {
  font-size: 82px !important;
}

.fs-83 {
  font-size: 83px !important;
}

.fs-84 {
  font-size: 84px !important;
}

.fs-85 {
  font-size: 85px !important;
}

.fs-86 {
  font-size: 86px !important;
}

.fs-87 {
  font-size: 87px !important;
}

.fs-88 {
  font-size: 88px !important;
}

.fs-89 {
  font-size: 89px !important;
}

.fs-90 {
  font-size: 90px !important;
}

.fs-91 {
  font-size: 91px !important;
}

.fs-92 {
  font-size: 92px !important;
}

.fs-93 {
  font-size: 93px !important;
}

.fs-94 {
  font-size: 94px !important;
}

.fs-95 {
  font-size: 95px !important;
}

.fs-96 {
  font-size: 96px !important;
}

.fs-97 {
  font-size: 97px !important;
}

.fs-98 {
  font-size: 98px !important;
}

.fs-99 {
  font-size: 99px !important;
}

.fs-100 {
  font-size: 100px !important;
}

.fs-101 {
  font-size: 101px !important;
}

.fs-102 {
  font-size: 102px !important;
}

.fs-103 {
  font-size: 103px !important;
}

.fs-104 {
  font-size: 104px !important;
}

.fs-105 {
  font-size: 105px !important;
}

.fs-106 {
  font-size: 106px !important;
}

.fs-107 {
  font-size: 107px !important;
}

.fs-108 {
  font-size: 108px !important;
}

.fs-109 {
  font-size: 109px !important;
}

.fs-110 {
  font-size: 110px !important;
}

.fs-111 {
  font-size: 111px !important;
}

.fs-112 {
  font-size: 112px !important;
}

.fs-113 {
  font-size: 113px !important;
}

.fs-114 {
  font-size: 114px !important;
}

.fs-115 {
  font-size: 115px !important;
}

.fs-116 {
  font-size: 116px !important;
}

.fs-117 {
  font-size: 117px !important;
}

.fs-118 {
  font-size: 118px !important;
}

.fs-119 {
  font-size: 119px !important;
}

.fs-120 {
  font-size: 120px !important;
}

.fs-121 {
  font-size: 121px !important;
}

.fs-122 {
  font-size: 122px !important;
}

.fs-123 {
  font-size: 123px !important;
}

.fs-124 {
  font-size: 124px !important;
}

.fs-125 {
  font-size: 125px !important;
}

.fs-126 {
  font-size: 126px !important;
}

.fs-127 {
  font-size: 127px !important;
}

.fs-128 {
  font-size: 128px !important;
}

.fs-129 {
  font-size: 129px !important;
}

.fs-130 {
  font-size: 130px !important;
}

.fs-131 {
  font-size: 131px !important;
}

.fs-132 {
  font-size: 132px !important;
}

.fs-133 {
  font-size: 133px !important;
}

.fs-134 {
  font-size: 134px !important;
}

.fs-135 {
  font-size: 135px !important;
}

.fs-136 {
  font-size: 136px !important;
}

.fs-137 {
  font-size: 137px !important;
}

.fs-138 {
  font-size: 138px !important;
}

.fs-139 {
  font-size: 139px !important;
}

.fs-140 {
  font-size: 140px !important;
}

.fs-141 {
  font-size: 141px !important;
}

.fs-142 {
  font-size: 142px !important;
}

.fs-143 {
  font-size: 143px !important;
}

.fs-144 {
  font-size: 144px !important;
}

.fs-145 {
  font-size: 145px !important;
}

.fs-146 {
  font-size: 146px !important;
}

.fs-147 {
  font-size: 147px !important;
}

.fs-148 {
  font-size: 148px !important;
}

.fs-149 {
  font-size: 149px !important;
}

.fs-150 {
  font-size: 150px !important;
}

.fs-151 {
  font-size: 151px !important;
}

.fs-152 {
  font-size: 152px !important;
}

.fs-153 {
  font-size: 153px !important;
}

.fs-154 {
  font-size: 154px !important;
}

.fs-155 {
  font-size: 155px !important;
}

.fs-156 {
  font-size: 156px !important;
}

.fs-157 {
  font-size: 157px !important;
}

.fs-158 {
  font-size: 158px !important;
}

.fs-159 {
  font-size: 159px !important;
}

.fs-160 {
  font-size: 160px !important;
}

.fs-161 {
  font-size: 161px !important;
}

.fs-162 {
  font-size: 162px !important;
}

.fs-163 {
  font-size: 163px !important;
}

.fs-164 {
  font-size: 164px !important;
}

.fs-165 {
  font-size: 165px !important;
}

.fs-166 {
  font-size: 166px !important;
}

.fs-167 {
  font-size: 167px !important;
}

.fs-168 {
  font-size: 168px !important;
}

.fs-169 {
  font-size: 169px !important;
}

.fs-170 {
  font-size: 170px !important;
}

.fs-171 {
  font-size: 171px !important;
}

.fs-172 {
  font-size: 172px !important;
}

.fs-173 {
  font-size: 173px !important;
}

.fs-174 {
  font-size: 174px !important;
}

.fs-175 {
  font-size: 175px !important;
}

.fs-176 {
  font-size: 176px !important;
}

.fs-177 {
  font-size: 177px !important;
}

.fs-178 {
  font-size: 178px !important;
}

.fs-179 {
  font-size: 179px !important;
}

.fs-180 {
  font-size: 180px !important;
}

.fs-181 {
  font-size: 181px !important;
}

.fs-182 {
  font-size: 182px !important;
}

.fs-183 {
  font-size: 183px !important;
}

.fs-184 {
  font-size: 184px !important;
}

.fs-185 {
  font-size: 185px !important;
}

.fs-186 {
  font-size: 186px !important;
}

.fs-187 {
  font-size: 187px !important;
}

.fs-188 {
  font-size: 188px !important;
}

.fs-189 {
  font-size: 189px !important;
}

.fs-190 {
  font-size: 190px !important;
}

.fs-191 {
  font-size: 191px !important;
}

.fs-192 {
  font-size: 192px !important;
}

.fs-193 {
  font-size: 193px !important;
}

.fs-194 {
  font-size: 194px !important;
}

.fs-195 {
  font-size: 195px !important;
}

.fs-196 {
  font-size: 196px !important;
}

.fs-197 {
  font-size: 197px !important;
}

.fs-198 {
  font-size: 198px !important;
}

.fs-199 {
  font-size: 199px !important;
}

.fs-200 {
  font-size: 200px !important;
}

/*[ PADDING ]
///////////////////////////////////////////////////////////
*/
.p-t-0 {
  padding-top: 0px !important;
}

.p-t-1 {
  padding-top: 1px !important;
}

.p-t-2 {
  padding-top: 2px !important;
}

.p-t-3 {
  padding-top: 3px !important;
}

.p-t-4 {
  padding-top: 4px !important;
}

.p-t-5 {
  padding-top: 5px !important;
}

.p-t-6 {
  padding-top: 6px !important;
}

.p-t-7 {
  padding-top: 7px !important;
}

.p-t-8 {
  padding-top: 8px !important;
}

.p-t-9 {
  padding-top: 9px !important;
}

.p-t-10 {
  padding-top: 10px !important;
}

.p-t-11 {
  padding-top: 11px !important;
}

.p-t-12 {
  padding-top: 12px !important;
}

.p-t-13 {
  padding-top: 13px !important;
}

.p-t-14 {
  padding-top: 14px !important;
}

.p-t-15 {
  padding-top: 15px !important;
}

.p-t-16 {
  padding-top: 16px !important;
}

.p-t-17 {
  padding-top: 17px !important;
}

.p-t-18 {
  padding-top: 18px !important;
}

.p-t-19 {
  padding-top: 19px !important;
}

.p-t-20 {
  padding-top: 20px !important;
}

.p-t-21 {
  padding-top: 21px !important;
}

.p-t-22 {
  padding-top: 22px !important;
}

.p-t-23 {
  padding-top: 23px !important;
}

.p-t-24 {
  padding-top: 24px !important;
}

.p-t-25 {
  padding-top: 25px !important;
}

.p-t-26 {
  padding-top: 26px !important;
}

.p-t-27 {
  padding-top: 27px !important;
}

.p-t-28 {
  padding-top: 28px !important;
}

.p-t-29 {
  padding-top: 29px !important;
}

.p-t-30 {
  padding-top: 30px !important;
}

.p-t-31 {
  padding-top: 31px !important;
}

.p-t-32 {
  padding-top: 32px !important;
}

.p-t-33 {
  padding-top: 33px !important;
}

.p-t-34 {
  padding-top: 34px !important;
}

.p-t-35 {
  padding-top: 35px !important;
}

.p-t-36 {
  padding-top: 36px !important;
}

.p-t-37 {
  padding-top: 37px !important;
}

.p-t-38 {
  padding-top: 38px !important;
}

.p-t-39 {
  padding-top: 39px !important;
}

.p-t-40 {
  padding-top: 40px !important;
}

.p-t-41 {
  padding-top: 41px !important;
}

.p-t-42 {
  padding-top: 42px !important;
}

.p-t-43 {
  padding-top: 43px !important;
}

.p-t-44 {
  padding-top: 44px !important;
}

.p-t-45 {
  padding-top: 45px !important;
}

.p-t-46 {
  padding-top: 46px !important;
}

.p-t-47 {
  padding-top: 47px !important;
}

.p-t-48 {
  padding-top: 48px !important;
}

.p-t-49 {
  padding-top: 49px !important;
}

.p-t-50 {
  padding-top: 50px !important;
}

.p-t-51 {
  padding-top: 51px !important;
}

.p-t-52 {
  padding-top: 52px !important;
}

.p-t-53 {
  padding-top: 53px !important;
}

.p-t-54 {
  padding-top: 54px !important;
}

.p-t-55 {
  padding-top: 55px !important;
}

.p-t-56 {
  padding-top: 56px !important;
}

.p-t-57 {
  padding-top: 57px !important;
}

.p-t-58 {
  padding-top: 58px !important;
}

.p-t-59 {
  padding-top: 59px !important;
}

.p-t-60 {
  padding-top: 60px !important;
}

.p-t-61 {
  padding-top: 61px !important;
}

.p-t-62 {
  padding-top: 62px !important;
}

.p-t-63 {
  padding-top: 63px !important;
}

.p-t-64 {
  padding-top: 64px !important;
}

.p-t-65 {
  padding-top: 65px !important;
}

.p-t-66 {
  padding-top: 66px !important;
}

.p-t-67 {
  padding-top: 67px !important;
}

.p-t-68 {
  padding-top: 68px !important;
}

.p-t-69 {
  padding-top: 69px !important;
}

.p-t-70 {
  padding-top: 70px !important;
}

.p-t-71 {
  padding-top: 71px !important;
}

.p-t-72 {
  padding-top: 72px !important;
}

.p-t-73 {
  padding-top: 73px !important;
}

.p-t-74 {
  padding-top: 74px !important;
}

.p-t-75 {
  padding-top: 75px !important;
}

.p-t-76 {
  padding-top: 76px !important;
}

.p-t-77 {
  padding-top: 77px !important;
}

.p-t-78 {
  padding-top: 78px !important;
}

.p-t-79 {
  padding-top: 79px !important;
}

.p-t-80 {
  padding-top: 80px !important;
}

.p-t-81 {
  padding-top: 81px !important;
}

.p-t-82 {
  padding-top: 82px !important;
}

.p-t-83 {
  padding-top: 83px !important;
}

.p-t-84 {
  padding-top: 84px !important;
}

.p-t-85 {
  padding-top: 85px !important;
}

.p-t-86 {
  padding-top: 86px !important;
}

.p-t-87 {
  padding-top: 87px !important;
}

.p-t-88 {
  padding-top: 88px !important;
}

.p-t-89 {
  padding-top: 89px !important;
}

.p-t-90 {
  padding-top: 90px !important;
}

.p-t-91 {
  padding-top: 91px !important;
}

.p-t-92 {
  padding-top: 92px !important;
}

.p-t-93 {
  padding-top: 93px !important;
}

.p-t-94 {
  padding-top: 94px !important;
}

.p-t-95 {
  padding-top: 95px !important;
}

.p-t-96 {
  padding-top: 96px !important;
}

.p-t-97 {
  padding-top: 97px !important;
}

.p-t-98 {
  padding-top: 98px !important;
}

.p-t-99 {
  padding-top: 99px !important;
}

.p-t-100 {
  padding-top: 100px !important;
}

.p-t-101 {
  padding-top: 101px !important;
}

.p-t-102 {
  padding-top: 102px !important;
}

.p-t-103 {
  padding-top: 103px !important;
}

.p-t-104 {
  padding-top: 104px !important;
}

.p-t-105 {
  padding-top: 105px !important;
}

.p-t-106 {
  padding-top: 106px !important;
}

.p-t-107 {
  padding-top: 107px !important;
}

.p-t-108 {
  padding-top: 108px !important;
}

.p-t-109 {
  padding-top: 109px !important;
}

.p-t-110 {
  padding-top: 110px !important;
}

.p-t-111 {
  padding-top: 111px !important;
}

.p-t-112 {
  padding-top: 112px !important;
}

.p-t-113 {
  padding-top: 113px !important;
}

.p-t-114 {
  padding-top: 114px !important;
}

.p-t-115 {
  padding-top: 115px !important;
}

.p-t-116 {
  padding-top: 116px !important;
}

.p-t-117 {
  padding-top: 117px !important;
}

.p-t-118 {
  padding-top: 118px !important;
}

.p-t-119 {
  padding-top: 119px !important;
}

.p-t-120 {
  padding-top: 120px !important;
}

.p-t-121 {
  padding-top: 121px !important;
}

.p-t-122 {
  padding-top: 122px !important;
}

.p-t-123 {
  padding-top: 123px !important;
}

.p-t-124 {
  padding-top: 124px !important;
}

.p-t-125 {
  padding-top: 125px !important;
}

.p-t-126 {
  padding-top: 126px !important;
}

.p-t-127 {
  padding-top: 127px !important;
}

.p-t-128 {
  padding-top: 128px !important;
}

.p-t-129 {
  padding-top: 129px !important;
}

.p-t-130 {
  padding-top: 130px !important;
}

.p-t-131 {
  padding-top: 131px !important;
}

.p-t-132 {
  padding-top: 132px !important;
}

.p-t-133 {
  padding-top: 133px !important;
}

.p-t-134 {
  padding-top: 134px !important;
}

.p-t-135 {
  padding-top: 135px !important;
}

.p-t-136 {
  padding-top: 136px !important;
}

.p-t-137 {
  padding-top: 137px !important;
}

.p-t-138 {
  padding-top: 138px !important;
}

.p-t-139 {
  padding-top: 139px !important;
}

.p-t-140 {
  padding-top: 140px !important;
}

.p-t-141 {
  padding-top: 141px !important;
}

.p-t-142 {
  padding-top: 142px !important;
}

.p-t-143 {
  padding-top: 143px !important;
}

.p-t-144 {
  padding-top: 144px !important;
}

.p-t-145 {
  padding-top: 145px !important;
}

.p-t-146 {
  padding-top: 146px !important;
}

.p-t-147 {
  padding-top: 147px !important;
}

.p-t-148 {
  padding-top: 148px !important;
}

.p-t-149 {
  padding-top: 149px !important;
}

.p-t-150 {
  padding-top: 150px !important;
}

.p-t-151 {
  padding-top: 151px !important;
}

.p-t-152 {
  padding-top: 152px !important;
}

.p-t-153 {
  padding-top: 153px !important;
}

.p-t-154 {
  padding-top: 154px !important;
}

.p-t-155 {
  padding-top: 155px !important;
}

.p-t-156 {
  padding-top: 156px !important;
}

.p-t-157 {
  padding-top: 157px !important;
}

.p-t-158 {
  padding-top: 158px !important;
}

.p-t-159 {
  padding-top: 159px !important;
}

.p-t-160 {
  padding-top: 160px !important;
}

.p-t-161 {
  padding-top: 161px !important;
}

.p-t-162 {
  padding-top: 162px !important;
}

.p-t-163 {
  padding-top: 163px !important;
}

.p-t-164 {
  padding-top: 164px !important;
}

.p-t-165 {
  padding-top: 165px !important;
}

.p-t-166 {
  padding-top: 166px !important;
}

.p-t-167 {
  padding-top: 167px !important;
}

.p-t-168 {
  padding-top: 168px !important;
}

.p-t-169 {
  padding-top: 169px !important;
}

.p-t-170 {
  padding-top: 170px !important;
}

.p-t-171 {
  padding-top: 171px !important;
}

.p-t-172 {
  padding-top: 172px !important;
}

.p-t-173 {
  padding-top: 173px !important;
}

.p-t-174 {
  padding-top: 174px !important;
}

.p-t-175 {
  padding-top: 175px !important;
}

.p-t-176 {
  padding-top: 176px !important;
}

.p-t-177 {
  padding-top: 177px !important;
}

.p-t-178 {
  padding-top: 178px !important;
}

.p-t-179 {
  padding-top: 179px !important;
}

.p-t-180 {
  padding-top: 180px !important;
}

.p-t-181 {
  padding-top: 181px !important;
}

.p-t-182 {
  padding-top: 182px !important;
}

.p-t-183 {
  padding-top: 183px !important;
}

.p-t-184 {
  padding-top: 184px !important;
}

.p-t-185 {
  padding-top: 185px !important;
}

.p-t-186 {
  padding-top: 186px !important;
}

.p-t-187 {
  padding-top: 187px !important;
}

.p-t-188 {
  padding-top: 188px !important;
}

.p-t-189 {
  padding-top: 189px !important;
}

.p-t-190 {
  padding-top: 190px !important;
}

.p-t-191 {
  padding-top: 191px !important;
}

.p-t-192 {
  padding-top: 192px !important;
}

.p-t-193 {
  padding-top: 193px !important;
}

.p-t-194 {
  padding-top: 194px !important;
}

.p-t-195 {
  padding-top: 195px !important;
}

.p-t-196 {
  padding-top: 196px !important;
}

.p-t-197 {
  padding-top: 197px !important;
}

.p-t-198 {
  padding-top: 198px !important;
}

.p-t-199 {
  padding-top: 199px !important;
}

.p-t-200 {
  padding-top: 200px !important;
}

.p-t-201 {
  padding-top: 201px !important;
}

.p-t-202 {
  padding-top: 202px !important;
}

.p-t-203 {
  padding-top: 203px !important;
}

.p-t-204 {
  padding-top: 204px !important;
}

.p-t-205 {
  padding-top: 205px !important;
}

.p-t-206 {
  padding-top: 206px !important;
}

.p-t-207 {
  padding-top: 207px !important;
}

.p-t-208 {
  padding-top: 208px !important;
}

.p-t-209 {
  padding-top: 209px !important;
}

.p-t-210 {
  padding-top: 210px !important;
}

.p-t-211 {
  padding-top: 211px !important;
}

.p-t-212 {
  padding-top: 212px !important;
}

.p-t-213 {
  padding-top: 213px !important;
}

.p-t-214 {
  padding-top: 214px !important;
}

.p-t-215 {
  padding-top: 215px !important;
}

.p-t-216 {
  padding-top: 216px !important;
}

.p-t-217 {
  padding-top: 217px !important;
}

.p-t-218 {
  padding-top: 218px !important;
}

.p-t-219 {
  padding-top: 219px !important;
}

.p-t-220 {
  padding-top: 220px !important;
}

.p-t-221 {
  padding-top: 221px !important;
}

.p-t-222 {
  padding-top: 222px !important;
}

.p-t-223 {
  padding-top: 223px !important;
}

.p-t-224 {
  padding-top: 224px !important;
}

.p-t-225 {
  padding-top: 225px !important;
}

.p-t-226 {
  padding-top: 226px !important;
}

.p-t-227 {
  padding-top: 227px !important;
}

.p-t-228 {
  padding-top: 228px !important;
}

.p-t-229 {
  padding-top: 229px !important;
}

.p-t-230 {
  padding-top: 230px !important;
}

.p-t-231 {
  padding-top: 231px !important;
}

.p-t-232 {
  padding-top: 232px !important;
}

.p-t-233 {
  padding-top: 233px !important;
}

.p-t-234 {
  padding-top: 234px !important;
}

.p-t-235 {
  padding-top: 235px !important;
}

.p-t-236 {
  padding-top: 236px !important;
}

.p-t-237 {
  padding-top: 237px !important;
}

.p-t-238 {
  padding-top: 238px !important;
}

.p-t-239 {
  padding-top: 239px !important;
}

.p-t-240 {
  padding-top: 240px !important;
}

.p-t-241 {
  padding-top: 241px !important;
}

.p-t-242 {
  padding-top: 242px !important;
}

.p-t-243 {
  padding-top: 243px !important;
}

.p-t-244 {
  padding-top: 244px !important;
}

.p-t-245 {
  padding-top: 245px !important;
}

.p-t-246 {
  padding-top: 246px !important;
}

.p-t-247 {
  padding-top: 247px !important;
}

.p-t-248 {
  padding-top: 248px !important;
}

.p-t-249 {
  padding-top: 249px !important;
}

.p-t-250 {
  padding-top: 250px !important;
}

.p-b-0 {
  padding-bottom: 0px !important;
}

.p-b-1 {
  padding-bottom: 1px !important;
}

.p-b-2 {
  padding-bottom: 2px !important;
}

.p-b-3 {
  padding-bottom: 3px !important;
}

.p-b-4 {
  padding-bottom: 4px !important;
}

.p-b-5 {
  padding-bottom: 5px !important;
}

.p-b-6 {
  padding-bottom: 6px !important;
}

.p-b-7 {
  padding-bottom: 7px !important;
}

.p-b-8 {
  padding-bottom: 8px !important;
}

.p-b-9 {
  padding-bottom: 9px !important;
}

.p-b-10 {
  padding-bottom: 10px !important;
}

.p-b-11 {
  padding-bottom: 11px !important;
}

.p-b-12 {
  padding-bottom: 12px !important;
}

.p-b-13 {
  padding-bottom: 13px !important;
}

.p-b-14 {
  padding-bottom: 14px !important;
}

.p-b-15 {
  padding-bottom: 15px !important;
}

.p-b-16 {
  padding-bottom: 16px !important;
}

.p-b-17 {
  padding-bottom: 17px !important;
}

.p-b-18 {
  padding-bottom: 18px !important;
}

.p-b-19 {
  padding-bottom: 19px !important;
}

.p-b-20 {
  padding-bottom: 20px !important;
}

.p-b-21 {
  padding-bottom: 21px !important;
}

.p-b-22 {
  padding-bottom: 22px !important;
}

.p-b-23 {
  padding-bottom: 23px !important;
}

.p-b-24 {
  padding-bottom: 24px !important;
}

.p-b-25 {
  padding-bottom: 25px !important;
}

.p-b-26 {
  padding-bottom: 26px !important;
}

.p-b-27 {
  padding-bottom: 27px !important;
}

.p-b-28 {
  padding-bottom: 28px !important;
}

.p-b-29 {
  padding-bottom: 29px !important;
}

.p-b-30 {
  padding-bottom: 30px !important;
}

.p-b-31 {
  padding-bottom: 31px !important;
}

.p-b-32 {
  padding-bottom: 32px !important;
}

.p-b-33 {
  padding-bottom: 33px !important;
}

.p-b-34 {
  padding-bottom: 34px !important;
}

.p-b-35 {
  padding-bottom: 35px !important;
}

.p-b-36 {
  padding-bottom: 36px !important;
}

.p-b-37 {
  padding-bottom: 37px !important;
}

.p-b-38 {
  padding-bottom: 38px !important;
}

.p-b-39 {
  padding-bottom: 39px !important;
}

.p-b-40 {
  padding-bottom: 40px !important;
}

.p-b-41 {
  padding-bottom: 41px !important;
}

.p-b-42 {
  padding-bottom: 42px !important;
}

.p-b-43 {
  padding-bottom: 43px !important;
}

.p-b-44 {
  padding-bottom: 44px !important;
}

.p-b-45 {
  padding-bottom: 45px !important;
}

.p-b-46 {
  padding-bottom: 46px !important;
}

.p-b-47 {
  padding-bottom: 47px !important;
}

.p-b-48 {
  padding-bottom: 48px !important;
}

.p-b-49 {
  padding-bottom: 49px !important;
}

.p-b-50 {
  padding-bottom: 50px !important;
}

.p-b-51 {
  padding-bottom: 51px !important;
}

.p-b-52 {
  padding-bottom: 52px !important;
}

.p-b-53 {
  padding-bottom: 53px !important;
}

.p-b-54 {
  padding-bottom: 54px !important;
}

.p-b-55 {
  padding-bottom: 55px !important;
}

.p-b-56 {
  padding-bottom: 56px !important;
}

.p-b-57 {
  padding-bottom: 57px !important;
}

.p-b-58 {
  padding-bottom: 58px !important;
}

.p-b-59 {
  padding-bottom: 59px !important;
}

.p-b-60 {
  padding-bottom: 60px !important;
}

.p-b-61 {
  padding-bottom: 61px !important;
}

.p-b-62 {
  padding-bottom: 62px !important;
}

.p-b-63 {
  padding-bottom: 63px !important;
}

.p-b-64 {
  padding-bottom: 64px !important;
}

.p-b-65 {
  padding-bottom: 65px !important;
}

.p-b-66 {
  padding-bottom: 66px !important;
}

.p-b-67 {
  padding-bottom: 67px !important;
}

.p-b-68 {
  padding-bottom: 68px !important;
}

.p-b-69 {
  padding-bottom: 69px !important;
}

.p-b-70 {
  padding-bottom: 70px !important;
}

.p-b-71 {
  padding-bottom: 71px !important;
}

.p-b-72 {
  padding-bottom: 72px !important;
}

.p-b-73 {
  padding-bottom: 73px !important;
}

.p-b-74 {
  padding-bottom: 74px !important;
}

.p-b-75 {
  padding-bottom: 75px !important;
}

.p-b-76 {
  padding-bottom: 76px !important;
}

.p-b-77 {
  padding-bottom: 77px !important;
}

.p-b-78 {
  padding-bottom: 78px !important;
}

.p-b-79 {
  padding-bottom: 79px !important;
}

.p-b-80 {
  padding-bottom: 80px !important;
}

.p-b-81 {
  padding-bottom: 81px !important;
}

.p-b-82 {
  padding-bottom: 82px !important;
}

.p-b-83 {
  padding-bottom: 83px !important;
}

.p-b-84 {
  padding-bottom: 84px !important;
}

.p-b-85 {
  padding-bottom: 85px !important;
}

.p-b-86 {
  padding-bottom: 86px !important;
}

.p-b-87 {
  padding-bottom: 87px !important;
}

.p-b-88 {
  padding-bottom: 88px !important;
}

.p-b-89 {
  padding-bottom: 89px !important;
}

.p-b-90 {
  padding-bottom: 90px !important;
}

.p-b-91 {
  padding-bottom: 91px !important;
}

.p-b-92 {
  padding-bottom: 92px !important;
}

.p-b-93 {
  padding-bottom: 93px !important;
}

.p-b-94 {
  padding-bottom: 94px !important;
}

.p-b-95 {
  padding-bottom: 95px !important;
}

.p-b-96 {
  padding-bottom: 96px !important;
}

.p-b-97 {
  padding-bottom: 97px !important;
}

.p-b-98 {
  padding-bottom: 98px !important;
}

.p-b-99 {
  padding-bottom: 99px !important;
}

.p-b-100 {
  padding-bottom: 100px !important;
}

.p-b-101 {
  padding-bottom: 101px !important;
}

.p-b-102 {
  padding-bottom: 102px !important;
}

.p-b-103 {
  padding-bottom: 103px !important;
}

.p-b-104 {
  padding-bottom: 104px !important;
}

.p-b-105 {
  padding-bottom: 105px !important;
}

.p-b-106 {
  padding-bottom: 106px !important;
}

.p-b-107 {
  padding-bottom: 107px !important;
}

.p-b-108 {
  padding-bottom: 108px !important;
}

.p-b-109 {
  padding-bottom: 109px !important;
}

.p-b-110 {
  padding-bottom: 110px !important;
}

.p-b-111 {
  padding-bottom: 111px !important;
}

.p-b-112 {
  padding-bottom: 112px !important;
}

.p-b-113 {
  padding-bottom: 113px !important;
}

.p-b-114 {
  padding-bottom: 114px !important;
}

.p-b-115 {
  padding-bottom: 115px !important;
}

.p-b-116 {
  padding-bottom: 116px !important;
}

.p-b-117 {
  padding-bottom: 117px !important;
}

.p-b-118 {
  padding-bottom: 118px !important;
}

.p-b-119 {
  padding-bottom: 119px !important;
}

.p-b-120 {
  padding-bottom: 120px !important;
}

.p-b-121 {
  padding-bottom: 121px !important;
}

.p-b-122 {
  padding-bottom: 122px !important;
}

.p-b-123 {
  padding-bottom: 123px !important;
}

.p-b-124 {
  padding-bottom: 124px !important;
}

.p-b-125 {
  padding-bottom: 125px !important;
}

.p-b-126 {
  padding-bottom: 126px !important;
}

.p-b-127 {
  padding-bottom: 127px !important;
}

.p-b-128 {
  padding-bottom: 128px !important;
}

.p-b-129 {
  padding-bottom: 129px !important;
}

.p-b-130 {
  padding-bottom: 130px !important;
}

.p-b-131 {
  padding-bottom: 131px !important;
}

.p-b-132 {
  padding-bottom: 132px !important;
}

.p-b-133 {
  padding-bottom: 133px !important;
}

.p-b-134 {
  padding-bottom: 134px !important;
}

.p-b-135 {
  padding-bottom: 135px !important;
}

.p-b-136 {
  padding-bottom: 136px !important;
}

.p-b-137 {
  padding-bottom: 137px !important;
}

.p-b-138 {
  padding-bottom: 138px !important;
}

.p-b-139 {
  padding-bottom: 139px !important;
}

.p-b-140 {
  padding-bottom: 140px !important;
}

.p-b-141 {
  padding-bottom: 141px !important;
}

.p-b-142 {
  padding-bottom: 142px !important;
}

.p-b-143 {
  padding-bottom: 143px !important;
}

.p-b-144 {
  padding-bottom: 144px !important;
}

.p-b-145 {
  padding-bottom: 145px !important;
}

.p-b-146 {
  padding-bottom: 146px !important;
}

.p-b-147 {
  padding-bottom: 147px !important;
}

.p-b-148 {
  padding-bottom: 148px !important;
}

.p-b-149 {
  padding-bottom: 149px !important;
}

.p-b-150 {
  padding-bottom: 150px !important;
}

.p-b-151 {
  padding-bottom: 151px !important;
}

.p-b-152 {
  padding-bottom: 152px !important;
}

.p-b-153 {
  padding-bottom: 153px !important;
}

.p-b-154 {
  padding-bottom: 154px !important;
}

.p-b-155 {
  padding-bottom: 155px !important;
}

.p-b-156 {
  padding-bottom: 156px !important;
}

.p-b-157 {
  padding-bottom: 157px !important;
}

.p-b-158 {
  padding-bottom: 158px !important;
}

.p-b-159 {
  padding-bottom: 159px !important;
}

.p-b-160 {
  padding-bottom: 160px !important;
}

.p-b-161 {
  padding-bottom: 161px !important;
}

.p-b-162 {
  padding-bottom: 162px !important;
}

.p-b-163 {
  padding-bottom: 163px !important;
}

.p-b-164 {
  padding-bottom: 164px !important;
}

.p-b-165 {
  padding-bottom: 165px !important;
}

.p-b-166 {
  padding-bottom: 166px !important;
}

.p-b-167 {
  padding-bottom: 167px !important;
}

.p-b-168 {
  padding-bottom: 168px !important;
}

.p-b-169 {
  padding-bottom: 169px !important;
}

.p-b-170 {
  padding-bottom: 170px !important;
}

.p-b-171 {
  padding-bottom: 171px !important;
}

.p-b-172 {
  padding-bottom: 172px !important;
}

.p-b-173 {
  padding-bottom: 173px !important;
}

.p-b-174 {
  padding-bottom: 174px !important;
}

.p-b-175 {
  padding-bottom: 175px !important;
}

.p-b-176 {
  padding-bottom: 176px !important;
}

.p-b-177 {
  padding-bottom: 177px !important;
}

.p-b-178 {
  padding-bottom: 178px !important;
}

.p-b-179 {
  padding-bottom: 179px !important;
}

.p-b-180 {
  padding-bottom: 180px !important;
}

.p-b-181 {
  padding-bottom: 181px !important;
}

.p-b-182 {
  padding-bottom: 182px !important;
}

.p-b-183 {
  padding-bottom: 183px !important;
}

.p-b-184 {
  padding-bottom: 184px !important;
}

.p-b-185 {
  padding-bottom: 185px !important;
}

.p-b-186 {
  padding-bottom: 186px !important;
}

.p-b-187 {
  padding-bottom: 187px !important;
}

.p-b-188 {
  padding-bottom: 188px !important;
}

.p-b-189 {
  padding-bottom: 189px !important;
}

.p-b-190 {
  padding-bottom: 190px !important;
}

.p-b-191 {
  padding-bottom: 191px !important;
}

.p-b-192 {
  padding-bottom: 192px !important;
}

.p-b-193 {
  padding-bottom: 193px !important;
}

.p-b-194 {
  padding-bottom: 194px !important;
}

.p-b-195 {
  padding-bottom: 195px !important;
}

.p-b-196 {
  padding-bottom: 196px !important;
}

.p-b-197 {
  padding-bottom: 197px !important;
}

.p-b-198 {
  padding-bottom: 198px !important;
}

.p-b-199 {
  padding-bottom: 199px !important;
}

.p-b-200 {
  padding-bottom: 200px !important;
}

.p-b-201 {
  padding-bottom: 201px !important;
}

.p-b-202 {
  padding-bottom: 202px !important;
}

.p-b-203 {
  padding-bottom: 203px !important;
}

.p-b-204 {
  padding-bottom: 204px !important;
}

.p-b-205 {
  padding-bottom: 205px !important;
}

.p-b-206 {
  padding-bottom: 206px !important;
}

.p-b-207 {
  padding-bottom: 207px !important;
}

.p-b-208 {
  padding-bottom: 208px !important;
}

.p-b-209 {
  padding-bottom: 209px !important;
}

.p-b-210 {
  padding-bottom: 210px !important;
}

.p-b-211 {
  padding-bottom: 211px !important;
}

.p-b-212 {
  padding-bottom: 212px !important;
}

.p-b-213 {
  padding-bottom: 213px !important;
}

.p-b-214 {
  padding-bottom: 214px !important;
}

.p-b-215 {
  padding-bottom: 215px !important;
}

.p-b-216 {
  padding-bottom: 216px !important;
}

.p-b-217 {
  padding-bottom: 217px !important;
}

.p-b-218 {
  padding-bottom: 218px !important;
}

.p-b-219 {
  padding-bottom: 219px !important;
}

.p-b-220 {
  padding-bottom: 220px !important;
}

.p-b-221 {
  padding-bottom: 221px !important;
}

.p-b-222 {
  padding-bottom: 222px !important;
}

.p-b-223 {
  padding-bottom: 223px !important;
}

.p-b-224 {
  padding-bottom: 224px !important;
}

.p-b-225 {
  padding-bottom: 225px !important;
}

.p-b-226 {
  padding-bottom: 226px !important;
}

.p-b-227 {
  padding-bottom: 227px !important;
}

.p-b-228 {
  padding-bottom: 228px !important;
}

.p-b-229 {
  padding-bottom: 229px !important;
}

.p-b-230 {
  padding-bottom: 230px !important;
}

.p-b-231 {
  padding-bottom: 231px !important;
}

.p-b-232 {
  padding-bottom: 232px !important;
}

.p-b-233 {
  padding-bottom: 233px !important;
}

.p-b-234 {
  padding-bottom: 234px !important;
}

.p-b-235 {
  padding-bottom: 235px !important;
}

.p-b-236 {
  padding-bottom: 236px !important;
}

.p-b-237 {
  padding-bottom: 237px !important;
}

.p-b-238 {
  padding-bottom: 238px !important;
}

.p-b-239 {
  padding-bottom: 239px !important;
}

.p-b-240 {
  padding-bottom: 240px !important;
}

.p-b-241 {
  padding-bottom: 241px !important;
}

.p-b-242 {
  padding-bottom: 242px !important;
}

.p-b-243 {
  padding-bottom: 243px !important;
}

.p-b-244 {
  padding-bottom: 244px !important;
}

.p-b-245 {
  padding-bottom: 245px !important;
}

.p-b-246 {
  padding-bottom: 246px !important;
}

.p-b-247 {
  padding-bottom: 247px !important;
}

.p-b-248 {
  padding-bottom: 248px !important;
}

.p-b-249 {
  padding-bottom: 249px !important;
}

.p-b-250 {
  padding-bottom: 250px !important;
}

.p-l-0 {
  padding-left: 0px !important;
}

.p-l-1 {
  padding-left: 1px !important;
}

.p-l-2 {
  padding-left: 2px !important;
}

.p-l-3 {
  padding-left: 3px !important;
}

.p-l-4 {
  padding-left: 4px !important;
}

.p-l-5 {
  padding-left: 5px !important;
}

.p-l-6 {
  padding-left: 6px !important;
}

.p-l-7 {
  padding-left: 7px !important;
}

.p-l-8 {
  padding-left: 8px !important;
}

.p-l-9 {
  padding-left: 9px !important;
}

.p-l-10 {
  padding-left: 10px !important;
}

.p-l-11 {
  padding-left: 11px !important;
}

.p-l-12 {
  padding-left: 12px !important;
}

.p-l-13 {
  padding-left: 13px !important;
}

.p-l-14 {
  padding-left: 14px !important;
}

.p-l-15 {
  padding-left: 15px !important;
}

.p-l-16 {
  padding-left: 16px !important;
}

.p-l-17 {
  padding-left: 17px !important;
}

.p-l-18 {
  padding-left: 18px !important;
}

.p-l-19 {
  padding-left: 19px !important;
}

.p-l-20 {
  padding-left: 20px !important;
}

.p-l-21 {
  padding-left: 21px !important;
}

.p-l-22 {
  padding-left: 22px !important;
}

.p-l-23 {
  padding-left: 23px !important;
}

.p-l-24 {
  padding-left: 24px !important;
}

.p-l-25 {
  padding-left: 25px !important;
}

.p-l-26 {
  padding-left: 26px !important;
}

.p-l-27 {
  padding-left: 27px !important;
}

.p-l-28 {
  padding-left: 28px !important;
}

.p-l-29 {
  padding-left: 29px !important;
}

.p-l-30 {
  padding-left: 30px !important;
}

.p-l-31 {
  padding-left: 31px !important;
}

.p-l-32 {
  padding-left: 32px !important;
}

.p-l-33 {
  padding-left: 33px !important;
}

.p-l-34 {
  padding-left: 34px !important;
}

.p-l-35 {
  padding-left: 35px !important;
}

.p-l-36 {
  padding-left: 36px !important;
}

.p-l-37 {
  padding-left: 37px !important;
}

.p-l-38 {
  padding-left: 38px !important;
}

.p-l-39 {
  padding-left: 39px !important;
}

.p-l-40 {
  padding-left: 40px !important;
}

.p-l-41 {
  padding-left: 41px !important;
}

.p-l-42 {
  padding-left: 42px !important;
}

.p-l-43 {
  padding-left: 43px !important;
}

.p-l-44 {
  padding-left: 44px !important;
}

.p-l-45 {
  padding-left: 45px !important;
}

.p-l-46 {
  padding-left: 46px !important;
}

.p-l-47 {
  padding-left: 47px !important;
}

.p-l-48 {
  padding-left: 48px !important;
}

.p-l-49 {
  padding-left: 49px !important;
}

.p-l-50 {
  padding-left: 50px !important;
}

.p-l-51 {
  padding-left: 51px !important;
}

.p-l-52 {
  padding-left: 52px !important;
}

.p-l-53 {
  padding-left: 53px !important;
}

.p-l-54 {
  padding-left: 54px !important;
}

.p-l-55 {
  padding-left: 55px !important;
}

.p-l-56 {
  padding-left: 56px !important;
}

.p-l-57 {
  padding-left: 57px !important;
}

.p-l-58 {
  padding-left: 58px !important;
}

.p-l-59 {
  padding-left: 59px !important;
}

.p-l-60 {
  padding-left: 60px !important;
}

.p-l-61 {
  padding-left: 61px !important;
}

.p-l-62 {
  padding-left: 62px !important;
}

.p-l-63 {
  padding-left: 63px !important;
}

.p-l-64 {
  padding-left: 64px !important;
}

.p-l-65 {
  padding-left: 65px !important;
}

.p-l-66 {
  padding-left: 66px !important;
}

.p-l-67 {
  padding-left: 67px !important;
}

.p-l-68 {
  padding-left: 68px !important;
}

.p-l-69 {
  padding-left: 69px !important;
}

.p-l-70 {
  padding-left: 70px !important;
}

.p-l-71 {
  padding-left: 71px !important;
}

.p-l-72 {
  padding-left: 72px !important;
}

.p-l-73 {
  padding-left: 73px !important;
}

.p-l-74 {
  padding-left: 74px !important;
}

.p-l-75 {
  padding-left: 75px !important;
}

.p-l-76 {
  padding-left: 76px !important;
}

.p-l-77 {
  padding-left: 77px !important;
}

.p-l-78 {
  padding-left: 78px !important;
}

.p-l-79 {
  padding-left: 79px !important;
}

.p-l-80 {
  padding-left: 80px !important;
}

.p-l-81 {
  padding-left: 81px !important;
}

.p-l-82 {
  padding-left: 82px !important;
}

.p-l-83 {
  padding-left: 83px !important;
}

.p-l-84 {
  padding-left: 84px !important;
}

.p-l-85 {
  padding-left: 85px !important;
}

.p-l-86 {
  padding-left: 86px !important;
}

.p-l-87 {
  padding-left: 87px !important;
}

.p-l-88 {
  padding-left: 88px !important;
}

.p-l-89 {
  padding-left: 89px !important;
}

.p-l-90 {
  padding-left: 90px !important;
}

.p-l-91 {
  padding-left: 91px !important;
}

.p-l-92 {
  padding-left: 92px !important;
}

.p-l-93 {
  padding-left: 93px !important;
}

.p-l-94 {
  padding-left: 94px !important;
}

.p-l-95 {
  padding-left: 95px !important;
}

.p-l-96 {
  padding-left: 96px !important;
}

.p-l-97 {
  padding-left: 97px !important;
}

.p-l-98 {
  padding-left: 98px !important;
}

.p-l-99 {
  padding-left: 99px !important;
}

.p-l-100 {
  padding-left: 100px !important;
}

.p-l-101 {
  padding-left: 101px !important;
}

.p-l-102 {
  padding-left: 102px !important;
}

.p-l-103 {
  padding-left: 103px !important;
}

.p-l-104 {
  padding-left: 104px !important;
}

.p-l-105 {
  padding-left: 105px !important;
}

.p-l-106 {
  padding-left: 106px !important;
}

.p-l-107 {
  padding-left: 107px !important;
}

.p-l-108 {
  padding-left: 108px !important;
}

.p-l-109 {
  padding-left: 109px !important;
}

.p-l-110 {
  padding-left: 110px !important;
}

.p-l-111 {
  padding-left: 111px !important;
}

.p-l-112 {
  padding-left: 112px !important;
}

.p-l-113 {
  padding-left: 113px !important;
}

.p-l-114 {
  padding-left: 114px !important;
}

.p-l-115 {
  padding-left: 115px !important;
}

.p-l-116 {
  padding-left: 116px !important;
}

.p-l-117 {
  padding-left: 117px !important;
}

.p-l-118 {
  padding-left: 118px !important;
}

.p-l-119 {
  padding-left: 119px !important;
}

.p-l-120 {
  padding-left: 120px !important;
}

.p-l-121 {
  padding-left: 121px !important;
}

.p-l-122 {
  padding-left: 122px !important;
}

.p-l-123 {
  padding-left: 123px !important;
}

.p-l-124 {
  padding-left: 124px !important;
}

.p-l-125 {
  padding-left: 125px !important;
}

.p-l-126 {
  padding-left: 126px !important;
}

.p-l-127 {
  padding-left: 127px !important;
}

.p-l-128 {
  padding-left: 128px !important;
}

.p-l-129 {
  padding-left: 129px !important;
}

.p-l-130 {
  padding-left: 130px !important;
}

.p-l-131 {
  padding-left: 131px !important;
}

.p-l-132 {
  padding-left: 132px !important;
}

.p-l-133 {
  padding-left: 133px !important;
}

.p-l-134 {
  padding-left: 134px !important;
}

.p-l-135 {
  padding-left: 135px !important;
}

.p-l-136 {
  padding-left: 136px !important;
}

.p-l-137 {
  padding-left: 137px !important;
}

.p-l-138 {
  padding-left: 138px !important;
}

.p-l-139 {
  padding-left: 139px !important;
}

.p-l-140 {
  padding-left: 140px !important;
}

.p-l-141 {
  padding-left: 141px !important;
}

.p-l-142 {
  padding-left: 142px !important;
}

.p-l-143 {
  padding-left: 143px !important;
}

.p-l-144 {
  padding-left: 144px !important;
}

.p-l-145 {
  padding-left: 145px !important;
}

.p-l-146 {
  padding-left: 146px !important;
}

.p-l-147 {
  padding-left: 147px !important;
}

.p-l-148 {
  padding-left: 148px !important;
}

.p-l-149 {
  padding-left: 149px !important;
}

.p-l-150 {
  padding-left: 150px !important;
}

.p-l-151 {
  padding-left: 151px !important;
}

.p-l-152 {
  padding-left: 152px !important;
}

.p-l-153 {
  padding-left: 153px !important;
}

.p-l-154 {
  padding-left: 154px !important;
}

.p-l-155 {
  padding-left: 155px !important;
}

.p-l-156 {
  padding-left: 156px !important;
}

.p-l-157 {
  padding-left: 157px !important;
}

.p-l-158 {
  padding-left: 158px !important;
}

.p-l-159 {
  padding-left: 159px !important;
}

.p-l-160 {
  padding-left: 160px !important;
}

.p-l-161 {
  padding-left: 161px !important;
}

.p-l-162 {
  padding-left: 162px !important;
}

.p-l-163 {
  padding-left: 163px !important;
}

.p-l-164 {
  padding-left: 164px !important;
}

.p-l-165 {
  padding-left: 165px !important;
}

.p-l-166 {
  padding-left: 166px !important;
}

.p-l-167 {
  padding-left: 167px !important;
}

.p-l-168 {
  padding-left: 168px !important;
}

.p-l-169 {
  padding-left: 169px !important;
}

.p-l-170 {
  padding-left: 170px !important;
}

.p-l-171 {
  padding-left: 171px !important;
}

.p-l-172 {
  padding-left: 172px !important;
}

.p-l-173 {
  padding-left: 173px !important;
}

.p-l-174 {
  padding-left: 174px !important;
}

.p-l-175 {
  padding-left: 175px !important;
}

.p-l-176 {
  padding-left: 176px !important;
}

.p-l-177 {
  padding-left: 177px !important;
}

.p-l-178 {
  padding-left: 178px !important;
}

.p-l-179 {
  padding-left: 179px !important;
}

.p-l-180 {
  padding-left: 180px !important;
}

.p-l-181 {
  padding-left: 181px !important;
}

.p-l-182 {
  padding-left: 182px !important;
}

.p-l-183 {
  padding-left: 183px !important;
}

.p-l-184 {
  padding-left: 184px !important;
}

.p-l-185 {
  padding-left: 185px !important;
}

.p-l-186 {
  padding-left: 186px !important;
}

.p-l-187 {
  padding-left: 187px !important;
}

.p-l-188 {
  padding-left: 188px !important;
}

.p-l-189 {
  padding-left: 189px !important;
}

.p-l-190 {
  padding-left: 190px !important;
}

.p-l-191 {
  padding-left: 191px !important;
}

.p-l-192 {
  padding-left: 192px !important;
}

.p-l-193 {
  padding-left: 193px !important;
}

.p-l-194 {
  padding-left: 194px !important;
}

.p-l-195 {
  padding-left: 195px !important;
}

.p-l-196 {
  padding-left: 196px !important;
}

.p-l-197 {
  padding-left: 197px !important;
}

.p-l-198 {
  padding-left: 198px !important;
}

.p-l-199 {
  padding-left: 199px !important;
}

.p-l-200 {
  padding-left: 200px !important;
}

.p-l-201 {
  padding-left: 201px !important;
}

.p-l-202 {
  padding-left: 202px !important;
}

.p-l-203 {
  padding-left: 203px !important;
}

.p-l-204 {
  padding-left: 204px !important;
}

.p-l-205 {
  padding-left: 205px !important;
}

.p-l-206 {
  padding-left: 206px !important;
}

.p-l-207 {
  padding-left: 207px !important;
}

.p-l-208 {
  padding-left: 208px !important;
}

.p-l-209 {
  padding-left: 209px !important;
}

.p-l-210 {
  padding-left: 210px !important;
}

.p-l-211 {
  padding-left: 211px !important;
}

.p-l-212 {
  padding-left: 212px !important;
}

.p-l-213 {
  padding-left: 213px !important;
}

.p-l-214 {
  padding-left: 214px !important;
}

.p-l-215 {
  padding-left: 215px !important;
}

.p-l-216 {
  padding-left: 216px !important;
}

.p-l-217 {
  padding-left: 217px !important;
}

.p-l-218 {
  padding-left: 218px !important;
}

.p-l-219 {
  padding-left: 219px !important;
}

.p-l-220 {
  padding-left: 220px !important;
}

.p-l-221 {
  padding-left: 221px !important;
}

.p-l-222 {
  padding-left: 222px !important;
}

.p-l-223 {
  padding-left: 223px !important;
}

.p-l-224 {
  padding-left: 224px !important;
}

.p-l-225 {
  padding-left: 225px !important;
}

.p-l-226 {
  padding-left: 226px !important;
}

.p-l-227 {
  padding-left: 227px !important;
}

.p-l-228 {
  padding-left: 228px !important;
}

.p-l-229 {
  padding-left: 229px !important;
}

.p-l-230 {
  padding-left: 230px !important;
}

.p-l-231 {
  padding-left: 231px !important;
}

.p-l-232 {
  padding-left: 232px !important;
}

.p-l-233 {
  padding-left: 233px !important;
}

.p-l-234 {
  padding-left: 234px !important;
}

.p-l-235 {
  padding-left: 235px !important;
}

.p-l-236 {
  padding-left: 236px !important;
}

.p-l-237 {
  padding-left: 237px !important;
}

.p-l-238 {
  padding-left: 238px !important;
}

.p-l-239 {
  padding-left: 239px !important;
}

.p-l-240 {
  padding-left: 240px !important;
}

.p-l-241 {
  padding-left: 241px !important;
}

.p-l-242 {
  padding-left: 242px !important;
}

.p-l-243 {
  padding-left: 243px !important;
}

.p-l-244 {
  padding-left: 244px !important;
}

.p-l-245 {
  padding-left: 245px !important;
}

.p-l-246 {
  padding-left: 246px !important;
}

.p-l-247 {
  padding-left: 247px !important;
}

.p-l-248 {
  padding-left: 248px !important;
}

.p-l-249 {
  padding-left: 249px !important;
}

.p-l-250 {
  padding-left: 250px !important;
}

.p-r-0 {
  padding-right: 0px !important;
}

.p-r-1 {
  padding-right: 1px !important;
}

.p-r-2 {
  padding-right: 2px !important;
}

.p-r-3 {
  padding-right: 3px !important;
}

.p-r-4 {
  padding-right: 4px !important;
}

.p-r-5 {
  padding-right: 5px !important;
}

.p-r-6 {
  padding-right: 6px !important;
}

.p-r-7 {
  padding-right: 7px !important;
}

.p-r-8 {
  padding-right: 8px !important;
}

.p-r-9 {
  padding-right: 9px !important;
}

.p-r-10 {
  padding-right: 10px !important;
}

.p-r-11 {
  padding-right: 11px !important;
}

.p-r-12 {
  padding-right: 12px !important;
}

.p-r-13 {
  padding-right: 13px !important;
}

.p-r-14 {
  padding-right: 14px !important;
}

.p-r-15 {
  padding-right: 15px !important;
}

.p-r-16 {
  padding-right: 16px !important;
}

.p-r-17 {
  padding-right: 17px !important;
}

.p-r-18 {
  padding-right: 18px !important;
}

.p-r-19 {
  padding-right: 19px !important;
}

.p-r-20 {
  padding-right: 20px !important;
}

.p-r-21 {
  padding-right: 21px !important;
}

.p-r-22 {
  padding-right: 22px !important;
}

.p-r-23 {
  padding-right: 23px !important;
}

.p-r-24 {
  padding-right: 24px !important;
}

.p-r-25 {
  padding-right: 25px !important;
}

.p-r-26 {
  padding-right: 26px !important;
}

.p-r-27 {
  padding-right: 27px !important;
}

.p-r-28 {
  padding-right: 28px !important;
}

.p-r-29 {
  padding-right: 29px !important;
}

.p-r-30 {
  padding-right: 30px !important;
}

.p-r-31 {
  padding-right: 31px !important;
}

.p-r-32 {
  padding-right: 32px !important;
}

.p-r-33 {
  padding-right: 33px !important;
}

.p-r-34 {
  padding-right: 34px !important;
}

.p-r-35 {
  padding-right: 35px !important;
}

.p-r-36 {
  padding-right: 36px !important;
}

.p-r-37 {
  padding-right: 37px !important;
}

.p-r-38 {
  padding-right: 38px !important;
}

.p-r-39 {
  padding-right: 39px !important;
}

.p-r-40 {
  padding-right: 40px !important;
}

.p-r-41 {
  padding-right: 41px !important;
}

.p-r-42 {
  padding-right: 42px !important;
}

.p-r-43 {
  padding-right: 43px !important;
}

.p-r-44 {
  padding-right: 44px !important;
}

.p-r-45 {
  padding-right: 45px !important;
}

.p-r-46 {
  padding-right: 46px !important;
}

.p-r-47 {
  padding-right: 47px !important;
}

.p-r-48 {
  padding-right: 48px !important;
}

.p-r-49 {
  padding-right: 49px !important;
}

.p-r-50 {
  padding-right: 50px !important;
}

.p-r-51 {
  padding-right: 51px !important;
}

.p-r-52 {
  padding-right: 52px !important;
}

.p-r-53 {
  padding-right: 53px !important;
}

.p-r-54 {
  padding-right: 54px !important;
}

.p-r-55 {
  padding-right: 55px !important;
}

.p-r-56 {
  padding-right: 56px !important;
}

.p-r-57 {
  padding-right: 57px !important;
}

.p-r-58 {
  padding-right: 58px !important;
}

.p-r-59 {
  padding-right: 59px !important;
}

.p-r-60 {
  padding-right: 60px !important;
}

.p-r-61 {
  padding-right: 61px !important;
}

.p-r-62 {
  padding-right: 62px !important;
}

.p-r-63 {
  padding-right: 63px !important;
}

.p-r-64 {
  padding-right: 64px !important;
}

.p-r-65 {
  padding-right: 65px !important;
}

.p-r-66 {
  padding-right: 66px !important;
}

.p-r-67 {
  padding-right: 67px !important;
}

.p-r-68 {
  padding-right: 68px !important;
}

.p-r-69 {
  padding-right: 69px !important;
}

.p-r-70 {
  padding-right: 70px !important;
}

.p-r-71 {
  padding-right: 71px !important;
}

.p-r-72 {
  padding-right: 72px !important;
}

.p-r-73 {
  padding-right: 73px !important;
}

.p-r-74 {
  padding-right: 74px !important;
}

.p-r-75 {
  padding-right: 75px !important;
}

.p-r-76 {
  padding-right: 76px !important;
}

.p-r-77 {
  padding-right: 77px !important;
}

.p-r-78 {
  padding-right: 78px !important;
}

.p-r-79 {
  padding-right: 79px !important;
}

.p-r-80 {
  padding-right: 80px !important;
}

.p-r-81 {
  padding-right: 81px !important;
}

.p-r-82 {
  padding-right: 82px !important;
}

.p-r-83 {
  padding-right: 83px !important;
}

.p-r-84 {
  padding-right: 84px !important;
}

.p-r-85 {
  padding-right: 85px !important;
}

.p-r-86 {
  padding-right: 86px !important;
}

.p-r-87 {
  padding-right: 87px !important;
}

.p-r-88 {
  padding-right: 88px !important;
}

.p-r-89 {
  padding-right: 89px !important;
}

.p-r-90 {
  padding-right: 90px !important;
}

.p-r-91 {
  padding-right: 91px !important;
}

.p-r-92 {
  padding-right: 92px !important;
}

.p-r-93 {
  padding-right: 93px !important;
}

.p-r-94 {
  padding-right: 94px !important;
}

.p-r-95 {
  padding-right: 95px !important;
}

.p-r-96 {
  padding-right: 96px !important;
}

.p-r-97 {
  padding-right: 97px !important;
}

.p-r-98 {
  padding-right: 98px !important;
}

.p-r-99 {
  padding-right: 99px !important;
}

.p-r-100 {
  padding-right: 100px !important;
}

.p-r-101 {
  padding-right: 101px !important;
}

.p-r-102 {
  padding-right: 102px !important;
}

.p-r-103 {
  padding-right: 103px !important;
}

.p-r-104 {
  padding-right: 104px !important;
}

.p-r-105 {
  padding-right: 105px !important;
}

.p-r-106 {
  padding-right: 106px !important;
}

.p-r-107 {
  padding-right: 107px !important;
}

.p-r-108 {
  padding-right: 108px !important;
}

.p-r-109 {
  padding-right: 109px !important;
}

.p-r-110 {
  padding-right: 110px !important;
}

.p-r-111 {
  padding-right: 111px !important;
}

.p-r-112 {
  padding-right: 112px !important;
}

.p-r-113 {
  padding-right: 113px !important;
}

.p-r-114 {
  padding-right: 114px !important;
}

.p-r-115 {
  padding-right: 115px !important;
}

.p-r-116 {
  padding-right: 116px !important;
}

.p-r-117 {
  padding-right: 117px !important;
}

.p-r-118 {
  padding-right: 118px !important;
}

.p-r-119 {
  padding-right: 119px !important;
}

.p-r-120 {
  padding-right: 120px !important;
}

.p-r-121 {
  padding-right: 121px !important;
}

.p-r-122 {
  padding-right: 122px !important;
}

.p-r-123 {
  padding-right: 123px !important;
}

.p-r-124 {
  padding-right: 124px !important;
}

.p-r-125 {
  padding-right: 125px !important;
}

.p-r-126 {
  padding-right: 126px !important;
}

.p-r-127 {
  padding-right: 127px !important;
}

.p-r-128 {
  padding-right: 128px !important;
}

.p-r-129 {
  padding-right: 129px !important;
}

.p-r-130 {
  padding-right: 130px !important;
}

.p-r-131 {
  padding-right: 131px !important;
}

.p-r-132 {
  padding-right: 132px !important;
}

.p-r-133 {
  padding-right: 133px !important;
}

.p-r-134 {
  padding-right: 134px !important;
}

.p-r-135 {
  padding-right: 135px !important;
}

.p-r-136 {
  padding-right: 136px !important;
}

.p-r-137 {
  padding-right: 137px !important;
}

.p-r-138 {
  padding-right: 138px !important;
}

.p-r-139 {
  padding-right: 139px !important;
}

.p-r-140 {
  padding-right: 140px !important;
}

.p-r-141 {
  padding-right: 141px !important;
}

.p-r-142 {
  padding-right: 142px !important;
}

.p-r-143 {
  padding-right: 143px !important;
}

.p-r-144 {
  padding-right: 144px !important;
}

.p-r-145 {
  padding-right: 145px !important;
}

.p-r-146 {
  padding-right: 146px !important;
}

.p-r-147 {
  padding-right: 147px !important;
}

.p-r-148 {
  padding-right: 148px !important;
}

.p-r-149 {
  padding-right: 149px !important;
}

.p-r-150 {
  padding-right: 150px !important;
}

.p-r-151 {
  padding-right: 151px !important;
}

.p-r-152 {
  padding-right: 152px !important;
}

.p-r-153 {
  padding-right: 153px !important;
}

.p-r-154 {
  padding-right: 154px !important;
}

.p-r-155 {
  padding-right: 155px !important;
}

.p-r-156 {
  padding-right: 156px !important;
}

.p-r-157 {
  padding-right: 157px !important;
}

.p-r-158 {
  padding-right: 158px !important;
}

.p-r-159 {
  padding-right: 159px !important;
}

.p-r-160 {
  padding-right: 160px !important;
}

.p-r-161 {
  padding-right: 161px !important;
}

.p-r-162 {
  padding-right: 162px !important;
}

.p-r-163 {
  padding-right: 163px !important;
}

.p-r-164 {
  padding-right: 164px !important;
}

.p-r-165 {
  padding-right: 165px !important;
}

.p-r-166 {
  padding-right: 166px !important;
}

.p-r-167 {
  padding-right: 167px !important;
}

.p-r-168 {
  padding-right: 168px !important;
}

.p-r-169 {
  padding-right: 169px !important;
}

.p-r-170 {
  padding-right: 170px !important;
}

.p-r-171 {
  padding-right: 171px !important;
}

.p-r-172 {
  padding-right: 172px !important;
}

.p-r-173 {
  padding-right: 173px !important;
}

.p-r-174 {
  padding-right: 174px !important;
}

.p-r-175 {
  padding-right: 175px !important;
}

.p-r-176 {
  padding-right: 176px !important;
}

.p-r-177 {
  padding-right: 177px !important;
}

.p-r-178 {
  padding-right: 178px !important;
}

.p-r-179 {
  padding-right: 179px !important;
}

.p-r-180 {
  padding-right: 180px !important;
}

.p-r-181 {
  padding-right: 181px !important;
}

.p-r-182 {
  padding-right: 182px !important;
}

.p-r-183 {
  padding-right: 183px !important;
}

.p-r-184 {
  padding-right: 184px !important;
}

.p-r-185 {
  padding-right: 185px !important;
}

.p-r-186 {
  padding-right: 186px !important;
}

.p-r-187 {
  padding-right: 187px !important;
}

.p-r-188 {
  padding-right: 188px !important;
}

.p-r-189 {
  padding-right: 189px !important;
}

.p-r-190 {
  padding-right: 190px !important;
}

.p-r-191 {
  padding-right: 191px !important;
}

.p-r-192 {
  padding-right: 192px !important;
}

.p-r-193 {
  padding-right: 193px !important;
}

.p-r-194 {
  padding-right: 194px !important;
}

.p-r-195 {
  padding-right: 195px !important;
}

.p-r-196 {
  padding-right: 196px !important;
}

.p-r-197 {
  padding-right: 197px !important;
}

.p-r-198 {
  padding-right: 198px !important;
}

.p-r-199 {
  padding-right: 199px !important;
}

.p-r-200 {
  padding-right: 200px !important;
}

.p-r-201 {
  padding-right: 201px !important;
}

.p-r-202 {
  padding-right: 202px !important;
}

.p-r-203 {
  padding-right: 203px !important;
}

.p-r-204 {
  padding-right: 204px !important;
}

.p-r-205 {
  padding-right: 205px !important;
}

.p-r-206 {
  padding-right: 206px !important;
}

.p-r-207 {
  padding-right: 207px !important;
}

.p-r-208 {
  padding-right: 208px !important;
}

.p-r-209 {
  padding-right: 209px !important;
}

.p-r-210 {
  padding-right: 210px !important;
}

.p-r-211 {
  padding-right: 211px !important;
}

.p-r-212 {
  padding-right: 212px !important;
}

.p-r-213 {
  padding-right: 213px !important;
}

.p-r-214 {
  padding-right: 214px !important;
}

.p-r-215 {
  padding-right: 215px !important;
}

.p-r-216 {
  padding-right: 216px !important;
}

.p-r-217 {
  padding-right: 217px !important;
}

.p-r-218 {
  padding-right: 218px !important;
}

.p-r-219 {
  padding-right: 219px !important;
}

.p-r-220 {
  padding-right: 220px !important;
}

.p-r-221 {
  padding-right: 221px !important;
}

.p-r-222 {
  padding-right: 222px !important;
}

.p-r-223 {
  padding-right: 223px !important;
}

.p-r-224 {
  padding-right: 224px !important;
}

.p-r-225 {
  padding-right: 225px !important;
}

.p-r-226 {
  padding-right: 226px !important;
}

.p-r-227 {
  padding-right: 227px !important;
}

.p-r-228 {
  padding-right: 228px !important;
}

.p-r-229 {
  padding-right: 229px !important;
}

.p-r-230 {
  padding-right: 230px !important;
}

.p-r-231 {
  padding-right: 231px !important;
}

.p-r-232 {
  padding-right: 232px !important;
}

.p-r-233 {
  padding-right: 233px !important;
}

.p-r-234 {
  padding-right: 234px !important;
}

.p-r-235 {
  padding-right: 235px !important;
}

.p-r-236 {
  padding-right: 236px !important;
}

.p-r-237 {
  padding-right: 237px !important;
}

.p-r-238 {
  padding-right: 238px !important;
}

.p-r-239 {
  padding-right: 239px !important;
}

.p-r-240 {
  padding-right: 240px !important;
}

.p-r-241 {
  padding-right: 241px !important;
}

.p-r-242 {
  padding-right: 242px !important;
}

.p-r-243 {
  padding-right: 243px !important;
}

.p-r-244 {
  padding-right: 244px !important;
}

.p-r-245 {
  padding-right: 245px !important;
}

.p-r-246 {
  padding-right: 246px !important;
}

.p-r-247 {
  padding-right: 247px !important;
}

.p-r-248 {
  padding-right: 248px !important;
}

.p-r-249 {
  padding-right: 249px !important;
}

.p-r-250 {
  padding-right: 250px !important;
}

/*[ MARGIN ]
///////////////////////////////////////////////////////////
*/
.m-t-0 {
  margin-top: 0px !important;
}

.m-t-1 {
  margin-top: 1px !important;
}

.m-t-2 {
  margin-top: 2px !important;
}

.m-t-3 {
  margin-top: 3px !important;
}

.m-t-4 {
  margin-top: 4px !important;
}

.m-t-5 {
  margin-top: 5px !important;
}

.m-t-6 {
  margin-top: 6px !important;
}

.m-t-7 {
  margin-top: 7px !important;
}

.m-t-8 {
  margin-top: 8px !important;
}

.m-t-9 {
  margin-top: 9px !important;
}

.m-t-10 {
  margin-top: 10px !important;
}

.m-t-11 {
  margin-top: 11px !important;
}

.m-t-12 {
  margin-top: 12px !important;
}

.m-t-13 {
  margin-top: 13px !important;
}

.m-t-14 {
  margin-top: 14px !important;
}

.m-t-15 {
  margin-top: 15px !important;
}

.m-t-16 {
  margin-top: 16px !important;
}

.m-t-17 {
  margin-top: 17px !important;
}

.m-t-18 {
  margin-top: 18px !important;
}

.m-t-19 {
  margin-top: 19px !important;
}

.m-t-20 {
  margin-top: 20px !important;
}

.m-t-21 {
  margin-top: 21px !important;
}

.m-t-22 {
  margin-top: 22px !important;
}

.m-t-23 {
  margin-top: 23px !important;
}

.m-t-24 {
  margin-top: 24px !important;
}

.m-t-25 {
  margin-top: 25px !important;
}

.m-t-26 {
  margin-top: 26px !important;
}

.m-t-27 {
  margin-top: 27px !important;
}

.m-t-28 {
  margin-top: 28px !important;
}

.m-t-29 {
  margin-top: 29px !important;
}

.m-t-30 {
  margin-top: 30px !important;
}

.m-t-31 {
  margin-top: 31px !important;
}

.m-t-32 {
  margin-top: 32px !important;
}

.m-t-33 {
  margin-top: 33px !important;
}

.m-t-34 {
  margin-top: 34px !important;
}

.m-t-35 {
  margin-top: 35px !important;
}

.m-t-36 {
  margin-top: 36px !important;
}

.m-t-37 {
  margin-top: 37px !important;
}

.m-t-38 {
  margin-top: 38px !important;
}

.m-t-39 {
  margin-top: 39px !important;
}

.m-t-40 {
  margin-top: 40px !important;
}

.m-t-41 {
  margin-top: 41px !important;
}

.m-t-42 {
  margin-top: 42px !important;
}

.m-t-43 {
  margin-top: 43px !important;
}

.m-t-44 {
  margin-top: 44px !important;
}

.m-t-45 {
  margin-top: 45px !important;
}

.m-t-46 {
  margin-top: 46px !important;
}

.m-t-47 {
  margin-top: 47px !important;
}

.m-t-48 {
  margin-top: 48px !important;
}

.m-t-49 {
  margin-top: 49px !important;
}

.m-t-50 {
  margin-top: 50px !important;
}

.m-t-51 {
  margin-top: 51px !important;
}

.m-t-52 {
  margin-top: 52px !important;
}

.m-t-53 {
  margin-top: 53px !important;
}

.m-t-54 {
  margin-top: 54px !important;
}

.m-t-55 {
  margin-top: 55px !important;
}

.m-t-56 {
  margin-top: 56px !important;
}

.m-t-57 {
  margin-top: 57px !important;
}

.m-t-58 {
  margin-top: 58px !important;
}

.m-t-59 {
  margin-top: 59px !important;
}

.m-t-60 {
  margin-top: 60px !important;
}

.m-t-61 {
  margin-top: 61px !important;
}

.m-t-62 {
  margin-top: 62px !important;
}

.m-t-63 {
  margin-top: 63px !important;
}

.m-t-64 {
  margin-top: 64px !important;
}

.m-t-65 {
  margin-top: 65px !important;
}

.m-t-66 {
  margin-top: 66px !important;
}

.m-t-67 {
  margin-top: 67px !important;
}

.m-t-68 {
  margin-top: 68px !important;
}

.m-t-69 {
  margin-top: 69px !important;
}

.m-t-70 {
  margin-top: 70px !important;
}

.m-t-71 {
  margin-top: 71px !important;
}

.m-t-72 {
  margin-top: 72px !important;
}

.m-t-73 {
  margin-top: 73px !important;
}

.m-t-74 {
  margin-top: 74px !important;
}

.m-t-75 {
  margin-top: 75px !important;
}

.m-t-76 {
  margin-top: 76px !important;
}

.m-t-77 {
  margin-top: 77px !important;
}

.m-t-78 {
  margin-top: 78px !important;
}

.m-t-79 {
  margin-top: 79px !important;
}

.m-t-80 {
  margin-top: 80px !important;
}

.m-t-81 {
  margin-top: 81px !important;
}

.m-t-82 {
  margin-top: 82px !important;
}

.m-t-83 {
  margin-top: 83px !important;
}

.m-t-84 {
  margin-top: 84px !important;
}

.m-t-85 {
  margin-top: 85px !important;
}

.m-t-86 {
  margin-top: 86px !important;
}

.m-t-87 {
  margin-top: 87px !important;
}

.m-t-88 {
  margin-top: 88px !important;
}

.m-t-89 {
  margin-top: 89px !important;
}

.m-t-90 {
  margin-top: 90px !important;
}

.m-t-91 {
  margin-top: 91px !important;
}

.m-t-92 {
  margin-top: 92px !important;
}

.m-t-93 {
  margin-top: 93px !important;
}

.m-t-94 {
  margin-top: 94px !important;
}

.m-t-95 {
  margin-top: 95px !important;
}

.m-t-96 {
  margin-top: 96px !important;
}

.m-t-97 {
  margin-top: 97px !important;
}

.m-t-98 {
  margin-top: 98px !important;
}

.m-t-99 {
  margin-top: 99px !important;
}

.m-t-100 {
  margin-top: 100px !important;
}

.m-t-101 {
  margin-top: 101px !important;
}

.m-t-102 {
  margin-top: 102px !important;
}

.m-t-103 {
  margin-top: 103px !important;
}

.m-t-104 {
  margin-top: 104px !important;
}

.m-t-105 {
  margin-top: 105px !important;
}

.m-t-106 {
  margin-top: 106px !important;
}

.m-t-107 {
  margin-top: 107px !important;
}

.m-t-108 {
  margin-top: 108px !important;
}

.m-t-109 {
  margin-top: 109px !important;
}

.m-t-110 {
  margin-top: 110px !important;
}

.m-t-111 {
  margin-top: 111px !important;
}

.m-t-112 {
  margin-top: 112px !important;
}

.m-t-113 {
  margin-top: 113px !important;
}

.m-t-114 {
  margin-top: 114px !important;
}

.m-t-115 {
  margin-top: 115px !important;
}

.m-t-116 {
  margin-top: 116px !important;
}

.m-t-117 {
  margin-top: 117px !important;
}

.m-t-118 {
  margin-top: 118px !important;
}

.m-t-119 {
  margin-top: 119px !important;
}

.m-t-120 {
  margin-top: 120px !important;
}

.m-t-121 {
  margin-top: 121px !important;
}

.m-t-122 {
  margin-top: 122px !important;
}

.m-t-123 {
  margin-top: 123px !important;
}

.m-t-124 {
  margin-top: 124px !important;
}

.m-t-125 {
  margin-top: 125px !important;
}

.m-t-126 {
  margin-top: 126px !important;
}

.m-t-127 {
  margin-top: 127px !important;
}

.m-t-128 {
  margin-top: 128px !important;
}

.m-t-129 {
  margin-top: 129px !important;
}

.m-t-130 {
  margin-top: 130px !important;
}

.m-t-131 {
  margin-top: 131px !important;
}

.m-t-132 {
  margin-top: 132px !important;
}

.m-t-133 {
  margin-top: 133px !important;
}

.m-t-134 {
  margin-top: 134px !important;
}

.m-t-135 {
  margin-top: 135px !important;
}

.m-t-136 {
  margin-top: 136px !important;
}

.m-t-137 {
  margin-top: 137px !important;
}

.m-t-138 {
  margin-top: 138px !important;
}

.m-t-139 {
  margin-top: 139px !important;
}

.m-t-140 {
  margin-top: 140px !important;
}

.m-t-141 {
  margin-top: 141px !important;
}

.m-t-142 {
  margin-top: 142px !important;
}

.m-t-143 {
  margin-top: 143px !important;
}

.m-t-144 {
  margin-top: 144px !important;
}

.m-t-145 {
  margin-top: 145px !important;
}

.m-t-146 {
  margin-top: 146px !important;
}

.m-t-147 {
  margin-top: 147px !important;
}

.m-t-148 {
  margin-top: 148px !important;
}

.m-t-149 {
  margin-top: 149px !important;
}

.m-t-150 {
  margin-top: 150px !important;
}

.m-t-151 {
  margin-top: 151px !important;
}

.m-t-152 {
  margin-top: 152px !important;
}

.m-t-153 {
  margin-top: 153px !important;
}

.m-t-154 {
  margin-top: 154px !important;
}

.m-t-155 {
  margin-top: 155px !important;
}

.m-t-156 {
  margin-top: 156px !important;
}

.m-t-157 {
  margin-top: 157px !important;
}

.m-t-158 {
  margin-top: 158px !important;
}

.m-t-159 {
  margin-top: 159px !important;
}

.m-t-160 {
  margin-top: 160px !important;
}

.m-t-161 {
  margin-top: 161px !important;
}

.m-t-162 {
  margin-top: 162px !important;
}

.m-t-163 {
  margin-top: 163px !important;
}

.m-t-164 {
  margin-top: 164px !important;
}

.m-t-165 {
  margin-top: 165px !important;
}

.m-t-166 {
  margin-top: 166px !important;
}

.m-t-167 {
  margin-top: 167px !important;
}

.m-t-168 {
  margin-top: 168px !important;
}

.m-t-169 {
  margin-top: 169px !important;
}

.m-t-170 {
  margin-top: 170px !important;
}

.m-t-171 {
  margin-top: 171px !important;
}

.m-t-172 {
  margin-top: 172px !important;
}

.m-t-173 {
  margin-top: 173px !important;
}

.m-t-174 {
  margin-top: 174px !important;
}

.m-t-175 {
  margin-top: 175px !important;
}

.m-t-176 {
  margin-top: 176px !important;
}

.m-t-177 {
  margin-top: 177px !important;
}

.m-t-178 {
  margin-top: 178px !important;
}

.m-t-179 {
  margin-top: 179px !important;
}

.m-t-180 {
  margin-top: 180px !important;
}

.m-t-181 {
  margin-top: 181px !important;
}

.m-t-182 {
  margin-top: 182px !important;
}

.m-t-183 {
  margin-top: 183px !important;
}

.m-t-184 {
  margin-top: 184px !important;
}

.m-t-185 {
  margin-top: 185px !important;
}

.m-t-186 {
  margin-top: 186px !important;
}

.m-t-187 {
  margin-top: 187px !important;
}

.m-t-188 {
  margin-top: 188px !important;
}

.m-t-189 {
  margin-top: 189px !important;
}

.m-t-190 {
  margin-top: 190px !important;
}

.m-t-191 {
  margin-top: 191px !important;
}

.m-t-192 {
  margin-top: 192px !important;
}

.m-t-193 {
  margin-top: 193px !important;
}

.m-t-194 {
  margin-top: 194px !important;
}

.m-t-195 {
  margin-top: 195px !important;
}

.m-t-196 {
  margin-top: 196px !important;
}

.m-t-197 {
  margin-top: 197px !important;
}

.m-t-198 {
  margin-top: 198px !important;
}

.m-t-199 {
  margin-top: 199px !important;
}

.m-t-200 {
  margin-top: 200px !important;
}

.m-t-201 {
  margin-top: 201px !important;
}

.m-t-202 {
  margin-top: 202px !important;
}

.m-t-203 {
  margin-top: 203px !important;
}

.m-t-204 {
  margin-top: 204px !important;
}

.m-t-205 {
  margin-top: 205px !important;
}

.m-t-206 {
  margin-top: 206px !important;
}

.m-t-207 {
  margin-top: 207px !important;
}

.m-t-208 {
  margin-top: 208px !important;
}

.m-t-209 {
  margin-top: 209px !important;
}

.m-t-210 {
  margin-top: 210px !important;
}

.m-t-211 {
  margin-top: 211px !important;
}

.m-t-212 {
  margin-top: 212px !important;
}

.m-t-213 {
  margin-top: 213px !important;
}

.m-t-214 {
  margin-top: 214px !important;
}

.m-t-215 {
  margin-top: 215px !important;
}

.m-t-216 {
  margin-top: 216px !important;
}

.m-t-217 {
  margin-top: 217px !important;
}

.m-t-218 {
  margin-top: 218px !important;
}

.m-t-219 {
  margin-top: 219px !important;
}

.m-t-220 {
  margin-top: 220px !important;
}

.m-t-221 {
  margin-top: 221px !important;
}

.m-t-222 {
  margin-top: 222px !important;
}

.m-t-223 {
  margin-top: 223px !important;
}

.m-t-224 {
  margin-top: 224px !important;
}

.m-t-225 {
  margin-top: 225px !important;
}

.m-t-226 {
  margin-top: 226px !important;
}

.m-t-227 {
  margin-top: 227px !important;
}

.m-t-228 {
  margin-top: 228px !important;
}

.m-t-229 {
  margin-top: 229px !important;
}

.m-t-230 {
  margin-top: 230px !important;
}

.m-t-231 {
  margin-top: 231px !important;
}

.m-t-232 {
  margin-top: 232px !important;
}

.m-t-233 {
  margin-top: 233px !important;
}

.m-t-234 {
  margin-top: 234px !important;
}

.m-t-235 {
  margin-top: 235px !important;
}

.m-t-236 {
  margin-top: 236px !important;
}

.m-t-237 {
  margin-top: 237px !important;
}

.m-t-238 {
  margin-top: 238px !important;
}

.m-t-239 {
  margin-top: 239px !important;
}

.m-t-240 {
  margin-top: 240px !important;
}

.m-t-241 {
  margin-top: 241px !important;
}

.m-t-242 {
  margin-top: 242px !important;
}

.m-t-243 {
  margin-top: 243px !important;
}

.m-t-244 {
  margin-top: 244px !important;
}

.m-t-245 {
  margin-top: 245px !important;
}

.m-t-246 {
  margin-top: 246px !important;
}

.m-t-247 {
  margin-top: 247px !important;
}

.m-t-248 {
  margin-top: 248px !important;
}

.m-t-249 {
  margin-top: 249px !important;
}

.m-t-250 {
  margin-top: 250px !important;
}

.m-b-0 {
  margin-bottom: 0px !important;
}

.m-b-1 {
  margin-bottom: 1px !important;
}

.m-b-2 {
  margin-bottom: 2px !important;
}

.m-b-3 {
  margin-bottom: 3px !important;
}

.m-b-4 {
  margin-bottom: 4px !important;
}

.m-b-5 {
  margin-bottom: 5px !important;
}

.m-b-6 {
  margin-bottom: 6px !important;
}

.m-b-7 {
  margin-bottom: 7px !important;
}

.m-b-8 {
  margin-bottom: 8px !important;
}

.m-b-9 {
  margin-bottom: 9px !important;
}

.m-b-10 {
  margin-bottom: 10px !important;
}

.m-b-11 {
  margin-bottom: 11px !important;
}

.m-b-12 {
  margin-bottom: 12px !important;
}

.m-b-13 {
  margin-bottom: 13px !important;
}

.m-b-14 {
  margin-bottom: 14px !important;
}

.m-b-15 {
  margin-bottom: 15px !important;
}

.m-b-16 {
  margin-bottom: 16px !important;
}

.m-b-17 {
  margin-bottom: 17px !important;
}

.m-b-18 {
  margin-bottom: 18px !important;
}

.m-b-19 {
  margin-bottom: 19px !important;
}

.m-b-20 {
  margin-bottom: 20px !important;
}

.m-b-21 {
  margin-bottom: 21px !important;
}

.m-b-22 {
  margin-bottom: 22px !important;
}

.m-b-23 {
  margin-bottom: 23px !important;
}

.m-b-24 {
  margin-bottom: 24px !important;
}

.m-b-25 {
  margin-bottom: 25px !important;
}

.m-b-26 {
  margin-bottom: 26px !important;
}

.m-b-27 {
  margin-bottom: 27px !important;
}

.m-b-28 {
  margin-bottom: 28px !important;
}

.m-b-29 {
  margin-bottom: 29px !important;
}

.m-b-30 {
  margin-bottom: 30px !important;
}

.m-b-31 {
  margin-bottom: 31px !important;
}

.m-b-32 {
  margin-bottom: 32px !important;
}

.m-b-33 {
  margin-bottom: 33px !important;
}

.m-b-34 {
  margin-bottom: 34px !important;
}

.m-b-35 {
  margin-bottom: 35px !important;
}

.m-b-36 {
  margin-bottom: 36px !important;
}

.m-b-37 {
  margin-bottom: 37px !important;
}

.m-b-38 {
  margin-bottom: 38px !important;
}

.m-b-39 {
  margin-bottom: 39px !important;
}

.m-b-40 {
  margin-bottom: 40px !important;
}

.m-b-41 {
  margin-bottom: 41px !important;
}

.m-b-42 {
  margin-bottom: 42px !important;
}

.m-b-43 {
  margin-bottom: 43px !important;
}

.m-b-44 {
  margin-bottom: 44px !important;
}

.m-b-45 {
  margin-bottom: 45px !important;
}

.m-b-46 {
  margin-bottom: 46px !important;
}

.m-b-47 {
  margin-bottom: 47px !important;
}

.m-b-48 {
  margin-bottom: 48px !important;
}

.m-b-49 {
  margin-bottom: 49px !important;
}

.m-b-50 {
  margin-bottom: 50px !important;
}

.m-b-51 {
  margin-bottom: 51px !important;
}

.m-b-52 {
  margin-bottom: 52px !important;
}

.m-b-53 {
  margin-bottom: 53px !important;
}

.m-b-54 {
  margin-bottom: 54px !important;
}

.m-b-55 {
  margin-bottom: 55px !important;
}

.m-b-56 {
  margin-bottom: 56px !important;
}

.m-b-57 {
  margin-bottom: 57px !important;
}

.m-b-58 {
  margin-bottom: 58px !important;
}

.m-b-59 {
  margin-bottom: 59px !important;
}

.m-b-60 {
  margin-bottom: 60px !important;
}

.m-b-61 {
  margin-bottom: 61px !important;
}

.m-b-62 {
  margin-bottom: 62px !important;
}

.m-b-63 {
  margin-bottom: 63px !important;
}

.m-b-64 {
  margin-bottom: 64px !important;
}

.m-b-65 {
  margin-bottom: 65px !important;
}

.m-b-66 {
  margin-bottom: 66px !important;
}

.m-b-67 {
  margin-bottom: 67px !important;
}

.m-b-68 {
  margin-bottom: 68px !important;
}

.m-b-69 {
  margin-bottom: 69px !important;
}

.m-b-70 {
  margin-bottom: 70px !important;
}

.m-b-71 {
  margin-bottom: 71px !important;
}

.m-b-72 {
  margin-bottom: 72px !important;
}

.m-b-73 {
  margin-bottom: 73px !important;
}

.m-b-74 {
  margin-bottom: 74px !important;
}

.m-b-75 {
  margin-bottom: 75px !important;
}

.m-b-76 {
  margin-bottom: 76px !important;
}

.m-b-77 {
  margin-bottom: 77px !important;
}

.m-b-78 {
  margin-bottom: 78px !important;
}

.m-b-79 {
  margin-bottom: 79px !important;
}

.m-b-80 {
  margin-bottom: 80px !important;
}

.m-b-81 {
  margin-bottom: 81px !important;
}

.m-b-82 {
  margin-bottom: 82px !important;
}

.m-b-83 {
  margin-bottom: 83px !important;
}

.m-b-84 {
  margin-bottom: 84px !important;
}

.m-b-85 {
  margin-bottom: 85px !important;
}

.m-b-86 {
  margin-bottom: 86px !important;
}

.m-b-87 {
  margin-bottom: 87px !important;
}

.m-b-88 {
  margin-bottom: 88px !important;
}

.m-b-89 {
  margin-bottom: 89px !important;
}

.m-b-90 {
  margin-bottom: 90px !important;
}

.m-b-91 {
  margin-bottom: 91px !important;
}

.m-b-92 {
  margin-bottom: 92px !important;
}

.m-b-93 {
  margin-bottom: 93px !important;
}

.m-b-94 {
  margin-bottom: 94px !important;
}

.m-b-95 {
  margin-bottom: 95px !important;
}

.m-b-96 {
  margin-bottom: 96px !important;
}

.m-b-97 {
  margin-bottom: 97px !important;
}

.m-b-98 {
  margin-bottom: 98px !important;
}

.m-b-99 {
  margin-bottom: 99px !important;
}

.m-b-100 {
  margin-bottom: 100px !important;
}

.m-b-101 {
  margin-bottom: 101px !important;
}

.m-b-102 {
  margin-bottom: 102px !important;
}

.m-b-103 {
  margin-bottom: 103px !important;
}

.m-b-104 {
  margin-bottom: 104px !important;
}

.m-b-105 {
  margin-bottom: 105px !important;
}

.m-b-106 {
  margin-bottom: 106px !important;
}

.m-b-107 {
  margin-bottom: 107px !important;
}

.m-b-108 {
  margin-bottom: 108px !important;
}

.m-b-109 {
  margin-bottom: 109px !important;
}

.m-b-110 {
  margin-bottom: 110px !important;
}

.m-b-111 {
  margin-bottom: 111px !important;
}

.m-b-112 {
  margin-bottom: 112px !important;
}

.m-b-113 {
  margin-bottom: 113px !important;
}

.m-b-114 {
  margin-bottom: 114px !important;
}

.m-b-115 {
  margin-bottom: 115px !important;
}

.m-b-116 {
  margin-bottom: 116px !important;
}

.m-b-117 {
  margin-bottom: 117px !important;
}

.m-b-118 {
  margin-bottom: 118px !important;
}

.m-b-119 {
  margin-bottom: 119px !important;
}

.m-b-120 {
  margin-bottom: 120px !important;
}

.m-b-121 {
  margin-bottom: 121px !important;
}

.m-b-122 {
  margin-bottom: 122px !important;
}

.m-b-123 {
  margin-bottom: 123px !important;
}

.m-b-124 {
  margin-bottom: 124px !important;
}

.m-b-125 {
  margin-bottom: 125px !important;
}

.m-b-126 {
  margin-bottom: 126px !important;
}

.m-b-127 {
  margin-bottom: 127px !important;
}

.m-b-128 {
  margin-bottom: 128px !important;
}

.m-b-129 {
  margin-bottom: 129px !important;
}

.m-b-130 {
  margin-bottom: 130px !important;
}

.m-b-131 {
  margin-bottom: 131px !important;
}

.m-b-132 {
  margin-bottom: 132px !important;
}

.m-b-133 {
  margin-bottom: 133px !important;
}

.m-b-134 {
  margin-bottom: 134px !important;
}

.m-b-135 {
  margin-bottom: 135px !important;
}

.m-b-136 {
  margin-bottom: 136px !important;
}

.m-b-137 {
  margin-bottom: 137px !important;
}

.m-b-138 {
  margin-bottom: 138px !important;
}

.m-b-139 {
  margin-bottom: 139px !important;
}

.m-b-140 {
  margin-bottom: 140px !important;
}

.m-b-141 {
  margin-bottom: 141px !important;
}

.m-b-142 {
  margin-bottom: 142px !important;
}

.m-b-143 {
  margin-bottom: 143px !important;
}

.m-b-144 {
  margin-bottom: 144px !important;
}

.m-b-145 {
  margin-bottom: 145px !important;
}

.m-b-146 {
  margin-bottom: 146px !important;
}

.m-b-147 {
  margin-bottom: 147px !important;
}

.m-b-148 {
  margin-bottom: 148px !important;
}

.m-b-149 {
  margin-bottom: 149px !important;
}

.m-b-150 {
  margin-bottom: 150px !important;
}

.m-b-151 {
  margin-bottom: 151px !important;
}

.m-b-152 {
  margin-bottom: 152px !important;
}

.m-b-153 {
  margin-bottom: 153px !important;
}

.m-b-154 {
  margin-bottom: 154px !important;
}

.m-b-155 {
  margin-bottom: 155px !important;
}

.m-b-156 {
  margin-bottom: 156px !important;
}

.m-b-157 {
  margin-bottom: 157px !important;
}

.m-b-158 {
  margin-bottom: 158px !important;
}

.m-b-159 {
  margin-bottom: 159px !important;
}

.m-b-160 {
  margin-bottom: 160px !important;
}

.m-b-161 {
  margin-bottom: 161px !important;
}

.m-b-162 {
  margin-bottom: 162px !important;
}

.m-b-163 {
  margin-bottom: 163px !important;
}

.m-b-164 {
  margin-bottom: 164px !important;
}

.m-b-165 {
  margin-bottom: 165px !important;
}

.m-b-166 {
  margin-bottom: 166px !important;
}

.m-b-167 {
  margin-bottom: 167px !important;
}

.m-b-168 {
  margin-bottom: 168px !important;
}

.m-b-169 {
  margin-bottom: 169px !important;
}

.m-b-170 {
  margin-bottom: 170px !important;
}

.m-b-171 {
  margin-bottom: 171px !important;
}

.m-b-172 {
  margin-bottom: 172px !important;
}

.m-b-173 {
  margin-bottom: 173px !important;
}

.m-b-174 {
  margin-bottom: 174px !important;
}

.m-b-175 {
  margin-bottom: 175px !important;
}

.m-b-176 {
  margin-bottom: 176px !important;
}

.m-b-177 {
  margin-bottom: 177px !important;
}

.m-b-178 {
  margin-bottom: 178px !important;
}

.m-b-179 {
  margin-bottom: 179px !important;
}

.m-b-180 {
  margin-bottom: 180px !important;
}

.m-b-181 {
  margin-bottom: 181px !important;
}

.m-b-182 {
  margin-bottom: 182px !important;
}

.m-b-183 {
  margin-bottom: 183px !important;
}

.m-b-184 {
  margin-bottom: 184px !important;
}

.m-b-185 {
  margin-bottom: 185px !important;
}

.m-b-186 {
  margin-bottom: 186px !important;
}

.m-b-187 {
  margin-bottom: 187px !important;
}

.m-b-188 {
  margin-bottom: 188px !important;
}

.m-b-189 {
  margin-bottom: 189px !important;
}

.m-b-190 {
  margin-bottom: 190px !important;
}

.m-b-191 {
  margin-bottom: 191px !important;
}

.m-b-192 {
  margin-bottom: 192px !important;
}

.m-b-193 {
  margin-bottom: 193px !important;
}

.m-b-194 {
  margin-bottom: 194px !important;
}

.m-b-195 {
  margin-bottom: 195px !important;
}

.m-b-196 {
  margin-bottom: 196px !important;
}

.m-b-197 {
  margin-bottom: 197px !important;
}

.m-b-198 {
  margin-bottom: 198px !important;
}

.m-b-199 {
  margin-bottom: 199px !important;
}

.m-b-200 {
  margin-bottom: 200px !important;
}

.m-b-201 {
  margin-bottom: 201px !important;
}

.m-b-202 {
  margin-bottom: 202px !important;
}

.m-b-203 {
  margin-bottom: 203px !important;
}

.m-b-204 {
  margin-bottom: 204px !important;
}

.m-b-205 {
  margin-bottom: 205px !important;
}

.m-b-206 {
  margin-bottom: 206px !important;
}

.m-b-207 {
  margin-bottom: 207px !important;
}

.m-b-208 {
  margin-bottom: 208px !important;
}

.m-b-209 {
  margin-bottom: 209px !important;
}

.m-b-210 {
  margin-bottom: 210px !important;
}

.m-b-211 {
  margin-bottom: 211px !important;
}

.m-b-212 {
  margin-bottom: 212px !important;
}

.m-b-213 {
  margin-bottom: 213px !important;
}

.m-b-214 {
  margin-bottom: 214px !important;
}

.m-b-215 {
  margin-bottom: 215px !important;
}

.m-b-216 {
  margin-bottom: 216px !important;
}

.m-b-217 {
  margin-bottom: 217px !important;
}

.m-b-218 {
  margin-bottom: 218px !important;
}

.m-b-219 {
  margin-bottom: 219px !important;
}

.m-b-220 {
  margin-bottom: 220px !important;
}

.m-b-221 {
  margin-bottom: 221px !important;
}

.m-b-222 {
  margin-bottom: 222px !important;
}

.m-b-223 {
  margin-bottom: 223px !important;
}

.m-b-224 {
  margin-bottom: 224px !important;
}

.m-b-225 {
  margin-bottom: 225px !important;
}

.m-b-226 {
  margin-bottom: 226px !important;
}

.m-b-227 {
  margin-bottom: 227px !important;
}

.m-b-228 {
  margin-bottom: 228px !important;
}

.m-b-229 {
  margin-bottom: 229px !important;
}

.m-b-230 {
  margin-bottom: 230px !important;
}

.m-b-231 {
  margin-bottom: 231px !important;
}

.m-b-232 {
  margin-bottom: 232px !important;
}

.m-b-233 {
  margin-bottom: 233px !important;
}

.m-b-234 {
  margin-bottom: 234px !important;
}

.m-b-235 {
  margin-bottom: 235px !important;
}

.m-b-236 {
  margin-bottom: 236px !important;
}

.m-b-237 {
  margin-bottom: 237px !important;
}

.m-b-238 {
  margin-bottom: 238px !important;
}

.m-b-239 {
  margin-bottom: 239px !important;
}

.m-b-240 {
  margin-bottom: 240px !important;
}

.m-b-241 {
  margin-bottom: 241px !important;
}

.m-b-242 {
  margin-bottom: 242px !important;
}

.m-b-243 {
  margin-bottom: 243px !important;
}

.m-b-244 {
  margin-bottom: 244px !important;
}

.m-b-245 {
  margin-bottom: 245px !important;
}

.m-b-246 {
  margin-bottom: 246px !important;
}

.m-b-247 {
  margin-bottom: 247px !important;
}

.m-b-248 {
  margin-bottom: 248px !important;
}

.m-b-249 {
  margin-bottom: 249px !important;
}

.m-b-250 {
  margin-bottom: 250px !important;
}

.m-l-0 {
  margin-left: 0px !important;
}

.m-l-1 {
  margin-left: 1px !important;
}

.m-l-2 {
  margin-left: 2px !important;
}

.m-l-3 {
  margin-left: 3px !important;
}

.m-l-4 {
  margin-left: 4px !important;
}

.m-l-5 {
  margin-left: 5px !important;
}

.m-l-6 {
  margin-left: 6px !important;
}

.m-l-7 {
  margin-left: 7px !important;
}

.m-l-8 {
  margin-left: 8px !important;
}

.m-l-9 {
  margin-left: 9px !important;
}

.m-l-10 {
  margin-left: 10px !important;
}

.m-l-11 {
  margin-left: 11px !important;
}

.m-l-12 {
  margin-left: 12px !important;
}

.m-l-13 {
  margin-left: 13px !important;
}

.m-l-14 {
  margin-left: 14px !important;
}

.m-l-15 {
  margin-left: 15px !important;
}

.m-l-16 {
  margin-left: 16px !important;
}

.m-l-17 {
  margin-left: 17px !important;
}

.m-l-18 {
  margin-left: 18px !important;
}

.m-l-19 {
  margin-left: 19px !important;
}

.m-l-20 {
  margin-left: 20px !important;
}

.m-l-21 {
  margin-left: 21px !important;
}

.m-l-22 {
  margin-left: 22px !important;
}

.m-l-23 {
  margin-left: 23px !important;
}

.m-l-24 {
  margin-left: 24px !important;
}

.m-l-25 {
  margin-left: 25px !important;
}

.m-l-26 {
  margin-left: 26px !important;
}

.m-l-27 {
  margin-left: 27px !important;
}

.m-l-28 {
  margin-left: 28px !important;
}

.m-l-29 {
  margin-left: 29px !important;
}

.m-l-30 {
  margin-left: 30px !important;
}

.m-l-31 {
  margin-left: 31px !important;
}

.m-l-32 {
  margin-left: 32px !important;
}

.m-l-33 {
  margin-left: 33px !important;
}

.m-l-34 {
  margin-left: 34px !important;
}

.m-l-35 {
  margin-left: 35px !important;
}

.m-l-36 {
  margin-left: 36px !important;
}

.m-l-37 {
  margin-left: 37px !important;
}

.m-l-38 {
  margin-left: 38px !important;
}

.m-l-39 {
  margin-left: 39px !important;
}

.m-l-40 {
  margin-left: 40px !important;
}

.m-l-41 {
  margin-left: 41px !important;
}

.m-l-42 {
  margin-left: 42px !important;
}

.m-l-43 {
  margin-left: 43px !important;
}

.m-l-44 {
  margin-left: 44px !important;
}

.m-l-45 {
  margin-left: 45px !important;
}

.m-l-46 {
  margin-left: 46px !important;
}

.m-l-47 {
  margin-left: 47px !important;
}

.m-l-48 {
  margin-left: 48px !important;
}

.m-l-49 {
  margin-left: 49px !important;
}

.m-l-50 {
  margin-left: 50px !important;
}

.m-l-51 {
  margin-left: 51px !important;
}

.m-l-52 {
  margin-left: 52px !important;
}

.m-l-53 {
  margin-left: 53px !important;
}

.m-l-54 {
  margin-left: 54px !important;
}

.m-l-55 {
  margin-left: 55px !important;
}

.m-l-56 {
  margin-left: 56px !important;
}

.m-l-57 {
  margin-left: 57px !important;
}

.m-l-58 {
  margin-left: 58px !important;
}

.m-l-59 {
  margin-left: 59px !important;
}

.m-l-60 {
  margin-left: 60px !important;
}

.m-l-61 {
  margin-left: 61px !important;
}

.m-l-62 {
  margin-left: 62px !important;
}

.m-l-63 {
  margin-left: 63px !important;
}

.m-l-64 {
  margin-left: 64px !important;
}

.m-l-65 {
  margin-left: 65px !important;
}

.m-l-66 {
  margin-left: 66px !important;
}

.m-l-67 {
  margin-left: 67px !important;
}

.m-l-68 {
  margin-left: 68px !important;
}

.m-l-69 {
  margin-left: 69px !important;
}

.m-l-70 {
  margin-left: 70px !important;
}

.m-l-71 {
  margin-left: 71px !important;
}

.m-l-72 {
  margin-left: 72px !important;
}

.m-l-73 {
  margin-left: 73px !important;
}

.m-l-74 {
  margin-left: 74px !important;
}

.m-l-75 {
  margin-left: 75px !important;
}

.m-l-76 {
  margin-left: 76px !important;
}

.m-l-77 {
  margin-left: 77px !important;
}

.m-l-78 {
  margin-left: 78px !important;
}

.m-l-79 {
  margin-left: 79px !important;
}

.m-l-80 {
  margin-left: 80px !important;
}

.m-l-81 {
  margin-left: 81px !important;
}

.m-l-82 {
  margin-left: 82px !important;
}

.m-l-83 {
  margin-left: 83px !important;
}

.m-l-84 {
  margin-left: 84px !important;
}

.m-l-85 {
  margin-left: 85px !important;
}

.m-l-86 {
  margin-left: 86px !important;
}

.m-l-87 {
  margin-left: 87px !important;
}

.m-l-88 {
  margin-left: 88px !important;
}

.m-l-89 {
  margin-left: 89px !important;
}

.m-l-90 {
  margin-left: 90px !important;
}

.m-l-91 {
  margin-left: 91px !important;
}

.m-l-92 {
  margin-left: 92px !important;
}

.m-l-93 {
  margin-left: 93px !important;
}

.m-l-94 {
  margin-left: 94px !important;
}

.m-l-95 {
  margin-left: 95px !important;
}

.m-l-96 {
  margin-left: 96px !important;
}

.m-l-97 {
  margin-left: 97px !important;
}

.m-l-98 {
  margin-left: 98px !important;
}

.m-l-99 {
  margin-left: 99px !important;
}

.m-l-100 {
  margin-left: 100px !important;
}

.m-l-101 {
  margin-left: 101px !important;
}

.m-l-102 {
  margin-left: 102px !important;
}

.m-l-103 {
  margin-left: 103px !important;
}

.m-l-104 {
  margin-left: 104px !important;
}

.m-l-105 {
  margin-left: 105px !important;
}

.m-l-106 {
  margin-left: 106px !important;
}

.m-l-107 {
  margin-left: 107px !important;
}

.m-l-108 {
  margin-left: 108px !important;
}

.m-l-109 {
  margin-left: 109px !important;
}

.m-l-110 {
  margin-left: 110px !important;
}

.m-l-111 {
  margin-left: 111px !important;
}

.m-l-112 {
  margin-left: 112px !important;
}

.m-l-113 {
  margin-left: 113px !important;
}

.m-l-114 {
  margin-left: 114px !important;
}

.m-l-115 {
  margin-left: 115px !important;
}

.m-l-116 {
  margin-left: 116px !important;
}

.m-l-117 {
  margin-left: 117px !important;
}

.m-l-118 {
  margin-left: 118px !important;
}

.m-l-119 {
  margin-left: 119px !important;
}

.m-l-120 {
  margin-left: 120px !important;
}

.m-l-121 {
  margin-left: 121px !important;
}

.m-l-122 {
  margin-left: 122px !important;
}

.m-l-123 {
  margin-left: 123px !important;
}

.m-l-124 {
  margin-left: 124px !important;
}

.m-l-125 {
  margin-left: 125px !important;
}

.m-l-126 {
  margin-left: 126px !important;
}

.m-l-127 {
  margin-left: 127px !important;
}

.m-l-128 {
  margin-left: 128px !important;
}

.m-l-129 {
  margin-left: 129px !important;
}

.m-l-130 {
  margin-left: 130px !important;
}

.m-l-131 {
  margin-left: 131px !important;
}

.m-l-132 {
  margin-left: 132px !important;
}

.m-l-133 {
  margin-left: 133px !important;
}

.m-l-134 {
  margin-left: 134px !important;
}

.m-l-135 {
  margin-left: 135px !important;
}

.m-l-136 {
  margin-left: 136px !important;
}

.m-l-137 {
  margin-left: 137px !important;
}

.m-l-138 {
  margin-left: 138px !important;
}

.m-l-139 {
  margin-left: 139px !important;
}

.m-l-140 {
  margin-left: 140px !important;
}

.m-l-141 {
  margin-left: 141px !important;
}

.m-l-142 {
  margin-left: 142px !important;
}

.m-l-143 {
  margin-left: 143px !important;
}

.m-l-144 {
  margin-left: 144px !important;
}

.m-l-145 {
  margin-left: 145px !important;
}

.m-l-146 {
  margin-left: 146px !important;
}

.m-l-147 {
  margin-left: 147px !important;
}

.m-l-148 {
  margin-left: 148px !important;
}

.m-l-149 {
  margin-left: 149px !important;
}

.m-l-150 {
  margin-left: 150px !important;
}

.m-l-151 {
  margin-left: 151px !important;
}

.m-l-152 {
  margin-left: 152px !important;
}

.m-l-153 {
  margin-left: 153px !important;
}

.m-l-154 {
  margin-left: 154px !important;
}

.m-l-155 {
  margin-left: 155px !important;
}

.m-l-156 {
  margin-left: 156px !important;
}

.m-l-157 {
  margin-left: 157px !important;
}

.m-l-158 {
  margin-left: 158px !important;
}

.m-l-159 {
  margin-left: 159px !important;
}

.m-l-160 {
  margin-left: 160px !important;
}

.m-l-161 {
  margin-left: 161px !important;
}

.m-l-162 {
  margin-left: 162px !important;
}

.m-l-163 {
  margin-left: 163px !important;
}

.m-l-164 {
  margin-left: 164px !important;
}

.m-l-165 {
  margin-left: 165px !important;
}

.m-l-166 {
  margin-left: 166px !important;
}

.m-l-167 {
  margin-left: 167px !important;
}

.m-l-168 {
  margin-left: 168px !important;
}

.m-l-169 {
  margin-left: 169px !important;
}

.m-l-170 {
  margin-left: 170px !important;
}

.m-l-171 {
  margin-left: 171px !important;
}

.m-l-172 {
  margin-left: 172px !important;
}

.m-l-173 {
  margin-left: 173px !important;
}

.m-l-174 {
  margin-left: 174px !important;
}

.m-l-175 {
  margin-left: 175px !important;
}

.m-l-176 {
  margin-left: 176px !important;
}

.m-l-177 {
  margin-left: 177px !important;
}

.m-l-178 {
  margin-left: 178px !important;
}

.m-l-179 {
  margin-left: 179px !important;
}

.m-l-180 {
  margin-left: 180px !important;
}

.m-l-181 {
  margin-left: 181px !important;
}

.m-l-182 {
  margin-left: 182px !important;
}

.m-l-183 {
  margin-left: 183px !important;
}

.m-l-184 {
  margin-left: 184px !important;
}

.m-l-185 {
  margin-left: 185px !important;
}

.m-l-186 {
  margin-left: 186px !important;
}

.m-l-187 {
  margin-left: 187px !important;
}

.m-l-188 {
  margin-left: 188px !important;
}

.m-l-189 {
  margin-left: 189px !important;
}

.m-l-190 {
  margin-left: 190px !important;
}

.m-l-191 {
  margin-left: 191px !important;
}

.m-l-192 {
  margin-left: 192px !important;
}

.m-l-193 {
  margin-left: 193px !important;
}

.m-l-194 {
  margin-left: 194px !important;
}

.m-l-195 {
  margin-left: 195px !important;
}

.m-l-196 {
  margin-left: 196px !important;
}

.m-l-197 {
  margin-left: 197px !important;
}

.m-l-198 {
  margin-left: 198px !important;
}

.m-l-199 {
  margin-left: 199px !important;
}

.m-l-200 {
  margin-left: 200px !important;
}

.m-l-201 {
  margin-left: 201px !important;
}

.m-l-202 {
  margin-left: 202px !important;
}

.m-l-203 {
  margin-left: 203px !important;
}

.m-l-204 {
  margin-left: 204px !important;
}

.m-l-205 {
  margin-left: 205px !important;
}

.m-l-206 {
  margin-left: 206px !important;
}

.m-l-207 {
  margin-left: 207px !important;
}

.m-l-208 {
  margin-left: 208px !important;
}

.m-l-209 {
  margin-left: 209px !important;
}

.m-l-210 {
  margin-left: 210px !important;
}

.m-l-211 {
  margin-left: 211px !important;
}

.m-l-212 {
  margin-left: 212px !important;
}

.m-l-213 {
  margin-left: 213px !important;
}

.m-l-214 {
  margin-left: 214px !important;
}

.m-l-215 {
  margin-left: 215px !important;
}

.m-l-216 {
  margin-left: 216px !important;
}

.m-l-217 {
  margin-left: 217px !important;
}

.m-l-218 {
  margin-left: 218px !important;
}

.m-l-219 {
  margin-left: 219px !important;
}

.m-l-220 {
  margin-left: 220px !important;
}

.m-l-221 {
  margin-left: 221px !important;
}

.m-l-222 {
  margin-left: 222px !important;
}

.m-l-223 {
  margin-left: 223px !important;
}

.m-l-224 {
  margin-left: 224px !important;
}

.m-l-225 {
  margin-left: 225px !important;
}

.m-l-226 {
  margin-left: 226px !important;
}

.m-l-227 {
  margin-left: 227px !important;
}

.m-l-228 {
  margin-left: 228px !important;
}

.m-l-229 {
  margin-left: 229px !important;
}

.m-l-230 {
  margin-left: 230px !important;
}

.m-l-231 {
  margin-left: 231px !important;
}

.m-l-232 {
  margin-left: 232px !important;
}

.m-l-233 {
  margin-left: 233px !important;
}

.m-l-234 {
  margin-left: 234px !important;
}

.m-l-235 {
  margin-left: 235px !important;
}

.m-l-236 {
  margin-left: 236px !important;
}

.m-l-237 {
  margin-left: 237px !important;
}

.m-l-238 {
  margin-left: 238px !important;
}

.m-l-239 {
  margin-left: 239px !important;
}

.m-l-240 {
  margin-left: 240px !important;
}

.m-l-241 {
  margin-left: 241px !important;
}

.m-l-242 {
  margin-left: 242px !important;
}

.m-l-243 {
  margin-left: 243px !important;
}

.m-l-244 {
  margin-left: 244px !important;
}

.m-l-245 {
  margin-left: 245px !important;
}

.m-l-246 {
  margin-left: 246px !important;
}

.m-l-247 {
  margin-left: 247px !important;
}

.m-l-248 {
  margin-left: 248px !important;
}

.m-l-249 {
  margin-left: 249px !important;
}

.m-l-250 {
  margin-left: 250px !important;
}

.m-r-0 {
  margin-right: 0px !important;
}

.m-r-1 {
  margin-right: 1px !important;
}

.m-r-2 {
  margin-right: 2px !important;
}

.m-r-3 {
  margin-right: 3px !important;
}

.m-r-4 {
  margin-right: 4px !important;
}

.m-r-5 {
  margin-right: 5px !important;
}

.m-r-6 {
  margin-right: 6px !important;
}

.m-r-7 {
  margin-right: 7px !important;
}

.m-r-8 {
  margin-right: 8px !important;
}

.m-r-9 {
  margin-right: 9px !important;
}

.m-r-10 {
  margin-right: 10px !important;
}

.m-r-11 {
  margin-right: 11px !important;
}

.m-r-12 {
  margin-right: 12px !important;
}

.m-r-13 {
  margin-right: 13px !important;
}

.m-r-14 {
  margin-right: 14px !important;
}

.m-r-15 {
  margin-right: 15px !important;
}

.m-r-16 {
  margin-right: 16px !important;
}

.m-r-17 {
  margin-right: 17px !important;
}

.m-r-18 {
  margin-right: 18px !important;
}

.m-r-19 {
  margin-right: 19px !important;
}

.m-r-20 {
  margin-right: 20px !important;
}

.m-r-21 {
  margin-right: 21px !important;
}

.m-r-22 {
  margin-right: 22px !important;
}

.m-r-23 {
  margin-right: 23px !important;
}

.m-r-24 {
  margin-right: 24px !important;
}

.m-r-25 {
  margin-right: 25px !important;
}

.m-r-26 {
  margin-right: 26px !important;
}

.m-r-27 {
  margin-right: 27px !important;
}

.m-r-28 {
  margin-right: 28px !important;
}

.m-r-29 {
  margin-right: 29px !important;
}

.m-r-30 {
  margin-right: 30px !important;
}

.m-r-31 {
  margin-right: 31px !important;
}

.m-r-32 {
  margin-right: 32px !important;
}

.m-r-33 {
  margin-right: 33px !important;
}

.m-r-34 {
  margin-right: 34px !important;
}

.m-r-35 {
  margin-right: 35px !important;
}

.m-r-36 {
  margin-right: 36px !important;
}

.m-r-37 {
  margin-right: 37px !important;
}

.m-r-38 {
  margin-right: 38px !important;
}

.m-r-39 {
  margin-right: 39px !important;
}

.m-r-40 {
  margin-right: 40px !important;
}

.m-r-41 {
  margin-right: 41px !important;
}

.m-r-42 {
  margin-right: 42px !important;
}

.m-r-43 {
  margin-right: 43px !important;
}

.m-r-44 {
  margin-right: 44px !important;
}

.m-r-45 {
  margin-right: 45px !important;
}

.m-r-46 {
  margin-right: 46px !important;
}

.m-r-47 {
  margin-right: 47px !important;
}

.m-r-48 {
  margin-right: 48px !important;
}

.m-r-49 {
  margin-right: 49px !important;
}

.m-r-50 {
  margin-right: 50px !important;
}

.m-r-51 {
  margin-right: 51px !important;
}

.m-r-52 {
  margin-right: 52px !important;
}

.m-r-53 {
  margin-right: 53px !important;
}

.m-r-54 {
  margin-right: 54px !important;
}

.m-r-55 {
  margin-right: 55px !important;
}

.m-r-56 {
  margin-right: 56px !important;
}

.m-r-57 {
  margin-right: 57px !important;
}

.m-r-58 {
  margin-right: 58px !important;
}

.m-r-59 {
  margin-right: 59px !important;
}

.m-r-60 {
  margin-right: 60px !important;
}

.m-r-61 {
  margin-right: 61px !important;
}

.m-r-62 {
  margin-right: 62px !important;
}

.m-r-63 {
  margin-right: 63px !important;
}

.m-r-64 {
  margin-right: 64px !important;
}

.m-r-65 {
  margin-right: 65px !important;
}

.m-r-66 {
  margin-right: 66px !important;
}

.m-r-67 {
  margin-right: 67px !important;
}

.m-r-68 {
  margin-right: 68px !important;
}

.m-r-69 {
  margin-right: 69px !important;
}

.m-r-70 {
  margin-right: 70px !important;
}

.m-r-71 {
  margin-right: 71px !important;
}

.m-r-72 {
  margin-right: 72px !important;
}

.m-r-73 {
  margin-right: 73px !important;
}

.m-r-74 {
  margin-right: 74px !important;
}

.m-r-75 {
  margin-right: 75px !important;
}

.m-r-76 {
  margin-right: 76px !important;
}

.m-r-77 {
  margin-right: 77px !important;
}

.m-r-78 {
  margin-right: 78px !important;
}

.m-r-79 {
  margin-right: 79px !important;
}

.m-r-80 {
  margin-right: 80px !important;
}

.m-r-81 {
  margin-right: 81px !important;
}

.m-r-82 {
  margin-right: 82px !important;
}

.m-r-83 {
  margin-right: 83px !important;
}

.m-r-84 {
  margin-right: 84px !important;
}

.m-r-85 {
  margin-right: 85px !important;
}

.m-r-86 {
  margin-right: 86px !important;
}

.m-r-87 {
  margin-right: 87px !important;
}

.m-r-88 {
  margin-right: 88px !important;
}

.m-r-89 {
  margin-right: 89px !important;
}

.m-r-90 {
  margin-right: 90px !important;
}

.m-r-91 {
  margin-right: 91px !important;
}

.m-r-92 {
  margin-right: 92px !important;
}

.m-r-93 {
  margin-right: 93px !important;
}

.m-r-94 {
  margin-right: 94px !important;
}

.m-r-95 {
  margin-right: 95px !important;
}

.m-r-96 {
  margin-right: 96px !important;
}

.m-r-97 {
  margin-right: 97px !important;
}

.m-r-98 {
  margin-right: 98px !important;
}

.m-r-99 {
  margin-right: 99px !important;
}

.m-r-100 {
  margin-right: 100px !important;
}

.m-r-101 {
  margin-right: 101px !important;
}

.m-r-102 {
  margin-right: 102px !important;
}

.m-r-103 {
  margin-right: 103px !important;
}

.m-r-104 {
  margin-right: 104px !important;
}

.m-r-105 {
  margin-right: 105px !important;
}

.m-r-106 {
  margin-right: 106px !important;
}

.m-r-107 {
  margin-right: 107px !important;
}

.m-r-108 {
  margin-right: 108px !important;
}

.m-r-109 {
  margin-right: 109px !important;
}

.m-r-110 {
  margin-right: 110px !important;
}

.m-r-111 {
  margin-right: 111px !important;
}

.m-r-112 {
  margin-right: 112px !important;
}

.m-r-113 {
  margin-right: 113px !important;
}

.m-r-114 {
  margin-right: 114px !important;
}

.m-r-115 {
  margin-right: 115px !important;
}

.m-r-116 {
  margin-right: 116px !important;
}

.m-r-117 {
  margin-right: 117px !important;
}

.m-r-118 {
  margin-right: 118px !important;
}

.m-r-119 {
  margin-right: 119px !important;
}

.m-r-120 {
  margin-right: 120px !important;
}

.m-r-121 {
  margin-right: 121px !important;
}

.m-r-122 {
  margin-right: 122px !important;
}

.m-r-123 {
  margin-right: 123px !important;
}

.m-r-124 {
  margin-right: 124px !important;
}

.m-r-125 {
  margin-right: 125px !important;
}

.m-r-126 {
  margin-right: 126px !important;
}

.m-r-127 {
  margin-right: 127px !important;
}

.m-r-128 {
  margin-right: 128px !important;
}

.m-r-129 {
  margin-right: 129px !important;
}

.m-r-130 {
  margin-right: 130px !important;
}

.m-r-131 {
  margin-right: 131px !important;
}

.m-r-132 {
  margin-right: 132px !important;
}

.m-r-133 {
  margin-right: 133px !important;
}

.m-r-134 {
  margin-right: 134px !important;
}

.m-r-135 {
  margin-right: 135px !important;
}

.m-r-136 {
  margin-right: 136px !important;
}

.m-r-137 {
  margin-right: 137px !important;
}

.m-r-138 {
  margin-right: 138px !important;
}

.m-r-139 {
  margin-right: 139px !important;
}

.m-r-140 {
  margin-right: 140px !important;
}

.m-r-141 {
  margin-right: 141px !important;
}

.m-r-142 {
  margin-right: 142px !important;
}

.m-r-143 {
  margin-right: 143px !important;
}

.m-r-144 {
  margin-right: 144px !important;
}

.m-r-145 {
  margin-right: 145px !important;
}

.m-r-146 {
  margin-right: 146px !important;
}

.m-r-147 {
  margin-right: 147px !important;
}

.m-r-148 {
  margin-right: 148px !important;
}

.m-r-149 {
  margin-right: 149px !important;
}

.m-r-150 {
  margin-right: 150px !important;
}

.m-r-151 {
  margin-right: 151px !important;
}

.m-r-152 {
  margin-right: 152px !important;
}

.m-r-153 {
  margin-right: 153px !important;
}

.m-r-154 {
  margin-right: 154px !important;
}

.m-r-155 {
  margin-right: 155px !important;
}

.m-r-156 {
  margin-right: 156px !important;
}

.m-r-157 {
  margin-right: 157px !important;
}

.m-r-158 {
  margin-right: 158px !important;
}

.m-r-159 {
  margin-right: 159px !important;
}

.m-r-160 {
  margin-right: 160px !important;
}

.m-r-161 {
  margin-right: 161px !important;
}

.m-r-162 {
  margin-right: 162px !important;
}

.m-r-163 {
  margin-right: 163px !important;
}

.m-r-164 {
  margin-right: 164px !important;
}

.m-r-165 {
  margin-right: 165px !important;
}

.m-r-166 {
  margin-right: 166px !important;
}

.m-r-167 {
  margin-right: 167px !important;
}

.m-r-168 {
  margin-right: 168px !important;
}

.m-r-169 {
  margin-right: 169px !important;
}

.m-r-170 {
  margin-right: 170px !important;
}

.m-r-171 {
  margin-right: 171px !important;
}

.m-r-172 {
  margin-right: 172px !important;
}

.m-r-173 {
  margin-right: 173px !important;
}

.m-r-174 {
  margin-right: 174px !important;
}

.m-r-175 {
  margin-right: 175px !important;
}

.m-r-176 {
  margin-right: 176px !important;
}

.m-r-177 {
  margin-right: 177px !important;
}

.m-r-178 {
  margin-right: 178px !important;
}

.m-r-179 {
  margin-right: 179px !important;
}

.m-r-180 {
  margin-right: 180px !important;
}

.m-r-181 {
  margin-right: 181px !important;
}

.m-r-182 {
  margin-right: 182px !important;
}

.m-r-183 {
  margin-right: 183px !important;
}

.m-r-184 {
  margin-right: 184px !important;
}

.m-r-185 {
  margin-right: 185px !important;
}

.m-r-186 {
  margin-right: 186px !important;
}

.m-r-187 {
  margin-right: 187px !important;
}

.m-r-188 {
  margin-right: 188px !important;
}

.m-r-189 {
  margin-right: 189px !important;
}

.m-r-190 {
  margin-right: 190px !important;
}

.m-r-191 {
  margin-right: 191px !important;
}

.m-r-192 {
  margin-right: 192px !important;
}

.m-r-193 {
  margin-right: 193px !important;
}

.m-r-194 {
  margin-right: 194px !important;
}

.m-r-195 {
  margin-right: 195px !important;
}

.m-r-196 {
  margin-right: 196px !important;
}

.m-r-197 {
  margin-right: 197px !important;
}

.m-r-198 {
  margin-right: 198px !important;
}

.m-r-199 {
  margin-right: 199px !important;
}

.m-r-200 {
  margin-right: 200px !important;
}

.m-r-201 {
  margin-right: 201px !important;
}

.m-r-202 {
  margin-right: 202px !important;
}

.m-r-203 {
  margin-right: 203px !important;
}

.m-r-204 {
  margin-right: 204px !important;
}

.m-r-205 {
  margin-right: 205px !important;
}

.m-r-206 {
  margin-right: 206px !important;
}

.m-r-207 {
  margin-right: 207px !important;
}

.m-r-208 {
  margin-right: 208px !important;
}

.m-r-209 {
  margin-right: 209px !important;
}

.m-r-210 {
  margin-right: 210px !important;
}

.m-r-211 {
  margin-right: 211px !important;
}

.m-r-212 {
  margin-right: 212px !important;
}

.m-r-213 {
  margin-right: 213px !important;
}

.m-r-214 {
  margin-right: 214px !important;
}

.m-r-215 {
  margin-right: 215px !important;
}

.m-r-216 {
  margin-right: 216px !important;
}

.m-r-217 {
  margin-right: 217px !important;
}

.m-r-218 {
  margin-right: 218px !important;
}

.m-r-219 {
  margin-right: 219px !important;
}

.m-r-220 {
  margin-right: 220px !important;
}

.m-r-221 {
  margin-right: 221px !important;
}

.m-r-222 {
  margin-right: 222px !important;
}

.m-r-223 {
  margin-right: 223px !important;
}

.m-r-224 {
  margin-right: 224px !important;
}

.m-r-225 {
  margin-right: 225px !important;
}

.m-r-226 {
  margin-right: 226px !important;
}

.m-r-227 {
  margin-right: 227px !important;
}

.m-r-228 {
  margin-right: 228px !important;
}

.m-r-229 {
  margin-right: 229px !important;
}

.m-r-230 {
  margin-right: 230px !important;
}

.m-r-231 {
  margin-right: 231px !important;
}

.m-r-232 {
  margin-right: 232px !important;
}

.m-r-233 {
  margin-right: 233px !important;
}

.m-r-234 {
  margin-right: 234px !important;
}

.m-r-235 {
  margin-right: 235px !important;
}

.m-r-236 {
  margin-right: 236px !important;
}

.m-r-237 {
  margin-right: 237px !important;
}

.m-r-238 {
  margin-right: 238px !important;
}

.m-r-239 {
  margin-right: 239px !important;
}

.m-r-240 {
  margin-right: 240px !important;
}

.m-r-241 {
  margin-right: 241px !important;
}

.m-r-242 {
  margin-right: 242px !important;
}

.m-r-243 {
  margin-right: 243px !important;
}

.m-r-244 {
  margin-right: 244px !important;
}

.m-r-245 {
  margin-right: 245px !important;
}

.m-r-246 {
  margin-right: 246px !important;
}

.m-r-247 {
  margin-right: 247px !important;
}

.m-r-248 {
  margin-right: 248px !important;
}

.m-r-249 {
  margin-right: 249px !important;
}

.m-r-250 {
  margin-right: 250px !important;
}

.m-l-r-auto {
  margin-left: auto;
  margin-right: auto !important;
}

.m-l-auto {
  margin-left: auto !important;
}

.m-r-auto {
  margin-right: auto !important;
}

/*[ TEXT ]
///////////////////////////////////////////////////////////
*/
/* ------------------------------------ */
.text-white {
  color: white !important;
}

.text-black {
  color: black !important;
}

.text-hov-white:hover {
  color: white !important;
}

/* ------------------------------------ */
.text-up {
  text-transform: uppercase !important;
}

/* ------------------------------------ */
.text-center {
  text-align: center !important;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-middle {
  vertical-align: middle !important;
}

.text-italic {
  font-style: italic !important;
}

.text-justify {
  text-align: justify;
}

/* ------------------------------------ */
.lh-1-0 {
  line-height: 1 !important;
}

.lh-1-1 {
  line-height: 1.1 !important;
}

.lh-1-2 {
  line-height: 1.2 !important;
}

.lh-1-3 {
  line-height: 1.3 !important;
}

.lh-1-4 {
  line-height: 1.4 !important;
}

.lh-1-5 {
  line-height: 1.5 !important;
}

.lh-1-6 {
  line-height: 1.6 !important;
}

.lh-1-7 {
  line-height: 1.7 !important;
}

.lh-1-8 {
  line-height: 1.8 !important;
}

.lh-1-9 {
  line-height: 1.9 !important;
}

.lh-2-0 {
  line-height: 2 !important;
}

.lh-2-1 {
  line-height: 2.1 !important;
}

.lh-2-2 {
  line-height: 2.2 !important;
}

.lh-2-3 {
  line-height: 2.3 !important;
}

.lh-2-4 {
  line-height: 2.4 !important;
}

.lh-2-5 {
  line-height: 2.5 !important;
}

.lh-2-6 {
  line-height: 2.6 !important;
}

.lh-2-7 {
  line-height: 2.7 !important;
}

.lh-2-8 {
  line-height: 2.8 !important;
}

.lh-2-9 {
  line-height: 2.9 !important;
}

/*[ SHAPE ]
///////////////////////////////////////////////////////////
*/
/*[ Display ]
-----------------------------------------------------------
*/
.dis-none {
  display: none;
}

.dis-block {
  display: block;
}

.dis-inline {
  display: inline;
}

.dis-inline-block {
  display: inline-block;
}

.dis-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

/*[ Position ]
-----------------------------------------------------------
*/
.pos-relative {
  position: relative;
}

.pos-absolute {
  position: absolute;
}

.pos-fixed {
  position: fixed;
}

/*[ float ]
-----------------------------------------------------------
*/
.float-l {
  float: left;
}

.float-r {
  float: right;
}

/*[ Width & Height ]
-----------------------------------------------------------
*/
.sizefull {
  width: 100%;
  height: 100%;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.max-w-full {
  max-width: 100%;
}

.max-h-full {
  max-height: 100%;
}

.min-w-full {
  min-width: 100%;
}

.min-h-full {
  min-height: 100%;
}

/*[ Top Bottom Left Right ]
-----------------------------------------------------------
*/
.top-0 {
  top: 0;
}

.bottom-0 {
  bottom: 0;
}

.left-0 {
  left: 0;
}

.right-0 {
  right: 0;
}

.top-auto {
  top: auto;
}

.bottom-auto {
  bottom: auto;
}

.left-auto {
  left: auto;
}

.right-auto {
  right: auto;
}

/*[ Opacity ]
-----------------------------------------------------------
*/
.op-0-0 {
  opacity: 0;
}

.op-0-1 {
  opacity: 0.1;
}

.op-0-2 {
  opacity: 0.2;
}

.op-0-3 {
  opacity: 0.3;
}

.op-0-4 {
  opacity: 0.4;
}

.op-0-5 {
  opacity: 0.5;
}

.op-0-6 {
  opacity: 0.6;
}

.op-0-7 {
  opacity: 0.7;
}

.op-0-8 {
  opacity: 0.8;
}

.op-0-9 {
  opacity: 0.9;
}

.op-1-0 {
  opacity: 1;
}

/*[ Background ]
-----------------------------------------------------------
*/
.bgwhite {
  background-color: white;
}

.bgblack {
  background-color: black;
}

/*[ Wrap Picture ]
-----------------------------------------------------------
*/
.wrap-pic-w img {
  width: 100%;
}

.wrap-pic-max-w img {
  max-width: 100%;
}

/* ------------------------------------ */
.wrap-pic-h img {
  height: 100%;
}

.wrap-pic-max-h img {
  max-height: 100%;
}

/* ------------------------------------ */
.wrap-pic-cir {
  border-radius: 50%;
  overflow: hidden;
}

.wrap-pic-cir img {
  width: 100%;
}

/*[ Hover ]
-----------------------------------------------------------
*/
.hov-pointer:hover {
  cursor: pointer;
}

/* ------------------------------------ */
.hov-img-zoom {
  display: block;
  overflow: hidden;
}

.hov-img-zoom img {
  width: 100%;
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}

.hov-img-zoom:hover img {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
}

/*[  ]
-----------------------------------------------------------
*/
.bo-cir {
  border-radius: 50%;
}

.of-hidden {
  overflow: hidden;
}

.visible-false {
  visibility: hidden;
}

.visible-true {
  visibility: visible;
}

/*[ Transition ]
-----------------------------------------------------------
*/
.trans-0-1 {
  -webkit-transition: all 0.1s;
  -o-transition: all 0.1s;
  -moz-transition: all 0.1s;
  transition: all 0.1s;
}

.trans-0-2 {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  -moz-transition: all 0.2s;
  transition: all 0.2s;
}

.trans-0-3 {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  -moz-transition: all 0.3s;
  transition: all 0.3s;
}

.trans-0-4 {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  -moz-transition: all 0.4s;
  transition: all 0.4s;
}

.trans-0-5 {
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

.trans-0-6 {
  -webkit-transition: all 0.6s;
  -o-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}

.trans-0-9 {
  -webkit-transition: all 0.9s;
  -o-transition: all 0.9s;
  -moz-transition: all 0.9s;
  transition: all 0.9s;
}

.trans-1-0 {
  -webkit-transition: all 1s;
  -o-transition: all 1s;
  -moz-transition: all 1s;
  transition: all 1s;
}

/*[ Layout ]
///////////////////////////////////////////////////////////
*/
/*[ Flex ]
-----------------------------------------------------------
*/
/* ------------------------------------ */
.flex-w {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

/* ------------------------------------ */
.flex-l {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
}

.flex-r {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
}

.flex-c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
}

.flex-sa {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
}

.flex-sb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
}

/* ------------------------------------ */
.flex-t {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.flex-b {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: flex-end;
  align-items: flex-end;
}

.flex-m {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: center;
  align-items: center;
}

.flex-str {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -ms-align-items: stretch;
  align-items: stretch;
}

/* ------------------------------------ */
.flex-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -moz-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  -o-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}

.flex-col-rev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -o-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

/* ------------------------------------ */
.flex-c-m {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -ms-align-items: center;
  align-items: center;
}

.flex-c-t {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.flex-c-b {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -ms-align-items: flex-end;
  align-items: flex-end;
}

.flex-c-str {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: center;
  -ms-align-items: stretch;
  align-items: stretch;
}

.flex-l-m {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
}

.flex-r-m {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-end;
  -ms-align-items: center;
  align-items: center;
}

.flex-sa-m {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-around;
  -ms-align-items: center;
  align-items: center;
}

.flex-sb-m {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: space-between;
  -ms-align-items: center;
  align-items: center;
}

/* ------------------------------------ */
.flex-col-l {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.flex-col-r {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: flex-end;
  align-items: flex-end;
}

.flex-col-c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
}

.flex-col-l-m {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: flex-start;
  align-items: flex-start;
  justify-content: center;
}

.flex-col-r-m {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: flex-end;
  align-items: flex-end;
  justify-content: center;
}

.flex-col-c-m {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}

.flex-col-str {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: stretch;
  align-items: stretch;
}

.flex-col-sb {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  justify-content: space-between;
}

/* ------------------------------------ */
.flex-col-rev-l {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -o-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -ms-align-items: flex-start;
  align-items: flex-start;
}

.flex-col-rev-r {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -o-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -ms-align-items: flex-end;
  align-items: flex-end;
}

.flex-col-rev-c {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -o-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -ms-align-items: center;
  align-items: center;
}

.flex-col-rev-str {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column-reverse;
  -moz-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  -o-flex-direction: column-reverse;
  flex-direction: column-reverse;
  -ms-align-items: stretch;
  align-items: stretch;
}

/*[ Absolute ]
-----------------------------------------------------------
*/
.ab-c-m {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.ab-c-t {
  position: absolute;
  top: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.ab-c-b {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -o-transform: translateX(-50%);
  transform: translateX(-50%);
}

.ab-l-m {
  position: absolute;
  left: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ab-r-m {
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.ab-t-l {
  position: absolute;
  left: 0px;
  top: 0px;
}

.ab-t-r {
  position: absolute;
  right: 0px;
  top: 0px;
}

.ab-b-l {
  position: absolute;
  left: 0px;
  bottom: 0px;
}

.ab-b-r {
  position: absolute;
  right: 0px;
  bottom: 0px;
}

.radius-0 {
  border-radius: 0px;
}

.radius-3 {
  border-radius: 3px;
}

.radius-5 {
  border-radius: 5px;
}

.radius-10 {
  border-radius: 10px;
}

.radius-20 {
  border-radius: 20px;
}

.bold {
  font-weight: bold;
}

.bold-100 {
  font-weight: 100;
}

.bold-300 {
  font-weight: 300;
}

.bold-400 {
  font-weight: 400;
}

.bold-500 {
  font-weight: 500;
}

.bold-700 {
  font-weight: 700;
}

.bold-800 {
  font-weight: 800;
}

.bold-900 {
  font-weight: 900;
}
.highlight {
  position: relative;
  background: #1e1e3f;
  border-radius: 0.475rem;
  padding: 1.75rem 1.5rem 1.75rem 1.5rem;
}
.highlight .nav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  margin-top: -0.25rem;
}
.highlight .nav .nav-item {
  margin-right: 0.75rem;
}
.highlight .nav .nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.35rem 1rem;
  border-radius: 0.475rem;
  color: rgba(255, 255, 255, 0.75);
  transition: all 0.2s ease;
  background-color: transparent;
}
.highlight .nav .nav-link:focus, .highlight .nav .nav-link.active {
  transition: all 0.2s ease;
  background-color: #2d2d5e;
  color: rgba(255, 255, 255, 0.75);
}
.highlight .highlight-copy {
  display: none;
  position: absolute;
  right: 1.75rem;
  top: 1.5rem;
  font-size: 0.85rem;
  font-weight: 500;
  padding: 0.35rem 1rem !important;
  transition: all 0.2s ease;
  background-color: #2d2d5e;
  color: rgba(255, 255, 255, 0.75);
}
.highlight .highlight-copy:focus, .highlight .highlight-copy:hover {
  transition: all 0.2s ease;
  background-color: #323268;
  color: #009EF7;
}
.highlight:hover .highlight-copy {
  display: flex;
}
.highlight .highlight-code pre {
  background-color: transparent;
  overflow: auto;
  padding: 0;
  margin: 0;
  scrollbar-color: #323268 transparent;
}
.highlight .highlight-code pre::-webkit-scrollbar-thumb {
  background-color: #323268;
}
.highlight .highlight-code pre code[class*=language-] {
  padding: 0;
  margin: 0;
  font-size: 1rem !important;
}

.fslightbox-slide-btn {
  border-radius: 0.475rem;
}

.fslightbox-toolbar {
  border-bottom-left-radius: 0.475rem;
}

.select2-container--bootstrap5 .select2-selection {
  box-shadow: none !important;
  height: auto;
  outline: none !important;
}
.select2-container--bootstrap5.select2-container--focus .form-select-solid, .select2-container--bootstrap5.select2-container--open .form-select-solid {
  background-color: #eef3f7;
}
.select2-container--bootstrap5.select2-container--focus .form-select:not(.form-select-solid):not(.form-select-transparent), .select2-container--bootstrap5.select2-container--open .form-select:not(.form-select-solid):not(.form-select-transparent) {
  border-color: #B5B5C3;
}
.select2-container--bootstrap5 .select2-search.select2-search--inline .select2-search__field {
  color: #5E6278;
  font-weight: 500;
  background-color: transparent;
  border: 0;
  box-shadow: none;
  outline: none;
  margin: 0;
  padding: 0;
}
.select2-container--bootstrap5 .select2-search.select2-search--inline .select2-search__field::placeholder {
  color: #A1A5B7;
}
.select2-container--bootstrap5 .select2-search.select2-search--inline .select2-search__field::-moz-placeholder {
  color: #A1A5B7;
  opacity: 1;
}
.select2-container--bootstrap5 .form-select-solid .select2-search.select2-search--inline .select2-search__field {
  color: #5E6278;
}
.select2-container--bootstrap5 .form-select-solid .select2-search.select2-search--inline .select2-search__field::placeholder {
  color: #A1A5B7;
}
.select2-container--bootstrap5 .form-select-solid .select2-search.select2-search--inline .select2-search__field::-moz-placeholder {
  color: #A1A5B7;
  opacity: 1;
}
.select2-container--bootstrap5 .select2-selection--single {
  display: flex;
  align-items: center;
}
.select2-container--bootstrap5 .select2-selection--single .select2-selection__rendered {
  display: block;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: #5E6278;
}
.select2-container--bootstrap5 .select2-selection--single .select2-selection__placeholder {
  color: #A1A5B7;
}
.select2-container--bootstrap5 .select2-selection--single.form-select-solid .select2-selection__rendered {
  color: #5E6278;
}
.select2-container--bootstrap5 .select2-selection--single.form-select-solid .select2-selection__placeholder {
  color: #A1A5B7;
}
.select2-container--bootstrap5 .select2-selection--single.form-select-transparent .select2-selection__rendered {
  color: #3F4254;
}
.select2-container--bootstrap5 .select2-selection--single.form-select-transparent .select2-selection__placeholder {
  color: #3F4254;
}
.select2-container--bootstrap5 .select2-selection--single.form-select-dark .select2-selection__rendered {
  color: #181C32;
}
.select2-container--bootstrap5 .select2-selection--multiple .select2-search.select2-search--inline {
  display: inline;
}
.select2-container--bootstrap5 .select2-selection--multiple .select2-selection__rendered {
  display: inline;
  margin: 0;
  padding: 0;
}
.select2-container--bootstrap5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
  display: inline-flex;
  align-items: center;
  position: relative;
  background-color: #E4E6EF;
}
.select2-container--bootstrap5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove {
  display: block;
  position: absolute;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235E6278'%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");
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  opacity: 0.5;
  border: 0;
  transition: color 0.2s ease, background-color 0.2s ease;
  top: 50%;
}
.select2-container--bootstrap5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove span {
  display: none;
}
.select2-container--bootstrap5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__remove:hover {
  opacity: 1;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23009EF7'%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");
  transition: color 0.2s ease, background-color 0.2s ease;
}
.select2-container--bootstrap5 .select2-selection--multiple .select2-selection__rendered .select2-selection__choice .select2-selection__choice__display {
  font-weight: 500;
}
.select2-container--bootstrap5 .select2-selection--multiple:not(.form-select-sm):not(.form-select-lg) {
  padding-top: calc((1.5rem + 2px - 0.8rem) / 2);
  padding-bottom: calc((1.5rem + 2px - 0.8rem) / 2);
}
.select2-container--bootstrap5 .select2-selection--multiple:not(.form-select-sm):not(.form-select-lg) .select2-selection__choice {
  border-radius: 0.4rem;
  padding: 0.2rem 0.4rem;
  margin: 0.2rem 0.4rem 0.2rem 0;
}
.select2-container--bootstrap5 .select2-selection--multiple:not(.form-select-sm):not(.form-select-lg) .select2-selection__choice .select2-selection__choice__remove {
  height: 0.6rem;
  width: 0.6rem;
  margin-right: 0.5rem;
}
.select2-container--bootstrap5 .select2-selection--multiple:not(.form-select-sm):not(.form-select-lg) .select2-selection__choice .select2-selection__choice__display {
  margin-left: 1.2rem;
  font-size: 0.9rem;
}
.select2-container--bootstrap5 .select2-selection--multiple:not(.form-select-sm):not(.form-select-lg) .select2-search.select2-search--inline .select2-search__field {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: calc(0.75rem - (1.5rem + 2px - 0.8rem) / 2);
  margin-bottom: calc(0.75rem - (1.5rem + 2px - 0.8rem) / 2);
}
.select2-container--bootstrap5 .select2-selection--multiple.form-select-lg {
  padding-top: calc((1.65rem + 2px - 0.8rem) / 2);
  padding-bottom: calc((1.65rem + 2px - 0.8rem) / 2);
}
.select2-container--bootstrap5 .select2-selection--multiple.form-select-lg .select2-selection__choice {
  border-radius: 0.4rem;
  padding: 0.2rem 0.4rem;
  margin: 0.2rem 0.4rem 0.2rem 0;
}
.select2-container--bootstrap5 .select2-selection--multiple.form-select-lg .select2-selection__choice .select2-selection__choice__remove {
  height: 0.6rem;
  width: 0.6rem;
  margin-right: 0.5rem;
}
.select2-container--bootstrap5 .select2-selection--multiple.form-select-lg .select2-selection__choice .select2-selection__choice__display {
  margin-left: 1.2rem;
  font-size: 1rem;
}
.select2-container--bootstrap5 .select2-selection--multiple.form-select-lg .select2-search.select2-search--inline .select2-search__field {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: calc(0.825rem - (1.65rem + 2px - 0.8rem) / 2);
  margin-bottom: calc(0.825rem - (1.65rem + 2px - 0.8rem) / 2);
}
.select2-container--bootstrap5 .select2-selection--multiple.form-select-sm {
  padding-top: calc((1.1rem + 2px - 0.6rem) / 2);
  padding-bottom: calc((1.1rem + 2px - 0.6rem) / 2);
}
.select2-container--bootstrap5 .select2-selection--multiple.form-select-sm .select2-selection__choice {
  border-radius: 0.4rem;
  padding: 0.15rem 0.4rem;
  margin: 0.15rem 0.4rem 0.15rem 0;
}
.select2-container--bootstrap5 .select2-selection--multiple.form-select-sm .select2-selection__choice .select2-selection__choice__remove {
  height: 0.5rem;
  width: 0.5rem;
  margin-right: 0.5rem;
}
.select2-container--bootstrap5 .select2-selection--multiple.form-select-sm .select2-selection__choice .select2-selection__choice__display {
  margin-left: 1rem;
  font-size: 0.8rem;
}
.select2-container--bootstrap5 .select2-selection--multiple.form-select-sm .select2-search.select2-search--inline .select2-search__field {
  padding-top: 0;
  padding-bottom: 0;
  margin-top: calc(0.55rem - (1.1rem + 2px - 0.6rem) / 2);
  margin-bottom: calc(0.55rem - (1.1rem + 2px - 0.6rem) / 2);
}
.select2-container--bootstrap5 .select2-dropdown {
  border: 0;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  border-radius: 0.475rem;
  padding: 1rem 0;
  background-color: #ffffff;
}
.modal-open .select2-container--bootstrap5 .select2-dropdown {
  z-index: 1056;
}
.select2-container--bootstrap5 .select2-dropdown .select2-search {
  padding: 0.5rem 1.25rem;
  margin: 0 0 0.5rem 0;
}
.select2-container--bootstrap5 .select2-dropdown .select2-search .select2-search__field {
  background-color: #ffffff;
  padding: 0.55rem 0.75rem;
  color: #5E6278;
  font-size: 0.925rem;
  border: 1px solid #E4E6EF;
  border-radius: 0.325rem;
  outline: 0 !important;
}
.select2-container--bootstrap5 .select2-dropdown .select2-search .select2-search__field:focus, .select2-container--bootstrap5 .select2-dropdown .select2-search .select2-search__field:active {
  border-color: 1px solid #5E6278;
}
.select2-container--bootstrap5 .select2-dropdown .select2-results__options {
  max-height: 250px;
  overflow-y: auto;
}
.select2-container--bootstrap5 .select2-dropdown .select2-results__option {
  color: #5E6278;
  transition: color 0.2s ease, background-color 0.2s ease;
  padding: 0.75rem 1.25rem;
  margin: 0 0;
}
.select2-container--bootstrap5 .select2-dropdown .select2-results__option.select2-results__option--highlighted {
  background-color: #F1FAFF;
  color: #009EF7;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.select2-container--bootstrap5 .select2-dropdown .select2-results__option.select2-results__option--selected {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 14 11'%3e%3cpath fill='%23FFFFFF' d='M4.89557 6.49823L2.79487 4.26513C2.26967 3.70683 1.38251 3.70683 0.857309 4.26513C0.375593 4.77721 0.375593 5.57574 0.857309 6.08781L4.74989 10.2257C5.14476 10.6455 5.81176 10.6455 6.20663 10.2257L13.1427 2.85252C13.6244 2.34044 13.6244 1.54191 13.1427 1.02984C12.6175 0.471537 11.7303 0.471536 11.2051 1.02984L6.06096 6.49823C5.74506 6.83403 5.21146 6.83403 4.89557 6.49823Z'/%3e%3c/svg%3e");
  background-size: 0.8rem;
  background-position: center right 1.25rem;
  background-color: #009EF7;
  color: #FFFFFF;
  transition: color 0.2s ease, background-color 0.2s ease;
}
[dir=rtl] .select2-container--bootstrap5 .select2-dropdown .select2-results__option.select2-results__option--selected {
  background-position: center left 1.25rem;
}
.select2-container--bootstrap5 .select2-dropdown .select2-results__option.select2-results__option--disabled {
  color: #B5B5C3;
}
.select2-container--bootstrap5 .select2-dropdown .select2-results__option.select2-results__message {
  color: #7E8299;
}
.select2-container--bootstrap5 .select2-dropdown .select2-results__option.select2-results__option--group {
  padding-left: 0;
  padding-right: 0;
}
.select2-container--bootstrap5 .select2-dropdown .select2-results__option.select2-results__option--group .select2-results__group {
  display: block;
  color: #3F4254;
  font-weight: 500;
  font-size: 1.15rem;
  padding: 0 1.25rem 0 1.25rem;
  margin: 0 0 0.25rem 0;
}
.select2-container--bootstrap5 .select2-dropdown .select2-results__option.select2-results__option--group .select2-results__option {
  padding: 0.75rem 1.25rem;
  margin: 0 0;
}
.select2-container--bootstrap5 .select2-selection__clear {
  display: block;
  height: 0.7rem;
  width: 0.7rem;
  top: 50%;
  right: 3rem;
  position: absolute;
  transform: translateY(-50%);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%235E6278'%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");
  background-repeat: no-repeat;
  background-position: center;
}
[dir=rtl] .select2-container--bootstrap5 .select2-selection__clear {
  left: 3rem;
  right: auto;
}
.select2-container--bootstrap5 .select2-selection__clear span {
  display: none;
}
.select2-container--bootstrap5 .select2-selection__clear:hover {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23009EF7'%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");
}

.form-floating .form-select {
  padding-top: 2.15rem;
}

.fv-plugins-message-container {
  margin-top: 0.3rem;
}
.fv-plugins-message-container .fv-help-block {
  color: #F1416C;
  font-size: 1rem;
  font-weight: 400;
}
.fv-plugins-message-container.valid-feedback, .fv-plugins-message-container.invalid-feedback {
  display: block;
  font-weight: 400;
}

.daterangepicker {
  padding: 0;
  margin: 0;
  border: 0;
  width: auto;
  background-color: #ffffff;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  font-family: Poppins, Helvetica, "sans-serif";
  z-index: 1000;
  border-radius: 0.475rem;
}
.daterangepicker:after, .daterangepicker:before {
  display: none;
}
.daterangepicker td.off, .daterangepicker td.off.in-range, .daterangepicker td.off.start-date, .daterangepicker td.off.end-date {
  background-color: transparent;
}
.modal-open .daterangepicker {
  z-index: 1056;
}
.daterangepicker .calendar-table {
  background-color: #ffffff;
  border: 0;
}
.daterangepicker .ranges {
  border-radius: 0.475rem;
  background-color: #ffffff;
}
.daterangepicker .ranges ul {
  padding: 1rem 0;
  width: 175px;
}
.daterangepicker .ranges li {
  padding: 0.7rem 1.75rem;
  font-weight: 500;
  font-size: 1rem;
  color: #7E8299;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.daterangepicker .ranges li:hover {
  background-color: #F1FAFF;
  color: #009EF7;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.daterangepicker .ranges li.active {
  background-color: #009EF7;
  color: #FFFFFF;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.daterangepicker.show-calendar .ranges {
  border-radius: 0;
  border-top-left-radius: 0.475rem;
  margin-top: 0;
  height: 297px;
}
.daterangepicker.show-ranges.show-calendar .ranges {
  border-right: 1px solid #EFF2F5;
}
.daterangepicker.show-ranges .drp-calendar.left {
  border-left: 0;
}
.daterangepicker .drp-buttons {
  padding: 1rem 1.75rem;
  border-top: 1px solid #EFF2F5;
}
.daterangepicker .drp-buttons .btn {
  font-size: 1rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
}
.daterangepicker .drp-buttons .cancelBtn {
  color: #7E8299;
  border-color: #F5F8FA;
  background-color: #F5F8FA;
}
.daterangepicker .drp-buttons .cancelBtn i,
.daterangepicker .drp-buttons .cancelBtn .svg-icon {
  color: #7E8299;
}
.daterangepicker .drp-buttons .cancelBtn.dropdown-toggle:after {
  color: #7E8299;
}
.btn-check:checked + .daterangepicker .drp-buttons .cancelBtn, .btn-check:active + .daterangepicker .drp-buttons .cancelBtn, .daterangepicker .drp-buttons .cancelBtn:focus:not(.btn-active), .daterangepicker .drp-buttons .cancelBtn:hover:not(.btn-active), .daterangepicker .drp-buttons .cancelBtn:active:not(.btn-active), .daterangepicker .drp-buttons .cancelBtn.active, .daterangepicker .drp-buttons .cancelBtn.show, .show > .daterangepicker .drp-buttons .cancelBtn {
  color: #7E8299;
  border-color: #EFF2F5;
  background-color: #EFF2F5 !important;
}
.btn-check:checked + .daterangepicker .drp-buttons .cancelBtn i,
.btn-check:checked + .daterangepicker .drp-buttons .cancelBtn .svg-icon, .btn-check:active + .daterangepicker .drp-buttons .cancelBtn i,
.btn-check:active + .daterangepicker .drp-buttons .cancelBtn .svg-icon, .daterangepicker .drp-buttons .cancelBtn:focus:not(.btn-active) i,
.daterangepicker .drp-buttons .cancelBtn:focus:not(.btn-active) .svg-icon, .daterangepicker .drp-buttons .cancelBtn:hover:not(.btn-active) i,
.daterangepicker .drp-buttons .cancelBtn:hover:not(.btn-active) .svg-icon, .daterangepicker .drp-buttons .cancelBtn:active:not(.btn-active) i,
.daterangepicker .drp-buttons .cancelBtn:active:not(.btn-active) .svg-icon, .daterangepicker .drp-buttons .cancelBtn.active i,
.daterangepicker .drp-buttons .cancelBtn.active .svg-icon, .daterangepicker .drp-buttons .cancelBtn.show i,
.daterangepicker .drp-buttons .cancelBtn.show .svg-icon, .show > .daterangepicker .drp-buttons .cancelBtn i,
.show > .daterangepicker .drp-buttons .cancelBtn .svg-icon {
  color: #7E8299;
}
.btn-check:checked + .daterangepicker .drp-buttons .cancelBtn.dropdown-toggle:after, .btn-check:active + .daterangepicker .drp-buttons .cancelBtn.dropdown-toggle:after, .daterangepicker .drp-buttons .cancelBtn:focus:not(.btn-active).dropdown-toggle:after, .daterangepicker .drp-buttons .cancelBtn:hover:not(.btn-active).dropdown-toggle:after, .daterangepicker .drp-buttons .cancelBtn:active:not(.btn-active).dropdown-toggle:after, .daterangepicker .drp-buttons .cancelBtn.active.dropdown-toggle:after, .daterangepicker .drp-buttons .cancelBtn.show.dropdown-toggle:after, .show > .daterangepicker .drp-buttons .cancelBtn.dropdown-toggle:after {
  color: #7E8299;
}
.daterangepicker .drp-selected {
  font-size: 0.9rem;
}
.daterangepicker .drp-calendar.left, .daterangepicker .drp-calendar.right {
  padding: 1rem 1rem;
}
.daterangepicker .drp-calendar.left {
  border-left: 0 !important;
}
.daterangepicker .drp-calendar th,
.daterangepicker .drp-calendar td {
  font-size: 1rem;
  font-weight: 400;
  width: 33px;
  height: 33px;
}
.daterangepicker .drp-calendar th.available:hover,
.daterangepicker .drp-calendar td.available:hover {
  border-radius: 0.475rem;
  background-color: #F1FAFF;
  color: #009EF7;
}
.daterangepicker .drp-calendar th {
  font-weight: 500;
  color: #3F4254;
}
.daterangepicker .drp-calendar th.month {
  font-weight: 500;
  color: #3F4254;
}
.daterangepicker .drp-calendar th.next span, .daterangepicker .drp-calendar th.prev span {
  border-width: 0 1px 1px 0;
  border-color: #7E8299;
}
.daterangepicker .drp-calendar th.next.available:hover span, .daterangepicker .drp-calendar th.prev.available:hover span {
  border-color: #009EF7;
}
.daterangepicker .drp-calendar th.next span {
  margin-right: 1px;
}
.daterangepicker .drp-calendar th.prev span {
  margin-left: 1px;
}
.daterangepicker .drp-calendar td {
  color: #5E6278;
}
.daterangepicker .drp-calendar td.available.off {
  color: #B5B5C3;
}
.daterangepicker .drp-calendar td.active {
  background-color: #009EF7 !important;
  color: #FFFFFF !important;
  border-radius: 0.475rem;
}
.daterangepicker .drp-calendar td.active.start-date {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.daterangepicker .drp-calendar td.active.end-date {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.daterangepicker .drp-calendar td.active.start-date.end-date {
  border-radius: 0.475rem;
}
.daterangepicker .drp-calendar td.today, .daterangepicker .drp-calendar td.today.active {
  background: #F1FAFF !important;
  color: #009EF7 !important;
  border-radius: 0.475rem;
}
.daterangepicker .drp-calendar td.in-range.available:not(.active):not(.off):not(.today) {
  background-color: #F1FAFF;
  color: #009EF7;
}
.daterangepicker .drp-calendar td:hover {
  background-color: #F1FAFF;
  color: #009EF7;
}
.daterangepicker select.ampmselect,
.daterangepicker select.minuteselect,
.daterangepicker select.hourselect,
.daterangepicker select.monthselect,
.daterangepicker select.yearselect {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  border-radius: 0.475rem;
  background-color: #ffffff !important;
  border-color: transparent;
  color: #5E6278;
  font-weight: 500;
  outline: 0 !important;
}
.daterangepicker select.ampmselect:focus,
.daterangepicker select.minuteselect:focus,
.daterangepicker select.hourselect:focus,
.daterangepicker select.monthselect:focus,
.daterangepicker select.yearselect:focus {
  background-color: #F5F8FA;
}

@media (max-width: 767.98px) {
  .daterangepicker.show-calendar .ranges {
    float: none !important;
    height: auto !important;
  }
  .daterangepicker.show-calendar .ranges ul {
    width: 100%;
  }
  .daterangepicker.show-calendar .drp-calendar {
    float: none !important;
    max-width: unset !important;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.flatpickr-calendar {
  width: 280px !important;
  font-family: inherit;
  border: 0;
  border-radius: 0;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  background-color: #ffffff;
  border-radius: 0.475rem;
}
.flatpickr-calendar:before, .flatpickr-calendar:after {
  display: none;
}
.flatpickr-calendar.hasWeeks {
  width: 325px !important;
}

.flatpickr-months {
  padding: 0 1rem;
  padding-top: 0.5rem;
}

.flatpickr-innerContainer {
  padding: 0.5rem 1rem;
}

.flatpickr-days,
.dayContainer {
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
}

.flatpickr-months .flatpickr-month {
  background: transparent;
  color: #7E8299;
  fill: #7E8299;
  height: 46px;
}
.flatpickr-months .flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.475rem;
  top: 1rem;
}
.flatpickr-months .flatpickr-prev-month svg,
.flatpickr-months .flatpickr-next-month svg {
  fill: #A1A5B7;
  height: 13px;
  width: 13px;
}
.flatpickr-months .flatpickr-prev-month:hover,
.flatpickr-months .flatpickr-next-month:hover {
  background: #F5F8FA;
}
.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: #5E6278;
}
.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,
.flatpickr-months .flatpickr-next-month.flatpickr-prev-month {
  /*rtl:begin:ignore*/
  left: 1rem;
  /*rtl:end:ignore*/
}
.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,
.flatpickr-months .flatpickr-next-month.flatpickr-next-month {
  /*rtl:begin:ignore*/
  right: 1rem;
  /*rtl:end:ignore*/
}

.flatpickr-current-month {
  font-weight: 500;
  color: inherit;
}
.flatpickr-current-month .numInputWrapper {
  border-radius: 0.475rem;
  width: 65px;
}
.flatpickr-current-month .numInputWrapper span.arrowUp {
  border-top-right-radius: 0.475rem;
}
.flatpickr-current-month .numInputWrapper span.arrowDown {
  border-bottom-right-radius: 0.475rem;
}
.flatpickr-current-month .flatpickr-monthDropdown-months {
  border: 0 !important;
  background-color: #ffffff;
  font-size: 1rem;
  color: #5E6278;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  margin-right: 0.5rem;
  outline: none !important;
  border-radius: 0.475rem;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.flatpickr-current-month .flatpickr-monthDropdown-months:hover {
  background: #F5F8FA;
}
.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month {
  font-size: 1rem;
  color: #5E6278;
  font-weight: 500;
  background-color: transparent;
  outline: none;
  padding: 0;
}
.flatpickr-current-month span.cur-month {
  color: #5E6278;
  font-size: 1rem;
  font-weight: 500;
}
.flatpickr-current-month span.cur-month:hover {
  background: #F5F8FA;
}
.flatpickr-current-month input.cur-year {
  color: #5E6278;
  font-size: 1.1rem;
  padding: 0.5rem 0.75rem;
  font-weight: 500;
  outline: 0 !important;
}

span.flatpickr-weekday {
  color: #3F4254;
  font-size: 1rem;
  font-weight: 600;
}

.flatpickr-time {
  border-bottom-right-radius: 0.475rem;
  border-bottom-left-radius: 0.475rem;
}
.flatpickr-calendar.hasTime .flatpickr-time {
  height: height;
  line-height: height;
  max-height: height;
  border-top: 1px solid #F5F8FA;
}
.flatpickr-time .numInputWrapper {
  height: height;
}
.flatpickr-time .flatpickr-am-pm {
  color: #5E6278;
  font-size: 1rem;
  font-weight: 500;
}
.flatpickr-time input.flatpickr-hour, .flatpickr-time input.flatpickr-minute {
  color: #5E6278;
  font-size: 1rem;
  font-weight: 500;
}
.flatpickr-time input:hover,
.flatpickr-time .flatpickr-am-pm:hover,
.flatpickr-time input:focus,
.flatpickr-time .flatpickr-am-pm:focus {
  background: transparent;
}

.numInputWrapper span {
  border-left: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-right: 0 !important;
}
.numInputWrapper span:hover {
  background: transparent !important;
}
.numInputWrapper span:after {
  top: 50% !important;
  transform: translateY(-50%);
}
.numInputWrapper span.arrowUp:after {
  border-bottom-color: #A1A5B7 !important;
}
.numInputWrapper span.arrowUp:hover:after {
  border-bottom-color: #5E6278 !important;
}
.numInputWrapper span.arrowDown:after {
  border-top-color: #A1A5B7 !important;
}
.numInputWrapper span.arrowDown:hover:after {
  border-top-color: #5E6278 !important;
}
.numInputWrapper:hover {
  background: transparent;
}

.flatpickr-day {
  font-size: 1rem;
  border-radius: 0.475rem;
  box-shadow: none !important;
  height: 36px;
  width: 100%;
  max-width: 100% !important;
  margin: 0;
  line-height: 36px;
  color: #7E8299;
  margin-top: 0 !important;
}
.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #F1FAFF;
  color: #009EF7;
  border-color: transparent;
}
.flatpickr-day.today {
  background: #F5F8FA;
  color: #7E8299;
  border-color: transparent;
}
.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  border-color: transparent;
  background: #EFF2F5;
  color: #5E6278;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #009EF7;
  color: #FFFFFF;
  border-color: transparent;
}
.flatpickr-day.inRange, .flatpickr-day.prevMonthDay.inRange, .flatpickr-day.nextMonthDay.inRange, .flatpickr-day.today.inRange, .flatpickr-day.prevMonthDay.today.inRange, .flatpickr-day.nextMonthDay.today.inRange, .flatpickr-day:hover, .flatpickr-day.prevMonthDay:hover, .flatpickr-day.nextMonthDay:hover, .flatpickr-day:focus, .flatpickr-day.prevMonthDay:focus, .flatpickr-day.nextMonthDay:focus {
  cursor: pointer;
  outline: 0;
  background: #F1FAFF;
  color: #009EF7;
  border-color: transparent;
}
.flatpickr-day.today {
  border-color: transparent;
}
.flatpickr-day.today:hover, .flatpickr-day.today:focus {
  border-color: transparent;
  background: #F5F8FA;
  color: #7E8299;
}
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange, .flatpickr-day.selected.inRange, .flatpickr-day.startRange.inRange, .flatpickr-day.endRange.inRange, .flatpickr-day.selected:focus, .flatpickr-day.startRange:focus, .flatpickr-day.endRange:focus, .flatpickr-day.selected:hover, .flatpickr-day.startRange:hover, .flatpickr-day.endRange:hover, .flatpickr-day.selected.prevMonthDay, .flatpickr-day.startRange.prevMonthDay, .flatpickr-day.endRange.prevMonthDay, .flatpickr-day.selected.nextMonthDay, .flatpickr-day.startRange.nextMonthDay, .flatpickr-day.endRange.nextMonthDay {
  background: #009EF7;
  color: #FFFFFF;
  border-color: transparent;
}
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover, .flatpickr-day.prevMonthDay, .flatpickr-day.nextMonthDay, .flatpickr-day.notAllowed, .flatpickr-day.notAllowed.prevMonthDay, .flatpickr-day.notAllowed.nextMonthDay {
  color: #B5B5C3;
  background: transparent;
  border-color: transparent;
}
.flatpickr-day.flatpickr-disabled, .flatpickr-day.flatpickr-disabled:hover {
  cursor: not-allowed;
  color: #B5B5C3;
}

.flatpickr-weekwrapper {
  margin-right: 5px;
}

.tagify {
  --tagify-dd-bg-color: #ffffff;
  --tags-border-color: #E4E6EF;
  --tags-hover-border-color: #E4E6EF;
  --tags-focus-border-color: #B5B5C3;
  --tag-bg: #EFF2F5;
  --tag-hover: #EFF2F5;
  --tag-text-color: #5E6278;
  --tag-text-color--edit: #5E6278;
  --tag-pad: 0 0.5rem;
  --tag-inset-shadow-size: 1rem;
  --tag-invalid-color: #F1416C;
  --tag-invalid-bg: #FFF5F8;
  --tag-remove-bg: #EFF2F5;
  --tag-remove-btn-color: transparent;
  --tag-remove-btn-bg: transparent;
  --tag-remove-btn-bg--hover: transparent;
  --input-color: #5E6278;
  --placeholder-color: #B5B5C3;
  --placeholder-color-focus: #A1A5B7;
  --loader-size: .8rem;
}
.tagify .tagify__tag {
  background-color: var(--tag-bg);
}
.tagify .tagify__tag div {
  border-radius: inherit;
}
.tagify .tagify__tag .tagify__tag__removeBtn {
  border-radius: 0;
  content: " ";
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23A1A5B7'%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");
}
.tagify .tagify__tag .tagify__tag__removeBtn:after {
  display: none;
}
.tagify .tagify__tag .tagify__tag__removeBtn:hover {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23009EF7'%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");
}
.tagify .tagify__tag.tagify--notAllowed div .tagify__tag-text {
  color: #F1416C;
  opacity: 0.5;
}
.tagify .tagify__tag.tagify--notAllowed .tagify__tag__removeBtn {
  opacity: 0.5;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23F1416C'%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");
}
.tagify .tagify__tag.tagify--notAllowed .tagify__tag__removeBtn:hover {
  background: transparent;
  opacity: 0.75;
}
.tagify .tagify__input:before {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}
.tagify:not(.form-control-sm):not(.form-control-lg) {
  padding-top: calc((1.5rem + 2px - 0.8rem) / 2);
  padding-bottom: calc((1.5rem + 2px - 0.8rem) / 2);
}
.tagify:not(.form-control-sm):not(.form-control-lg) .tagify__tag {
  border-radius: 0.475rem;
  padding: 0.2rem 0.4rem;
  margin: 0.2rem 0.4rem 0.2rem 0;
  font-weight: inherit;
}
.tagify:not(.form-control-sm):not(.form-control-lg) .tagify__tag div {
  padding: 0 0.4rem;
  font-size: 0.9rem;
  font-weight: inherit;
}
.tagify:not(.form-control-sm):not(.form-control-lg) .tagify__tag .tagify__tag__removeBtn {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 0.5rem 0 0;
}
.tagify:not(.form-control-sm):not(.form-control-lg) .tagify__input {
  padding: 0;
  margin-top: calc(0.75rem - (1.5rem + 2px - 0.8rem) / 2);
  margin-bottom: calc(0.75rem - (1.5rem + 2px - 0.8rem) / 2);
}
.tagify.form-control-lg {
  padding-top: calc((1.65rem + 2px - 0.8rem) / 2);
  padding-bottom: calc((1.65rem + 2px - 0.8rem) / 2);
}
.tagify.form-control-lg .tagify__tag {
  border-radius: 0.625rem;
  padding: 0.2rem 0.4rem;
  margin: 0.2rem 0.4rem 0.2rem 0;
  font-weight: inherit;
}
.tagify.form-control-lg .tagify__tag div {
  padding: 0 0.4rem;
  font-size: 1rem;
  font-weight: inherit;
}
.tagify.form-control-lg .tagify__tag .tagify__tag__removeBtn {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 0.5rem 0 0;
}
.tagify.form-control-lg .tagify__input {
  padding: 0;
  margin-top: calc(0.825rem - (1.65rem + 2px - 0.8rem) / 2);
  margin-bottom: calc(0.825rem - (1.65rem + 2px - 0.8rem) / 2);
}
.tagify.form-control-sm {
  padding-top: calc((1.1rem + 2px - 0.6rem) / 2);
  padding-bottom: calc((1.1rem + 2px - 0.6rem) / 2);
}
.tagify.form-control-sm .tagify__tag {
  border-radius: 0.325rem;
  padding: 0.15rem 0.4rem;
  margin: 0.15rem 0.4rem 0.15rem 0;
  font-weight: inherit;
}
.tagify.form-control-sm .tagify__tag div {
  padding: 0 0.4rem;
  font-size: 0.8rem;
  font-weight: inherit;
}
.tagify.form-control-sm .tagify__tag .tagify__tag__removeBtn {
  width: 0.5rem;
  height: 0.5rem;
  margin: 0 0.5rem 0 0;
}
.tagify.form-control-sm .tagify__input {
  padding: 0;
  margin-top: calc(0.55rem - (1.1rem + 2px - 0.6rem) / 2);
  margin-bottom: calc(0.55rem - (1.1rem + 2px - 0.6rem) / 2);
}

.tagify__dropdown {
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  border: 0 !important;
  outline: none !important;
  padding: 0.75rem 0;
  z-index: 1000;
  background-color: #ffffff;
  border-radius: 0.475rem;
}
.tagify__dropdown ._wrapper {
  max-height: none;
  border-radius: 0.475rem;
}
.modal-open .tagify__dropdown {
  z-index: 1056;
}
.tagify__dropdown .tagify__dropdown__wrapper {
  background-color: #ffffff;
  border: 0 !important;
  outline: none !important;
  box-shadow: none;
}
.tagify__dropdown .tagify__dropdown__item {
  color: #5E6278;
  border-radius: 0;
  padding: 0.75rem 1.5rem;
  margin: 0;
  box-shadow: none;
  font-weight: 500;
}
.tagify__dropdown .tagify__dropdown__item:hover, .tagify__dropdown .tagify__dropdown__item.tagify__dropdown__item--active {
  background-color: #F1FAFF;
  color: #009EF7;
}
.tagify__dropdown.tagify__inline__suggestions {
  padding: 0.75rem 1rem;
}
.tagify__dropdown.tagify__inline__suggestions .tagify__dropdown__item {
  display: inline-block;
  font-size: 0.925rem;
  padding: 0.35rem 0.5rem;
  margin: 0.25rem 0.5rem 0.25rem 0;
  background-color: #EFF2F5;
  color: #5E6278;
  border-radius: 0.475rem;
}
.tagify__dropdown.tagify__inline__suggestions .tagify__dropdown__item:hover, .tagify__dropdown.tagify__inline__suggestions .tagify__dropdown__item.tagify__dropdown__item--active {
  background-color: #F1FAFF;
  color: #009EF7;
}

.bootstrap-maxlength {
  z-index: 1040 !important;
}
.bootstrap-maxlength.badge {
  display: inline-flex !important;
}
.modal .bootstrap-maxlength {
  z-index: 1060 !important;
}

.ck-target {
  display: none;
}

.ck-toolbar {
  border-radius: 0.475rem !important;
}

.ck-content {
  min-height: 200px;
  border-radius: 0.475rem !important;
}
.ck-content.ck-focused {
  border-color: #009EF7 !important;
  box-shadow: none !important;
}

.ck-editor .ck-toolbar {
  border-top-left-radius: 0.475rem !important;
  border-top-right-radius: 0.475rem !important;
  border-bottom-right-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.ck-editor .ck-content {
  border-bottom-right-radius: 0.475rem !important;
  border-bottom-left-radius: 0.475rem !important;
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}

.ck-body .ck-balloon-panel .ck-content {
  min-height: 200px;
  border-color: transparent !important;
}
.ck-body .ck-balloon-panel .ck-content.ck-focused {
  border-color: #009EF7 !important;
}
.ck-body .ck-balloon-panel.ck-toolbar-container,
.ck-body .ck-balloon-panel .ck-toolbar {
  border-radius: 0.475rem !important;
}

table.dataTable {
  width: 100% !important;
  margin: 0 !important;
}
table.dataTable th {
  border-bottom-color: #EFF2F5;
}

div.dataTables_wrapper div.dataTables_length {
  padding: 1rem 0;
}

div.dataTables_wrapper div.dataTables_filter {
  padding: 1rem 0;
}

div.dataTables_wrapper div.dataTables_info {
  font-weight: 500;
  color: #5E6278;
  padding: 1rem 0;
}

div.dataTables_length + div.dataTables_info {
  margin-left: 1rem;
}

div.dataTables_wrapper div.dataTables_paginate {
  padding: 1rem 0;
  margin-left: 0.5rem;
}
div.dataTables_wrapper div.dataTables_paginate .pagination {
  margin: 0;
}

table.dataTable tbody > tr.selected,
table.dataTable tbody > tr > .selected {
  background-color: #009EF7;
}

table.dataTable tbody tr.selected,
table.dataTable tbody th.selected,
table.dataTable tbody td.selected {
  color: #FFFFFF;
}

table.dataTable > thead > tr > td:not(.sorting_disabled), table.dataTable > thead > tr > th:not(.sorting_disabled) {
  padding-right: 0;
}

table.dataTable > thead .sorting:after, table.dataTable > thead .sorting:before {
  display: none;
}
table.dataTable > thead .sorting_asc,
table.dataTable > thead .sorting_desc {
  vertical-align: middle;
}
table.dataTable > thead .sorting_asc:before, table.dataTable > thead .sorting_asc:after,
table.dataTable > thead .sorting_desc:before,
table.dataTable > thead .sorting_desc:after {
  position: relative;
  opacity: 0;
  display: inline-block;
  width: 0.75rem;
  height: 0.75rem;
  content: " ";
  bottom: auto;
  right: auto;
  left: auto;
  margin-left: 0.5rem;
}
table.dataTable > thead .sorting_asc:before,
table.dataTable > thead .sorting_desc:before {
  display: none !important;
}

table.dataTable > thead .sorting_asc:after {
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 8' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.42111 2.06463C4.22088 1.96161 3.9637 1.9809 3.78597 2.12863L0.177181 5.12847C-0.046034 5.31402 -0.0602611 5.63049 0.145404 5.83532C0.351069 6.04015 0.698744 6.05578 0.921959 5.87023L4.14137 3.19406L7.06417 5.84414C7.27904 6.03896 7.62686 6.03835 7.84105 5.84278C8.05524 5.64721 8.05469 5.33073 7.83982 5.13591L4.54449 2.14806C4.50704 2.1141 4.46541 2.08629 4.42111 2.06463Z'/%3e%3c/svg%3e");
}

table.dataTable > thead .sorting_desc:after {
  opacity: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 9 8' fill='%23A1A5B7'%3e%3cpath fill-rule='evenodd' clip-rule='evenodd' d='M4.42111 5.93537C4.22088 6.03839 3.9637 6.0191 3.78597 5.87137L0.177181 2.87153C-0.046034 2.68598 -0.060261 2.36951 0.145404 2.16468C0.351069 1.95985 0.698744 1.94422 0.921959 2.12977L4.14137 4.80594L7.06417 2.15586C7.27904 1.96104 7.62686 1.96165 7.84105 2.15722C8.05524 2.35279 8.05469 2.66927 7.83982 2.86409L4.54449 5.85194C4.50704 5.8859 4.46541 5.91371 4.42111 5.93537Z'/%3e%3c/svg%3e");
}

div.dataTables_wrapper .table-responsive {
  position: relative;
}
div.dataTables_wrapper div.dataTables_processing {
  border-radius: 0.475rem;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  background-color: #ffffff;
  color: #7E8299;
  font-weight: 500;
  margin: 0 !important;
  width: auto;
  padding: 1rem 2rem !important;
  transform: translateX(-50%) translateY(-50%);
}

table.dataTable.dtr-inline.collapsed > tbody > tr > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr > th.dtr-control:before {
  top: 50%;
  left: 0;
  height: 1.35rem;
  width: 1.35rem;
  line-height: 1.5;
  margin-top: -0.675rem;
  margin-right: 0.675rem;
  display: inline-block;
  position: relative;
  font-size: 1.05rem;
  border: 0;
  box-shadow: none;
  text-align: center;
  text-indent: 0 !important;
  content: "+";
  color: #5E6278;
  font-family: Poppins, Helvetica, "sans-serif";
  background-color: #E4E6EF;
  border-radius: 0.475rem;
}

table.dataTable.dtr-inline.collapsed > tbody > tr.parent > td.dtr-control:before,
table.dataTable.dtr-inline.collapsed > tbody > tr.parent > th.dtr-control:before {
  content: "-";
  background-color: #009EF7;
  color: #FFFFFF;
}

table.dataTable > tbody > tr.child span.dtr-title {
  display: inline-block;
  min-width: 100px;
  font-weight: 500;
}

table.dataTable > tbody > tr.child span.dtr-data {
  font-weight: 400;
}

.dropzone {
  min-height: auto;
  padding: 1.5rem 1.75rem;
  text-align: center;
  cursor: pointer;
  border: 1px dashed #009EF7;
  background-color: #F1FAFF;
  border-radius: 0.475rem !important;
}
.dropzone .dz-message {
  margin: 0;
  display: flex;
  text-align: left;
}
.dropzone .dz-preview {
  border-radius: 0.475rem !important;
  margin: 0.75rem;
}
.dropzone .dz-preview .dz-image {
  border-radius: 0.475rem !important;
  z-index: 1;
}
.dropzone .dz-preview.dz-file-preview .dz-image {
  background: #EFF2F5;
}
.dropzone .dz-success-mark,
.dropzone .dz-error-mark {
  margin-left: -20px !important;
  margin-top: -20px !important;
}
.dropzone .dz-success-mark svg,
.dropzone .dz-error-mark svg {
  height: 40px !important;
  width: 40px !important;
}
.dropzone .dz-remove {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 1.65rem;
  width: 1.65rem;
  font-size: 1rem;
  text-indent: -9999px;
  white-space: nowrap;
  position: absolute;
  z-index: 2;
  background-size: 40%;
  background-color: #ffffff !important;
  box-shadow: 0 0.1rem 1rem 0.25rem rgba(0, 0, 0, 0.05);
  border-radius: 100%;
  top: -0.825rem;
  right: -0.825rem;
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23A1A5B7'%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");
}
.dropzone .dz-remove:hover {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23009EF7'%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");
}
.dropzone .dz-error-message {
  color: #FFFFFF;
  background: #F1416C;
}

.dropzone.dropzone-queue {
  border: 0;
  padding: 0;
  background-color: transparent;
  text-align: left;
}
.dropzone.dropzone-queue .dz-message {
  display: none;
}
.dropzone.dropzone-queue .dropzone-panel .dropzone-upload,
.dropzone.dropzone-queue .dropzone-panel .dropzone-remove-all {
  display: none;
}
.dropzone.dropzone-queue .dropzone-item {
  display: flex;
  align-items: center;
  margin-top: 0.75rem;
  border-radius: 0.475rem;
  padding: 0.5rem 1rem;
  background-color: #F5F8FA;
}
.dropzone.dropzone-queue .dropzone-item .dropzone-file {
  flex-grow: 1;
}
.dropzone.dropzone-queue .dropzone-item .dropzone-file .dropzone-filename {
  font-size: 0.9rem;
  font-weight: 500;
  color: #7E8299;
  text-overflow: ellipsis;
  margin-right: 0.5rem;
}
.dropzone.dropzone-queue .dropzone-item .dropzone-file .dropzone-filename:hover {
  color: #009EF7;
}
.dropzone.dropzone-queue .dropzone-item .dropzone-file .dropzone-error {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: #F1416C;
  text-overflow: ellipsis;
}
.dropzone.dropzone-queue .dropzone-item .dropzone-progress {
  width: 15%;
}
.dropzone.dropzone-queue .dropzone-item .dropzone-progress .progress {
  height: 5px;
  transition: all 0.2s ease;
}
@media (prefers-reduced-motion: reduce) {
  .dropzone.dropzone-queue .dropzone-item .dropzone-progress .progress {
    transition: none;
  }
}
.dropzone.dropzone-queue .dropzone-item .dropzone-toolbar {
  margin-left: 1rem;
  display: flex;
  flex-wrap: nowrap;
}
.dropzone.dropzone-queue .dropzone-item .dropzone-toolbar .dropzone-start,
.dropzone.dropzone-queue .dropzone-item .dropzone-toolbar .dropzone-cancel,
.dropzone.dropzone-queue .dropzone-item .dropzone-toolbar .dropzone-delete {
  height: 25px;
  width: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: color 0.2s ease, background-color 0.2s ease;
}
.dropzone.dropzone-queue .dropzone-item .dropzone-toolbar .dropzone-start i,
.dropzone.dropzone-queue .dropzone-item .dropzone-toolbar .dropzone-cancel i,
.dropzone.dropzone-queue .dropzone-item .dropzone-toolbar .dropzone-delete i {
  transition: color 0.2s ease, background-color 0.2s ease;
  font-size: 0.8rem;
  color: #7E8299;
}
.dropzone.dropzone-queue .dropzone-item .dropzone-toolbar .dropzone-start:hover,
.dropzone.dropzone-queue .dropzone-item .dropzone-toolbar .dropzone-cancel:hover,
.dropzone.dropzone-queue .dropzone-item .dropzone-toolbar .dropzone-delete:hover {
  transition: color 0.2s ease, background-color 0.2s ease;
}
.dropzone.dropzone-queue .dropzone-item .dropzone-toolbar .dropzone-start:hover i,
.dropzone.dropzone-queue .dropzone-item .dropzone-toolbar .dropzone-cancel:hover i,
.dropzone.dropzone-queue .dropzone-item .dropzone-toolbar .dropzone-delete:hover i {
  color: #009EF7;
}
.dropzone.dropzone-queue .dropzone-item .dropzone-toolbar .dropzone-start {
  transition: color 0.2s ease, background-color 0.2s ease;
}

.gmaps {
  /* important!  bootstrap sets max-width on img to 100% which conflicts with google map canvas*/
}
.gmaps img {
  max-width: none;
}
.gmaps.gmaps-static > div {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  display: block;
}

.noUi-target {
  border: 0;
  background: #F5F8FA;
  box-shadow: none;
}
.noUi-target.noUi-horizontal {
  height: 15px;
}
.noUi-target.noUi-horizontal .noUi-handle {
  width: 24px;
  height: 24px;
  top: -4.5px;
  border-radius: 50%;
  outline: none;
}
.noUi-target.noUi-horizontal .noUi-handle::before {
  display: none;
}
.noUi-target.noUi-horizontal .noUi-handle::after {
  display: none;
}
.noUi-target.noUi-vertical {
  height: 150px;
  width: 15px;
}
.noUi-target.noUi-vertical .noUi-handle {
  width: 24px;
  height: 24px;
  right: -4.5px;
  border-radius: 50%;
  outline: none;
}
.noUi-target.noUi-vertical .noUi-handle::before {
  display: none;
}
.noUi-target.noUi-vertical .noUi-handle::after {
  display: none;
}
.noUi-target .noUi-connect {
  background: #009EF7;
}
.noUi-target .noUi-handle {
  border: 1px solid #EFF2F5;
  box-shadow: 0 3px 6px -3px rgba(0, 0, 0, 0.7);
}
.noUi-target.noUi-sm {
  height: 6px;
}
.noUi-target.noUi-sm .noUi-handle {
  width: 20px;
  height: 20px;
  top: -7px;
}
.noUi-target.noUi-lg {
  height: 18px;
}
.noUi-target.noUi-lg .noUi-handle {
  width: 30px;
  height: 30px;
  top: -6px;
}

.noUi-target.noUi-target-white .noUi-connects .noUi-connect {
  background-color: #ffffff;
}
.noUi-target.noUi-target-white .noUi-handle {
  border: 1px solid #ffffff;
  box-shadow: 0 3px 6px -3px rgba(255, 255, 255, 0.7);
  background-color: #ffffff;
}

.noUi-target.noUi-target-light .noUi-connects .noUi-connect {
  background-color: #F5F8FA;
}
.noUi-target.noUi-target-light .noUi-handle {
  border: 1px solid #F5F8FA;
  box-shadow: 0 3px 6px -3px rgba(245, 248, 250, 0.7);
  background-color: #F5F8FA;
}

.noUi-target.noUi-target-primary .noUi-connects {
  background-color: #F1FAFF;
}
.noUi-target.noUi-target-primary .noUi-connects .noUi-connect {
  background-color: #009EF7;
}
.noUi-target.noUi-target-primary .noUi-handle {
  border: 1px solid #009EF7;
  box-shadow: 0 3px 6px -3px rgba(0, 158, 247, 0.7);
  background-color: #009EF7;
}

.noUi-target.noUi-target-secondary .noUi-connects .noUi-connect {
  background-color: #E4E6EF;
}
.noUi-target.noUi-target-secondary .noUi-handle {
  border: 1px solid #E4E6EF;
  box-shadow: 0 3px 6px -3px rgba(228, 230, 239, 0.7);
  background-color: #E4E6EF;
}

.noUi-target.noUi-target-success .noUi-connects {
  background-color: #E8FFF3;
}
.noUi-target.noUi-target-success .noUi-connects .noUi-connect {
  background-color: #50CD89;
}
.noUi-target.noUi-target-success .noUi-handle {
  border: 1px solid #50CD89;
  box-shadow: 0 3px 6px -3px rgba(80, 205, 137, 0.7);
  background-color: #50CD89;
}

.noUi-target.noUi-target-info .noUi-connects {
  background-color: #F8F5FF;
}
.noUi-target.noUi-target-info .noUi-connects .noUi-connect {
  background-color: #7239EA;
}
.noUi-target.noUi-target-info .noUi-handle {
  border: 1px solid #7239EA;
  box-shadow: 0 3px 6px -3px rgba(114, 57, 234, 0.7);
  background-color: #7239EA;
}

.noUi-target.noUi-target-warning .noUi-connects {
  background-color: #FFF8DD;
}
.noUi-target.noUi-target-warning .noUi-connects .noUi-connect {
  background-color: #FFC700;
}
.noUi-target.noUi-target-warning .noUi-handle {
  border: 1px solid #FFC700;
  box-shadow: 0 3px 6px -3px rgba(255, 199, 0, 0.7);
  background-color: #FFC700;
}

.noUi-target.noUi-target-danger .noUi-connects {
  background-color: #FFF5F8;
}
.noUi-target.noUi-target-danger .noUi-connects .noUi-connect {
  background-color: #F1416C;
}
.noUi-target.noUi-target-danger .noUi-handle {
  border: 1px solid #F1416C;
  box-shadow: 0 3px 6px -3px rgba(241, 65, 108, 0.7);
  background-color: #F1416C;
}

.noUi-target.noUi-target-dark .noUi-connects {
  background-color: #EFF2F5;
}
.noUi-target.noUi-target-dark .noUi-connects .noUi-connect {
  background-color: #181C32;
}
.noUi-target.noUi-target-dark .noUi-handle {
  border: 1px solid #181C32;
  box-shadow: 0 3px 6px -3px rgba(24, 28, 50, 0.7);
  background-color: #181C32;
}

.noUi-tooltip {
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  background: #ffffff;
  color: #3F4254;
  font-size: 0.925rem;
  border: 0;
  padding: 0.5rem 0.75rem;
  border-radius: 0.475rem;
}

.ql-toolbar {
  font-family: Poppins, Helvetica, "sans-serif";
}
.ql-toolbar.ql-snow {
  border: 1px solid #EFF2F5;
  border-top-left-radius: 0.475rem;
  border-top-right-radius: 0.475rem;
}
.ql-toolbar.ql-snow .ql-picker .ql-fill,
.ql-toolbar.ql-snow .ql-picker .ql-stroke,
.ql-toolbar.ql-snow button .ql-fill,
.ql-toolbar.ql-snow button .ql-stroke {
  stroke: #A1A5B7;
}
.ql-toolbar.ql-snow .ql-picker .ql-fill,
.ql-toolbar.ql-snow button .ql-fill {
  fill: #A1A5B7;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-fill,
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-stroke, .ql-toolbar.ql-snow .ql-picker.ql-active .ql-fill,
.ql-toolbar.ql-snow .ql-picker.ql-active .ql-stroke, .ql-toolbar.ql-snow .ql-picker:focus .ql-fill,
.ql-toolbar.ql-snow .ql-picker:focus .ql-stroke, .ql-toolbar.ql-snow .ql-picker:hover .ql-fill,
.ql-toolbar.ql-snow .ql-picker:hover .ql-stroke,
.ql-toolbar.ql-snow button.ql-expanded .ql-fill,
.ql-toolbar.ql-snow button.ql-expanded .ql-stroke,
.ql-toolbar.ql-snow button.ql-active .ql-fill,
.ql-toolbar.ql-snow button.ql-active .ql-stroke,
.ql-toolbar.ql-snow button:focus .ql-fill,
.ql-toolbar.ql-snow button:focus .ql-stroke,
.ql-toolbar.ql-snow button:hover .ql-fill,
.ql-toolbar.ql-snow button:hover .ql-stroke {
  stroke: #009EF7;
}
.ql-toolbar.ql-snow .ql-picker.ql-expanded .ql-fill, .ql-toolbar.ql-snow .ql-picker.ql-active .ql-fill, .ql-toolbar.ql-snow .ql-picker:focus .ql-fill, .ql-toolbar.ql-snow .ql-picker:hover .ql-fill,
.ql-toolbar.ql-snow button.ql-expanded .ql-fill,
.ql-toolbar.ql-snow button.ql-active .ql-fill,
.ql-toolbar.ql-snow button:focus .ql-fill,
.ql-toolbar.ql-snow button:hover .ql-fill {
  fill: #009EF7;
}

.ql-editor {
  color: #5E6278;
}
.ql-editor.ql-blank:before {
  left: auto !important;
  right: auto !important;
  color: #A1A5B7 !important;
  font-style: normal !important;
}

.ql-container.ql-snow {
  background-color: #ffffff;
  border: 1px solid #EFF2F5;
  border-top: 0;
  border-bottom-right-radius: 0.475rem;
  border-bottom-left-radius: 0.475rem;
}

.ql-snow .ql-picker .ql-picker-label {
  color: #A1A5B7;
}
.ql-snow .ql-picker .ql-picker-label.ql-active, .ql-snow .ql-picker .ql-picker-label:hover {
  color: #009EF7;
}
.ql-snow .ql-picker.ql-expanded {
  outline: none !important;
  border-color: transparent !important;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label {
  border-color: transparent !important;
  color: #009EF7;
  outline: none !important;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-label.ql-active, .ql-snow .ql-picker.ql-expanded .ql-picker-label:hover {
  color: #009EF7;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options {
  border: 0;
  padding: 0.5rem 1rem;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  background-color: #ffffff;
  border-radius: 0.475rem;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item {
  color: #7E8299;
  outline: none;
}
.ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item.ql-selected, .ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item.ql-active, .ql-snow .ql-picker.ql-expanded .ql-picker-options .ql-picker-item:hover {
  color: #009EF7;
}
.ql-snow .ql-tooltip {
  border: 0;
  padding: 0.5rem 1rem;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  border-radius: 0.475rem;
}
.ql-snow .ql-tooltip input[type=text] {
  border: 0;
  background-color: transparent;
  outline: none !important;
  box-shadow: none;
  border-radius: 0;
  border: 1px solid #EFF2F5;
  color: #5E6278;
  outline: none !important;
  border-radius: 0.475rem;
}
.ql-snow .ql-tooltip input[type=text]:active, .ql-snow .ql-tooltip input[type=text]:focus {
  border-color: #B5B5C3 !important;
}
.ql-snow .ql-tooltip .ql-preview {
  color: #7E8299;
}
.ql-snow .ql-tooltip .ql-action {
  transition: color 0.3s ease;
  color: #7E8299;
}
.ql-snow .ql-tooltip .ql-action:hover {
  transition: color 0.3s ease;
  color: #009EF7;
}
.modal .ql-snow .ql-tooltip.ql-editing {
  left: 20px !important;
}
.ql-snow .ql-editor pre.ql-syntax {
  background-color: #181C32;
  color: #A1A5B7;
  overflow: visible;
  border-radius: 0.475rem;
}

.ql-quil.ql-quil-plain .ql-toolbar {
  padding: 0;
  margin: 0;
  border: 0;
}
.ql-quil.ql-quil-plain .ql-toolbar:after {
  display: none;
}
.ql-quil.ql-quil-plain .ql-toolbar .ql-picker-label {
  padding-left: 0;
}
.ql-quil.ql-quil-plain .ql-container {
  border: 0;
}
.ql-quil.ql-quil-plain .ql-editor {
  border: 0;
  padding: 0;
}

.recaptcha {
  padding: 15px;
  border: 1px solid #EFF2F5;
  border-radius: 0.475rem;
}
.recaptcha .recaptcha-img {
  margin-bottom: 10px;
}
.recaptcha .recaptcha_only_if_incorrect_sol {
  color: #F1416C;
}
.recaptcha .input-group .btn i {
  padding-right: 0;
}
.recaptcha .input-group .form-control {
  border-top-left-radius: 0.475rem !important;
  border-bottom-left-radius: 0.475rem !important;
}

html.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown),
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown):not(.modal-open) {
  overflow-y: initial !important;
}
html.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown):not(.sweetalert2-nopadding),
body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown):not(.modal-open):not(.sweetalert2-nopadding) {
  padding-right: 0 !important;
}

.swal2-popup {
  background-color: #ffffff;
  padding: 2rem;
  border-radius: 0.475rem;
}
.swal2-popup .swal2-title {
  font-weight: 500;
  font-size: 1.3rem;
  color: #181C32;
}
.swal2-popup .swal2-html-container,
.swal2-popup .swal2-content {
  font-weight: normal;
  font-size: 1.1rem;
  margin-top: 1.5rem;
  color: #3F4254;
}
.swal2-popup .btn {
  margin: 15px 5px 0;
}
.swal2-popup .swal2-styled:focus {
  box-shadow: none;
}
.swal2-popup .swal2-actions {
  margin: 1.5rem auto 1rem auto;
}

.swal2-container {
  overflow-y: hidden !important;
}
.swal2-container.swal2-shown {
  background-color: rgba(0, 0, 0, 0.2);
}
.swal2-container .swal2-html-container {
  max-height: 200px;
  overflow: auto;
}

body.swal2-height-auto {
  height: 100% !important;
}

.swal2-icon.swal2-warning {
  border-color: #FFC700;
  color: #FFC700;
}
.swal2-icon.swal2-error {
  border-color: #F1416C;
  color: #F1416C;
}
.swal2-icon.swal2-error [class^=swal2-x-mark-line] {
  background-color: rgba(241, 65, 108, 0.75);
}
.swal2-icon.swal2-success {
  border-color: #50CD89;
  color: #50CD89;
}
.swal2-icon.swal2-success [class^=swal2-success-line] {
  background-color: #50CD89;
}
.swal2-icon.swal2-success .swal2-success-ring {
  border-color: rgba(80, 205, 137, 0.3);
}
.swal2-icon.swal2-info {
  border-color: #7239EA;
  color: #7239EA;
}
.swal2-icon.swal2-question {
  border-color: #009EF7;
  color: #009EF7;
}

.tox-target {
  display: none;
}

.tox-tinymce {
  border-radius: 0.475rem !important;
  height: 500px !important;
}

.toastr {
  background-position: 1.5rem center /*rtl:calc(100% - 1.5rem) center*/ !important;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15) !important;
  border-radius: 0.475rem !important;
  border: 0 !important;
  background-color: #F5F8FA;
  color: #5E6278;
  padding: 1.25rem 1.25rem 1.25rem 4.5rem !important;
}
.toastr .toastr-close-button {
  outline: none !important;
  font-size: 0;
  width: 0.85rem;
  height: 0.85rem;
}
.toastr .toastr-title {
  font-size: 1.15rem;
  font-weight: 500;
}
.toastr .toastr-title + .toastr-message {
  margin-top: 0.25rem;
}
.toastr .toastr-message {
  font-size: 1rem;
  font-weight: 400;
}
.toastr.toastr-success {
  background-color: #50CD89;
  color: #FFFFFF;
}
.toastr.toastr-success .toastr-close-button {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%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");
}
.toastr.toastr-info {
  background-color: #7239EA;
  color: #FFFFFF;
}
.toastr.toastr-info .toastr-close-button {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%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");
}
.toastr.toastr-warning {
  background-color: #FFC700;
  color: #FFFFFF;
}
.toastr.toastr-warning .toastr-close-button {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%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");
}
.toastr.toastr-error {
  background-color: #F1416C;
  color: #FFFFFF;
}
.toastr.toastr-error .toastr-close-button {
  background-repeat: no-repeat;
  background-position: center;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFFFFF'%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");
}

.toastr-top-center {
  top: 12px;
}

.toastr-bottom-center {
  bottom: 12px;
}

.draggable {
  transition: opacity 0.3s ease;
  outline: none !important;
}
.draggable.draggable-mirror {
  opacity: 0.8;
  transition: opacity 0.3s ease;
  border: 2px dashed #E4E6EF !important;
  border-radius: 0.475rem;
}
.draggable.draggable--original {
  opacity: 0 !important;
}
.draggable.draggable-source--is-dragging.draggable--over {
  opacity: 0 !important;
}
.draggable .draggable-handle {
  cursor: move;
}

.apexcharts-text,
.apexcharts-title-text,
.apexcharts-legend-text {
  font-family: Poppins, Helvetica, "sans-serif" !important;
}

.apexcharts-title-text {
  font-weight: 400;
}

.apexcharts-pie-label {
  font-weight: 400;
  font-size: 0.925rem;
}

.apexcharts-toolbar {
  text-align: left !important;
}

.apexcharts-menu {
  background: #ffffff;
  border: 0 !important;
  padding: 0.5rem 0 !important;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  border-radius: 0.475rem !important;
  overflow: hidden;
  min-width: 10rem !important;
}
.apexcharts-menu .apexcharts-menu-item {
  padding: 0.25rem 1rem;
  transition: all 0.2s ease;
}
.apexcharts-menu .apexcharts-menu-item:hover {
  background-color: rgba(245, 248, 250, 0.8) !important;
}

.apexcharts-tooltip.apexcharts-theme-light {
  border-radius: 0.475rem;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  border: 0 !important;
  background: #ffffff !important;
  color: #3F4254;
}
.apexcharts-tooltip.apexcharts-theme-light .apexcharts-tooltip-title {
  background: #ffffff !important;
  font-weight: 500;
  color: #3F4254;
  border-bottom: 1px solid #F5F8FA !important;
}
.apexcharts-tooltip .apexcharts-tooltip-title {
  padding: 0.5rem 1rem;
}
.apexcharts-xaxistooltip.apexcharts-theme-light {
  border-radius: 0.475rem !important;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15) !important;
  border: 0 !important;
  background: #ffffff !important;
  color: #3F4254;
}
.apexcharts-xaxistooltip.apexcharts-theme-light:before {
  border-bottom: 0 !important;
}
.apexcharts-xaxistooltip.apexcharts-theme-light:after {
  border-bottom-color: #ffffff !important;
}

.card-rounded-bottom .apexcharts-canvas svg {
  border-bottom-left-radius: 0.625rem;
  border-bottom-right-radius: 0.625rem;
}

.rounded .apexcharts-canvas svg {
  border-radius: 0.475rem !important;
}

.rounded-sm .apexcharts-canvas svg {
  border-radius: 0.325rem !important;
}

.rounded-lg .apexcharts-canvas svg {
  border-radius: 0.625rem !important;
}

.rounded-xl .apexcharts-canvas svg {
  border-radius: 1rem !important;
}

.apexcharts-bar-hover-white .apexcharts-bar-area:hover {
  fill: #ffffff !important;
}

.apexcharts-bar-hover-primary .apexcharts-bar-area:hover {
  fill: #009EF7 !important;
}

.apexcharts-bar-hover-secondary .apexcharts-bar-area:hover {
  fill: #E4E6EF !important;
}

.apexcharts-bar-hover-light .apexcharts-bar-area:hover {
  fill: #F5F8FA !important;
}

.apexcharts-bar-hover-success .apexcharts-bar-area:hover {
  fill: #50CD89 !important;
}

.apexcharts-bar-hover-info .apexcharts-bar-area:hover {
  fill: #7239EA !important;
}

.apexcharts-bar-hover-warning .apexcharts-bar-area:hover {
  fill: #FFC700 !important;
}

.apexcharts-bar-hover-danger .apexcharts-bar-area:hover {
  fill: #F1416C !important;
}

.apexcharts-bar-hover-dark .apexcharts-bar-area:hover {
  fill: #181C32 !important;
}

.apexcharts-bar-hover-muted .apexcharts-bar-area:hover {
  fill: #A1A5B7 !important;
}

.apexcharts-bar-hover-gray-100 .apexcharts-bar-area:hover {
  fill: #F5F8FA !important;
}

.apexcharts-bar-hover-gray-200 .apexcharts-bar-area:hover {
  fill: #EFF2F5 !important;
}

.apexcharts-bar-hover-gray-300 .apexcharts-bar-area:hover {
  fill: #E4E6EF !important;
}

.apexcharts-bar-hover-gray-400 .apexcharts-bar-area:hover {
  fill: #B5B5C3 !important;
}

.apexcharts-bar-hover-gray-500 .apexcharts-bar-area:hover {
  fill: #A1A5B7 !important;
}

.apexcharts-bar-hover-gray-600 .apexcharts-bar-area:hover {
  fill: #7E8299 !important;
}

.apexcharts-bar-hover-gray-700 .apexcharts-bar-area:hover {
  fill: #5E6278 !important;
}

.apexcharts-bar-hover-gray-800 .apexcharts-bar-area:hover {
  fill: #3F4254 !important;
}

.apexcharts-bar-hover-gray-900 .apexcharts-bar-area:hover {
  fill: #181C32 !important;
}

.leaflet-container .leaflet-pane,
.leaflet-container .leaflet-top,
.leaflet-container .leaflet-bottom,
.leaflet-container .leaflet-control {
  z-index: 1 !important;
}
.leaflet-container .leaflet-popup-content-wrapper {
  border-radius: 0.475rem !important;
  text-align: center;
  box-shadow: 0 0.5rem 1.5rem 0.5rem rgba(0, 0, 0, 0.075) !important;
}
.leaflet-container .leaflet-popup-content-wrapper .leaflet-popup-content {
  font-family: Poppins, Helvetica, "sans-serif";
  font-size: 1rem;
}

.tns {
  position: relative;
  overflow: hidden;
}
.tns [data-tns=true] {
  display: none;
}
.tns .tns-item {
  opacity: 0;
  transition: all 0.3s ease;
}
.tns .tns-controls {
  display: flex;
  justify-content: center;
  align-items: center;
}
.tns .tns-controls button {
  outline: none;
  border: 0;
  margin: 0 0.25rem;
  border-radius: 0.475rem;
  padding: 0.5rem 0.75rem;
  background-color: #009EF7;
  color: #FFFFFF;
}
.tns .tns-controls button:hover {
  background-color: #0095E8;
}
.tns .tns-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.tns .tns-nav button {
  display: block;
  outline: none;
  width: 1.25rem;
  height: 0.75rem;
  background-color: #EFF2F5;
  margin: 0 0.25rem;
  border: 0;
  border-radius: 0.35rem;
}
.tns .tns-nav button.tns-nav-active {
  background-color: #009EF7;
}
.tns.tns-initiazlied [data-tns=true] {
  display: flex;
}
.tns.tns-initiazlied .tns-item {
  opacity: 1;
  transition: all 0.3s ease;
}
.tns.tns-default {
  position: relative;
}
.tns.tns-default [data-controls=prev],
.tns.tns-default [data-controls=next] {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.tns.tns-default [data-controls=prev] {
  left: 0;
}
.tns.tns-default [data-controls=next] {
  right: 0;
}
.tns.tns-default .tns-outer {
  margin: 0 4rem;
}
@media (max-width: 767.98px) {
  .tns.tns-default .tns-outer {
    margin: 0 2rem;
  }
}

.tns-hide-disabled-nav [disabled] {
  display: none !important;
}

body {
  --fc-event-border-color: #009EF7;
  --fc-event-bg-color: #009EF7;
  --fc-event-text-color: #FFFFFF;
}

.fc {
  --fc-border-color: #EFF2F5;
  --fc-page-bg-color: #ffffff;
  --fc-small-font-size: 0.95rem;
  --fc-highlight-color: rgba(245, 248, 250, 0.5);
  --fc-bg-event-opacity: 0.3;
  --fc-neutral-bg-color: #F5F8FA;
  --fc-today-bg-color: #FFF8DD;
  --fc-now-indicator-color: #F1416C;
  --fc-list-event-hover-bg-color: rgba(245, 248, 250, 0.5);
  --fc-button-text-color: #7E8299;
  --fc-button-bg-color: #F5F8FA;
  --fc-button-border-color: #F5F8FA;
  --fc-button-hover-bg-color: #F5F8FA;
  --fc-button-hover-border-color: #F5F8FA;
  --fc-button-active-bg-color: #EFF2F5;
  --fc-button-active-border-color: #EFF2F5;
}
.fc table {
  font-size: 1rem;
}
.fc .fc-button {
  padding: 0.75rem 1.25rem;
  box-shadow: none !important;
  border: 0 !important;
  border-radius: 0.475rem;
  vertical-align: middle;
  font-weight: 500;
  text-transform: capitalize;
}
.fc .fc-button-primary {
  margin: 0;
}
.fc .fc-button-primary .fc-icon {
  font-size: 1.35rem;
  margin-bottom: 0.15rem;
}
.fc .fc-button-primary:not(:disabled):not(.fc-button-active):focus, .fc .fc-button-primary:not(:disabled):not(.fc-button-active):hover, .fc .fc-button-primary:not(:disabled):not(.fc-button-active):active {
  color: #181C32;
}
.fc .fc-button-primary:not(:disabled):not(.fc-button-active):focus .fc-icon, .fc .fc-button-primary:not(:disabled):not(.fc-button-active):hover .fc-icon, .fc .fc-button-primary:not(:disabled):not(.fc-button-active):active .fc-icon {
  color: #181C32;
}
.fc .fc-button-primary:not(:disabled).fc-button-active {
  color: #181C32;
}
.fc .fc-button-primary:not(:disabled).fc-button-active .fc-icon {
  color: #181C32;
}
.fc .fc-button-group .fc-button {
  margin: 0 !important;
}
.fc .fc-toolbar-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #3F4254;
}
.fc .fc-col-header-cell {
  padding: 0.75rem 0.5rem;
}
.fc .fc-col-header-cell .fc-col-header-cell-cushion {
  font-size: 1.1rem;
  font-weight: 500;
  color: #3F4254;
}
.fc .fc-scrollgrid {
  border-radius: 0.475rem;
}
.fc .fc-scrollgrid thead > tr td:first-child {
  border-top-left-radius: 0.475rem;
}
.fc .fc-scrollgrid thead > tr td:last-child {
  border-top-right-radius: 0.475rem;
}
.fc .fc-scrollgrid tbody > tr:last-child td:first-child {
  border-bottom-left-radius: 0.475rem;
}
.fc .fc-scrollgrid tbody > tr:last-child td:last-child {
  border-bottom-right-radius: 0.475rem;
}
.fc .fc-daygrid-event {
  margin-top: 3px;
}
.fc .fc-daygrid-dot-event .fc-event-title,
.fc .fc-daygrid-dot-event .fc-event-time,
.fc .fc-daygrid-block-event .fc-event-title,
.fc .fc-daygrid-block-event .fc-event-time {
  padding: 0.25rem 0.25rem;
}
.fc .fc-daygrid-day-number {
  color: #3F4254;
}
.fc .fc-daygrid-dot-event {
  background-color: #F5F8FA;
  color: #7E8299;
}
.fc .fc-daygrid-dot-event .fc-event-title {
  font-weight: 500;
}
.fc .fc-daygrid-dot-event:hover, .fc .fc-daygrid-dot-event.fc-event-mirror {
  background-color: #F5F8FA;
  color: #009EF7;
}
.fc .fc-daygrid-event-dot {
  margin-left: 0.5rem;
  margin-right: 0.1rem;
}
.fc .fc-popover {
  border: 0 !important;
  background-color: #ffffff;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  border-radius: 0.475rem;
}
.fc .fc-popover .fc-popover-header {
  border-top-left-radius: 0.475rem;
  border-top-right-radius: 0.475rem;
  padding: 0.65rem 0.75rem;
  background-color: #ffffff;
}
.fc .fc-popover .fc-popover-header .fc-popover-title {
  color: #3F4254;
  font-size: 1rem;
  font-weight: 500;
}
.fc .fc-popover .fc-popover-header .fc-popover-close {
  font-size: 1rem;
  color: #7E8299;
}
.fc .fc-popover .fc-popover-header .fc-popover-close:hover {
  color: #009EF7;
}
.fc .fc-popover .fc-popover-body {
  padding: 0.5rem 0.75rem 0.75rem 0.75rem;
}
.fc .fc-daygrid-more-link {
  font-weight: 500;
}
.fc .fc-timegrid-slot {
  height: 2rem;
  font-size: 0.95rem;
}
.fc .fc-list-day-cushion,
.fc .fc-list-table td {
  padding: 0.85rem 1.15rem;
}
.fc .fc-list-day-text,
.fc .fc-list-day-side-text {
  font-size: 1.1rem;
  color: #181C32;
  font-weight: 600;
}
.fc .fc-list,
.fc .fc-list-table {
  border-radius: 0.475rem;
}
.fc .fc-list {
  overflow: hidden;
  position: relative;
}
.fc .fc-timegrid-axis {
  padding-left: 0rem;
  padding-right: 0;
}
.fc .fc-timegrid-event .fc-event-main {
  padding: 0.25rem 0.25rem;
}
.fc .fc-timegrid-now-indicator-arrow {
  margin-top: -1px;
}

.fc-h-event {
  font-weight: 400;
}

@media (max-width: 767.98px) {
  .fc .fc-header-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .fc .fc-header-toolbar .fc-toolbar-chunk:nth-child(1), .fc .fc-header-toolbar .fc-toolbar-chunk:nth-child(3) {
    order: 2;
  }
  .fc .fc-header-toolbar .fc-toolbar-chunk:nth-child(2) {
    order: 1;
  }
  .fc .fc-header-toolbar .fc-toolbar-chunk:nth-child(2), .fc .fc-header-toolbar .fc-toolbar-chunk:nth-child(1) {
    margin-bottom: 1rem;
  }
}
.kanban-container {
  width: 100% !important;
  display: flex;
  flex-wrap: wrap;
}
.kanban-container .kanban-board {
  float: none;
  flex-shrink: 0;
  margin-bottom: 1.25rem;
  margin-right: 1.25rem !important;
  background-color: #F5F8FA;
  border-radius: 0.475rem;
}
.kanban-container .kanban-board:last-child {
  margin-right: 0 !important;
}
.kanban-container .kanban-board .kanban-board-header {
  border-top-left-radius: 0.475rem;
  border-top-right-radius: 0.475rem;
}
.kanban-container .kanban-board .kanban-board-header .kanban-title-board {
  font-size: 1.2rem;
  font-weight: 500;
  color: #181C32;
}
.kanban-container .kanban-board .kanban-board-header.white {
  background-color: #ffffff;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.white .kanban-title-board {
  color: #7E8299;
}
.kanban-container .kanban-board .kanban-board-header.light-white {
  background-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.light-white .kanban-title-board {
  color: #ffffff;
}
.kanban-container .kanban-board .kanban-board-header.light {
  background-color: #F5F8FA;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.light .kanban-title-board {
  color: #7E8299;
}
.kanban-container .kanban-board .kanban-board-header.light-light {
  background-color: rgba(245, 248, 250, 0.1);
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.light-light .kanban-title-board {
  color: #F5F8FA;
}
.kanban-container .kanban-board .kanban-board-header.primary {
  background-color: #009EF7;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.primary .kanban-title-board {
  color: #FFFFFF;
}
.kanban-container .kanban-board .kanban-board-header.light-primary {
  background-color: rgba(0, 158, 247, 0.1);
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.light-primary .kanban-title-board {
  color: #009EF7;
}
.kanban-container .kanban-board .kanban-board-header.secondary {
  background-color: #E4E6EF;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.secondary .kanban-title-board {
  color: #3F4254;
}
.kanban-container .kanban-board .kanban-board-header.light-secondary {
  background-color: rgba(228, 230, 239, 0.1);
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.light-secondary .kanban-title-board {
  color: #E4E6EF;
}
.kanban-container .kanban-board .kanban-board-header.success {
  background-color: #50CD89;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.success .kanban-title-board {
  color: #FFFFFF;
}
.kanban-container .kanban-board .kanban-board-header.light-success {
  background-color: rgba(80, 205, 137, 0.1);
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.light-success .kanban-title-board {
  color: #50CD89;
}
.kanban-container .kanban-board .kanban-board-header.info {
  background-color: #7239EA;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.info .kanban-title-board {
  color: #FFFFFF;
}
.kanban-container .kanban-board .kanban-board-header.light-info {
  background-color: rgba(114, 57, 234, 0.1);
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.light-info .kanban-title-board {
  color: #7239EA;
}
.kanban-container .kanban-board .kanban-board-header.warning {
  background-color: #FFC700;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.warning .kanban-title-board {
  color: #FFFFFF;
}
.kanban-container .kanban-board .kanban-board-header.light-warning {
  background-color: rgba(255, 199, 0, 0.1);
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.light-warning .kanban-title-board {
  color: #FFC700;
}
.kanban-container .kanban-board .kanban-board-header.danger {
  background-color: #F1416C;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.danger .kanban-title-board {
  color: #FFFFFF;
}
.kanban-container .kanban-board .kanban-board-header.light-danger {
  background-color: rgba(241, 65, 108, 0.1);
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.light-danger .kanban-title-board {
  color: #F1416C;
}
.kanban-container .kanban-board .kanban-board-header.dark {
  background-color: #181C32;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.dark .kanban-title-board {
  color: #ffffff;
}
.kanban-container .kanban-board .kanban-board-header.light-dark {
  background-color: rgba(24, 28, 50, 0.1);
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-board-header.light-dark .kanban-title-board {
  color: #181C32;
}
.kanban-container .kanban-board .kanban-drag .kanban-item {
  border-radius: 0.475rem;
  box-shadow: 0px 0px 13px 0px rgba(0, 0, 0, 0.05);
  background: #ffffff;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=white] {
  background-color: #ffffff;
  color: #7E8299;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=light-white] {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=light] {
  background-color: #F5F8FA;
  color: #7E8299;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=light-light] {
  background-color: rgba(245, 248, 250, 0.1);
  color: #F5F8FA;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=primary] {
  background-color: #009EF7;
  color: #FFFFFF;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=light-primary] {
  background-color: rgba(0, 158, 247, 0.1);
  color: #009EF7;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=secondary] {
  background-color: #E4E6EF;
  color: #3F4254;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=light-secondary] {
  background-color: rgba(228, 230, 239, 0.1);
  color: #E4E6EF;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=success] {
  background-color: #50CD89;
  color: #FFFFFF;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=light-success] {
  background-color: rgba(80, 205, 137, 0.1);
  color: #50CD89;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=info] {
  background-color: #7239EA;
  color: #FFFFFF;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=light-info] {
  background-color: rgba(114, 57, 234, 0.1);
  color: #7239EA;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=warning] {
  background-color: #FFC700;
  color: #FFFFFF;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=light-warning] {
  background-color: rgba(255, 199, 0, 0.1);
  color: #FFC700;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=danger] {
  background-color: #F1416C;
  color: #FFFFFF;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=light-danger] {
  background-color: rgba(241, 65, 108, 0.1);
  color: #F1416C;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=dark] {
  background-color: #181C32;
  color: #ffffff;
  box-shadow: none;
}
.kanban-container .kanban-board .kanban-drag .kanban-item[data-class=light-dark] {
  background-color: rgba(24, 28, 50, 0.1);
  color: #181C32;
  box-shadow: none;
}
.kanban-fixed-height .kanban-container .kanban-board .kanban-drag {
  position: relative;
  overflow-y: auto;
}

.jstree-default .jstree-anchor {
  color: #5E6278;
  padding: 0 8px 0 4px;
}
.jstree-default .jstree-icon {
  color: #5E6278;
  font-size: 1.3rem;
}
.jstree-default .jstree-icon.la {
  font-size: 1.5rem;
}
.jstree-default .jstree-icon.fa {
  font-size: 1.2rem;
}
.jstree-default .jstree-disabled {
  cursor: not-allowed;
  line-height: auto;
  height: auto;
  opacity: 0.7;
}
.jstree-default .jstree-disabled .jstree-icon {
  color: #5E6278;
}
.jstree-default .jstree-clicked {
  border: 0;
  background: #F5F8FA;
  box-shadow: none;
}
.jstree-default .jstree-hovered {
  border: 0;
  background-color: #F5F8FA;
  box-shadow: none;
}
.jstree-default .jstree-wholerow-clicked,
.jstree-default .jstree-wholerow-clicked {
  background: #EFF2F5;
  box-shadow: none;
}
.jstree-default .jstree-wholerow-hovered, .jstree-default.jstree-wholerow .jstree-wholerow-hovered {
  border: 0;
  background-color: #F5F8FA;
  box-shadow: none;
}

.jstree-open > .jstree-anchor > .fa-folder:before {
  margin-left: 2px;
  content: "\f07c";
}

.jstree-open > .jstree-anchor > .la-folder:before {
  margin-left: 2px;
  content: "\f200";
}

.jstree-default.jstree-rtl .jstree-node {
  background-position: 100% 1px /*rtl:ignore*/ !important;
}

.jstree-default.jstree-rtl .jstree-last {
  background: transparent /*rtl:ignore*/;
  background-repeat: no-repeat;
}

.jstree-rtl .jstree-anchor {
  padding: 0 4px 0 8px /*rtl:ignore*/;
}

.vakata-context,
.vakata-context ul {
  padding: 0.5rem 0;
  min-width: 150px;
  font-size: 1rem;
  font-family: var(--bs-font-sans-serif);
  background: #ffffff;
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  border: 0;
  border-radius: 0.475rem;
}
.vakata-context li,
.vakata-context ul li {
  padding: 0;
  border: 0;
}
.vakata-context li a,
.vakata-context ul li a {
  padding: 0rem 1.2rem;
  border: 0;
}
.vakata-context li a i,
.vakata-context ul li a i {
  display: none;
}
.vakata-context li a .vakata-contextmenu-sep,
.vakata-context ul li a .vakata-contextmenu-sep {
  display: none;
}
.vakata-context li a span,
.vakata-context li a ins,
.vakata-context ul li a span,
.vakata-context ul li a ins {
  display: none;
  border: 0 !important;
}
.vakata-context .vakata-context-hover > a,
.vakata-context li a:hover,
.vakata-context ul .vakata-context-hover > a,
.vakata-context ul li a:hover {
  margin: 0;
  background-color: #F5F8FA;
  color: #009EF7;
  box-shadow: none;
}
.vakata-context .vakata-context-hover > a .span,
.vakata-context .vakata-context-hover > a .ins,
.vakata-context li a:hover .span,
.vakata-context li a:hover .ins,
.vakata-context ul .vakata-context-hover > a .span,
.vakata-context ul .vakata-context-hover > a .ins,
.vakata-context ul li a:hover .span,
.vakata-context ul li a:hover .ins {
  border: 0 !important;
}

.vakata-context .vakata-context-separator a,
.vakata-context-rtl .vakata-context-separator a {
  margin: 0;
  border: 0;
  height: 2px;
  background-color: #EFF2F5;
}

.jstree-rename-input {
  outline: none !important;
  padding: 2px 6px !important;
  margin-right: -4px !important;
  background-color: #F5F8FA !important;
  border: 1px solid #F5F8FA !important;
  border-radius: 0.475rem;
}

.vis-timeline {
  border: 1px solid #EFF2F5 !important;
  border-radius: 0.475rem !important;
}
.vis-timeline .vis-labelset .vis-label {
  display: flex;
  align-items: center;
  padding-left: 1rem;
  padding-right: 1rem;
  border-bottom: none;
  font-size: 1.25rem;
  font-weight: 500;
  color: #181C32;
}
.vis-timeline .vis-foreground .vis-group {
  border-bottom: none;
}
.vis-timeline .vis-item {
  position: absolute;
  color: #5E6278;
  border-color: #009EF7;
  border-width: 1px;
  background-color: #F5F8FA;
  border-radius: 0.475rem !important;
}
.vis-timeline .vis-item.vis-selected {
  background-color: #FFF8DD;
  color: #5E6278;
  border-color: #FFC700;
}
.vis-timeline .vis-item .vis-item-content {
  padding: 0.75rem 1rem;
  width: 100%;
  transform: none !important;
}
.vis-timeline .vis-time-axis {
  font-size: 0.925rem;
  text-transform: uppercase;
  font-weight: 500;
}
.vis-timeline .vis-time-axis .vis-text {
  color: #B5B5C3;
}
.vis-timeline .vis-time-axis .vis-grid.vis-minor {
  border-left-color: #E4E6EF !important;
}
.vis-timeline .vis-time-axis .vis-grid.vis-vertical {
  border-left-style: dashed !important;
}
.vis-timeline .vis-panel .vis-shadow {
  box-shadow: none !important;
}
.vis-timeline .vis-panel.vis-bottom, .vis-timeline .vis-panel.vis-center, .vis-timeline .vis-panel.vis-left, .vis-timeline .vis-panel.vis-right, .vis-timeline .vis-panel.vis-top {
  border-color: #EFF2F5 !important;
}
.vis-timeline .vis-current-time {
  background-color: #50CD89;
}

.vis-timeline-custom .vis-timeline {
  border: 0 !important;
}
.vis-timeline-custom .vis-timeline .vis-label {
  padding-left: 0 !important;
}
.vis-timeline-custom .vis-panel.vis-bottom, .vis-timeline-custom .vis-panel.vis-center, .vis-timeline-custom .vis-panel.vis-left, .vis-timeline-custom .vis-panel.vis-right, .vis-timeline-custom .vis-panel.vis-top {
  border: 0 !important;
}
.vis-timeline-custom .vis-item {
  background-color: transparent;
  border: 0 !important;
  border-radius: 0 !important;
}
.vis-timeline-custom .vis-item .vis-item-content {
  padding: 0 !important;
}

/*# sourceMappingURL=style.bundle.css.map*/